blob: 08b8166b965f96c05f11999f6959e5a79a0662fc [file] [log] [blame]
{"_env":"NODEJS","_serializationMethod":"normal","_autosave":false,"_autosaveInterval":5000,"_collections":[{"name":"items","unindexedSortComparator":"js","defaultLokiOperatorPackage":"js","_dynamicViews":[],"uniqueNames":[],"transforms":{},"rangedIndexes":{},"_data":[{"slug":"get-started","toc":[{"id":"getting-apache-echarts","depth":2,"text":"Getting Apache ECharts"},{"id":"including-echarts","depth":2,"text":"Including ECharts"},{"id":"plotting-a-simple-chart","depth":2,"text":"Plotting a Simple Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-started"},"children":[{"type":"element","tag":"a","props":{"href":"#get-started","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Get Started"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"getting-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#getting-apache-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Getting Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts supports several download methods, which are further explained in the next tutorial "},{"type":"element","tag":"a","props":{"href":"en/basics/download"},"children":[{"type":"text","value":"Installation"}]},{"type":"text","value":". Here, we take the example of getting it from the "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"jsDelivr"}]},{"type":"text","value":" CDN and explain how to install it quickly."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"At "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://www.jsdelivr.com/package/npm/echarts"}]},{"type":"text","value":" select "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dist/echarts.js"}]},{"type":"text","value":", click and save it as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" file."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"More information about these files can be found in the next tutorial "},{"type":"element","tag":"a","props":{"href":"en/basics/download"},"children":[{"type":"text","value":"Installation"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"including-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#including-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Including ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create a new "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"index.html"}]},{"type":"text","value":" file in the directory where you just saved "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":", with the following content:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <!-- Include the ECharts file you just downloaded -->\n <script src=\"echarts.js\"></script>\n </head>\n</html>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When you open this "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"index.html"}]},{"type":"text","value":", you will see an empty page. But don't worry. Open the console and make sure that no error message is reported, then you can proceed to the next step."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"plotting-a-simple-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#plotting-a-simple-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Plotting a Simple Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Before drawing we need to prepare a DOM container for ECharts with a defined height and width. After the following code after the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"</head>"}]},{"type":"text","value":" tag introduced earlier."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<body>\n <! -- Prepare a DOM with a defined width and height for ECharts -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n</body>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Then you can initialize an echarts instance with the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":" method and set the echarts instance with [setOption]("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://echarts.apache.org//api.html#"}]},{"type":"text","value":" echartsInstance.setOption) method to generate a simple bar chart。 Here is the complete code."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <title>ECharts</title>\n <!-- Include the ECharts file you just downloaded -->\n <script src=\"echarts.min.js\"></script>\n </head>\n <body>\n <!-- Prepare a DOM with a defined width and height for ECharts -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n <script type=\"text/javascript\">\n // Initialize the echarts instance based on the prepared dom\n var myChart = echarts.init(document.getElementById('main'));\n\n // Specify the configuration items and data for the chart\n var option = {\n title: {\n text: 'ECharts Getting Started Example'\n },\n tooltip: {},\n legend: {\n data: ['sales']\n },\n xAxis: {\n data: ['Shirts', 'Cardigans', 'Chiffons', 'Pants', 'Heels', 'Socks']\n },\n yAxis: {},\n series: [\n {\n name: 'sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n };\n\n // Display the chart using the configuration items and data just specified.\n myChart.setOption(option);\n </script>\n </body>\n</html>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And this is your first chart with Apache ECharts!"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/getting-started&reset=1&edit=1"},"children":[{"type":"text","value":"\n"}]}]},"text":"# Get Started\n\n## Getting Apache ECharts\n\nApache ECharts supports several download methods, which are further explained in the next tutorial [Installation](en/basics/download). Here, we take the example of getting it from the [jsDelivr](https://www.jsdelivr.com/package/npm/echarts) CDN and explain how to install it quickly.\n\nAt [https://www.jsdelivr.com/package/npm/echarts](https://www.jsdelivr.com/package/npm/echarts) select `dist/echarts.js`, click and save it as `echarts.js` file.\n\n> More information about these files can be found in the next tutorial [Installation](en/basics/download).\n\n## Including ECharts\n\nCreate a new `index.html` file in the directory where you just saved `echarts.js`, with the following content:\n\n```html\n<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <!-- Include the ECharts file you just downloaded -->\n <script src=\"echarts.js\"></script>\n </head>\n</html>\n```\n\nWhen you open this `index.html`, you will see an empty page. But don't worry. Open the console and make sure that no error message is reported, then you can proceed to the next step.\n\n## Plotting a Simple Chart\n\nBefore drawing we need to prepare a DOM container for ECharts with a defined height and width. After the following code after the `</head>` tag introduced earlier.\n\n```html\n<body>\n <! -- Prepare a DOM with a defined width and height for ECharts -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n</body>\n```\n\nThen you can initialize an echarts instance with the [echarts.init](https://echarts.apache.org//api.html#echarts.init) method and set the echarts instance with [setOption](https://echarts.apache.org//api.html# echartsInstance.setOption) method to generate a simple bar chart。 Here is the complete code.\n\n```html\n<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <title>ECharts</title>\n <!-- Include the ECharts file you just downloaded -->\n <script src=\"echarts.min.js\"></script>\n </head>\n <body>\n <!-- Prepare a DOM with a defined width and height for ECharts -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n <script type=\"text/javascript\">\n // Initialize the echarts instance based on the prepared dom\n var myChart = echarts.init(document.getElementById('main'));\n\n // Specify the configuration items and data for the chart\n var option = {\n title: {\n text: 'ECharts Getting Started Example'\n },\n tooltip: {},\n legend: {\n data: ['sales']\n },\n xAxis: {\n data: ['Shirts', 'Cardigans', 'Chiffons', 'Pants', 'Heels', 'Socks']\n },\n yAxis: {},\n series: [\n {\n name: 'sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n };\n\n // Display the chart using the configuration items and data just specified.\n myChart.setOption(option);\n </script>\n </body>\n</html>\n```\n\nAnd this is your first chart with Apache ECharts!\n\n<md-example src=\"doc-example/getting-started&reset=1&edit=1\"></md-example>\n","dir":"/en","path":"/en/get-started","extension":".md","createdAt":"2021-07-24T07:49:57.150Z","updatedAt":"2021-07-24T07:49:57.150Z","meta":{"version":0,"revision":0,"created":1627897108307},"$loki":1},{"slug":"posts","title":"Get Started","dir":"/en","path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":2},{"slug":"posts","title":"Basics","dir":"/en","children":[{"title":"Download ECharts","dir":"download"},{"title":"Import ECharts","dir":"import"},{"title":"Resources","dir":"resource","draft":true},{"title":"Inspiration","dir":"inspiration"},{"title":"Get Help","dir":"help"},{"title":"Release Note","dir":"release-note","children":[{"title":"ECharts 5.2.0","draft":true,"dir":"5-2-0"},{"title":"ECharts 5 Features","dir":"v5-feature"},{"title":"ECharts 5 Upgrade Guide","dir":"v5-upgrade-guide"}]}],"path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":3},{"slug":"posts","title":"Concepts","dir":"/en","children":[{"title":"Chart Container","dir":"chart-size"},{"title":"Chart Option","dir":"options","draft":true},{"title":"Series","dir":"series","draft":true},{"title":"Style","dir":"style"},{"title":"Dataset","dir":"dataset"},{"title":"Data Transform","dir":"data-transform"},{"title":"Coordinate","dir":"coordinate","draft":true},{"title":"Axis","dir":"axis"},{"title":"Visual Mapping","dir":"visual-map"},{"title":"Legend","dir":"legend"},{"title":"Event and Action","dir":"event"}],"path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":4},{"slug":"posts","title":"Application","dir":"/en","children":[{"title":"Common Charts","dir":"chart-types","children":[{"title":"Bar","dir":"bar","children":[{"title":"Basic Bar","dir":"basic-bar"},{"title":"Stacked Bar","dir":"stacked-bar"},{"title":"Bar Racing","dir":"bar-race","draft":true},{"title":"Bar Polar","dir":"polar-bar","draft":true},{"title":"Waterfall","dir":"waterfall","draft":true}]},{"title":"Line","dir":"line","children":[{"title":"Basic Line","dir":"basic-line"},{"title":"Stacked Line","dir":"stacked-line"},{"title":"Area Chart","dir":"area-line"},{"title":"Smoothed Line","dir":"smooth-line"},{"title":"Step Line","dir":"step-line"}]},{"title":"Pie","dir":"pie","children":[{"title":"Basic Pie","dir":"basic-pie"},{"title":"Ring Style","dir":"doughnut"},{"title":"Rose Style","dir":"rose"}]},{"title":"Scatter","dir":"scatter","children":[{"title":"Basic Scatter","dir":"basic-scatter"}]}]},{"title":"Mobile","dir":"mobile","draft":true},{"title":"Cross Platform","dir":"cross-platform","children":[{"title":"Server Side Rendering","dir":"server"}]},{"title":"Data","dir":"data","children":[{"title":"Dynamic Data","dir":"dynamic-data"},{"title":"Drilldown","dir":"drilldown","draft":true}]},{"title":"Label","dir":"label","children":[{"title":"Rich Text","dir":"rich-text"}]},{"title":"Interaction","dir":"interaction","children":[{"title":"Drag","dir":"drag"},{"title":"Connect","dir":"connect","draft":true}]}],"path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":5},{"slug":"posts","title":"Best Practice","dir":"/en","children":[{"title":"Mobile Optimization","dir":"mobile","draft":true},{"title":"Canvas vs. SVG","dir":"canvas-vs-svg"},{"title":"Aria","dir":"aria"}],"path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":6},{"slug":"posts","title":"Edit Handbook","dir":"/en","children":[{"title":"Edit Guide","dir":"edit-guide"}],"path":"/en/posts","extension":".yml","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T12:30:22.488Z","meta":{"version":0,"revision":0,"created":1627897108316},"$loki":7},{"slug":"get-started","toc":[{"id":"获取-apache-echarts","depth":2,"text":"获取 Apache ECharts"},{"id":"引入-apache-echarts","depth":2,"text":"引入 Apache ECharts"},{"id":"绘制一个简单的图表","depth":2,"text":"绘制一个简单的图表"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"快速上手"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BF%AB%E9%80%9F%E4%B8%8A%E6%89%8B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"快速上手"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"获取-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%8E%B7%E5%8F%96-apache-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"获取 Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 支持多种下载方式,可以在下一篇教程"},{"type":"element","tag":"a","props":{"href":"zh/basics/download"},"children":[{"type":"text","value":"安装"}]},{"type":"text","value":"中查看所有方式。这里,我们以从 "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"jsDelivr"}]},{"type":"text","value":" CDN 上获取为例,介绍如何快速安装。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://www.jsdelivr.com/package/npm/echarts"}]},{"type":"text","value":" 选择 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dist/echarts.js"}]},{"type":"text","value":",点击并保存为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" 文件。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"关于这些文件的介绍,可以在下一篇教程"},{"type":"element","tag":"a","props":{"href":"zh/basics/download"},"children":[{"type":"text","value":"安装"}]},{"type":"text","value":"中了解更多信息。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"引入-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%95%E5%85%A5-apache-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"引入 Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在刚才保存 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" 的目录新建一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"index.html"}]},{"type":"text","value":" 文件,内容如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <!-- 引入刚刚下载的 ECharts 文件 -->\n <script src=\"echarts.js\"></script>\n </head>\n</html>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"打开这个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"index.html"}]},{"type":"text","value":",你会看到一片空白。但是不要担心,打开控制台确认没有报错信息,就可以进行下一步。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"绘制一个简单的图表"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%BB%98%E5%88%B6%E4%B8%80%E4%B8%AA%E7%AE%80%E5%8D%95%E7%9A%84%E5%9B%BE%E8%A1%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"绘制一个简单的图表"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在绘图前我们需要为 ECharts 准备一个定义了高宽的 DOM 容器。在刚才的例子 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"</head>"}]},{"type":"text","value":" 之后,添加:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<body>\n <!-- 为 ECharts 准备一个定义了宽高的 DOM -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n</body>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"然后就可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":" 方法初始化一个 echarts 实例并通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echartsInstance.setOption","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":" 方法生成一个简单的柱状图,下面是完整代码。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <title>ECharts</title>\n <!-- 引入刚刚下载的 ECharts 文件 -->\n <script src=\"echarts.min.js\"></script>\n </head>\n <body>\n <!-- 为 ECharts 准备一个定义了宽高的 DOM -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n <script type=\"text/javascript\">\n // 基于准备好的dom,初始化echarts实例\n var myChart = echarts.init(document.getElementById('main'));\n\n // 指定图表的配置项和数据\n var option = {\n title: {\n text: 'ECharts 入门示例'\n },\n tooltip: {},\n legend: {\n data: ['销量']\n },\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n };\n\n // 使用刚指定的配置项和数据显示图表。\n myChart.setOption(option);\n </script>\n </body>\n</html>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这样你的第一个图表就诞生了!"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/getting-started"},"children":[{"type":"text","value":"\n"}]}]},"text":"# 快速上手\n\n## 获取 Apache ECharts\n\nApache ECharts 支持多种下载方式,可以在下一篇教程[安装](zh/basics/download)中查看所有方式。这里,我们以从 [jsDelivr](https://www.jsdelivr.com/package/npm/echarts) CDN 上获取为例,介绍如何快速安装。\n\n在 [https://www.jsdelivr.com/package/npm/echarts](https://www.jsdelivr.com/package/npm/echarts) 选择 `dist/echarts.js`,点击并保存为 `echarts.js` 文件。\n\n> 关于这些文件的介绍,可以在下一篇教程[安装](zh/basics/download)中了解更多信息。\n\n## 引入 Apache ECharts\n\n在刚才保存 `echarts.js` 的目录新建一个 `index.html` 文件,内容如下:\n\n```html\n<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <!-- 引入刚刚下载的 ECharts 文件 -->\n <script src=\"echarts.js\"></script>\n </head>\n</html>\n```\n\n打开这个 `index.html`,你会看到一片空白。但是不要担心,打开控制台确认没有报错信息,就可以进行下一步。\n\n## 绘制一个简单的图表\n\n在绘图前我们需要为 ECharts 准备一个定义了高宽的 DOM 容器。在刚才的例子 `</head>` 之后,添加:\n\n```html\n<body>\n <!-- 为 ECharts 准备一个定义了宽高的 DOM -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n</body>\n```\n\n然后就可以通过 [echarts.init](https://echarts.apache.org//api.html#echarts.init) 方法初始化一个 echarts 实例并通过 [setOption](https://echarts.apache.org//api.html#echartsInstance.setOption) 方法生成一个简单的柱状图,下面是完整代码。\n\n```html\n<!DOCTYPE html>\n<html>\n <head>\n <meta charset=\"utf-8\" />\n <title>ECharts</title>\n <!-- 引入刚刚下载的 ECharts 文件 -->\n <script src=\"echarts.min.js\"></script>\n </head>\n <body>\n <!-- 为 ECharts 准备一个定义了宽高的 DOM -->\n <div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n <script type=\"text/javascript\">\n // 基于准备好的dom,初始化echarts实例\n var myChart = echarts.init(document.getElementById('main'));\n\n // 指定图表的配置项和数据\n var option = {\n title: {\n text: 'ECharts 入门示例'\n },\n tooltip: {},\n legend: {\n data: ['销量']\n },\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n };\n\n // 使用刚指定的配置项和数据显示图表。\n myChart.setOption(option);\n </script>\n </body>\n</html>\n```\n\n这样你的第一个图表就诞生了!\n\n<md-example src=\"doc-example/getting-started\"></md-example>\n","dir":"/zh","path":"/zh/get-started","extension":".md","createdAt":"2021-07-24T07:49:57.150Z","updatedAt":"2021-07-24T07:49:57.151Z","meta":{"version":0,"revision":0,"created":1627897108333},"$loki":8},{"slug":"posts","title":"快速上手","dir":"/zh","path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":9},{"slug":"posts","title":"入门篇","dir":"/zh","children":[{"title":"获取 ECharts","dir":"download"},{"title":"在项目中引入 ECharts","dir":"import"},{"title":"资源列表","dir":"resource","draft":true},{"title":"获取灵感","dir":"inspiration"},{"title":"寻求帮助","dir":"help"},{"title":"版本介绍","dir":"release-note","children":[{"title":"ECharts 5.2.0","draft":true,"dir":"5-2-0"},{"title":"ECharts 5 新特性","dir":"v5-feature"},{"title":"ECharts 5 升级指南","dir":"v5-upgrade-guide"}]}],"path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":10},{"slug":"posts","title":"概念篇","dir":"/zh","children":[{"title":"图表容器及大小","dir":"chart-size"},{"title":"配置项","dir":"options","draft":true},{"title":"系列","dir":"series","draft":true},{"title":"样式","dir":"style"},{"title":"数据集","dir":"dataset"},{"title":"数据转换","dir":"data-transform"},{"title":"坐标系","dir":"coordinate","draft":true},{"title":"坐标轴","dir":"axis"},{"title":"视觉映射","dir":"visual-map"},{"title":"图例","dir":"legend"},{"title":"事件与行为","dir":"event"}],"path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":11},{"slug":"posts","title":"应用篇","dir":"/zh","children":[{"title":"常用图表类型","dir":"chart-types","children":[{"title":"柱状图","dir":"bar","children":[{"title":"基础柱状图","dir":"basic-bar"},{"title":"堆叠柱状图","dir":"stacked-bar"},{"title":"动态排序柱状图","dir":"bar-race","draft":true},{"title":"极坐标系柱状图","dir":"polar-bar","draft":true},{"title":"瀑布图","dir":"waterfall","draft":true},{"title":"视觉映射的柱状图","dir":"visual-map","draft":true}]},{"title":"折线图","dir":"line","children":[{"title":"基础折线图","dir":"basic-line"},{"title":"堆叠折线图","dir":"stacked-line"},{"title":"区域面积图","dir":"area-line"},{"title":"平滑曲线图","dir":"smooth-line"},{"title":"阶梯线图","dir":"step-line"}]},{"title":"饼图","dir":"pie","children":[{"title":"基础饼图","dir":"basic-pie"},{"title":"圆环图","dir":"doughnut"},{"title":"南丁格尔图(玫瑰图)","dir":"rose"}]},{"title":"散点图","dir":"scatter","children":[{"title":"基础散点图","dir":"basic-scatter"}]}]},{"title":"移动端优化","dir":"mobile","draft":true},{"title":"跨平台方案","dir":"cross-platform","children":[{"title":"百度智能小程序","dir":"baidu-app"},{"title":"微信小程序","dir":"wechat-app"},{"title":"服务端渲染","dir":"server"}]},{"title":"数据处理","dir":"data","children":[{"title":"动态的异步数据","dir":"dynamic-data"},{"title":"数据下钻","dir":"drilldown","draft":true}]},{"title":"标签","dir":"label","children":[{"title":"富文本标签","dir":"rich-text"}]},{"title":"交互","dir":"interaction","children":[{"title":"拖拽的实现","dir":"drag"},{"title":"多图联动","dir":"connect","draft":true}]}],"path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":12},{"slug":"posts","title":"最佳实践","dir":"/zh","children":[{"title":"移动端优化","dir":"mobile","draft":true},{"title":"Canvas vs. SVG","dir":"canvas-vs-svg"},{"title":"无障碍访问","dir":"aria"}],"path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":13},{"slug":"posts","title":"编辑本文档","dir":"/zh","children":[{"title":"文档编辑指南","dir":"edit-guide"}],"path":"/zh/posts","extension":".yml","createdAt":"2021-07-19T10:14:46.867Z","updatedAt":"2021-07-29T06:29:23.541Z","meta":{"version":0,"revision":0,"created":1627897108337},"$loki":14},{"slug":"mobile","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/best-practice","path":"/en/best-practice/mobile","extension":".md","createdAt":"2021-06-04T12:26:37.917Z","updatedAt":"2021-06-04T12:26:37.917Z","meta":{"version":0,"revision":0,"created":1627897108338},"$loki":15},{"slug":"coordinate","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/concepts","path":"/en/concepts/coordinate","extension":".md","createdAt":"2021-06-04T12:26:37.918Z","updatedAt":"2021-06-04T12:26:37.918Z","meta":{"version":0,"revision":0,"created":1627897108338},"$loki":16},{"slug":"series","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/concepts","path":"/en/concepts/series","extension":".md","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-06-04T12:26:37.919Z","meta":{"version":0,"revision":0,"created":1627897108339},"$loki":17},{"slug":"options","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/concepts","path":"/en/concepts/options","extension":".md","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-06-04T12:26:37.919Z","meta":{"version":0,"revision":0,"created":1627897108339},"$loki":18},{"slug":"tooltip","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/concepts","path":"/en/concepts/tooltip","extension":".md","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-06-04T12:26:37.919Z","meta":{"version":0,"revision":0,"created":1627897108340},"$loki":19},{"slug":"connect","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/application","path":"/zh/application/connect","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-06-04T12:26:37.922Z","meta":{"version":0,"revision":0,"created":1627897108340},"$loki":20},{"slug":"mobile","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/application","path":"/zh/application/mobile","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-06-04T12:26:37.923Z","meta":{"version":0,"revision":0,"created":1627897108341},"$loki":21},{"slug":"mobile","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/best-practice","path":"/zh/best-practice/mobile","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897108341},"$loki":22},{"slug":"coordinate","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/concepts","path":"/zh/concepts/coordinate","extension":".md","createdAt":"2021-06-04T12:26:37.933Z","updatedAt":"2021-06-04T12:26:37.933Z","meta":{"version":0,"revision":0,"created":1627897108342},"$loki":23},{"slug":"help","toc":[{"id":"technical-problems","depth":2,"text":"Technical Problems"},{"id":"make-sure-that-existing-documentation-do-not-solve-your-problem","depth":3,"text":"Make sure that existing documentation do not solve your problem"},{"id":"create-the-minimal-reproducible-demo","depth":3,"text":"Create the Minimal Reproducible Demo"},{"id":"determining-if-its-a-bug","depth":3,"text":"Determining if It's a Bug"},{"id":"non-technical-questions","depth":2,"text":"Non-technical questions"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-help"},"children":[{"type":"element","tag":"a","props":{"href":"#get-help","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Get Help"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"technical-problems"},"children":[{"type":"element","tag":"a","props":{"href":"#technical-problems","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Technical Problems"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"make-sure-that-existing-documentation-do-not-solve-your-problem"},"children":[{"type":"element","tag":"a","props":{"href":"#make-sure-that-existing-documentation-do-not-solve-your-problem","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Make sure that existing documentation do not solve your problem"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts has a very large number of users, so it's likely that someone else has encountered and solved a problem you've had before. By looking at the documentation and using the search engine, you can help yourself to solve the problem in the first place without relying on the community for help."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Therefore, before doing anything else, make sure that existing documentation and other resources do not solve your problem. Reources that can be helpful include:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"API"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//option.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Option Manual"}]},{"type":"text","value":": you can try to use the search function"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Articles in this handbook"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//faq.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"FAQ"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Searching in "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"GitHub issue"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Using the search engine"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"create-the-minimal-reproducible-demo"},"children":[{"type":"element","tag":"a","props":{"href":"#create-the-minimal-reproducible-demo","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Create the Minimal Reproducible Demo"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Create an example on "},{"type":"element","tag":"a","props":{"href":"https://codepen.io/Ovilia/pen/dyYWXWM","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Codepen"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://codesandbox.io/s/mystifying-bash-2uthz","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Codesandbox"}]},{"type":"text","value":", which will make it easier for others to reproduce your problem."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The example should reproduce your problem in the simplest way possible. Removing unnecessary code and data will allow those who help you to locate the problem more quickly, thus allowing your problem to be solved more quickly. See "},{"type":"element","tag":"a","props":{"href":"https://stackoverflow.com/help/minimal-reproducible-example","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"How to Create a Minimal, Reproducible Example"}]},{"type":"text","value":" for a more detailed description."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"determining-if-its-a-bug"},"children":[{"type":"element","tag":"a","props":{"href":"#determining-if-its-a-bug","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Determining if It's a Bug"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"report-a-bug-or-request-a-new-feature"},"children":[{"type":"element","tag":"a","props":{"href":"#report-a-bug-or-request-a-new-feature","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Report a Bug or Request a New Feature"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If it doesn't match the documentation or your intended result, it's probably a bug. If it's a bug, or you have a feature request, use the "},{"type":"element","tag":"a","props":{"href":"https://ecomfe.github.io/echarts-issue-helper/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"issue template"}]},{"type":"text","value":" to create a new issue and follow the prompts to describe it in detail."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"how-to-questions"},"children":[{"type":"element","tag":"a","props":{"href":"#how-to-questions","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"How-To Questions"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If it's not a bug, but you don't know how to achieve something, try the "},{"type":"element","tag":"a","props":{"href":"https://stackoverflow.com"},"children":[{"type":"text","value":"stackoverflow.com"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you don't get an answer, you can also send an email to the email group "},{"type":"element","tag":"a","props":{"href":"mailto:dev@echarts.apache.org"},"children":[{"type":"text","value":"dev@echarts.apache.org"}]},{"type":"text","value":". In order for more people to understand your question and to get help in future searches, it is highly recommended to send emails in English."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"non-technical-questions"},"children":[{"type":"element","tag":"a","props":{"href":"#non-technical-questions","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Non-technical questions"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Other questions can be sent in English to the mail group "},{"type":"element","tag":"a","props":{"href":"mailto:dev@echarts.apache.org"},"children":[{"type":"text","value":"dev@echarts.apache.org"}]},{"type":"text","value":"."}]}]},"text":"# Get Help\n\n## Technical Problems\n\n### Make sure that existing documentation do not solve your problem\n\nECharts has a very large number of users, so it's likely that someone else has encountered and solved a problem you've had before. By looking at the documentation and using the search engine, you can help yourself to solve the problem in the first place without relying on the community for help.\n\nTherefore, before doing anything else, make sure that existing documentation and other resources do not solve your problem. Reources that can be helpful include:\n\n- [API](https://echarts.apache.org//api.html)\n- [Option Manual](https://echarts.apache.org//option.html): you can try to use the search function\n- Articles in this handbook\n- [FAQ](https://echarts.apache.org//faq.html)\n- Searching in [GitHub issue](https://github.com/apache/echarts/issues)\n- Using the search engine\n\n### Create the Minimal Reproducible Demo\n\nCreate an example on [Codepen](https://codepen.io/Ovilia/pen/dyYWXWM), [Codesandbox](https://codesandbox.io/s/mystifying-bash-2uthz), which will make it easier for others to reproduce your problem.\n\nThe example should reproduce your problem in the simplest way possible. Removing unnecessary code and data will allow those who help you to locate the problem more quickly, thus allowing your problem to be solved more quickly. See [How to Create a Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example) for a more detailed description.\n\n### Determining if It's a Bug\n\n#### Report a Bug or Request a New Feature\n\nIf it doesn't match the documentation or your intended result, it's probably a bug. If it's a bug, or you have a feature request, use the [issue template](https://ecomfe.github.io/echarts-issue-helper/) to create a new issue and follow the prompts to describe it in detail.\n\n#### How-To Questions\n\nIf it's not a bug, but you don't know how to achieve something, try the <a href=\"https://stackoverflow.com\">stackoverflow.com</a>\n\nIf you don't get an answer, you can also send an email to the email group [dev@echarts.apache.org](mailto:dev@echarts.apache.org). In order for more people to understand your question and to get help in future searches, it is highly recommended to send emails in English.\n\n## Non-technical questions\n\nOther questions can be sent in English to the mail group [dev@echarts.apache.org](mailto:dev@echarts.apache.org).\n","dir":"/en/basics","path":"/en/basics/help","extension":".md","createdAt":"2021-07-24T08:39:19.734Z","updatedAt":"2021-07-24T08:46:55.955Z","meta":{"version":0,"revision":0,"created":1627897108365},"$loki":24},{"slug":"options","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/concepts","path":"/zh/concepts/options","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-06-04T12:26:37.934Z","meta":{"version":0,"revision":0,"created":1627897108367},"$loki":25},{"slug":"tooltip","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/concepts","path":"/zh/concepts/tooltip","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-06-04T12:26:37.934Z","meta":{"version":0,"revision":0,"created":1627897108368},"$loki":26},{"slug":"download","toc":[{"id":"installation","depth":2,"text":"Installation"},{"id":"use-from-github","depth":3,"text":"Use From GitHub"},{"id":"use-from-npm","depth":3,"text":"Use From npm"},{"id":"use-from-cdn","depth":3,"text":"Use From CDN"},{"id":"online-customization","depth":3,"text":"Online Customization"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#get-apache-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Get Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts offers a variety of installation options, so you can choose any of the following options depending on your project."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Use From GitHub"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Use From npm"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Use From CDN"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Online Customization"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We'll go over each of these installation methods and the directory structure after download."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"installation"},"children":[{"type":"element","tag":"a","props":{"href":"#installation","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Installation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"use-from-github"},"children":[{"type":"element","tag":"a","props":{"href":"#use-from-github","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Use From GitHub"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can find links to each version on the "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/releases","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"release"}]},{"type":"text","value":" page of the "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"apache/echarts"}]},{"type":"text","value":" project. Click on the Source code in Assets at the bottom of the download page, and unzip the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" file in the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dist"}]},{"type":"text","value":" directory to include the full ECharts functionality."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"use-from-npm"},"children":[{"type":"element","tag":"a","props":{"href":"#use-from-npm","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Use From npm"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"sh","line-highlights":"","file-name":""},"children":[{"type":"text","value":"npm install echarts --save\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See "},{"type":"element","tag":"a","props":{"href":"en/basics/import"},"children":[{"type":"text","value":"Introducing Apache ECharts in your project"}]},{"type":"text","value":" for details."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"use-from-cdn"},"children":[{"type":"element","tag":"a","props":{"href":"#use-from-cdn","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Use From CDN"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Recommend referencing "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts"}]},{"type":"text","value":" from jsDelivr."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"online-customization"},"children":[{"type":"element","tag":"a","props":{"href":"#online-customization","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Online Customization"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to introduce only some modules to reduce package size, you can use the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//builder.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts online customization"}]},{"type":"text","value":" function."}]}]},"text":"# Get Apache ECharts\n\nApache ECharts offers a variety of installation options, so you can choose any of the following options depending on your project.\n\n- Use From GitHub\n- Use From npm\n- Use From CDN\n- Online Customization\n\nWe'll go over each of these installation methods and the directory structure after download.\n\n## Installation\n\n### Use From GitHub\n\nYou can find links to each version on the [release](https://github.com/apache/echarts/releases) page of the [apache/echarts](https://github.com/apache/echarts) project. Click on the Source code in Assets at the bottom of the download page, and unzip the `echarts.js` file in the `dist` directory to include the full ECharts functionality.\n\n### Use From npm\n\n```sh\nnpm install echarts --save\n```\n\nSee [Introducing Apache ECharts in your project](en/basics/import) for details.\n\n### Use From CDN\n\nRecommend referencing [echarts](https://www.jsdelivr.com/package/npm/echarts) from jsDelivr.\n\n### Online Customization\n\nIf you want to introduce only some modules to reduce package size, you can use the [ECharts online customization](https://echarts.apache.org//builder.html) function.\n","dir":"/en/basics","path":"/en/basics/download","extension":".md","createdAt":"2021-07-28T08:09:09.439Z","updatedAt":"2021-07-28T08:09:09.440Z","meta":{"version":0,"revision":0,"created":1627897108382},"$loki":27},{"slug":"series","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/concepts","path":"/zh/concepts/series","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-06-04T12:26:37.934Z","meta":{"version":0,"revision":0,"created":1627897108383},"$loki":28},{"slug":"import","toc":[{"id":"npm-installation-of-echarts","depth":2,"text":"NPM Installation of ECharts"},{"id":"introduce-echarts","depth":2,"text":"Introduce ECharts"},{"id":"importing-required-charts-and-components-to-have-minimal-bundle","depth":2,"text":"Importing Required Charts and Components to Have Minimal Bundle."},{"id":"minimal-option-type-in-typescript","depth":2,"text":"Minimal Option Type in TypeScript"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"use-apache-echarts-with-bundler-and-npm"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#use-apache-echarts-with-bundler-and-npm","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Use Apache ECharts with bundler and NPM"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If your development environment uses a package management tool like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"npm"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yarn"}]},{"type":"text","value":" and builds with a packaging tool like Webpack, this article will describe how to get a minimal bundle of Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" via treeshaking."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"npm-installation-of-echarts"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#npm-installation-of-echarts","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"NPM Installation of ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can install ECharts via npm using the following command"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"shell","line-highlights":"","file-name":""},"children":[{"type":"text","value":"npm install echarts --save\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"introduce-echarts"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#introduce-echarts","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Introduce ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n\n// initialize the echarts instance\nvar myChart = echarts.init(document.getElementById('main'));\n// Draw the chart\nmyChart.setOption({\n title: {\n text: 'ECharts Getting Started Example'\n },\n tooltip: {},\n xAxis: {\n data: ['shirt', 'cardigan', 'chiffon', 'pants', 'heels', 'socks']\n },\n yAxis: {},\n series: [\n {\n name: 'sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"importing-required-charts-and-components-to-have-minimal-bundle"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#importing-required-charts-and-components-to-have-minimal-bundle","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Importing Required Charts and Components to Have Minimal Bundle."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The above code will import all the charts and components in ECharts, but if you don't want to bring in all the components, you can use the tree-shakeable interface provided by ECharts to bundle the required components and get a minimal bundle."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Import the echarts core module, which provides the necessary interfaces for using echarts.\nimport * as echarts from 'echarts/core';\n// Import bar charts, all with Chart suffix\nimport { BarChart } from 'echarts/charts';\n// import the tooltip, title, and rectangular coordinate system components, all suffixed with Component\nimport {\n TitleComponent,\n TooltipComponent,\n GridComponent\n} from 'echarts/components';\n// Import the Canvas renderer, note that introducing the CanvasRenderer or SVGRenderer is a required step\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// Register the required components\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\n// The next step is the same as before, initialize the chart and set the configuration items\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n // ...\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Note that in order to keep the size of the package to a minimum, ECharts does not provide any renderer in tree-shakeable interface, so you need to choose to import "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVGRenderer"}]},{"type":"text","value":" as the renderer. The advantage of this is that if you only need to use the svg rendering mode, the bundle will not include the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":" module, which is not needed."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The \"Full Code\" tab on our sample editor page provides a very convenient way to generate a tree-shakable code. It will generate tree-shakable code based on the current option dynamically. You can use it directly in your project."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"minimal-option-type-in-typescript"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#minimal-option-type-in-typescript","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Minimal Option Type in TypeScript"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For developers who are using TypeScript to develop ECharts, we provide a type interface to combine the minimal "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"EChartsOption"}]},{"type":"text","value":" type. This stricter type can effectively help you check for missing components or charts."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\nimport {\n BarChart,\n // The series types are defined with the SeriesOption suffix\n BarSeriesOption,\n LineChart,\n LineSeriesOption\n} from 'echarts/charts';\nimport {\n TitleComponent,\n // The component types are defined with the suffix ComponentOption\n TitleComponentOption,\n GridComponent,\n GridComponentOption\n} from 'echarts/components';\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// Combine an Option type with only required components and charts via ComposeOption\ntype ECOption = echarts.ComposeOption<\n | BarSeriesOption\n | LineSeriesOption\n | TitleComponentOption\n | GridComponentOption\n>;\n\n// Register the required components\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\nvar option: ECOption = {\n // ...\n};\n"}]}]}]},"text":"# Use Apache ECharts with bundler and NPM\n\nIf your development environment uses a package management tool like `npm` or `yarn` and builds with a packaging tool like Webpack, this article will describe how to get a minimal bundle of Apache ECharts<sup>TM</sup> via treeshaking.\n\n## NPM Installation of ECharts\n\nYou can install ECharts via npm using the following command\n\n```shell\nnpm install echarts --save\n```\n\n## Introduce ECharts\n\n```js\nimport * as echarts from 'echarts';\n\n// initialize the echarts instance\nvar myChart = echarts.init(document.getElementById('main'));\n// Draw the chart\nmyChart.setOption({\n title: {\n text: 'ECharts Getting Started Example'\n },\n tooltip: {},\n xAxis: {\n data: ['shirt', 'cardigan', 'chiffon', 'pants', 'heels', 'socks']\n },\n yAxis: {},\n series: [\n {\n name: 'sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n});\n```\n\n## Importing Required Charts and Components to Have Minimal Bundle.\n\nThe above code will import all the charts and components in ECharts, but if you don't want to bring in all the components, you can use the tree-shakeable interface provided by ECharts to bundle the required components and get a minimal bundle.\n\n```js\n// Import the echarts core module, which provides the necessary interfaces for using echarts.\nimport * as echarts from 'echarts/core';\n// Import bar charts, all with Chart suffix\nimport { BarChart } from 'echarts/charts';\n// import the tooltip, title, and rectangular coordinate system components, all suffixed with Component\nimport {\n TitleComponent,\n TooltipComponent,\n GridComponent\n} from 'echarts/components';\n// Import the Canvas renderer, note that introducing the CanvasRenderer or SVGRenderer is a required step\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// Register the required components\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\n// The next step is the same as before, initialize the chart and set the configuration items\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n // ...\n});\n```\n\n> Note that in order to keep the size of the package to a minimum, ECharts does not provide any renderer in tree-shakeable interface, so you need to choose to import `CanvasRenderer` or `SVGRenderer` as the renderer. The advantage of this is that if you only need to use the svg rendering mode, the bundle will not include the `CanvasRenderer` module, which is not needed.\n\nThe \"Full Code\" tab on our sample editor page provides a very convenient way to generate a tree-shakable code. It will generate tree-shakable code based on the current option dynamically. You can use it directly in your project.\n\n## Minimal Option Type in TypeScript\n\nFor developers who are using TypeScript to develop ECharts, we provide a type interface to combine the minimal `EChartsOption` type. This stricter type can effectively help you check for missing components or charts.\n\n```ts\nimport * as echarts from 'echarts/core';\nimport {\n BarChart,\n // The series types are defined with the SeriesOption suffix\n BarSeriesOption,\n LineChart,\n LineSeriesOption\n} from 'echarts/charts';\nimport {\n TitleComponent,\n // The component types are defined with the suffix ComponentOption\n TitleComponentOption,\n GridComponent,\n GridComponentOption\n} from 'echarts/components';\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// Combine an Option type with only required components and charts via ComposeOption\ntype ECOption = echarts.ComposeOption<\n | BarSeriesOption\n | LineSeriesOption\n | TitleComponentOption\n | GridComponentOption\n>;\n\n// Register the required components\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\nvar option: ECOption = {\n // ...\n};\n```\n","dir":"/en/basics","path":"/en/basics/import","extension":".md","createdAt":"2021-07-24T08:50:13.334Z","updatedAt":"2021-07-24T08:53:38.084Z","meta":{"version":0,"revision":0,"created":1627897108403},"$loki":29},{"slug":"inspiration","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"get-inspired"},"children":[{"type":"element","tag":"a","props":{"href":"#get-inspired","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Get Inspired"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The following list provides some ideas when you have a question \"I don't know how to design a chart\" or \"I don't know how to use Apache ECharts to achieve a certain effect\"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Apache ECharts Official Examples"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\"Applications - Common Charts\" in this handbook"}]},{"type":"text","value":"\n"}]}]},"text":"# Get Inspired\n\nThe following list provides some ideas when you have a question \"I don't know how to design a chart\" or \"I don't know how to use Apache ECharts to achieve a certain effect\".\n\n- [Apache ECharts Official Examples](https://echarts.apache.org//examples)\n- \"Applications - Common Charts\" in this handbook\n","dir":"/en/basics","path":"/en/basics/inspiration","extension":".md","createdAt":"2021-07-24T08:47:14.252Z","updatedAt":"2021-07-24T08:53:01.555Z","meta":{"version":0,"revision":0,"created":1627897108409},"$loki":30},{"slug":"aria","toc":[{"id":"overall-description-modification","depth":2,"text":"Overall Description Modification"},{"id":"customize-template-description","depth":2,"text":"Customize Template Description"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"web-accessibility"},"children":[{"type":"element","tag":"a","props":{"href":"#web-accessibility","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Web Accessibility"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://www.w3.org/WAI/intro/aria","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"WAI-ARIA"}]},{"type":"text","value":", the Accessible Rich Internet Applications Suite developed by W3C, defines a way to make Web content and Web applications more accessible to people with disabilities. ECharts 4.0 complied with the specification, support generating description based on the chart configuration intelligently, to allows blind people to understand the content of the chart with the help of reading devices, to make the chart accessible to more people."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Accessibility function was turn off by default, turn it on by define the value of "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.show"}]},{"type":"text","value":" as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":". ECharts will automatically generate a description of the chart according to the title, chart, data, etc.. Users can also change the description through the configuration item."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"About the configuration item:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n aria: {\n show: true\n },\n title: {\n text: 'Referrer of a User',\n x: 'center'\n },\n series: [\n {\n name: 'Referrer',\n type: 'pie',\n data: [\n { value: 335, name: 'Direct Visit' },\n { value: 310, name: 'Email Marketing' },\n { value: 234, name: 'Union Ad' },\n { value: 135, name: 'Video Ad' },\n { value: 1548, name: 'Search Engine' }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-pie"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There will be an "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"area-label"}]},{"type":"text","value":" attribute on the Chart DOM. With the help of the reading device, blind people can understand by hearing the following message:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"null","line-highlights":"","file-name":""},"children":[{"type":"text","value":"This is a chart about \"Referrer of a User\" with type Pie chart named Referrer. The data is as follows: the data of Direct Visit is 335,the data of Mail Marketing is 310,the data of Union Ad is 234,the data of Video Ad is 135,the data of Search Engine is 1548.\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"overall-description-modification"},"children":[{"type":"element","tag":"a","props":{"href":"#overall-description-modification","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Overall Description Modification"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For some charts, the default item description cannot show the info of the whole chart. In the following scatter chart, the description generated by default can include all the items, however, hearing info of hundreds of items has no helps to understand the information the chart represented."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Under this circumstance, user can define the overall description by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.description","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":" configuration item."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customize-template-description"},"children":[{"type":"element","tag":"a","props":{"href":"#customize-template-description","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customize Template Description"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Except for the overall description modify, we also provide the template of generating the description. You can easily modify the description in fine-grain level."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The basic process to generate a description: If "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.show"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":", then generate the ARIA description (otherwise, no.). If "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.description","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":" was defined, use it as the overall description (otherwise, use the default to generate the description.). We provide the basic algorithm, it needs to be changed only if the description generated is not suitable. You can even use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":" to cover the default if needed."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"While using the template to generate, firstly make sure whether the title "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#title.text","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"title.text"}]},{"type":"text","value":" exist to decide to use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.general.withTitle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" or "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.general.withoutTitle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.general.withoutTitle"}]},{"type":"text","value":" as the overall description. Configuration item "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'{title}'"}]},{"type":"text","value":" will be replaced by the chart title. In another word, if "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" was defined as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"This is a chart about \"{title}\""}]},{"type":"text","value":", and the title is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Prize Distribution Chart'"}]},{"type":"text","value":", the description of this part will be "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'This is a chart about \"Prize Distribution Chart\"'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"After generating the title, ECharts will splice the description of the series and data after the title part. Every part of the template can include template variables, to be replaced by the actual value in the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The complete process of generating description, please check: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ARIA Document"}]},{"type":"text","value":"."}]}]},"text":"# Web Accessibility\n\n[WAI-ARIA](https://www.w3.org/WAI/intro/aria), the Accessible Rich Internet Applications Suite developed by W3C, defines a way to make Web content and Web applications more accessible to people with disabilities. ECharts 4.0 complied with the specification, support generating description based on the chart configuration intelligently, to allows blind people to understand the content of the chart with the help of reading devices, to make the chart accessible to more people.\n\nThe Accessibility function was turn off by default, turn it on by define the value of [aria.show](https://echarts.apache.org/option.html#aria.show) as `true`. ECharts will automatically generate a description of the chart according to the title, chart, data, etc.. Users can also change the description through the configuration item.\n\nAbout the configuration item:\n\n```js\noption = {\n aria: {\n show: true\n },\n title: {\n text: 'Referrer of a User',\n x: 'center'\n },\n series: [\n {\n name: 'Referrer',\n type: 'pie',\n data: [\n { value: 335, name: 'Direct Visit' },\n { value: 310, name: 'Email Marketing' },\n { value: 234, name: 'Union Ad' },\n { value: 135, name: 'Video Ad' },\n { value: 1548, name: 'Search Engine' }\n ]\n }\n ]\n};\n```\n\n<md-example src=\"doc-example/aria-pie\"></md-example>\n\nThere will be an `area-label` attribute on the Chart DOM. With the help of the reading device, blind people can understand by hearing the following message:\n\n```\nThis is a chart about \"Referrer of a User\" with type Pie chart named Referrer. The data is as follows: the data of Direct Visit is 335,the data of Mail Marketing is 310,the data of Union Ad is 234,the data of Video Ad is 135,the data of Search Engine is 1548.\n```\n\n## Overall Description Modification\n\nFor some charts, the default item description cannot show the info of the whole chart. In the following scatter chart, the description generated by default can include all the items, however, hearing info of hundreds of items has no helps to understand the information the chart represented.\n\nUnder this circumstance, user can define the overall description by [aria.description](https://echarts.apache.org/option.html#aria.description) configuration item.\n\n## Customize Template Description\n\nExcept for the overall description modify, we also provide the template of generating the description. You can easily modify the description in fine-grain level.\n\nThe basic process to generate a description: If [aria.show](https://echarts.apache.org/option.html#aria.show) is `true`, then generate the ARIA description (otherwise, no.). If [aria.description](https://echarts.apache.org/option.html#aria.description) was defined, use it as the overall description (otherwise, use the default to generate the description.). We provide the basic algorithm, it needs to be changed only if the description generated is not suitable. You can even use `aria.description` to cover the default if needed.\n\nWhile using the template to generate, firstly make sure whether the title [title.text](https://echarts.apache.org/option.html#title.text) exist to decide to use [aria.general.withTitle](https://echarts.apache.org/option.html#aria.general.withTitle) or [aria.general.withoutTitle](https://echarts.apache.org/option.html#aria.general.withoutTitle) as the overall description. Configuration item `aria.general.withTitle` and `'{title}'` will be replaced by the chart title. In another word, if `aria.general.withTitle` was defined as `This is a chart about \"{title}\"`, and the title is `'Prize Distribution Chart'`, the description of this part will be `'This is a chart about \"Prize Distribution Chart\"'`.\n\nAfter generating the title, ECharts will splice the description of the series and data after the title part. Every part of the template can include template variables, to be replaced by the actual value in the chart.\n\nThe complete process of generating description, please check: [ARIA Document](https://echarts.apache.org/option.html#aria).\n","dir":"/en/best-practice","path":"/en/best-practice/aria","extension":".md","createdAt":"2021-06-04T12:26:37.915Z","updatedAt":"2021-07-21T09:55:26.921Z","meta":{"version":0,"revision":0,"created":1627897108429},"$loki":31},{"slug":"canvas-vs-svg","toc":[{"id":"how-to-choose-a-renderer","depth":2,"text":"How to Choose a Renderer?"},{"id":"how-to-use-the-renderer","depth":2,"text":"How to Use the Renderer"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"render-with-svg-or-canvas"},"children":[{"type":"element","tag":"a","props":{"href":"#render-with-svg-or-canvas","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Render with SVG or Canvas"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Most of the browser-side chart libraries are using SVG or Canvas as their underlying render because they are interchangeable. However, they show notable differences in some specific scenarios and cases. As a result, it is hard to find a standard choice between them."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Canvas has been used as the renderer (VML for IE8-) of ECharts from the beginning. Since "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/releases","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts v4.0"}]},{"type":"text","value":" was released, ECharts provided the SVG render as an additional option. You can specify the "},{"type":"element","tag":"a","props":{"href":"http://echarts.baidu.com/api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"renderer parameter"}]},{"type":"text","value":" as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'canvas'"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'svg'"}]},{"type":"text","value":" while initializing a chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"SVG and Canvas have a significant difference in use. The simultaneous transparent support in ECharts between SVG and Canvas is because of the abstraction and implementation of the underlying library "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/zrender","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ZRender"}]},{"type":"text","value":". It formed an interchangeable SVG renderer and Canvas renderer."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"how-to-choose-a-renderer"},"children":[{"type":"element","tag":"a","props":{"href":"#how-to-choose-a-renderer","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"How to Choose a Renderer?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generally, Canvas is more suitable for charts with a large number of elements (heat map, large-scale line or scatter plot in geo or parallel coordinates, etc.), and with visual "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples/editor.html?c=lines-bmap-effect","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"effect"}]},{"type":"text","value":". However, SVG has an important advantage: It has less memory usage (which is important for mobile devices), no blur when using the browser zoom."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The choice of renderer can be based on a combination of hardware and software environment, data volume and functional requirements."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In scenarios where the hardware and software environment is good and the amount of data is not too large, both renderers will work and there is not much need to agonise over them."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In scenarios where the environment is poor and performance issues arise that require optimisation, experimentation can be used to determine which renderer to use. For example, there are these experiences.\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In situations where many instances of ECharts have to be created and the browser is prone to crashing (probably because the number of Canvas is causing the memory footprint to exceed the phone's capacity), the SVG renderer can be used to make improvements. Roughly speaking, the SVG renderer may work better if the chart is running on a low-end Android, or if we are using specific charts such as the "},{"type":"element","tag":"a","props":{"href":"https://ecomfe.github.io/echarts-liquidfill/example/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"LiquidFill chart"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For larger amounts of data (>1k is an experience value), canvas renderer is always recommended."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We strongly welcome "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/new","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"feedback"}]},{"type":"text","value":" from developers on their experiences and scenarios to help us make better optimizations."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Note: Currently, some special rendering still relies on Canvas: e.g. "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-lines.effect","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"trail effect"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples/editor.html?c=heatmap-bmap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"heatmap with blending effect"}]},{"type":"text","value":", etc."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"how-to-use-the-renderer"},"children":[{"type":"element","tag":"a","props":{"href":"#how-to-use-the-renderer","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"How to Use the Renderer"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts"}]},{"type":"text","value":" is fully imported in the following way, the code already contains an SVG renderer and a Canvas renderer"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you are using treeshakable import as described in "},{"type":"element","tag":"a","props":{"href":"en/basics/import"},"children":[{"type":"text","value":"Introducing Apache ECharts in your project"}]},{"type":"text","value":", you will need to import the required renderers manually"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\n// You can use only the renderers you need\nimport { SVGRenderer, CanvasRenderer } from 'echarts/renderers';\n\necharts.use([SVGRenderer, CanvasRenderer]);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Then, we can "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html/api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"pass in the parameter"}]},{"type":"text","value":" when initializing the chart instance in code to select the renderer."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Use the Canvas renderer (default)\nvar chart = echarts.init(containerDom, null, { renderer: 'canvas' });\n// Equivalent to.\nvar chart = echarts.init(containerDom);\n\n// using the SVG renderer\nvar chart = echarts.init(containerDom, null, { renderer: 'svg' });\n"}]}]}]},"text":"# Render with SVG or Canvas\n\nMost of the browser-side chart libraries are using SVG or Canvas as their underlying render because they are interchangeable. However, they show notable differences in some specific scenarios and cases. As a result, it is hard to find a standard choice between them.\n\nCanvas has been used as the renderer (VML for IE8-) of ECharts from the beginning. Since [ECharts v4.0](https://github.com/apache/echarts/releases) was released, ECharts provided the SVG render as an additional option. You can specify the [renderer parameter](http://echarts.baidu.com/api.html#echarts.init) as `'canvas'` or `'svg'` while initializing a chart.\n\n> SVG and Canvas have a significant difference in use. The simultaneous transparent support in ECharts between SVG and Canvas is because of the abstraction and implementation of the underlying library [ZRender](https://github.com/ecomfe/zrender). It formed an interchangeable SVG renderer and Canvas renderer.\n\n## How to Choose a Renderer?\n\nGenerally, Canvas is more suitable for charts with a large number of elements (heat map, large-scale line or scatter plot in geo or parallel coordinates, etc.), and with visual [effect](https://echarts.apache.org//examples/editor.html?c=lines-bmap-effect). However, SVG has an important advantage: It has less memory usage (which is important for mobile devices), no blur when using the browser zoom.\n\nThe choice of renderer can be based on a combination of hardware and software environment, data volume and functional requirements.\n\n- In scenarios where the hardware and software environment is good and the amount of data is not too large, both renderers will work and there is not much need to agonise over them.\n- In scenarios where the environment is poor and performance issues arise that require optimisation, experimentation can be used to determine which renderer to use. For example, there are these experiences.\n - In situations where many instances of ECharts have to be created and the browser is prone to crashing (probably because the number of Canvas is causing the memory footprint to exceed the phone's capacity), the SVG renderer can be used to make improvements. Roughly speaking, the SVG renderer may work better if the chart is running on a low-end Android, or if we are using specific charts such as the [LiquidFill chart](https://ecomfe.github.io/echarts-liquidfill/example/).\n - For larger amounts of data (>1k is an experience value), canvas renderer is always recommended.\n\nWe strongly welcome [feedback](https://github.com/apache/echarts/issues/new) from developers on their experiences and scenarios to help us make better optimizations.\n\nNote: Currently, some special rendering still relies on Canvas: e.g. [trail effect](https://echarts.apache.org/option.html#series-lines.effect), [heatmap with blending effect](https://echarts.apache.org//examples/editor.html?c=heatmap-bmap), etc.\n\n## How to Use the Renderer\n\nIf `echarts` is fully imported in the following way, the code already contains an SVG renderer and a Canvas renderer\n\n```js\nimport * as echarts from 'echarts';\n```\n\nIf you are using treeshakable import as described in [Introducing Apache ECharts in your project](en/basics/import), you will need to import the required renderers manually\n\n```js\nimport * as echarts from 'echarts/core';\n// You can use only the renderers you need\nimport { SVGRenderer, CanvasRenderer } from 'echarts/renderers';\n\necharts.use([SVGRenderer, CanvasRenderer]);\n```\n\nThen, we can [pass in the parameter](https://echarts.apache.org//api.html/api.html#echarts.init) when initializing the chart instance in code to select the renderer.\n\n```js\n// Use the Canvas renderer (default)\nvar chart = echarts.init(containerDom, null, { renderer: 'canvas' });\n// Equivalent to.\nvar chart = echarts.init(containerDom);\n\n// using the SVG renderer\nvar chart = echarts.init(containerDom, null, { renderer: 'svg' });\n```\n","dir":"/en/best-practice","path":"/en/best-practice/canvas-vs-svg","extension":".md","createdAt":"2021-06-04T12:26:37.915Z","updatedAt":"2021-07-21T10:03:29.001Z","meta":{"version":0,"revision":0,"created":1627897108464},"$loki":32},{"slug":"axis","toc":[{"id":"x-axis-y-axis","depth":2,"text":"x-axis, y-axis"},{"id":"axis-line","depth":2,"text":"Axis Line"},{"id":"tick","depth":2,"text":"Tick"},{"id":"label","depth":2,"text":"Label"},{"id":"example","depth":2,"text":"Example"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"axis"},"children":[{"type":"element","tag":"a","props":{"href":"#axis","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Axis"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The x/y-axis in the Cartesian coordinate system."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"x-axis-y-axis"},"children":[{"type":"element","tag":"a","props":{"href":"#x-axis-y-axis","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"x-axis, y-axis"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Both x-axis and y-axis included axis line, tick, label and title. Some chart will use the grid to assist the data viewing and calculating."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/axis/charts_axis_img02.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A normal 2D coordinate system has x-axis and y-axis. X-axis located at the bottom while y-axis at the left side in common. The Config is shown below:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n // ...\n },\n yAxis: {\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The x-axis is usually used to declare the number of categories which was also called the aspects of observing the data: \"Sales Time\", \"Sales Location\" and \"product name\", etc.. The y-axis usually used to indicate the numerical value of categories. These data are used to examine the quantitative value of a certain type of data or some indicator you need to analyze, such as \"Sales Quantity\" and \"Sales Price\"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When x-axis has a large span, we can use the zoom method to display part of the data in the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n },\n dataZoom: []\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In two-dimensional data, there can be more than two axes. There are usually two x or y axes at the same time in ECharts. You can change the config "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.offset","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"offset"}]},{"type":"text","value":" to avoid overlaps of axes at the same place. X-axes can be displayed at the top and bottom, y-axes at left and right."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: [\n {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n },\n {\n type: 'value',\n name: 'Sales Price'\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"axis-line"},"children":[{"type":"element","tag":"a","props":{"href":"#axis-line","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Axis Line"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts provide the config of "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisLine","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisLine"}]},{"type":"text","value":". You can change the setting according to the demand, such as the arrow on two sides and the style of axes."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"tick"},"children":[{"type":"element","tag":"a","props":{"href":"#tick","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Tick"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts provide the config "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisTick","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisTick"}]},{"type":"text","value":". You can change the setting according to the demand, such as the length of ticks, and the style of ticks."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"label"},"children":[{"type":"element","tag":"a","props":{"href":"#label","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Label"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts provide the config "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisLabel","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisLabel"}]},{"type":"text","value":". You can change the setting according to the demand, such as the text alignment and the customized label content."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisLabel: {\n formatter: '{value} kg',\n align: 'center'\n // ...\n }\n // ...\n },\n yAxis: {\n axisLabel: {\n formatter: '{value} ¥',\n align: 'center'\n // ...\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"example"},"children":[{"type":"element","tag":"a","props":{"href":"#example","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Example"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The y-axis on the left side represents the monthly average temperature in Tokyo, the y-axis on the right side represents the precipitation of Tokyo. The x-axis represents the time. It reflects the trend and relation between the average temperature and precipitation."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n tooltip: {\n trigger: 'axis',\n axisPointer: { type: 'cross' }\n },\n legend: {},\n xAxis: [\n {\n type: 'category',\n axisTick: {\n alignWithLabel: true\n },\n axisLabel: {\n rotate: 30\n },\n data: [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December'\n ]\n }\n ],\n yAxis: [\n {\n type: 'value',\n name: 'Precipitation',\n min: 0,\n max: 250,\n position: 'right',\n axisLabel: {\n formatter: '{value} ml'\n }\n },\n {\n type: 'value',\n name: 'Temperature',\n min: 0,\n max: 25,\n position: 'left',\n axisLabel: {\n formatter: '{value} °C'\n }\n }\n ],\n series: [\n {\n name: 'Precipitation',\n type: 'bar',\n yAxisIndex: 0,\n data: [6, 32, 70, 86, 68.7, 100.7, 125.6, 112.2, 78.7, 48.8, 36.0, 19.3]\n },\n {\n name: 'Temperature',\n type: 'line',\n smooth: true,\n yAxisIndex: 1,\n data: [\n 6.0,\n 10.2,\n 10.3,\n 11.5,\n 10.3,\n 13.2,\n 14.3,\n 16.4,\n 18.0,\n 16.5,\n 12.0,\n 5.2\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"These are the concise intro of the usage of axis config. Check more details at: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Official Website"}]},{"type":"text","value":"."}]}]},"text":"# Axis\n\nThe x/y-axis in the Cartesian coordinate system.\n\n## x-axis, y-axis\n\nBoth x-axis and y-axis included axis line, tick, label and title. Some chart will use the grid to assist the data viewing and calculating.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/axis/charts_axis_img02.jpg\">\n</img>\n\nA normal 2D coordinate system has x-axis and y-axis. X-axis located at the bottom while y-axis at the left side in common. The Config is shown below:\n\n```js\noption = {\n xAxis: {\n // ...\n },\n yAxis: {\n // ...\n }\n // ...\n};\n```\n\nThe x-axis is usually used to declare the number of categories which was also called the aspects of observing the data: \"Sales Time\", \"Sales Location\" and \"product name\", etc.. The y-axis usually used to indicate the numerical value of categories. These data are used to examine the quantitative value of a certain type of data or some indicator you need to analyze, such as \"Sales Quantity\" and \"Sales Price\".\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n }\n // ...\n};\n```\n\nWhen x-axis has a large span, we can use the zoom method to display part of the data in the chart.\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n },\n dataZoom: []\n // ...\n};\n```\n\nIn two-dimensional data, there can be more than two axes. There are usually two x or y axes at the same time in ECharts. You can change the config [offset](https://echarts.apache.org/option.html#xAxis.offset) to avoid overlaps of axes at the same place. X-axes can be displayed at the top and bottom, y-axes at left and right.\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: 'Sales Time'\n // ...\n },\n yAxis: [\n {\n type: 'value',\n name: 'Sales Quantity'\n // ...\n },\n {\n type: 'value',\n name: 'Sales Price'\n // ...\n }\n ]\n // ...\n};\n```\n\n## Axis Line\n\nECharts provide the config of [axisLine](https://echarts.apache.org/option.html#xAxis.axisLine). You can change the setting according to the demand, such as the arrow on two sides and the style of axes.\n\n```js\noption = {\n xAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n```\n\n## Tick\n\nECharts provide the config [axisTick](https://echarts.apache.org/option.html#xAxis.axisTick). You can change the setting according to the demand, such as the length of ticks, and the style of ticks.\n\n```js\noption = {\n xAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n```\n\n## Label\n\nECharts provide the config [axisLabel](https://echarts.apache.org/option.html#xAxis.axisLabel). You can change the setting according to the demand, such as the text alignment and the customized label content.\n\n```js\noption = {\n xAxis: {\n axisLabel: {\n formatter: '{value} kg',\n align: 'center'\n // ...\n }\n // ...\n },\n yAxis: {\n axisLabel: {\n formatter: '{value} ¥',\n align: 'center'\n // ...\n }\n }\n // ...\n};\n```\n\n## Example\n\nThe y-axis on the left side represents the monthly average temperature in Tokyo, the y-axis on the right side represents the precipitation of Tokyo. The x-axis represents the time. It reflects the trend and relation between the average temperature and precipitation.\n\n```js [live]\noption = {\n tooltip: {\n trigger: 'axis',\n axisPointer: { type: 'cross' }\n },\n legend: {},\n xAxis: [\n {\n type: 'category',\n axisTick: {\n alignWithLabel: true\n },\n axisLabel: {\n rotate: 30\n },\n data: [\n 'January',\n 'February',\n 'March',\n 'April',\n 'May',\n 'June',\n 'July',\n 'August',\n 'September',\n 'October',\n 'November',\n 'December'\n ]\n }\n ],\n yAxis: [\n {\n type: 'value',\n name: 'Precipitation',\n min: 0,\n max: 250,\n position: 'right',\n axisLabel: {\n formatter: '{value} ml'\n }\n },\n {\n type: 'value',\n name: 'Temperature',\n min: 0,\n max: 25,\n position: 'left',\n axisLabel: {\n formatter: '{value} °C'\n }\n }\n ],\n series: [\n {\n name: 'Precipitation',\n type: 'bar',\n yAxisIndex: 0,\n data: [6, 32, 70, 86, 68.7, 100.7, 125.6, 112.2, 78.7, 48.8, 36.0, 19.3]\n },\n {\n name: 'Temperature',\n type: 'line',\n smooth: true,\n yAxisIndex: 1,\n data: [\n 6.0,\n 10.2,\n 10.3,\n 11.5,\n 10.3,\n 13.2,\n 14.3,\n 16.4,\n 18.0,\n 16.5,\n 12.0,\n 5.2\n ]\n }\n ]\n};\n```\n\nThese are the concise intro of the usage of axis config. Check more details at: [Official Website](https://echarts.apache.org/option.html#xAxis).\n","dir":"/en/concepts","path":"/en/concepts/axis","extension":".md","createdAt":"2021-06-04T12:26:37.918Z","updatedAt":"2021-07-29T06:23:03.234Z","meta":{"version":0,"revision":0,"created":1627897108488},"$loki":33},{"slug":"chart-size","toc":[{"id":"initialization","depth":2,"text":"Initialization"},{"id":"define-a-parent-container-in-html","depth":3,"text":"Define a Parent Container in HTML"},{"id":"specify-the-chart-size","depth":3,"text":"Specify the chart size"},{"id":"reactive-of-the-container-size","depth":2,"text":"Reactive of the Container Size"},{"id":"listen-to-the-container-size-to-change-the-chart-size","depth":3,"text":"Listen to the Container Size to Change the Chart Size"},{"id":"state-a-specific-chart-size","depth":3,"text":"State a Specific Chart Size"},{"id":"dispose-and-rebuild-of-the-container-node","depth":3,"text":"Dispose and Rebuild of the Container Node"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"chart-container-and-size"},"children":[{"type":"element","tag":"a","props":{"href":"#chart-container-and-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Chart Container and Size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In "},{"type":"element","tag":"a","props":{"href":"en/get-started"},"children":[{"type":"text","value":"Get Started"}]},{"type":"text","value":", we introduced the API to initialize the ECharts "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.init"}]}]},{"type":"text","value":". "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"API Document"}]},{"type":"text","value":" has introduced the specific meaning of each parameters. Please read and understand the document before reading the following content."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Refer to several common usage scenarios, here is the example to initialize a chart and change the size."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"initialization"},"children":[{"type":"element","tag":"a","props":{"href":"#initialization","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Initialization"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"define-a-parent-container-in-html"},"children":[{"type":"element","tag":"a","props":{"href":"#define-a-parent-container-in-html","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Define a Parent Container in HTML"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In general, you need to define a "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<div>"}]},{"type":"text","value":" node and use the CSS to change the width and height. While initializing, import the chart into the node. Without declaring "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opts.width"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opts.height"}]},{"type":"text","value":", the size of the chart will default to the size of the node."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To be noticed, before calling "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":", you need to make sure the container already has width and height."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"specify-the-chart-size"},"children":[{"type":"element","tag":"a","props":{"href":"#specify-the-chart-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Specify the chart size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If the height and width of the container do not exist, or you wish the chart size not equal to the container, you can initialize the size at the beginning."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'), null, {\n width: 600,\n height: 400\n });\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"reactive-of-the-container-size"},"children":[{"type":"element","tag":"a","props":{"href":"#reactive-of-the-container-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Reactive of the Container Size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"listen-to-the-container-size-to-change-the-chart-size"},"children":[{"type":"element","tag":"a","props":{"href":"#listen-to-the-container-size-to-change-the-chart-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Listen to the Container Size to Change the Chart Size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In some cases, we want to accordingly change the chart size while the size of containers changed."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For instance, the container has a height of 300px and a width of 100% site width. If you are willing to change the site width while stable the chart width as 100% of it, try the following method."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can listen to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"window.onresize"}]},{"type":"text","value":" of the site to catch the event that the browser is resized. Then use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.resize","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.resize"}]}]},{"type":"text","value":" to resize the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<style>\n #main,\n html,\n body {\n width: 100%;\n }\n #main {\n height: 400px;\n }\n</style>\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n window.onresize = function() {\n myChart.resize();\n };\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"state-a-specific-chart-size"},"children":[{"type":"element","tag":"a","props":{"href":"#state-a-specific-chart-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"State a Specific Chart Size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Except for calling "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"resize()"}]},{"type":"text","value":" without parameters, you can state the height and width to implement the chart size different from the size of the container."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.resize({\n width: 800,\n height: 400\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"**Tips: ** Pay attention to how the API defined while reading the file. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"resize()"}]},{"type":"text","value":" API was sometimes mistaken for the form like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myCharts.resize(800, 400)"}]},{"type":"text","value":" which do not exist."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"dispose-and-rebuild-of-the-container-node"},"children":[{"type":"element","tag":"a","props":{"href":"#dispose-and-rebuild-of-the-container-node","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dispose and Rebuild of the Container Node"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We assume that there exist several bookmark pages and each page contained some charts. In this case, the content in other pages will be removed in DOM when select one page. The user will not find the chart after reselecting these pages."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Essentially, this is because the container node of the charts was removed. Even if the node is added again later, the node where the graph is located no longer exists."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The correct way is, call "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.dispose","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.dispose"}]}]},{"type":"text","value":" to dispose the instance after the container was disposed, and call "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":" to initialize after the container was added again."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"**Tips: ** Call "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.dispose","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.dispose"}]}]},{"type":"text","value":" to release resources while disposing the node to avoid memory leaks."}]},{"type":"text","value":"\n"}]}]},"text":"# Chart Container and Size\n\nIn [Get Started](en/get-started), we introduced the API to initialize the ECharts [`echarts.init`](https://echarts.apache.org//api.html#echarts.init). [API Document](https://echarts.apache.org//api.html#echarts.init) has introduced the specific meaning of each parameters. Please read and understand the document before reading the following content.\n\nRefer to several common usage scenarios, here is the example to initialize a chart and change the size.\n\n## Initialization\n\n### Define a Parent Container in HTML\n\nIn general, you need to define a `<div>` node and use the CSS to change the width and height. While initializing, import the chart into the node. Without declaring `opts.width` or `opts.height`, the size of the chart will default to the size of the node.\n\n```html\n<div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n</script>\n```\n\nTo be noticed, before calling `echarts.init`, you need to make sure the container already has width and height.\n\n### Specify the chart size\n\nIf the height and width of the container do not exist, or you wish the chart size not equal to the container, you can initialize the size at the beginning.\n\n```html\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'), null, {\n width: 600,\n height: 400\n });\n</script>\n```\n\n## Reactive of the Container Size\n\n### Listen to the Container Size to Change the Chart Size\n\nIn some cases, we want to accordingly change the chart size while the size of containers changed.\n\nFor instance, the container has a height of 300px and a width of 100% site width. If you are willing to change the site width while stable the chart width as 100% of it, try the following method.\n\nYou can listen to `window.onresize` of the site to catch the event that the browser is resized. Then use [`echartsInstance.resize`](https://echarts.apache.org/api.html#echartsInstance.resize) to resize the chart.\n\n```html\n<style>\n #main,\n html,\n body {\n width: 100%;\n }\n #main {\n height: 400px;\n }\n</style>\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n window.onresize = function() {\n myChart.resize();\n };\n</script>\n```\n\n### State a Specific Chart Size\n\nExcept for calling `resize()` without parameters, you can state the height and width to implement the chart size different from the size of the container.\n\n```js\nmyChart.resize({\n width: 800,\n height: 400\n});\n```\n\n> **Tips: ** Pay attention to how the API defined while reading the file. `resize()` API was sometimes mistaken for the form like `myCharts.resize(800, 400)` which do not exist.\n\n### Dispose and Rebuild of the Container Node\n\nWe assume that there exist several bookmark pages and each page contained some charts. In this case, the content in other pages will be removed in DOM when select one page. The user will not find the chart after reselecting these pages.\n\nEssentially, this is because the container node of the charts was removed. Even if the node is added again later, the node where the graph is located no longer exists.\n\nThe correct way is, call [`echartsInstance.dispose`](https://echarts.apache.org/api.html#echartsInstance.dispose) to dispose the instance after the container was disposed, and call [echarts.init](https://echarts.apache.org//api.html#echarts.init) to initialize after the container was added again.\n\n> **Tips: ** Call [`echartsInstance.dispose`](https://echarts.apache.org/api.html#echartsInstance.dispose) to release resources while disposing the node to avoid memory leaks.\n","dir":"/en/concepts","path":"/en/concepts/chart-size","extension":".md","createdAt":"2021-06-04T12:26:37.918Z","updatedAt":"2021-07-29T06:25:53.259Z","meta":{"version":0,"revision":0,"created":1627897108518},"$loki":34},{"slug":"legend","toc":[{"id":"layout","depth":2,"text":"Layout"},{"id":"style","depth":2,"text":"Style"},{"id":"interactive","depth":2,"text":"Interactive"},{"id":"tips","depth":2,"text":"Tips"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"legend"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#legend","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Legend"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Legends are used to annotate the content in the chart using different colors, shapes and texts to indicate different categories. By clicking the legends, the user can show or hide the corresponding categories. Legend is one of the key to understand the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"layout"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#layout","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Layout"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Legend is always placed at the upper right corner of the chart. All legends in the same page need to be consistent, align horizontally or vertically by considering the layout of the overall chart space. When the chart have little vertical space or the content area is crowded, it is also a good choice to put legent on the bottom of the chart. Here are some layouts of the legend:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {\n // Try 'horizontal'\n orient: 'vertical',\n right: 10,\n top: 'center'\n },\n dataset: {\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use scrollable control if there are many legends."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n type: 'scroll',\n orient: 'vertical',\n right: 10,\n top: 20,\n bottom: 20,\n data: ['Legend A', 'Legend B', 'Legend C' /* ... */, , 'Legend x']\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"style"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#style","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Style"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For dark color background, use a light color for the background layer and text while changing the background to translucent."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n backgroundColor: '#ccc',\n textStyle: {\n color: '#ccc'\n // ...\n }\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The color of legend has many ways to design. For different charts, the legend style can be different."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"80%","height":"80%","src":"images/design/legend/charts_sign_img04.png"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n icon: 'rect'\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"interactive"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#interactive","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Interactive"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Depend on the environmental demand, the legend can support interactive operation. Click the legend to show or hide corresponding categories:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n selected: {\n 'Legend A': true,\n 'Legend B': true,\n 'Legend C': false\n }\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"tips"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#tips","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Tips"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The legend should be used according to the situation. Some dual-axis charts include multiple chart types. Different kinds of legend stypes should be distinguished."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: [\n {\n name: 'Legend A',\n icon: 'rect'\n },\n {\n name: 'Legend B',\n icon: 'circle'\n },\n {\n name: 'Legend C',\n icon: 'pin'\n }\n ]\n // ...\n },\n series: [\n {\n name: 'Legend A'\n // ...\n },\n {\n name: 'Legend B'\n // ...\n },\n {\n name: 'Legend C'\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"While there is only one kind of data in the chart, use the chart title rather than the legend to explain it."}]}]},"text":"# Legend\n\nLegends are used to annotate the content in the chart using different colors, shapes and texts to indicate different categories. By clicking the legends, the user can show or hide the corresponding categories. Legend is one of the key to understand the chart.\n\n## Layout\n\nLegend is always placed at the upper right corner of the chart. All legends in the same page need to be consistent, align horizontally or vertically by considering the layout of the overall chart space. When the chart have little vertical space or the content area is crowded, it is also a good choice to put legent on the bottom of the chart. Here are some layouts of the legend:\n\n```js [live]\noption = {\n legend: {\n // Try 'horizontal'\n orient: 'vertical',\n right: 10,\n top: 'center'\n },\n dataset: {\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\nUse scrollable control if there are many legends.\n\n```js\noption = {\n legend: {\n type: 'scroll',\n orient: 'vertical',\n right: 10,\n top: 20,\n bottom: 20,\n data: ['Legend A', 'Legend B', 'Legend C' /* ... */, , 'Legend x']\n // ...\n }\n // ...\n};\n```\n\n## Style\n\nFor dark color background, use a light color for the background layer and text while changing the background to translucent.\n\n```js\noption = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n backgroundColor: '#ccc',\n textStyle: {\n color: '#ccc'\n // ...\n }\n // ...\n }\n // ...\n};\n```\n\nThe color of legend has many ways to design. For different charts, the legend style can be different.\n\n<img max-width=\"830\" width=\"80%\" height=\"80%\" src=\"images/design/legend/charts_sign_img04.png\" />\n\n```js\noption = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n icon: 'rect'\n // ...\n }\n // ...\n};\n```\n\n## Interactive\n\nDepend on the environmental demand, the legend can support interactive operation. Click the legend to show or hide corresponding categories:\n\n```js\noption = {\n legend: {\n data: ['Legend A', 'Legend B', 'Legend C'],\n selected: {\n 'Legend A': true,\n 'Legend B': true,\n 'Legend C': false\n }\n // ...\n }\n // ...\n};\n```\n\n## Tips\n\nThe legend should be used according to the situation. Some dual-axis charts include multiple chart types. Different kinds of legend stypes should be distinguished.\n\n```js\noption = {\n legend: {\n data: [\n {\n name: 'Legend A',\n icon: 'rect'\n },\n {\n name: 'Legend B',\n icon: 'circle'\n },\n {\n name: 'Legend C',\n icon: 'pin'\n }\n ]\n // ...\n },\n series: [\n {\n name: 'Legend A'\n // ...\n },\n {\n name: 'Legend B'\n // ...\n },\n {\n name: 'Legend C'\n // ...\n }\n ]\n // ...\n};\n```\n\nWhile there is only one kind of data in the chart, use the chart title rather than the legend to explain it.\n","dir":"/en/concepts","path":"/en/concepts/legend","extension":".md","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-29T06:23:03.268Z","meta":{"version":0,"revision":0,"created":1627897108529},"$loki":35},{"slug":"event","toc":[{"id":"handling-the-mouse-events","depth":2,"text":"Handling the Mouse Events"},{"id":"event-of-component-interaction","depth":2,"text":"Event of Component Interaction"},{"id":"writing-code-to-trigger-component-action-manually","depth":2,"text":"Writing Code to Trigger Component Action Manually"},{"id":"listen-to-events-on-the-blank-area","depth":2,"text":"Listen to Events on the Blank Area"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"event-and-action"},"children":[{"type":"element","tag":"a","props":{"href":"#event-and-action","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Event and Action"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Users can trigger corresponding events by their operation. The developer can handle the callback function by listening to these events, such as jump to a new website, pop-up a dialog box, or drill down the data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name of the event and the DOM event is both lowercase string. Here is an example of binding listening to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"click"}]},{"type":"text","value":" event."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(params) {\n // Print name in console\n console.log(params.name);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two kinds of event in ECharts, one happened when the user clicks the mouse or hover the elements in charts, the other happened while the user triggered some interactive actions. Such as "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#events.legendselectchanged","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'legendselectchanged'"}]},{"type":"text","value":" triggered while changing the legend selected (please notice that "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"legendselected"}]},{"type":"text","value":" won't be triggered in this situation), "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#events.legendselectchanged","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'datazoom'"}]},{"type":"text","value":" triggered while zooming the data area."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"handling-the-mouse-events"},"children":[{"type":"element","tag":"a","props":{"href":"#handling-the-mouse-events","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Handling the Mouse Events"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts support general mouse events: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'click'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'dblclick'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mousedown'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mousemove'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseup'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseover'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseout'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'globalout'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'contextmenu'"}]},{"type":"text","value":". This is an example of opening the search result page after clicking the bar chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Init the ECharts base on DOM\nvar myChart = echarts.init(document.getElementById('main'));\n\n// Config\nvar option = {\n xAxis: {\n data: [\n 'Shirt',\n 'Wool sweater',\n 'Chiffon shirt',\n 'Pants',\n 'High-heeled shoes',\n 'socks'\n ]\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n};\n// Use the option and data to display the chart\nmyChart.setOption(option);\n// Click and jump to Baidu search website\nmyChart.on('click', function(params) {\n window.open(\n 'https://www.google.com/search?q=' + encodeURIComponent(params.name)\n );\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All mouse events included "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"params"}]},{"type":"text","value":" which contained the data of the object."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Format:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type EventParams = {\n // The component name clicked,\n // component type, could be 'series'、'markLine'、'markPoint'、'timeLine', etc..\n componentType: string,\n // series type, could be 'line'、'bar'、'pie', etc.. Works when componentType is 'series'.\n seriesType: string,\n // the index in option.series. Works when componentType is 'series'.\n seriesIndex: number,\n // series name, works when componentType is 'series'.\n seriesName: string,\n // name of data (categories).\n name: string,\n // the index in 'data' array.\n dataIndex: number,\n // incoming raw data item\n data: Object,\n // charts like 'sankey' and 'graph' included nodeData and edgeData as the same time.\n // dataType can be 'node' or 'edge', indicates whether the current click is on node or edge.\n // most of charts have one kind of data, the dataType is meaningless\n dataType: string,\n // incoming data value\n value: number | Array,\n // color of the shape, works when componentType is 'series'.\n color: string\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Identify where the mouse clicked."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(params) {\n if (params.componentType === 'markPoint') {\n // Clicked on the markPoint\n if (params.seriesIndex === 5) {\n // clicked on the markPoint of the series with index = 5\n }\n } else if (params.componentType === 'series') {\n if (params.seriesType === 'graph') {\n if (params.dataType === 'edge') {\n // clicked at the edge of graph.\n } else {\n // clicked at the node of graph.\n }\n }\n }\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"query"}]},{"type":"text","value":" to trigger callback of the specified component:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.on(eventName, query, handler);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"query"}]},{"type":"text","value":" can be "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"string"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Object"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If it is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"string"}]},{"type":"text","value":", the format can be "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mainType"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mainType.subType"}]},{"type":"text","value":", such as:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.on('click', 'series', function () {...});\nchart.on('click', 'series.line', function () {...});\nchart.on('click', 'dataZoom', function () {...});\nchart.on('click', 'xAxis.category', function () {...});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If it is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Object"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"query"}]},{"type":"text","value":" can include more than one attribute:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"{\n ${mainType}Index: number // component index\n ${mainType}Name: string // component name\n ${mainType}Id: string // component id\n dataIndex: number // data item index\n name: string // data item name\n dataType: string // date item type, such as 'node', 'edge'\n element: string // name of element in custom series.\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Such as:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n name: 'uuu'\n // ...\n }\n ]\n});\nchart.on('mouseover', { seriesName: 'uuu' }, function() {\n // when elements in series named 'uuu' triggered 'mouseover'\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n // ...\n },\n {\n // ...\n data: [\n { name: 'xx', value: 121 },\n { name: 'yy', value: 33 }\n ]\n }\n ]\n});\nchart.on('mouseover', { seriesIndex: 1, name: 'xx' }, function() {\n // when data named 'xx' in series index 1 triggered 'mouseover'.\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n type: 'graph',\n nodes: [\n { name: 'a', value: 10 },\n { name: 'b', value: 20 }\n ],\n edges: [{ source: 0, target: 1 }]\n }\n ]\n});\nchart.on('click', { dataType: 'node' }, function() {\n // call this method while the node of graph was clicked.\n});\nchart.on('click', { dataType: 'edge' }, function() {\n // call this method while the edge of graph was clicked.\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: {\n // ...\n type: 'custom',\n renderItem: function(params, api) {\n return {\n type: 'group',\n children: [\n {\n type: 'circle',\n name: 'my_el'\n // ...\n },\n {\n // ...\n }\n ]\n };\n },\n data: [[12, 33]]\n }\n});\nchart.on('mouseup', { element: 'my_el' }, function() {\n // when data named 'my_el' triggered 'mouseup'.\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can display a popup, update the charts using the query result from your database by the data name or series name in the callback function. Here is an example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(parmas) {\n $.get('detail?q=' + params.name, function(detail) {\n myChart.setOption({\n series: [\n {\n name: 'pie',\n // using pie chart to show the data distribution in one column.\n data: [detail.data]\n }\n ]\n });\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"event-of-component-interaction"},"children":[{"type":"element","tag":"a","props":{"href":"#event-of-component-interaction","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Event of Component Interaction"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All Component Interaction in ECharts will trigger a corresponding event. Normal events and parameters are listed in the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#events","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"events"}]},{"type":"text","value":" document."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is an example of listening to legend event:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Show/hide the legend only trigger legendselectchanged event\nmyChart.on('legendselectchanged', function(params) {\n // State if legend is selected.\n var isSelected = params.selected[params.name];\n // print in the console.\n console.log(\n (isSelected ? 'Selected' : 'Not Selected') + 'legend' + params.name\n );\n // print for all legends.\n console.log(params.selected);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"writing-code-to-trigger-component-action-manually"},"children":[{"type":"element","tag":"a","props":{"href":"#writing-code-to-trigger-component-action-manually","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Writing Code to Trigger Component Action Manually"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can trigger events such as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'legendselectchanged'"}]},{"type":"text","value":" not only by the user but also with code manually. It can be used to display the tooltip, select the legend."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.dispatchAction({ type: '' })"}]},{"type":"text","value":" is used to trigger the behavior. This manages all actions and can record the behaviors conveniently."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Commonly used behavior and corresponding parameters are listed in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#action","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"action"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The following example shows how to highlight each sector one by one in the pie chart using "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dispatchAction"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n tooltip: {\n trigger: 'item',\n formatter: '{a} <br/>{b} : {c} ({d}%)'\n },\n legend: {\n orient: 'vertical',\n left: 'left',\n data: [\n 'Direct Access',\n 'Email Marketing',\n 'Affiliate Ads',\n 'Video Ads',\n 'Search Engines'\n ]\n },\n series: [\n {\n name: 'Access Source',\n type: 'pie',\n radius: '55%',\n center: ['50%', '60%'],\n data: [\n { value: 335, name: 'Direct Access' },\n { value: 310, name: 'Email Marketing' },\n { value: 234, name: 'Affiliate Ads' },\n { value: 135, name: 'Video Ads' },\n { value: 1548, name: 'Search Engines' }\n ],\n emphasis: {\n itemStyle: {\n shadowBlur: 10,\n shadowOffsetX: 0,\n shadowColor: 'rgba(0, 0, 0, 0.5)'\n }\n }\n }\n ]\n};\n\nlet currentIndex = -1;\n\nsetInterval(function() {\n var dataLen = option.series[0].data.length;\n myChart.dispatchAction({\n type: 'downplay',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n currentIndex = (currentIndex + 1) % dataLen;\n myChart.dispatchAction({\n type: 'highlight',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n}, 1000);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"listen-to-events-on-the-blank-area"},"children":[{"type":"element","tag":"a","props":{"href":"#listen-to-events-on-the-blank-area","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Listen to Events on the Blank Area"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Sometimes developers need to listen to the events that are triggered from the blank of the canvas. For example, need to reset the chart when users click on the blank area."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Before we talk about this feature, we need to clarify two kinds of events: zrender events and echarts events."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.getZr().on('click', function(event) {\n // This listener is listening to a `zrender event`.\n});\nmyChart.on('click', function(event) {\n // This listener is listening to a `echarts event`.\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"zrender events are different from echarts events. The former one are triggered when mouse/pointer is at everywhere, while the latter one can only be triggered when mouse/pointer is at the graphic elements. In fact, echarts events are implemented based on zrender events, that is, when a zrender events is triggered at a graphic element, echarts will trigger a echarts event."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Having zrender events, we can implement listen to events from the blank as follows:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.getZr().on('click', function(event) {\n // No \"target\" means that mouse/pointer is not on\n // any of the graphic elements, which is \"blank\".\n if (!event.target) {\n // Click on blank. Do something.\n }\n});\n"}]}]}]},"text":"# Event and Action\n\nUsers can trigger corresponding events by their operation. The developer can handle the callback function by listening to these events, such as jump to a new website, pop-up a dialog box, or drill down the data.\n\nThe name of the event and the DOM event is both lowercase string. Here is an example of binding listening to `click` event.\n\n```js\nmyChart.on('click', function(params) {\n // Print name in console\n console.log(params.name);\n});\n```\n\nThere are two kinds of event in ECharts, one happened when the user clicks the mouse or hover the elements in charts, the other happened while the user triggered some interactive actions. Such as ['legendselectchanged'](https://echarts.apache.org/api.html#events.legendselectchanged) triggered while changing the legend selected (please notice that `legendselected` won't be triggered in this situation), ['datazoom'](https://echarts.apache.org/api.html#events.legendselectchanged) triggered while zooming the data area.\n\n## Handling the Mouse Events\n\nECharts support general mouse events: `'click'`, `'dblclick'`, `'mousedown'`, `'mousemove'`, `'mouseup'`, `'mouseover'`, `'mouseout'`, `'globalout'`, `'contextmenu'`. This is an example of opening the search result page after clicking the bar chart.\n\n```js\n// Init the ECharts base on DOM\nvar myChart = echarts.init(document.getElementById('main'));\n\n// Config\nvar option = {\n xAxis: {\n data: [\n 'Shirt',\n 'Wool sweater',\n 'Chiffon shirt',\n 'Pants',\n 'High-heeled shoes',\n 'socks'\n ]\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n};\n// Use the option and data to display the chart\nmyChart.setOption(option);\n// Click and jump to Baidu search website\nmyChart.on('click', function(params) {\n window.open(\n 'https://www.google.com/search?q=' + encodeURIComponent(params.name)\n );\n});\n```\n\nAll mouse events included `params` which contained the data of the object.\n\nFormat:\n\n```js\ntype EventParams = {\n // The component name clicked,\n // component type, could be 'series'、'markLine'、'markPoint'、'timeLine', etc..\n componentType: string,\n // series type, could be 'line'、'bar'、'pie', etc.. Works when componentType is 'series'.\n seriesType: string,\n // the index in option.series. Works when componentType is 'series'.\n seriesIndex: number,\n // series name, works when componentType is 'series'.\n seriesName: string,\n // name of data (categories).\n name: string,\n // the index in 'data' array.\n dataIndex: number,\n // incoming raw data item\n data: Object,\n // charts like 'sankey' and 'graph' included nodeData and edgeData as the same time.\n // dataType can be 'node' or 'edge', indicates whether the current click is on node or edge.\n // most of charts have one kind of data, the dataType is meaningless\n dataType: string,\n // incoming data value\n value: number | Array,\n // color of the shape, works when componentType is 'series'.\n color: string\n};\n```\n\nIdentify where the mouse clicked.\n\n```js\nmyChart.on('click', function(params) {\n if (params.componentType === 'markPoint') {\n // Clicked on the markPoint\n if (params.seriesIndex === 5) {\n // clicked on the markPoint of the series with index = 5\n }\n } else if (params.componentType === 'series') {\n if (params.seriesType === 'graph') {\n if (params.dataType === 'edge') {\n // clicked at the edge of graph.\n } else {\n // clicked at the node of graph.\n }\n }\n }\n});\n```\n\nUse `query` to trigger callback of the specified component:\n\n```js\nchart.on(eventName, query, handler);\n```\n\n`query` can be `string` or `Object`.\n\nIf it is `string`, the format can be `mainType` or `mainType.subType`, such as:\n\n```js\nchart.on('click', 'series', function () {...});\nchart.on('click', 'series.line', function () {...});\nchart.on('click', 'dataZoom', function () {...});\nchart.on('click', 'xAxis.category', function () {...});\n```\n\nIf it is `Object`, `query` can include more than one attribute:\n\n```js\n{\n ${mainType}Index: number // component index\n ${mainType}Name: string // component name\n ${mainType}Id: string // component id\n dataIndex: number // data item index\n name: string // data item name\n dataType: string // date item type, such as 'node', 'edge'\n element: string // name of element in custom series.\n}\n```\n\nSuch as:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n name: 'uuu'\n // ...\n }\n ]\n});\nchart.on('mouseover', { seriesName: 'uuu' }, function() {\n // when elements in series named 'uuu' triggered 'mouseover'\n});\n```\n\nFor example:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n // ...\n },\n {\n // ...\n data: [\n { name: 'xx', value: 121 },\n { name: 'yy', value: 33 }\n ]\n }\n ]\n});\nchart.on('mouseover', { seriesIndex: 1, name: 'xx' }, function() {\n // when data named 'xx' in series index 1 triggered 'mouseover'.\n});\n```\n\nFor example:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n type: 'graph',\n nodes: [\n { name: 'a', value: 10 },\n { name: 'b', value: 20 }\n ],\n edges: [{ source: 0, target: 1 }]\n }\n ]\n});\nchart.on('click', { dataType: 'node' }, function() {\n // call this method while the node of graph was clicked.\n});\nchart.on('click', { dataType: 'edge' }, function() {\n // call this method while the edge of graph was clicked.\n});\n```\n\nFor example:\n\n```js\nchart.setOption({\n // ...\n series: {\n // ...\n type: 'custom',\n renderItem: function(params, api) {\n return {\n type: 'group',\n children: [\n {\n type: 'circle',\n name: 'my_el'\n // ...\n },\n {\n // ...\n }\n ]\n };\n },\n data: [[12, 33]]\n }\n});\nchart.on('mouseup', { element: 'my_el' }, function() {\n // when data named 'my_el' triggered 'mouseup'.\n});\n```\n\nYou can display a popup, update the charts using the query result from your database by the data name or series name in the callback function. Here is an example:\n\n```js\nmyChart.on('click', function(parmas) {\n $.get('detail?q=' + params.name, function(detail) {\n myChart.setOption({\n series: [\n {\n name: 'pie',\n // using pie chart to show the data distribution in one column.\n data: [detail.data]\n }\n ]\n });\n });\n});\n```\n\n## Event of Component Interaction\n\nAll Component Interaction in ECharts will trigger a corresponding event. Normal events and parameters are listed in the [events](https://echarts.apache.org//api.html#events) document.\n\nHere is an example of listening to legend event:\n\n```js\n// Show/hide the legend only trigger legendselectchanged event\nmyChart.on('legendselectchanged', function(params) {\n // State if legend is selected.\n var isSelected = params.selected[params.name];\n // print in the console.\n console.log(\n (isSelected ? 'Selected' : 'Not Selected') + 'legend' + params.name\n );\n // print for all legends.\n console.log(params.selected);\n});\n```\n\n## Writing Code to Trigger Component Action Manually\n\nYou can trigger events such as `'legendselectchanged'` not only by the user but also with code manually. It can be used to display the tooltip, select the legend.\n\nIn ECharts `myChart.dispatchAction({ type: '' })` is used to trigger the behavior. This manages all actions and can record the behaviors conveniently.\n\nCommonly used behavior and corresponding parameters are listed in [action](https://echarts.apache.org//api.html#action).\n\nThe following example shows how to highlight each sector one by one in the pie chart using `dispatchAction`.\n\n```js [live]\noption = {\n tooltip: {\n trigger: 'item',\n formatter: '{a} <br/>{b} : {c} ({d}%)'\n },\n legend: {\n orient: 'vertical',\n left: 'left',\n data: [\n 'Direct Access',\n 'Email Marketing',\n 'Affiliate Ads',\n 'Video Ads',\n 'Search Engines'\n ]\n },\n series: [\n {\n name: 'Access Source',\n type: 'pie',\n radius: '55%',\n center: ['50%', '60%'],\n data: [\n { value: 335, name: 'Direct Access' },\n { value: 310, name: 'Email Marketing' },\n { value: 234, name: 'Affiliate Ads' },\n { value: 135, name: 'Video Ads' },\n { value: 1548, name: 'Search Engines' }\n ],\n emphasis: {\n itemStyle: {\n shadowBlur: 10,\n shadowOffsetX: 0,\n shadowColor: 'rgba(0, 0, 0, 0.5)'\n }\n }\n }\n ]\n};\n\nlet currentIndex = -1;\n\nsetInterval(function() {\n var dataLen = option.series[0].data.length;\n myChart.dispatchAction({\n type: 'downplay',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n currentIndex = (currentIndex + 1) % dataLen;\n myChart.dispatchAction({\n type: 'highlight',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n}, 1000);\n```\n\n## Listen to Events on the Blank Area\n\nSometimes developers need to listen to the events that are triggered from the blank of the canvas. For example, need to reset the chart when users click on the blank area.\n\nBefore we talk about this feature, we need to clarify two kinds of events: zrender events and echarts events.\n\n```js\nmyChart.getZr().on('click', function(event) {\n // This listener is listening to a `zrender event`.\n});\nmyChart.on('click', function(event) {\n // This listener is listening to a `echarts event`.\n});\n```\n\nzrender events are different from echarts events. The former one are triggered when mouse/pointer is at everywhere, while the latter one can only be triggered when mouse/pointer is at the graphic elements. In fact, echarts events are implemented based on zrender events, that is, when a zrender events is triggered at a graphic element, echarts will trigger a echarts event.\n\nHaving zrender events, we can implement listen to events from the blank as follows:\n\n```js\nmyChart.getZr().on('click', function(event) {\n // No \"target\" means that mouse/pointer is not on\n // any of the graphic elements, which is \"blank\".\n if (!event.target) {\n // Click on blank. Do something.\n }\n});\n```\n","dir":"/en/concepts","path":"/en/concepts/event","extension":".md","createdAt":"2021-06-04T12:26:37.919Z","updatedAt":"2021-07-21T11:13:55.330Z","meta":{"version":0,"revision":0,"created":1627897108564},"$loki":36},{"slug":"style","toc":[{"id":"theme","depth":2,"text":"Theme"},{"id":"color-palette","depth":2,"text":"Color Palette"},{"id":"customize-style-explicitly-itemstyle-linestyle-areastyle-label-","depth":2,"text":"Customize Style Explicitly (itemStyle, lineStyle, areaStyle, label, ...)"},{"id":"style-of-emphasis-state","depth":2,"text":"Style of Emphasis State"},{"id":"visual-encoding-by-visualmap-component","depth":2,"text":"Visual Encoding by visualMap Component"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"overview-of-style-customization"},"children":[{"type":"element","tag":"a","props":{"href":"#overview-of-style-customization","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Overview of Style Customization"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This article provides an overview of the different approaches about Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" style customization. For example, how to config the color, size, shadow of the graphic elements and labels."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The term \"style\" may not follow the convention of data visualization, but we use it in this article because it is popular and easy to understand."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"These approaches below will be introduced. The functionalities of them might be overlapped, but they are suitable for different scenarios."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Color Palette"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Customize style explicitly (itemStyle, lineStyle, areaStyle, label, ...)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual encoding (visualMap component)"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"theme"},"children":[{"type":"element","tag":"a","props":{"href":"#theme","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Theme"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Setting a theme is the simplest way to change the color style. For example, in "},{"type":"element","tag":"a","props":{"href":"$%7BwebsitePath%7D/examples/en/index.html"},"children":[{"type":"text","value":"Examples page"}]},{"type":"text","value":", we can switch to dark mode and see the result of a different theme."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In our project, we can switch to dark theme like:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var chart = echarts.init(dom, 'dark');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Other themes are not included by default, and need to load them ourselves if we want to use them. Themes can be visited and downloaded in the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/en/theme-builder.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"theme builder"}]},{"type":"text","value":". Theme can also be created or edited in it. The downloaded theme can be used as follows:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If a theme is downloaded as a JSON file, we should register it by ourselves, for example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var xhr = new XMLHttpRequest();\n// Assume the theme name is \"vintage\".\n$.getJSON('xxx/xxx/vintage.json', function(themeJSON) {\n echarts.registerTheme('vintage', JSON.parse(themeJSON));\n var chart = echarts.init(dom, 'vintage');\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If a theme is downloaded as a JS file, it will auto register itself:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Import the `vintage.js` file in HTML, then:\nvar chart = echarts.init(dom, 'vintage');\n// ...\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"color-palette"},"children":[{"type":"element","tag":"a","props":{"href":"#color-palette","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Color Palette"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Color palette can be given in option. They provide a group of colors, which will be auto picked by series and data. We can give a global palette, or exclusive pallette for certain series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n // Global palette:\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ],\n\n series: [\n {\n type: 'bar',\n // A palette only work for the series:\n color: [\n '#dd6b66',\n '#759aa0',\n '#e69d87',\n '#8dc1a9',\n '#ea7e53',\n '#eedd78',\n '#73a373',\n '#73b9bc',\n '#7289ab',\n '#91ca8c',\n '#f49f42'\n ]\n // ...\n },\n {\n type: 'pie',\n // A palette only work for the series:\n color: [\n '#37A2DA',\n '#32C5E9',\n '#67E0E3',\n '#9FE6B8',\n '#FFDB5C',\n '#ff9f7f',\n '#fb7293',\n '#E062AE',\n '#E690D1',\n '#e7bcf3',\n '#9d96f5',\n '#8378EA',\n '#96BFFF'\n ]\n // ...\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customize-style-explicitly-itemstyle-linestyle-areastyle-label-"},"children":[{"type":"element","tag":"a","props":{"href":"#customize-style-explicitly-itemstyle-linestyle-areastyle-label-","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customize Style Explicitly (itemStyle, lineStyle, areaStyle, label, ...)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It is a common way to set style explicitly. Throughout ECharts "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"option"}]},{"type":"text","value":", style related options can be set in various place, including "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.label","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"label"}]},{"type":"text","value":", etc."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generally speaking, all of the built-in components and series follow the naming convention like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" etc, although they may occur in different place according to different series or components."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the following code we add shadow, gradient to bubble chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var data = [\n [\n [28604, 77, 17096869, 'Australia', 1990],\n [31163, 77.4, 27662440, 'Canada', 1990],\n [1516, 68, 1154605773, 'China', 1990],\n [13670, 74.7, 10582082, 'Cuba', 1990],\n [28599, 75, 4986705, 'Finland', 1990],\n [29476, 77.1, 56943299, 'France', 1990],\n [31476, 75.4, 78958237, 'Germany', 1990],\n [28666, 78.1, 254830, 'Iceland', 1990],\n [1777, 57.7, 870601776, 'India', 1990],\n [29550, 79.1, 122249285, 'Japan', 1990],\n [2076, 67.9, 20194354, 'North Korea', 1990],\n [12087, 72, 42972254, 'South Korea', 1990],\n [24021, 75.4, 3397534, 'New Zealand', 1990],\n [43296, 76.8, 4240375, 'Norway', 1990],\n [10088, 70.8, 38195258, 'Poland', 1990],\n [19349, 69.6, 147568552, 'Russia', 1990],\n [10670, 67.3, 53994605, 'Turkey', 1990],\n [26424, 75.7, 57110117, 'United Kingdom', 1990],\n [37062, 75.4, 252847810, 'United States', 1990]\n ],\n [\n [44056, 81.8, 23968973, 'Australia', 2015],\n [43294, 81.7, 35939927, 'Canada', 2015],\n [13334, 76.9, 1376048943, 'China', 2015],\n [21291, 78.5, 11389562, 'Cuba', 2015],\n [38923, 80.8, 5503457, 'Finland', 2015],\n [37599, 81.9, 64395345, 'France', 2015],\n [44053, 81.1, 80688545, 'Germany', 2015],\n [42182, 82.8, 329425, 'Iceland', 2015],\n [5903, 66.8, 1311050527, 'India', 2015],\n [36162, 83.5, 126573481, 'Japan', 2015],\n [1390, 71.4, 25155317, 'North Korea', 2015],\n [34644, 80.7, 50293439, 'South Korea', 2015],\n [34186, 80.6, 4528526, 'New Zealand', 2015],\n [64304, 81.6, 5210967, 'Norway', 2015],\n [24787, 77.3, 38611794, 'Poland', 2015],\n [23038, 73.13, 143456918, 'Russia', 2015],\n [19360, 76.5, 78665830, 'Turkey', 2015],\n [38225, 81.4, 64715810, 'United Kingdom', 2015],\n [53354, 79.1, 321773631, 'United States', 2015]\n ]\n];\n\noption = {\n backgroundColor: {\n type: 'radial',\n x: 0.3,\n y: 0.3,\n r: 0.8,\n colorStops: [\n {\n offset: 0,\n color: '#f7f8fa'\n },\n {\n offset: 1,\n color: '#cdd0d5'\n }\n ]\n },\n grid: {\n left: 10,\n containLabel: true,\n bottom: 10,\n top: 10,\n right: 30\n },\n xAxis: {\n splitLine: {\n show: false\n }\n },\n yAxis: {\n splitLine: {\n show: false\n },\n scale: true\n },\n series: [\n {\n name: '1990',\n data: data[0],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(120, 36, 50, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(251, 118, 123)'\n },\n {\n offset: 1,\n color: 'rgb(204, 46, 72)'\n }\n ]\n }\n }\n },\n {\n name: '2015',\n data: data[1],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(25, 100, 150, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(129, 227, 238)'\n },\n {\n offset: 1,\n color: 'rgb(25, 183, 207)'\n }\n ]\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"style-of-emphasis-state"},"children":[{"type":"element","tag":"a","props":{"href":"#style-of-emphasis-state","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Style of Emphasis State"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When mouse hovering a graphic elements, usually the emphasis style will be displayed. By default, the emphasis style is auto generated by the normal style. However they can be specified by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.emphasis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" property. The options in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.emphasis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" is the same as the ones for normal state, for example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n type: 'scatter',\n\n // Styles for normal state.\n itemStyle: {\n // Color of the point.\n color: 'red'\n },\n label: {\n show: true,\n // Text of labels.\n formatter: 'This is a normal label.'\n },\n\n // Styles for emphasis state.\n emphasis: {\n itemStyle: {\n // Color in emphasis state.\n color: 'blue'\n },\n label: {\n show: true,\n // Text in emphasis.\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Notice: Before ECharts4, the emphasis style should be written like this:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n type: 'scatter',\n\n itemStyle: {\n // Styles for normal state.\n normal: {\n color: 'red'\n },\n // Styles for emphasis state.\n emphasis: {\n color: 'blue'\n }\n },\n\n label: {\n // Styles for normal state.\n normal: {\n show: true,\n formatter: 'This is a normal label.'\n },\n // Styles for emphasis state.\n emphasis: {\n show: true,\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The option format is still "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"compatible"}]},{"type":"text","value":", but not recommended. In fact, in most cases, users only set normal style, and use the default emphasis style. So since ECharts4, we support to write style without the \"normal\" term, which makes the option more simple and neat."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"visual-encoding-by-visualmap-component"},"children":[{"type":"element","tag":"a","props":{"href":"#visual-encoding-by-visualmap-component","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Visual Encoding by visualMap Component"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":" supports config the rule that mapping value to visual channel (color, size, ...). More details can be check in "},{"type":"element","tag":"a","props":{"href":"~Visual%20Map%20of%20Data"},"children":[{"type":"text","value":"Visual Map of Data"}]},{"type":"text","value":"."}]}]},"text":"# Overview of Style Customization\n\nThis article provides an overview of the different approaches about Apache ECharts<sup>TM</sup> style customization. For example, how to config the color, size, shadow of the graphic elements and labels.\n\n> The term \"style\" may not follow the convention of data visualization, but we use it in this article because it is popular and easy to understand.\n\nThese approaches below will be introduced. The functionalities of them might be overlapped, but they are suitable for different scenarios.\n\n- Theme\n- Color Palette\n- Customize style explicitly (itemStyle, lineStyle, areaStyle, label, ...)\n- Visual encoding (visualMap component)\n\n## Theme\n\nSetting a theme is the simplest way to change the color style. For example, in [Examples page](${websitePath}/examples/en/index.html), we can switch to dark mode and see the result of a different theme.\n\nIn our project, we can switch to dark theme like:\n\n```js\nvar chart = echarts.init(dom, 'dark');\n```\n\nOther themes are not included by default, and need to load them ourselves if we want to use them. Themes can be visited and downloaded in the [theme builder](https://echarts.apache.org/en/theme-builder.html). Theme can also be created or edited in it. The downloaded theme can be used as follows:\n\nIf a theme is downloaded as a JSON file, we should register it by ourselves, for example:\n\n```js\nvar xhr = new XMLHttpRequest();\n// Assume the theme name is \"vintage\".\n$.getJSON('xxx/xxx/vintage.json', function(themeJSON) {\n echarts.registerTheme('vintage', JSON.parse(themeJSON));\n var chart = echarts.init(dom, 'vintage');\n});\n```\n\nIf a theme is downloaded as a JS file, it will auto register itself:\n\n```js\n// Import the `vintage.js` file in HTML, then:\nvar chart = echarts.init(dom, 'vintage');\n// ...\n```\n\n## Color Palette\n\nColor palette can be given in option. They provide a group of colors, which will be auto picked by series and data. We can give a global palette, or exclusive pallette for certain series.\n\n```js\noption = {\n // Global palette:\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ],\n\n series: [\n {\n type: 'bar',\n // A palette only work for the series:\n color: [\n '#dd6b66',\n '#759aa0',\n '#e69d87',\n '#8dc1a9',\n '#ea7e53',\n '#eedd78',\n '#73a373',\n '#73b9bc',\n '#7289ab',\n '#91ca8c',\n '#f49f42'\n ]\n // ...\n },\n {\n type: 'pie',\n // A palette only work for the series:\n color: [\n '#37A2DA',\n '#32C5E9',\n '#67E0E3',\n '#9FE6B8',\n '#FFDB5C',\n '#ff9f7f',\n '#fb7293',\n '#E062AE',\n '#E690D1',\n '#e7bcf3',\n '#9d96f5',\n '#8378EA',\n '#96BFFF'\n ]\n // ...\n }\n ]\n};\n```\n\n## Customize Style Explicitly (itemStyle, lineStyle, areaStyle, label, ...)\n\nIt is a common way to set style explicitly. Throughout ECharts [option](https://echarts.apache.org/option.html#), style related options can be set in various place, including [itemStyle](https://echarts.apache.org/option.html#series.itemStyle), [lineStyle](https://echarts.apache.org/option.html#series-line.lineStyle), [areaStyle](https://echarts.apache.org/option.html#series-line.areaStyle), [label](https://echarts.apache.org/option.html#series.label), etc.\n\nGenerally speaking, all of the built-in components and series follow the naming convention like `itemStyle`, `lineStyle`, `areaStyle`, `label` etc, although they may occur in different place according to different series or components.\n\nIn the following code we add shadow, gradient to bubble chart.\n\n```js [live]\nvar data = [\n [\n [28604, 77, 17096869, 'Australia', 1990],\n [31163, 77.4, 27662440, 'Canada', 1990],\n [1516, 68, 1154605773, 'China', 1990],\n [13670, 74.7, 10582082, 'Cuba', 1990],\n [28599, 75, 4986705, 'Finland', 1990],\n [29476, 77.1, 56943299, 'France', 1990],\n [31476, 75.4, 78958237, 'Germany', 1990],\n [28666, 78.1, 254830, 'Iceland', 1990],\n [1777, 57.7, 870601776, 'India', 1990],\n [29550, 79.1, 122249285, 'Japan', 1990],\n [2076, 67.9, 20194354, 'North Korea', 1990],\n [12087, 72, 42972254, 'South Korea', 1990],\n [24021, 75.4, 3397534, 'New Zealand', 1990],\n [43296, 76.8, 4240375, 'Norway', 1990],\n [10088, 70.8, 38195258, 'Poland', 1990],\n [19349, 69.6, 147568552, 'Russia', 1990],\n [10670, 67.3, 53994605, 'Turkey', 1990],\n [26424, 75.7, 57110117, 'United Kingdom', 1990],\n [37062, 75.4, 252847810, 'United States', 1990]\n ],\n [\n [44056, 81.8, 23968973, 'Australia', 2015],\n [43294, 81.7, 35939927, 'Canada', 2015],\n [13334, 76.9, 1376048943, 'China', 2015],\n [21291, 78.5, 11389562, 'Cuba', 2015],\n [38923, 80.8, 5503457, 'Finland', 2015],\n [37599, 81.9, 64395345, 'France', 2015],\n [44053, 81.1, 80688545, 'Germany', 2015],\n [42182, 82.8, 329425, 'Iceland', 2015],\n [5903, 66.8, 1311050527, 'India', 2015],\n [36162, 83.5, 126573481, 'Japan', 2015],\n [1390, 71.4, 25155317, 'North Korea', 2015],\n [34644, 80.7, 50293439, 'South Korea', 2015],\n [34186, 80.6, 4528526, 'New Zealand', 2015],\n [64304, 81.6, 5210967, 'Norway', 2015],\n [24787, 77.3, 38611794, 'Poland', 2015],\n [23038, 73.13, 143456918, 'Russia', 2015],\n [19360, 76.5, 78665830, 'Turkey', 2015],\n [38225, 81.4, 64715810, 'United Kingdom', 2015],\n [53354, 79.1, 321773631, 'United States', 2015]\n ]\n];\n\noption = {\n backgroundColor: {\n type: 'radial',\n x: 0.3,\n y: 0.3,\n r: 0.8,\n colorStops: [\n {\n offset: 0,\n color: '#f7f8fa'\n },\n {\n offset: 1,\n color: '#cdd0d5'\n }\n ]\n },\n grid: {\n left: 10,\n containLabel: true,\n bottom: 10,\n top: 10,\n right: 30\n },\n xAxis: {\n splitLine: {\n show: false\n }\n },\n yAxis: {\n splitLine: {\n show: false\n },\n scale: true\n },\n series: [\n {\n name: '1990',\n data: data[0],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(120, 36, 50, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(251, 118, 123)'\n },\n {\n offset: 1,\n color: 'rgb(204, 46, 72)'\n }\n ]\n }\n }\n },\n {\n name: '2015',\n data: data[1],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(25, 100, 150, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(129, 227, 238)'\n },\n {\n offset: 1,\n color: 'rgb(25, 183, 207)'\n }\n ]\n }\n }\n }\n ]\n};\n```\n\n## Style of Emphasis State\n\nWhen mouse hovering a graphic elements, usually the emphasis style will be displayed. By default, the emphasis style is auto generated by the normal style. However they can be specified by [emphasis](https://echarts.apache.org/option.html#series-bar.emphasis) property. The options in [emphasis](https://echarts.apache.org/option.html#series-bar.emphasis) is the same as the ones for normal state, for example:\n\n```js\noption = {\n series: {\n type: 'scatter',\n\n // Styles for normal state.\n itemStyle: {\n // Color of the point.\n color: 'red'\n },\n label: {\n show: true,\n // Text of labels.\n formatter: 'This is a normal label.'\n },\n\n // Styles for emphasis state.\n emphasis: {\n itemStyle: {\n // Color in emphasis state.\n color: 'blue'\n },\n label: {\n show: true,\n // Text in emphasis.\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n```\n\nNotice: Before ECharts4, the emphasis style should be written like this:\n\n```js\noption = {\n series: {\n type: 'scatter',\n\n itemStyle: {\n // Styles for normal state.\n normal: {\n color: 'red'\n },\n // Styles for emphasis state.\n emphasis: {\n color: 'blue'\n }\n },\n\n label: {\n // Styles for normal state.\n normal: {\n show: true,\n formatter: 'This is a normal label.'\n },\n // Styles for emphasis state.\n emphasis: {\n show: true,\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n```\n\nThe option format is still **compatible**, but not recommended. In fact, in most cases, users only set normal style, and use the default emphasis style. So since ECharts4, we support to write style without the \"normal\" term, which makes the option more simple and neat.\n\n## Visual Encoding by visualMap Component\n\n[visualMap component](https://echarts.apache.org/option.html#visualMap) supports config the rule that mapping value to visual channel (color, size, ...). More details can be check in [Visual Map of Data](~Visual%20Map%20of%20Data).\n","dir":"/en/concepts","path":"/en/concepts/style","extension":".md","createdAt":"2021-07-21T15:14:22.805Z","updatedAt":"2021-07-21T15:32:05.243Z","meta":{"version":0,"revision":0,"created":1627897108595},"$loki":37},{"slug":"edit-guide","toc":[{"id":"adding-a-markdown-file","depth":2,"text":"Adding a Markdown File"},{"id":"using-prettier-to-automatically-format-code","depth":2,"text":"Using Prettier to Automatically Format Code"},{"id":"built-in-variables","depth":2,"text":"Built-in Variables"},{"id":"embedding-code","depth":2,"text":"Embedding Code"},{"id":"basic-usage","depth":3,"text":"Basic Usage"},{"id":"recommended-way-of-writing-code","depth":3,"text":"Recommended Way of Writing Code"},{"id":"live-preview-and-editing","depth":3,"text":"Live Preview and Editing"},{"id":"more-preview-layouts","depth":3,"text":"More Preview Layouts"},{"id":"highlighting-lines-of-code-and-adding-filenames","depth":3,"text":"Highlighting Lines of Code and Adding Filenames"},{"id":"embedding-images","depth":2,"text":"Embedding Images"},{"id":"set-the-image-height-and-width","depth":3,"text":"Set the Image Height and Width"},{"id":"add-example-iframe","depth":2,"text":"Add Example Iframe"},{"id":"add-link-to-option-item","depth":2,"text":"Add Link to Option Item"},{"id":"more-component-usage","depth":2,"text":"More Component Usage"},{"id":"md-alert","depth":3,"text":"md-alert"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"document-editing-guidelines"},"children":[{"type":"element","tag":"a","props":{"href":"#document-editing-guidelines","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Document Editing Guidelines"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"adding-a-markdown-file"},"children":[{"type":"element","tag":"a","props":{"href":"#adding-a-markdown-file","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Adding a Markdown File"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Add a markdown file to the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/zh/"}]},{"type":"text","value":" (Chinese posts) or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/en/"}]},{"type":"text","value":" (English posts) directories, up to three levels. Update the path and title information in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/zh/posts.yml"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/en/posts.yml"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Lowercase markdown file names."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"using-prettier-to-automatically-format-code"},"children":[{"type":"element","tag":"a","props":{"href":"#using-prettier-to-automatically-format-code","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Using Prettier to Automatically Format Code"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Before you start, we recommend installing the "},{"type":"element","tag":"a","props":{"href":"https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"prettier VSCode plugin"}]},{"type":"text","value":", which will automatically format the code for you when you save it."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you feel that the automatic formatting is breaking your code block, you can add the following comment to prevent "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"prettier"}]},{"type":"text","value":" from formatting the code inside the block"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!-- prettier-ignore-start -->\n<!-- prettier-ignore-end -->\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you find blocks of code that are not formatted, check first for syntax errors in the code."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"built-in-variables"},"children":[{"type":"element","tag":"a","props":{"href":"#built-in-variables","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Built-in Variables"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"optionPath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mainSitePath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"exampleViewPath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"exampleEditorPath"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"null","line-highlights":"","file-name":""},"children":[{"type":"text","value":"${xxxxx}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"embedding-code"},"children":[{"type":"element","tag":"a","props":{"href":"#embedding-code","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Embedding Code"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"basic-usage"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-usage","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Usage"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js\noption = {\n series: [{\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"recommended-way-of-writing-code"},"children":[{"type":"element","tag":"a","props":{"href":"#recommended-way-of-writing-code","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Recommended Way of Writing Code"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to allow the tool to help us format the code, we should try to avoid syntactically problematic writing styles."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, the comment "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"..."}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar'\n // ...\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"live-preview-and-editing"},"children":[{"type":"element","tag":"a","props":{"href":"#live-preview-and-editing","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Live Preview and Editing"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Currently only preview of Option code is supported"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"more-preview-layouts"},"children":[{"type":"element","tag":"a","props":{"href":"#more-preview-layouts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"More Preview Layouts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"left-to-right"},"children":[{"type":"element","tag":"a","props":{"href":"#left-to-right","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Left to Right"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-lr]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"right-to-left"},"children":[{"type":"element","tag":"a","props":{"href":"#right-to-left","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Right to left"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-rl]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"rl"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"down-to-up"},"children":[{"type":"element","tag":"a","props":{"href":"#down-to-up","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Down to Up"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-bt]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"bt"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"highlighting-lines-of-code-and-adding-filenames"},"children":[{"type":"element","tag":"a","props":{"href":"#highlighting-lines-of-code-and-adding-filenames","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Highlighting Lines of Code and Adding Filenames"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use."}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Effects."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"1,3-5","file-name":"option.js"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"embedding-images"},"children":[{"type":"element","tag":"a","props":{"href":"#embedding-images","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Embedding Images"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source images are stored under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"static/images/"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"![image description](images/demo.png)\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"set-the-image-height-and-width"},"children":[{"type":"element","tag":"a","props":{"href":"#set-the-image-height-and-width","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Set the Image Height and Width"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For the temporary style of the current page, you can just write html."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<img src=\"images/demo.png\" style=\"width: 50px\" />\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"add-example-iframe"},"children":[{"type":"element","tag":"a","props":{"href":"#add-example-iframe","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Add Example Iframe"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"src"}]},{"type":"text","value":" is the string after "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"?c="}]},{"type":"text","value":" in the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=line-simple","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://echarts.apache.org/examples/en/editor.html?c=line-simple"}]},{"type":"text","value":" address"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Result:\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/getting-started","width":"100%","height":300},"children":[]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"add-link-to-option-item"},"children":[{"type":"element","tag":"a","props":{"href":"#add-link-to-option-item","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Add Link to Option Item"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-option link=\"series-bar.itemStyle.color\"></md-option>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Result:\n"},{"type":"element","tag":"md-option","props":{"link":"series-bar.itemStyle.color"},"children":[]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"more-component-usage"},"children":[{"type":"element","tag":"a","props":{"href":"#more-component-usage","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"More Component Usage"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The documentation supports the use of globally registered "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"markdown"}]},{"type":"text","value":" components. In addition to the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"md-example"}]},{"type":"text","value":" component just described, the following components are also available"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"md-alert"},"children":[{"type":"element","tag":"a","props":{"href":"#md-alert","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"md-alert"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Prompt components"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"info"},"children":[{"type":"text","value":"\nThis is an info alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"success"},"children":[{"type":"text","value":"\nThis is a success alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"warning"},"children":[{"type":"text","value":"\nThis is a warning alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"warning\">\nThis is a danger alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"danger"},"children":[{"type":"text","value":"\nThis is a danger alert.\n"}]}]},"text":"# Document Editing Guidelines\n\n## Adding a Markdown File\n\nAdd a markdown file to the `contents/zh/` (Chinese posts) or `contents/en/` (English posts) directories, up to three levels. Update the path and title information in `contents/zh/posts.yml` or `contents/en/posts.yml`.\n\nLowercase markdown file names.\n\n## Using Prettier to Automatically Format Code\n\nBefore you start, we recommend installing the [prettier VSCode plugin](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode), which will automatically format the code for you when you save it.\n\nIf you feel that the automatic formatting is breaking your code block, you can add the following comment to prevent `prettier` from formatting the code inside the block\n\n```markdown\n<!-- prettier-ignore-start -->\n<!-- prettier-ignore-end -->\n```\n\nIf you find blocks of code that are not formatted, check first for syntax errors in the code.\n\n## Built-in Variables\n\n- `optionPath`\n- `mainSitePath`\n- `exampleViewPath`\n- `exampleEditorPath`\n\nUsage:\n\n```\n${xxxxx}\n```\n\n## Embedding Code\n\n### Basic Usage\n\n<!-- prettier-ignore-start -->\n\n```markdown\n```js\noption = {\n series: [{\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }]\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\n```js\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### Recommended Way of Writing Code\n\nIn order to allow the tool to help us format the code, we should try to avoid syntactically problematic writing styles.\n\nFor example, the comment `...`\n\n```js\noption = {\n series: [\n {\n type: 'bar'\n // ...\n }\n ]\n};\n```\n\n### Live Preview and Editing\n\n> Currently only preview of Option code is supported\n\n<!-- prettier-ignore-start -->\n```markdown\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### More Preview Layouts\n\n#### Left to Right\n\n<!-- prettier-ignore-start -->\n\n```markdown\n```js [live-lr]\noption = {\n ...\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\n```js [live-lr]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n#### Right to left\n\n<!-- prettier-ignore-start -->\n\n```markdown\n```js [live-rl]\noption = {\n ...\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\n```js [live-rl]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n#### Down to Up\n\n<!-- prettier-ignore-start -->\n\n```markdown\n```js [live-bt]\noption = {\n ...\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\n```js [live-bt]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### Highlighting Lines of Code and Adding Filenames\n\nUse.\n\n<!-- prettier-ignore-start -->\n\n```markdown\n```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n```\n\n<!-- prettier-ignore-end -->\n\nEffects.\n\n```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n## Embedding Images\n\nSource images are stored under `static/images/`.\n\n```markdown\n![image description](images/demo.png)\n```\n\n### Set the Image Height and Width\n\nFor the temporary style of the current page, you can just write html.\n\n```markdown\n<img src=\"images/demo.png\" style=\"width: 50px\" />\n```\n\n## Add Example Iframe\n\n`src` is the string after `?c=` in the https://echarts.apache.org/examples/en/editor.html?c=line-simple address\n\nUse:\n\n```markdown\n<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n```\n\nResult:\n<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n\n## Add Link to Option Item\n\nUse:\n\n```markdown\n<md-option link=\"series-bar.itemStyle.color\"></md-option>\n```\n\nResult:\n<md-option link=\"series-bar.itemStyle.color\"></md-option>\n\n## More Component Usage\n\nThe documentation supports the use of globally registered `markdown` components. In addition to the `md-example` component just described, the following components are also available\n\n### md-alert\n\nPrompt components\n\n```markdown\n<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n```\n\n<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n```\n\n<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n```\n\n<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"warning\">\nThis is a danger alert.\n</md-alert>\n```\n\n<md-alert type=\"danger\">\nThis is a danger alert.\n</md-alert>\n","dir":"/en/meta","path":"/en/meta/edit-guide","extension":".md","createdAt":"2021-07-21T08:44:02.349Z","updatedAt":"2021-07-21T09:51:51.604Z","meta":{"version":0,"revision":0,"created":1627897108618},"$loki":38},{"slug":"visual-map","toc":[{"id":"data-and-dimension","depth":2,"text":"Data and Dimension"},{"id":"the-visualmap-component","depth":2,"text":"The visualMap Component"},{"id":"continuous-and-piecewise-visual-mapping-components","depth":2,"text":"Continuous and Piecewise Visual Mapping Components"},{"id":"continuous-visual-mapping","depth":3,"text":"Continuous Visual Mapping"},{"id":"piecewise-visual-mapping","depth":3,"text":"Piecewise Visual Mapping"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"visual-map-of-data"},"children":[{"type":"element","tag":"a","props":{"href":"#visual-map-of-data","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Visual Map of Data"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data visualization is a procedure of mapping data into visual elements. This procedure can also be called visual coding, and visual elements can also be called visual channels."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Every type of charts in Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" has this built-in mapping procedure. For example, line chart map data into "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"lines"}]},{"type":"text","value":", bar chart map data into "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":". Some more complicated charts, like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graph"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"themeRiver"}]},{"type":"text","value":", and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"treemap"}]},{"type":"text","value":" have their own built-in mapping."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Besides, ECharts provides "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":" for general visual mapping. Visual elements allowed in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" component are:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbolSize"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opacity"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"colorAlpha"}]},{"type":"text","value":","}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"colorLightness"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"colorSaturation"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"colorHue"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Next, we are going to introduce how to use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" component."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"data-and-dimension"},"children":[{"type":"element","tag":"a","props":{"href":"#data-and-dimension","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Data and Dimension"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data are usually stored in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" in ECharts. Depending on chart types, like list, tree, graph, and so on, the form of data may vary somehow. But they have one common feature, that they are a collection of data items. Every data item contains data value, and other information if needed. Every data value can be a single value (one dimension) or an array (multiple dimensions)."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" is the most common form, which is a "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"list"}]},{"type":"text","value":", a common array:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n data: [\n {\n // every item here is a dataItem\n value: 2323, // this is data value\n itemStyle: {}\n },\n 1212, // it can also be a value of dataItem, which is a more common case\n 2323, // every data value here is one dimension\n 4343,\n 3434\n ];\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n data: [\n {\n // every item here is a dataItem\n value: [3434, 129, 'San Marino'], // this is data value\n itemStyle: {}\n },\n [1212, 5454, 'Vatican'], // it can also be a value of dataItem, which is a more common case\n [2323, 3223, 'Nauru'], // every data value here is three dimension\n [4343, 23, 'Tuvalu'] // If is scatter chart, usually map the first dimension to x axis,\n // the second dimension to y axis,\n // and the third dimension to symbolSize\n ];\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usually the first one or two dimensions are used for mapping. For example, map the first dimension to x axis, and the second dimension to y axis. If you want to represent more dimensions, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" is what you need. Most likely, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"scatter charts"}]},{"type":"text","value":" use radius to represent the third dimension."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"the-visualmap-component"},"children":[{"type":"element","tag":"a","props":{"href":"#the-visualmap-component","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"The visualMap Component"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"visualMap component defines the mapping from "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"which dimension of data"}]},{"type":"text","value":" to "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"what visual elements"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The following two types of visualMap components are supported, identified with "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.type","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.type"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Its structure is defined as:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n visualMap: [\n // can define multiple visualMap components at the same time\n {\n // the first visualMap component\n type: 'continuous' // defined as continuous visualMap\n // ...\n },\n {\n // the second visualMap component\n type: 'piecewise' // defined as discrete visualMap\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"continuous-and-piecewise-visual-mapping-components"},"children":[{"type":"element","tag":"a","props":{"href":"#continuous-and-piecewise-visual-mapping-components","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Continuous and Piecewise Visual Mapping Components"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The visual mapping component of ECharts is divided into continuous ("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-continuous","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMapContinuous"}]},{"type":"text","value":") and piecewise ("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMapPiecewise"}]},{"type":"text","value":")."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Continuous means that the data dimension for visual mapping is a continuous value, while piecewise means that the data is divided into multiple segments or discrete data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"continuous-visual-mapping"},"children":[{"type":"element","tag":"a","props":{"href":"#continuous-visual-mapping","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Continuous Visual Mapping"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Continuous type visual mapping can determine the range of visual mapping by specifying the maximum and minimum values."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n visualMap: [\n {\n type: 'piecewise',\n min: 0,\n max: 5000,\n dimension: 3, // the fourth dimension of series.data (i.e. value[3]) is mapped\n seriesIndex: 4, // The fourth series is mapped.\n inRange: {\n // The visual configuration in the selected range\n color: ['blue', '#121122', 'red'], // A list of colors that defines the graph color mapping\n // the minimum value of the data is mapped to 'blue', and\n // the maximum value is mapped to 'red', // the maximum value is mapped to 'red', // the maximum value is mapped to 'red'.\n // The rest is automatically calculated linearly.\n symbolSize: [30, 100] // Defines the mapping range for the graphic size.\n // The minimum value of the data is mapped to 30, // and the maximum value is mapped to 100.\n // The maximum value is mapped to 100.\n // The rest is calculated linearly automatically.\n },\n outOfRange: {\n // Check the out of range visual configuration\n symbolSize: [30, 100]\n }\n }\n // ...\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"where "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.inRange","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.inRange"}]},{"type":"text","value":" indicates the style used for data within the data mapping range; while "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.outOfRange","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.outOfRange"}]},{"type":"text","value":" specifies the style for data outside the mapping range."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"~visualMap.dimension"},"children":[{"type":"text","value":"visualMap.dimension"}]},{"type":"text","value":" specifies which dimension of the data will be visually mapped."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"piecewise-visual-mapping"},"children":[{"type":"element","tag":"a","props":{"href":"#piecewise-visual-mapping","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Piecewise Visual Mapping"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The piecewise visual mapping component has three modes."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Continuous data average segmentation: based on "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.splitNumber","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.splitNumber"}]},{"type":"text","value":" to automatically split the data into pieces equally."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Continuous data custom segmentation: define the range of each piece based on "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.pieces","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.pieces"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Discrete data (categorical data): categories are defined in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.categories","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.categories"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To use segmented visual map, you need to set "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'piecewise'"}]},{"type":"text","value":" and choose one of the above three configuration items."}]}]},"text":"# Visual Map of Data\n\nData visualization is a procedure of mapping data into visual elements. This procedure can also be called visual coding, and visual elements can also be called visual channels.\n\nEvery type of charts in Apache ECharts<sup>TM</sup> has this built-in mapping procedure. For example, line chart map data into _lines_, bar chart map data into _height_. Some more complicated charts, like `graph`, `themeRiver`, and `treemap` have their own built-in mapping.\n\nBesides, ECharts provides [visualMap component](https://echarts.apache.org/option.html#visualMap) for general visual mapping. Visual elements allowed in `visualMap` component are:\n\n- `symbol`, `symbolSize`\n- `color`, `opacity`, `colorAlpha`,\n- `colorLightness`, `colorSaturation`, `colorHue`\n\nNext, we are going to introduce how to use `visualMap` component.\n\n## Data and Dimension\n\nData are usually stored in [series.data](https://echarts.apache.org/option.html#series.data) in ECharts. Depending on chart types, like list, tree, graph, and so on, the form of data may vary somehow. But they have one common feature, that they are a collection of data items. Every data item contains data value, and other information if needed. Every data value can be a single value (one dimension) or an array (multiple dimensions).\n\nFor example, [series.data](https://echarts.apache.org/option.html#series.data) is the most common form, which is a `list`, a common array:\n\n```js\nseries: {\n data: [\n {\n // every item here is a dataItem\n value: 2323, // this is data value\n itemStyle: {}\n },\n 1212, // it can also be a value of dataItem, which is a more common case\n 2323, // every data value here is one dimension\n 4343,\n 3434\n ];\n}\n```\n\n```js\nseries: {\n data: [\n {\n // every item here is a dataItem\n value: [3434, 129, 'San Marino'], // this is data value\n itemStyle: {}\n },\n [1212, 5454, 'Vatican'], // it can also be a value of dataItem, which is a more common case\n [2323, 3223, 'Nauru'], // every data value here is three dimension\n [4343, 23, 'Tuvalu'] // If is scatter chart, usually map the first dimension to x axis,\n // the second dimension to y axis,\n // and the third dimension to symbolSize\n ];\n}\n```\n\nUsually the first one or two dimensions are used for mapping. For example, map the first dimension to x axis, and the second dimension to y axis. If you want to represent more dimensions, `visualMap` is what you need. Most likely, [scatter charts](https://echarts.apache.org/option.html#series-scatter) use radius to represent the third dimension.\n\n## The visualMap Component\n\nvisualMap component defines the mapping from _which dimension of data_ to _what visual elements_.\n\nThe following two types of visualMap components are supported, identified with [visualMap.type](https://echarts.apache.org/option.html#visualMap.type).\n\nIts structure is defined as:\n\n```js\noption = {\n visualMap: [\n // can define multiple visualMap components at the same time\n {\n // the first visualMap component\n type: 'continuous' // defined as continuous visualMap\n // ...\n },\n {\n // the second visualMap component\n type: 'piecewise' // defined as discrete visualMap\n // ...\n }\n ]\n // ...\n};\n```\n\n## Continuous and Piecewise Visual Mapping Components\n\nThe visual mapping component of ECharts is divided into continuous ([visualMapContinuous](https://echarts.apache.org/option.html#visualMap-continuous)) and piecewise ([visualMapPiecewise](https://echarts.apache.org/option.html#visualMap-piecewise)).\n\nContinuous means that the data dimension for visual mapping is a continuous value, while piecewise means that the data is divided into multiple segments or discrete data.\n\n### Continuous Visual Mapping\n\nContinuous type visual mapping can determine the range of visual mapping by specifying the maximum and minimum values.\n\n```js\noption = {\n visualMap: [\n {\n type: 'piecewise',\n min: 0,\n max: 5000,\n dimension: 3, // the fourth dimension of series.data (i.e. value[3]) is mapped\n seriesIndex: 4, // The fourth series is mapped.\n inRange: {\n // The visual configuration in the selected range\n color: ['blue', '#121122', 'red'], // A list of colors that defines the graph color mapping\n // the minimum value of the data is mapped to 'blue', and\n // the maximum value is mapped to 'red', // the maximum value is mapped to 'red', // the maximum value is mapped to 'red'.\n // The rest is automatically calculated linearly.\n symbolSize: [30, 100] // Defines the mapping range for the graphic size.\n // The minimum value of the data is mapped to 30, // and the maximum value is mapped to 100.\n // The maximum value is mapped to 100.\n // The rest is calculated linearly automatically.\n },\n outOfRange: {\n // Check the out of range visual configuration\n symbolSize: [30, 100]\n }\n }\n // ...\n ]\n};\n```\n\nwhere [visualMap.inRange](https://echarts.apache.org/option.html#visualMap.inRange) indicates the style used for data within the data mapping range; while [visualMap.outOfRange](https://echarts.apache.org/option.html#visualMap.outOfRange) specifies the style for data outside the mapping range.\n\n[visualMap.dimension](~visualMap.dimension) specifies which dimension of the data will be visually mapped.\n\n### Piecewise Visual Mapping\n\nThe piecewise visual mapping component has three modes.\n\n- Continuous data average segmentation: based on [visualMap-piecewise.splitNumber](https://echarts.apache.org/option.html#visualMap-piecewise.splitNumber) to automatically split the data into pieces equally.\n- Continuous data custom segmentation: define the range of each piece based on [visualMap-piecewise.pieces](https://echarts.apache.org/option.html#visualMap-piecewise.pieces).\n- Discrete data (categorical data): categories are defined in [visualMap-piecewise.categories](https://echarts.apache.org/option.html#visualMap-piecewise.categories).\n\nTo use segmented visual map, you need to set `type` to `'piecewise'` and choose one of the above three configuration items.\n","dir":"/en/concepts","path":"/en/concepts/visual-map","extension":".md","createdAt":"2021-07-21T13:08:18.970Z","updatedAt":"2021-07-21T13:31:05.709Z","meta":{"version":0,"revision":0,"created":1627897108640},"$loki":39},{"slug":"drilldown","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/application/data","path":"/en/application/data/drilldown","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-06-04T12:26:37.914Z","meta":{"version":0,"revision":0,"created":1627897108643},"$loki":40},{"slug":"help","toc":[{"id":"技术问题","depth":2,"text":"技术问题"},{"id":"确保现有文档等资料无法解决你的问题","depth":3,"text":"确保现有文档等资料无法解决你的问题"},{"id":"创建一个最简单可复现的例子","depth":3,"text":"创建一个最简单可复现的例子"},{"id":"判断是否是-bug","depth":3,"text":"判断是否是 bug"},{"id":"非技术类问题","depth":2,"text":"非技术类问题"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"寻求帮助"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AF%BB%E6%B1%82%E5%B8%AE%E5%8A%A9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"寻求帮助"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"技术问题"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8A%80%E6%9C%AF%E9%97%AE%E9%A2%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"技术问题"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"确保现有文档等资料无法解决你的问题"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%A1%AE%E4%BF%9D%E7%8E%B0%E6%9C%89%E6%96%87%E6%A1%A3%E7%AD%89%E8%B5%84%E6%96%99%E6%97%A0%E6%B3%95%E8%A7%A3%E5%86%B3%E4%BD%A0%E7%9A%84%E9%97%AE%E9%A2%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"确保现有文档等资料无法解决你的问题"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 有非常大量的用户,所以你遇到过的问题,很可能别人在此之前也遇到并解决了。通过查看文档以及使用搜索引擎搜索关键字,可以帮助你自助地在第一时间解决问题,而不需要依赖社区的帮助。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"因此,在做其他操作前,请确保现有文档等资料无法解决你的问题。可以尝试查看或搜索的资料包括:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"API"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//option.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"配置项手册"}]},{"type":"text","value":":可以尝试使用搜索功能"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"本手册的文章"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//faq.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"常见问题"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"GitHub issue"}]},{"type":"text","value":" 中搜索关键字"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"使用搜索引擎搜索关键字"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"创建一个最简单可复现的例子"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%9B%E5%BB%BA%E4%B8%80%E4%B8%AA%E6%9C%80%E7%AE%80%E5%8D%95%E5%8F%AF%E5%A4%8D%E7%8E%B0%E7%9A%84%E4%BE%8B%E5%AD%90","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"创建一个最简单可复现的例子"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用 "},{"type":"element","tag":"a","props":{"href":"https://codepen.io/Ovilia/pen/dyYWXWM","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Codepen"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://codesandbox.io/s/mystifying-bash-2uthz","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Codesandbox"}]},{"type":"text","value":" 或者 "},{"type":"element","tag":"a","props":{"href":"https://www.makeapie.com/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"makeapie.com"}]},{"type":"text","value":" 创建一个例子,这将使得他人更方便地复现你的问题。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例子应尽可能以最简单的方式复现你的问题,去除不必要的配置项和数据,可以让帮助你的人更快速地定位问题,从而让你的问题更快得到解决。更详细的介绍请参见 "},{"type":"element","tag":"a","props":{"href":"https://stackoverflow.com/help/minimal-reproducible-example","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"How to create a Minimal, Reproducible Example"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"判断是否是-bug"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%A4%E6%96%AD%E6%98%AF%E5%90%A6%E6%98%AF-bug","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"判断是否是 bug"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"报告-bug-或请求新功能"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8A%A5%E5%91%8A-bug-%E6%88%96%E8%AF%B7%E6%B1%82%E6%96%B0%E5%8A%9F%E8%83%BD","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"报告 bug 或请求新功能"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果不符合文档描述或你的预期效果,这很有可能是 bug。如果是 bug,或者你有一个想请求实现的功能,请使用 "},{"type":"element","tag":"a","props":{"href":"https://ecomfe.github.io/echarts-issue-helper/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"issue 模板"}]},{"type":"text","value":" 中新建一个 issue 并按照提示详细描述。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"咨询类问题"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%92%A8%E8%AF%A2%E7%B1%BB%E9%97%AE%E9%A2%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"咨询类问题"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果不是 bug,而是不知道如何实现某种效果,可以尝试在 "},{"type":"element","tag":"a","props":{"href":"https://stackoverflow.com"},"children":[{"type":"text","value":"stackoverflow.com"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://www.oschina.net/question/tag/echarts"},"children":[{"type":"text","value":"开源中国"}]},{"type":"text","value":" 或 "},{"type":"element","tag":"a","props":{"href":"https://segmentfault.com/t/echarts"},"children":[{"type":"text","value":"segmentfault.com"}]},{"type":"text","value":" 等问答平台上提问。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果没能得到答复,也可以发送邮件至邮件组 "},{"type":"element","tag":"a","props":{"href":"mailto:dev@echarts.apache.org"},"children":[{"type":"text","value":"dev@echarts.apache.org"}]},{"type":"text","value":"。为了让更多人理解你的问题,并且在将来搜索的时候得到帮助,强烈建议使用英文发送邮件。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"非技术类问题"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%9D%9E%E6%8A%80%E6%9C%AF%E7%B1%BB%E9%97%AE%E9%A2%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"非技术类问题"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其他问题可以发送英文邮件至邮件组 "},{"type":"element","tag":"a","props":{"href":"mailto:dev@echarts.apache.org"},"children":[{"type":"text","value":"dev@echarts.apache.org"}]},{"type":"text","value":"。"}]}]},"text":"# 寻求帮助\n\n## 技术问题\n\n### 确保现有文档等资料无法解决你的问题\n\nECharts 有非常大量的用户,所以你遇到过的问题,很可能别人在此之前也遇到并解决了。通过查看文档以及使用搜索引擎搜索关键字,可以帮助你自助地在第一时间解决问题,而不需要依赖社区的帮助。\n\n因此,在做其他操作前,请确保现有文档等资料无法解决你的问题。可以尝试查看或搜索的资料包括:\n\n- [API](https://echarts.apache.org//api.html)\n- [配置项手册](https://echarts.apache.org//option.html):可以尝试使用搜索功能\n- 本手册的文章\n- [常见问题](https://echarts.apache.org//faq.html)\n- 在 [GitHub issue](https://github.com/apache/echarts/issues) 中搜索关键字\n- 使用搜索引擎搜索关键字\n\n### 创建一个最简单可复现的例子\n\n使用 [Codepen](https://codepen.io/Ovilia/pen/dyYWXWM)、[Codesandbox](https://codesandbox.io/s/mystifying-bash-2uthz) 或者 [makeapie.com](https://www.makeapie.com/) 创建一个例子,这将使得他人更方便地复现你的问题。\n\n例子应尽可能以最简单的方式复现你的问题,去除不必要的配置项和数据,可以让帮助你的人更快速地定位问题,从而让你的问题更快得到解决。更详细的介绍请参见 [How to create a Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example)。\n\n### 判断是否是 bug\n\n#### 报告 bug 或请求新功能\n\n如果不符合文档描述或你的预期效果,这很有可能是 bug。如果是 bug,或者你有一个想请求实现的功能,请使用 [issue 模板](https://ecomfe.github.io/echarts-issue-helper/) 中新建一个 issue 并按照提示详细描述。\n\n#### 咨询类问题\n\n如果不是 bug,而是不知道如何实现某种效果,可以尝试在 <a href=\"https://stackoverflow.com\">stackoverflow.com</a>、<a href=\"https://www.oschina.net/question/tag/echarts\">开源中国</a> 或 <a href=\"https://segmentfault.com/t/echarts\">segmentfault.com</a> 等问答平台上提问。\n\n如果没能得到答复,也可以发送邮件至邮件组 [dev@echarts.apache.org](mailto:dev@echarts.apache.org)。为了让更多人理解你的问题,并且在将来搜索的时候得到帮助,强烈建议使用英文发送邮件。\n\n## 非技术类问题\n\n其他问题可以发送英文邮件至邮件组 [dev@echarts.apache.org](mailto:dev@echarts.apache.org)。\n","dir":"/zh/basics","path":"/zh/basics/help","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-06-04T12:26:37.923Z","meta":{"version":0,"revision":0,"created":1627897108656},"$loki":41},{"slug":"inspiration","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"获取灵感"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%8E%B7%E5%8F%96%E7%81%B5%E6%84%9F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"获取灵感"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"当你有“不知道图表应该设计成什么样”或者“不知道如何使用 ECharts 实现某种效果”的疑问的时候,以下列表可以提供一些思路。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts 官方实例"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"本手册的“应用篇 - 常用图表类型”"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://www.makeapie.com/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"makeapie.com"}]},{"type":"text","value":" 社区用户的作品集"}]},{"type":"text","value":"\n"}]}]},"text":"# 获取灵感\n\n当你有“不知道图表应该设计成什么样”或者“不知道如何使用 ECharts 实现某种效果”的疑问的时候,以下列表可以提供一些思路。\n\n- [ECharts 官方实例](https://echarts.apache.org//examples)\n- 本手册的“应用篇 - 常用图表类型”\n- [makeapie.com](https://www.makeapie.com/) 社区用户的作品集\n","dir":"/zh/basics","path":"/zh/basics/inspiration","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-07-21T06:20:18.869Z","meta":{"version":0,"revision":0,"created":1627897108661},"$loki":42},{"slug":"import","toc":[{"id":"npm-安装-echarts","depth":2,"text":"NPM 安装 ECharts"},{"id":"引入-echarts","depth":2,"text":"引入 ECharts"},{"id":"按需引入-echarts-图表和组件","depth":2,"text":"按需引入 ECharts 图表和组件"},{"id":"在-typescript-中按需引入","depth":2,"text":"在 TypeScript 中按需引入"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"在项目中引入-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9C%A8%E9%A1%B9%E7%9B%AE%E4%B8%AD%E5%BC%95%E5%85%A5-apache-echarts","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在项目中引入 Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"假如你的开发环境使用了"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"npm"}]},{"type":"text","value":"或者"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yarn"}]},{"type":"text","value":"等包管理工具,并且使用 Webpack 等打包工具进行构建,本文将会介绍如何引入 Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 并通过 treeshaking 特性只打包需要的模块。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"npm-安装-echarts"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#npm-%E5%AE%89%E8%A3%85-echarts","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"NPM 安装 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"你可以使用如下命令通过 npm 安装 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"shell","line-highlights":"","file-name":""},"children":[{"type":"text","value":"npm install echarts --save\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"引入-echarts"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%BC%95%E5%85%A5-echarts","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"引入 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n\n// 基于准备好的dom,初始化echarts实例\nvar myChart = echarts.init(document.getElementById('main'));\n// 绘制图表\nmyChart.setOption({\n title: {\n text: 'ECharts 入门示例'\n },\n tooltip: {},\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"按需引入-echarts-图表和组件"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%8C%89%E9%9C%80%E5%BC%95%E5%85%A5-echarts-%E5%9B%BE%E8%A1%A8%E5%92%8C%E7%BB%84%E4%BB%B6","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"按需引入 ECharts 图表和组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"上面的代码会引入所有 ECharts 中所有的图表和组件,但是假如你不想引入所有组件,也可以使用 ECharts 提供的按需引入的接口来打包必须的组件。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。\nimport * as echarts from 'echarts/core';\n// 引入柱状图图表,图表后缀都为 Chart\nimport { BarChart } from 'echarts/charts';\n// 引入提示框,标题,直角坐标系组件,组件后缀都为 Component\nimport {\n TitleComponent,\n TooltipComponent,\n GridComponent\n} from 'echarts/components';\n// 引入 Canvas 渲染器,注意引入 CanvasRenderer 或者 SVGRenderer 是必须的一步\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// 注册必须的组件\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\n// 接下来的使用就跟之前一样,初始化图表,设置配置项\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n // ...\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"需要注意的是注意为了保证打包的体积是最小的,ECharts 按需引入的时候不再提供任何渲染器,所以需要选择引入"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":"或者"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVGRenderer"}]},{"type":"text","value":"作为渲染器。这样的好处是假如你只需要使用 svg 渲染模式,打包的结果中就不会再包含无需使用的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":"模块。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们在示例编辑页的“完整代码”标签提供了非常方便的生成按需引入代码的功能。这个功能会根据当前的配置项动态生成最小的按需引入的代码。你可以直接在你的项目中使用。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"在-typescript-中按需引入"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9C%A8-typescript-%E4%B8%AD%E6%8C%89%E9%9C%80%E5%BC%95%E5%85%A5","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在 TypeScript 中按需引入"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于使用了 TypeScript 来开发 ECharts 的开发者,我们提供了类型接口来组合出最小的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"EChartsOption"}]},{"type":"text","value":"类型。这个更严格的类型可以有效帮助你检查出是否少加载了组件或者图表。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\nimport {\n BarChart,\n // 系列类型的定义后缀都为 SeriesOption\n BarSeriesOption,\n LineChart,\n LineSeriesOption\n} from 'echarts/charts';\nimport {\n TitleComponent,\n // 组件类型的定义后缀都为 ComponentOption\n TitleComponentOption,\n GridComponent,\n GridComponentOption\n} from 'echarts/components';\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型\ntype ECOption = echarts.ComposeOption<\n | BarSeriesOption\n | LineSeriesOption\n | TitleComponentOption\n | GridComponentOption\n>;\n\n// 注册必须的组件\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\nvar option: ECOption = {\n // ...\n};\n"}]}]}]},"text":"# 在项目中引入 Apache ECharts\n\n假如你的开发环境使用了`npm`或者`yarn`等包管理工具,并且使用 Webpack 等打包工具进行构建,本文将会介绍如何引入 Apache ECharts<sup>TM</sup> 并通过 treeshaking 特性只打包需要的模块。\n\n## NPM 安装 ECharts\n\n你可以使用如下命令通过 npm 安装 ECharts\n\n```shell\nnpm install echarts --save\n```\n\n## 引入 ECharts\n\n```js\nimport * as echarts from 'echarts';\n\n// 基于准备好的dom,初始化echarts实例\nvar myChart = echarts.init(document.getElementById('main'));\n// 绘制图表\nmyChart.setOption({\n title: {\n text: 'ECharts 入门示例'\n },\n tooltip: {},\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n});\n```\n\n## 按需引入 ECharts 图表和组件\n\n上面的代码会引入所有 ECharts 中所有的图表和组件,但是假如你不想引入所有组件,也可以使用 ECharts 提供的按需引入的接口来打包必须的组件。\n\n```js\n// 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。\nimport * as echarts from 'echarts/core';\n// 引入柱状图图表,图表后缀都为 Chart\nimport { BarChart } from 'echarts/charts';\n// 引入提示框,标题,直角坐标系组件,组件后缀都为 Component\nimport {\n TitleComponent,\n TooltipComponent,\n GridComponent\n} from 'echarts/components';\n// 引入 Canvas 渲染器,注意引入 CanvasRenderer 或者 SVGRenderer 是必须的一步\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// 注册必须的组件\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\n// 接下来的使用就跟之前一样,初始化图表,设置配置项\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n // ...\n});\n```\n\n> 需要注意的是注意为了保证打包的体积是最小的,ECharts 按需引入的时候不再提供任何渲染器,所以需要选择引入`CanvasRenderer`或者`SVGRenderer`作为渲染器。这样的好处是假如你只需要使用 svg 渲染模式,打包的结果中就不会再包含无需使用的`CanvasRenderer`模块。\n\n我们在示例编辑页的“完整代码”标签提供了非常方便的生成按需引入代码的功能。这个功能会根据当前的配置项动态生成最小的按需引入的代码。你可以直接在你的项目中使用。\n\n## 在 TypeScript 中按需引入\n\n对于使用了 TypeScript 来开发 ECharts 的开发者,我们提供了类型接口来组合出最小的`EChartsOption`类型。这个更严格的类型可以有效帮助你检查出是否少加载了组件或者图表。\n\n```ts\nimport * as echarts from 'echarts/core';\nimport {\n BarChart,\n // 系列类型的定义后缀都为 SeriesOption\n BarSeriesOption,\n LineChart,\n LineSeriesOption\n} from 'echarts/charts';\nimport {\n TitleComponent,\n // 组件类型的定义后缀都为 ComponentOption\n TitleComponentOption,\n GridComponent,\n GridComponentOption\n} from 'echarts/components';\nimport { CanvasRenderer } from 'echarts/renderers';\n\n// 通过 ComposeOption 来组合出一个只有必须组件和图表的 Option 类型\ntype ECOption = echarts.ComposeOption<\n | BarSeriesOption\n | LineSeriesOption\n | TitleComponentOption\n | GridComponentOption\n>;\n\n// 注册必须的组件\necharts.use([\n TitleComponent,\n TooltipComponent,\n GridComponent,\n BarChart,\n CanvasRenderer\n]);\n\nvar option: ECOption = {\n // ...\n};\n```\n","dir":"/zh/basics","path":"/zh/basics/import","extension":".md","createdAt":"2021-07-19T10:55:20.136Z","updatedAt":"2021-07-24T08:52:17.344Z","meta":{"version":0,"revision":0,"created":1627897108667},"$loki":43},{"slug":"download","toc":[{"id":"安装方式","depth":2,"text":"安装方式"},{"id":"从-github-获取","depth":3,"text":"从 GitHub 获取"},{"id":"从-npm-获取","depth":3,"text":"从 npm 获取"},{"id":"从-cdn-获取","depth":3,"text":"从 CDN 获取"},{"id":"在线定制","depth":3,"text":"在线定制"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"获取-apache-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%8E%B7%E5%8F%96-apache-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"获取 Apache ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 提供了多种安装方式,你可以根据项目的实际情况选择以下任意一种方式安装。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"从 GitHub 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"从 npm 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"从 CDN 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在线定制"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"接下来我们将分别介绍这些安装方式,以及下载后的目录结构。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"安装方式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%89%E8%A3%85%E6%96%B9%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"安装方式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"从-github-获取"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%8E-github-%E8%8E%B7%E5%8F%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"从 GitHub 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"apache/echarts"}]},{"type":"text","value":" 项目的 "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/releases","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"release"}]},{"type":"text","value":" 页面可以找到各个版本的链接。点击下载页面下方 Assets 中的 Source code,解压后 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dist"}]},{"type":"text","value":" 目录下的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" 即为包含完整 ECharts 功能的文件。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"从-npm-获取"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%8E-npm-%E8%8E%B7%E5%8F%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"从 npm 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"sh","line-highlights":"","file-name":""},"children":[{"type":"text","value":"npm install echarts --save\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"详见"},{"type":"element","tag":"a","props":{"href":"zh/basics/import"},"children":[{"type":"text","value":"在项目中引入 Apache ECharts"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"从-cdn-获取"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%8E-cdn-%E8%8E%B7%E5%8F%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"从 CDN 获取"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"推荐从 jsDelivr 引用 "},{"type":"element","tag":"a","props":{"href":"https://www.jsdelivr.com/package/npm/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"在线定制"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E7%BA%BF%E5%AE%9A%E5%88%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在线定制"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果只想引入部分模块以减少包体积,可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//builder.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts 在线定制"}]},{"type":"text","value":"功能。"}]}]},"text":"# 获取 Apache ECharts\n\nApache ECharts 提供了多种安装方式,你可以根据项目的实际情况选择以下任意一种方式安装。\n\n- 从 GitHub 获取\n- 从 npm 获取\n- 从 CDN 获取\n- 在线定制\n\n接下来我们将分别介绍这些安装方式,以及下载后的目录结构。\n\n## 安装方式\n\n### 从 GitHub 获取\n\n[apache/echarts](https://github.com/apache/echarts) 项目的 [release](https://github.com/apache/echarts/releases) 页面可以找到各个版本的链接。点击下载页面下方 Assets 中的 Source code,解压后 `dist` 目录下的 `echarts.js` 即为包含完整 ECharts 功能的文件。\n\n### 从 npm 获取\n\n```sh\nnpm install echarts --save\n```\n\n详见[在项目中引入 Apache ECharts](zh/basics/import)。\n\n### 从 CDN 获取\n\n推荐从 jsDelivr 引用 [echarts](https://www.jsdelivr.com/package/npm/echarts)。\n\n### 在线定制\n\n如果只想引入部分模块以减少包体积,可以使用 [ECharts 在线定制](https://echarts.apache.org//builder.html)功能。\n","dir":"/zh/basics","path":"/zh/basics/download","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-07-21T05:35:15.214Z","meta":{"version":0,"revision":0,"created":1627897108674},"$loki":44},{"slug":"resource","toc":[{"id":"官方","depth":2,"text":"官方"},{"id":"社区","depth":2,"text":"社区"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"资源列表"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%B5%84%E6%BA%90%E5%88%97%E8%A1%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"资源列表"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"官方"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%98%E6%96%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"官方"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"API"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"配置项手册"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/index.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"官方实例"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/cheat-sheet.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"术语速查手册"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"社区"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%A4%BE%E5%8C%BA","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"社区"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://www.makeapie.com","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"MakeAPie"}]},{"type":"text","value":":社区用户的作品集"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/awesome-echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"awesome-echarts"}]},{"type":"text","value":":各种 ECharts 相关的资源,包括 AngularJS、Vue 等框架的支持,Java、Python、R 等语言的 ECharts 版本,ECharts VSCode 插件等工具"}]},{"type":"text","value":"\n"}]}]},"text":"# 资源列表\n\n## 官方\n\n- [API](https://echarts.apache.org/api.html)\n- [配置项手册](https://echarts.apache.org/option.html)\n- [官方实例](https://echarts.apache.org/examples/zh/index.html)\n- [术语速查手册](https://echarts.apache.org/cheat-sheet.html)\n\n## 社区\n\n- [MakeAPie](https://www.makeapie.com):社区用户的作品集\n- [awesome-echarts](https://github.com/ecomfe/awesome-echarts):各种 ECharts 相关的资源,包括 AngularJS、Vue 等框架的支持,Java、Python、R 等语言的 ECharts 版本,ECharts VSCode 插件等工具\n","dir":"/zh/basics","path":"/zh/basics/resource","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-07-19T11:11:00.451Z","meta":{"version":0,"revision":0,"created":1627897108677},"$loki":45},{"slug":"canvas-vs-svg","toc":[{"id":"选择哪种渲染器","depth":2,"text":"选择哪种渲染器"},{"id":"如何使用渲染器","depth":2,"text":"如何使用渲染器"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"使用-canvas-或者-svg-渲染"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8-canvas-%E6%88%96%E8%80%85-svg-%E6%B8%B2%E6%9F%93","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用 Canvas 或者 SVG 渲染"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"浏览器端图表库大多会选择 SVG 或者 Canvas 进行渲染。对于绘制图表来说,这两种技术往往是可替换的,效果相近。但是在一些场景中,他们的表现和能力又有一定差异。于是,对它们的选择取舍,就成为了一个一直存在的不易有标准答案的话题。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 从初始一直使用 Canvas 绘制图表。而 "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/releases","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts v4.0"}]},{"type":"text","value":" 发布了 SVG 渲染器,从而提供了一种新的选择。只须在初始化一个图表实例时,设置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"renderer 参数"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'canvas'"}]},{"type":"text","value":" 或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'svg'"}]},{"type":"text","value":" 即可指定渲染器,比较方便。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"SVG 和 Canvas 这两种使用方式差异很大的技术,能够做到同时被透明支持,主要归功于 ECharts 底层库 "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/zrender","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ZRender"}]},{"type":"text","value":" 的抽象和实现,形成可互换的 SVG 渲染器和 Canvas 渲染器。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"选择哪种渲染器"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%80%89%E6%8B%A9%E5%93%AA%E7%A7%8D%E6%B8%B2%E6%9F%93%E5%99%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"选择哪种渲染器"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"一般来说,Canvas 更适合绘制图形元素数量较多(这一般是由数据量大导致)的图表(如热力图、地理坐标系或平行坐标系上的大规模线图或散点图等),也利于实现某些视觉 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples/editor.html?c=lines-bmap-effect","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"特效"}]},{"type":"text","value":"。但是,在不少场景中,SVG 具有重要的优势:它的内存占用更低(这对移动端尤其重要)、并且用户使用浏览器内置的缩放功能时不会模糊。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"选择哪种渲染器,我们可以根据软硬件环境、数据量、功能需求综合考虑。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在软硬件环境较好,数据量不大的场景下,两种渲染器都可以适用,并不需要太多纠结。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在环境较差,出现性能问题需要优化的场景下,可以通过试验来确定使用哪种渲染器。比如有这些经验:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在须要创建很多 ECharts 实例且浏览器易崩溃的情况下(可能是因为 Canvas 数量多导致内存占用超出手机承受能力),可以使用 SVG 渲染器来进行改善。大略得说,如果图表运行在低端安卓机,或者我们在使用一些特定图表如 "},{"type":"element","tag":"a","props":{"href":"https://ecomfe.github.io/echarts-liquidfill/example/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"水球图"}]},{"type":"text","value":" 等,SVG 渲染器可能效果更好。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"数据量较大(经验判断 > 1k)、较多交互时,建议选择 Canvas 渲染器。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们强烈欢迎开发者们"},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/new","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"反馈"}]},{"type":"text","value":"给我们使用的体验和场景,帮助我们更好的做优化。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注:当前某些特殊的渲染依然需要依赖 Canvas:如"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-lines.effect","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"炫光尾迹特效"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples/editor.html?c=heatmap-bmap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"带有混合效果的热力图"}]},{"type":"text","value":"等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"如何使用渲染器"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8%E6%B8%B2%E6%9F%93%E5%99%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"如何使用渲染器"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果是用如下的方式完整引入"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts"}]},{"type":"text","value":",代码中已经包含了 SVG 渲染器和 Canvas 渲染器"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果你是按照 "},{"type":"element","tag":"a","props":{"href":"zh/basics/import"},"children":[{"type":"text","value":"在项目中引入 Apache ECharts"}]},{"type":"text","value":" 一文中的介绍使用按需引入,则需要手动引入需要的渲染器"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\n// 可以根据需要选用只用到的渲染器\nimport { SVGRenderer, CanvasRenderer } from 'echarts/renderers';\n\necharts.use([SVGRenderer, CanvasRenderer]);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"然后,我们就可以在代码中,初始化图表实例时,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html/api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"传入参数"}]},{"type":"text","value":" 选择渲染器类型:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 使用 Canvas 渲染器(默认)\nvar chart = echarts.init(containerDom, null, { renderer: 'canvas' });\n// 等价于:\nvar chart = echarts.init(containerDom);\n\n// 使用 SVG 渲染器\nvar chart = echarts.init(containerDom, null, { renderer: 'svg' });\n"}]}]}]},"text":"# 使用 Canvas 或者 SVG 渲染\n\n浏览器端图表库大多会选择 SVG 或者 Canvas 进行渲染。对于绘制图表来说,这两种技术往往是可替换的,效果相近。但是在一些场景中,他们的表现和能力又有一定差异。于是,对它们的选择取舍,就成为了一个一直存在的不易有标准答案的话题。\n\nECharts 从初始一直使用 Canvas 绘制图表。而 [ECharts v4.0](https://github.com/apache/echarts/releases) 发布了 SVG 渲染器,从而提供了一种新的选择。只须在初始化一个图表实例时,设置 [renderer 参数](https://echarts.apache.org//api.html#echarts.init) 为 `'canvas'` 或 `'svg'` 即可指定渲染器,比较方便。\n\n> SVG 和 Canvas 这两种使用方式差异很大的技术,能够做到同时被透明支持,主要归功于 ECharts 底层库 [ZRender](https://github.com/ecomfe/zrender) 的抽象和实现,形成可互换的 SVG 渲染器和 Canvas 渲染器。\n\n## 选择哪种渲染器\n\n一般来说,Canvas 更适合绘制图形元素数量较多(这一般是由数据量大导致)的图表(如热力图、地理坐标系或平行坐标系上的大规模线图或散点图等),也利于实现某些视觉 [特效](https://echarts.apache.org//examples/editor.html?c=lines-bmap-effect)。但是,在不少场景中,SVG 具有重要的优势:它的内存占用更低(这对移动端尤其重要)、并且用户使用浏览器内置的缩放功能时不会模糊。\n\n选择哪种渲染器,我们可以根据软硬件环境、数据量、功能需求综合考虑。\n\n- 在软硬件环境较好,数据量不大的场景下,两种渲染器都可以适用,并不需要太多纠结。\n- 在环境较差,出现性能问题需要优化的场景下,可以通过试验来确定使用哪种渲染器。比如有这些经验:\n - 在须要创建很多 ECharts 实例且浏览器易崩溃的情况下(可能是因为 Canvas 数量多导致内存占用超出手机承受能力),可以使用 SVG 渲染器来进行改善。大略得说,如果图表运行在低端安卓机,或者我们在使用一些特定图表如 [水球图](https://ecomfe.github.io/echarts-liquidfill/example/) 等,SVG 渲染器可能效果更好。\n - 数据量较大(经验判断 > 1k)、较多交互时,建议选择 Canvas 渲染器。\n\n我们强烈欢迎开发者们[反馈](https://github.com/apache/echarts/issues/new)给我们使用的体验和场景,帮助我们更好的做优化。\n\n注:当前某些特殊的渲染依然需要依赖 Canvas:如[炫光尾迹特效](https://echarts.apache.org/option.html#series-lines.effect)、[带有混合效果的热力图](https://echarts.apache.org//examples/editor.html?c=heatmap-bmap)等。\n\n## 如何使用渲染器\n\n如果是用如下的方式完整引入`echarts`,代码中已经包含了 SVG 渲染器和 Canvas 渲染器\n\n```js\nimport * as echarts from 'echarts';\n```\n\n如果你是按照 [在项目中引入 Apache ECharts](zh/basics/import) 一文中的介绍使用按需引入,则需要手动引入需要的渲染器\n\n```js\nimport * as echarts from 'echarts/core';\n// 可以根据需要选用只用到的渲染器\nimport { SVGRenderer, CanvasRenderer } from 'echarts/renderers';\n\necharts.use([SVGRenderer, CanvasRenderer]);\n```\n\n然后,我们就可以在代码中,初始化图表实例时,[传入参数](https://echarts.apache.org//api.html/api.html#echarts.init) 选择渲染器类型:\n\n```js\n// 使用 Canvas 渲染器(默认)\nvar chart = echarts.init(containerDom, null, { renderer: 'canvas' });\n// 等价于:\nvar chart = echarts.init(containerDom);\n\n// 使用 SVG 渲染器\nvar chart = echarts.init(containerDom, null, { renderer: 'svg' });\n```\n","dir":"/zh/best-practice","path":"/zh/best-practice/canvas-vs-svg","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-07-21T10:01:22.869Z","meta":{"version":0,"revision":0,"created":1627897108687},"$loki":46},{"slug":"aria","toc":[{"id":"整体修改描述","depth":2,"text":"整体修改描述"},{"id":"定制模板描述","depth":2,"text":"定制模板描述"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"无障碍访问"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%97%A0%E9%9A%9C%E7%A2%8D%E8%AE%BF%E9%97%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"无障碍访问"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"W3C 制定了无障碍富互联网应用规范集("},{"type":"element","tag":"a","props":{"href":"https://www.w3.org/WAI/intro/aria","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"WAI-ARIA"}]},{"type":"text","value":",the Accessible Rich Internet Applications Suite),致力于使得网页内容和网页应用能够被更多残障人士访问。ECharts 4.0 遵从这一规范,支持自动根据图表配置项智能生成描述,使得盲人可以在朗读设备的帮助下了解图表内容,让图表可以被更多人群访问。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"默认关闭,需要通过将 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.show"}]},{"type":"text","value":" 设置为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":" 开启。开启后,会根据图表、数据、标题等情况,自动智能生成关于图表的描述,用户也可以通过配置项修改描述。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于配置项:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n aria: {\n show: true\n },\n title: {\n text: '某站点用户访问来源',\n x: 'center'\n },\n series: [\n {\n name: '访问来源',\n type: 'pie',\n data: [\n { value: 335, name: '直接访问' },\n { value: 310, name: '邮件营销' },\n { value: 234, name: '联盟广告' },\n { value: 135, name: '视频广告' },\n { value: 1548, name: '搜索引擎' }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-pie"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"生成的图表 DOM 上,会有一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria-label"}]},{"type":"text","value":" 属性,在朗读设备的帮助下,盲人能够了解图表的内容。其值为:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"null","line-highlights":"","file-name":""},"children":[{"type":"text","value":"这是一个关于“某站点用户访问来源”的图表。图表类型是饼图,表示访问来源。其数据是——直接访问的数据是335,邮件营销的数据是310,联盟广告的数据是234,视频广告的数据是135,搜索引擎的数据是1548。\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"整体修改描述"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B4%E4%BD%93%E4%BF%AE%E6%94%B9%E6%8F%8F%E8%BF%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"整体修改描述"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于有些图表,默认生成的数据点的描述并不足以表现整体的信息。比如下图的散点图,默认生成的描述可以包含数据点的坐标值,但是知道几百几千个点的坐标并不能帮助我们有效地理解图表表达的信息。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这时候,用户可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.description","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":" 配置项指定图表的整体描述。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"定制模板描述"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%9A%E5%88%B6%E6%A8%A1%E6%9D%BF%E6%8F%8F%E8%BF%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"定制模板描述"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了整体性修改描述之外,我们还提供了生成描述的模板,可以方便地进行细粒度的修改。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"生成描述的基本流程为,如果 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.show"}]},{"type":"text","value":" 设置为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":",则生成无障碍访问描述,否则不生成。如果定义了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.description","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":",则将其作为图表的完整描述,否则根据模板拼接生成描述。我们提供了默认的生成描述的算法,仅当生成的描述不太合适时,才需要修改这些模板,甚至使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.description"}]},{"type":"text","value":" 完全覆盖。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用模板拼接时,先根据是否存在标题 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#title.text","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"title.text"}]},{"type":"text","value":" 决定使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.general.withTitle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" 还是 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.general.withoutTitle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.general.withoutTitle"}]},{"type":"text","value":" 作为整体性描述。其中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" 配置项包括模板变量 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'{title}'"}]},{"type":"text","value":",将会被替换成图表标题。也就是说,如果 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria.general.withTitle"}]},{"type":"text","value":" 被设置为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'图表的标题是:{title}。'"}]},{"type":"text","value":",则如果包含标题 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'价格分布图'"}]},{"type":"text","value":",这部分的描述为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'图表的标题是:价格分布图。'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"拼接完标题之后,会依次拼接系列的描述("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.series","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.series"}]},{"type":"text","value":"),和每个系列的数据的描述("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aria.data"}]},{"type":"text","value":")。同样,每个模板都有可能包括模板变量,用以替换实际的值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"完整的描述生成流程请参见 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#aria","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ARIA 文档"}]},{"type":"text","value":"。"}]}]},"text":"# 无障碍访问\n\nW3C 制定了无障碍富互联网应用规范集([WAI-ARIA](https://www.w3.org/WAI/intro/aria),the Accessible Rich Internet Applications Suite),致力于使得网页内容和网页应用能够被更多残障人士访问。ECharts 4.0 遵从这一规范,支持自动根据图表配置项智能生成描述,使得盲人可以在朗读设备的帮助下了解图表内容,让图表可以被更多人群访问。\n\n默认关闭,需要通过将 [aria.show](https://echarts.apache.org/option.html#aria.show) 设置为 `true` 开启。开启后,会根据图表、数据、标题等情况,自动智能生成关于图表的描述,用户也可以通过配置项修改描述。\n\n对于配置项:\n\n```js\noption = {\n aria: {\n show: true\n },\n title: {\n text: '某站点用户访问来源',\n x: 'center'\n },\n series: [\n {\n name: '访问来源',\n type: 'pie',\n data: [\n { value: 335, name: '直接访问' },\n { value: 310, name: '邮件营销' },\n { value: 234, name: '联盟广告' },\n { value: 135, name: '视频广告' },\n { value: 1548, name: '搜索引擎' }\n ]\n }\n ]\n};\n```\n\n<md-example src=\"doc-example/aria-pie\"></md-example>\n\n生成的图表 DOM 上,会有一个 `aria-label` 属性,在朗读设备的帮助下,盲人能够了解图表的内容。其值为:\n\n```\n这是一个关于“某站点用户访问来源”的图表。图表类型是饼图,表示访问来源。其数据是——直接访问的数据是335,邮件营销的数据是310,联盟广告的数据是234,视频广告的数据是135,搜索引擎的数据是1548。\n```\n\n## 整体修改描述\n\n对于有些图表,默认生成的数据点的描述并不足以表现整体的信息。比如下图的散点图,默认生成的描述可以包含数据点的坐标值,但是知道几百几千个点的坐标并不能帮助我们有效地理解图表表达的信息。\n\n这时候,用户可以通过 [aria.description](https://echarts.apache.org/option.html#aria.description) 配置项指定图表的整体描述。\n\n## 定制模板描述\n\n除了整体性修改描述之外,我们还提供了生成描述的模板,可以方便地进行细粒度的修改。\n\n生成描述的基本流程为,如果 [aria.show](https://echarts.apache.org/option.html#aria.show) 设置为 `true`,则生成无障碍访问描述,否则不生成。如果定义了 [aria.description](https://echarts.apache.org/option.html#aria.description),则将其作为图表的完整描述,否则根据模板拼接生成描述。我们提供了默认的生成描述的算法,仅当生成的描述不太合适时,才需要修改这些模板,甚至使用 `aria.description` 完全覆盖。\n\n使用模板拼接时,先根据是否存在标题 [title.text](https://echarts.apache.org/option.html#title.text) 决定使用 [aria.general.withTitle](https://echarts.apache.org/option.html#aria.general.withTitle) 还是 [aria.general.withoutTitle](https://echarts.apache.org/option.html#aria.general.withoutTitle) 作为整体性描述。其中,`aria.general.withTitle` 配置项包括模板变量 `'{title}'`,将会被替换成图表标题。也就是说,如果 `aria.general.withTitle` 被设置为 `'图表的标题是:{title}。'`,则如果包含标题 `'价格分布图'`,这部分的描述为 `'图表的标题是:价格分布图。'`。\n\n拼接完标题之后,会依次拼接系列的描述([aria.series](https://echarts.apache.org/option.html#aria.series)),和每个系列的数据的描述([aria.data](https://echarts.apache.org/option.html#aria.data))。同样,每个模板都有可能包括模板变量,用以替换实际的值。\n\n完整的描述生成流程请参见 [ARIA 文档](https://echarts.apache.org/option.html#aria)。\n","dir":"/zh/best-practice","path":"/zh/best-practice/aria","extension":".md","createdAt":"2021-06-04T12:26:37.923Z","updatedAt":"2021-07-21T09:55:24.870Z","meta":{"version":0,"revision":0,"created":1627897108692},"$loki":47},{"slug":"edit-guide","toc":[{"id":"新增一个-markdown-文件","depth":2,"text":"新增一个 markdown 文件"},{"id":"使用-prettier-来自动格式化代码","depth":2,"text":"使用 prettier 来自动格式化代码"},{"id":"内置变量","depth":2,"text":"内置变量"},{"id":"引用代码","depth":2,"text":"引用代码"},{"id":"基础使用","depth":3,"text":"基础使用"},{"id":"代码推荐写法","depth":3,"text":"代码推荐写法"},{"id":"实时预览和编辑","depth":3,"text":"实时预览和编辑"},{"id":"更多预览布局","depth":3,"text":"更多预览布局"},{"id":"高亮代码行以及添加文件名","depth":3,"text":"高亮代码行以及添加文件名"},{"id":"引用图片","depth":2,"text":"引用图片"},{"id":"设置图片高宽","depth":3,"text":"设置图片高宽"},{"id":"添加示例-iframe","depth":2,"text":"添加示例 iframe"},{"id":"添加配置项链接","depth":2,"text":"添加配置项链接"},{"id":"更多组件使用","depth":2,"text":"更多组件使用"},{"id":"md-alert","depth":3,"text":"md-alert"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"文档编辑指南"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%96%87%E6%A1%A3%E7%BC%96%E8%BE%91%E6%8C%87%E5%8D%97","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"文档编辑指南"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"新增一个-markdown-文件"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%96%B0%E5%A2%9E%E4%B8%80%E4%B8%AA-markdown-%E6%96%87%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"新增一个 markdown 文件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/zh/"}]},{"type":"text","value":"(中文文章)或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/en/"}]},{"type":"text","value":"(英文文章)目录下新增一个 markdown 文件,最多支持三级目录。将路径及标题信息更新在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/zh/posts.yml"}]},{"type":"text","value":" 或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"contents/en/posts.yml"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"markdown 文件名称小写。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"使用-prettier-来自动格式化代码"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8-prettier-%E6%9D%A5%E8%87%AA%E5%8A%A8%E6%A0%BC%E5%BC%8F%E5%8C%96%E4%BB%A3%E7%A0%81","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用 prettier 来自动格式化代码"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在开始之前,我们推荐安装"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"prettier"}]},{"type":"text","value":"的 "},{"type":"element","tag":"a","props":{"href":"https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"VSCode 插件"}]},{"type":"text","value":",该插件可以在你保存的时候自动帮你格式化代码。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果你觉得自动的格式化破坏了你的代码块,你可以在在代码块外面加上下面代码阻止"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"prettier"}]},{"type":"text","value":"格式化该部分代码"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<!-- prettier-ignore-start -->\n<!-- prettier-ignore-end -->\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果你发现有的代码块并没有被格式化,请先检查该代码是否存在语法上的错误。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"内置变量"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%86%85%E7%BD%AE%E5%8F%98%E9%87%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"内置变量"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"optionPath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mainSitePath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"exampleViewPath"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"exampleEditorPath"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用方式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"null","line-highlights":"","file-name":""},"children":[{"type":"text","value":"${xxxxx}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"引用代码"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%95%E7%94%A8%E4%BB%A3%E7%A0%81","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"引用代码"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"基础使用"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9F%BA%E7%A1%80%E4%BD%BF%E7%94%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础使用"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js\noption = {\n series: [{\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"代码推荐写法"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%A3%E7%A0%81%E6%8E%A8%E8%8D%90%E5%86%99%E6%B3%95","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"代码推荐写法"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"为了可以让工具帮助我们对代码进行格式化,我们应该尽量避免有语法问题的写法。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"比如注释 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"..."}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar'\n // ...\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"实时预览和编辑"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%9E%E6%97%B6%E9%A2%84%E8%A7%88%E5%92%8C%E7%BC%96%E8%BE%91","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"实时预览和编辑"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"目前只支持对 Option 代码的预览"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"更多预览布局"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9B%B4%E5%A4%9A%E9%A2%84%E8%A7%88%E5%B8%83%E5%B1%80","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"更多预览布局"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"左右"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%B7%A6%E5%8F%B3","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"左右"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-lr]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"右左"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8F%B3%E5%B7%A6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"右左"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-rl]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"rl"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"下上"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%8B%E4%B8%8A","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"下上"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js [live-bt]\noption = {\n ...\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"bt"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"高亮代码行以及添加文件名"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%AB%98%E4%BA%AE%E4%BB%A3%E7%A0%81%E8%A1%8C%E4%BB%A5%E5%8F%8A%E6%B7%BB%E5%8A%A0%E6%96%87%E4%BB%B6%E5%90%8D","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"高亮代码行以及添加文件名"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用:"}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n"}]}]},{"type":"text","value":"\n"},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"效果:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"1,3-5","file-name":"option.js"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"引用图片"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%95%E7%94%A8%E5%9B%BE%E7%89%87","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"引用图片"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图片实际存放地址在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"static/images/"}]},{"type":"text","value":" 下。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"![图片说明](images/demo.png)\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"设置图片高宽"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%AE%BE%E7%BD%AE%E5%9B%BE%E7%89%87%E9%AB%98%E5%AE%BD","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"设置图片高宽"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于当前页面的临时样式,可以直接写 html:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<img src=\"images/demo.png\" style=\"width: 50px\" />\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"添加示例-iframe"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B7%BB%E5%8A%A0%E7%A4%BA%E4%BE%8B-iframe","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"添加示例 iframe"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"src"}]},{"type":"text","value":"为 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=line-simple","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://echarts.apache.org/examples/zh/editor.html?c=line-simple"}]},{"type":"text","value":" 地址中"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"?c="}]},{"type":"text","value":"后面这一串"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"效果:\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/getting-started","width":"100%","height":300},"children":[]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"添加配置项链接"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B7%BB%E5%8A%A0%E9%85%8D%E7%BD%AE%E9%A1%B9%E9%93%BE%E6%8E%A5","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"添加配置项链接"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-option link=\"series-bar.itemStyle.color\"></md-option>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"效果:\n"},{"type":"element","tag":"md-option","props":{"link":"series-bar.itemStyle.color"},"children":[]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"更多组件使用"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9B%B4%E5%A4%9A%E7%BB%84%E4%BB%B6%E4%BD%BF%E7%94%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"更多组件使用"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"文档支持使用全局注册的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"markdown"}]},{"type":"text","value":"组件,除了刚才介绍的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"md-example"}]},{"type":"text","value":"组件,还有下面几种组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"md-alert"},"children":[{"type":"element","tag":"a","props":{"href":"#md-alert","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"md-alert"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"提示组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"info"},"children":[{"type":"text","value":"\nThis is an info alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"success"},"children":[{"type":"text","value":"\nThis is a success alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"warning"},"children":[{"type":"text","value":"\nThis is a warning alert.\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"markdown","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<md-alert type=\"warning\">\nThis is a danger alert.\n</md-alert>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-alert","props":{"type":"danger"},"children":[{"type":"text","value":"\nThis is a danger alert.\n"}]}]},"text":"# 文档编辑指南\n\n## 新增一个 markdown 文件\n\n在 `contents/zh/`(中文文章)或 `contents/en/`(英文文章)目录下新增一个 markdown 文件,最多支持三级目录。将路径及标题信息更新在 `contents/zh/posts.yml` 或 `contents/en/posts.yml`。\n\nmarkdown 文件名称小写。\n\n## 使用 prettier 来自动格式化代码\n\n在开始之前,我们推荐安装`prettier`的 [VSCode 插件](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode),该插件可以在你保存的时候自动帮你格式化代码。\n\n如果你觉得自动的格式化破坏了你的代码块,你可以在在代码块外面加上下面代码阻止`prettier`格式化该部分代码\n\n```markdown\n<!-- prettier-ignore-start -->\n<!-- prettier-ignore-end -->\n```\n\n如果你发现有的代码块并没有被格式化,请先检查该代码是否存在语法上的错误。\n\n## 内置变量\n\n- `optionPath`\n- `mainSitePath`\n- `exampleViewPath`\n- `exampleEditorPath`\n\n使用方式:\n\n```\n${xxxxx}\n```\n\n## 引用代码\n\n### 基础使用\n\n<!-- prettier-ignore-start -->\n```markdown\n```js\noption = {\n series: [{\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }]\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n```js\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### 代码推荐写法\n\n为了可以让工具帮助我们对代码进行格式化,我们应该尽量避免有语法问题的写法。\n\n比如注释 `...`\n\n```js\noption = {\n series: [\n {\n type: 'bar'\n // ...\n }\n ]\n};\n```\n\n### 实时预览和编辑\n\n> 目前只支持对 Option 代码的预览\n\n<!-- prettier-ignore-start -->\n```markdown\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### 更多预览布局\n\n#### 左右\n\n<!-- prettier-ignore-start -->\n```markdown\n```js [live-lr]\noption = {\n ...\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n```js [live-lr]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n#### 右左\n\n<!-- prettier-ignore-start -->\n```markdown\n```js [live-rl]\noption = {\n ...\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n```js [live-rl]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n#### 下上\n\n<!-- prettier-ignore-start -->\n```markdown\n```js [live-bt]\noption = {\n ...\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n```js [live-bt]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n### 高亮代码行以及添加文件名\n\n使用:\n\n<!-- prettier-ignore-start -->\n```markdown\n```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n\\```\n```\n<!-- prettier-ignore-end -->\n\n效果:\n\n```js{1,3-5}[option.js]\noption = {\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n## 引用图片\n\n图片实际存放地址在 `static/images/` 下。\n\n```markdown\n![图片说明](images/demo.png)\n```\n\n### 设置图片高宽\n\n对于当前页面的临时样式,可以直接写 html:\n\n```markdown\n<img src=\"images/demo.png\" style=\"width: 50px\" />\n```\n\n## 添加示例 iframe\n\n`src`为 https://echarts.apache.org/examples/zh/editor.html?c=line-simple 地址中`?c=`后面这一串\n\n使用:\n\n```markdown\n<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n```\n\n效果:\n<md-example src=\"doc-example/getting-started\" width=\"100%\" height=\"300\"></md-example>\n\n## 添加配置项链接\n\n使用:\n\n```markdown\n<md-option link=\"series-bar.itemStyle.color\"></md-option>\n```\n\n效果:\n<md-option link=\"series-bar.itemStyle.color\"></md-option>\n\n## 更多组件使用\n\n文档支持使用全局注册的`markdown`组件,除了刚才介绍的`md-example`组件,还有下面几种组件\n\n### md-alert\n\n提示组件\n\n```markdown\n<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n```\n\n<md-alert type=\"info\">\nThis is an info alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n```\n\n<md-alert type=\"success\">\nThis is a success alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n```\n\n<md-alert type=\"warning\">\nThis is a warning alert.\n</md-alert>\n\n```markdown\n<md-alert type=\"warning\">\nThis is a danger alert.\n</md-alert>\n```\n\n<md-alert type=\"danger\">\nThis is a danger alert.\n</md-alert>\n","dir":"/zh/meta","path":"/zh/meta/edit-guide","extension":".md","createdAt":"2021-06-04T12:26:37.935Z","updatedAt":"2021-07-21T09:50:31.746Z","meta":{"version":0,"revision":0,"created":1627897108711},"$loki":48},{"slug":"chart-size","toc":[{"id":"初始化","depth":2,"text":"初始化"},{"id":"在-html-中定义有宽度和高度的父容器(推荐)","depth":3,"text":"在 HTML 中定义有宽度和高度的父容器(推荐)"},{"id":"指定图表的大小","depth":3,"text":"指定图表的大小"},{"id":"响应容器大小的变化","depth":2,"text":"响应容器大小的变化"},{"id":"监听图表容器的大小并改变图表大小","depth":3,"text":"监听图表容器的大小并改变图表大小"},{"id":"为图表设置特定的大小","depth":3,"text":"为图表设置特定的大小"},{"id":"容器节点被销毁以及被重建时","depth":3,"text":"容器节点被销毁以及被重建时"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"图表容器及大小"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9B%BE%E8%A1%A8%E5%AE%B9%E5%99%A8%E5%8F%8A%E5%A4%A7%E5%B0%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图表容器及大小"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在"},{"type":"element","tag":"a","props":{"href":"zh/get-started"},"children":[{"type":"text","value":"快速上手"}]},{"type":"text","value":"中,我们介绍了初始化 ECharts 的接口 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.init"}]}]},{"type":"text","value":"。"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"API 文档"}]},{"type":"text","value":"中详细介绍了参数的具体含义,建议理解后再阅读本文。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面,我们就常见的几种使用场景,介绍如何初始化一个图表以及改变其大小。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"初始化"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%9D%E5%A7%8B%E5%8C%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"初始化"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"在-html-中定义有宽度和高度的父容器(推荐)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8-html-%E4%B8%AD%E5%AE%9A%E4%B9%89%E6%9C%89%E5%AE%BD%E5%BA%A6%E5%92%8C%E9%AB%98%E5%BA%A6%E7%9A%84%E7%88%B6%E5%AE%B9%E5%99%A8%EF%BC%88%E6%8E%A8%E8%8D%90%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在 HTML 中定义有宽度和高度的父容器(推荐)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"通常来说,需要在 HTML 中先定义一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<div>"}]},{"type":"text","value":" 节点,并且通过 CSS 使得该节点具有宽度和高度。初始化的时候,传入该节点,图表的大小默认即为该节点的大小,除非声明了 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opts.width"}]},{"type":"text","value":" 或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opts.height"}]},{"type":"text","value":" 将其覆盖。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"需要注意的是,使用这种方法在调用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":" 时需保证容器已经有宽度和高度了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"指定图表的大小"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8C%87%E5%AE%9A%E5%9B%BE%E8%A1%A8%E7%9A%84%E5%A4%A7%E5%B0%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"指定图表的大小"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果图表容器不存在宽度和高度,或者,你希望图表宽度和高度不等于容器大小,也可以在初始化的时候指定大小。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'), null, {\n width: 600,\n height: 400\n });\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"响应容器大小的变化"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%93%8D%E5%BA%94%E5%AE%B9%E5%99%A8%E5%A4%A7%E5%B0%8F%E7%9A%84%E5%8F%98%E5%8C%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"响应容器大小的变化"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"监听图表容器的大小并改变图表大小"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%9B%91%E5%90%AC%E5%9B%BE%E8%A1%A8%E5%AE%B9%E5%99%A8%E7%9A%84%E5%A4%A7%E5%B0%8F%E5%B9%B6%E6%94%B9%E5%8F%98%E5%9B%BE%E8%A1%A8%E5%A4%A7%E5%B0%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"监听图表容器的大小并改变图表大小"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在有些场景下,我们希望当容器大小改变时,图表的大小也相应地改变。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"比如,图表容器是一个高度为 300px、宽度为页面 100% 的节点,你希望在浏览器宽度改变的时候,始终保持图表宽度是页面的 100%。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这种情况下,可以监听页面的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"window.onresize"}]},{"type":"text","value":" 事件获取浏览器大小改变的事件,然后调用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.resize","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.resize"}]}]},{"type":"text","value":" 改变图表的大小。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"html","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<style>\n #main,\n html,\n body {\n width: 100%;\n }\n #main {\n height: 400px;\n }\n</style>\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n window.onresize = function() {\n myChart.resize();\n };\n</script>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"为图表设置特定的大小"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%BA%E5%9B%BE%E8%A1%A8%E8%AE%BE%E7%BD%AE%E7%89%B9%E5%AE%9A%E7%9A%84%E5%A4%A7%E5%B0%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"为图表设置特定的大小"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了直接调用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"resize()"}]},{"type":"text","value":" 不含参数的形式之外,还可以指定宽度和高度,实现图表大小不等于容器大小的效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.resize({\n width: 800,\n height: 400\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"小贴士:"}]},{"type":"text","value":" 阅读 API 文档的时候要留意接口的定义方式,这一接口有时会被误认为是 myCharts.resize(800, 400) 的形式,但其实不存在这样的调用方式。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"容器节点被销毁以及被重建时"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%B9%E5%99%A8%E8%8A%82%E7%82%B9%E8%A2%AB%E9%94%80%E6%AF%81%E4%BB%A5%E5%8F%8A%E8%A2%AB%E9%87%8D%E5%BB%BA%E6%97%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"容器节点被销毁以及被重建时"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"假设页面中存在多个标签页,每个标签页都包含一些图表。当选中一个标签页的时候,其他标签页的内容在 DOM 中被移除了。这样,当用户再选中这些标签页的时候,就会发现图表“不见”了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本质上,这是由于图表的容器节点被移除导致的。即使之后该节点被重新添加,图表所在的节点也已经不存在了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"正确的做法是,在图表容器被销毁之后,调用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.dispose","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.dispose"}]}]},{"type":"text","value":" 销毁实例,在图表容器重新被添加后再次调用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echarts.init","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts.init"}]},{"type":"text","value":" 初始化。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"小贴士:"}]},{"type":"text","value":" 在容器节点被销毁时,总是应调用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.dispose","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echartsInstance.dispose"}]}]},{"type":"text","value":" 以销毁实例释放资源,避免内存泄漏。"}]},{"type":"text","value":"\n"}]}]},"text":"# 图表容器及大小\n\n在[快速上手](zh/get-started)中,我们介绍了初始化 ECharts 的接口 [`echarts.init`](https://echarts.apache.org//api.html#echarts.init)。[API 文档](https://echarts.apache.org//api.html#echarts.init)中详细介绍了参数的具体含义,建议理解后再阅读本文。\n\n下面,我们就常见的几种使用场景,介绍如何初始化一个图表以及改变其大小。\n\n## 初始化\n\n### 在 HTML 中定义有宽度和高度的父容器(推荐)\n\n通常来说,需要在 HTML 中先定义一个 `<div>` 节点,并且通过 CSS 使得该节点具有宽度和高度。初始化的时候,传入该节点,图表的大小默认即为该节点的大小,除非声明了 `opts.width` 或 `opts.height` 将其覆盖。\n\n```html\n<div id=\"main\" style=\"width: 600px;height:400px;\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n</script>\n```\n\n需要注意的是,使用这种方法在调用 `echarts.init` 时需保证容器已经有宽度和高度了。\n\n### 指定图表的大小\n\n如果图表容器不存在宽度和高度,或者,你希望图表宽度和高度不等于容器大小,也可以在初始化的时候指定大小。\n\n```html\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'), null, {\n width: 600,\n height: 400\n });\n</script>\n```\n\n## 响应容器大小的变化\n\n### 监听图表容器的大小并改变图表大小\n\n在有些场景下,我们希望当容器大小改变时,图表的大小也相应地改变。\n\n比如,图表容器是一个高度为 300px、宽度为页面 100% 的节点,你希望在浏览器宽度改变的时候,始终保持图表宽度是页面的 100%。\n\n这种情况下,可以监听页面的 `window.onresize` 事件获取浏览器大小改变的事件,然后调用 [`echartsInstance.resize`](https://echarts.apache.org/api.html#echartsInstance.resize) 改变图表的大小。\n\n```html\n<style>\n #main,\n html,\n body {\n width: 100%;\n }\n #main {\n height: 400px;\n }\n</style>\n<div id=\"main\"></div>\n<script type=\"text/javascript\">\n var myChart = echarts.init(document.getElementById('main'));\n window.onresize = function() {\n myChart.resize();\n };\n</script>\n```\n\n### 为图表设置特定的大小\n\n除了直接调用 `resize()` 不含参数的形式之外,还可以指定宽度和高度,实现图表大小不等于容器大小的效果。\n\n```js\nmyChart.resize({\n width: 800,\n height: 400\n});\n```\n\n> **小贴士:** 阅读 API 文档的时候要留意接口的定义方式,这一接口有时会被误认为是 myCharts.resize(800, 400) 的形式,但其实不存在这样的调用方式。\n\n### 容器节点被销毁以及被重建时\n\n假设页面中存在多个标签页,每个标签页都包含一些图表。当选中一个标签页的时候,其他标签页的内容在 DOM 中被移除了。这样,当用户再选中这些标签页的时候,就会发现图表“不见”了。\n\n本质上,这是由于图表的容器节点被移除导致的。即使之后该节点被重新添加,图表所在的节点也已经不存在了。\n\n正确的做法是,在图表容器被销毁之后,调用 [`echartsInstance.dispose`](https://echarts.apache.org/api.html#echartsInstance.dispose) 销毁实例,在图表容器重新被添加后再次调用 [echarts.init](https://echarts.apache.org//api.html#echarts.init) 初始化。\n\n> **小贴士:** 在容器节点被销毁时,总是应调用 [`echartsInstance.dispose`](https://echarts.apache.org/api.html#echartsInstance.dispose) 以销毁实例释放资源,避免内存泄漏。\n","dir":"/zh/concepts","path":"/zh/concepts/chart-size","extension":".md","createdAt":"2021-06-04T12:26:37.933Z","updatedAt":"2021-07-24T08:31:59.778Z","meta":{"version":0,"revision":0,"created":1627897108730},"$loki":49},{"slug":"axis","toc":[{"id":"x-轴、y-轴","depth":2,"text":"x 轴、y 轴"},{"id":"轴线","depth":2,"text":"轴线"},{"id":"刻度","depth":2,"text":"刻度"},{"id":"刻度标签","depth":2,"text":"刻度标签"},{"id":"示例","depth":2,"text":"示例"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"坐标轴"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9D%90%E6%A0%87%E8%BD%B4","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"坐标轴"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"直角坐标系中的 x/y 轴。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"x-轴、y-轴"},"children":[{"type":"element","tag":"a","props":{"href":"#x-%E8%BD%B4%E3%80%81y-%E8%BD%B4","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"x 轴、y 轴"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"x 轴和 y 轴都由轴线、刻度、刻度标签、轴标题四个部分组成。部分图表中还会有网格线来帮助查看和计算数据"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/axis/charts_axis_img02.jpg"},"children":[]},{"type":"text","value":"\n\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"普通的二维数据坐标系都有 x 轴和 y 轴,通常情况下,x 轴显示在图表的底部,y 轴显示在左侧,一般配置如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n // ...\n },\n yAxis: {\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"x 轴常用来标示数据的维度,维度一般用来指数据的类别,是观察数据的角度,例如“销售时间” “销售地点” “产品名称”等。y 轴常常用来标示数据的数值,数值是用来具体考察某一类数据的数量值,也是我们需要分析的指标,例如“销售数量”和“销售金额”等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: {\n type: 'value',\n name: '销售数量'\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"当 x 轴(水平坐标轴)跨度很大,可以采用才区域缩放方式灵活显示数据内容。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: {\n type: 'value',\n name: '销售数量'\n // ...\n },\n dataZoom: [\n // ...\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在二维数据中,轴也可以有多个。ECharts 中一般情况下单个 grid 组件最多只能放两个 x/y 轴,多于两个 x/y 轴需要通过配置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.offset","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"offset"}]},{"type":"text","value":" 属性防止同个位置多个轴的重叠。两个 x 轴显示在上下,两个 y 轴显示在左右两侧。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: [\n {\n type: 'value',\n name: '销售数量'\n // ...\n },\n {\n type: 'value',\n name: '销售金额'\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"轴线"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%BD%B4%E7%BA%BF","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"轴线"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 提供了轴线 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisLine","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisLine"}]},{"type":"text","value":" 相关的配置,我们可以根据实际情况调整,例如轴线两端的箭头,轴线的样式等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"刻度"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%BB%E5%BA%A6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"刻度"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 提供了轴线 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisTick","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisTick"}]},{"type":"text","value":" 相关的配置,我们可以根据实际情况调整,例如刻度线的长度,样式等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"刻度标签"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%BB%E5%BA%A6%E6%A0%87%E7%AD%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"刻度标签"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 提供了轴线 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis.axisLabel","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axisLabel"}]},{"type":"text","value":" 相关的配置,我们可以根据实际情况调整,例如文字对齐方式,自定义刻度标签内容等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n axisLabel: {\n formatter: '{value} kg',\n align: 'center'\n // ...\n }\n // ...\n },\n yAxis: {\n axisLabel: {\n formatter: '{value} 元',\n align: 'center'\n // ...\n }\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"示例"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%A4%BA%E4%BE%8B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"示例"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图左侧的 y 轴代表东京月平均气温,右侧的 y 轴表示东京降水量,x 轴表示时间。两组 y 轴在一起,反映了平均气温和降水量间的趋势关系。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n tooltip: {\n trigger: 'axis',\n axisPointer: { type: 'cross' }\n },\n legend: {},\n xAxis: [\n {\n type: 'category',\n axisTick: {\n alignWithLabel: true\n },\n data: [\n '1月',\n '2月',\n '3月',\n '4月',\n '5月',\n '6月',\n '7月',\n '8月',\n '9月',\n '10月',\n '11月',\n '12月'\n ]\n }\n ],\n yAxis: [\n {\n type: 'value',\n name: '降水量',\n min: 0,\n max: 250,\n position: 'right',\n axisLabel: {\n formatter: '{value} ml'\n }\n },\n {\n type: 'value',\n name: '温度',\n min: 0,\n max: 25,\n position: 'left',\n axisLabel: {\n formatter: '{value} °C'\n }\n }\n ],\n series: [\n {\n name: '降水量',\n type: 'bar',\n yAxisIndex: 0,\n data: [6, 32, 70, 86, 68.7, 100.7, 125.6, 112.2, 78.7, 48.8, 36.0, 19.3]\n },\n {\n name: '温度',\n type: 'line',\n smooth: true,\n yAxisIndex: 1,\n data: [\n 6.0,\n 10.2,\n 10.3,\n 11.5,\n 10.3,\n 13.2,\n 14.3,\n 16.4,\n 18.0,\n 16.5,\n 12.0,\n 5.2\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这里简要介绍了坐标轴相关的常用配置项及用法,更多关于坐标轴配置项及用法请移步"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#xAxis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"官网"}]},{"type":"text","value":"。"}]}]},"text":"# 坐标轴\n\n直角坐标系中的 x/y 轴。\n\n## x 轴、y 轴\n\nx 轴和 y 轴都由轴线、刻度、刻度标签、轴标题四个部分组成。部分图表中还会有网格线来帮助查看和计算数据\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/axis/charts_axis_img02.jpg\">\n</img>\n\n普通的二维数据坐标系都有 x 轴和 y 轴,通常情况下,x 轴显示在图表的底部,y 轴显示在左侧,一般配置如下:\n\n```js\noption = {\n xAxis: {\n // ...\n },\n yAxis: {\n // ...\n }\n};\n```\n\nx 轴常用来标示数据的维度,维度一般用来指数据的类别,是观察数据的角度,例如“销售时间” “销售地点” “产品名称”等。y 轴常常用来标示数据的数值,数值是用来具体考察某一类数据的数量值,也是我们需要分析的指标,例如“销售数量”和“销售金额”等。\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: {\n type: 'value',\n name: '销售数量'\n // ...\n }\n // ...\n};\n```\n\n当 x 轴(水平坐标轴)跨度很大,可以采用才区域缩放方式灵活显示数据内容。\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: {\n type: 'value',\n name: '销售数量'\n // ...\n },\n dataZoom: [\n // ...\n ]\n // ...\n};\n```\n\n在二维数据中,轴也可以有多个。ECharts 中一般情况下单个 grid 组件最多只能放两个 x/y 轴,多于两个 x/y 轴需要通过配置 [offset](https://echarts.apache.org/option.html#xAxis.offset) 属性防止同个位置多个轴的重叠。两个 x 轴显示在上下,两个 y 轴显示在左右两侧。\n\n```js\noption = {\n xAxis: {\n type: 'time',\n name: '销售时间'\n // ...\n },\n yAxis: [\n {\n type: 'value',\n name: '销售数量'\n // ...\n },\n {\n type: 'value',\n name: '销售金额'\n // ...\n }\n ]\n // ...\n};\n```\n\n## 轴线\n\nECharts 提供了轴线 [axisLine](https://echarts.apache.org/option.html#xAxis.axisLine) 相关的配置,我们可以根据实际情况调整,例如轴线两端的箭头,轴线的样式等。\n\n```js\noption = {\n xAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisLine: {\n symbol: 'arrow',\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n```\n\n## 刻度\n\nECharts 提供了轴线 [axisTick](https://echarts.apache.org/option.html#xAxis.axisTick) 相关的配置,我们可以根据实际情况调整,例如刻度线的长度,样式等。\n\n```js\noption = {\n xAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n // ...\n },\n yAxis: {\n axisTick: {\n length: 6,\n lineStyle: {\n type: 'dashed'\n // ...\n }\n }\n }\n // ...\n};\n```\n\n## 刻度标签\n\nECharts 提供了轴线 [axisLabel](https://echarts.apache.org/option.html#xAxis.axisLabel) 相关的配置,我们可以根据实际情况调整,例如文字对齐方式,自定义刻度标签内容等。\n\n```js\noption = {\n xAxis: {\n axisLabel: {\n formatter: '{value} kg',\n align: 'center'\n // ...\n }\n // ...\n },\n yAxis: {\n axisLabel: {\n formatter: '{value} 元',\n align: 'center'\n // ...\n }\n }\n // ...\n};\n```\n\n## 示例\n\n图左侧的 y 轴代表东京月平均气温,右侧的 y 轴表示东京降水量,x 轴表示时间。两组 y 轴在一起,反映了平均气温和降水量间的趋势关系。\n\n```js [live]\noption = {\n tooltip: {\n trigger: 'axis',\n axisPointer: { type: 'cross' }\n },\n legend: {},\n xAxis: [\n {\n type: 'category',\n axisTick: {\n alignWithLabel: true\n },\n data: [\n '1月',\n '2月',\n '3月',\n '4月',\n '5月',\n '6月',\n '7月',\n '8月',\n '9月',\n '10月',\n '11月',\n '12月'\n ]\n }\n ],\n yAxis: [\n {\n type: 'value',\n name: '降水量',\n min: 0,\n max: 250,\n position: 'right',\n axisLabel: {\n formatter: '{value} ml'\n }\n },\n {\n type: 'value',\n name: '温度',\n min: 0,\n max: 25,\n position: 'left',\n axisLabel: {\n formatter: '{value} °C'\n }\n }\n ],\n series: [\n {\n name: '降水量',\n type: 'bar',\n yAxisIndex: 0,\n data: [6, 32, 70, 86, 68.7, 100.7, 125.6, 112.2, 78.7, 48.8, 36.0, 19.3]\n },\n {\n name: '温度',\n type: 'line',\n smooth: true,\n yAxisIndex: 1,\n data: [\n 6.0,\n 10.2,\n 10.3,\n 11.5,\n 10.3,\n 13.2,\n 14.3,\n 16.4,\n 18.0,\n 16.5,\n 12.0,\n 5.2\n ]\n }\n ]\n};\n```\n\n这里简要介绍了坐标轴相关的常用配置项及用法,更多关于坐标轴配置项及用法请移步[官网](https://echarts.apache.org/option.html#xAxis)。\n","dir":"/zh/concepts","path":"/zh/concepts/axis","extension":".md","createdAt":"2021-06-04T12:26:37.933Z","updatedAt":"2021-07-19T11:24:02.724Z","meta":{"version":0,"revision":0,"created":1627897108750},"$loki":50},{"slug":"writing","toc":[{"id":"重点","depth":2,"text":"重点"},{"id":"其他注意事项","depth":2,"text":"其他注意事项"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"写作风格规范"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%86%99%E4%BD%9C%E9%A3%8E%E6%A0%BC%E8%A7%84%E8%8C%83","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"写作风格规范"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本文的主要目的是为了统一该项目的写作风格。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"语法主要参照"},{"type":"element","tag":"a","props":{"href":"https://github.com/ruanyf/document-style-guide","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"中文技术文档的写作规范"}]},{"type":"text","value":"。请在写作前先阅读一遍该语法。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"重点"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%87%8D%E7%82%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"重点"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"段落的句子语气要使用陈述和肯定语气,避免使用感叹语气。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"句子内部的并列词,应该用全角顿号(、) 分隔,而不用逗号,即使并列词是英语也是如此。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"错误:我最欣赏的科技公司有 Google, Facebook, 腾讯, 阿里和百度等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"正确:我最欣赏的科技公司有 Google、Facebook、腾讯、阿里和百度等。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"其他注意事项"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%85%B6%E4%BB%96%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"其他注意事项"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了上述规范之外,还需要注意:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"写作时,应尽可能使用正式的书面语言,避免较为随意的个人博客风格。"}]},{"type":"text","value":"\n"}]}]},"text":"# 写作风格规范\n\n本文的主要目的是为了统一该项目的写作风格。\n\n语法主要参照[中文技术文档的写作规范](https://github.com/ruanyf/document-style-guide)。请在写作前先阅读一遍该语法。\n\n## 重点\n\n> 段落的句子语气要使用陈述和肯定语气,避免使用感叹语气。\n\n> 句子内部的并列词,应该用全角顿号(、) 分隔,而不用逗号,即使并列词是英语也是如此。\n>\n> 错误:我最欣赏的科技公司有 Google, Facebook, 腾讯, 阿里和百度等。\n>\n> 正确:我最欣赏的科技公司有 Google、Facebook、腾讯、阿里和百度等。\n\n## 其他注意事项\n\n除了上述规范之外,还需要注意:\n\n- 写作时,应尽可能使用正式的书面语言,避免较为随意的个人博客风格。\n","dir":"/zh/meta","path":"/zh/meta/writing","extension":".md","createdAt":"2021-06-04T12:26:37.935Z","updatedAt":"2021-06-04T12:26:37.935Z","meta":{"version":0,"revision":0,"created":1627897108757},"$loki":51},{"slug":"event","toc":[{"id":"鼠标事件的处理","depth":2,"text":"鼠标事件的处理"},{"id":"组件交互的行为事件","depth":2,"text":"组件交互的行为事件"},{"id":"代码触发-echarts-中组件的行为","depth":2,"text":"代码触发 ECharts 中组件的行为"},{"id":"监听空白处的事件","depth":2,"text":"监听“空白处”的事件"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"事件与行为"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BA%8B%E4%BB%B6%E4%B8%8E%E8%A1%8C%E4%B8%BA","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"事件与行为"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 Apache ECharts 的图表中用户的操作将会触发相应的事件。开发者可以监听这些事件,然后通过回调函数做相应的处理,比如跳转到一个地址,或者弹出对话框,或者做数据下钻等等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 中的事件名称对应 DOM 事件名称,均为小写的字符串,如下是一个绑定点击操作的示例。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(params) {\n // 控制台打印数据的名称\n console.log(params.name);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 中事件分为两种类型,一种是用户鼠标操作点击,或者 hover 图表的图形时触发的事件,还有一种是用户在使用可以交互的组件后触发的行为事件,例如在切换图例开关时触发的 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#events.legendselectchanged","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'legendselectchanged'"}]},{"type":"text","value":" 事件(这里需要注意切换图例开关是不会触发 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'legendselected'"}]},{"type":"text","value":" 事件的),数据区域缩放时触发的 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#events.legendselectchanged","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'datazoom'"}]},{"type":"text","value":" 事件等等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"鼠标事件的处理"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%BC%A0%E6%A0%87%E4%BA%8B%E4%BB%B6%E7%9A%84%E5%A4%84%E7%90%86","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"鼠标事件的处理"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 支持常规的鼠标事件类型,包括 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'click'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'dblclick'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mousedown'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mousemove'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseup'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseover'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'mouseout'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'globalout'"}]},{"type":"text","value":"、 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'contextmenu'"}]},{"type":"text","value":" 事件。下面先来看一个简单的点击柱状图后打开相应的百度搜索页面的示例。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"// 基于准备好的dom,初始化ECharts实例\n// var myChart = echarts.init(document.getElementById('main'));\n\n// 指定图表的配置项和数据\nvar option = {\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n};\n// 使用刚指定的配置项和数据显示图表。\nmyChart.setOption(option);\n// 处理点击事件并且跳转到相应的百度搜索页面\nmyChart.on('click', function(params) {\n window.open('https://www.baidu.com/s?wd=' + encodeURIComponent(params.name));\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"所有的鼠标事件包含参数 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"params"}]},{"type":"text","value":",这是一个包含点击图形的数据信息的对象,如下格式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type EventParams = {\n // 当前点击的图形元素所属的组件名称,\n // 其值如 'series'、'markLine'、'markPoint'、'timeLine' 等。\n componentType: string;\n // 系列类型。值可能为:'line'、'bar'、'pie' 等。当 componentType 为 'series' 时有意义。\n seriesType: string;\n // 系列在传入的 option.series 中的 index。当 componentType 为 'series' 时有意义。\n seriesIndex: number;\n // 系列名称。当 componentType 为 'series' 时有意义。\n seriesName: string;\n // 数据名,类目名\n name: string;\n // 数据在传入的 data 数组中的 index\n dataIndex: number;\n // 传入的原始数据项\n data: Object;\n // sankey、graph 等图表同时含有 nodeData 和 edgeData 两种 data,\n // dataType 的值会是 'node' 或者 'edge',表示当前点击在 node 还是 edge 上。\n // 其他大部分图表中只有一种 data,dataType 无意义。\n dataType: string;\n // 传入的数据值\n value: number | Array;\n // 数据图形的颜色。当 componentType 为 'series' 时有意义。\n color: string;\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如何区分鼠标点击到了哪里:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(params) {\n if (params.componentType === 'markPoint') {\n // 点击到了 markPoint 上\n if (params.seriesIndex === 5) {\n // 点击到了 index 为 5 的 series 的 markPoint 上。\n }\n } else if (params.componentType === 'series') {\n if (params.seriesType === 'graph') {\n if (params.dataType === 'edge') {\n // 点击到了 graph 的 edge(边)上。\n } else {\n // 点击到了 graph 的 node(节点)上。\n }\n }\n }\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"query"}]},{"type":"text","value":" 只对指定的组件的图形元素的触发回调:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.on(eventName, query, handler);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"query"}]},{"type":"text","value":" 可为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"string"}]},{"type":"text","value":" 或者 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Object"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"string"}]},{"type":"text","value":" 表示组件类型。格式可以是 'mainType' 或者 'mainType.subType'。例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.on('click', 'series', function() {});\nchart.on('click', 'series.line', function() {});\nchart.on('click', 'dataZoom', function() {});\nchart.on('click', 'xAxis.category', function() {});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Object"}]},{"type":"text","value":",可以包含以下一个或多个属性,每个属性都是可选的:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"{\n ${mainType}Index: number // 组件 index\n ${mainType}Name: string // 组件 name\n ${mainType}Id: string // 组件 id\n dataIndex: number // 数据项 index\n name: string // 数据项 name\n dataType: string // 数据项 type,如关系图中的 'node', 'edge'\n element: string // 自定义系列中的 el 的 name\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n name: 'uuu'\n // ...\n }\n ]\n});\nchart.on('mouseover', { seriesName: 'uuu' }, function() {\n // series name 为 'uuu' 的系列中的图形元素被 'mouseover' 时,此方法被回调。\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n // ...\n },\n {\n // ...\n data: [\n { name: 'xx', value: 121 },\n { name: 'yy', value: 33 }\n ]\n }\n ]\n});\nchart.on('mouseover', { seriesIndex: 1, name: 'xx' }, function() {\n // series index 1 的系列中的 name 为 'xx' 的元素被 'mouseover' 时,此方法被回调。\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: [\n {\n type: 'graph',\n nodes: [\n { name: 'a', value: 10 },\n { name: 'b', value: 20 }\n ],\n edges: [{ source: 0, target: 1 }]\n }\n ]\n});\nchart.on('click', { dataType: 'node' }, function() {\n // 关系图的节点被点击时此方法被回调。\n});\nchart.on('click', { dataType: 'edge' }, function() {\n // 关系图的边被点击时此方法被回调。\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n // ...\n series: {\n // ...\n type: 'custom',\n renderItem: function(params, api) {\n return {\n type: 'group',\n children: [\n {\n type: 'circle',\n name: 'my_el'\n // ...\n },\n {\n // ...\n }\n ]\n };\n },\n data: [[12, 33]]\n }\n});\nchart.on('mouseup', { element: 'my_el' }, function() {\n // name 为 'my_el' 的元素被 'mouseup' 时,此方法被回调。\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"你可以在回调函数中获得这个对象中的数据名、系列名称后在自己的数据仓库中索引得到其它的信息后更新图表,显示浮层等等,如下示例代码:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.on('click', function(parmas) {\n $.get('detail?q=' + params.name, function(detail) {\n myChart.setOption({\n series: [\n {\n name: 'pie',\n // 通过饼图表现单个柱子中的数据分布\n data: [detail.data]\n }\n ]\n });\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"组件交互的行为事件"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%BB%84%E4%BB%B6%E4%BA%A4%E4%BA%92%E7%9A%84%E8%A1%8C%E4%B8%BA%E4%BA%8B%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"组件交互的行为事件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 中基本上所有的组件交互行为都会触发相应的事件,常用的事件和事件对应参数在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#events","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"events"}]},{"type":"text","value":" 文档中有列出。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是监听一个图例开关的示例:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 图例开关的行为只会触发 legendselectchanged 事件\nmyChart.on('legendselectchanged', function(params) {\n // 获取点击图例的选中状态\n var isSelected = params.selected[params.name];\n // 在控制台中打印\n console.log((isSelected ? '选中了' : '取消选中了') + '图例' + params.name);\n // 打印所有图例的状态\n console.log(params.selected);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"代码触发-echarts-中组件的行为"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%A3%E7%A0%81%E8%A7%A6%E5%8F%91-echarts-%E4%B8%AD%E7%BB%84%E4%BB%B6%E7%9A%84%E8%A1%8C%E4%B8%BA","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"代码触发 ECharts 中组件的行为"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"上面提到诸如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'legendselectchanged'"}]},{"type":"text","value":" 事件会由组件交互的行为触发,那除了用户的交互操作,有时候也会有需要在程序里调用方法触发图表的行为,诸如显示 tooltip,选中图例。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 通过调用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.dispatchAction({ type: '' })"}]},{"type":"text","value":" 触发图表行为,统一管理了所有动作,也可以方便地根据需要去记录用户的行为路径。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"常用的动作和动作对应参数在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#action","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"action"}]},{"type":"text","value":" 文档中有列出。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面示例演示了如何通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dispatchAction"}]},{"type":"text","value":" 去轮流高亮饼图的每个扇形。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n title: {\n text: '饼图程序调用高亮示例',\n left: 'center'\n },\n tooltip: {\n trigger: 'item',\n formatter: '{a} <br/>{b} : {c} ({d}%)'\n },\n legend: {\n orient: 'vertical',\n left: 'left',\n data: ['直接访问', '邮件营销', '联盟广告', '视频广告', '搜索引擎']\n },\n series: [\n {\n name: '访问来源',\n type: 'pie',\n radius: '55%',\n center: ['50%', '60%'],\n data: [\n { value: 335, name: '直接访问' },\n { value: 310, name: '邮件营销' },\n { value: 234, name: '联盟广告' },\n { value: 135, name: '视频广告' },\n { value: 1548, name: '搜索引擎' }\n ],\n emphasis: {\n itemStyle: {\n shadowBlur: 10,\n shadowOffsetX: 0,\n shadowColor: 'rgba(0, 0, 0, 0.5)'\n }\n }\n }\n ]\n};\n\nlet currentIndex = -1;\n\nsetInterval(function() {\n var dataLen = option.series[0].data.length;\n // 取消之前高亮的图形\n myChart.dispatchAction({\n type: 'downplay',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n currentIndex = (currentIndex + 1) % dataLen;\n // 高亮当前图形\n myChart.dispatchAction({\n type: 'highlight',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n // 显示 tooltip\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n}, 1000);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"监听空白处的事件"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%9B%91%E5%90%AC%E7%A9%BA%E7%99%BD%E5%A4%84%E7%9A%84%E4%BA%8B%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"监听“空白处”的事件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有时候,开发者需要监听画布的“空白处”所触发的事件。比如,当需要在用户点击“空白处”的时候重置图表时。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在讨论这个功能之前,我们需要先明确两种事件。zrender 事件和 echarts 事件。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.getZr().on('click', function(event) {\n // 该监听器正在监听一个`zrender 事件`。\n});\nmyChart.on('click', function(event) {\n // 该监听器正在监听一个`echarts 事件`。\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"zrender 事件与 echarts 事件不同。前者是当鼠标在任何地方都会被触发,而后者是只有当鼠标在图形元素上时才能被触发。事实上,echarts 事件是在 zrender 事件的基础上实现的,也就是说,当一个 zrender 事件在图形元素上被触发时,echarts 将触发一个 echarts 事件给开发者。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有了 zrender 事件,我们就可以实现监听空白处的事件,具体如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.getZr().on('click', function(event) {\n // 没有 target 意味着鼠标/指针不在任何一个图形元素上,它是从“空白处”触发的。\n if (!event.target) {\n // 点击在了空白处,做些什么。\n }\n});\n"}]}]}]},"text":"# 事件与行为\n\n在 Apache ECharts 的图表中用户的操作将会触发相应的事件。开发者可以监听这些事件,然后通过回调函数做相应的处理,比如跳转到一个地址,或者弹出对话框,或者做数据下钻等等。\n\nECharts 中的事件名称对应 DOM 事件名称,均为小写的字符串,如下是一个绑定点击操作的示例。\n\n```js\nmyChart.on('click', function(params) {\n // 控制台打印数据的名称\n console.log(params.name);\n});\n```\n\n在 ECharts 中事件分为两种类型,一种是用户鼠标操作点击,或者 hover 图表的图形时触发的事件,还有一种是用户在使用可以交互的组件后触发的行为事件,例如在切换图例开关时触发的 ['legendselectchanged'](https://echarts.apache.org/api.html#events.legendselectchanged) 事件(这里需要注意切换图例开关是不会触发 `'legendselected'` 事件的),数据区域缩放时触发的 ['datazoom'](https://echarts.apache.org/api.html#events.legendselectchanged) 事件等等。\n\n## 鼠标事件的处理\n\nECharts 支持常规的鼠标事件类型,包括 `'click'`、 `'dblclick'`、 `'mousedown'`、 `'mousemove'`、 `'mouseup'`、 `'mouseover'`、 `'mouseout'`、 `'globalout'`、 `'contextmenu'` 事件。下面先来看一个简单的点击柱状图后打开相应的百度搜索页面的示例。\n\n```js [live]\n// 基于准备好的dom,初始化ECharts实例\n// var myChart = echarts.init(document.getElementById('main'));\n\n// 指定图表的配置项和数据\nvar option = {\n xAxis: {\n data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子']\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: [5, 20, 36, 10, 10, 20]\n }\n ]\n};\n// 使用刚指定的配置项和数据显示图表。\nmyChart.setOption(option);\n// 处理点击事件并且跳转到相应的百度搜索页面\nmyChart.on('click', function(params) {\n window.open('https://www.baidu.com/s?wd=' + encodeURIComponent(params.name));\n});\n```\n\n所有的鼠标事件包含参数 `params`,这是一个包含点击图形的数据信息的对象,如下格式:\n\n```ts\ntype EventParams = {\n // 当前点击的图形元素所属的组件名称,\n // 其值如 'series'、'markLine'、'markPoint'、'timeLine' 等。\n componentType: string;\n // 系列类型。值可能为:'line'、'bar'、'pie' 等。当 componentType 为 'series' 时有意义。\n seriesType: string;\n // 系列在传入的 option.series 中的 index。当 componentType 为 'series' 时有意义。\n seriesIndex: number;\n // 系列名称。当 componentType 为 'series' 时有意义。\n seriesName: string;\n // 数据名,类目名\n name: string;\n // 数据在传入的 data 数组中的 index\n dataIndex: number;\n // 传入的原始数据项\n data: Object;\n // sankey、graph 等图表同时含有 nodeData 和 edgeData 两种 data,\n // dataType 的值会是 'node' 或者 'edge',表示当前点击在 node 还是 edge 上。\n // 其他大部分图表中只有一种 data,dataType 无意义。\n dataType: string;\n // 传入的数据值\n value: number | Array;\n // 数据图形的颜色。当 componentType 为 'series' 时有意义。\n color: string;\n};\n```\n\n如何区分鼠标点击到了哪里:\n\n```js\nmyChart.on('click', function(params) {\n if (params.componentType === 'markPoint') {\n // 点击到了 markPoint 上\n if (params.seriesIndex === 5) {\n // 点击到了 index 为 5 的 series 的 markPoint 上。\n }\n } else if (params.componentType === 'series') {\n if (params.seriesType === 'graph') {\n if (params.dataType === 'edge') {\n // 点击到了 graph 的 edge(边)上。\n } else {\n // 点击到了 graph 的 node(节点)上。\n }\n }\n }\n});\n```\n\n使用 `query` 只对指定的组件的图形元素的触发回调:\n\n```js\nchart.on(eventName, query, handler);\n```\n\n`query` 可为 `string` 或者 `Object`。\n\n如果为 `string` 表示组件类型。格式可以是 'mainType' 或者 'mainType.subType'。例如:\n\n```js\nchart.on('click', 'series', function() {});\nchart.on('click', 'series.line', function() {});\nchart.on('click', 'dataZoom', function() {});\nchart.on('click', 'xAxis.category', function() {});\n```\n\n如果为 `Object`,可以包含以下一个或多个属性,每个属性都是可选的:\n\n```ts\n{\n ${mainType}Index: number // 组件 index\n ${mainType}Name: string // 组件 name\n ${mainType}Id: string // 组件 id\n dataIndex: number // 数据项 index\n name: string // 数据项 name\n dataType: string // 数据项 type,如关系图中的 'node', 'edge'\n element: string // 自定义系列中的 el 的 name\n}\n```\n\n例如:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n name: 'uuu'\n // ...\n }\n ]\n});\nchart.on('mouseover', { seriesName: 'uuu' }, function() {\n // series name 为 'uuu' 的系列中的图形元素被 'mouseover' 时,此方法被回调。\n});\n```\n\n例如:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n // ...\n },\n {\n // ...\n data: [\n { name: 'xx', value: 121 },\n { name: 'yy', value: 33 }\n ]\n }\n ]\n});\nchart.on('mouseover', { seriesIndex: 1, name: 'xx' }, function() {\n // series index 1 的系列中的 name 为 'xx' 的元素被 'mouseover' 时,此方法被回调。\n});\n```\n\n例如:\n\n```js\nchart.setOption({\n // ...\n series: [\n {\n type: 'graph',\n nodes: [\n { name: 'a', value: 10 },\n { name: 'b', value: 20 }\n ],\n edges: [{ source: 0, target: 1 }]\n }\n ]\n});\nchart.on('click', { dataType: 'node' }, function() {\n // 关系图的节点被点击时此方法被回调。\n});\nchart.on('click', { dataType: 'edge' }, function() {\n // 关系图的边被点击时此方法被回调。\n});\n```\n\n例如:\n\n```js\nchart.setOption({\n // ...\n series: {\n // ...\n type: 'custom',\n renderItem: function(params, api) {\n return {\n type: 'group',\n children: [\n {\n type: 'circle',\n name: 'my_el'\n // ...\n },\n {\n // ...\n }\n ]\n };\n },\n data: [[12, 33]]\n }\n});\nchart.on('mouseup', { element: 'my_el' }, function() {\n // name 为 'my_el' 的元素被 'mouseup' 时,此方法被回调。\n});\n```\n\n你可以在回调函数中获得这个对象中的数据名、系列名称后在自己的数据仓库中索引得到其它的信息后更新图表,显示浮层等等,如下示例代码:\n\n```js\nmyChart.on('click', function(parmas) {\n $.get('detail?q=' + params.name, function(detail) {\n myChart.setOption({\n series: [\n {\n name: 'pie',\n // 通过饼图表现单个柱子中的数据分布\n data: [detail.data]\n }\n ]\n });\n });\n});\n```\n\n## 组件交互的行为事件\n\n在 ECharts 中基本上所有的组件交互行为都会触发相应的事件,常用的事件和事件对应参数在 [events](https://echarts.apache.org//api.html#events) 文档中有列出。\n\n下面是监听一个图例开关的示例:\n\n```js\n// 图例开关的行为只会触发 legendselectchanged 事件\nmyChart.on('legendselectchanged', function(params) {\n // 获取点击图例的选中状态\n var isSelected = params.selected[params.name];\n // 在控制台中打印\n console.log((isSelected ? '选中了' : '取消选中了') + '图例' + params.name);\n // 打印所有图例的状态\n console.log(params.selected);\n});\n```\n\n## 代码触发 ECharts 中组件的行为\n\n上面提到诸如 `'legendselectchanged'` 事件会由组件交互的行为触发,那除了用户的交互操作,有时候也会有需要在程序里调用方法触发图表的行为,诸如显示 tooltip,选中图例。\n\n在 ECharts 通过调用 `myChart.dispatchAction({ type: '' })` 触发图表行为,统一管理了所有动作,也可以方便地根据需要去记录用户的行为路径。\n\n常用的动作和动作对应参数在 [action](https://echarts.apache.org//api.html#action) 文档中有列出。\n\n下面示例演示了如何通过 `dispatchAction` 去轮流高亮饼图的每个扇形。\n\n```js [live]\noption = {\n title: {\n text: '饼图程序调用高亮示例',\n left: 'center'\n },\n tooltip: {\n trigger: 'item',\n formatter: '{a} <br/>{b} : {c} ({d}%)'\n },\n legend: {\n orient: 'vertical',\n left: 'left',\n data: ['直接访问', '邮件营销', '联盟广告', '视频广告', '搜索引擎']\n },\n series: [\n {\n name: '访问来源',\n type: 'pie',\n radius: '55%',\n center: ['50%', '60%'],\n data: [\n { value: 335, name: '直接访问' },\n { value: 310, name: '邮件营销' },\n { value: 234, name: '联盟广告' },\n { value: 135, name: '视频广告' },\n { value: 1548, name: '搜索引擎' }\n ],\n emphasis: {\n itemStyle: {\n shadowBlur: 10,\n shadowOffsetX: 0,\n shadowColor: 'rgba(0, 0, 0, 0.5)'\n }\n }\n }\n ]\n};\n\nlet currentIndex = -1;\n\nsetInterval(function() {\n var dataLen = option.series[0].data.length;\n // 取消之前高亮的图形\n myChart.dispatchAction({\n type: 'downplay',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n currentIndex = (currentIndex + 1) % dataLen;\n // 高亮当前图形\n myChart.dispatchAction({\n type: 'highlight',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n // 显示 tooltip\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: currentIndex\n });\n}, 1000);\n```\n\n## 监听“空白处”的事件\n\n有时候,开发者需要监听画布的“空白处”所触发的事件。比如,当需要在用户点击“空白处”的时候重置图表时。\n\n在讨论这个功能之前,我们需要先明确两种事件。zrender 事件和 echarts 事件。\n\n```js\nmyChart.getZr().on('click', function(event) {\n // 该监听器正在监听一个`zrender 事件`。\n});\nmyChart.on('click', function(event) {\n // 该监听器正在监听一个`echarts 事件`。\n});\n```\n\nzrender 事件与 echarts 事件不同。前者是当鼠标在任何地方都会被触发,而后者是只有当鼠标在图形元素上时才能被触发。事实上,echarts 事件是在 zrender 事件的基础上实现的,也就是说,当一个 zrender 事件在图形元素上被触发时,echarts 将触发一个 echarts 事件给开发者。\n\n有了 zrender 事件,我们就可以实现监听空白处的事件,具体如下:\n\n```js\nmyChart.getZr().on('click', function(event) {\n // 没有 target 意味着鼠标/指针不在任何一个图形元素上,它是从“空白处”触发的。\n if (!event.target) {\n // 点击在了空白处,做些什么。\n }\n});\n```\n","dir":"/zh/concepts","path":"/zh/concepts/event","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-07-21T11:12:44.166Z","meta":{"version":0,"revision":0,"created":1627897108787},"$loki":52},{"slug":"legend","toc":[{"id":"布局","depth":2,"text":"布局"},{"id":"样式","depth":2,"text":"样式"},{"id":"交互","depth":2,"text":"交互"},{"id":"图例注意事项","depth":2,"text":"图例注意事项"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"图例"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9B%BE%E4%BE%8B","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图例"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图例是图表中对内容区元素的注释、用不同形状、颜色、文字等来标示不同数据列,通过点击对应数据列的标记,可以显示或隐藏该数据列。图例虽然不是图表中的主要信息、却是了解图表信息的钥匙。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"布局"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%B8%83%E5%B1%80","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"布局"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图例一般放在图表的右上角、也可以放在图表的底部、同一页面中的所有图例位置保持一致,可以横排对齐也可以纵排对齐。还要综合考虑整体的图表空间是适合哪种摆放方式。当图表纵向空间紧张或者内容区量过大的时候、建议摆放在图表的下方。下面是几种图例的摆放方式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {\n // Try 'horizontal'\n orient: 'vertical',\n right: 10,\n top: 'center'\n },\n dataset: {\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于图例较多时,可以使用可滚动翻页的图例"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n type: 'scroll',\n orient: 'vertical',\n right: 10,\n top: 20,\n bottom: 20,\n data: ['图例一', '图例二', '图例三' /* ... */, , '图例n']\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"样式"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%A0%B7%E5%BC%8F","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"样式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在深色系背景下、为了方便阅读,建议给图例加上半透明的浅色背景层,文字颜色设置为浅色。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n backgroundColor: '#ccc',\n textStyle: {\n color: '#ccc'\n // ...\n }\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图例的颜色标签有很多种设计方式、针对不同的图表、图例样式也会有所不同。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"80%","height":"80%","src":"images/design/legend/charts_sign_img04.png"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n icon: 'rect'\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"交互"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E4%BA%A4%E4%BA%92","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"交互"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"根据场景需要,图例可支持交互操作,点击控制显示或隐藏对应的数据列;"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n selected: {\n 图例一: true,\n 图例二: true,\n 图例三: false\n }\n // ...\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"图例注意事项"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9B%BE%E4%BE%8B%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图例注意事项"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图例要要注意视情况使用,有些双轴图包含了多种图表类型,不同类型的图例样式要有所区分。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n legend: {\n data: [\n {\n name: '图例一',\n icon: 'rect'\n },\n {\n name: '图例二',\n icon: 'circle'\n },\n {\n name: '图例三',\n icon: 'pin'\n }\n ]\n // ...\n },\n series: [\n {\n name: '图例一'\n // ...\n },\n {\n name: '图例二'\n // ...\n },\n {\n name: '图例三'\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"当图表只有一种数据信息时,用图表标题说明数据信息即可。建议此时不要加上图例。"}]}]},"text":"# 图例\n\n图例是图表中对内容区元素的注释、用不同形状、颜色、文字等来标示不同数据列,通过点击对应数据列的标记,可以显示或隐藏该数据列。图例虽然不是图表中的主要信息、却是了解图表信息的钥匙。\n\n## 布局\n\n图例一般放在图表的右上角、也可以放在图表的底部、同一页面中的所有图例位置保持一致,可以横排对齐也可以纵排对齐。还要综合考虑整体的图表空间是适合哪种摆放方式。当图表纵向空间紧张或者内容区量过大的时候、建议摆放在图表的下方。下面是几种图例的摆放方式:\n\n```js [live]\noption = {\n legend: {\n // Try 'horizontal'\n orient: 'vertical',\n right: 10,\n top: 'center'\n },\n dataset: {\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\n对于图例较多时,可以使用可滚动翻页的图例\n\n```js\noption = {\n legend: {\n type: 'scroll',\n orient: 'vertical',\n right: 10,\n top: 20,\n bottom: 20,\n data: ['图例一', '图例二', '图例三' /* ... */, , '图例n']\n // ...\n }\n // ...\n};\n```\n\n## 样式\n\n在深色系背景下、为了方便阅读,建议给图例加上半透明的浅色背景层,文字颜色设置为浅色。\n\n```js\noption = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n backgroundColor: '#ccc',\n textStyle: {\n color: '#ccc'\n // ...\n }\n // ...\n }\n // ...\n};\n```\n\n图例的颜色标签有很多种设计方式、针对不同的图表、图例样式也会有所不同。\n\n<img max-width=\"830\" width=\"80%\" height=\"80%\" src=\"images/design/legend/charts_sign_img04.png\" />\n\n```js\noption = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n icon: 'rect'\n // ...\n }\n // ...\n};\n```\n\n## 交互\n\n根据场景需要,图例可支持交互操作,点击控制显示或隐藏对应的数据列;\n\n```js\noption = {\n legend: {\n data: ['图例一', '图例二', '图例三'],\n selected: {\n 图例一: true,\n 图例二: true,\n 图例三: false\n }\n // ...\n }\n // ...\n};\n```\n\n## 图例注意事项\n\n图例要要注意视情况使用,有些双轴图包含了多种图表类型,不同类型的图例样式要有所区分。\n\n```js\noption = {\n legend: {\n data: [\n {\n name: '图例一',\n icon: 'rect'\n },\n {\n name: '图例二',\n icon: 'circle'\n },\n {\n name: '图例三',\n icon: 'pin'\n }\n ]\n // ...\n },\n series: [\n {\n name: '图例一'\n // ...\n },\n {\n name: '图例二'\n // ...\n },\n {\n name: '图例三'\n // ...\n }\n ]\n // ...\n};\n```\n\n当图表只有一种数据信息时,用图表标题说明数据信息即可。建议此时不要加上图例。\n","dir":"/zh/concepts","path":"/zh/concepts/legend","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-07-21T13:04:56.122Z","meta":{"version":0,"revision":0,"created":1627897108799},"$loki":53},{"slug":"style","toc":[{"id":"颜色主题(theme)","depth":2,"text":"颜色主题(Theme)"},{"id":"调色盘","depth":2,"text":"调色盘"},{"id":"直接的样式设置-itemstyle-linestyle-areastyle-label-","depth":2,"text":"直接的样式设置 itemStyle, lineStyle, areaStyle, label, ..."},{"id":"高亮的样式:emphasis","depth":2,"text":"高亮的样式:emphasis"},{"id":"通过-visualmap-组件设定样式","depth":2,"text":"通过 visualMap 组件设定样式"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"echarts-中的样式简介"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-%E4%B8%AD%E7%9A%84%E6%A0%B7%E5%BC%8F%E7%AE%80%E4%BB%8B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts 中的样式简介"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本文主要是大略概述,用哪些方法,可以在 Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 中设置样式,改变图形元素或者文字的颜色、明暗、大小等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"之所以用“样式”这种可能不很符合数据可视化思维的词,是因为,比较通俗易懂。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本文介绍这几种方式,他们的功能范畴可能会有交叉(即同一种细节的效果可能可以用不同的方式实现),但是他们各有各的场景偏好。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"颜色主题(Theme)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"调色盘"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"直接样式设置(itemStyle、lineStyle、areaStyle、label、...)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"视觉映射(visualMap)"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"颜色主题(theme)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%A2%9C%E8%89%B2%E4%B8%BB%E9%A2%98%EF%BC%88theme%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"颜色主题(Theme)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最简单的更改全局样式的方式,是直接采用颜色主题(theme)。例如,在 "},{"type":"element","tag":"a","props":{"href":"$%7BwebsitePath%7D/examples"},"children":[{"type":"text","value":"示例集合"}]},{"type":"text","value":" 中,可以通过切换深色模式,直接看到采用主题的效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts5 除了一贯的默认主题外,还内置了"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'dark'"}]},{"type":"text","value":"主题。可以如下切换成深色模式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var chart = echarts.init(dom, 'dark');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其他的主题,没有内置在 ECharts 中,需要自己加载。这些主题可以在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/theme-builder.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"主题编辑器"}]},{"type":"text","value":" 里访问到。也可以使用这个主题编辑器,自己编辑主题。下载下来的主题可以这样使用:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果主题保存为 JSON 文件,那么可以自行加载和注册,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 假设主题名称是 \"vintage\"\n$.getJSON('xxx/xxx/vintage.json', function(themeJSON) {\n echarts.registerTheme('vintage', JSON.parse(themeJSON));\n var chart = echarts.init(dom, 'vintage');\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果保存为 UMD 格式的 JS 文件,那么支持了自注册,直接引入 JS 文件即可:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// HTML 引入 vintage.js 文件后(假设主题名称是 \"vintage\")\nvar chart = echarts.init(dom, 'vintage');\n// ...\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"调色盘"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%B0%83%E8%89%B2%E7%9B%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"调色盘"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"调色盘,可以在 option 中设置。它给定了一组颜色,图形、系列会自动从其中选择颜色。\n可以设置全局的调色盘,也可以设置系列自己专属的调色盘。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n // 全局调色盘。\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ],\n\n series: [\n {\n type: 'bar',\n // 此系列自己的调色盘。\n color: [\n '#dd6b66',\n '#759aa0',\n '#e69d87',\n '#8dc1a9',\n '#ea7e53',\n '#eedd78',\n '#73a373',\n '#73b9bc',\n '#7289ab',\n '#91ca8c',\n '#f49f42'\n ]\n // ...\n },\n {\n type: 'pie',\n // 此系列自己的调色盘。\n color: [\n '#37A2DA',\n '#32C5E9',\n '#67E0E3',\n '#9FE6B8',\n '#FFDB5C',\n '#ff9f7f',\n '#fb7293',\n '#E062AE',\n '#E690D1',\n '#e7bcf3',\n '#9d96f5',\n '#8378EA',\n '#96BFFF'\n ]\n // ...\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"直接的样式设置-itemstyle-linestyle-areastyle-label-"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%9B%B4%E6%8E%A5%E7%9A%84%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE-itemstyle-linestyle-areastyle-label-","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"直接的样式设置 itemStyle, lineStyle, areaStyle, label, ..."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"直接的样式设置是比较常用设置方式。纵观 ECharts 的 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"option"}]},{"type":"text","value":" 中,很多地方可以设置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.label","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" 等等。这些的地方可以直接设置图形元素的颜色、线宽、点的大小、标签的文字、标签的样式等等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"一般来说,ECharts 的各个系列和组件,都遵从这些命名习惯,虽然不同图表和组件中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" 等可能出现在不同的地方。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在下面例子中我们给气泡图设置了阴影,渐变色等复杂的样式,你可以修改代码中的样式看修改后的效果:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var data = [\n [\n [28604, 77, 17096869, 'Australia', 1990],\n [31163, 77.4, 27662440, 'Canada', 1990],\n [1516, 68, 1154605773, 'China', 1990],\n [13670, 74.7, 10582082, 'Cuba', 1990],\n [28599, 75, 4986705, 'Finland', 1990],\n [29476, 77.1, 56943299, 'France', 1990],\n [31476, 75.4, 78958237, 'Germany', 1990],\n [28666, 78.1, 254830, 'Iceland', 1990],\n [1777, 57.7, 870601776, 'India', 1990],\n [29550, 79.1, 122249285, 'Japan', 1990],\n [2076, 67.9, 20194354, 'North Korea', 1990],\n [12087, 72, 42972254, 'South Korea', 1990],\n [24021, 75.4, 3397534, 'New Zealand', 1990],\n [43296, 76.8, 4240375, 'Norway', 1990],\n [10088, 70.8, 38195258, 'Poland', 1990],\n [19349, 69.6, 147568552, 'Russia', 1990],\n [10670, 67.3, 53994605, 'Turkey', 1990],\n [26424, 75.7, 57110117, 'United Kingdom', 1990],\n [37062, 75.4, 252847810, 'United States', 1990]\n ],\n [\n [44056, 81.8, 23968973, 'Australia', 2015],\n [43294, 81.7, 35939927, 'Canada', 2015],\n [13334, 76.9, 1376048943, 'China', 2015],\n [21291, 78.5, 11389562, 'Cuba', 2015],\n [38923, 80.8, 5503457, 'Finland', 2015],\n [37599, 81.9, 64395345, 'France', 2015],\n [44053, 81.1, 80688545, 'Germany', 2015],\n [42182, 82.8, 329425, 'Iceland', 2015],\n [5903, 66.8, 1311050527, 'India', 2015],\n [36162, 83.5, 126573481, 'Japan', 2015],\n [1390, 71.4, 25155317, 'North Korea', 2015],\n [34644, 80.7, 50293439, 'South Korea', 2015],\n [34186, 80.6, 4528526, 'New Zealand', 2015],\n [64304, 81.6, 5210967, 'Norway', 2015],\n [24787, 77.3, 38611794, 'Poland', 2015],\n [23038, 73.13, 143456918, 'Russia', 2015],\n [19360, 76.5, 78665830, 'Turkey', 2015],\n [38225, 81.4, 64715810, 'United Kingdom', 2015],\n [53354, 79.1, 321773631, 'United States', 2015]\n ]\n];\n\noption = {\n backgroundColor: {\n type: 'radial',\n x: 0.3,\n y: 0.3,\n r: 0.8,\n colorStops: [\n {\n offset: 0,\n color: '#f7f8fa'\n },\n {\n offset: 1,\n color: '#cdd0d5'\n }\n ]\n },\n grid: {\n left: 10,\n containLabel: true,\n bottom: 10,\n top: 10,\n right: 30\n },\n xAxis: {\n splitLine: {\n show: false\n }\n },\n yAxis: {\n splitLine: {\n show: false\n },\n scale: true\n },\n series: [\n {\n name: '1990',\n data: data[0],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(120, 36, 50, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(251, 118, 123)'\n },\n {\n offset: 1,\n color: 'rgb(204, 46, 72)'\n }\n ]\n }\n }\n },\n {\n name: '2015',\n data: data[1],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(25, 100, 150, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(129, 227, 238)'\n },\n {\n offset: 1,\n color: 'rgb(25, 183, 207)'\n }\n ]\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"高亮的样式:emphasis"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%AB%98%E4%BA%AE%E7%9A%84%E6%A0%B7%E5%BC%8F%EF%BC%9Aemphasis","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"高亮的样式:emphasis"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在鼠标悬浮到图形元素上时,一般会出现高亮的样式。默认情况下,高亮的样式是根据普通样式自动生成的。但是高亮的样式也可以自己定义,主要是通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.emphasis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" 属性来定制。"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.emphasis","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"emphsis"}]},{"type":"text","value":" 中的结构,和普通样式的结构相同,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n type: 'scatter',\n\n // 普通样式。\n itemStyle: {\n // 点的颜色。\n color: 'red'\n },\n label: {\n show: true,\n // 标签的文字。\n formatter: 'This is a normal label.'\n },\n\n // 高亮样式。\n emphasis: {\n itemStyle: {\n // 高亮时点的颜色。\n color: 'blue'\n },\n label: {\n show: true,\n // 高亮时标签的文字。\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意:在 ECharts4 以前,高亮和普通样式的写法,是这样的:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n type: 'scatter',\n\n itemStyle: {\n // 普通样式。\n normal: {\n // 点的颜色。\n color: 'red'\n },\n // 高亮样式。\n emphasis: {\n // 高亮时点的颜色。\n color: 'blue'\n }\n },\n\n label: {\n // 普通样式。\n normal: {\n show: true,\n // 标签的文字。\n formatter: 'This is a normal label.'\n },\n // 高亮样式。\n emphasis: {\n show: true,\n // 高亮时标签的文字。\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这种写法 "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"仍然被兼容"}]},{"type":"text","value":",但是,不再推荐。事实上,多数情况下,使用者只会配置普通状态下的样式,而使用默认的高亮样式。所以在 ECharts4 中,支持不写 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"normal"}]},{"type":"text","value":" 的配置方法(即本文开头的那种写法),使得配置项更扁平简单。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"通过-visualmap-组件设定样式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%80%9A%E8%BF%87-visualmap-%E7%BB%84%E4%BB%B6%E8%AE%BE%E5%AE%9A%E6%A0%B7%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"通过 visualMap 组件设定样式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":" 能指定数据到颜色、图形尺寸的映射规则,详见 "},{"type":"element","tag":"a","props":{"href":"zh/concepts/visual-map"},"children":[{"type":"text","value":"数据的视觉映射"}]},{"type":"text","value":"。"}]}]},"text":"# ECharts 中的样式简介\n\n本文主要是大略概述,用哪些方法,可以在 Apache ECharts<sup>TM</sup> 中设置样式,改变图形元素或者文字的颜色、明暗、大小等。\n\n> 之所以用“样式”这种可能不很符合数据可视化思维的词,是因为,比较通俗易懂。\n\n本文介绍这几种方式,他们的功能范畴可能会有交叉(即同一种细节的效果可能可以用不同的方式实现),但是他们各有各的场景偏好。\n\n- 颜色主题(Theme)\n- 调色盘\n- 直接样式设置(itemStyle、lineStyle、areaStyle、label、...)\n- 视觉映射(visualMap)\n\n## 颜色主题(Theme)\n\n最简单的更改全局样式的方式,是直接采用颜色主题(theme)。例如,在 [示例集合](${websitePath}/examples) 中,可以通过切换深色模式,直接看到采用主题的效果。\n\nECharts5 除了一贯的默认主题外,还内置了`'dark'`主题。可以如下切换成深色模式:\n\n```js\nvar chart = echarts.init(dom, 'dark');\n```\n\n其他的主题,没有内置在 ECharts 中,需要自己加载。这些主题可以在 [主题编辑器](https://echarts.apache.org/theme-builder.html) 里访问到。也可以使用这个主题编辑器,自己编辑主题。下载下来的主题可以这样使用:\n\n如果主题保存为 JSON 文件,那么可以自行加载和注册,例如:\n\n```js\n// 假设主题名称是 \"vintage\"\n$.getJSON('xxx/xxx/vintage.json', function(themeJSON) {\n echarts.registerTheme('vintage', JSON.parse(themeJSON));\n var chart = echarts.init(dom, 'vintage');\n});\n```\n\n如果保存为 UMD 格式的 JS 文件,那么支持了自注册,直接引入 JS 文件即可:\n\n```js\n// HTML 引入 vintage.js 文件后(假设主题名称是 \"vintage\")\nvar chart = echarts.init(dom, 'vintage');\n// ...\n```\n\n## 调色盘\n\n调色盘,可以在 option 中设置。它给定了一组颜色,图形、系列会自动从其中选择颜色。\n可以设置全局的调色盘,也可以设置系列自己专属的调色盘。\n\n```js\noption = {\n // 全局调色盘。\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ],\n\n series: [\n {\n type: 'bar',\n // 此系列自己的调色盘。\n color: [\n '#dd6b66',\n '#759aa0',\n '#e69d87',\n '#8dc1a9',\n '#ea7e53',\n '#eedd78',\n '#73a373',\n '#73b9bc',\n '#7289ab',\n '#91ca8c',\n '#f49f42'\n ]\n // ...\n },\n {\n type: 'pie',\n // 此系列自己的调色盘。\n color: [\n '#37A2DA',\n '#32C5E9',\n '#67E0E3',\n '#9FE6B8',\n '#FFDB5C',\n '#ff9f7f',\n '#fb7293',\n '#E062AE',\n '#E690D1',\n '#e7bcf3',\n '#9d96f5',\n '#8378EA',\n '#96BFFF'\n ]\n // ...\n }\n ]\n};\n```\n\n## 直接的样式设置 itemStyle, lineStyle, areaStyle, label, ...\n\n直接的样式设置是比较常用设置方式。纵观 ECharts 的 [option](https://echarts.apache.org/option.html#) 中,很多地方可以设置 [itemStyle](https://echarts.apache.org/option.html#series-bar.itemStyle)、[lineStyle](https://echarts.apache.org/option.html#series-line.lineStyle)、[areaStyle](https://echarts.apache.org/option.html#series-line.areaStyle)、[label](https://echarts.apache.org/option.html#series-bar.label) 等等。这些的地方可以直接设置图形元素的颜色、线宽、点的大小、标签的文字、标签的样式等等。\n\n一般来说,ECharts 的各个系列和组件,都遵从这些命名习惯,虽然不同图表和组件中,`itemStyle`、`label` 等可能出现在不同的地方。\n\n在下面例子中我们给气泡图设置了阴影,渐变色等复杂的样式,你可以修改代码中的样式看修改后的效果:\n\n```js [live]\nvar data = [\n [\n [28604, 77, 17096869, 'Australia', 1990],\n [31163, 77.4, 27662440, 'Canada', 1990],\n [1516, 68, 1154605773, 'China', 1990],\n [13670, 74.7, 10582082, 'Cuba', 1990],\n [28599, 75, 4986705, 'Finland', 1990],\n [29476, 77.1, 56943299, 'France', 1990],\n [31476, 75.4, 78958237, 'Germany', 1990],\n [28666, 78.1, 254830, 'Iceland', 1990],\n [1777, 57.7, 870601776, 'India', 1990],\n [29550, 79.1, 122249285, 'Japan', 1990],\n [2076, 67.9, 20194354, 'North Korea', 1990],\n [12087, 72, 42972254, 'South Korea', 1990],\n [24021, 75.4, 3397534, 'New Zealand', 1990],\n [43296, 76.8, 4240375, 'Norway', 1990],\n [10088, 70.8, 38195258, 'Poland', 1990],\n [19349, 69.6, 147568552, 'Russia', 1990],\n [10670, 67.3, 53994605, 'Turkey', 1990],\n [26424, 75.7, 57110117, 'United Kingdom', 1990],\n [37062, 75.4, 252847810, 'United States', 1990]\n ],\n [\n [44056, 81.8, 23968973, 'Australia', 2015],\n [43294, 81.7, 35939927, 'Canada', 2015],\n [13334, 76.9, 1376048943, 'China', 2015],\n [21291, 78.5, 11389562, 'Cuba', 2015],\n [38923, 80.8, 5503457, 'Finland', 2015],\n [37599, 81.9, 64395345, 'France', 2015],\n [44053, 81.1, 80688545, 'Germany', 2015],\n [42182, 82.8, 329425, 'Iceland', 2015],\n [5903, 66.8, 1311050527, 'India', 2015],\n [36162, 83.5, 126573481, 'Japan', 2015],\n [1390, 71.4, 25155317, 'North Korea', 2015],\n [34644, 80.7, 50293439, 'South Korea', 2015],\n [34186, 80.6, 4528526, 'New Zealand', 2015],\n [64304, 81.6, 5210967, 'Norway', 2015],\n [24787, 77.3, 38611794, 'Poland', 2015],\n [23038, 73.13, 143456918, 'Russia', 2015],\n [19360, 76.5, 78665830, 'Turkey', 2015],\n [38225, 81.4, 64715810, 'United Kingdom', 2015],\n [53354, 79.1, 321773631, 'United States', 2015]\n ]\n];\n\noption = {\n backgroundColor: {\n type: 'radial',\n x: 0.3,\n y: 0.3,\n r: 0.8,\n colorStops: [\n {\n offset: 0,\n color: '#f7f8fa'\n },\n {\n offset: 1,\n color: '#cdd0d5'\n }\n ]\n },\n grid: {\n left: 10,\n containLabel: true,\n bottom: 10,\n top: 10,\n right: 30\n },\n xAxis: {\n splitLine: {\n show: false\n }\n },\n yAxis: {\n splitLine: {\n show: false\n },\n scale: true\n },\n series: [\n {\n name: '1990',\n data: data[0],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(120, 36, 50, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(251, 118, 123)'\n },\n {\n offset: 1,\n color: 'rgb(204, 46, 72)'\n }\n ]\n }\n }\n },\n {\n name: '2015',\n data: data[1],\n type: 'scatter',\n symbolSize: function(data) {\n return Math.sqrt(data[2]) / 5e2;\n },\n emphasis: {\n focus: 'series',\n label: {\n show: true,\n formatter: function(param) {\n return param.data[3];\n },\n position: 'top'\n }\n },\n itemStyle: {\n shadowBlur: 10,\n shadowColor: 'rgba(25, 100, 150, 0.5)',\n shadowOffsetY: 5,\n color: {\n type: 'radial',\n x: 0.4,\n y: 0.3,\n r: 1,\n colorStops: [\n {\n offset: 0,\n color: 'rgb(129, 227, 238)'\n },\n {\n offset: 1,\n color: 'rgb(25, 183, 207)'\n }\n ]\n }\n }\n }\n ]\n};\n```\n\n## 高亮的样式:emphasis\n\n在鼠标悬浮到图形元素上时,一般会出现高亮的样式。默认情况下,高亮的样式是根据普通样式自动生成的。但是高亮的样式也可以自己定义,主要是通过 [emphasis](https://echarts.apache.org/option.html#series-bar.emphasis) 属性来定制。[emphsis](https://echarts.apache.org/option.html#series-bar.emphasis) 中的结构,和普通样式的结构相同,例如:\n\n```js\noption = {\n series: {\n type: 'scatter',\n\n // 普通样式。\n itemStyle: {\n // 点的颜色。\n color: 'red'\n },\n label: {\n show: true,\n // 标签的文字。\n formatter: 'This is a normal label.'\n },\n\n // 高亮样式。\n emphasis: {\n itemStyle: {\n // 高亮时点的颜色。\n color: 'blue'\n },\n label: {\n show: true,\n // 高亮时标签的文字。\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n```\n\n注意:在 ECharts4 以前,高亮和普通样式的写法,是这样的:\n\n```js\noption = {\n series: {\n type: 'scatter',\n\n itemStyle: {\n // 普通样式。\n normal: {\n // 点的颜色。\n color: 'red'\n },\n // 高亮样式。\n emphasis: {\n // 高亮时点的颜色。\n color: 'blue'\n }\n },\n\n label: {\n // 普通样式。\n normal: {\n show: true,\n // 标签的文字。\n formatter: 'This is a normal label.'\n },\n // 高亮样式。\n emphasis: {\n show: true,\n // 高亮时标签的文字。\n formatter: 'This is a emphasis label.'\n }\n }\n }\n};\n```\n\n这种写法 **仍然被兼容**,但是,不再推荐。事实上,多数情况下,使用者只会配置普通状态下的样式,而使用默认的高亮样式。所以在 ECharts4 中,支持不写 `normal` 的配置方法(即本文开头的那种写法),使得配置项更扁平简单。\n\n## 通过 visualMap 组件设定样式\n\n[visualMap 组件](https://echarts.apache.org/option.html#visualMap) 能指定数据到颜色、图形尺寸的映射规则,详见 [数据的视觉映射](zh/concepts/visual-map)。\n","dir":"/zh/concepts","path":"/zh/concepts/style","extension":".md","createdAt":"2021-07-21T05:40:02.101Z","updatedAt":"2021-07-21T15:26:59.863Z","meta":{"version":0,"revision":0,"created":1627897108820},"$loki":54},{"slug":"visual-map","toc":[{"id":"数据和维度","depth":2,"text":"数据和维度"},{"id":"visualmap-组件","depth":2,"text":"visualMap 组件"},{"id":"连续型与分段型视觉映射组件","depth":2,"text":"连续型与分段型视觉映射组件"},{"id":"连续型视觉映射","depth":3,"text":"连续型视觉映射"},{"id":"分段型视觉映射","depth":3,"text":"分段型视觉映射"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"数据的视觉映射"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E7%9A%84%E8%A7%86%E8%A7%89%E6%98%A0%E5%B0%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据的视觉映射"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"数据可视化是数据到视觉元素的映射过程(这个过程也可称为视觉编码,视觉元素也可称为视觉通道)。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 的每种图表本身就内置了这种映射过程,比如折线图把数据映射到“线”,柱状图把数据映射到“长度”。一些更复杂的图表,如关系图、事件河流图、树图也都会做出各自内置的映射。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"此外,ECharts 还提供了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":" 来提供通用的视觉映射。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 组件中可以使用的视觉元素有:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"图形类别(symbol)、图形大小(symbolSize)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"颜色(color)、透明度(opacity)、颜色透明度(colorAlpha)、"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"颜色明暗度(colorLightness)、颜色饱和度(colorSaturation)、色调(colorHue)"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面对 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 组件的使用方式进行简要的介绍。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据和维度"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E5%92%8C%E7%BB%B4%E5%BA%A6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据和维度"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 中的数据,一般存放于 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.data"}]}]},{"type":"text","value":" 中。根据图表类型不同,数据的具体形式也可能有些许差异。比如可能是“线性表“、“树“、“图“等。但他们都有个共性:都是“数据项(dataItem)“的集合。每个数据项含有“数据值(value)“和其他信息(如果需要的话)。每个数据值,可以是单一的数值(一维)或者一个数组(多维)。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" 最常见的形式,是“线性表“,即一个普通数组:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n data: [\n {\n // 这里每一个项就是数据项(dataItem)\n value: 2323, // 这是数据项的数据值(value)\n itemStyle: {}\n },\n 1212, // 也可以直接是 dataItem 的 value,这更常见。\n 2323, // 每个 value 都是“一维“的。\n 4343,\n 3434\n ];\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n data: [\n {\n // 这里每一个项就是数据项(dataItem)\n value: [3434, 129, '圣马力诺'], // 这是数据项的数据值(value)\n itemStyle: {}\n },\n [1212, 5454, '梵蒂冈'], // 也可以直接是 dataItem 的 value,这更常见。\n [2323, 3223, '瑙鲁'], // 每个 value 都是“三维“的,每列是一个维度。\n [4343, 23, '图瓦卢'] // 假如是“气泡图“,常见第一维度映射到x轴,\n // 第二维度映射到y轴,\n // 第三维度映射到气泡半径(symbolSize)\n ];\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在图表中,往往默认把 value 的前一两个维度进行映射,比如取第一个维度映射到 x 轴,取第二个维度映射到 y 轴。如果想要把更多的维度展现出来,可以借助 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":"。最常见的情况,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"散点图(scatter)"}]},{"type":"text","value":" 使用半径展现了第三个维度。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"visualmap-组件"},"children":[{"type":"element","tag":"a","props":{"href":"#visualmap-%E7%BB%84%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"visualMap 组件定义了把数据的"},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"哪个维度"}]},{"type":"text","value":"映射到"},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"什么视觉元素上"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"现在提供如下两种类型的 visualMap 组件,通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.type","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.type"}]},{"type":"text","value":" 来区分。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其定义结构例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n visualMap: [\n // 可以同时定义多个 visualMap 组件。\n {\n // 第一个 visualMap 组件\n type: 'continuous' // 定义为连续型 visualMap\n // ...\n },\n {\n // 第二个 visualMap 组件\n type: 'piecewise' // 定义为分段型 visualMap\n // ...\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"连续型与分段型视觉映射组件"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%BF%9E%E7%BB%AD%E5%9E%8B%E4%B8%8E%E5%88%86%E6%AE%B5%E5%9E%8B%E8%A7%86%E8%A7%89%E6%98%A0%E5%B0%84%E7%BB%84%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"连续型与分段型视觉映射组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 的视觉映射组件分为连续型("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-continuous","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMapContinuous"}]},{"type":"text","value":")与分段型("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMapPiecewise"}]},{"type":"text","value":")。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"连续型的意思是,进行视觉映射的数据维度是连续的数值;而分段型则是数据被分成了多段或者是离散型的数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"连续型视觉映射"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%BF%9E%E7%BB%AD%E5%9E%8B%E8%A7%86%E8%A7%89%E6%98%A0%E5%B0%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"连续型视觉映射"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"连续型视觉映射通过指定最大值、最小值,就可以确定视觉映射的范围。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n visualMap: [\n {\n type: 'piecewise',\n min: 0,\n max: 5000,\n dimension: 3, // series.data 的第四个维度(即 value[3])被映射\n seriesIndex: 4, // 对第四个系列进行映射。\n inRange: {\n // 选中范围中的视觉配置\n color: ['blue', '#121122', 'red'], // 定义了图形颜色映射的颜色列表,\n // 数据最小值映射到'blue'上,\n // 最大值映射到'red'上,\n // 其余自动线性计算。\n symbolSize: [30, 100] // 定义了图形尺寸的映射范围,\n // 数据最小值映射到30上,\n // 最大值映射到100上,\n // 其余自动线性计算。\n },\n outOfRange: {\n // 选中范围外的视觉配置\n symbolSize: [30, 100]\n }\n }\n // ...\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其中,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.inRange","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.inRange"}]},{"type":"text","value":" 表示在数据映射范围内的数据采用的样式;而 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap.outOfRange","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap.outOfRange"}]},{"type":"text","value":" 则指定了超出映射范围外的数据的样式。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"~visualMap.dimension"},"children":[{"type":"text","value":"visualMap.dimension"}]},{"type":"text","value":" 则指定了将数据的哪个维度做视觉映射。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"分段型视觉映射"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%88%86%E6%AE%B5%E5%9E%8B%E8%A7%86%E8%A7%89%E6%98%A0%E5%B0%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"分段型视觉映射"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"分段型视觉映射组件有三种模式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"连续型数据平均分段:依据 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.splitNumber","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.splitNumber"}]},{"type":"text","value":" 来自动平均分割成若干块。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"连续型数据自定义分段:依据 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.pieces","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.pieces"}]},{"type":"text","value":" 来定义每块范围。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"离散数据(类别性数据):类别定义在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap-piecewise.categories","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap-piecewise.categories"}]},{"type":"text","value":" 中。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用分段型视觉映射时,需要将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" 设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'piecewise'"}]},{"type":"text","value":",并且将上面的三个配置项选其一配置即可,其他配置项类似连续型视觉映射。"}]}]},"text":"# 数据的视觉映射\n\n数据可视化是数据到视觉元素的映射过程(这个过程也可称为视觉编码,视觉元素也可称为视觉通道)。\n\nECharts 的每种图表本身就内置了这种映射过程,比如折线图把数据映射到“线”,柱状图把数据映射到“长度”。一些更复杂的图表,如关系图、事件河流图、树图也都会做出各自内置的映射。\n\n此外,ECharts 还提供了 [visualMap 组件](https://echarts.apache.org/option.html#visualMap) 来提供通用的视觉映射。`visualMap` 组件中可以使用的视觉元素有:\n\n- 图形类别(symbol)、图形大小(symbolSize)\n- 颜色(color)、透明度(opacity)、颜色透明度(colorAlpha)、\n- 颜色明暗度(colorLightness)、颜色饱和度(colorSaturation)、色调(colorHue)\n\n下面对 `visualMap` 组件的使用方式进行简要的介绍。\n\n## 数据和维度\n\nECharts 中的数据,一般存放于 [`series.data`](https://echarts.apache.org/option.html#series.data) 中。根据图表类型不同,数据的具体形式也可能有些许差异。比如可能是“线性表“、“树“、“图“等。但他们都有个共性:都是“数据项(dataItem)“的集合。每个数据项含有“数据值(value)“和其他信息(如果需要的话)。每个数据值,可以是单一的数值(一维)或者一个数组(多维)。\n\n例如,[series.data](https://echarts.apache.org/option.html#series.data) 最常见的形式,是“线性表“,即一个普通数组:\n\n```js\nseries: {\n data: [\n {\n // 这里每一个项就是数据项(dataItem)\n value: 2323, // 这是数据项的数据值(value)\n itemStyle: {}\n },\n 1212, // 也可以直接是 dataItem 的 value,这更常见。\n 2323, // 每个 value 都是“一维“的。\n 4343,\n 3434\n ];\n}\n```\n\n```js\nseries: {\n data: [\n {\n // 这里每一个项就是数据项(dataItem)\n value: [3434, 129, '圣马力诺'], // 这是数据项的数据值(value)\n itemStyle: {}\n },\n [1212, 5454, '梵蒂冈'], // 也可以直接是 dataItem 的 value,这更常见。\n [2323, 3223, '瑙鲁'], // 每个 value 都是“三维“的,每列是一个维度。\n [4343, 23, '图瓦卢'] // 假如是“气泡图“,常见第一维度映射到x轴,\n // 第二维度映射到y轴,\n // 第三维度映射到气泡半径(symbolSize)\n ];\n}\n```\n\n在图表中,往往默认把 value 的前一两个维度进行映射,比如取第一个维度映射到 x 轴,取第二个维度映射到 y 轴。如果想要把更多的维度展现出来,可以借助 `visualMap`。最常见的情况,[散点图(scatter)](https://echarts.apache.org/option.html#series-scatter) 使用半径展现了第三个维度。\n\n## visualMap 组件\n\nvisualMap 组件定义了把数据的*哪个维度*映射到*什么视觉元素上*。\n\n现在提供如下两种类型的 visualMap 组件,通过 [visualMap.type](https://echarts.apache.org/option.html#visualMap.type) 来区分。\n\n其定义结构例如:\n\n```js\noption = {\n visualMap: [\n // 可以同时定义多个 visualMap 组件。\n {\n // 第一个 visualMap 组件\n type: 'continuous' // 定义为连续型 visualMap\n // ...\n },\n {\n // 第二个 visualMap 组件\n type: 'piecewise' // 定义为分段型 visualMap\n // ...\n }\n ]\n // ...\n};\n```\n\n## 连续型与分段型视觉映射组件\n\nECharts 的视觉映射组件分为连续型([visualMapContinuous](https://echarts.apache.org/option.html#visualMap-continuous))与分段型([visualMapPiecewise](https://echarts.apache.org/option.html#visualMap-piecewise))。\n\n连续型的意思是,进行视觉映射的数据维度是连续的数值;而分段型则是数据被分成了多段或者是离散型的数据。\n\n### 连续型视觉映射\n\n连续型视觉映射通过指定最大值、最小值,就可以确定视觉映射的范围。\n\n```js\noption = {\n visualMap: [\n {\n type: 'piecewise',\n min: 0,\n max: 5000,\n dimension: 3, // series.data 的第四个维度(即 value[3])被映射\n seriesIndex: 4, // 对第四个系列进行映射。\n inRange: {\n // 选中范围中的视觉配置\n color: ['blue', '#121122', 'red'], // 定义了图形颜色映射的颜色列表,\n // 数据最小值映射到'blue'上,\n // 最大值映射到'red'上,\n // 其余自动线性计算。\n symbolSize: [30, 100] // 定义了图形尺寸的映射范围,\n // 数据最小值映射到30上,\n // 最大值映射到100上,\n // 其余自动线性计算。\n },\n outOfRange: {\n // 选中范围外的视觉配置\n symbolSize: [30, 100]\n }\n }\n // ...\n ]\n};\n```\n\n其中,[visualMap.inRange](https://echarts.apache.org/option.html#visualMap.inRange) 表示在数据映射范围内的数据采用的样式;而 [visualMap.outOfRange](https://echarts.apache.org/option.html#visualMap.outOfRange) 则指定了超出映射范围外的数据的样式。\n\n[visualMap.dimension](~visualMap.dimension) 则指定了将数据的哪个维度做视觉映射。\n\n### 分段型视觉映射\n\n分段型视觉映射组件有三种模式:\n\n- 连续型数据平均分段:依据 [visualMap-piecewise.splitNumber](https://echarts.apache.org/option.html#visualMap-piecewise.splitNumber) 来自动平均分割成若干块。\n- 连续型数据自定义分段:依据 [visualMap-piecewise.pieces](https://echarts.apache.org/option.html#visualMap-piecewise.pieces) 来定义每块范围。\n- 离散数据(类别性数据):类别定义在 [visualMap-piecewise.categories](https://echarts.apache.org/option.html#visualMap-piecewise.categories) 中。\n\n使用分段型视觉映射时,需要将 `type` 设为 `'piecewise'`,并且将上面的三个配置项选其一配置即可,其他配置项类似连续型视觉映射。\n","dir":"/zh/concepts","path":"/zh/concepts/visual-map","extension":".md","createdAt":"2021-06-04T12:26:37.934Z","updatedAt":"2021-06-04T12:26:37.934Z","meta":{"version":0,"revision":0,"created":1627897108838},"$loki":55},{"slug":"data-transform","toc":[{"id":"get-started-to-data-transform","depth":2,"text":"Get Started to Data Transform"},{"id":"advanced-usage","depth":2,"text":"Advanced Usage"},{"id":"filter-transform","depth":2,"text":"Filter Transform"},{"id":"the-transform-sort","depth":2,"text":"The transform \"sort\""},{"id":"use-external-transforms","depth":2,"text":"Use External Transforms"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"data-transform"},"children":[{"type":"element","tag":"a","props":{"href":"#data-transform","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Data Transform"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Data transform"}]},{"type":"text","value":" has been supported since Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 5. In echarts, the term "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data transform"}]},{"type":"text","value":" means that generate new data from user provided source data and transform functions. both This feature is enable users to process data in declarative way, and provides users some common \"transform functions\" to make that kind of tasks \"out-of-the-box\". (For consistency in the context, the noun form of the word we keep using the \"transform\" rather than \"transformation\")."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The abstract formula of data transform is: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"outData = f(inputData)"}]},{"type":"text","value":", where the transform function "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"f"}]},{"type":"text","value":" can be like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"filter"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sort"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"regression"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"boxplot"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"cluster"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aggregate"}]},{"type":"text","value":"(todo) ...\nWith the help of those transform methods, users can be implements the features like:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Partition data into multiple series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Make some statistics and visualize the result."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Adapt some visualization algorithms to data and display the result."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Sort data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Remove or choose some kind of empty or special datums."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"..."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"get-started-to-data-transform"},"children":[{"type":"element","tag":"a","props":{"href":"#get-started-to-data-transform","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Get Started to Data Transform"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In echarts, data transform is implemented based on the concept of "},{"type":"element","tag":"a","props":{"href":"~https://echarts.apache.org/option.html##dataset"},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":". A "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.transform","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.transform"}]},{"type":"text","value":" can be configured in a dataset instance to indicate that this dataset is to be generated from this "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform"}]},{"type":"text","value":". For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: [\n {\n // This dataset is on `datasetIndex: 0`.\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Cereal', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Dumpling', 341, 25, 2011],\n ['Biscuit', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Cereal', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Dumpling', 241, 27, 2012],\n ['Biscuit', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Cereal', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Dumpling', 281, 31, 2013],\n ['Biscuit', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Cereal', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Dumpling', 211, 35, 2014],\n ['Biscuit', 72, 24, 2014]\n ]\n // id: 'a'\n },\n {\n // This dataset is on `datasetIndex: 1`.\n // A `transform` is configured to indicate that the\n // final data of this dataset is transformed via this\n // transform function.\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2011 }\n }\n // There can be optional properties `fromDatasetIndex` or `fromDatasetId`\n // to indicate that where is the input data of the transform from.\n // For example, `fromDatasetIndex: 0` specify the input data is from\n // the dataset on `datasetIndex: 0`, or `fromDatasetId: 'a'` specify the\n // input data is from the dataset having `id: 'a'`.\n // [DEFAULT_RULE]\n // If both `fromDatasetIndex` and `fromDatasetId` are omitted,\n // `fromDatasetIndex: 0` are used by default.\n },\n {\n // This dataset is on `datasetIndex: 2`.\n // Similarly, if neither `fromDatasetIndex` nor `fromDatasetId` is\n // specified, `fromDatasetIndex: 0` is used by default\n transform: {\n // The \"filter\" transform filters and gets data items only match\n // the given condition in property `config`.\n type: 'filter',\n // Transforms has a property `config`. In this \"filter\" transform,\n // the `config` specify the condition that each result data item\n // should be satisfied. In this case, this transform get all of\n // the data items that the value on dimension \"Year\" equals to 2012.\n config: { dimension: 'Year', value: 2012 }\n }\n },\n {\n // This dataset is on `datasetIndex: 3`\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2013 }\n }\n }\n ],\n series: [\n {\n type: 'pie',\n radius: 50,\n center: ['25%', '50%'],\n // In this case, each \"pie\" series reference to a dataset that has\n // the result of its \"filter\" transform.\n datasetIndex: 1\n },\n {\n type: 'pie',\n radius: 50,\n center: ['50%', '50%'],\n datasetIndex: 2\n },\n {\n type: 'pie',\n radius: 50,\n center: ['75%', '50%'],\n datasetIndex: 3\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Let's summarize the key points of using data transform:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Generate new data from existing declared data via the declaration of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromDatasetIndex"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromDatasetId"}]},{"type":"text","value":" in some blank dataset."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Series references these datasets to show the result."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"advanced-usage"},"children":[{"type":"element","tag":"a","props":{"href":"#advanced-usage","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Advanced Usage"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"piped-transform"},"children":[{"type":"element","tag":"a","props":{"href":"#piped-transform","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Piped Transform"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There is a syntactic sugar that pipe transforms like:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [] // The original data\n },\n {\n // Declare transforms in an array to pipe multiple transforms,\n // which makes them execute one by one and take the output of\n // the previous transform as the input of the next transform.\n transform: [\n {\n type: 'filter',\n config: { dimension: 'Product', value: 'Tofu' }\n },\n {\n type: 'sort',\n config: { dimension: 'Year', order: 'desc' }\n }\n ]\n }\n ],\n series: {\n type: 'pie',\n // Display the result of the piped transform.\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Note: theoretically any type of transform is able to have multiple input data and multiple output data. But when a transform is piped, it is only able to take one input (except it is the first transform of the pipe) and product one output (except it is the last transform of the pipe)."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"output-multiple-data"},"children":[{"type":"element","tag":"a","props":{"href":"#output-multiple-data","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Output Multiple Data"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In most cases, transform functions only need to produce one data. But there is indeed scenarios that a transform function needs to produce multiple data, each of whom might be used by different series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, in the built-in boxplot transform, besides boxplot data produced, the outlier data are also produced, which can be used in a scatter series. See the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=boxplot-light-velocity","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We use prop "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.fromTransformResult","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.fromTransformResult"}]},{"type":"text","value":" to satisfy this requirement. For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n // Original source data.\n source: []\n },\n {\n transform: {\n type: 'boxplot'\n }\n // After this \"boxplot transform\" two result data generated:\n // result[0]: The boxplot data\n // result[1]: The outlier data\n // By default, when series or other dataset reference this dataset,\n // only result[0] can be visited.\n // If we need to visit result[1], we have to use another dataset\n // as follows:\n },\n {\n // This extra dataset references the dataset above, and retrieves\n // the result[1] as its own data. Thus series or other dataset can\n // reference this dataset to get the data from result[1].\n fromDatasetIndex: 1,\n fromTransformResult: 1\n }\n ],\n xAxis: {\n type: 'category'\n },\n yAxis: {},\n series: [\n {\n name: 'boxplot',\n type: 'boxplot',\n // Reference the data from result[0].\n datasetIndex: 1\n },\n {\n name: 'outlier',\n type: 'scatter',\n // Reference the data from result[1].\n datasetIndex: 2\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"What more, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.fromTransformResult","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.fromTransformResult"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.transform","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.transform"}]},{"type":"text","value":" can both appear in one dataset, which means that the input of the transform is from retrieved from the upstream result specified by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromTransformResult"}]},{"type":"text","value":". For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"{\n fromDatasetIndex: 1,\n fromTransformResult: 1,\n transform: {\n type: 'sort',\n config: { dimension: 2, order: 'desc' }\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"debug-in-develop-environment"},"children":[{"type":"element","tag":"a","props":{"href":"#debug-in-develop-environment","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Debug in Develop Environment"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using data transform, we might run into the trouble that the final chart do not display correctly but we do not know where the config is wrong. There is a property "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform.print"}]},{"type":"text","value":" might help in such case. ("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform.print"}]},{"type":"text","value":" is only available in dev environment)."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: []\n },\n {\n transform: {\n type: 'filter',\n config: {},\n // The result of this transform will be printed\n // in dev tool via `console.log`.\n print: true\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"filter-transform"},"children":[{"type":"element","tag":"a","props":{"href":"#filter-transform","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Filter Transform"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Transform type \"filter\" is a built-in transform that provide data filter according to specified conditions. The basic option is like:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Latte', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Milk Tee', 341, 25, 2011],\n ['Porridge', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Latte', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Milk Tee', 241, 27, 2012],\n ['Porridge', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Latte', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Milk Tee', 281, 31, 2013],\n ['Porridge', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Latte', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Milk Tee', 211, 35, 2014],\n ['Porridge', 72, 24, 2014]\n ]\n },\n {\n transform: {\n type: 'filter',\n config: { dimension: 'Year', '=': 2011 }\n // The config is the \"condition\" of this filter.\n // This transform traverse the source data and\n // and retrieve all the items that the \"Year\"\n // is `2011`.\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is another example of filter transform:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"data-transform-filter"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"About dimension:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config.dimension"}]},{"type":"text","value":" can be:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Dimension name declared in dataset, like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 'Year', '=': 2011 }"}]},{"type":"text","value":". Dimension name declaration is not mandatory."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Dimension index (start from 0), like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 3, '=': 2011 }"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"About relational operator:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The relational operator can be:\n"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gt"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gte"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lt"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lte"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"eq"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"!="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ne"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<>"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"reg"}]},{"type":"text","value":". (The name in the parentheses are aliases). They follows the common semantics.\nBesides the common number comparison, there is some extra features:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Multiple operators are able to appear in one {} item like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{ dimension: 'Price', '>=': 20, '<': 30 }"}]},{"type":"text","value":", which means logical \"and\" (Price >= 20 and Price < 30)."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The data value can be \"numeric string\". Numeric string is a string that can be converted to number. Like ' 123 '. White spaces and line breaks will be auto trimmed in the conversion."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If we need to compare \"JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":" instance\" or date string (like '2012-05-12'), we need to specify "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":" manually, like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 3, lt: '2012-05-12', parser: 'time' }"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Pure string comparison is supported but can only be used in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"="}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"!="}]},{"type":"text","value":". "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">="}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<="}]},{"type":"text","value":" do not support pure string comparison (the \"right value\" of the four operators can not be a \"string\")."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The operator "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"reg"}]},{"type":"text","value":" can be used to make regular expression test. Like using "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{ dimension: 'Name', reg: /\\s+Müller\\s*$/ }"}]},{"type":"text","value":" to select all data items that the \"Name\" dimension contains family name Müller."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"About logical relationship:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Sometimes we also need to express logical relationship ( "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"and"}]},{"type":"text","value":" / "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"or"}]},{"type":"text","value":" / "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" ):"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n // Use operator \"and\".\n // Similarly, we can also use \"or\", \"not\" in the same place.\n // But \"not\" should be followed with a {...} rather than `[...]`.\n and: [\n { dimension: 'Year', '=': 2011 },\n { dimension: 'Price', '>=': 20, '<': 30 }\n ]\n }\n // The condition is \"Year\" is 2011 and \"Price\" is greater\n // or equal to 20 but less than 30.\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"and"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"or"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" can be nested like:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"transform: {\n type: 'filter',\n config: {\n or: [{\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Tofu' }\n }]\n }, {\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Cake' }\n }]\n }]\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"About parser:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Some \"parser\" can be specified when make value comparison. At present only supported:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":": Parse the value to date time before comparing. The parser rule is the same as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.parse"}]},{"type":"text","value":", where JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":" instance, timestamp number (in millisecond) and time string (like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'2012-05-12 03:11:22'"}]},{"type":"text","value":") are supported to be parse to timestamp number, while other value will be parsed to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"NaN"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'trim'"}]},{"type":"text","value":": Trim the string before making comparison. For non-string, return the original value."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":": Force to convert the value to number before making comparison. If not possible to be converted to a meaningful number, converted to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"NaN"}]},{"type":"text","value":". In most cases it is not necessary, because by default the value will be auto converted to number if possible before making comparison. But the default conversion is strict while this parser provide a loose strategy. If we meet the case that number string with unit suffix (like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'33%'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"12px"}]},{"type":"text","value":"), we should use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":" to convert them to number before making comparison."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example to show the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Date'],\n ['Milk Tee', 311, 21, '2012-05-12'],\n ['Cake', 135, 28, '2012-05-22'],\n ['Latte', 262, 36, '2012-06-02'],\n ['Milk Tee', 359, 21, '2012-06-22'],\n ['Cake', 121, 28, '2012-07-02'],\n ['Latte', 271, 36, '2012-06-22']\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n dimension: 'Date',\n '>=': '2012-05',\n '<': '2012-06',\n parser: 'time'\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Formally definition:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Finally, we give the formally definition of the filter transform config here:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type FilterTransform = {\n type: 'filter';\n config: ConditionalExpressionOption;\n};\ntype ConditionalExpressionOption =\n | true\n | false\n | RelationalExpressionOption\n | LogicalExpressionOption;\ntype RelationalExpressionOption = {\n dimension: DimensionName | DimensionIndex;\n parser?: 'time' | 'trim' | 'number';\n lt?: DataValue; // less than\n lte?: DataValue; // less than or equal\n gt?: DataValue; // greater than\n gte?: DataValue; // greater than or equal\n eq?: DataValue; // equal\n ne?: DataValue; // not equal\n '<'?: DataValue; // lt\n '<='?: DataValue; // lte\n '>'?: DataValue; // gt\n '>='?: DataValue; // gte\n '='?: DataValue; // eq\n '!='?: DataValue; // ne\n '<>'?: DataValue; // ne (SQL style)\n reg?: RegExp | string; // RegExp\n};\ntype LogicalExpressionOption = {\n and?: ConditionalExpressionOption[];\n or?: ConditionalExpressionOption[];\n not?: ConditionalExpressionOption;\n};\ntype DataValue = string | number | Date;\ntype DimensionName = string;\ntype DimensionIndex = number;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"the-transform-sort"},"children":[{"type":"element","tag":"a","props":{"href":"#the-transform-sort","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"The transform \"sort\""}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Another built-in transform is \"sort\"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n // Sort by score.\n config: { dimension: 'score', order: 'asc' }\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"data-transform-sort-bar"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Some extra features about \"sort transform\":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Order by multiple dimensions is supported. See examples below."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The sort rule:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"By default \"numeric\" (that is, number and numeric-string like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"' 123 '"}]},{"type":"text","value":") are able to sorted by numeric order."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Otherwise \"non-numeric-string\" are also able to be ordered among themselves. This might help to the case like grouping data items with the same tag, especially when multiple dimensions participated in the sort (See example below)."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"When \"numeric\" is compared with \"non-numeric-string\", or either of them is compared with other types of value, they are not comparable. So we call the latter one as \"incomparable\" and treat it as \"min value\" or \"max value\" according to the prop "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"incomparable: 'min' | 'max'"}]},{"type":"text","value":". This feature usually helps to decide whether to put the empty values (like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"null"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"undefined"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"NaN"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"''"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'-'"}]},{"type":"text","value":") or other illegal values to the head or tail."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"filter: 'time' | 'trim' | 'number'"}]},{"type":"text","value":" can be used, the same as \"filter transform\".\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If intending to sort time values (JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":" instance or time string like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'2012-03-12 11:13:54'"}]},{"type":"text","value":"), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":" should be specified. Like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 'date', order: 'desc', parser: 'time' }"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If intending to sort values with unit suffix (like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'33%'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'16px'"}]},{"type":"text","value":"), need to use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See an example of multiple order:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n config: [\n // Sort by the two dimensions.\n { dimension: 'profession', order: 'desc' },\n { dimension: 'score', order: 'desc' }\n ]\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/data-transform-multiple-sort-bar"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Finally, we give the formally definition of the sort transform config here:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type SortTransform = {\n type: 'filter';\n config: OrderExpression | OrderExpression[];\n};\ntype OrderExpression = {\n dimension: DimensionName | DimensionIndex;\n order: 'asc' | 'desc';\n incomparable?: 'min' | 'max';\n parser?: 'time' | 'trim' | 'number';\n};\ntype DimensionName = string;\ntype DimensionIndex = number;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"use-external-transforms"},"children":[{"type":"element","tag":"a","props":{"href":"#use-external-transforms","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Use External Transforms"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Besides built-in transforms (like 'filter', 'sort'), we can also use external transforms to provide more powerful functionalities. Here we use a third-party library "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-stat","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ecStat"}]},{"type":"text","value":" as an example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This case show how to make a regression line via ecStat:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Register the external transform at first.\necharts.registerTransform(ecStatTransform(ecStat).regression);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: rawData\n },\n {\n transform: {\n // Reference the registered external transform.\n // Note that external transform has a namespace (like 'ecStat:xxx'\n // has namespace 'ecStat').\n // built-in transform (like 'filter', 'sort') does not have a namespace.\n type: 'ecStat:regression',\n config: {\n // Parameters needed by the external transform.\n method: 'exponential'\n }\n }\n }\n ],\n xAxis: { type: 'category' },\n yAxis: {},\n series: [\n {\n name: 'scatter',\n type: 'scatter',\n datasetIndex: 0\n },\n {\n name: 'regression',\n type: 'line',\n symbol: 'none',\n datasetIndex: 1\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples with echarts-stat:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=data-transform-aggregate&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Aggregate"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=bar-histogram&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Bar histogram"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=scatter-clustering&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Scatter clustering"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=scatter-linear-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Scatter linear regression"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=scatter-exponential-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Scatter exponential regression"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=scatter-logarithmic-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Scatter logarithmic regression"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=scatter-polynomial-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Scatter polynomial regression"}]}]},{"type":"text","value":"\n"}]}]},"text":"# Data Transform\n\n`Data transform` has been supported since Apache ECharts<sup>TM</sup> 5. In echarts, the term `data transform` means that generate new data from user provided source data and transform functions. both This feature is enable users to process data in declarative way, and provides users some common \"transform functions\" to make that kind of tasks \"out-of-the-box\". (For consistency in the context, the noun form of the word we keep using the \"transform\" rather than \"transformation\").\n\nThe abstract formula of data transform is: `outData = f(inputData)`, where the transform function `f` can be like `filter`, `sort`, `regression`, `boxplot`, `cluster`, `aggregate`(todo) ...\nWith the help of those transform methods, users can be implements the features like:\n\n- Partition data into multiple series.\n- Make some statistics and visualize the result.\n- Adapt some visualization algorithms to data and display the result.\n- Sort data.\n- Remove or choose some kind of empty or special datums.\n- ...\n\n## Get Started to Data Transform\n\nIn echarts, data transform is implemented based on the concept of [dataset](~https://echarts.apache.org/option.html##dataset). A [dataset.transform](https://echarts.apache.org/option.html##dataset.transform) can be configured in a dataset instance to indicate that this dataset is to be generated from this `transform`. For example:\n\n```js [live]\nvar option = {\n dataset: [\n {\n // This dataset is on `datasetIndex: 0`.\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Cereal', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Dumpling', 341, 25, 2011],\n ['Biscuit', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Cereal', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Dumpling', 241, 27, 2012],\n ['Biscuit', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Cereal', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Dumpling', 281, 31, 2013],\n ['Biscuit', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Cereal', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Dumpling', 211, 35, 2014],\n ['Biscuit', 72, 24, 2014]\n ]\n // id: 'a'\n },\n {\n // This dataset is on `datasetIndex: 1`.\n // A `transform` is configured to indicate that the\n // final data of this dataset is transformed via this\n // transform function.\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2011 }\n }\n // There can be optional properties `fromDatasetIndex` or `fromDatasetId`\n // to indicate that where is the input data of the transform from.\n // For example, `fromDatasetIndex: 0` specify the input data is from\n // the dataset on `datasetIndex: 0`, or `fromDatasetId: 'a'` specify the\n // input data is from the dataset having `id: 'a'`.\n // [DEFAULT_RULE]\n // If both `fromDatasetIndex` and `fromDatasetId` are omitted,\n // `fromDatasetIndex: 0` are used by default.\n },\n {\n // This dataset is on `datasetIndex: 2`.\n // Similarly, if neither `fromDatasetIndex` nor `fromDatasetId` is\n // specified, `fromDatasetIndex: 0` is used by default\n transform: {\n // The \"filter\" transform filters and gets data items only match\n // the given condition in property `config`.\n type: 'filter',\n // Transforms has a property `config`. In this \"filter\" transform,\n // the `config` specify the condition that each result data item\n // should be satisfied. In this case, this transform get all of\n // the data items that the value on dimension \"Year\" equals to 2012.\n config: { dimension: 'Year', value: 2012 }\n }\n },\n {\n // This dataset is on `datasetIndex: 3`\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2013 }\n }\n }\n ],\n series: [\n {\n type: 'pie',\n radius: 50,\n center: ['25%', '50%'],\n // In this case, each \"pie\" series reference to a dataset that has\n // the result of its \"filter\" transform.\n datasetIndex: 1\n },\n {\n type: 'pie',\n radius: 50,\n center: ['50%', '50%'],\n datasetIndex: 2\n },\n {\n type: 'pie',\n radius: 50,\n center: ['75%', '50%'],\n datasetIndex: 3\n }\n ]\n};\n```\n\nLet's summarize the key points of using data transform:\n\n- Generate new data from existing declared data via the declaration of `transform`, `fromDatasetIndex`/`fromDatasetId` in some blank dataset.\n- Series references these datasets to show the result.\n\n## Advanced Usage\n\n#### Piped Transform\n\nThere is a syntactic sugar that pipe transforms like:\n\n```js\noption = {\n dataset: [\n {\n source: [] // The original data\n },\n {\n // Declare transforms in an array to pipe multiple transforms,\n // which makes them execute one by one and take the output of\n // the previous transform as the input of the next transform.\n transform: [\n {\n type: 'filter',\n config: { dimension: 'Product', value: 'Tofu' }\n },\n {\n type: 'sort',\n config: { dimension: 'Year', order: 'desc' }\n }\n ]\n }\n ],\n series: {\n type: 'pie',\n // Display the result of the piped transform.\n datasetIndex: 1\n }\n};\n```\n\n> Note: theoretically any type of transform is able to have multiple input data and multiple output data. But when a transform is piped, it is only able to take one input (except it is the first transform of the pipe) and product one output (except it is the last transform of the pipe).\n\n#### Output Multiple Data\n\nIn most cases, transform functions only need to produce one data. But there is indeed scenarios that a transform function needs to produce multiple data, each of whom might be used by different series.\n\nFor example, in the built-in boxplot transform, besides boxplot data produced, the outlier data are also produced, which can be used in a scatter series. See the [example](https://echarts.apache.org/examples/en/editor.html?c=boxplot-light-velocity).\n\nWe use prop [dataset.fromTransformResult](https://echarts.apache.org/option.html##dataset.fromTransformResult) to satisfy this requirement. For example:\n\n```js\noption = {\n dataset: [\n {\n // Original source data.\n source: []\n },\n {\n transform: {\n type: 'boxplot'\n }\n // After this \"boxplot transform\" two result data generated:\n // result[0]: The boxplot data\n // result[1]: The outlier data\n // By default, when series or other dataset reference this dataset,\n // only result[0] can be visited.\n // If we need to visit result[1], we have to use another dataset\n // as follows:\n },\n {\n // This extra dataset references the dataset above, and retrieves\n // the result[1] as its own data. Thus series or other dataset can\n // reference this dataset to get the data from result[1].\n fromDatasetIndex: 1,\n fromTransformResult: 1\n }\n ],\n xAxis: {\n type: 'category'\n },\n yAxis: {},\n series: [\n {\n name: 'boxplot',\n type: 'boxplot',\n // Reference the data from result[0].\n datasetIndex: 1\n },\n {\n name: 'outlier',\n type: 'scatter',\n // Reference the data from result[1].\n datasetIndex: 2\n }\n ]\n};\n```\n\nWhat more, [dataset.fromTransformResult](https://echarts.apache.org/option.html##dataset.fromTransformResult) and [dataset.transform](https://echarts.apache.org/option.html##dataset.transform) can both appear in one dataset, which means that the input of the transform is from retrieved from the upstream result specified by `fromTransformResult`. For example:\n\n```js\n{\n fromDatasetIndex: 1,\n fromTransformResult: 1,\n transform: {\n type: 'sort',\n config: { dimension: 2, order: 'desc' }\n }\n}\n```\n\n#### Debug in Develop Environment\n\nWhen using data transform, we might run into the trouble that the final chart do not display correctly but we do not know where the config is wrong. There is a property `transform.print` might help in such case. (`transform.print` is only available in dev environment).\n\n```js\noption = {\n dataset: [\n {\n source: []\n },\n {\n transform: {\n type: 'filter',\n config: {},\n // The result of this transform will be printed\n // in dev tool via `console.log`.\n print: true\n }\n }\n ]\n};\n```\n\n## Filter Transform\n\nTransform type \"filter\" is a built-in transform that provide data filter according to specified conditions. The basic option is like:\n\n```js [live]\noption = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Latte', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Milk Tee', 341, 25, 2011],\n ['Porridge', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Latte', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Milk Tee', 241, 27, 2012],\n ['Porridge', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Latte', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Milk Tee', 281, 31, 2013],\n ['Porridge', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Latte', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Milk Tee', 211, 35, 2014],\n ['Porridge', 72, 24, 2014]\n ]\n },\n {\n transform: {\n type: 'filter',\n config: { dimension: 'Year', '=': 2011 }\n // The config is the \"condition\" of this filter.\n // This transform traverse the source data and\n // and retrieve all the items that the \"Year\"\n // is `2011`.\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n```\n\nThis is another example of filter transform:\n\n<md-example src=\"data-transform-filter\"></md-example>\n\n**About dimension:**\n\nThe `config.dimension` can be:\n\n- Dimension name declared in dataset, like `config: { dimension: 'Year', '=': 2011 }`. Dimension name declaration is not mandatory.\n- Dimension index (start from 0), like `config: { dimension: 3, '=': 2011 }`.\n\n**About relational operator:**\n\nThe relational operator can be:\n`>`(`gt`), `>=`(`gte`), `<`(`lt`), `<=`(`lte`), `=`(`eq`), `!=`(`ne`, `<>`), `reg`. (The name in the parentheses are aliases). They follows the common semantics.\nBesides the common number comparison, there is some extra features:\n\n- Multiple operators are able to appear in one {} item like `{ dimension: 'Price', '>=': 20, '<': 30 }`, which means logical \"and\" (Price >= 20 and Price < 30).\n- The data value can be \"numeric string\". Numeric string is a string that can be converted to number. Like ' 123 '. White spaces and line breaks will be auto trimmed in the conversion.\n- If we need to compare \"JS `Date` instance\" or date string (like '2012-05-12'), we need to specify `parser: 'time'` manually, like `config: { dimension: 3, lt: '2012-05-12', parser: 'time' }`.\n- Pure string comparison is supported but can only be used in `=`, `!=`. `>`, `>=`, `<`, `<=` do not support pure string comparison (the \"right value\" of the four operators can not be a \"string\").\n- The operator `reg` can be used to make regular expression test. Like using `{ dimension: 'Name', reg: /\\s+Müller\\s*$/ }` to select all data items that the \"Name\" dimension contains family name Müller.\n\n**About logical relationship:**\n\nSometimes we also need to express logical relationship ( `and` / `or` / `not` ):\n\n```js\noption = {\n dataset: [\n {\n source: [\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n // Use operator \"and\".\n // Similarly, we can also use \"or\", \"not\" in the same place.\n // But \"not\" should be followed with a {...} rather than `[...]`.\n and: [\n { dimension: 'Year', '=': 2011 },\n { dimension: 'Price', '>=': 20, '<': 30 }\n ]\n }\n // The condition is \"Year\" is 2011 and \"Price\" is greater\n // or equal to 20 but less than 30.\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n```\n\n`and`/`or`/`not` can be nested like:\n\n```js\ntransform: {\n type: 'filter',\n config: {\n or: [{\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Tofu' }\n }]\n }, {\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Cake' }\n }]\n }]\n }\n}\n```\n\n**About parser:**\n\nSome \"parser\" can be specified when make value comparison. At present only supported:\n\n- `parser: 'time'`: Parse the value to date time before comparing. The parser rule is the same as `echarts.time.parse`, where JS `Date` instance, timestamp number (in millisecond) and time string (like `'2012-05-12 03:11:22'`) are supported to be parse to timestamp number, while other value will be parsed to `NaN`.\n- `parser: 'trim'`: Trim the string before making comparison. For non-string, return the original value.\n- `parser: 'number'`: Force to convert the value to number before making comparison. If not possible to be converted to a meaningful number, converted to `NaN`. In most cases it is not necessary, because by default the value will be auto converted to number if possible before making comparison. But the default conversion is strict while this parser provide a loose strategy. If we meet the case that number string with unit suffix (like `'33%'`, `12px`), we should use `parser: 'number'` to convert them to number before making comparison.\n\nThis is an example to show the `parser: 'time'`:\n\n```js\noption = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Date'],\n ['Milk Tee', 311, 21, '2012-05-12'],\n ['Cake', 135, 28, '2012-05-22'],\n ['Latte', 262, 36, '2012-06-02'],\n ['Milk Tee', 359, 21, '2012-06-22'],\n ['Cake', 121, 28, '2012-07-02'],\n ['Latte', 271, 36, '2012-06-22']\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n dimension: 'Date',\n '>=': '2012-05',\n '<': '2012-06',\n parser: 'time'\n }\n }\n }\n ]\n};\n```\n\n**Formally definition:**\n\nFinally, we give the formally definition of the filter transform config here:\n\n```ts\ntype FilterTransform = {\n type: 'filter';\n config: ConditionalExpressionOption;\n};\ntype ConditionalExpressionOption =\n | true\n | false\n | RelationalExpressionOption\n | LogicalExpressionOption;\ntype RelationalExpressionOption = {\n dimension: DimensionName | DimensionIndex;\n parser?: 'time' | 'trim' | 'number';\n lt?: DataValue; // less than\n lte?: DataValue; // less than or equal\n gt?: DataValue; // greater than\n gte?: DataValue; // greater than or equal\n eq?: DataValue; // equal\n ne?: DataValue; // not equal\n '<'?: DataValue; // lt\n '<='?: DataValue; // lte\n '>'?: DataValue; // gt\n '>='?: DataValue; // gte\n '='?: DataValue; // eq\n '!='?: DataValue; // ne\n '<>'?: DataValue; // ne (SQL style)\n reg?: RegExp | string; // RegExp\n};\ntype LogicalExpressionOption = {\n and?: ConditionalExpressionOption[];\n or?: ConditionalExpressionOption[];\n not?: ConditionalExpressionOption;\n};\ntype DataValue = string | number | Date;\ntype DimensionName = string;\ntype DimensionIndex = number;\n```\n\n## The transform \"sort\"\n\nAnother built-in transform is \"sort\".\n\n```js\noption = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n // Sort by score.\n config: { dimension: 'score', order: 'asc' }\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n```\n\n<md-example src=\"data-transform-sort-bar\"></md-example>\n\nSome extra features about \"sort transform\":\n\n- Order by multiple dimensions is supported. See examples below.\n- The sort rule:\n - By default \"numeric\" (that is, number and numeric-string like `' 123 '`) are able to sorted by numeric order.\n - Otherwise \"non-numeric-string\" are also able to be ordered among themselves. This might help to the case like grouping data items with the same tag, especially when multiple dimensions participated in the sort (See example below).\n - When \"numeric\" is compared with \"non-numeric-string\", or either of them is compared with other types of value, they are not comparable. So we call the latter one as \"incomparable\" and treat it as \"min value\" or \"max value\" according to the prop `incomparable: 'min' | 'max'`. This feature usually helps to decide whether to put the empty values (like `null`, `undefined`, `NaN`, `''`, `'-'`) or other illegal values to the head or tail.\n- `filter: 'time' | 'trim' | 'number'` can be used, the same as \"filter transform\".\n - If intending to sort time values (JS `Date` instance or time string like `'2012-03-12 11:13:54'`), `parser: 'time'` should be specified. Like `config: { dimension: 'date', order: 'desc', parser: 'time' }`\n - If intending to sort values with unit suffix (like `'33%'`, `'16px'`), need to use `parser: 'number'`.\n\nSee an example of multiple order:\n\n```js\noption = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n config: [\n // Sort by the two dimensions.\n { dimension: 'profession', order: 'desc' },\n { dimension: 'score', order: 'desc' }\n ]\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n```\n\n<md-example src=\"doc-example/data-transform-multiple-sort-bar\"></md-example>\n\nFinally, we give the formally definition of the sort transform config here:\n\n```ts\ntype SortTransform = {\n type: 'filter';\n config: OrderExpression | OrderExpression[];\n};\ntype OrderExpression = {\n dimension: DimensionName | DimensionIndex;\n order: 'asc' | 'desc';\n incomparable?: 'min' | 'max';\n parser?: 'time' | 'trim' | 'number';\n};\ntype DimensionName = string;\ntype DimensionIndex = number;\n```\n\n## Use External Transforms\n\nBesides built-in transforms (like 'filter', 'sort'), we can also use external transforms to provide more powerful functionalities. Here we use a third-party library [ecStat](https://github.com/ecomfe/echarts-stat) as an example:\n\nThis case show how to make a regression line via ecStat:\n\n```js\n// Register the external transform at first.\necharts.registerTransform(ecStatTransform(ecStat).regression);\n```\n\n```js\noption = {\n dataset: [\n {\n source: rawData\n },\n {\n transform: {\n // Reference the registered external transform.\n // Note that external transform has a namespace (like 'ecStat:xxx'\n // has namespace 'ecStat').\n // built-in transform (like 'filter', 'sort') does not have a namespace.\n type: 'ecStat:regression',\n config: {\n // Parameters needed by the external transform.\n method: 'exponential'\n }\n }\n }\n ],\n xAxis: { type: 'category' },\n yAxis: {},\n series: [\n {\n name: 'scatter',\n type: 'scatter',\n datasetIndex: 0\n },\n {\n name: 'regression',\n type: 'line',\n symbol: 'none',\n datasetIndex: 1\n }\n ]\n};\n```\n\nExamples with echarts-stat:\n\n- [Aggregate](https://echarts.apache.org/examples/en/editor.html?c=data-transform-aggregate&edit=1&reset=1)\n- [Bar histogram](https://echarts.apache.org/examples/en/editor.html?c=bar-histogram&edit=1&reset=1)\n- [Scatter clustering](https://echarts.apache.org/examples/en/editor.html?c=scatter-clustering&edit=1&reset=1)\n- [Scatter linear regression](https://echarts.apache.org/examples/en/editor.html?c=scatter-linear-regression&edit=1&reset=1)\n- [Scatter exponential regression](https://echarts.apache.org/examples/en/editor.html?c=scatter-exponential-regression&edit=1&reset=1)\n- [Scatter logarithmic regression](https://echarts.apache.org/examples/en/editor.html?c=scatter-logarithmic-regression&edit=1&reset=1)\n- [Scatter polynomial regression](https://echarts.apache.org/examples/en/editor.html?c=scatter-polynomial-regression&edit=1&reset=1)\n","dir":"/en/concepts","path":"/en/concepts/data-transform","extension":".md","createdAt":"2021-06-04T12:26:37.918Z","updatedAt":"2021-07-29T06:27:28.876Z","meta":{"version":0,"revision":0,"created":1627897108899},"$loki":56},{"slug":"dataset","toc":[{"id":"define-data-under-series","depth":2,"text":"Define data under series"},{"id":"define-data-in-dataset","depth":2,"text":"Define data in dataset"},{"id":"map-from-data-to-chart","depth":2,"text":"Map from Data to Chart"},{"id":"map-row-or-column-of-dataset-to-series","depth":2,"text":"Map Row or Column of dataset to series"},{"id":"dimension","depth":2,"text":"Dimension"},{"id":"map-from-data-to-charts-seriesencode","depth":2,"text":"Map from Data to Charts (series.encode)"},{"id":"default-seriesencode","depth":2,"text":"Default series.encode"},{"id":"some-normal-settings-of-seriesencode","depth":2,"text":"Some Normal Settings of series.encode"},{"id":"visual-channel-mapping","depth":2,"text":"Visual Channel Mapping"},{"id":"formats-of-charts","depth":2,"text":"Formats of Charts"},{"id":"how-to-reference-several-datasets","depth":2,"text":"How to Reference Several Datasets"},{"id":"seriesdata-in-echarts-3","depth":2,"text":"series.data in ECharts 3"},{"id":"others","depth":2,"text":"Others"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"dataset"},"children":[{"type":"element","tag":"a","props":{"href":"#dataset","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dataset"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" is a component dedicated to manage data. Although you can set the data in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" for every series, we recommend you use the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" to manage the data since ECharts 4 so that the data can be reused by multiple components and convenient for the separation of \"data and configs\". After all, data is the most common part to be changed while other configurations will mostly not change at runtime."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"define-data-under-series"},"children":[{"type":"element","tag":"a","props":{"href":"#define-data-under-series","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Define "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If data is defined under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":", for example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Define "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" is suitable for customization for some special data structures such as \"tree\", \"graph\" and large data.\nHowever, it is not conducive to the data sharing for multiple series as well as mapping arrangement of chart types and series based on the original data. The other disadvantage is that programmers always need to divide the data in separate series (and categories) first."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"define-data-in-dataset"},"children":[{"type":"element","tag":"a","props":{"href":"#define-data-in-dataset","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Define "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here are the advantages if you define "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Follow the ideas of data visualization: (I) Provide the data, (II)Mapping from data to visual to become a chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Divide data from other configurations. The data often change but others not. It is\nEasy to manage separately."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Data can be reused by several series or component, you don't need to create copies of a large amount of data for every series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Support more common data format, such as a 2D array, array of classes, etc., to avoid users from converting for data format to a certain extent."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a simple "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n // Provide a set of data.\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n // Declare an x-axis (category axis).\n // The category map the first row in the dataset by default.\n xAxis: { type: 'category' },\n // Declare a y-axis (value axis).\n yAxis: {},\n // Declare several 'bar' series,\n // every series will auto-map to each rows by default.\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Or try to use the \"array of classes\" format:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n // Define the dimension of array. In cartesian coordinate system,\n // if the type of x-axis is category, map the first dimension to\n // x-axis by default, the second dimension to y-axis.\n // You can also specify 'series.encode' to complete the map\n // without specify dimensions. Please see below.\n\n dimensions: ['product', '2015', '2016', '2017'],\n source: [\n { product: 'Matcha Latte', '2015': 43.3, '2016': 85.8, '2017': 93.7 },\n { product: 'Milk Tea', '2015': 83.1, '2016': 73.4, '2017': 55.1 },\n { product: 'Cheese Cocoa', '2015': 86.4, '2016': 65.2, '2017': 82.5 },\n { product: 'Walnut Brownie', '2015': 72.4, '2016': 53.9, '2017': 39.1 }\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"map-from-data-to-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#map-from-data-to-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Map from Data to Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The ideas of data visualization: (I) Provide the data, (II)Mapping from data to visual to become a chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In short, you can set these configs of mapping:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Specify 'column' or 'row' of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" to map the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":". You can use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.seriesLayoutBy","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.seriesLayoutBy"}]},{"type":"text","value":" to configure it. The default is to map according to the column."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Rule of specifying dimension mapping: how to mapping from dimensions of 'dataset' to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"axis"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"tooltip"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":". To configure the mapping, please use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.encode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":". The previous case did not give the mapping configuration so that ECharts will follow the default: if x-axis is category, mapping to the first row in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":"; three-column chart mapping with each row in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" one by one."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The details of the configuration are shown below:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"map-row-or-column-of-dataset-to-series"},"children":[{"type":"element","tag":"a","props":{"href":"#map-row-or-column-of-dataset-to-series","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Map Row or Column of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"After having the dataset, you can configure flexibly: how the data map to the axis and graph series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" to change the understanding of row and column of the chart. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" can be:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"'column': Default, the series are placed above the column of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"'row': The series is placed above the row of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Check this case:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n source: [\n ['product', '2012', '2013', '2014', '2015'],\n ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],\n ['Milk Tea', 86.5, 92.1, 85.7, 83.1],\n ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]\n ]\n },\n xAxis: [\n { type: 'category', gridIndex: 0 },\n { type: 'category', gridIndex: 1 }\n ],\n yAxis: [{ gridIndex: 0 }, { gridIndex: 1 }],\n grid: [{ bottom: '55%' }, { top: '55%' }],\n series: [\n // These series will show in the first coordinate, each series map a row in dataset.\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n // These series will show in the second coordinate, each series map a column in dataset.\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The effect of configuration is shown in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=dataset-series-layout-by","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"this case"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"dimension"},"children":[{"type":"element","tag":"a","props":{"href":"#dimension","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dimension"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Most of the data described in commonly used charts is a \"two-dimensional table\" structure, in the previous case, we use a 2D array to contain a two-dimensional table. Now, when we map a series to a column, that column was called a \"dimension\" and each row was called \"item\", vice versa."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The dimension can have their name to display in the chart. Dimension name can be defined in the first column (row). In the previous case, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'score'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'amount'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'product'"}]},{"type":"text","value":" are the name of dimensions. The actual data locate from the second row. ECharts will automatically check if the first column (row) contained dimension name in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":". You can also use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.sourceHeader: true"}]},{"type":"text","value":" to declare that the first column (row) represents the dimension name."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Try to use single "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.dimensions"}]},{"type":"text","value":" or some "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.dimensions"}]},{"type":"text","value":" to define the dimensions, therefore you can specify the name and type together."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option1 = {\n dataset: {\n dimensions: [\n { name: 'score' },\n // can be abbreviated as 'string', to indicate dimension name 。\n 'amount',\n // Specify dimensions in 'type'.\n { name: 'product', type: 'ordinal' }\n ],\n source: []\n }\n // ...\n};\n\nvar option2 = {\n dataset: {\n source: []\n },\n series: {\n type: 'line',\n // series.dimensions will cover the config in dataset.dimension\n dimensions: [\n null, // use null if you do not want dimension name.\n 'amount',\n { name: 'product', type: 'ordinal' }\n ]\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In most cases, you don't need to define the dimension type because the ECharts will automatically judge it. If the judgment is inaccurate, you can define it manually."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Dimension type can be the following values:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'number'"}]},{"type":"text","value":": Default, normal data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'ordinal'"}]},{"type":"text","value":": String types data like categories, text can be used on the axis only with the dimension type 'ordinal'. ECharts will try to judge this type automatically but might be inaccurate, so you can specify manually."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":": To represent time data, ECharts can automatically analyze data as timestamp if the dimension type is defined as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":". For instance, ECharts will auto-analyze if the data of this dimension is '2017-05-10'"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":". If the dimension is used as time axis ([axis.type](https://echarts.apache.org/option.html##xAxis.type) ="}]},{"type":"text","value":"'time'"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"), the dimension type will also be"}]},{"type":"text","value":"'time'`. See "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" for more time type support."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'float'"}]},{"type":"text","value":": Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"TypedArray"}]},{"type":"text","value":" to optimize the performance in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'float'"}]},{"type":"text","value":" dimension."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'int'"}]},{"type":"text","value":": Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"TypedArray"}]},{"type":"text","value":" to optimize the performance in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'int'"}]},{"type":"text","value":" dimension."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"map-from-data-to-charts-seriesencode"},"children":[{"type":"element","tag":"a","props":{"href":"#map-from-data-to-charts-seriesencode","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Map from Data to Charts (series.encode)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"After understand the concept of dimension, you can use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.encode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" to make a mapping:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: {\n source: [\n ['score', 'amount', 'product'],\n [89.3, 58212, 'Matcha Latte'],\n [57.1, 78254, 'Milk Tea'],\n [74.4, 41032, 'Cheese Cocoa'],\n [50.1, 12755, 'Cheese Brownie'],\n [89.7, 20145, 'Matcha Cocoa'],\n [68.1, 79146, 'Tea'],\n [19.6, 91852, 'Orange Juice'],\n [10.6, 101852, 'Lemon Juice'],\n [32.7, 20112, 'Walnut Brownie']\n ]\n },\n xAxis: {},\n yAxis: { type: 'category' },\n series: [\n {\n type: 'bar',\n encode: {\n // Map \"amount\" column to x-axis.\n x: 'amount',\n // Map \"product\" row to y-axis.\n y: 'product'\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The basic structure of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" declaration:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"To the left of the colon: Specific name of axis or label."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"To the right of the colon: Dimension name (string) or number(int, count from 0), to specify one or several dimensions (using array)."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generally, the following info is not necessary to be defined. Fill in as needed."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attribute suggested by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Supported in every coordinate and series:\nencode: {\n // Display the value of dimension named \"product\" and \"score\" in tooltip.\n tooltip: ['product', 'score']\n // Connect dimension name of \"Dimension 1\" and \"Dimension 3\" as the series name. (Avoid to repeat longer names in series.name)\n seriesName: [1, 3],\n // Means to use the value in \"Dimension 2\" as the id. It makes the new and old data correspond by id\n // when using setOption to update data, so that it can show animation properly.\n itemId: 2,\n // The itemName will show in the legend of Pie Charts.\n itemName: 3\n}\n\n// Grid/cartesian coordinate unique configs:\nencode: {\n // Map \"Dimension 1\", \"Dimension 5\" and \"dimension named 'score'\" to x-axis:\n x: [1, 5, 'score'],\n // Map \"Dimension 0\" to y-axis:\n y: 0\n}\n\n// singleAxis unique configs:\nencode: {\n single: 3\n}\n\n// Polar coordinate unique configs:\nencode: {\n radius: 3,\n angle: 2\n}\n\n// Geo-coordinate unique configs:\nencode: {\n lng: 3,\n lat: 2\n}\n\n// For some charts without coordinate like pie chart, funnel chart:\nencode: {\n value: 3\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is a richer "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=dataset-encode1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":" of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"default-seriesencode"},"children":[{"type":"element","tag":"a","props":{"href":"#default-seriesencode","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Default series.encode"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It is worth mentioning that ECharts will use some default mapping rules for some general charts (line, bar, scatter, candlestick, etc.) if "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" is not specified. The default rule is:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In coordinate system (eg. Cartesian, Polar): + If there is category axis (axis.type = 'category'), map the first column(row) to the axis and each subsequent column(row) to each series. + If both axes is not the category, then map every two columns in one series to two axes."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Without axis (such as Pie Chart): + Use the first column(row) as the name, second column(row) as value. ECharts will not set the name if there is only one column(row)."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"While the default rule cannot fulfill the requirements, you can configure "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"encode"}]},{"type":"text","value":" by yourself, which is not complicate. Here is an "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=dataset-default","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"some-normal-settings-of-seriesencode"},"children":[{"type":"element","tag":"a","props":{"href":"#some-normal-settings-of-seriesencode","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Some Normal Settings of series.encode"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to set the 3rd column as x-axis, 5th column as y-axis?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n // dimensionIndex count from 0, so the 3rd line is dimensions[2].\n encode: { x: 2, y: 4 }\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to set the 3rd row as x-axis, 5th row as y-axis?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n encode: { x: 2, y: 4 },\n seriesLayoutBy: 'row'\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to set the 2nd column as a label?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:\nWe now support to trace value from specific dimension for "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.label.formatter","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"label.formatter"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n label: {\n // `'{@score}'` means the value in the dimension named \"score\".\n // `'{@[4]}'` means the value in dimension 4.\n formatter: 'aaa{@product}bbb{@score}ccc{@[4]}ddd';\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to show the 2nd and 3rd column in the tooltip?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n encode: {\n tooltip: [1, 2]\n // ...\n }\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to define the dimension name if is not included in the dataset?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option = {\n dataset: {\n dimensions: ['score', 'amount'],\n source: [\n [89.3, 3371],\n [92.1, 8123],\n [94.4, 1954],\n [85.4, 829]\n ]\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: How to map the 3rd column to the size of the scatter chart?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: {\n source: [\n [12, 323, 11.2],\n [23, 167, 8.3],\n [81, 284, 12],\n [91, 413, 4.1],\n [13, 287, 13.5]\n ]\n },\n visualMap: {\n show: false,\n dimension: 2, // means the 3rd column\n min: 2, // lower bound\n max: 15, // higher bound\n inRange: {\n // Size of the bubble.\n symbolSize: [5, 60]\n }\n },\n xAxis: {},\n yAxis: {},\n series: {\n type: 'scatter'\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Q: I specified a mapping in encode, why it is not worked?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A: Check your spelling, such as misspell the dimension name "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Life Expectancy'"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Life Expectency'"}]},{"type":"text","value":" in encode."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"visual-channel-mapping"},"children":[{"type":"element","tag":"a","props":{"href":"#visual-channel-mapping","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Visual Channel Mapping"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can map visual channel by using "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":". Check details in the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" document. Here is an "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=dataset-encode0","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"formats-of-charts"},"children":[{"type":"element","tag":"a","props":{"href":"#formats-of-charts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Formats of Charts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In most of the normal chart, the data is suitable to be described in the form of a two-dimensional table. That well-known software like 'MS Excel' and 'Numbers' all uses a two-dimensional table. Their data can be exported to JSON format and input to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" and avoid some steps of data processing."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can switch .csv file to JSON using tools like "},{"type":"element","tag":"a","props":{"href":"https://github.com/d3/d3-dsv","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dsv"}]},{"type":"text","value":" or "},{"type":"element","tag":"a","props":{"href":"https://github.com/mholt/PapaParse","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"PapaParse"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"As the example shown behind, in the data transmission of JavaScript, the two-dimensional data can be stored directly by two-dimensional array."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expect from the two-dimensional array, the dataset also supports using key-value which is also a common way. However, we don't support "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.seriesLayoutBy","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" in this format right now."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"dataset: [\n {\n // column by column key-value array is a normal format\n source: [\n { product: 'Matcha Latte', count: 823, score: 95.8 },\n { product: 'Milk Tea', count: 235, score: 81.4 },\n { product: 'Cheese Cocoa', count: 1042, score: 91.2 },\n { product: 'Walnut Brownie', count: 988, score: 76.9 }\n ]\n },\n {\n // row by row key-value\n source: {\n product: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],\n count: [823, 235, 1042, 988],\n score: [95.8, 81.4, 91.2, 76.9]\n }\n }\n];\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"how-to-reference-several-datasets"},"children":[{"type":"element","tag":"a","props":{"href":"#how-to-reference-several-datasets","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"How to Reference Several Datasets"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts support to define several datasets at the same moment. Series can assign the one to reference by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.datasetIndex","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.datasetIndex"}]},{"type":"text","value":". For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option = {\n dataset: [\n {\n // 1st Dataset\n source: []\n },\n {\n // 2nd Dataset\n source: []\n },\n {\n // 3rd Dataset。\n source: []\n }\n ],\n series: [\n {\n // Use 2nd dataset\n datasetIndex: 2\n },\n {\n // Use 1st dataset\n datasetIndex: 1\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"seriesdata-in-echarts-3"},"children":[{"type":"element","tag":"a","props":{"href":"#seriesdata-in-echarts-3","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"series.data in ECharts 3"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 4 still support the data declaration way in ECharts 3. If the series has already declared the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":", then use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" but not "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In fact, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" is an important setting method which will always exist. Some special non-table format chart like "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-treemap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"treemap"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-graph","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"graph"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-lines","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lines"}]},{"type":"text","value":" still cannot be edit in dataset, you still need to use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":". In another way, for render huge amount of data (over a million), you need to use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/api.html#echartsInstance.appendData","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"appendData"}]},{"type":"text","value":" which is not supported by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"others"},"children":[{"type":"element","tag":"a","props":{"href":"#others","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Others"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The following charts now support dataset:\n"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"bar"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pie"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scatter"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"effectScatter"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parallel"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"candlestick"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"map"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"funnel"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom"}]},{"type":"text","value":".\nECharts will support more charts in the future."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the end, here is an "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=dataset-link","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":" of several charts shared one "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" with linkage interaction."}]}]},"text":"# Dataset\n\n`dataset` is a component dedicated to manage data. Although you can set the data in `series.data` for every series, we recommend you use the `dataset` to manage the data since ECharts 4 so that the data can be reused by multiple components and convenient for the separation of \"data and configs\". After all, data is the most common part to be changed while other configurations will mostly not change at runtime.\n\n## Define `data` under `series`\n\nIf data is defined under `series`, for example:\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n```\n\nDefine `data` under `series` is suitable for customization for some special data structures such as \"tree\", \"graph\" and large data.\nHowever, it is not conducive to the data sharing for multiple series as well as mapping arrangement of chart types and series based on the original data. The other disadvantage is that programmers always need to divide the data in separate series (and categories) first.\n\n## Define `data` in `dataset`\n\nHere are the advantages if you define `data` in `dataset`:\n\n- Follow the ideas of data visualization: (I) Provide the data, (II)Mapping from data to visual to become a chart.\n- Divide data from other configurations. The data often change but others not. It is\n Easy to manage separately.\n- Data can be reused by several series or component, you don't need to create copies of a large amount of data for every series.\n- Support more common data format, such as a 2D array, array of classes, etc., to avoid users from converting for data format to a certain extent.\n\nHere is a simple `dataset` example:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n // Provide a set of data.\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n // Declare an x-axis (category axis).\n // The category map the first row in the dataset by default.\n xAxis: { type: 'category' },\n // Declare a y-axis (value axis).\n yAxis: {},\n // Declare several 'bar' series,\n // every series will auto-map to each rows by default.\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\nOr try to use the \"array of classes\" format:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n // Define the dimension of array. In cartesian coordinate system,\n // if the type of x-axis is category, map the first dimension to\n // x-axis by default, the second dimension to y-axis.\n // You can also specify 'series.encode' to complete the map\n // without specify dimensions. Please see below.\n\n dimensions: ['product', '2015', '2016', '2017'],\n source: [\n { product: 'Matcha Latte', '2015': 43.3, '2016': 85.8, '2017': 93.7 },\n { product: 'Milk Tea', '2015': 83.1, '2016': 73.4, '2017': 55.1 },\n { product: 'Cheese Cocoa', '2015': 86.4, '2016': 65.2, '2017': 82.5 },\n { product: 'Walnut Brownie', '2015': 72.4, '2016': 53.9, '2017': 39.1 }\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\n## Map from Data to Chart\n\nThe ideas of data visualization: (I) Provide the data, (II)Mapping from data to visual to become a chart.\n\nIn short, you can set these configs of mapping:\n\n- Specify 'column' or 'row' of `dataset` to map the `series`. You can use [series.seriesLayoutBy](https://echarts.apache.org/option.html##series.seriesLayoutBy) to configure it. The default is to map according to the column.\n- Rule of specifying dimension mapping: how to mapping from dimensions of 'dataset' to `axis`, `tooltip`, `label` and `visualMap`. To configure the mapping, please use [series.encode](https://echarts.apache.org/option.html##series.encode) and [visualMap](https://echarts.apache.org/option.html##visualMap). The previous case did not give the mapping configuration so that ECharts will follow the default: if x-axis is category, mapping to the first row in `dataset.source`; three-column chart mapping with each row in `dataset.source` one by one.\n\nThe details of the configuration are shown below:\n\n## Map Row or Column of `dataset` to `series`\n\nAfter having the dataset, you can configure flexibly: how the data map to the axis and graph series.\n\nYou can use `seriesLayoutBy` to change the understanding of row and column of the chart. `seriesLayoutBy` can be:\n\n- 'column': Default, the series are placed above the column of `dataset`.\n- 'row': The series is placed above the row of `dataset`.\n\nCheck this case:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n source: [\n ['product', '2012', '2013', '2014', '2015'],\n ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],\n ['Milk Tea', 86.5, 92.1, 85.7, 83.1],\n ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]\n ]\n },\n xAxis: [\n { type: 'category', gridIndex: 0 },\n { type: 'category', gridIndex: 1 }\n ],\n yAxis: [{ gridIndex: 0 }, { gridIndex: 1 }],\n grid: [{ bottom: '55%' }, { top: '55%' }],\n series: [\n // These series will show in the first coordinate, each series map a row in dataset.\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n // These series will show in the second coordinate, each series map a column in dataset.\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 }\n ]\n};\n```\n\nThe effect of configuration is shown in [this case](https://echarts.apache.org/examples/en/editor.html?c=dataset-series-layout-by).\n\n## Dimension\n\nMost of the data described in commonly used charts is a \"two-dimensional table\" structure, in the previous case, we use a 2D array to contain a two-dimensional table. Now, when we map a series to a column, that column was called a \"dimension\" and each row was called \"item\", vice versa.\n\nThe dimension can have their name to display in the chart. Dimension name can be defined in the first column (row). In the previous case, `'score'`, `'amount'`, `'product'` are the name of dimensions. The actual data locate from the second row. ECharts will automatically check if the first column (row) contained dimension name in `dataset.source`. You can also use `dataset.sourceHeader: true` to declare that the first column (row) represents the dimension name.\n\nTry to use single `dataset.dimensions` or some `series.dimensions` to define the dimensions, therefore you can specify the name and type together.\n\n```js\nvar option1 = {\n dataset: {\n dimensions: [\n { name: 'score' },\n // can be abbreviated as 'string', to indicate dimension name 。\n 'amount',\n // Specify dimensions in 'type'.\n { name: 'product', type: 'ordinal' }\n ],\n source: []\n }\n // ...\n};\n\nvar option2 = {\n dataset: {\n source: []\n },\n series: {\n type: 'line',\n // series.dimensions will cover the config in dataset.dimension\n dimensions: [\n null, // use null if you do not want dimension name.\n 'amount',\n { name: 'product', type: 'ordinal' }\n ]\n }\n // ...\n};\n```\n\nIn most cases, you don't need to define the dimension type because the ECharts will automatically judge it. If the judgment is inaccurate, you can define it manually.\n\nDimension type can be the following values:\n\n- `'number'`: Default, normal data.\n- `'ordinal'`: String types data like categories, text can be used on the axis only with the dimension type 'ordinal'. ECharts will try to judge this type automatically but might be inaccurate, so you can specify manually.\n- `'time'`: To represent time data, ECharts can automatically analyze data as timestamp if the dimension type is defined as `'time'`. For instance, ECharts will auto-analyze if the data of this dimension is '2017-05-10'`. If the dimension is used as time axis ([axis.type](https://echarts.apache.org/option.html##xAxis.type) =`'time'`), the dimension type will also be`'time'`. See [data](https://echarts.apache.org/option.html##series.data) for more time type support.\n- `'float'`: Use `TypedArray` to optimize the performance in `'float'` dimension.\n- `'int'`: Use `TypedArray` to optimize the performance in `'int'` dimension.\n\n## Map from Data to Charts (series.encode)\n\nAfter understand the concept of dimension, you can use [series.encode](https://echarts.apache.org/option.html##series.encode) to make a mapping:\n\n```js [live]\nvar option = {\n dataset: {\n source: [\n ['score', 'amount', 'product'],\n [89.3, 58212, 'Matcha Latte'],\n [57.1, 78254, 'Milk Tea'],\n [74.4, 41032, 'Cheese Cocoa'],\n [50.1, 12755, 'Cheese Brownie'],\n [89.7, 20145, 'Matcha Cocoa'],\n [68.1, 79146, 'Tea'],\n [19.6, 91852, 'Orange Juice'],\n [10.6, 101852, 'Lemon Juice'],\n [32.7, 20112, 'Walnut Brownie']\n ]\n },\n xAxis: {},\n yAxis: { type: 'category' },\n series: [\n {\n type: 'bar',\n encode: {\n // Map \"amount\" column to x-axis.\n x: 'amount',\n // Map \"product\" row to y-axis.\n y: 'product'\n }\n }\n ]\n};\n```\n\nThe basic structure of `series.encode` declaration:\n\n- To the left of the colon: Specific name of axis or label.\n- To the right of the colon: Dimension name (string) or number(int, count from 0), to specify one or several dimensions (using array).\n\nGenerally, the following info is not necessary to be defined. Fill in as needed.\n\nAttribute suggested by `series.encode`\n\n```js\n// Supported in every coordinate and series:\nencode: {\n // Display the value of dimension named \"product\" and \"score\" in tooltip.\n tooltip: ['product', 'score']\n // Connect dimension name of \"Dimension 1\" and \"Dimension 3\" as the series name. (Avoid to repeat longer names in series.name)\n seriesName: [1, 3],\n // Means to use the value in \"Dimension 2\" as the id. It makes the new and old data correspond by id\n\t// when using setOption to update data, so that it can show animation properly.\n itemId: 2,\n // The itemName will show in the legend of Pie Charts.\n itemName: 3\n}\n\n// Grid/cartesian coordinate unique configs:\nencode: {\n // Map \"Dimension 1\", \"Dimension 5\" and \"dimension named 'score'\" to x-axis:\n x: [1, 5, 'score'],\n // Map \"Dimension 0\" to y-axis:\n y: 0\n}\n\n// singleAxis unique configs:\nencode: {\n single: 3\n}\n\n// Polar coordinate unique configs:\nencode: {\n radius: 3,\n angle: 2\n}\n\n// Geo-coordinate unique configs:\nencode: {\n lng: 3,\n lat: 2\n}\n\n// For some charts without coordinate like pie chart, funnel chart:\nencode: {\n value: 3\n}\n```\n\nThis is a richer [example](https://echarts.apache.org/examples/en/editor.html?c=dataset-encode1) of `series.encode`.\n\n## Default series.encode\n\nIt is worth mentioning that ECharts will use some default mapping rules for some general charts (line, bar, scatter, candlestick, etc.) if `series.encode` is not specified. The default rule is:\n\n- In coordinate system (eg. Cartesian, Polar): + If there is category axis (axis.type = 'category'), map the first column(row) to the axis and each subsequent column(row) to each series. + If both axes is not the category, then map every two columns in one series to two axes.\n- Without axis (such as Pie Chart): + Use the first column(row) as the name, second column(row) as value. ECharts will not set the name if there is only one column(row).\n\nWhile the default rule cannot fulfill the requirements, you can configure `encode` by yourself, which is not complicate. Here is an [example](https://echarts.apache.org/examples/en/editor.html?c=dataset-default).\n\n## Some Normal Settings of series.encode\n\nQ: How to set the 3rd column as x-axis, 5th column as y-axis?\n\nA:\n\n```js\noption = {\n series: {\n // dimensionIndex count from 0, so the 3rd line is dimensions[2].\n encode: { x: 2, y: 4 }\n // ...\n }\n};\n```\n\nQ: How to set the 3rd row as x-axis, 5th row as y-axis?\n\nA:\n\n```js\noption = {\n series: {\n encode: { x: 2, y: 4 },\n seriesLayoutBy: 'row'\n // ...\n }\n};\n```\n\nQ: How to set the 2nd column as a label?\n\nA:\nWe now support to trace value from specific dimension for [label.formatter](https://echarts.apache.org/option.html##series.label.formatter):\n\n```js\nseries: {\n label: {\n // `'{@score}'` means the value in the dimension named \"score\".\n // `'{@[4]}'` means the value in dimension 4.\n formatter: 'aaa{@product}bbb{@score}ccc{@[4]}ddd';\n }\n}\n```\n\nQ: How to show the 2nd and 3rd column in the tooltip?\n\nA:\n\n```js\noption = {\n series: {\n encode: {\n tooltip: [1, 2]\n // ...\n }\n // ...\n }\n};\n```\n\nQ: How to define the dimension name if is not included in the dataset?\n\nA:\n\n```js\nvar option = {\n dataset: {\n dimensions: ['score', 'amount'],\n source: [\n [89.3, 3371],\n [92.1, 8123],\n [94.4, 1954],\n [85.4, 829]\n ]\n }\n};\n```\n\nQ: How to map the 3rd column to the size of the scatter chart?\n\nA:\n\n```js [live]\nvar option = {\n dataset: {\n source: [\n [12, 323, 11.2],\n [23, 167, 8.3],\n [81, 284, 12],\n [91, 413, 4.1],\n [13, 287, 13.5]\n ]\n },\n visualMap: {\n show: false,\n dimension: 2, // means the 3rd column\n min: 2, // lower bound\n max: 15, // higher bound\n inRange: {\n // Size of the bubble.\n symbolSize: [5, 60]\n }\n },\n xAxis: {},\n yAxis: {},\n series: {\n type: 'scatter'\n }\n};\n```\n\nQ: I specified a mapping in encode, why it is not worked?\n\nA: Check your spelling, such as misspell the dimension name `'Life Expectancy'` to `'Life Expectency'` in encode.\n\n## Visual Channel Mapping\n\nWe can map visual channel by using [visualMap](https://echarts.apache.org/option.html##visualMap). Check details in the [visualMap](https://echarts.apache.org/option.html##visualMap) document. Here is an [example](https://echarts.apache.org/examples/en/editor.html?c=dataset-encode0).\n\n## Formats of Charts\n\nIn most of the normal chart, the data is suitable to be described in the form of a two-dimensional table. That well-known software like 'MS Excel' and 'Numbers' all uses a two-dimensional table. Their data can be exported to JSON format and input to `dataset.source` and avoid some steps of data processing.\n\n> You can switch .csv file to JSON using tools like [dsv](https://github.com/d3/d3-dsv) or [PapaParse](https://github.com/mholt/PapaParse).\n\nAs the example shown behind, in the data transmission of JavaScript, the two-dimensional data can be stored directly by two-dimensional array.\n\nExpect from the two-dimensional array, the dataset also supports using key-value which is also a common way. However, we don't support [seriesLayoutBy](https://echarts.apache.org/option.html##series.seriesLayoutBy) in this format right now.\n\n```js\ndataset: [\n {\n // column by column key-value array is a normal format\n source: [\n { product: 'Matcha Latte', count: 823, score: 95.8 },\n { product: 'Milk Tea', count: 235, score: 81.4 },\n { product: 'Cheese Cocoa', count: 1042, score: 91.2 },\n { product: 'Walnut Brownie', count: 988, score: 76.9 }\n ]\n },\n {\n // row by row key-value\n source: {\n product: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],\n count: [823, 235, 1042, 988],\n score: [95.8, 81.4, 91.2, 76.9]\n }\n }\n];\n```\n\n## How to Reference Several Datasets\n\nECharts support to define several datasets at the same moment. Series can assign the one to reference by [series.datasetIndex](https://echarts.apache.org/option.html##series.datasetIndex). For example:\n\n```js\nvar option = {\n dataset: [\n {\n // 1st Dataset\n source: []\n },\n {\n // 2nd Dataset\n source: []\n },\n {\n // 3rd Dataset。\n source: []\n }\n ],\n series: [\n {\n // Use 2nd dataset\n datasetIndex: 2\n },\n {\n // Use 1st dataset\n datasetIndex: 1\n }\n ]\n};\n```\n\n## series.data in ECharts 3\n\nECharts 4 still support the data declaration way in ECharts 3. If the series has already declared the [series.data](https://echarts.apache.org/option.html##series.data), then use [series.data](https://echarts.apache.org/option.html##series.data) but not `dataset`.\n\n```js\noption = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n```\n\nIn fact, [series.data](https://echarts.apache.org/option.html##series.data) is an important setting method which will always exist. Some special non-table format chart like [treemap](https://echarts.apache.org/option.html##series-treemap), [graph](https://echarts.apache.org/option.html##series-graph) and [lines](https://echarts.apache.org/option.html##series-lines) still cannot be edit in dataset, you still need to use [series.data](https://echarts.apache.org/option.html##series.data). In another way, for render huge amount of data (over a million), you need to use [appendData](https://echarts.apache.org/api.html#echartsInstance.appendData) which is not supported by `dataset`.\n\n## Others\n\nThe following charts now support dataset:\n`line`, `bar`, `pie`, `scatter`, `effectScatter`, `parallel`, `candlestick`, `map`, `funnel`, `custom`.\nECharts will support more charts in the future.\n\nIn the end, here is an [example](https://echarts.apache.org/examples/en/editor.html?c=dataset-link) of several charts shared one `dataset` with linkage interaction.\n","dir":"/en/concepts","path":"/en/concepts/dataset","extension":".md","createdAt":"2021-06-04T12:26:37.918Z","updatedAt":"2021-07-21T15:13:37.999Z","meta":{"version":0,"revision":0,"created":1627897108956},"$loki":57},{"slug":"server","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"server-side-rendering"},"children":[{"type":"element","tag":"a","props":{"href":"#server-side-rendering","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Server Side Rendering"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" can be rendered at server-side. For example, the thumbnails in the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/index.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"official examples page"}]},{"type":"text","value":" are generated at a server."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Commonly used headless tool is required, for example, "},{"type":"element","tag":"a","props":{"href":"https://github.com/GoogleChrome/puppeteer","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"puppeteer"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"headless chrome"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://github.com/Automattic/node-canvas","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"node-canvas"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://github.com/jsdom/jsdom","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"jsdom"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"http://phantomjs.org/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"PhantomJS"}]},{"type":"text","value":", etc."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Some solutions contributed by the community are list as follows:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/hellosean1025/node-echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/hellosean1025/node-echarts"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/chfw/echarts-scrappeteer","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/chfw/echarts-scrappeteer"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Notice: if server-side rendering result is different from browser-side rendering, please set "},{"type":"element","tag":"a","props":{"href":"option.html#animation"},"children":[{"type":"text","value":"animation"}]},{"type":"text","value":" as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":" and try again."}]}]},"text":"# Server Side Rendering\n\nApache ECharts<sup>TM</sup> can be rendered at server-side. For example, the thumbnails in the [official examples page](https://echarts.apache.org/examples/en/index.html) are generated at a server.\n\nCommonly used headless tool is required, for example, [puppeteer](https://github.com/GoogleChrome/puppeteer), [headless chrome](https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md), [node-canvas](https://github.com/Automattic/node-canvas), [jsdom](https://github.com/jsdom/jsdom), [PhantomJS](http://phantomjs.org/), etc.\n\nSome solutions contributed by the community are list as follows:\n\n- https://github.com/hellosean1025/node-echarts\n- https://github.com/chfw/echarts-scrappeteer\n- https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js\n- https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73\n\nNotice: if server-side rendering result is different from browser-side rendering, please set [animation](option.html#animation) as `false` and try again.\n","dir":"/en/application/cross-platform","path":"/en/application/cross-platform/server","extension":".md","createdAt":"2021-07-21T12:10:11.752Z","updatedAt":"2021-07-21T12:14:25.610Z","meta":{"version":0,"revision":0,"created":1627897108969},"$loki":58},{"slug":"dynamic-data","toc":[{"id":"asynchronous-loading","depth":2,"text":"Asynchronous Loading"},{"id":"loading-animation","depth":2,"text":"loading Animation"},{"id":"dynamic-update","depth":2,"text":"Dynamic Update"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"asynchronous-data-loading-and-dynamic-update"},"children":[{"type":"element","tag":"a","props":{"href":"#asynchronous-data-loading-and-dynamic-update","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Asynchronous Data Loading and Dynamic Update"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"asynchronous-loading"},"children":[{"type":"element","tag":"a","props":{"href":"#asynchronous-loading","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Asynchronous Loading"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data in "},{"type":"element","tag":"a","props":{"href":"en/get-started"},"children":[{"type":"text","value":"Getting Started Example"}]},{"type":"text","value":" is directly updated by using "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":". But in many cases, data need to be filled by asynchronous loading frequently. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ECharts"}]},{"type":"text","value":" can implement asynchronous loading in a simple way. You can get data asynchronously through a function such as jQuery and use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":" to fill in data and configs after the chart initialized."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var myChart = echarts.init(document.getElementById('main'));\n\n$.get('data.json').done(function(data) {\n // Structure of data:\n // {\n // categories: [\"Shirt\",\"Wool sweater\",\"Chiffon shirt\",\"Pants\",\"High-heeled shoes\",\"socks\"],\n // values: [5, 20, 36, 10, 10, 20]\n // }\n myChart.setOption({\n title: {\n text: 'Asynchronous Loading Example'\n },\n tooltip: {},\n legend: {},\n xAxis: {\n data: data.categories\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: data.values\n }\n ]\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Or display empty axes with all styles defined before fill in the data:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var myChart = echarts.init(document.getElementById('main'));\n// Show title, legends and empty axes\nmyChart.setOption({\n title: {\n text: 'Asynchronous Loading Example'\n },\n tooltip: {},\n legend: {\n data: ['Sales']\n },\n xAxis: {\n data: []\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: []\n }\n ]\n});\n\n// Asynchronous Data Loading\n$.get('data.json').done(function(data) {\n // Fill in the data\n myChart.setOption({\n xAxis: {\n data: data.categories\n },\n series: [\n {\n // Find series by name\n name: 'Sales',\n data: data.data\n }\n ]\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-async"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You need to use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" to \"navigate\" ECharts when updating data. In the previous example, the chart can update normally depending on the order of series, but we recommend you to add the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" data while updating data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"loading-animation"},"children":[{"type":"element","tag":"a","props":{"href":"#loading-animation","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"loading Animation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When it takes a long time to load the data, the user is facing the empty chart with only axes will wonder if there are bugs appear."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts have a simple loading animation by default. You can call "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.showLoading"},"children":[{"type":"text","value":"showLoading"}]},{"type":"text","value":" to display. When the data loading was completed, call "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.hideLoading"},"children":[{"type":"text","value":"hideLoading"}]},{"type":"text","value":" to hide the animation."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.showLoading();\n$.get('data.json').done(function (data) {\n myChart.hideLoading();\n myChart.setOption(...);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is the effect:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-loading"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"dynamic-update"},"children":[{"type":"element","tag":"a","props":{"href":"#dynamic-update","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dynamic Update"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts was driven by data, change in data will drive changes in the presentation of the chart. Therefore, It's surprisingly simple to implement a dynamic update."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All data's update was implemented by "},{"type":"element","tag":"a","props":{"href":"~api.html#echartsInstance.setOption"},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":". You only need to fetch the data periodically. ECharts will find the difference between two groups of data to use the proper way to choose the animation."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Check the following example."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-dynamic-data"},"children":[{"type":"text","value":"\n"}]}]},"text":"# Asynchronous Data Loading and Dynamic Update\n\n## Asynchronous Loading\n\nData in [Getting Started Example](en/get-started) is directly updated by using `setOption`. But in many cases, data need to be filled by asynchronous loading frequently. `ECharts` can implement asynchronous loading in a simple way. You can get data asynchronously through a function such as jQuery and use `setOption` to fill in data and configs after the chart initialized.\n\n```js\nvar myChart = echarts.init(document.getElementById('main'));\n\n$.get('data.json').done(function(data) {\n // Structure of data:\n // {\n // categories: [\"Shirt\",\"Wool sweater\",\"Chiffon shirt\",\"Pants\",\"High-heeled shoes\",\"socks\"],\n // values: [5, 20, 36, 10, 10, 20]\n // }\n myChart.setOption({\n title: {\n text: 'Asynchronous Loading Example'\n },\n tooltip: {},\n legend: {},\n xAxis: {\n data: data.categories\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: data.values\n }\n ]\n });\n});\n```\n\nOr display empty axes with all styles defined before fill in the data:\n\n```js\nvar myChart = echarts.init(document.getElementById('main'));\n// Show title, legends and empty axes\nmyChart.setOption({\n title: {\n text: 'Asynchronous Loading Example'\n },\n tooltip: {},\n legend: {\n data: ['Sales']\n },\n xAxis: {\n data: []\n },\n yAxis: {},\n series: [\n {\n name: 'Sales',\n type: 'bar',\n data: []\n }\n ]\n});\n\n// Asynchronous Data Loading\n$.get('data.json').done(function(data) {\n // Fill in the data\n myChart.setOption({\n xAxis: {\n data: data.categories\n },\n series: [\n {\n // Find series by name\n name: 'Sales',\n data: data.data\n }\n ]\n });\n});\n```\n\nFor example:\n\n<md-example src=\"doc-example/tutorial-async\"></md-example>\n\nYou need to use `name` to \"navigate\" ECharts when updating data. In the previous example, the chart can update normally depending on the order of series, but we recommend you to add the `name` data while updating data.\n\n## loading Animation\n\nWhen it takes a long time to load the data, the user is facing the empty chart with only axes will wonder if there are bugs appear.\n\nECharts have a simple loading animation by default. You can call [showLoading](api.html#echartsInstance.showLoading) to display. When the data loading was completed, call [hideLoading](api.html#echartsInstance.hideLoading) to hide the animation.\n\n```js\nmyChart.showLoading();\n$.get('data.json').done(function (data) {\n myChart.hideLoading();\n myChart.setOption(...);\n});\n```\n\nHere is the effect:\n\n<md-example src=\"doc-example/tutorial-loading\"></md-example>\n\n## Dynamic Update\n\nECharts was driven by data, change in data will drive changes in the presentation of the chart. Therefore, It's surprisingly simple to implement a dynamic update.\n\nAll data's update was implemented by [setOption](~api.html#echartsInstance.setOption). You only need to fetch the data periodically. ECharts will find the difference between two groups of data to use the proper way to choose the animation.\n\nCheck the following example.\n\n<md-example src=\"doc-example/tutorial-dynamic-data\"></md-example>\n","dir":"/en/application/data","path":"/en/application/data/dynamic-data","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T10:41:22.980Z","meta":{"version":0,"revision":0,"created":1627897108977},"$loki":59},{"slug":"rich-text","toc":[{"id":"options-about-text","depth":2,"text":"Options about Text"},{"id":"basic-styles-of-text-text-block-and-text-fragment","depth":2,"text":"Basic Styles of Text, Text Block and Text Fragment"},{"id":"label-position","depth":2,"text":"Label Position"},{"id":"label-rotation","depth":2,"text":"Label Rotation"},{"id":"layout-and-alignment-of-text-fragment","depth":2,"text":"Layout and Alignment of Text fragment"},{"id":"effects-icon-horizontal-rule-title-block-simple-table","depth":2,"text":"Effects: Icon, Horizontal Rule, Title Block, Simple Table"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rich-text"},"children":[{"type":"element","tag":"a","props":{"href":"#rich-text","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Rich Text"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Rich text can be used in Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" labels of series, axis or other components since v3.7. Which supports:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Box styles (background, border, shadow, etc.), rotation, position of a text block can be specified."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Styles (color, font, width/height, background, shadow, etc.) and alignment can be customzied on fragments of text."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Image can be used in text as icon or background."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Combine these configurations, some special effects can be made, such as simple table, horizontal rule (hr)."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"At the beginning, the meanings of two terms that will be used below should be clarified:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Text Block: The whole block of label text."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Text fragment: Some piece of text in a text block."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/text-block-fragment","width":400,"height":300},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"options-about-text"},"children":[{"type":"element","tag":"a","props":{"href":"#options-about-text","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Options about Text"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"echarts provides plenty of text options, including:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Basic font style: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontWeight"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontSize"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontFamily"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Fill of text: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stroke of text: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderWidth"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Shadow of text: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowBlur"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowOffsetX"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowOffsetY"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Box size of text block or text fragment: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Alignment of text block or text fragment: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Border, background (color or image) of text block or text fragment: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderRadius"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Shadow of text block or text fragment: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowBlur"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetX"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetY"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Position and rotation of text block: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rotate"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"User can defined styles for text fragment in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" property. For example, "},{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.rich"},"children":[{"type":"text","value":"series-bar.label.rich"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"labelOption = {\n // Styles defined in 'rich' can be applied to some fragments\n // of text by adding some markers to those fragment, like\n // `{styleName|text content text content}`.\n // `'\\n'` is the newline character.\n formatter: [\n '{a|Style \"a\" is applied to this fragment}',\n '{b|Style \"b\" is applied to this fragment}This fragment use default style{x|use style \"x\"}'\n ].join('\\n'),\n\n // Styles for the whole text block are defined here:\n color: '#333',\n fontSize: 5,\n fontFamily: 'Arial',\n borderWidth: 3,\n backgroundColor: '#984455',\n padding: [3, 10, 10, 5],\n lineHeight: 20,\n\n // Styles for text fragments are defined here:\n rich: {\n a: {\n color: 'red',\n lineHeight: 10\n },\n b: {\n backgroundColor: {\n image: 'xxx/xxx.jpg'\n },\n height: 40\n },\n x: {\n fontSize: 18,\n fontFamily: 'Microsoft YaHei',\n borderColor: '#449933',\n borderRadius: 4\n }\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Notice: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":" only work when "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" specified."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"basic-styles-of-text-text-block-and-text-fragment"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-styles-of-text-text-block-and-text-fragment","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Styles of Text, Text Block and Text Fragment"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Basic font style can be set to text: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontWeight"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontSize"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontFamily"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Fill color and stroke color can be set to text: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderWidth"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Border style and background style can be set to text block: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Border style and background style can be set to text fragment too: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n symbolSize: 1,\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n show: true,\n formatter: [\n 'Plain text',\n '{textBorder|textBorderColor + textBorderWidth}',\n '{textShadow|textShadowColor + textShadowBlur + textShadowOffsetX + textShadowOffsetY}',\n '{bg|backgroundColor + borderRadius + padding}',\n '{border|borderColor + borderWidth + borderRadius + padding}',\n '{shadow|shadowColor + shadowBlur + shadowOffsetX + shadowOffsetY}'\n ].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#333',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n color: '#000',\n fontSize: 14,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n lineHeight: 30,\n rich: {\n textBorder: {\n fontSize: 20,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n },\n textShadow: {\n fontSize: 16,\n textShadowBlur: 5,\n textShadowColor: '#000',\n textShadowOffsetX: 3,\n textShadowOffsetY: 3,\n color: '#fff'\n },\n bg: {\n backgroundColor: '#339911',\n color: '#fff',\n borderRadius: 15,\n padding: 5\n },\n border: {\n color: '#000',\n borderColor: '#449911',\n borderWidth: 1,\n borderRadius: 3,\n padding: 5\n },\n shadow: {\n backgroundColor: '#992233',\n padding: 5,\n color: '#fff',\n shadowBlur: 5,\n shadowColor: '#336699',\n shadowOffsetX: 6,\n shadowOffsetY: 6\n }\n }\n }\n }\n }\n ]\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: -1,\n max: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"label-position"},"children":[{"type":"element","tag":"a","props":{"href":"#label-position","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Label Position"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" option can be use in charts like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"bar"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scatter"}]},{"type":"text","value":", etc. The position of a label, can be specified by "},{"type":"element","tag":"a","props":{"href":"option.html#series-scatter.label.position"},"children":[{"type":"text","value":"label.position"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"option.html#series-scatter.label.distance"},"children":[{"type":"text","value":"label.distance"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Try to modify the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":" option in the following example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n symbolSize: 160,\n symbol: 'roundRect',\n data: [[1, 1]],\n label: {\n normal: {\n // Options: 'left', 'right', 'top', 'bottom', 'inside', 'insideTop', 'insideLeft', 'insideRight', 'insideBottom', 'insideTopLeft', 'insideTopRight', 'insideBottomLeft', 'insideBottomRight'\n position: 'top',\n distance: 10,\n\n show: true,\n formatter: ['Label Text'].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#555',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n fontSize: 18,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n }\n }\n }\n ],\n xAxis: {\n max: 2\n },\n yAxis: {\n max: 2\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Notice, there are different optional values of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":" by different chart types. And "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":" is not supported in every chart. More detailed info can be checked in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"option doc"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"label-rotation"},"children":[{"type":"element","tag":"a","props":{"href":"#label-rotation","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Label Rotation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Sometimes label is needed to be rotated. For example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"const labelOption = {\n show: true,\n rotate: 90,\n formatter: '{c} {name|{a}}',\n fontSize: 16,\n rich: {\n name: {}\n }\n};\n\noption = {\n xAxis: [\n {\n type: 'category',\n data: ['2012', '2013', '2014', '2015', '2016']\n }\n ],\n yAxis: [\n {\n type: 'value'\n }\n ],\n series: [\n {\n name: 'Forest',\n type: 'bar',\n barGap: 0,\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [320, 332, 301, 334, 390]\n },\n {\n name: 'Steppe',\n type: 'bar',\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [220, 182, 191, 234, 290]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.align"},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" and"},{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.verticalAlign"},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" can be used to adjust location of label in this scenario."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Notice, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" are applied firstly, then rotate."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"layout-and-alignment-of-text-fragment"},"children":[{"type":"element","tag":"a","props":{"href":"#layout-and-alignment-of-text-fragment","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Layout and Alignment of Text fragment"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To understand the layout rule, every text fragment can be imagined as a "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"inline-block"}]},{"type":"text","value":" dom element in CSS."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"content box size"}]},{"type":"text","value":" of a text fragment is determined by its font size by default. It can also be specified directly by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":", although they are rarely set. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"border box size"}]},{"type":"text","value":" of a text fragment is calculated by adding the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"border box size"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Only "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'\\n'"}]},{"type":"text","value":" is the newline character, which breaks a line."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Multiple text fragment exist in a single line. The height of a line is determined by the biggest "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" of text fragments. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" of a text fragment can be specified in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":", or in the parent level of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":", otherwise using "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"box size"}]},{"type":"text","value":" of the text fragment."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Having "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" determined, the vertical position of text fragments can be determined by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" (there is a little different from the rule in CSS):"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'bottom'"}]},{"type":"text","value":": The bottom edge of the text fragment sticks to the bottom edge of the line."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'top'"}]},{"type":"text","value":": The top edge of the text fragment sticks to the top edge of the line."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'middle'"}]},{"type":"text","value":": In the middle of the line."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The width of a text block can be specified by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":", otherwise, by the longest line. Having the width determined, text fragment can be placed in each line, where the horizontal position of text fragments can be determined by its "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Firstly, place text fragments whose "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'left'"}]},{"type":"text","value":" from left to right continuously."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Secondly, place text fragments whose "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'right'"}]},{"type":"text","value":" from right to left continuously."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Finally, the text fragments remained will be sticked and placed in the center of the rest of space."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The position of text in a text fragment:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'center'"}]},{"type":"text","value":", text aligns at the center of the text fragment box."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'left'"}]},{"type":"text","value":", text aligns at the left of the text fragment box."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'right'"}]},{"type":"text","value":", text aligns at the right of the text fragment box."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"effects-icon-horizontal-rule-title-block-simple-table"},"children":[{"type":"element","tag":"a","props":{"href":"#effects-icon-horizontal-rule-title-block-simple-table","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Effects: Icon, Horizontal Rule, Title Block, Simple Table"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n formatter: [\n '{tc|Center Title}{titleBg|}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n },\n {\n value: [0, 1],\n label: {\n normal: {\n formatter: [\n '{titleBg|Left Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n')\n }\n }\n },\n {\n value: [0, 2],\n label: {\n normal: {\n formatter: [\n '{titleBg|Right Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n }\n ],\n symbolSize: 1,\n label: {\n normal: {\n show: true,\n backgroundColor: '#ddd',\n borderColor: '#555',\n borderWidth: 1,\n borderRadius: 5,\n color: '#000',\n fontSize: 14,\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n },\n tc: {\n align: 'center',\n color: '#eee'\n },\n hr: {\n borderColor: '#777',\n width: '100%',\n borderWidth: 0.5,\n height: 0\n },\n sunny: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/sunny_128.png'\n }\n },\n cloudy: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/cloudy_128.png'\n }\n },\n showers: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/showers_128.png'\n }\n }\n }\n }\n }\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: 0,\n max: 2,\n inverse: true\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Icon is implemented by using image in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"rich: {\n Sunny: {\n backgroundColor: {\n image: './data/asset/img/weather/sunny_128.png'\n },\n // Can only height specified, but leave width auto obtained\n // from the image, where the aspect ratio kept.\n height: 30\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Horizontal rule (like HTML <hr> tag) can be implemented by border:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"rich: {\n hr: {\n borderColor: '#777',\n // width is set as '100%' to fullfill the text block.\n // Notice, the percentage is based on the content box, without\n // padding. Although it is a little different from CSS rule,\n // it is convinent in most cases.\n width: '100%',\n borderWidth: 0.5,\n height: 0\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Title block can be implemented by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// Title is at left.\nformatter: '{titleBg|Left Title}',\nrich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n}\n\n// Title is in the center of the line.\n// This implementation is a little tricky, but is works\n// without more complicated layout mechanism involved.\nformatter: '{tc|Center Title}{titleBg|}',\nrich: {\n titleBg: {\n align: 'right',\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Simple table can be implemented by specify the same width to text fragments that are in the same column of different lines. See the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=pie-rich-text","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":"."}]}]},"text":"# Rich Text\n\nRich text can be used in Apache ECharts<sup>TM</sup> labels of series, axis or other components since v3.7. Which supports:\n\n- Box styles (background, border, shadow, etc.), rotation, position of a text block can be specified.\n- Styles (color, font, width/height, background, shadow, etc.) and alignment can be customzied on fragments of text.\n- Image can be used in text as icon or background.\n- Combine these configurations, some special effects can be made, such as simple table, horizontal rule (hr).\n\nAt the beginning, the meanings of two terms that will be used below should be clarified:\n\n- Text Block: The whole block of label text.\n- Text fragment: Some piece of text in a text block.\n\nFor example:\n\n<md-example src=\"doc-example/text-block-fragment\" width=\"400\" height=\"300\"></md-example>\n\n## Options about Text\n\necharts provides plenty of text options, including:\n\n- Basic font style: `fontStyle`, `fontWeight`, `fontSize`, `fontFamily`.\n- Fill of text: `color`.\n- Stroke of text: `textBorderColor`, `textBorderWidth`.\n- Shadow of text: `textShadowColor`, `textShadowBlur`, `textShadowOffsetX`, `textShadowOffsetY`.\n- Box size of text block or text fragment: `lineHeight`, `width`, `height`, `padding`.\n- Alignment of text block or text fragment: `align`, `verticalAlign`.\n- Border, background (color or image) of text block or text fragment: `backgroundColor`, `borderColor`, `borderWidth`, `borderRadius`.\n- Shadow of text block or text fragment: `shadowColor`, `shadowBlur`, `shadowOffsetX`, `shadowOffsetY`.\n- Position and rotation of text block: `position`, `distance`, `rotate`.\n\nUser can defined styles for text fragment in `rich` property. For example, [series-bar.label.rich](option.html#series-bar.label.rich)\n\nFor example:\n\n```js\nlabelOption = {\n // Styles defined in 'rich' can be applied to some fragments\n // of text by adding some markers to those fragment, like\n // `{styleName|text content text content}`.\n // `'\\n'` is the newline character.\n formatter: [\n '{a|Style \"a\" is applied to this fragment}',\n '{b|Style \"b\" is applied to this fragment}This fragment use default style{x|use style \"x\"}'\n ].join('\\n'),\n\n // Styles for the whole text block are defined here:\n color: '#333',\n fontSize: 5,\n fontFamily: 'Arial',\n borderWidth: 3,\n backgroundColor: '#984455',\n padding: [3, 10, 10, 5],\n lineHeight: 20,\n\n // Styles for text fragments are defined here:\n rich: {\n a: {\n color: 'red',\n lineHeight: 10\n },\n b: {\n backgroundColor: {\n image: 'xxx/xxx.jpg'\n },\n height: 40\n },\n x: {\n fontSize: 18,\n fontFamily: 'Microsoft YaHei',\n borderColor: '#449933',\n borderRadius: 4\n }\n // ...\n }\n};\n```\n\n> Notice: `width` 和 `height` only work when `rich` specified.\n\n## Basic Styles of Text, Text Block and Text Fragment\n\nBasic font style can be set to text: `fontStyle`, `fontWeight`, `fontSize`, `fontFamily`.\n\nFill color and stroke color can be set to text: `color`, `textBorderColor`, `textBorderWidth`.\n\nBorder style and background style can be set to text block: `borderColor`, `borderWidth`, `backgroundColor`, `padding`.\n\nBorder style and background style can be set to text fragment too: `borderColor`, `borderWidth`, `backgroundColor`, `padding`.\n\nFor example:\n\n```js [live]\noption = {\n series: [\n {\n type: 'scatter',\n symbolSize: 1,\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n show: true,\n formatter: [\n 'Plain text',\n '{textBorder|textBorderColor + textBorderWidth}',\n '{textShadow|textShadowColor + textShadowBlur + textShadowOffsetX + textShadowOffsetY}',\n '{bg|backgroundColor + borderRadius + padding}',\n '{border|borderColor + borderWidth + borderRadius + padding}',\n '{shadow|shadowColor + shadowBlur + shadowOffsetX + shadowOffsetY}'\n ].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#333',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n color: '#000',\n fontSize: 14,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n lineHeight: 30,\n rich: {\n textBorder: {\n fontSize: 20,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n },\n textShadow: {\n fontSize: 16,\n textShadowBlur: 5,\n textShadowColor: '#000',\n textShadowOffsetX: 3,\n textShadowOffsetY: 3,\n color: '#fff'\n },\n bg: {\n backgroundColor: '#339911',\n color: '#fff',\n borderRadius: 15,\n padding: 5\n },\n border: {\n color: '#000',\n borderColor: '#449911',\n borderWidth: 1,\n borderRadius: 3,\n padding: 5\n },\n shadow: {\n backgroundColor: '#992233',\n padding: 5,\n color: '#fff',\n shadowBlur: 5,\n shadowColor: '#336699',\n shadowOffsetX: 6,\n shadowOffsetY: 6\n }\n }\n }\n }\n }\n ]\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: -1,\n max: 1\n }\n};\n```\n\n## Label Position\n\n`label` option can be use in charts like `bar`, `line`, `scatter`, etc. The position of a label, can be specified by [label.position](option.html#series-scatter.label.position)、[label.distance](option.html#series-scatter.label.distance).\n\nTry to modify the `position` and `distance` option in the following example:\n\n```js [live]\noption = {\n series: [\n {\n type: 'scatter',\n symbolSize: 160,\n symbol: 'roundRect',\n data: [[1, 1]],\n label: {\n normal: {\n // Options: 'left', 'right', 'top', 'bottom', 'inside', 'insideTop', 'insideLeft', 'insideRight', 'insideBottom', 'insideTopLeft', 'insideTopRight', 'insideBottomLeft', 'insideBottomRight'\n position: 'top',\n distance: 10,\n\n show: true,\n formatter: ['Label Text'].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#555',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n fontSize: 18,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n }\n }\n }\n ],\n xAxis: {\n max: 2\n },\n yAxis: {\n max: 2\n }\n};\n```\n\n> Notice, there are different optional values of `position` by different chart types. And `distance` is not supported in every chart. More detailed info can be checked in [option doc](https://echarts.apache.org/option.html).\n\n## Label Rotation\n\nSometimes label is needed to be rotated. For example:\n\n```js [live-lr]\nconst labelOption = {\n show: true,\n rotate: 90,\n formatter: '{c} {name|{a}}',\n fontSize: 16,\n rich: {\n name: {}\n }\n};\n\noption = {\n xAxis: [\n {\n type: 'category',\n data: ['2012', '2013', '2014', '2015', '2016']\n }\n ],\n yAxis: [\n {\n type: 'value'\n }\n ],\n series: [\n {\n name: 'Forest',\n type: 'bar',\n barGap: 0,\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [320, 332, 301, 334, 390]\n },\n {\n name: 'Steppe',\n type: 'bar',\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [220, 182, 191, 234, 290]\n }\n ]\n};\n```\n\n[align](option.html#series-bar.label.align) and[verticalAlign](option.html#series-bar.label.verticalAlign) can be used to adjust location of label in this scenario.\n\nNotice, `align` and `verticalAlign` are applied firstly, then rotate.\n\n## Layout and Alignment of Text fragment\n\nTo understand the layout rule, every text fragment can be imagined as a `inline-block` dom element in CSS.\n\n`content box size` of a text fragment is determined by its font size by default. It can also be specified directly by `width` and `height`, although they are rarely set. `border box size` of a text fragment is calculated by adding the `border box size` and `padding`.\n\nOnly `'\\n'` is the newline character, which breaks a line.\n\nMultiple text fragment exist in a single line. The height of a line is determined by the biggest `lineHeight` of text fragments. `lineHeight` of a text fragment can be specified in `rich`, or in the parent level of `rich`, otherwise using `box size` of the text fragment.\n\nHaving `lineHeight` determined, the vertical position of text fragments can be determined by `verticalAlign` (there is a little different from the rule in CSS):\n\n- `'bottom'`: The bottom edge of the text fragment sticks to the bottom edge of the line.\n- `'top'`: The top edge of the text fragment sticks to the top edge of the line.\n- `'middle'`: In the middle of the line.\n\nThe width of a text block can be specified by `width`, otherwise, by the longest line. Having the width determined, text fragment can be placed in each line, where the horizontal position of text fragments can be determined by its `align`.\n\n- Firstly, place text fragments whose `align` is `'left'` from left to right continuously.\n- Secondly, place text fragments whose `align` is `'right'` from right to left continuously.\n- Finally, the text fragments remained will be sticked and placed in the center of the rest of space.\n\nThe position of text in a text fragment:\n\n- If `align` is `'center'`, text aligns at the center of the text fragment box.\n- If `align` is `'left'`, text aligns at the left of the text fragment box.\n- If `align` is `'right'`, text aligns at the right of the text fragment box.\n\n## Effects: Icon, Horizontal Rule, Title Block, Simple Table\n\nSee example:\n\n```js [live-lr]\noption = {\n series: [\n {\n type: 'scatter',\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n formatter: [\n '{tc|Center Title}{titleBg|}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n },\n {\n value: [0, 1],\n label: {\n normal: {\n formatter: [\n '{titleBg|Left Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n')\n }\n }\n },\n {\n value: [0, 2],\n label: {\n normal: {\n formatter: [\n '{titleBg|Right Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n }\n ],\n symbolSize: 1,\n label: {\n normal: {\n show: true,\n backgroundColor: '#ddd',\n borderColor: '#555',\n borderWidth: 1,\n borderRadius: 5,\n color: '#000',\n fontSize: 14,\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n },\n tc: {\n align: 'center',\n color: '#eee'\n },\n hr: {\n borderColor: '#777',\n width: '100%',\n borderWidth: 0.5,\n height: 0\n },\n sunny: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/sunny_128.png'\n }\n },\n cloudy: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/cloudy_128.png'\n }\n },\n showers: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/showers_128.png'\n }\n }\n }\n }\n }\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: 0,\n max: 2,\n inverse: true\n }\n};\n```\n\nIcon is implemented by using image in `backgroundColor`.\n\n```js\nrich: {\n Sunny: {\n backgroundColor: {\n image: './data/asset/img/weather/sunny_128.png'\n },\n // Can only height specified, but leave width auto obtained\n // from the image, where the aspect ratio kept.\n height: 30\n }\n}\n```\n\nHorizontal rule (like HTML &lt;hr&gt; tag) can be implemented by border:\n\n```js\nrich: {\n hr: {\n borderColor: '#777',\n // width is set as '100%' to fullfill the text block.\n // Notice, the percentage is based on the content box, without\n // padding. Although it is a little different from CSS rule,\n // it is convinent in most cases.\n width: '100%',\n borderWidth: 0.5,\n height: 0\n }\n}\n```\n\nTitle block can be implemented by `backgroundColor`:\n\n```js\n// Title is at left.\nformatter: '{titleBg|Left Title}',\nrich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n}\n\n// Title is in the center of the line.\n// This implementation is a little tricky, but is works\n// without more complicated layout mechanism involved.\nformatter: '{tc|Center Title}{titleBg|}',\nrich: {\n titleBg: {\n align: 'right',\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n}\n```\n\nSimple table can be implemented by specify the same width to text fragments that are in the same column of different lines. See the [example](https://echarts.apache.org/examples/en/editor.html?c=pie-rich-text).\n","dir":"/en/application/label","path":"/en/application/label/rich-text","extension":".md","createdAt":"2021-07-21T10:09:14.563Z","updatedAt":"2021-07-21T10:38:54.302Z","meta":{"version":0,"revision":0,"created":1627897109010},"$loki":60},{"slug":"drilldown","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/application/data","path":"/zh/application/data/drilldown","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-06-04T12:26:37.922Z","meta":{"version":0,"revision":0,"created":1627897109011},"$loki":61},{"slug":"drag","toc":[{"id":"implement-basic-dragging","depth":2,"text":"Implement basic dragging"},{"id":"add-tooltip-component","depth":2,"text":"Add tooltip component"},{"id":"full-code","depth":2,"text":"Full code"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"an-example-implement-dragging"},"children":[{"type":"element","tag":"a","props":{"href":"#an-example-implement-dragging","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"An Example: Implement Dragging"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is a tiny example, introducing how to implement dragging of graphic elements in Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":". From this example, we will see how to make an application with rich intractivity based on echarts API."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"line-draggable","height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This example mainly implements that dragging points of a curve and by which the curve is modified. Although it is simple example, but we can do more based on that, like edit charts viually. So let's get started from this simple example."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"implement-basic-dragging"},"children":[{"type":"element","tag":"a","props":{"href":"#implement-basic-dragging","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Implement basic dragging"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"First of all, we create a basic "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"line chart (line series)"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\n\nmyChart.setOption({\n xAxis: {\n min: -100,\n max: 80,\n type: 'value',\n axisLine: { onZero: false }\n },\n yAxis: {\n min: -30,\n max: 60,\n type: 'value',\n axisLine: { onZero: false }\n },\n series: [\n {\n id: 'a',\n type: 'line',\n smooth: true,\n // Set a big symbolSize for dragging convenience.\n symbolSize: symbolSize,\n data: data\n }\n ]\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Since the symbols in line is not draggable, we make them draggable by using "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#graphic","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"graphic component"}]},{"type":"text","value":" to add draggable circular elements to symbols respectively."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n // Declare a graphic component, which contains some graphic elements\n // with the type of 'circle'.\n // Here we have used the method `echarts.util.map`, which has the same\n // behavior as Array.prototype.map, and is compatible with ES5-.\n graphic: echarts.util.map(data, function(dataItem, dataIndex) {\n return {\n // 'circle' means this graphic element is a shape of circle.\n type: 'circle',\n\n shape: {\n // The radius of the circle.\n r: symbolSize / 2\n },\n // Transform is used to located the circle. position:\n // [x, y] means translate the circle to the position [x, y].\n // The API `convertToPixel` is used to get the position of\n // the circle, which will introduced later.\n position: myChart.convertToPixel('grid', dataItem),\n\n // Make the circle invisible (but mouse event works as normal).\n invisible: true,\n // Make the circle draggable.\n draggable: true,\n // Give a big z value, which makes the circle cover the symbol\n // in line series.\n z: 100,\n // This is the event handler of dragging, which will be triggered\n // repeatly while dragging. See more details below.\n // A util method `echarts.util.curry` is used here to generate a\n // new function the same as `onPointDragging`, except that the\n // first parameter is fixed to be the `dataIndex` here.\n ondrag: echarts.util.curry(onPointDragging, dataIndex)\n };\n })\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the code above, API "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.convertToPixel"},"children":[{"type":"text","value":"convertToPixel"}]},{"type":"text","value":" is used to convert data to its \"pixel coodinate\", based on which each graphic elements can be rendered on canvas. The term \"pixel coodinate\" means the coordinate is in canvas pixel, whose origin is the top-left of the canvas. In the sentence "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.convertToPixel('grid', dataItem)"}]},{"type":"text","value":", the first parameter "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'grid'"}]},{"type":"text","value":" indicates that "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataItem"}]},{"type":"text","value":" should be converted in the first "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#grid","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"grid component (cartesian)"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Notice:"}]},{"type":"text","value":" "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"convertToPixel"}]},{"type":"text","value":" should not be called before the first time that "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":" called. Namely, it can only be used after coordinate systems (grid/polar/...) initialized."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now points have been made draggable. Then we will bind event listeners on dragging to those points."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// This function will be called repeatly while dragging.\n// The mission of this function is to update `series.data` based on\n// the new points updated by dragging, and to re-render the line\n// series based on the new data, by which the graphic elements of the\n// line series can be synchronized with dragging.\nfunction onPointDragging(dataIndex) {\n // Here the `data` is declared in the code block in the beginning\n // of this article. The `this` refers to the dragged circle.\n // `this.position` is the current position of the circle.\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n // Re-render the chart based on the updated `data`.\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the code above, API "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.convertFromPixel"},"children":[{"type":"text","value":"convertFromPixel"}]},{"type":"text","value":" is used, which is the reversed process of "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.convertToPixel"},"children":[{"type":"text","value":"convertToPixel"}]},{"type":"text","value":". "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.convertFromPixel('grid', this.position)"}]},{"type":"text","value":" converts a pixel coordinate to data item in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#grid","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"grid (cartesian)"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Finally, add those code to make graphic elements responsive to change of canvas size."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"window.addEventListener('resize', function() {\n // Re-calculate the position of each circle and update chart using `setOption`.\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n position: myChart.convertToPixel('grid', item)\n };\n })\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"add-tooltip-component"},"children":[{"type":"element","tag":"a","props":{"href":"#add-tooltip-component","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Add tooltip component"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now basic functionality have been implemented by parte 1. If we need the data can be displayed realtime when dragging, we can use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#tooltip","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"tooltip component"}]},{"type":"text","value":" to do that. Nevertheless, tooltip component has its default \"show/hide rule\", which is not applicable in this case. So we need to customize the \"show/hide rule\" for our case."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Add these snippets to the code block above:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n // ...,\n tooltip: {\n // Means disable default \"show/hide rule\".\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br>Y: ' +\n params.data[1].toFixed(2)\n );\n }\n }\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n graphic: data.map(function(item, dataIndex) {\n return {\n type: 'circle',\n // ...,\n // Customize \"show/hide rule\", show when mouse over, hide when mouse out.\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex)\n };\n })\n});\n\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\n\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'hideTip'\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The API "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echartsInstance.dispatchAction","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dispatchAction"}]},{"type":"text","value":" is used to show/hide tooltip content, where actions "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#action.tooltip.showTip","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"showTip"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"api.html#action.tooltip.hideTip"},"children":[{"type":"text","value":"hideTip"}]},{"type":"text","value":" is dispatched."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"full-code"},"children":[{"type":"element","tag":"a","props":{"href":"#full-code","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Full code"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Full code is shown as follow:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import echarts from 'echarts';\n\nvar symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n tooltip: {\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br />Y: ' +\n params.data[1].toFixed(2)\n );\n }\n },\n xAxis: { min: -100, max: 80, type: 'value', axisLine: { onZero: false } },\n yAxis: { min: -30, max: 60, type: 'value', axisLine: { onZero: false } },\n series: [\n { id: 'a', type: 'line', smooth: true, symbolSize: symbolSize, data: data }\n ]\n});\nmyChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n type: 'circle',\n position: myChart.convertToPixel('grid', item),\n shape: { r: symbolSize / 2 },\n invisible: true,\n draggable: true,\n ondrag: echarts.util.curry(onPointDragging, dataIndex),\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex),\n z: 100\n };\n })\n});\nwindow.addEventListener('resize', function() {\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return { position: myChart.convertToPixel('grid', item) };\n })\n });\n});\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({ type: 'hideTip' });\n}\nfunction onPointDragging(dataIndex, dx, dy) {\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With knowledge introduced above, more feature can be implemented. For example, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#dataZoom","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataZoom component"}]},{"type":"text","value":" can be added to cooperate with the cartesian, or we can make a plotting board on coordinate systems. Use your imagination ~"}]}]},"text":"# An Example: Implement Dragging\n\nThis is a tiny example, introducing how to implement dragging of graphic elements in Apache ECharts<sup>TM</sup>. From this example, we will see how to make an application with rich intractivity based on echarts API.\n\n<md-example src=\"line-draggable\" height=\"400\"></md-example>\n\nThis example mainly implements that dragging points of a curve and by which the curve is modified. Although it is simple example, but we can do more based on that, like edit charts viually. So let's get started from this simple example.\n\n## Implement basic dragging\n\nFirst of all, we create a basic [line chart (line series)](https://echarts.apache.org/option.html#series-line):\n\n```js\nvar symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\n\nmyChart.setOption({\n xAxis: {\n min: -100,\n max: 80,\n type: 'value',\n axisLine: { onZero: false }\n },\n yAxis: {\n min: -30,\n max: 60,\n type: 'value',\n axisLine: { onZero: false }\n },\n series: [\n {\n id: 'a',\n type: 'line',\n smooth: true,\n // Set a big symbolSize for dragging convenience.\n symbolSize: symbolSize,\n data: data\n }\n ]\n});\n```\n\nSince the symbols in line is not draggable, we make them draggable by using [graphic component](https://echarts.apache.org/option.html#graphic) to add draggable circular elements to symbols respectively.\n\n```js\nmyChart.setOption({\n // Declare a graphic component, which contains some graphic elements\n // with the type of 'circle'.\n // Here we have used the method `echarts.util.map`, which has the same\n // behavior as Array.prototype.map, and is compatible with ES5-.\n graphic: echarts.util.map(data, function(dataItem, dataIndex) {\n return {\n // 'circle' means this graphic element is a shape of circle.\n type: 'circle',\n\n shape: {\n // The radius of the circle.\n r: symbolSize / 2\n },\n // Transform is used to located the circle. position:\n // [x, y] means translate the circle to the position [x, y].\n // The API `convertToPixel` is used to get the position of\n // the circle, which will introduced later.\n position: myChart.convertToPixel('grid', dataItem),\n\n // Make the circle invisible (but mouse event works as normal).\n invisible: true,\n // Make the circle draggable.\n draggable: true,\n // Give a big z value, which makes the circle cover the symbol\n // in line series.\n z: 100,\n // This is the event handler of dragging, which will be triggered\n // repeatly while dragging. See more details below.\n // A util method `echarts.util.curry` is used here to generate a\n // new function the same as `onPointDragging`, except that the\n // first parameter is fixed to be the `dataIndex` here.\n ondrag: echarts.util.curry(onPointDragging, dataIndex)\n };\n })\n});\n```\n\nIn the code above, API [convertToPixel](api.html#echartsInstance.convertToPixel) is used to convert data to its \"pixel coodinate\", based on which each graphic elements can be rendered on canvas. The term \"pixel coodinate\" means the coordinate is in canvas pixel, whose origin is the top-left of the canvas. In the sentence `myChart.convertToPixel('grid', dataItem)`, the first parameter `'grid'` indicates that `dataItem` should be converted in the first [grid component (cartesian)](https://echarts.apache.org/option.html#grid).\n\n**Notice:** `convertToPixel` should not be called before the first time that `setOption` called. Namely, it can only be used after coordinate systems (grid/polar/...) initialized.\n\nNow points have been made draggable. Then we will bind event listeners on dragging to those points.\n\n```js\n// This function will be called repeatly while dragging.\n// The mission of this function is to update `series.data` based on\n// the new points updated by dragging, and to re-render the line\n// series based on the new data, by which the graphic elements of the\n// line series can be synchronized with dragging.\nfunction onPointDragging(dataIndex) {\n // Here the `data` is declared in the code block in the beginning\n // of this article. The `this` refers to the dragged circle.\n // `this.position` is the current position of the circle.\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n // Re-render the chart based on the updated `data`.\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n```\n\nIn the code above, API [convertFromPixel](api.html#echartsInstance.convertFromPixel) is used, which is the reversed process of [convertToPixel](api.html#echartsInstance.convertToPixel). `myChart.convertFromPixel('grid', this.position)` converts a pixel coordinate to data item in [grid (cartesian)](https://echarts.apache.org/option.html#grid).\n\nFinally, add those code to make graphic elements responsive to change of canvas size.\n\n```js\nwindow.addEventListener('resize', function() {\n // Re-calculate the position of each circle and update chart using `setOption`.\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n position: myChart.convertToPixel('grid', item)\n };\n })\n });\n});\n```\n\n## Add tooltip component\n\nNow basic functionality have been implemented by parte 1. If we need the data can be displayed realtime when dragging, we can use [tooltip component](https://echarts.apache.org/option.html#tooltip) to do that. Nevertheless, tooltip component has its default \"show/hide rule\", which is not applicable in this case. So we need to customize the \"show/hide rule\" for our case.\n\nAdd these snippets to the code block above:\n\n```js\nmyChart.setOption({\n // ...,\n tooltip: {\n // Means disable default \"show/hide rule\".\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br>Y: ' +\n params.data[1].toFixed(2)\n );\n }\n }\n});\n```\n\n```js\nmyChart.setOption({\n graphic: data.map(function(item, dataIndex) {\n return {\n type: 'circle',\n // ...,\n // Customize \"show/hide rule\", show when mouse over, hide when mouse out.\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex)\n };\n })\n});\n\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\n\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'hideTip'\n });\n}\n```\n\nThe API [dispatchAction](https://echarts.apache.org//api.html#echartsInstance.dispatchAction) is used to show/hide tooltip content, where actions [showTip](https://echarts.apache.org//api.html#action.tooltip.showTip) and [hideTip](api.html#action.tooltip.hideTip) is dispatched.\n\n## Full code\n\nFull code is shown as follow:\n\n```js\nimport echarts from 'echarts';\n\nvar symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n tooltip: {\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br />Y: ' +\n params.data[1].toFixed(2)\n );\n }\n },\n xAxis: { min: -100, max: 80, type: 'value', axisLine: { onZero: false } },\n yAxis: { min: -30, max: 60, type: 'value', axisLine: { onZero: false } },\n series: [\n { id: 'a', type: 'line', smooth: true, symbolSize: symbolSize, data: data }\n ]\n});\nmyChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n type: 'circle',\n position: myChart.convertToPixel('grid', item),\n shape: { r: symbolSize / 2 },\n invisible: true,\n draggable: true,\n ondrag: echarts.util.curry(onPointDragging, dataIndex),\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex),\n z: 100\n };\n })\n});\nwindow.addEventListener('resize', function() {\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return { position: myChart.convertToPixel('grid', item) };\n })\n });\n});\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({ type: 'hideTip' });\n}\nfunction onPointDragging(dataIndex, dx, dy) {\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n```\n\nWith knowledge introduced above, more feature can be implemented. For example, [dataZoom component](https://echarts.apache.org/option.html#dataZoom) can be added to cooperate with the cartesian, or we can make a plotting board on coordinate systems. Use your imagination ~\n","dir":"/en/application/interaction","path":"/en/application/interaction/drag","extension":".md","createdAt":"2021-07-21T10:04:29.730Z","updatedAt":"2021-07-21T10:08:45.879Z","meta":{"version":0,"revision":0,"created":1627897109025},"$loki":62},{"slug":"data-transform","toc":[{"id":"数据转换基础使用","depth":2,"text":"数据转换基础使用"},{"id":"数据转换的进阶使用","depth":2,"text":"数据转换的进阶使用"},{"id":"数据转换器-filter","depth":2,"text":"数据转换器 \"filter\""},{"id":"数据转换器-sort","depth":2,"text":"数据转换器 \"sort\""},{"id":"使用外部的数据转换器","depth":2,"text":"使用外部的数据转换器"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"使用-transform-进行数据转换"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8-transform-%E8%BF%9B%E8%A1%8C%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用 transform 进行数据转换"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 5 开始支持了“数据转换”( data transform )功能。在 echarts 中,“数据转换” 这个词指的是,给定一个已有的“数据集”("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":")和一个“转换方法”("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.transform","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"transform"}]},{"type":"text","value":"),echarts 能生成一个新的“数据集”,然后可以使用这个新的“数据集”绘制图表。这些工作都可以声明式地完成。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"抽象地来说,数据转换是这样一种公式:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"outData = f(inputData)"}]},{"type":"text","value":"。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"f"}]},{"type":"text","value":" 是转换方法,例如:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"filter"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sort"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"regression"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"boxplot"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"cluster"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aggregate"}]},{"type":"text","value":"(todo) 等等。有了数据转换能力后,我们就至少可以做到这些事情:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"把数据分成多份用不同的饼图展现。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"进行一些数据统计运算,并展示结果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"用某些数据可视化算法处理数据,并展示结果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"数据排序。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"去除或直选择数据项。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"..."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据转换基础使用"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2%E5%9F%BA%E7%A1%80%E4%BD%BF%E7%94%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据转换基础使用"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 echarts 中,数据转换是依托于数据集("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":")来实现的. 我们可以设置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.transform","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.transform"}]},{"type":"text","value":" 来表示,此 dataset 的数据,来自于此 transform 的结果。例如。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是上述例子的效果,三个饼图分别显示了 2011、2012、2013 年的数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: [\n {\n // 这个 dataset 的 index 是 `0`。\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Cereal', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Dumpling', 341, 25, 2011],\n ['Biscuit', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Cereal', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Dumpling', 241, 27, 2012],\n ['Biscuit', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Cereal', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Dumpling', 281, 31, 2013],\n ['Biscuit', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Cereal', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Dumpling', 211, 35, 2014],\n ['Biscuit', 72, 24, 2014]\n ]\n // id: 'a'\n },\n {\n // 这个 dataset 的 index 是 `1`。\n // 这个 `transform` 配置,表示,此 dataset 的数据,来自于此 transform 的结果。\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2011 }\n }\n // 我们还可以设置这些可选的属性: `fromDatasetIndex` 或 `fromDatasetId`。\n // 这些属性,指定了,transform 的输入,来自于哪个 dataset。例如,\n // `fromDatasetIndex: 0` 表示输入来自于 index 为 `0` 的 dataset 。又例如,\n // `fromDatasetId: 'a'` 表示输入来自于 `id: 'a'` 的 dataset。\n // 当这些属性都不指定时,默认认为,输入来自于 index 为 `0` 的 dataset 。\n },\n {\n // 这个 dataset 的 index 是 `2`。\n // 同样,这里因为 `fromDatasetIndex` 和 `fromDatasetId` 都没有被指定,\n // 那么输入默认来自于 index 为 `0` 的 dataset 。\n transform: {\n // 这个类型为 \"filter\" 的 transform 能够遍历并筛选出满足条件的数据项。\n type: 'filter',\n // 每个 transform 如果需要有配置参数的话,都须配置在 `config` 里。\n // 在这个 \"filter\" transform 中,`config` 用于指定筛选条件。\n // 下面这个筛选条件是:选出维度( dimension )'Year' 中值为 2012 的所有\n // 数据项。\n config: { dimension: 'Year', value: 2012 }\n }\n },\n {\n // 这个 dataset 的 index 是 `3`。\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2013 }\n }\n }\n ],\n series: [\n {\n type: 'pie',\n radius: 50,\n center: ['25%', '50%'],\n // 这个饼图系列,引用了 index 为 `1` 的 dataset 。也就是,引用了上述\n // 2011 年那个 \"filter\" transform 的结果。\n datasetIndex: 1\n },\n {\n type: 'pie',\n radius: 50,\n center: ['50%', '50%'],\n datasetIndex: 2\n },\n {\n type: 'pie',\n radius: 50,\n center: ['75%', '50%'],\n datasetIndex: 3\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"现在我们简单总结下,使用 transform 时的几个要点:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在一个空的 dataset 中声明 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromDatasetIndex"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromDatasetId"}]},{"type":"text","value":" 来表示我们要生成新的数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"系列引用这个 dataset 。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据转换的进阶使用"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2%E7%9A%84%E8%BF%9B%E9%98%B6%E4%BD%BF%E7%94%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据转换的进阶使用"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"链式声明-transform"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%93%BE%E5%BC%8F%E5%A3%B0%E6%98%8E-transform","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"链式声明 transform"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform"}]},{"type":"text","value":" 可以被链式声明,这是一个语法糖。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n // 原始数据\n ]\n },\n {\n // 几个 transform 被声明成 array ,他们构成了一个链,\n // 前一个 transform 的输出是后一个 transform 的输入。\n transform: [\n {\n type: 'filter',\n config: { dimension: 'Product', value: 'Tofu' }\n },\n {\n type: 'sort',\n config: { dimension: 'Year', order: 'desc' }\n }\n ]\n }\n ],\n series: {\n type: 'pie',\n // 这个系列引用上述 transform 的结果。\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意:理论上,任何 transform 都可能有多个输入或多个输出。但是,如果一个 transform 被链式声明,它只能获取前一个 transform 的第一个输出作为输入(第一个 transform 除外),以及它只能把自己的第一个输出给到后一个 transform (最后一个 transform 除外)。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"一个-transform-输出多个-data"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%80%E4%B8%AA-transform-%E8%BE%93%E5%87%BA%E5%A4%9A%E4%B8%AA-data","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"一个 transform 输出多个 data"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在大多数场景下,transform 只需输出一个 data 。但是也有一些场景,需要输出多个 data ,每个 data 可以被不同的 series 或者 dataset 所使用。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如,在内置的 \"boxplot\" transform 中,除了 boxplot 系列所需要的 data 外,离群点( outlier )也会被生成,并且可以用例如散点图系列显示出来。例如,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=boxplot-light-velocity","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"example"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们提供配置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.fromTransformResult","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.fromTransformResult"}]},{"type":"text","value":" 来满足这种情况,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n // 这个 dataset 的 index 为 `0`。\n source: [\n // 原始数据\n ]\n },\n {\n // 这个 dataset 的 index 为 `1`。\n transform: {\n type: 'boxplot'\n }\n // 这个 \"boxplot\" transform 生成了两个数据:\n // result[0]: boxplot series 所需的数据。\n // result[1]: 离群点数据。\n // 当其他 series 或者 dataset 引用这个 dataset 时,他们默认只能得到\n // result[0] 。\n // 如果想要他们得到 result[1] ,需要额外声明如下这样一个 dataset :\n },\n {\n // 这个 dataset 的 index 为 `2`。\n // 这个额外的 dataset 指定了数据来源于 index 为 `1` 的 dataset。\n fromDatasetIndex: 1,\n // 并且指定了获取 transform result[1] 。\n fromTransformResult: 1\n }\n ],\n xAxis: {\n type: 'category'\n },\n yAxis: {},\n series: [\n {\n name: 'boxplot',\n type: 'boxplot',\n // Reference the data from result[0].\n // 这个 series 引用 index 为 `1` 的 dataset 。\n datasetIndex: 1\n },\n {\n name: 'outlier',\n type: 'scatter',\n // 这个 series 引用 index 为 `2` 的 dataset 。\n // 从而也就得到了上述的 transform result[1] (即离群点数据)\n datasetIndex: 2\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"另外,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.fromTransformResult","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.fromTransformResult"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##dataset.transform","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataset.transform"}]},{"type":"text","value":" 能同时出现在一个 dataset 中,这表示,这个 transform 的输入,是上游的结果中以 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fromTransformResult"}]},{"type":"text","value":" 获取的结果。例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"{\n fromDatasetIndex: 1,\n fromTransformResult: 1,\n transform: {\n type: 'sort',\n config: { dimension: 2, order: 'desc' }\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"在开发环境中-debug"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83%E4%B8%AD-debug","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在开发环境中 debug"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用 transform 时,有时候我们会配不对,显示不出来结果,并且不知道哪里错了。所以,这里提供了一个配置项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform.print"}]},{"type":"text","value":" 方便 debug 。这个配置项只在开发环境中生效。如下例:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: []\n },\n {\n transform: {\n type: 'filter',\n config: {},\n // 配置为 `true` 后, transform 的结果\n // 会被 console.log 打印出来。\n print: true\n }\n }\n ]\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据转换器-filter"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2%E5%99%A8-filter","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据转换器 \"filter\""}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"echarts 内置提供了能起过滤作用的数据转换器。我们只需声明 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"transform.type: \"filter\""}]},{"type":"text","value":",以及给出数据筛选条件。如下例:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Latte', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Milk Tee', 341, 25, 2011],\n ['Porridge', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Latte', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Milk Tee', 241, 27, 2012],\n ['Porridge', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Latte', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Milk Tee', 281, 31, 2013],\n ['Porridge', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Latte', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Milk Tee', 211, 35, 2014],\n ['Porridge', 72, 24, 2014]\n ]\n },\n {\n transform: {\n type: 'filter',\n config: { dimension: 'Year', '=': 2011 }\n // 这个筛选条件表示,遍历数据,筛选出维度( dimension )\n // 'Year' 上值为 2011 的所有数据项。\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这是 filter 的另一个例子的效果:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"data-transform-filter"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 \"filter\" transform 中,有这些要素:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"关于维度( dimension ):"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config.dimension"}]},{"type":"text","value":" 指定了维度,能设成这样的值:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"设定成声明在 dataset 中的维度名,例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 'Year', '=': 2011 }"}]},{"type":"text","value":"。不过, dataset 中维度名的声明并非强制,所以我们也可以"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"设定成 dataset 中的维度 index (index 值从 0 开始)例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 3, '=': 2011 }"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"关于关系比较操作符:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"关系操作符,可以设定这些:\n"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gt"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gte"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lt"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lte"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"eq"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"!="}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ne"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<>"}]},{"type":"text","value":")、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"reg"}]},{"type":"text","value":"。(小括号中的符号或名字,是别名,设置起来作用相同)。他们首先基本地能基于数值大小进行比较,然后也有些额外的功能特性:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"多个关系操作符能声明在一个 {} 中,例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{ dimension: 'Price', '>=': 20, '<': 30 }"}]},{"type":"text","value":"。这表示“与”的关系,即,筛选出价格大于等于 20 小雨 30 的数据项。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"data 里的值,不仅可以是数值( number ),也可以是“类数值的字符串”(“ numeric string ”)。“类数值的字符串”本身是一个字符串,但是可以被转换为字面所描述的数值,例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"' 123 '"}]},{"type":"text","value":"。转换过程中,空格(全角半角空格)和换行符都能被消除( trim )。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果我们需要对日期对象(JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":")或者日期字符串(如 '2012-05-12')进行比较,我们需要手动指定 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":",例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"config: { dimension: 3, lt: '2012-05-12', parser: 'time' }"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"纯字符串比较也被支持,但是只能用在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"="}]},{"type":"text","value":" 或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"!="}]},{"type":"text","value":" 上。而 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":">="}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<="}]},{"type":"text","value":" 并不支持纯字符串比较,也就是说,这四个操作符的右值,不能是字符串。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"reg"}]},{"type":"text","value":" 操作符能提供正则表达式比较。例如, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{ dimension: 'Name', reg: /\\s+Müller\\s*$/ }"}]},{"type":"text","value":" 能在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Name'"}]},{"type":"text","value":" 维度上选出姓 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Müller'"}]},{"type":"text","value":" 的数据项。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"关于逻辑比较:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们也支持了逻辑比较操作符 "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"与或非"}]},{"type":"text","value":"( "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"and"}]},{"type":"text","value":" | "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"or"}]},{"type":"text","value":" | "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" ):"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n // 使用 and 操作符。\n // 类似地,同样的位置也可以使用 “or” 或 “not”。\n // 但是注意 “not” 后应该跟一个 {...} 而非 [...] 。\n and: [\n { dimension: 'Year', '=': 2011 },\n { dimension: 'Price', '>=': 20, '<': 30 }\n ]\n }\n // 这个表达的是,选出 2011 年价格大于等于 20 但小于 30 的数据项。\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"and"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"or"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" 自然可以被嵌套,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"transform: {\n type: 'filter',\n config: {\n or: [{\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Tofu' }\n }]\n }, {\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Cake' }\n }]\n }]\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"关于解析器( parser ):"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"还可以指定“解析器”( parser )来对值进行解析后再做比较。现在支持的解析器有:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":":把原始值解析成时间戳( timestamp )后再做比较。这个解析器的行为,和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.parse"}]},{"type":"text","value":" 相同,即,当原始值为时间对象( JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":" 实例),或者是时间戳,或者是描述时间的字符串(例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'2012-05-12 03:11:22'"}]},{"type":"text","value":" ),都可以被解析为时间戳,然后就可以基于数值大小进行比较。如果原始数据是其他不可解析为时间戳的值,那么会被解析为 NaN。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'trim'"}]},{"type":"text","value":":如果原始数据是字符串,则把字符串两端的空格(全角半角)和换行符去掉。如果不是字符串,还保持为原始数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":":强制把原始数据转成数值。如果不能转成有意义的数值,那么转成 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"NaN"}]},{"type":"text","value":"。在大多数场景下,我们并不需要这个解析器,因为按默认策略,“像数值的字符串”就会被转成数值。但是默认策略比较严格,这个解析器比较宽松,如果我们遇到含有尾缀的字符串(例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'33%'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"12px"}]},{"type":"text","value":"),我们需要手动指定 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":",从而去掉尾缀转为数值才能比较。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这个例子显示了如何使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Date'],\n ['Milk Tee', 311, 21, '2012-05-12'],\n ['Cake', 135, 28, '2012-05-22'],\n ['Latte', 262, 36, '2012-06-02'],\n ['Milk Tee', 359, 21, '2012-06-22'],\n ['Cake', 121, 28, '2012-07-02'],\n ['Latte', 271, 36, '2012-06-22']\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n dimension: 'Date',\n '>=': '2012-05',\n '<': '2012-06',\n parser: 'time'\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"形式化定义:"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最后,我们给出,数据转换器 \"filter\" 的 config 的形式化定义:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type FilterTransform = {\n type: 'filter';\n config: ConditionalExpressionOption;\n};\ntype ConditionalExpressionOption =\n | true\n | false\n | RelationalExpressionOption\n | LogicalExpressionOption;\ntype RelationalExpressionOption = {\n dimension: DimensionName | DimensionIndex;\n parser?: 'time' | 'trim' | 'number';\n lt?: DataValue; // less than\n lte?: DataValue; // less than or equal\n gt?: DataValue; // greater than\n gte?: DataValue; // greater than or equal\n eq?: DataValue; // equal\n ne?: DataValue; // not equal\n '<'?: DataValue; // lt\n '<='?: DataValue; // lte\n '>'?: DataValue; // gt\n '>='?: DataValue; // gte\n '='?: DataValue; // eq\n '!='?: DataValue; // ne\n '<>'?: DataValue; // ne (SQL style)\n reg?: RegExp | string; // RegExp\n};\ntype LogicalExpressionOption = {\n and?: ConditionalExpressionOption[];\n or?: ConditionalExpressionOption[];\n not?: ConditionalExpressionOption;\n};\ntype DataValue = string | number | Date;\ntype DimensionName = string;\ntype DimensionIndex = number;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据转换器-sort"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2%E5%99%A8-sort","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据转换器 \"sort\""}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"\"sort\" 是另一个内置的数据转换器,用于排序数据。目前主要能用于在类目轴( "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"axis.type: 'category'"}]},{"type":"text","value":" )中显示排过序的数据。例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n // 按分数排序\n config: { dimension: 'score', order: 'asc' }\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"data-transform-sort-bar"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"数据转换器 \"sort\" 还有一些额外的功能:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"可以多重排序,多个维度一起排序。见下面的例子。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"排序规则是这样的:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"默认按照数值大小排序。其中,“可转为数值的字符串”也被转换成数值,和其他数值一起按大小排序。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"对于其他“不能转为数值的字符串”,也能在它们之间按字符串进行排序。这个特性有助于这种场景:把相同标签的数据项排到一起,尤其是当多个维度共同排序时。见下面的例子。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"当“数值及可转为数值的字符串”和“不能转为数值的字符串”进行排序时,或者它们和“其他类型的值”进行比较时,它们本身是不知如何进行比较的。那么我们称呼“后者”为“incomparable”,并且可以设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"incomparable: 'min' | 'max'"}]},{"type":"text","value":" 来指定一个“incomparable”在这个比较中是最大还是最小,从而能使它们能产生比较结果。这个设定的用途,比如可以是,决定空值(例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"null"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"undefined"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"NaN"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"''"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'-'"}]},{"type":"text","value":")在排序的头还是尾。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"过滤器 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"filter: 'time' | 'trim' | 'number'"}]},{"type":"text","value":" 可以被使用,和数据转换器 \"filter\" 中的情况一样。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果要对时间进行排序(例如,值为 JS "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Date"}]},{"type":"text","value":" 实例或者时间字符串如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'2012-03-12 11:13:54'"}]},{"type":"text","value":"),我们需要声明 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'time'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果需要对有后缀的数值进行排序(如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'33%'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'16px'"}]},{"type":"text","value":")我们需要声明 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parser: 'number'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这是一个“多维度排序”的例子。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n config: [\n // 对两个维度按声明的优先级分别排序。\n { dimension: 'profession', order: 'desc' },\n { dimension: 'score', order: 'desc' }\n ]\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n //...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/data-transform-multiple-sort-bar"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最后,我们给出数据转换器 \"sort\" 的 config 的形式化定义。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"type SortTransform = {\n type: 'filter';\n config: OrderExpression | OrderExpression[];\n};\ntype OrderExpression = {\n dimension: DimensionName | DimensionIndex;\n order: 'asc' | 'desc';\n incomparable?: 'min' | 'max';\n parser?: 'time' | 'trim' | 'number';\n};\ntype DimensionName = string;\ntype DimensionIndex = number;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"使用外部的数据转换器"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8%E5%A4%96%E9%83%A8%E7%9A%84%E6%95%B0%E6%8D%AE%E8%BD%AC%E6%8D%A2%E5%99%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用外部的数据转换器"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了上述的内置的数据转换器外,我们也可以使用外部的数据转换器。外部数据转换器能提供或自己定制更丰富的功能。下面的例子中,我们使用第三方库 "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-stat","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ecStat"}]},{"type":"text","value":" 提供的数据转换器。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"生成数据的回归线:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 首先要注册外部数据转换器。\necharts.registerTransform(ecStatTransform(ecStat).regression);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n dataset: [\n {\n source: rawData\n },\n {\n transform: {\n // 引用注册的数据转换器。\n // 注意,每个外部的数据转换器,都有名空间(如 'ecStat:xxx','ecStat' 是名空间)。\n // 而内置数据转换器(如 'filter', 'sort')没有名空间。\n type: 'ecStat:regression',\n config: {\n // 这里是此外部数据转换器所需的参数。\n method: 'exponential'\n }\n }\n }\n ],\n xAxis: { type: 'category' },\n yAxis: {},\n series: [\n {\n name: 'scatter',\n type: 'scatter',\n datasetIndex: 0\n },\n {\n name: 'regression',\n type: 'line',\n symbol: 'none',\n datasetIndex: 1\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"一些使用 echarts-stat 的例子:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=data-transform-aggregate&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"聚集 (Aggregate)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=bar-histogram&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"直方图 (Histogram)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=scatter-clustering&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"简单聚类 (Clustering)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=scatter-linear-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"线性回归线 (Linear Regression)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=scatter-exponential-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"指数回归线 (Exponential Regression)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=scatter-logarithmic-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"对数回归线 (Logarithmic Regression)"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=scatter-polynomial-regression&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"多项式回归线 (Polynomial Regression)"}]}]},{"type":"text","value":"\n"}]}]},"text":"# 使用 transform 进行数据转换\n\nApache ECharts<sup>TM</sup> 5 开始支持了“数据转换”( data transform )功能。在 echarts 中,“数据转换” 这个词指的是,给定一个已有的“数据集”([dataset](https://echarts.apache.org/option.html##dataset))和一个“转换方法”([transform](https://echarts.apache.org/option.html##dataset.transform)),echarts 能生成一个新的“数据集”,然后可以使用这个新的“数据集”绘制图表。这些工作都可以声明式地完成。\n\n抽象地来说,数据转换是这样一种公式:`outData = f(inputData)`。`f` 是转换方法,例如:`filter`、`sort`、`regression`、`boxplot`、`cluster`、`aggregate`(todo) 等等。有了数据转换能力后,我们就至少可以做到这些事情:\n\n- 把数据分成多份用不同的饼图展现。\n- 进行一些数据统计运算,并展示结果。\n- 用某些数据可视化算法处理数据,并展示结果。\n- 数据排序。\n- 去除或直选择数据项。\n- ...\n\n## 数据转换基础使用\n\n在 echarts 中,数据转换是依托于数据集([dataset](https://echarts.apache.org/option.html##dataset))来实现的. 我们可以设置 [dataset.transform](https://echarts.apache.org/option.html##dataset.transform) 来表示,此 dataset 的数据,来自于此 transform 的结果。例如。\n\n下面是上述例子的效果,三个饼图分别显示了 2011、2012、2013 年的数据。\n\n```js [live]\nvar option = {\n dataset: [\n {\n // 这个 dataset 的 index 是 `0`。\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Cereal', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Dumpling', 341, 25, 2011],\n ['Biscuit', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Cereal', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Dumpling', 241, 27, 2012],\n ['Biscuit', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Cereal', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Dumpling', 281, 31, 2013],\n ['Biscuit', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Cereal', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Dumpling', 211, 35, 2014],\n ['Biscuit', 72, 24, 2014]\n ]\n // id: 'a'\n },\n {\n // 这个 dataset 的 index 是 `1`。\n // 这个 `transform` 配置,表示,此 dataset 的数据,来自于此 transform 的结果。\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2011 }\n }\n // 我们还可以设置这些可选的属性: `fromDatasetIndex` 或 `fromDatasetId`。\n // 这些属性,指定了,transform 的输入,来自于哪个 dataset。例如,\n // `fromDatasetIndex: 0` 表示输入来自于 index 为 `0` 的 dataset 。又例如,\n // `fromDatasetId: 'a'` 表示输入来自于 `id: 'a'` 的 dataset。\n // 当这些属性都不指定时,默认认为,输入来自于 index 为 `0` 的 dataset 。\n },\n {\n // 这个 dataset 的 index 是 `2`。\n // 同样,这里因为 `fromDatasetIndex` 和 `fromDatasetId` 都没有被指定,\n // 那么输入默认来自于 index 为 `0` 的 dataset 。\n transform: {\n // 这个类型为 \"filter\" 的 transform 能够遍历并筛选出满足条件的数据项。\n type: 'filter',\n // 每个 transform 如果需要有配置参数的话,都须配置在 `config` 里。\n // 在这个 \"filter\" transform 中,`config` 用于指定筛选条件。\n // 下面这个筛选条件是:选出维度( dimension )'Year' 中值为 2012 的所有\n // 数据项。\n config: { dimension: 'Year', value: 2012 }\n }\n },\n {\n // 这个 dataset 的 index 是 `3`。\n transform: {\n type: 'filter',\n config: { dimension: 'Year', value: 2013 }\n }\n }\n ],\n series: [\n {\n type: 'pie',\n radius: 50,\n center: ['25%', '50%'],\n // 这个饼图系列,引用了 index 为 `1` 的 dataset 。也就是,引用了上述\n // 2011 年那个 \"filter\" transform 的结果。\n datasetIndex: 1\n },\n {\n type: 'pie',\n radius: 50,\n center: ['50%', '50%'],\n datasetIndex: 2\n },\n {\n type: 'pie',\n radius: 50,\n center: ['75%', '50%'],\n datasetIndex: 3\n }\n ]\n};\n```\n\n现在我们简单总结下,使用 transform 时的几个要点:\n\n- 在一个空的 dataset 中声明 `transform`, `fromDatasetIndex`/`fromDatasetId` 来表示我们要生成新的数据。\n- 系列引用这个 dataset 。\n\n## 数据转换的进阶使用\n\n#### 链式声明 transform\n\n`transform` 可以被链式声明,这是一个语法糖。\n\n```js\noption = {\n dataset: [\n {\n source: [\n // 原始数据\n ]\n },\n {\n // 几个 transform 被声明成 array ,他们构成了一个链,\n // 前一个 transform 的输出是后一个 transform 的输入。\n transform: [\n {\n type: 'filter',\n config: { dimension: 'Product', value: 'Tofu' }\n },\n {\n type: 'sort',\n config: { dimension: 'Year', order: 'desc' }\n }\n ]\n }\n ],\n series: {\n type: 'pie',\n // 这个系列引用上述 transform 的结果。\n datasetIndex: 1\n }\n};\n```\n\n> 注意:理论上,任何 transform 都可能有多个输入或多个输出。但是,如果一个 transform 被链式声明,它只能获取前一个 transform 的第一个输出作为输入(第一个 transform 除外),以及它只能把自己的第一个输出给到后一个 transform (最后一个 transform 除外)。\n\n#### 一个 transform 输出多个 data\n\n在大多数场景下,transform 只需输出一个 data 。但是也有一些场景,需要输出多个 data ,每个 data 可以被不同的 series 或者 dataset 所使用。\n\n例如,在内置的 \"boxplot\" transform 中,除了 boxplot 系列所需要的 data 外,离群点( outlier )也会被生成,并且可以用例如散点图系列显示出来。例如,[example](https://echarts.apache.org/examples/zh/editor.html?c=boxplot-light-velocity)。\n\n我们提供配置 [dataset.fromTransformResult](https://echarts.apache.org/option.html##dataset.fromTransformResult) 来满足这种情况,例如:\n\n```js\noption = {\n dataset: [\n {\n // 这个 dataset 的 index 为 `0`。\n source: [\n // 原始数据\n ]\n },\n {\n // 这个 dataset 的 index 为 `1`。\n transform: {\n type: 'boxplot'\n }\n // 这个 \"boxplot\" transform 生成了两个数据:\n // result[0]: boxplot series 所需的数据。\n // result[1]: 离群点数据。\n // 当其他 series 或者 dataset 引用这个 dataset 时,他们默认只能得到\n // result[0] 。\n // 如果想要他们得到 result[1] ,需要额外声明如下这样一个 dataset :\n },\n {\n // 这个 dataset 的 index 为 `2`。\n // 这个额外的 dataset 指定了数据来源于 index 为 `1` 的 dataset。\n fromDatasetIndex: 1,\n // 并且指定了获取 transform result[1] 。\n fromTransformResult: 1\n }\n ],\n xAxis: {\n type: 'category'\n },\n yAxis: {},\n series: [\n {\n name: 'boxplot',\n type: 'boxplot',\n // Reference the data from result[0].\n // 这个 series 引用 index 为 `1` 的 dataset 。\n datasetIndex: 1\n },\n {\n name: 'outlier',\n type: 'scatter',\n // 这个 series 引用 index 为 `2` 的 dataset 。\n // 从而也就得到了上述的 transform result[1] (即离群点数据)\n datasetIndex: 2\n }\n ]\n};\n```\n\n另外,[dataset.fromTransformResult](https://echarts.apache.org/option.html##dataset.fromTransformResult) 和 [dataset.transform](https://echarts.apache.org/option.html##dataset.transform) 能同时出现在一个 dataset 中,这表示,这个 transform 的输入,是上游的结果中以 `fromTransformResult` 获取的结果。例如:\n\n```js\n{\n fromDatasetIndex: 1,\n fromTransformResult: 1,\n transform: {\n type: 'sort',\n config: { dimension: 2, order: 'desc' }\n }\n}\n```\n\n#### 在开发环境中 debug\n\n使用 transform 时,有时候我们会配不对,显示不出来结果,并且不知道哪里错了。所以,这里提供了一个配置项 `transform.print` 方便 debug 。这个配置项只在开发环境中生效。如下例:\n\n```js\noption = {\n dataset: [\n {\n source: []\n },\n {\n transform: {\n type: 'filter',\n config: {},\n // 配置为 `true` 后, transform 的结果\n // 会被 console.log 打印出来。\n print: true\n }\n }\n ]\n // ...\n};\n```\n\n## 数据转换器 \"filter\"\n\necharts 内置提供了能起过滤作用的数据转换器。我们只需声明 `transform.type: \"filter\"`,以及给出数据筛选条件。如下例:\n\n```js [live]\noption = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Year'],\n ['Cake', 123, 32, 2011],\n ['Latte', 231, 14, 2011],\n ['Tofu', 235, 5, 2011],\n ['Milk Tee', 341, 25, 2011],\n ['Porridge', 122, 29, 2011],\n ['Cake', 143, 30, 2012],\n ['Latte', 201, 19, 2012],\n ['Tofu', 255, 7, 2012],\n ['Milk Tee', 241, 27, 2012],\n ['Porridge', 102, 34, 2012],\n ['Cake', 153, 28, 2013],\n ['Latte', 181, 21, 2013],\n ['Tofu', 395, 4, 2013],\n ['Milk Tee', 281, 31, 2013],\n ['Porridge', 92, 39, 2013],\n ['Cake', 223, 29, 2014],\n ['Latte', 211, 17, 2014],\n ['Tofu', 345, 3, 2014],\n ['Milk Tee', 211, 35, 2014],\n ['Porridge', 72, 24, 2014]\n ]\n },\n {\n transform: {\n type: 'filter',\n config: { dimension: 'Year', '=': 2011 }\n // 这个筛选条件表示,遍历数据,筛选出维度( dimension )\n // 'Year' 上值为 2011 的所有数据项。\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n```\n\n这是 filter 的另一个例子的效果:\n\n<md-example src=\"data-transform-filter\"></md-example>\n\n在 \"filter\" transform 中,有这些要素:\n\n**关于维度( dimension ):**\n\n`config.dimension` 指定了维度,能设成这样的值:\n\n- 设定成声明在 dataset 中的维度名,例如 `config: { dimension: 'Year', '=': 2011 }`。不过, dataset 中维度名的声明并非强制,所以我们也可以\n- 设定成 dataset 中的维度 index (index 值从 0 开始)例如 `config: { dimension: 3, '=': 2011 }`。\n\n**关于关系比较操作符:**\n\n关系操作符,可以设定这些:\n`>`(`gt`)、`>=`(`gte`)、`<`(`lt`)、`<=`(`lte`)、`=`(`eq`)、`!=`(`ne`、`<>`)、`reg`。(小括号中的符号或名字,是别名,设置起来作用相同)。他们首先基本地能基于数值大小进行比较,然后也有些额外的功能特性:\n\n- 多个关系操作符能声明在一个 {} 中,例如 `{ dimension: 'Price', '>=': 20, '<': 30 }`。这表示“与”的关系,即,筛选出价格大于等于 20 小雨 30 的数据项。\n- data 里的值,不仅可以是数值( number ),也可以是“类数值的字符串”(“ numeric string ”)。“类数值的字符串”本身是一个字符串,但是可以被转换为字面所描述的数值,例如 `' 123 '`。转换过程中,空格(全角半角空格)和换行符都能被消除( trim )。\n- 如果我们需要对日期对象(JS `Date`)或者日期字符串(如 '2012-05-12')进行比较,我们需要手动指定 `parser: 'time'`,例如 `config: { dimension: 3, lt: '2012-05-12', parser: 'time' }`。\n- 纯字符串比较也被支持,但是只能用在 `=` 或 `!=` 上。而 `>`, `>=`, `<`, `<=` 并不支持纯字符串比较,也就是说,这四个操作符的右值,不能是字符串。\n- `reg` 操作符能提供正则表达式比较。例如, `{ dimension: 'Name', reg: /\\s+Müller\\s*$/ }` 能在 `'Name'` 维度上选出姓 `'Müller'` 的数据项。\n\n**关于逻辑比较:**\n\n我们也支持了逻辑比较操作符 **与或非**( `and` | `or` | `not` ):\n\n```js\noption = {\n dataset: [\n {\n source: [\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n // 使用 and 操作符。\n // 类似地,同样的位置也可以使用 “or” 或 “not”。\n // 但是注意 “not” 后应该跟一个 {...} 而非 [...] 。\n and: [\n { dimension: 'Year', '=': 2011 },\n { dimension: 'Price', '>=': 20, '<': 30 }\n ]\n }\n // 这个表达的是,选出 2011 年价格大于等于 20 但小于 30 的数据项。\n }\n }\n ],\n series: {\n type: 'pie',\n datasetIndex: 1\n }\n};\n```\n\n`and`/`or`/`not` 自然可以被嵌套,例如:\n\n```js\ntransform: {\n type: 'filter',\n config: {\n or: [{\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Tofu' }\n }]\n }, {\n and: [{\n dimension: 'Price', '>=': 10, '<': 20\n }, {\n dimension: 'Sales', '<': 100\n }, {\n not: { dimension: 'Product', '=': 'Cake' }\n }]\n }]\n }\n}\n```\n\n**关于解析器( parser ):**\n\n还可以指定“解析器”( parser )来对值进行解析后再做比较。现在支持的解析器有:\n\n- `parser: 'time'`:把原始值解析成时间戳( timestamp )后再做比较。这个解析器的行为,和 `echarts.time.parse` 相同,即,当原始值为时间对象( JS `Date` 实例),或者是时间戳,或者是描述时间的字符串(例如 `'2012-05-12 03:11:22'` ),都可以被解析为时间戳,然后就可以基于数值大小进行比较。如果原始数据是其他不可解析为时间戳的值,那么会被解析为 NaN。\n- `parser: 'trim'`:如果原始数据是字符串,则把字符串两端的空格(全角半角)和换行符去掉。如果不是字符串,还保持为原始数据。\n- `parser: 'number'`:强制把原始数据转成数值。如果不能转成有意义的数值,那么转成 `NaN`。在大多数场景下,我们并不需要这个解析器,因为按默认策略,“像数值的字符串”就会被转成数值。但是默认策略比较严格,这个解析器比较宽松,如果我们遇到含有尾缀的字符串(例如 `'33%'`, `12px`),我们需要手动指定 `parser: 'number'`,从而去掉尾缀转为数值才能比较。\n\n这个例子显示了如何使用 `parser: 'time'`:\n\n```js\noption = {\n dataset: [\n {\n source: [\n ['Product', 'Sales', 'Price', 'Date'],\n ['Milk Tee', 311, 21, '2012-05-12'],\n ['Cake', 135, 28, '2012-05-22'],\n ['Latte', 262, 36, '2012-06-02'],\n ['Milk Tee', 359, 21, '2012-06-22'],\n ['Cake', 121, 28, '2012-07-02'],\n ['Latte', 271, 36, '2012-06-22']\n // ...\n ]\n },\n {\n transform: {\n type: 'filter',\n config: {\n dimension: 'Date',\n '>=': '2012-05',\n '<': '2012-06',\n parser: 'time'\n }\n }\n }\n ]\n};\n```\n\n**形式化定义:**\n\n最后,我们给出,数据转换器 \"filter\" 的 config 的形式化定义:\n\n```ts\ntype FilterTransform = {\n type: 'filter';\n config: ConditionalExpressionOption;\n};\ntype ConditionalExpressionOption =\n | true\n | false\n | RelationalExpressionOption\n | LogicalExpressionOption;\ntype RelationalExpressionOption = {\n dimension: DimensionName | DimensionIndex;\n parser?: 'time' | 'trim' | 'number';\n lt?: DataValue; // less than\n lte?: DataValue; // less than or equal\n gt?: DataValue; // greater than\n gte?: DataValue; // greater than or equal\n eq?: DataValue; // equal\n ne?: DataValue; // not equal\n '<'?: DataValue; // lt\n '<='?: DataValue; // lte\n '>'?: DataValue; // gt\n '>='?: DataValue; // gte\n '='?: DataValue; // eq\n '!='?: DataValue; // ne\n '<>'?: DataValue; // ne (SQL style)\n reg?: RegExp | string; // RegExp\n};\ntype LogicalExpressionOption = {\n and?: ConditionalExpressionOption[];\n or?: ConditionalExpressionOption[];\n not?: ConditionalExpressionOption;\n};\ntype DataValue = string | number | Date;\ntype DimensionName = string;\ntype DimensionIndex = number;\n```\n\n## 数据转换器 \"sort\"\n\n\"sort\" 是另一个内置的数据转换器,用于排序数据。目前主要能用于在类目轴( `axis.type: 'category'` )中显示排过序的数据。例如:\n\n```js\noption = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n // 按分数排序\n config: { dimension: 'score', order: 'asc' }\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n // ...\n};\n```\n\n<md-example src=\"data-transform-sort-bar\"></md-example>\n\n数据转换器 \"sort\" 还有一些额外的功能:\n\n- 可以多重排序,多个维度一起排序。见下面的例子。\n- 排序规则是这样的:\n - 默认按照数值大小排序。其中,“可转为数值的字符串”也被转换成数值,和其他数值一起按大小排序。\n - 对于其他“不能转为数值的字符串”,也能在它们之间按字符串进行排序。这个特性有助于这种场景:把相同标签的数据项排到一起,尤其是当多个维度共同排序时。见下面的例子。\n - 当“数值及可转为数值的字符串”和“不能转为数值的字符串”进行排序时,或者它们和“其他类型的值”进行比较时,它们本身是不知如何进行比较的。那么我们称呼“后者”为“incomparable”,并且可以设置 `incomparable: 'min' | 'max'` 来指定一个“incomparable”在这个比较中是最大还是最小,从而能使它们能产生比较结果。这个设定的用途,比如可以是,决定空值(例如 `null`, `undefined`, `NaN`, `''`, `'-'`)在排序的头还是尾。\n- 过滤器 `filter: 'time' | 'trim' | 'number'` 可以被使用,和数据转换器 \"filter\" 中的情况一样。\n - 如果要对时间进行排序(例如,值为 JS `Date` 实例或者时间字符串如 `'2012-03-12 11:13:54'`),我们需要声明 `parser: 'time'`。\n - 如果需要对有后缀的数值进行排序(如 `'33%'`, `'16px'`)我们需要声明 `parser: 'number'`。\n\n这是一个“多维度排序”的例子。\n\n```js\noption = {\n dataset: [\n {\n dimensions: ['name', 'age', 'profession', 'score', 'date'],\n source: [\n [' Hannah Krause ', 41, 'Engineer', 314, '2011-02-12'],\n ['Zhao Qian ', 20, 'Teacher', 351, '2011-03-01'],\n [' Jasmin Krause ', 52, 'Musician', 287, '2011-02-14'],\n ['Li Lei', 37, 'Teacher', 219, '2011-02-18'],\n [' Karle Neumann ', 25, 'Engineer', 253, '2011-04-02'],\n [' Adrian Groß', 19, 'Teacher', null, '2011-01-16'],\n ['Mia Neumann', 71, 'Engineer', 165, '2011-03-19'],\n [' Böhm Fuchs', 36, 'Musician', 318, '2011-02-24'],\n ['Han Meimei ', 67, 'Engineer', 366, '2011-03-12']\n ]\n },\n {\n transform: {\n type: 'sort',\n config: [\n // 对两个维度按声明的优先级分别排序。\n { dimension: 'profession', order: 'desc' },\n { dimension: 'score', order: 'desc' }\n ]\n }\n }\n ],\n series: {\n type: 'bar',\n datasetIndex: 1\n }\n //...\n};\n```\n\n<md-example src=\"doc-example/data-transform-multiple-sort-bar\"></md-example>\n\n最后,我们给出数据转换器 \"sort\" 的 config 的形式化定义。\n\n```ts\ntype SortTransform = {\n type: 'filter';\n config: OrderExpression | OrderExpression[];\n};\ntype OrderExpression = {\n dimension: DimensionName | DimensionIndex;\n order: 'asc' | 'desc';\n incomparable?: 'min' | 'max';\n parser?: 'time' | 'trim' | 'number';\n};\ntype DimensionName = string;\ntype DimensionIndex = number;\n```\n\n## 使用外部的数据转换器\n\n除了上述的内置的数据转换器外,我们也可以使用外部的数据转换器。外部数据转换器能提供或自己定制更丰富的功能。下面的例子中,我们使用第三方库 [ecStat](https://github.com/ecomfe/echarts-stat) 提供的数据转换器。\n\n生成数据的回归线:\n\n```js\n// 首先要注册外部数据转换器。\necharts.registerTransform(ecStatTransform(ecStat).regression);\n```\n\n```js\noption = {\n dataset: [\n {\n source: rawData\n },\n {\n transform: {\n // 引用注册的数据转换器。\n // 注意,每个外部的数据转换器,都有名空间(如 'ecStat:xxx','ecStat' 是名空间)。\n // 而内置数据转换器(如 'filter', 'sort')没有名空间。\n type: 'ecStat:regression',\n config: {\n // 这里是此外部数据转换器所需的参数。\n method: 'exponential'\n }\n }\n }\n ],\n xAxis: { type: 'category' },\n yAxis: {},\n series: [\n {\n name: 'scatter',\n type: 'scatter',\n datasetIndex: 0\n },\n {\n name: 'regression',\n type: 'line',\n symbol: 'none',\n datasetIndex: 1\n }\n ]\n};\n```\n\n一些使用 echarts-stat 的例子:\n\n- [聚集 (Aggregate)](https://echarts.apache.org/examples/zh/editor.html?c=data-transform-aggregate&edit=1&reset=1)\n- [直方图 (Histogram)](https://echarts.apache.org/examples/zh/editor.html?c=bar-histogram&edit=1&reset=1)\n- [简单聚类 (Clustering)](https://echarts.apache.org/examples/zh/editor.html?c=scatter-clustering&edit=1&reset=1)\n- [线性回归线 (Linear Regression)](https://echarts.apache.org/examples/zh/editor.html?c=scatter-linear-regression&edit=1&reset=1)\n- [指数回归线 (Exponential Regression)](https://echarts.apache.org/examples/zh/editor.html?c=scatter-exponential-regression&edit=1&reset=1)\n- [对数回归线 (Logarithmic Regression)](https://echarts.apache.org/examples/zh/editor.html?c=scatter-logarithmic-regression&edit=1&reset=1)\n- [多项式回归线 (Polynomial Regression)](https://echarts.apache.org/examples/zh/editor.html?c=scatter-polynomial-regression&edit=1&reset=1)\n","dir":"/zh/concepts","path":"/zh/concepts/data-transform","extension":".md","createdAt":"2021-06-04T12:26:37.933Z","updatedAt":"2021-07-21T14:58:00.297Z","meta":{"version":0,"revision":0,"created":1627897109077},"$loki":63},{"slug":"v5-feature","toc":[{"id":"storytelling","depth":2,"text":"Storytelling"},{"id":"visual-design","depth":2,"text":"Visual Design"},{"id":"interactivity","depth":2,"text":"Interactivity"},{"id":"development-experience","depth":2,"text":"Development Experience"},{"id":"accessibility","depth":2,"text":"Accessibility"},{"id":"summary","depth":2,"text":"Summary"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"new-features-in-echarts-5"},"children":[{"type":"element","tag":"a","props":{"href":"#new-features-in-echarts-5","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"New features in ECharts 5"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data visualization has come a long way in the last few years. Developers no longer expect visualization products to be simple chart creation tools, but have more advanced needs in terms of interaction, performance, data processing, and more."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts has always been committed to making it easier for developers to create flexible and rich visualizations. In the latest release of Apache ECharts 5, we have focused on enhancing the storytelling of charts, allowing developers to tell the story behind the data in a simpler way."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/echarts-5-en.png","width":"800px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"\"The core of Apache ECharts 5 is \"Show, do not tell\", which is a comprehensive upgrade of five topics and 15 features around the stroy telling of visualizations, allowing charts to better tell the story behind the data. It helps developers to create visualizations that meet the needs of various scenarios more easily."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"storytelling"},"children":[{"type":"element","tag":"a","props":{"href":"#storytelling","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Storytelling"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The importance of animation to human cognition cannot be overstated. In our previous work, we used initialization animations and transition animations to help users understand the connection between data transformations, making the appearance of charts and transformations seem less rigid. This time, we have even enhanced our animation capabilities, even more significantly. We hope to further exploit the role of animation to help users' cognition, and help them understand the story behind the chart more easily with the dynamic stroy function of the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"barline-racing"},"children":[{"type":"element","tag":"a","props":{"href":"#barline-racing","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Bar/Line Racing"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 adds support for dynamically sorted bar-racing and dynamically sorted line-racing charts to help developers easily create time-series charts that show changes in data over time and tell the evolution of data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"bar-race-country","width":700,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n\n\n"},{"type":"element","tag":"md-example","props":{"src":"line-race","width":700,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The dynamic sorting chart shows the derivation of different categories in the ranking over time. The developer can enable this effect in ECharts with a few simple configuration code."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"custom-series-animation"},"children":[{"type":"element","tag":"a","props":{"href":"#custom-series-animation","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Custom Series Animation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition to dynamic sorting charts, Apache ECharts 5 provides even richer and more powerful animations in the custom series, supporting interpolation animations for label value text, transition animations for morph, combine, separate, and other effects of graphics."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Imagine what amazing visualizations you can create with these dynamic effects!"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"visual-design"},"children":[{"type":"element","tag":"a","props":{"href":"#visual-design","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Visual Design"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The role of visual design is not only to make the chart look better, but more importantly, a design that conforms to the principles of visualization can help users understand more quickly what the chart is trying to say and eliminate as much misunderstanding as possible from poor design."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"overall-design"},"children":[{"type":"element","tag":"a","props":{"href":"#overall-design","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Overall Design"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We have found that a large percentage of developers use the default theme style for ECharts, so it is important to have an elegant default theme design. In Apache ECharts 5, we redesigned the default theme style, optimizing it for different charts and components. For example, we took into account factors such as differentiation between colors, contrast with background colors, and harmony with adjacent colors, and ensured that people with color blindness could clearly distinguish data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/theme-color.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Let's look at the new version of the light and dark theme styles using the most commonly used bar chart as an example."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-theme-light.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-theme-dark.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For the data area zoom, timeline and other interactive components, we also designed a new style and provide a better interactive experience:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/dataZoom.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/timeline.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"label"},"children":[{"type":"element","tag":"a","props":{"href":"#label","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Label"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Labels are one of the core elements of a chart, and clear and unambiguous labels help users to have a more accurate understanding of the data. Apache ECharts 5 provides a variety of new labeling features that allow dense labels to be clearly displayed and accurately represented."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 can be enabled to automatically hide overlapping labels through a configuration item. For labels that exceed the display area, you can choose to automatically truncate or line break them. Dense pie chart labels now have a more aesthetically pleasing automatic layout."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"These features can help avoid text that is too dense and affects readability. And, no additional code needs to be written by the developer for them to take effect by default, greatly simplifying the development cost for developers."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We also provide several configuration options to allow developers to actively control the layout strategy of tabs, such as tab dragging, overall display at the edge of the canvas, connecting with guide lines and graphical elements, and still linking to highlight the associated relationships."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The new label feature allows you to have very clear label presentation even in a confined space mobile:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/pie-label.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"time-axis"},"children":[{"type":"element","tag":"a","props":{"href":"#time-axis","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Time Axis"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 brings a time axis suitable for expressing timestamp scales. The default design of the time axis highlights important information more prominently and provides more flexible customization capabilities, allowing developers to tailor the time axis's label content to different needs."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"First of all, the time axis is no longer split absolutely evenly as before, but instead selects more meaningful points like year, month, day, and whole point to display, and can show different levels of scales at the same time. The "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"formatter"}]},{"type":"text","value":" of labels supports templates for time (e.g. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{yyyy}-{MM}-{dd}"}]},{"type":"text","value":"), and different "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"formatter"}]},{"type":"text","value":" can be specified for labels with different time granularity, which can be combined with rich text labels to create eye-catching and diverse time effects."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The display of the time scale at different dataZoom granularities."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/time-axis.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/time-axis-2.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"tooltip"},"children":[{"type":"element","tag":"a","props":{"href":"#tooltip","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Tooltip"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Tooltip is one of the most commonly used visualization components to help users interactively understand the details of data. In Apache ECharts 5, we have optimized the style of the tooltip, making the default display of the tooltip elegant and clear by adjusting the font style, color, arrow pointing to the graph, border color following the graph color, and other features. The rendering logic of rich text has been improved to ensure that the display is consistent with the HTML way, allowing users to choose different technical solutions to achieve the same effect in different scenarios."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-tooltip.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-tooltip-2.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition to this, we have also added the ability to sort the list in the tip box by value size or category order this time."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"gauge"},"children":[{"type":"element","tag":"a","props":{"href":"#gauge","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Gauge"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We have seen a lot of cool gauge charts created by community users, but the way they are configured is often complex and tricky. Therefore, we have upgraded the gauge to support image or vector path drawing pointers, anchor configurations, progress bars, rounded corner effects, and more."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Different styles of gauge pointers."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/gauge-pointer.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"These upgrades not only allow developers to achieve cool effects with simpler configuration items, but also bring richer customization capabilities."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"gauge-clock","width":600,"height":600},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"round-corner"},"children":[{"type":"element","tag":"a","props":{"href":"#round-corner","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Round Corner"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 supports round corner for pie charts, sunburst charts, and treemap charts. Don't underestimate the simplicity of the rounded corners configuration, but combine them with other effects to create a more personalized visualization."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"sunburst-borderRadius","width":400,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"interactivity"},"children":[{"type":"element","tag":"a","props":{"href":"#interactivity","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Interactivity"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The interactivity of the visualization helps users explore the work and deepen their understanding of the main idea of the diagram."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"multi-state"},"children":[{"type":"element","tag":"a","props":{"href":"#multi-state","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Multi-State"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts 4, there were two interactive states, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"normal"}]},{"type":"text","value":", graph will enter the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" state when the mouse hovered to distinguish the data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This time in Apache ECharts 5, we have added a new effect of "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"blur"}]},{"type":"text","value":" other non-related elements to the original mouse hover highlighting, so that the target data can be focused."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, in this "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/en/editor.html?c=bar-y-category-stack","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"bar chart"}]},{"type":"text","value":" example, when the mouse hovers over a series, other non-related series will fade out, thus highlighting more clearly the comparison of data in the focused series. of data in the comparison. On diagrams with more complex data structures such as relationship, tree, sunburst, sankey, etc., it is also possible to see the connections between data by fading out non-related elements. Also, colors, shadows, and other styles that can be set in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" can now be set in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"blur"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition, we've added "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"click to select"}]},{"type":"text","value":" to all series, an interaction that was previously only available in a few series such as pie charts and maps, allowing developers to set it to single or multiple selection mode, and to listen to the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]},{"type":"text","value":" event to get all the selected shapes for further processing. As with "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"emphasis"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"blur"}]},{"type":"text","value":", the selection style can also be configured in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"performance-improvements"},"children":[{"type":"element","tag":"a","props":{"href":"#performance-improvements","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Performance improvements"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"dirty-rectangle-rendering"},"children":[{"type":"element","tag":"a","props":{"href":"#dirty-rectangle-rendering","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dirty Rectangle Rendering"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 has new support for dirty rectangle rendering to address performance bottlenecks in large scenes with only local changes. When using the Canvas renderer, the dirty rectangle rendering technique detects and updates only the parts of the view that have changed, rather than any changes causing a complete redraw of the canvas. This can help improve rendering frame rates in some special scenarios, such as scenes where the mouse frequently triggers some graphical highlighting many times. In the past for such scenes, additional Canvas layers were used to optimize performance, but this approach is not universal for all scenes and does not work well for complex styles. Dirty Rectangle rendering does a good job of satisfying both performance and display correctness."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A visual demonstration of a dirty rectangle, with the red boxed area redrawn for the frame."}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/dirty-rect.gif","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can see the effect by enable dirty rectangle optimization on the new example page."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"line-chart-performance-optimization-for-real-time-time-series-data"},"children":[{"type":"element","tag":"a","props":{"href":"#line-chart-performance-optimization-for-real-time-time-series-data","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Line Chart Performance Optimization for Real-Time Time-Series Data"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition, the performance of line graphs with large amounts of data has also seen a significant performance improvement. We often encounter the need for high-performance plotting of large amounts of real-time time-series data, which will be updated every hundreds or tens of milliseconds."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 deeply optimizes CPU consumption, memory usage, and initialization time in these scenarios, enabling real-time updates (less than 30ms per update) for millions of data, and even rendering within 1s for ten millions of data, with low memory usage and smooth tooltip interactions."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"development-experience"},"children":[{"type":"element","tag":"a","props":{"href":"#development-experience","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Development Experience"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We want such a powerful visualization tool to be used by more developers in a simpler way, so the developer experience is also a very important aspect for us."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"datasets"},"children":[{"type":"element","tag":"a","props":{"href":"#datasets","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Datasets"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 5 enhances the data transformation capabilities of datasets, allowing developers to implement common data processing such as filtering, sorting, aggregating, histogram, simple clustering, regression, etc. in a simple way. Developers can use these functions in a uniform and declarative way, and can easily implement common data operations."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"internationalization"},"children":[{"type":"element","tag":"a","props":{"href":"#internationalization","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Internationalization"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The original internationalization implementation of ECharts takes the form of different distribution files packaged according to different language parameters. In this way, the dynamic language and main code are bound together, and the only way to switch languages when using ECharts is to reload different language versions of ECharts distributions."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Therefore, starting with Apache ECharts 5, the dynamic language is separated from the main code. To switch languages, you only need to load the corresponding language, use the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"registerLocale"}]},{"type":"text","value":" function to mount the language object in a similar way to mount the theme, and then reinitialize it to complete the language switch."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// import the lang object and set when init\necharts.registerLocale('DE', lang);\necharts.init(DomElement, null, {\n locale: 'DE'\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"typescript-refactoring"},"children":[{"type":"element","tag":"a","props":{"href":"#typescript-refactoring","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"TypeScript Refactoring"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to continue to refactor and develop new features more safely and efficiently, we started the development of Apache ECharts 5 by rewriting the code using TypeScript. The strong typing brought by TypeScript gave us the confidence to refactor the code drastically to achieve more exciting features during the development of ECharts 5."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For developers, we can also generate better and more code-compliant "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"DTS"}]},{"type":"text","value":" type description files directly from TypeScript code. Until now, ECharts type description files have been maintained by community developers and published to "},{"type":"element","tag":"a","props":{"href":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"DefinityTyped"}]},{"type":"text","value":", which is a lot of work, so thanks for your contribution."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition, if a developer's component is introduced on-demand, we provide a "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ComposeOption"}]},{"type":"text","value":" type method that can combine a configuration item type that contains only the introduced components, which can bring stricter type checking and help you detect unintroduced component types in advance."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"accessibility"},"children":[{"type":"element","tag":"a","props":{"href":"#accessibility","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Accessibility"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts has always taken accessibility design seriously, and we want to make the information conveyed by charts equally to be accessed. We also want to make this possible for chart developers at a very low development cost, thus making developers more willing to support the accessibility."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the last major release, we supported automatic intelligent generation of chart descriptions based on different chart types and data, making it very easy for developers to support DOM description information for charts. In ECharts 5, we have also made more accessibility improvements to help people with visual impairments better understand the chart content."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"theme-colors"},"children":[{"type":"element","tag":"a","props":{"href":"#theme-colors","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Theme Colors"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We took accessibility into account when designing the new default theme, and we repeatedly tested the brightness and color values of the colors to help accessibility users clearly identify the chart data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Moreover, for developers with further accessibility needs, we also provide special high-contrast themes to further differentiate the data with higher contrast colors."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"decal-patterns"},"children":[{"type":"element","tag":"a","props":{"href":"#decal-patterns","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Decal Patterns"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 5 also provides a new feature of decals to help users further differentiate data by using patterns to assist with color representation."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-decal-simple","width":600,"height":350},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition, decal patterns can also help in some other scenarios, such as: helping to better distinguish data in printed materials like newspapers and books that have only a single color or very few colors; using graphical elements to facilitate a more intuitive understanding of the data by the user."}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-decal-newspaper","width":600,"height":350},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"summary"},"children":[{"type":"element","tag":"a","props":{"href":"#summary","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Summary"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition to the features described above, Apache ECharts has been improved in a very large number of details to help developers more easily create charts that good by default, are flexible in configuration, and tell the story behind the data with charts."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Thank you to all the developers who have used ECharts, and even participated in community contributions, for making Apache ECharts 5 possible. We'll be working on future developments with even more enthusiasm, and we'll see you all in 6 with even more enthusiasm!"}]}]},"text":"# New features in ECharts 5\n\nData visualization has come a long way in the last few years. Developers no longer expect visualization products to be simple chart creation tools, but have more advanced needs in terms of interaction, performance, data processing, and more.\n\nApache ECharts has always been committed to making it easier for developers to create flexible and rich visualizations. In the latest release of Apache ECharts 5, we have focused on enhancing the storytelling of charts, allowing developers to tell the story behind the data in a simpler way.\n\n<img src=\"images/feature-v5/echarts-5-en.png\" width=\"800px\" />\n\n\"The core of Apache ECharts 5 is \"Show, do not tell\", which is a comprehensive upgrade of five topics and 15 features around the stroy telling of visualizations, allowing charts to better tell the story behind the data. It helps developers to create visualizations that meet the needs of various scenarios more easily.\n\n## Storytelling\n\nThe importance of animation to human cognition cannot be overstated. In our previous work, we used initialization animations and transition animations to help users understand the connection between data transformations, making the appearance of charts and transformations seem less rigid. This time, we have even enhanced our animation capabilities, even more significantly. We hope to further exploit the role of animation to help users' cognition, and help them understand the story behind the chart more easily with the dynamic stroy function of the chart.\n\n#### Bar/Line Racing\n\nApache ECharts 5 adds support for dynamically sorted bar-racing and dynamically sorted line-racing charts to help developers easily create time-series charts that show changes in data over time and tell the evolution of data.\n\n<md-example src=\"bar-race-country\" width=\"700\" height=\"400\"></md-example>\n<md-example src=\"line-race\" width=\"700\" height=\"400\"></md-example>\n\nThe dynamic sorting chart shows the derivation of different categories in the ranking over time. The developer can enable this effect in ECharts with a few simple configuration code.\n\n#### Custom Series Animation\n\nIn addition to dynamic sorting charts, Apache ECharts 5 provides even richer and more powerful animations in the custom series, supporting interpolation animations for label value text, transition animations for morph, combine, separate, and other effects of graphics.\n\nImagine what amazing visualizations you can create with these dynamic effects!\n\n## Visual Design\n\nThe role of visual design is not only to make the chart look better, but more importantly, a design that conforms to the principles of visualization can help users understand more quickly what the chart is trying to say and eliminate as much misunderstanding as possible from poor design.\n\n#### Overall Design\n\nWe have found that a large percentage of developers use the default theme style for ECharts, so it is important to have an elegant default theme design. In Apache ECharts 5, we redesigned the default theme style, optimizing it for different charts and components. For example, we took into account factors such as differentiation between colors, contrast with background colors, and harmony with adjacent colors, and ensured that people with color blindness could clearly distinguish data.\n\n<img src=\"images/feature-v5/theme-color.png\" width=\"400px\" />\n\nLet's look at the new version of the light and dark theme styles using the most commonly used bar chart as an example.\n\n<img src=\"images/feature-v5/new-theme-light.png\" width=\"500px\" />\n<img src=\"images/feature-v5/new-theme-dark.png\" width=\"500px\" />\n\nFor the data area zoom, timeline and other interactive components, we also designed a new style and provide a better interactive experience:\n\n<img src=\"images/feature-v5/dataZoom.png\" width=\"500px\" />\n\n<img src=\"images/feature-v5/timeline.png\" width=\"500px\" />\n\n#### Label\n\nLabels are one of the core elements of a chart, and clear and unambiguous labels help users to have a more accurate understanding of the data. Apache ECharts 5 provides a variety of new labeling features that allow dense labels to be clearly displayed and accurately represented.\n\nApache ECharts 5 can be enabled to automatically hide overlapping labels through a configuration item. For labels that exceed the display area, you can choose to automatically truncate or line break them. Dense pie chart labels now have a more aesthetically pleasing automatic layout.\n\nThese features can help avoid text that is too dense and affects readability. And, no additional code needs to be written by the developer for them to take effect by default, greatly simplifying the development cost for developers.\n\nWe also provide several configuration options to allow developers to actively control the layout strategy of tabs, such as tab dragging, overall display at the edge of the canvas, connecting with guide lines and graphical elements, and still linking to highlight the associated relationships.\n\nThe new label feature allows you to have very clear label presentation even in a confined space mobile:\n\n<img src=\"images/feature-v5/pie-label.png\" width=\"400px\" />\n\n#### Time Axis\n\nApache ECharts 5 brings a time axis suitable for expressing timestamp scales. The default design of the time axis highlights important information more prominently and provides more flexible customization capabilities, allowing developers to tailor the time axis's label content to different needs.\n\nFirst of all, the time axis is no longer split absolutely evenly as before, but instead selects more meaningful points like year, month, day, and whole point to display, and can show different levels of scales at the same time. The `formatter` of labels supports templates for time (e.g. `{yyyy}-{MM}-{dd}`), and different `formatter` can be specified for labels with different time granularity, which can be combined with rich text labels to create eye-catching and diverse time effects.\n\nThe display of the time scale at different dataZoom granularities.\n\n<img src=\"images/feature-v5/time-axis.png\" width=\"600px\" />\n\n<img src=\"images/feature-v5/time-axis-2.png\" width=\"600px\" />\n\n#### Tooltip\n\nTooltip is one of the most commonly used visualization components to help users interactively understand the details of data. In Apache ECharts 5, we have optimized the style of the tooltip, making the default display of the tooltip elegant and clear by adjusting the font style, color, arrow pointing to the graph, border color following the graph color, and other features. The rendering logic of rich text has been improved to ensure that the display is consistent with the HTML way, allowing users to choose different technical solutions to achieve the same effect in different scenarios.\n\n<img src=\"images/feature-v5/new-tooltip.png\" width=\"400px\" />\n<img src=\"images/feature-v5/new-tooltip-2.png\" width=\"400px\" />\n\nIn addition to this, we have also added the ability to sort the list in the tip box by value size or category order this time.\n\n#### Gauge\n\nWe have seen a lot of cool gauge charts created by community users, but the way they are configured is often complex and tricky. Therefore, we have upgraded the gauge to support image or vector path drawing pointers, anchor configurations, progress bars, rounded corner effects, and more.\n\nDifferent styles of gauge pointers.\n\n<img src=\"images/feature-v5/gauge-pointer.png\" width=\"600px\" />\n\nThese upgrades not only allow developers to achieve cool effects with simpler configuration items, but also bring richer customization capabilities.\n\n<md-example src=\"gauge-clock\" width=\"600\" height=\"600\"></md-example>\n\n#### Round Corner\n\nApache ECharts 5 supports round corner for pie charts, sunburst charts, and treemap charts. Don't underestimate the simplicity of the rounded corners configuration, but combine them with other effects to create a more personalized visualization.\n\n<md-example src=\"sunburst-borderRadius\" width=\"400\" height=\"400\"></md-example>\n\n## Interactivity\n\nThe interactivity of the visualization helps users explore the work and deepen their understanding of the main idea of the diagram.\n\n#### Multi-State\n\nIn ECharts 4, there were two interactive states, `emphasis` and `normal`, graph will enter the `emphasis` state when the mouse hovered to distinguish the data.\n\nThis time in Apache ECharts 5, we have added a new effect of **blur** other non-related elements to the original mouse hover highlighting, so that the target data can be focused.\n\nFor example, in this [bar chart](https://echarts.apache.org/examples/en/editor.html?c=bar-y-category-stack) example, when the mouse hovers over a series, other non-related series will fade out, thus highlighting more clearly the comparison of data in the focused series. of data in the comparison. On diagrams with more complex data structures such as relationship, tree, sunburst, sankey, etc., it is also possible to see the connections between data by fading out non-related elements. Also, colors, shadows, and other styles that can be set in `emphasis` can now be set in `blur`.\n\nIn addition, we've added **click to select** to all series, an interaction that was previously only available in a few series such as pie charts and maps, allowing developers to set it to single or multiple selection mode, and to listen to the `selectchanged` event to get all the selected shapes for further processing. As with `emphasis` and `blur`, the selection style can also be configured in `select`.\n\n#### Performance improvements\n\n##### Dirty Rectangle Rendering\n\nApache ECharts 5 has new support for dirty rectangle rendering to address performance bottlenecks in large scenes with only local changes. When using the Canvas renderer, the dirty rectangle rendering technique detects and updates only the parts of the view that have changed, rather than any changes causing a complete redraw of the canvas. This can help improve rendering frame rates in some special scenarios, such as scenes where the mouse frequently triggers some graphical highlighting many times. In the past for such scenes, additional Canvas layers were used to optimize performance, but this approach is not universal for all scenes and does not work well for complex styles. Dirty Rectangle rendering does a good job of satisfying both performance and display correctness.\n\nA visual demonstration of a dirty rectangle, with the red boxed area redrawn for the frame.\n\n<img src=\"images/feature-v5/dirty-rect.gif\" width=\"500px\" />\n\nYou can see the effect by enable dirty rectangle optimization on the new example page.\n\n##### Line Chart Performance Optimization for Real-Time Time-Series Data\n\nIn addition, the performance of line graphs with large amounts of data has also seen a significant performance improvement. We often encounter the need for high-performance plotting of large amounts of real-time time-series data, which will be updated every hundreds or tens of milliseconds.\n\nApache ECharts 5 deeply optimizes CPU consumption, memory usage, and initialization time in these scenarios, enabling real-time updates (less than 30ms per update) for millions of data, and even rendering within 1s for ten millions of data, with low memory usage and smooth tooltip interactions.\n\n## Development Experience\n\nWe want such a powerful visualization tool to be used by more developers in a simpler way, so the developer experience is also a very important aspect for us.\n\n#### Datasets\n\nECharts 5 enhances the data transformation capabilities of datasets, allowing developers to implement common data processing such as filtering, sorting, aggregating, histogram, simple clustering, regression, etc. in a simple way. Developers can use these functions in a uniform and declarative way, and can easily implement common data operations.\n\n#### Internationalization\n\nThe original internationalization implementation of ECharts takes the form of different distribution files packaged according to different language parameters. In this way, the dynamic language and main code are bound together, and the only way to switch languages when using ECharts is to reload different language versions of ECharts distributions.\n\nTherefore, starting with Apache ECharts 5, the dynamic language is separated from the main code. To switch languages, you only need to load the corresponding language, use the `registerLocale` function to mount the language object in a similar way to mount the theme, and then reinitialize it to complete the language switch.\n\n```js\n// import the lang object and set when init\necharts.registerLocale('DE', lang);\necharts.init(DomElement, null, {\n locale: 'DE'\n});\n```\n\n#### TypeScript Refactoring\n\nIn order to continue to refactor and develop new features more safely and efficiently, we started the development of Apache ECharts 5 by rewriting the code using TypeScript. The strong typing brought by TypeScript gave us the confidence to refactor the code drastically to achieve more exciting features during the development of ECharts 5.\n\nFor developers, we can also generate better and more code-compliant `DTS` type description files directly from TypeScript code. Until now, ECharts type description files have been maintained by community developers and published to [DefinityTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/echarts), which is a lot of work, so thanks for your contribution.\n\nIn addition, if a developer's component is introduced on-demand, we provide a `ComposeOption` type method that can combine a configuration item type that contains only the introduced components, which can bring stricter type checking and help you detect unintroduced component types in advance.\n\n## Accessibility\n\nApache ECharts has always taken accessibility design seriously, and we want to make the information conveyed by charts equally to be accessed. We also want to make this possible for chart developers at a very low development cost, thus making developers more willing to support the accessibility.\n\nIn the last major release, we supported automatic intelligent generation of chart descriptions based on different chart types and data, making it very easy for developers to support DOM description information for charts. In ECharts 5, we have also made more accessibility improvements to help people with visual impairments better understand the chart content.\n\n#### Theme Colors\n\nWe took accessibility into account when designing the new default theme, and we repeatedly tested the brightness and color values of the colors to help accessibility users clearly identify the chart data.\n\nMoreover, for developers with further accessibility needs, we also provide special high-contrast themes to further differentiate the data with higher contrast colors.\n\n#### Decal Patterns\n\nECharts 5 also provides a new feature of decals to help users further differentiate data by using patterns to assist with color representation.\n\n<md-example src=\"doc-example/aria-decal-simple\" width=\"600\" height=\"350\"></md-example>\n\nIn addition, decal patterns can also help in some other scenarios, such as: helping to better distinguish data in printed materials like newspapers and books that have only a single color or very few colors; using graphical elements to facilitate a more intuitive understanding of the data by the user.\n\n<md-example src=\"doc-example/aria-decal-newspaper\" width=\"600\" height=\"350\"></md-example>\n\n## Summary\n\nIn addition to the features described above, Apache ECharts has been improved in a very large number of details to help developers more easily create charts that good by default, are flexible in configuration, and tell the story behind the data with charts.\n\nThank you to all the developers who have used ECharts, and even participated in community contributions, for making Apache ECharts 5 possible. We'll be working on future developments with even more enthusiasm, and we'll see you all in 6 with even more enthusiasm!\n","dir":"/en/basics/release-note","path":"/en/basics/release-note/v5-feature","extension":".md","createdAt":"2021-07-24T08:32:48.728Z","updatedAt":"2021-07-24T08:35:47.705Z","meta":{"version":0,"revision":0,"created":1627897109120},"$loki":64},{"slug":"dataset","toc":[{"id":"在系列中设置数据","depth":2,"text":"在系列中设置数据"},{"id":"在数据集中设置数据","depth":2,"text":"在数据集中设置数据"},{"id":"数据到图形的映射","depth":2,"text":"数据到图形的映射"},{"id":"把数据集(-dataset-)的行或列映射为系列(series)","depth":2,"text":"把数据集( dataset )的行或列映射为系列(series)"},{"id":"维度(-dimension-)","depth":2,"text":"维度( dimension )"},{"id":"数据到图形的映射(-seriesencode-)","depth":2,"text":"数据到图形的映射( series.encode )"},{"id":"默认的-seriesencode","depth":2,"text":"默认的 series.encode"},{"id":"几个常见的-seriesencode-设置方式举例","depth":2,"text":"几个常见的 series.encode 设置方式举例"},{"id":"视觉通道(颜色、尺寸等)的映射","depth":2,"text":"视觉通道(颜色、尺寸等)的映射"},{"id":"数据的各种格式","depth":2,"text":"数据的各种格式"},{"id":"多个-dataset-以及如何引用他们","depth":2,"text":"多个 dataset 以及如何引用他们"},{"id":"echarts-3-的数据设置方式(seriesdata)仍正常使用","depth":2,"text":"ECharts 3 的数据设置方式(series.data)仍正常使用"},{"id":"其他","depth":2,"text":"其他"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"数据集"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E9%9B%86","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据集"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"数据集"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":")是专门用来管理数据的组件。虽然每个系列都可以在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" 中设置数据,但是从 ECharts4 支持 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"数据集"}]},{"type":"text","value":" 开始,更推荐使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"数据集"}]},{"type":"text","value":" 来管理数据。因为这样,数据可以被多个组件复用,也方便进行 “数据和其他配置” 分离的配置风格。毕竟,在运行时,数据是最常改变的,而其他配置大多并不会改变。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"在系列中设置数据"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E7%B3%BB%E5%88%97%E4%B8%AD%E8%AE%BE%E7%BD%AE%E6%95%B0%E6%8D%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在系列中设置数据"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果数据设置在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"系列"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":")中,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这种方式的优点是,适于对一些特殊的数据结构(如“树”、“图”、超大数据)进行一定的数据类型定制。\n但是缺点是,常需要用户先处理数据,把数据分割设置到各个系列(和类目轴)中。此外,不利于多个系列共享一份数据,也不利于基于原始数据进行图表类型、系列的映射安排。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"在数据集中设置数据"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E6%95%B0%E6%8D%AE%E9%9B%86%E4%B8%AD%E8%AE%BE%E7%BD%AE%E6%95%B0%E6%8D%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在数据集中设置数据"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"而数据设置在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"数据集"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":")中,会有这些好处:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"能够贴近数据可视化常见思维方式:(I)提供数据,(II)指定数据到视觉的映射,从而形成图表。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"数据和其他配置可以被分离开来。数据常变,其他配置常不变。分开易于分别管理。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"数据可以被多个系列或者组件复用,对于大数据量的场景,不必为每个系列创建一份数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"支持更多的数据的常用格式,例如二维数组、对象数组等,一定程度上避免使用者为了数据格式而进行转换。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是一个最简单的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" 的例子:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n // 提供一份数据。\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n // 声明一个 X 轴,类目轴(category)。默认情况下,类目轴对应到 dataset 第一列。\n xAxis: { type: 'category' },\n // 声明一个 Y 轴,数值轴。\n yAxis: {},\n // 声明多个 bar 系列,默认情况下,每个系列会自动对应到 dataset 的每一列。\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"或者也可以使用常见的“对象数组”的格式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n // 用 dimensions 指定了维度的顺序。直角坐标系中,如果 X 轴 type 为 category,\n // 默认把第一个维度映射到 X 轴上,后面维度映射到 Y 轴上。\n // 如果不指定 dimensions,也可以通过指定 series.encode\n // 完成映射,参见后文。\n dimensions: ['product', '2015', '2016', '2017'],\n source: [\n { product: 'Matcha Latte', '2015': 43.3, '2016': 85.8, '2017': 93.7 },\n { product: 'Milk Tea', '2015': 83.1, '2016': 73.4, '2017': 55.1 },\n { product: 'Cheese Cocoa', '2015': 86.4, '2016': 65.2, '2017': 82.5 },\n { product: 'Walnut Brownie', '2015': 72.4, '2016': 53.9, '2017': 39.1 }\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据到图形的映射"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E5%88%B0%E5%9B%BE%E5%BD%A2%E7%9A%84%E6%98%A0%E5%B0%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据到图形的映射"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如上所述,数据可视化的一个常见思路是:(I)提供数据,(II)指定数据到视觉的映射。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"简而言之,可以进行这些映射的设定:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"指定 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"数据集"}]},{"type":"text","value":" 的列(column)还是行(row)映射为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"系列"}]},{"type":"text","value":"("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":")。这件事可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.seriesLayoutBy","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.seriesLayoutBy"}]},{"type":"text","value":" 属性来配置。默认是按照列(column)来映射。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"指定维度映射的规则:如何从 dataset 的维度(一个“维度”的意思是一行/列)映射到坐标轴(如 X、Y 轴)、提示框(tooltip)、标签(label)、图形元素大小颜色等(visualMap)。这件事可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.encode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 属性,以及 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 组件来配置(如果有需要映射颜色大小等视觉维度的话)。上面的例子中,没有给出这种映射配置,那么 ECharts 就按最常见的理解进行默认映射:X 坐标轴声明为类目轴,默认情况下会自动对应到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" 中的第一列;三个柱图系列,一一对应到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" 中后面每一列。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面详细解释这些映射的设定。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"把数据集(-dataset-)的行或列映射为系列(series)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8A%8A%E6%95%B0%E6%8D%AE%E9%9B%86%EF%BC%88-dataset-%EF%BC%89%E7%9A%84%E8%A1%8C%E6%88%96%E5%88%97%E6%98%A0%E5%B0%84%E4%B8%BA%E7%B3%BB%E5%88%97%EF%BC%88series%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"把数据集( dataset )的行或列映射为系列(series)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有了数据表之后,使用者可以灵活地配置:数据如何对应到轴和图形系列。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"用户可以使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" 配置项,改变图表对于行列的理解。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" 可取值:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"'column': 默认值。系列被安放到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" 的列上面。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"'row': 系列被安放到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":" 的行上面。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"看这个例子:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n tooltip: {},\n dataset: {\n source: [\n ['product', '2012', '2013', '2014', '2015'],\n ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],\n ['Milk Tea', 86.5, 92.1, 85.7, 83.1],\n ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]\n ]\n },\n xAxis: [\n { type: 'category', gridIndex: 0 },\n { type: 'category', gridIndex: 1 }\n ],\n yAxis: [{ gridIndex: 0 }, { gridIndex: 1 }],\n grid: [{ bottom: '55%' }, { top: '55%' }],\n series: [\n // 这几个系列会出现在第一个直角坐标系中,每个系列对应到 dataset 的每一行。\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n // 这几个系列会出现在第二个直角坐标系中,每个系列对应到 dataset 的每一列。\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"维度(-dimension-)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%BB%B4%E5%BA%A6%EF%BC%88-dimension-%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"维度( dimension )"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"常用图表所描述的数据大部分是“二维表”结构,上述的例子中,我们都使用二维数组来容纳二维表。现在,当我们把系列( series )对应到“列”的时候,那么每一列就称为一个“维度( dimension )”,而每一行称为数据项( item )。反之,如果我们把系列( series )对应到表行,那么每一行就是“维度( dimension )”,每一列就是数据项( item )。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"维度可以有单独的名字,便于在图表中显示。维度名( dimension name )可以在定义在 dataset 的第一行(或者第一列)。例如上面的例子中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'score'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'amount'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'product'"}]},{"type":"text","value":" 就是维度名。从第二行开始,才是正式的数据。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" 中第一行(列)到底包含不包含维度名,ECharts 默认会自动探测。当然也可以设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.sourceHeader: true"}]},{"type":"text","value":" 显示声明第一行(列)就是维度,或者 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.sourceHeader: false"}]},{"type":"text","value":" 表明第一行(列)开始就直接是数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"维度的定义,也可以使用单独的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.dimensions"}]},{"type":"text","value":" 或者 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.dimensions"}]},{"type":"text","value":" 来定义,这样可以同时指定维度名,和维度的类型( dimension type ):"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option1 = {\n dataset: {\n dimensions: [\n { name: 'score' },\n // 可以简写为 string ,表示 dimension name 。\n 'amount',\n // 可以在 type 中指定维度类型。\n { name: 'product', type: 'ordinal' }\n ],\n source: [\n //...\n ]\n }\n // ...\n};\n\nvar option2 = {\n dataset: {\n source: [\n // ...\n ]\n },\n series: {\n type: 'line',\n // series.dimensions 会更优先于 dataset.dimension 采纳。\n dimensions: [\n null, // 可以设置为 null 表示不想设置维度名\n 'amount',\n { name: 'product', type: 'ordinal' }\n ]\n }\n // ...\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"大多数情况下,我们并不需要去设置维度类型,因为 ECharts 会自动尝试判断。但是如果不足够准确时,可以手动设置维度类型。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"维度类型( dimension type )可以取这些值:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'number'"}]},{"type":"text","value":": 默认,表示普通数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'ordinal'"}]},{"type":"text","value":": 对于类目、文本这些 string 类型的数据,如果需要能在数轴上使用,须是 'ordinal' 类型。ECharts 默认会试图自动判断这个类型。但是自动判断也可能不准确,所以使用者也可以手动强制指定。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":": 表示时间数据。设置成 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":" 则能支持自动解析数据成时间戳(timestamp),比如该维度的数据是 '2017-05-10',会自动被解析。如果这个维度被用在时间数轴("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##xAxis.type","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"axis.type"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":")上,那么会被自动设置为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'time'"}]},{"type":"text","value":" 类型。时间类型的支持参见 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"data"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'float'"}]},{"type":"text","value":": 如果设置成 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'float'"}]},{"type":"text","value":",在存储时候会使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"TypedArray"}]},{"type":"text","value":",对性能优化有好处。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'int'"}]},{"type":"text","value":": 如果设置成 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'int'"}]},{"type":"text","value":",在存储时候会使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"TypedArray"}]},{"type":"text","value":",对性能优化有好处。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据到图形的映射(-seriesencode-)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E5%88%B0%E5%9B%BE%E5%BD%A2%E7%9A%84%E6%98%A0%E5%B0%84%EF%BC%88-seriesencode-%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据到图形的映射( series.encode )"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"了解了维度的概念后,我们就可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.encode","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 来做映射。总体是这样的感觉:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: {\n source: [\n ['score', 'amount', 'product'],\n [89.3, 58212, 'Matcha Latte'],\n [57.1, 78254, 'Milk Tea'],\n [74.4, 41032, 'Cheese Cocoa'],\n [50.1, 12755, 'Cheese Brownie'],\n [89.7, 20145, 'Matcha Cocoa'],\n [68.1, 79146, 'Tea'],\n [19.6, 91852, 'Orange Juice'],\n [10.6, 101852, 'Lemon Juice'],\n [32.7, 20112, 'Walnut Brownie']\n ]\n },\n xAxis: {},\n yAxis: { type: 'category' },\n series: [\n {\n type: 'bar',\n encode: {\n // 将 \"amount\" 列映射到 X 轴。\n x: 'amount',\n // 将 \"product\" 列映射到 Y 轴。\n y: 'product'\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 声明的基本结构如下。其中冒号左边是坐标系、标签等特定名称,如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'x'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'y'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'tooltip'"}]},{"type":"text","value":" 等,冒号右边是数据中的维度名(string 格式)或者维度的序号(number 格式,从 0 开始计数),可以指定一个或多个维度(使用数组)。通常情况下,下面各种信息不需要所有的都写,按需写即可。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 支持的属性:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 在任何坐标系和系列中,都支持:\nencode: {\n // 使用 “名为 product 的维度” 和 “名为 score 的维度” 的值在 tooltip 中显示\n tooltip: ['product', 'score']\n // 使用 “维度 1” 和 “维度 3” 的维度名连起来作为系列名。(有时候名字比较长,这可以避免在 series.name 重复输入这些名字)\n seriesName: [1, 3],\n // 表示使用 “维度2” 中的值作为 id。这在使用 setOption 动态更新数据时有用处,可以使新老数据用 id 对应起来,从而能够产生合适的数据更新动画。\n itemId: 2,\n // 指定数据项的名称使用 “维度3” 在饼图等图表中有用,可以使这个名字显示在图例(legend)中。\n itemName: 3\n}\n\n// 直角坐标系(grid/cartesian)特有的属性:\nencode: {\n // 把 “维度1”、“维度5”、“名为 score 的维度” 映射到 X 轴:\n x: [1, 5, 'score'],\n // 把“维度0”映射到 Y 轴。\n y: 0\n}\n\n// 单轴(singleAxis)特有的属性:\nencode: {\n single: 3\n}\n\n// 极坐标系(polar)特有的属性:\nencode: {\n radius: 3,\n angle: 2\n}\n\n// 地理坐标系(geo)特有的属性:\nencode: {\n lng: 3,\n lat: 2\n}\n\n// 对于一些没有坐标系的图表,例如饼图、漏斗图等,可以是:\nencode: {\n value: 3\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这是个更丰富的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 的 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=dataset-encode1&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"示例"}]},{"type":"text","value":" 。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"默认的-seriesencode"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%BB%98%E8%AE%A4%E7%9A%84-seriesencode","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"默认的 series.encode"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"值得一提的是,当 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.encode"}]},{"type":"text","value":" 并没有指定时,ECharts 针对最常见直角坐标系中的图表(折线图、柱状图、散点图、K 线图等)、饼图、漏斗图,会采用一些默认的映射规则。默认的映射规则比较简单,大体是:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在坐标系中(如直角坐标系、极坐标系等)\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果有类目轴(axis.type 为 'category'),则将第一列(行)映射到这个轴上,后续每一列(行)对应一个系列。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果没有类目轴,假如坐标系有两个轴(例如直角坐标系的 X Y 轴),则每两列对应一个系列,这两列分别映射到这两个轴上。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果没有坐标系(如饼图)\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"取第一列(行)为名字,第二列(行)为数值(如果只有一列,则取第一列为数值)。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"默认的规则不能满足要求时,就可以自己来配置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"encode"}]},{"type":"text","value":",也并不复杂。这是一个 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=dataset-default&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"例子"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"几个常见的-seriesencode-设置方式举例"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%87%A0%E4%B8%AA%E5%B8%B8%E8%A7%81%E7%9A%84-seriesencode-%E8%AE%BE%E7%BD%AE%E6%96%B9%E5%BC%8F%E4%B8%BE%E4%BE%8B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"几个常见的 series.encode 设置方式举例"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:如何把第三列设置为 X 轴,第五列设置为 Y 轴?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n // 注意维度序号(dimensionIndex)从 0 开始计数,第三列是 dimensions[2]。\n encode: { x: 2, y: 4 }\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:如何把第三行设置为 X 轴,第五行设置为 Y 轴?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n encode: { x: 2, y: 4 },\n seriesLayoutBy: 'row'\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:如何把第二列设置为标签?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:\n关于标签的显示 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.label.formatter","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"label.formatter"}]},{"type":"text","value":",现在支持引用特定维度的值,例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"series: {\n label: {\n // `'{@score}'` 表示 “名为 score” 的维度里的值。\n // `'{@[4]}'` 表示引用序号为 4 的维度里的值。\n formatter: 'aaa{@product}bbb{@score}ccc{@[4]}ddd';\n }\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:如何让第 2 列和第 3 列显示在提示框(tooltip)中?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"option = {\n series: {\n encode: {\n tooltip: [1, 2]\n // ...\n }\n // ...\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:数据里没有维度名,那么怎么给出维度名?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option = {\n dataset: {\n dimensions: ['score', 'amount'],\n source: [\n [89.3, 3371],\n [92.1, 8123],\n [94.4, 1954],\n [85.4, 829]\n ]\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:如何把第三列映射为气泡图的点的大小?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"var option = {\n dataset: {\n source: [\n [12, 323, 11.2],\n [23, 167, 8.3],\n [81, 284, 12],\n [91, 413, 4.1],\n [13, 287, 13.5]\n ]\n },\n visualMap: {\n show: false,\n dimension: 2, // 指向第三列(列序号从 0 开始记,所以设置为 2)。\n min: 2, // 需要给出数值范围,最小数值。\n max: 15, // 需要给出数值范围,最大数值。\n inRange: {\n // 气泡尺寸:5 像素到 60 像素。\n symbolSize: [5, 60]\n }\n },\n xAxis: {},\n yAxis: {},\n series: {\n type: 'scatter'\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"问:encode 里指定了映射,但是不管用?"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"答:可以查查有没有拼错,比如,维度名是:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Life Expectancy'"}]},{"type":"text","value":",encode 中拼成了 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'Life Expectency'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"视觉通道(颜色、尺寸等)的映射"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%A7%86%E8%A7%89%E9%80%9A%E9%81%93%EF%BC%88%E9%A2%9C%E8%89%B2%E3%80%81%E5%B0%BA%E5%AF%B8%E7%AD%89%EF%BC%89%E7%9A%84%E6%98%A0%E5%B0%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"视觉通道(颜色、尺寸等)的映射"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 组件进行视觉通道的映射。详见 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 文档的介绍。这是一个 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=dataset-encode0&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"示例"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据的各种格式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E7%9A%84%E5%90%84%E7%A7%8D%E6%A0%BC%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据的各种格式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"多数常见图表中,数据适于用二维表的形式描述。广为使用的数据表格软件(如 MS Excel、Numbers)或者关系数据数据库都是二维表。他们的数据可以导出成 JSON 格式,输入到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset.source"}]},{"type":"text","value":" 中,在不少情况下可以免去一些数据处理的步骤。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"假如数据导出成 csv 文件,那么可以使用一些 csv 工具如 "},{"type":"element","tag":"a","props":{"href":"https://github.com/d3/d3-dsv","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dsv"}]},{"type":"text","value":" 或者 "},{"type":"element","tag":"a","props":{"href":"https://github.com/mholt/PapaParse","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"PapaParse"}]},{"type":"text","value":" 将 csv 转成 JSON。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 JavaScript 常用的数据传输格式中,二维数组可以比较直观的存储二维表。前面的示例都是使用二维数组表示。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了二维数组以外,dataset 也支持例如下面 key-value 方式的数据格式,这类格式也非常常见。但是这类格式中,目前并不支持 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.seriesLayoutBy","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"seriesLayoutBy"}]},{"type":"text","value":" 参数。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"dataset: [\n {\n // 按行的 key-value 形式(对象数组),这是个比较常见的格式。\n source: [\n { product: 'Matcha Latte', count: 823, score: 95.8 },\n { product: 'Milk Tea', count: 235, score: 81.4 },\n { product: 'Cheese Cocoa', count: 1042, score: 91.2 },\n { product: 'Walnut Brownie', count: 988, score: 76.9 }\n ]\n },\n {\n // 按列的 key-value 形式。\n source: {\n product: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],\n count: [823, 235, 1042, 988],\n score: [95.8, 81.4, 91.2, 76.9]\n }\n }\n];\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"多个-dataset-以及如何引用他们"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%A4%9A%E4%B8%AA-dataset-%E4%BB%A5%E5%8F%8A%E5%A6%82%E4%BD%95%E5%BC%95%E7%94%A8%E4%BB%96%E4%BB%AC","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"多个 dataset 以及如何引用他们"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"可以同时定义多个 dataset。系列可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.datasetIndex","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.datasetIndex"}]},{"type":"text","value":" 来指定引用哪个 dataset。例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var option = {\n dataset: [\n {\n // 序号为 0 的 dataset。\n source: []\n },\n {\n // 序号为 1 的 dataset。\n source: []\n },\n {\n // 序号为 2 的 dataset。\n source: []\n }\n ],\n series: [\n {\n // 使用序号为 2 的 dataset。\n datasetIndex: 2\n },\n {\n // 使用序号为 1 的 dataset。\n datasetIndex: 1\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"echarts-3-的数据设置方式(seriesdata)仍正常使用"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-3-%E7%9A%84%E6%95%B0%E6%8D%AE%E8%AE%BE%E7%BD%AE%E6%96%B9%E5%BC%8F%EF%BC%88seriesdata%EF%BC%89%E4%BB%8D%E6%AD%A3%E5%B8%B8%E4%BD%BF%E7%94%A8","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts 3 的数据设置方式(series.data)仍正常使用"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 4 之前一直以来的数据声明方式仍然被正常支持,如果系列已经声明了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":", 那么就会使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" 而非 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其实,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":" 也是种会一直存在的重要设置方式。一些特殊的非 table 格式的图表,如 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-treemap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"treemap"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-graph","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"graph"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-lines","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lines"}]},{"type":"text","value":" 等,现在仍不支持在 dataset 中设置,仍然需要使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series.data","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"series.data"}]},{"type":"text","value":"。另外,对于巨大数据量的渲染(如百万以上的数据量),需要使用 "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.appendData"},"children":[{"type":"text","value":"appendData"}]},{"type":"text","value":" 进行增量加载,这种情况不支持使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"其他"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%85%B6%E4%BB%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"其他"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"目前并非所有图表都支持 dataset。支持 dataset 的图表有:\n"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"bar"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pie"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scatter"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"effectScatter"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"parallel"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"candlestick"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"map"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"funnel"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom"}]},{"type":"text","value":"。\n后续会有更多的图表进行支持。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最后,给出这个 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=dataset-link&edit=1&reset=1","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"示例"}]},{"type":"text","value":",多个图表共享一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataset"}]},{"type":"text","value":",并带有联动交互。"}]}]},"text":"# 数据集\n\n`数据集`(`dataset`)是专门用来管理数据的组件。虽然每个系列都可以在 `series.data` 中设置数据,但是从 ECharts4 支持 `数据集` 开始,更推荐使用 `数据集` 来管理数据。因为这样,数据可以被多个组件复用,也方便进行 “数据和其他配置” 分离的配置风格。毕竟,在运行时,数据是最常改变的,而其他配置大多并不会改变。\n\n## 在系列中设置数据\n\n如果数据设置在 `系列`(`series`)中,例如:\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n```\n\n这种方式的优点是,适于对一些特殊的数据结构(如“树”、“图”、超大数据)进行一定的数据类型定制。\n但是缺点是,常需要用户先处理数据,把数据分割设置到各个系列(和类目轴)中。此外,不利于多个系列共享一份数据,也不利于基于原始数据进行图表类型、系列的映射安排。\n\n## 在数据集中设置数据\n\n而数据设置在 `数据集`(`dataset`)中,会有这些好处:\n\n- 能够贴近数据可视化常见思维方式:(I)提供数据,(II)指定数据到视觉的映射,从而形成图表。\n- 数据和其他配置可以被分离开来。数据常变,其他配置常不变。分开易于分别管理。\n- 数据可以被多个系列或者组件复用,对于大数据量的场景,不必为每个系列创建一份数据。\n- 支持更多的数据的常用格式,例如二维数组、对象数组等,一定程度上避免使用者为了数据格式而进行转换。\n\n下面是一个最简单的 `dataset` 的例子:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n // 提供一份数据。\n source: [\n ['product', '2015', '2016', '2017'],\n ['Matcha Latte', 43.3, 85.8, 93.7],\n ['Milk Tea', 83.1, 73.4, 55.1],\n ['Cheese Cocoa', 86.4, 65.2, 82.5],\n ['Walnut Brownie', 72.4, 53.9, 39.1]\n ]\n },\n // 声明一个 X 轴,类目轴(category)。默认情况下,类目轴对应到 dataset 第一列。\n xAxis: { type: 'category' },\n // 声明一个 Y 轴,数值轴。\n yAxis: {},\n // 声明多个 bar 系列,默认情况下,每个系列会自动对应到 dataset 的每一列。\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\n或者也可以使用常见的“对象数组”的格式:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n // 用 dimensions 指定了维度的顺序。直角坐标系中,如果 X 轴 type 为 category,\n // 默认把第一个维度映射到 X 轴上,后面维度映射到 Y 轴上。\n // 如果不指定 dimensions,也可以通过指定 series.encode\n // 完成映射,参见后文。\n dimensions: ['product', '2015', '2016', '2017'],\n source: [\n { product: 'Matcha Latte', '2015': 43.3, '2016': 85.8, '2017': 93.7 },\n { product: 'Milk Tea', '2015': 83.1, '2016': 73.4, '2017': 55.1 },\n { product: 'Cheese Cocoa', '2015': 86.4, '2016': 65.2, '2017': 82.5 },\n { product: 'Walnut Brownie', '2015': 72.4, '2016': 53.9, '2017': 39.1 }\n ]\n },\n xAxis: { type: 'category' },\n yAxis: {},\n series: [{ type: 'bar' }, { type: 'bar' }, { type: 'bar' }]\n};\n```\n\n## 数据到图形的映射\n\n如上所述,数据可视化的一个常见思路是:(I)提供数据,(II)指定数据到视觉的映射。\n\n简而言之,可以进行这些映射的设定:\n\n- 指定 `数据集` 的列(column)还是行(row)映射为 `系列`(`series`)。这件事可以使用 [series.seriesLayoutBy](https://echarts.apache.org/option.html##series.seriesLayoutBy) 属性来配置。默认是按照列(column)来映射。\n- 指定维度映射的规则:如何从 dataset 的维度(一个“维度”的意思是一行/列)映射到坐标轴(如 X、Y 轴)、提示框(tooltip)、标签(label)、图形元素大小颜色等(visualMap)。这件事可以使用 [series.encode](https://echarts.apache.org/option.html##series.encode) 属性,以及 [visualMap](https://echarts.apache.org/option.html##visualMap) 组件来配置(如果有需要映射颜色大小等视觉维度的话)。上面的例子中,没有给出这种映射配置,那么 ECharts 就按最常见的理解进行默认映射:X 坐标轴声明为类目轴,默认情况下会自动对应到 `dataset.source` 中的第一列;三个柱图系列,一一对应到 `dataset.source` 中后面每一列。\n\n下面详细解释这些映射的设定。\n\n## 把数据集( dataset )的行或列映射为系列(series)\n\n有了数据表之后,使用者可以灵活地配置:数据如何对应到轴和图形系列。\n\n用户可以使用 `seriesLayoutBy` 配置项,改变图表对于行列的理解。`seriesLayoutBy` 可取值:\n\n- 'column': 默认值。系列被安放到 `dataset` 的列上面。\n- 'row': 系列被安放到 `dataset` 的行上面。\n\n看这个例子:\n\n```js [live]\noption = {\n legend: {},\n tooltip: {},\n dataset: {\n source: [\n ['product', '2012', '2013', '2014', '2015'],\n ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],\n ['Milk Tea', 86.5, 92.1, 85.7, 83.1],\n ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]\n ]\n },\n xAxis: [\n { type: 'category', gridIndex: 0 },\n { type: 'category', gridIndex: 1 }\n ],\n yAxis: [{ gridIndex: 0 }, { gridIndex: 1 }],\n grid: [{ bottom: '55%' }, { top: '55%' }],\n series: [\n // 这几个系列会出现在第一个直角坐标系中,每个系列对应到 dataset 的每一行。\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n { type: 'bar', seriesLayoutBy: 'row' },\n // 这几个系列会出现在第二个直角坐标系中,每个系列对应到 dataset 的每一列。\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },\n { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 }\n ]\n};\n```\n\n## 维度( dimension )\n\n常用图表所描述的数据大部分是“二维表”结构,上述的例子中,我们都使用二维数组来容纳二维表。现在,当我们把系列( series )对应到“列”的时候,那么每一列就称为一个“维度( dimension )”,而每一行称为数据项( item )。反之,如果我们把系列( series )对应到表行,那么每一行就是“维度( dimension )”,每一列就是数据项( item )。\n\n维度可以有单独的名字,便于在图表中显示。维度名( dimension name )可以在定义在 dataset 的第一行(或者第一列)。例如上面的例子中,`'score'`、`'amount'`、`'product'` 就是维度名。从第二行开始,才是正式的数据。`dataset.source` 中第一行(列)到底包含不包含维度名,ECharts 默认会自动探测。当然也可以设置 `dataset.sourceHeader: true` 显示声明第一行(列)就是维度,或者 `dataset.sourceHeader: false` 表明第一行(列)开始就直接是数据。\n\n维度的定义,也可以使用单独的 `dataset.dimensions` 或者 `series.dimensions` 来定义,这样可以同时指定维度名,和维度的类型( dimension type ):\n\n```js\nvar option1 = {\n dataset: {\n dimensions: [\n { name: 'score' },\n // 可以简写为 string ,表示 dimension name 。\n 'amount',\n // 可以在 type 中指定维度类型。\n { name: 'product', type: 'ordinal' }\n ],\n source: [\n //...\n ]\n }\n // ...\n};\n\nvar option2 = {\n dataset: {\n source: [\n // ...\n ]\n },\n series: {\n type: 'line',\n // series.dimensions 会更优先于 dataset.dimension 采纳。\n dimensions: [\n null, // 可以设置为 null 表示不想设置维度名\n 'amount',\n { name: 'product', type: 'ordinal' }\n ]\n }\n // ...\n};\n```\n\n大多数情况下,我们并不需要去设置维度类型,因为 ECharts 会自动尝试判断。但是如果不足够准确时,可以手动设置维度类型。\n\n维度类型( dimension type )可以取这些值:\n\n- `'number'`: 默认,表示普通数据。\n- `'ordinal'`: 对于类目、文本这些 string 类型的数据,如果需要能在数轴上使用,须是 'ordinal' 类型。ECharts 默认会试图自动判断这个类型。但是自动判断也可能不准确,所以使用者也可以手动强制指定。\n- `'time'`: 表示时间数据。设置成 `'time'` 则能支持自动解析数据成时间戳(timestamp),比如该维度的数据是 '2017-05-10',会自动被解析。如果这个维度被用在时间数轴([axis.type](https://echarts.apache.org/option.html##xAxis.type) 为 `'time'`)上,那么会被自动设置为 `'time'` 类型。时间类型的支持参见 [data](https://echarts.apache.org/option.html##series.data)。\n- `'float'`: 如果设置成 `'float'`,在存储时候会使用 `TypedArray`,对性能优化有好处。\n- `'int'`: 如果设置成 `'int'`,在存储时候会使用 `TypedArray`,对性能优化有好处。\n\n## 数据到图形的映射( series.encode )\n\n了解了维度的概念后,我们就可以使用 [series.encode](https://echarts.apache.org/option.html##series.encode) 来做映射。总体是这样的感觉:\n\n```js [live]\nvar option = {\n dataset: {\n source: [\n ['score', 'amount', 'product'],\n [89.3, 58212, 'Matcha Latte'],\n [57.1, 78254, 'Milk Tea'],\n [74.4, 41032, 'Cheese Cocoa'],\n [50.1, 12755, 'Cheese Brownie'],\n [89.7, 20145, 'Matcha Cocoa'],\n [68.1, 79146, 'Tea'],\n [19.6, 91852, 'Orange Juice'],\n [10.6, 101852, 'Lemon Juice'],\n [32.7, 20112, 'Walnut Brownie']\n ]\n },\n xAxis: {},\n yAxis: { type: 'category' },\n series: [\n {\n type: 'bar',\n encode: {\n // 将 \"amount\" 列映射到 X 轴。\n x: 'amount',\n // 将 \"product\" 列映射到 Y 轴。\n y: 'product'\n }\n }\n ]\n};\n```\n\n`series.encode` 声明的基本结构如下。其中冒号左边是坐标系、标签等特定名称,如 `'x'`, `'y'`, `'tooltip'` 等,冒号右边是数据中的维度名(string 格式)或者维度的序号(number 格式,从 0 开始计数),可以指定一个或多个维度(使用数组)。通常情况下,下面各种信息不需要所有的都写,按需写即可。\n\n下面是 `series.encode` 支持的属性:\n\n```js\n// 在任何坐标系和系列中,都支持:\nencode: {\n // 使用 “名为 product 的维度” 和 “名为 score 的维度” 的值在 tooltip 中显示\n tooltip: ['product', 'score']\n // 使用 “维度 1” 和 “维度 3” 的维度名连起来作为系列名。(有时候名字比较长,这可以避免在 series.name 重复输入这些名字)\n seriesName: [1, 3],\n // 表示使用 “维度2” 中的值作为 id。这在使用 setOption 动态更新数据时有用处,可以使新老数据用 id 对应起来,从而能够产生合适的数据更新动画。\n itemId: 2,\n // 指定数据项的名称使用 “维度3” 在饼图等图表中有用,可以使这个名字显示在图例(legend)中。\n itemName: 3\n}\n\n// 直角坐标系(grid/cartesian)特有的属性:\nencode: {\n // 把 “维度1”、“维度5”、“名为 score 的维度” 映射到 X 轴:\n x: [1, 5, 'score'],\n // 把“维度0”映射到 Y 轴。\n y: 0\n}\n\n// 单轴(singleAxis)特有的属性:\nencode: {\n single: 3\n}\n\n// 极坐标系(polar)特有的属性:\nencode: {\n radius: 3,\n angle: 2\n}\n\n// 地理坐标系(geo)特有的属性:\nencode: {\n lng: 3,\n lat: 2\n}\n\n// 对于一些没有坐标系的图表,例如饼图、漏斗图等,可以是:\nencode: {\n value: 3\n}\n```\n\n这是个更丰富的 `series.encode` 的 [示例](https://echarts.apache.org/examples/zh/editor.html?c=dataset-encode1&edit=1&reset=1) 。\n\n## 默认的 series.encode\n\n值得一提的是,当 `series.encode` 并没有指定时,ECharts 针对最常见直角坐标系中的图表(折线图、柱状图、散点图、K 线图等)、饼图、漏斗图,会采用一些默认的映射规则。默认的映射规则比较简单,大体是:\n\n- 在坐标系中(如直角坐标系、极坐标系等)\n - 如果有类目轴(axis.type 为 'category'),则将第一列(行)映射到这个轴上,后续每一列(行)对应一个系列。\n - 如果没有类目轴,假如坐标系有两个轴(例如直角坐标系的 X Y 轴),则每两列对应一个系列,这两列分别映射到这两个轴上。\n- 如果没有坐标系(如饼图)\n - 取第一列(行)为名字,第二列(行)为数值(如果只有一列,则取第一列为数值)。\n\n默认的规则不能满足要求时,就可以自己来配置 `encode`,也并不复杂。这是一个 [例子](https://echarts.apache.org/examples/zh/editor.html?c=dataset-default&edit=1&reset=1)。\n\n## 几个常见的 series.encode 设置方式举例\n\n问:如何把第三列设置为 X 轴,第五列设置为 Y 轴?\n\n答:\n\n```js\noption = {\n series: {\n // 注意维度序号(dimensionIndex)从 0 开始计数,第三列是 dimensions[2]。\n encode: { x: 2, y: 4 }\n // ...\n }\n};\n```\n\n问:如何把第三行设置为 X 轴,第五行设置为 Y 轴?\n\n答:\n\n```js\noption = {\n series: {\n encode: { x: 2, y: 4 },\n seriesLayoutBy: 'row'\n // ...\n }\n};\n```\n\n问:如何把第二列设置为标签?\n\n答:\n关于标签的显示 [label.formatter](https://echarts.apache.org/option.html##series.label.formatter),现在支持引用特定维度的值,例如:\n\n```js\nseries: {\n label: {\n // `'{@score}'` 表示 “名为 score” 的维度里的值。\n // `'{@[4]}'` 表示引用序号为 4 的维度里的值。\n formatter: 'aaa{@product}bbb{@score}ccc{@[4]}ddd';\n }\n}\n```\n\n问:如何让第 2 列和第 3 列显示在提示框(tooltip)中?\n\n答:\n\n```js\noption = {\n series: {\n encode: {\n tooltip: [1, 2]\n // ...\n }\n // ...\n }\n};\n```\n\n问:数据里没有维度名,那么怎么给出维度名?\n\n答:\n\n```js\nvar option = {\n dataset: {\n dimensions: ['score', 'amount'],\n source: [\n [89.3, 3371],\n [92.1, 8123],\n [94.4, 1954],\n [85.4, 829]\n ]\n }\n};\n```\n\n问:如何把第三列映射为气泡图的点的大小?\n\n答:\n\n```js [live]\nvar option = {\n dataset: {\n source: [\n [12, 323, 11.2],\n [23, 167, 8.3],\n [81, 284, 12],\n [91, 413, 4.1],\n [13, 287, 13.5]\n ]\n },\n visualMap: {\n show: false,\n dimension: 2, // 指向第三列(列序号从 0 开始记,所以设置为 2)。\n min: 2, // 需要给出数值范围,最小数值。\n max: 15, // 需要给出数值范围,最大数值。\n inRange: {\n // 气泡尺寸:5 像素到 60 像素。\n symbolSize: [5, 60]\n }\n },\n xAxis: {},\n yAxis: {},\n series: {\n type: 'scatter'\n }\n};\n```\n\n问:encode 里指定了映射,但是不管用?\n\n答:可以查查有没有拼错,比如,维度名是:`'Life Expectancy'`,encode 中拼成了 `'Life Expectency'`。\n\n## 视觉通道(颜色、尺寸等)的映射\n\n我们可以使用 [visualMap](https://echarts.apache.org/option.html##visualMap) 组件进行视觉通道的映射。详见 [visualMap](https://echarts.apache.org/option.html##visualMap) 文档的介绍。这是一个 [示例](https://echarts.apache.org/examples/zh/editor.html?c=dataset-encode0&edit=1&reset=1)。\n\n## 数据的各种格式\n\n多数常见图表中,数据适于用二维表的形式描述。广为使用的数据表格软件(如 MS Excel、Numbers)或者关系数据数据库都是二维表。他们的数据可以导出成 JSON 格式,输入到 `dataset.source` 中,在不少情况下可以免去一些数据处理的步骤。\n\n> 假如数据导出成 csv 文件,那么可以使用一些 csv 工具如 [dsv](https://github.com/d3/d3-dsv) 或者 [PapaParse](https://github.com/mholt/PapaParse) 将 csv 转成 JSON。\n\n在 JavaScript 常用的数据传输格式中,二维数组可以比较直观的存储二维表。前面的示例都是使用二维数组表示。\n\n除了二维数组以外,dataset 也支持例如下面 key-value 方式的数据格式,这类格式也非常常见。但是这类格式中,目前并不支持 [seriesLayoutBy](https://echarts.apache.org/option.html##series.seriesLayoutBy) 参数。\n\n```js\ndataset: [\n {\n // 按行的 key-value 形式(对象数组),这是个比较常见的格式。\n source: [\n { product: 'Matcha Latte', count: 823, score: 95.8 },\n { product: 'Milk Tea', count: 235, score: 81.4 },\n { product: 'Cheese Cocoa', count: 1042, score: 91.2 },\n { product: 'Walnut Brownie', count: 988, score: 76.9 }\n ]\n },\n {\n // 按列的 key-value 形式。\n source: {\n product: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie'],\n count: [823, 235, 1042, 988],\n score: [95.8, 81.4, 91.2, 76.9]\n }\n }\n];\n```\n\n## 多个 dataset 以及如何引用他们\n\n可以同时定义多个 dataset。系列可以通过 [series.datasetIndex](https://echarts.apache.org/option.html##series.datasetIndex) 来指定引用哪个 dataset。例如:\n\n```js\nvar option = {\n dataset: [\n {\n // 序号为 0 的 dataset。\n source: []\n },\n {\n // 序号为 1 的 dataset。\n source: []\n },\n {\n // 序号为 2 的 dataset。\n source: []\n }\n ],\n series: [\n {\n // 使用序号为 2 的 dataset。\n datasetIndex: 2\n },\n {\n // 使用序号为 1 的 dataset。\n datasetIndex: 1\n }\n ]\n};\n```\n\n## ECharts 3 的数据设置方式(series.data)仍正常使用\n\nECharts 4 之前一直以来的数据声明方式仍然被正常支持,如果系列已经声明了 [series.data](https://echarts.apache.org/option.html##series.data), 那么就会使用 [series.data](https://echarts.apache.org/option.html##series.data) 而非 `dataset`。\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Matcha Latte', 'Milk Tea', 'Cheese Cocoa', 'Walnut Brownie']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n name: '2015',\n data: [89.3, 92.1, 94.4, 85.4]\n },\n {\n type: 'bar',\n name: '2016',\n data: [95.8, 89.4, 91.2, 76.9]\n },\n {\n type: 'bar',\n name: '2017',\n data: [97.7, 83.1, 92.5, 78.1]\n }\n ]\n};\n```\n\n其实,[series.data](https://echarts.apache.org/option.html##series.data) 也是种会一直存在的重要设置方式。一些特殊的非 table 格式的图表,如 [treemap](https://echarts.apache.org/option.html##series-treemap)、[graph](https://echarts.apache.org/option.html##series-graph)、[lines](https://echarts.apache.org/option.html##series-lines) 等,现在仍不支持在 dataset 中设置,仍然需要使用 [series.data](https://echarts.apache.org/option.html##series.data)。另外,对于巨大数据量的渲染(如百万以上的数据量),需要使用 [appendData](api.html#echartsInstance.appendData) 进行增量加载,这种情况不支持使用 `dataset`。\n\n## 其他\n\n目前并非所有图表都支持 dataset。支持 dataset 的图表有:\n`line`、`bar`、`pie`、`scatter`、`effectScatter`、`parallel`、`candlestick`、`map`、`funnel`、`custom`。\n后续会有更多的图表进行支持。\n\n最后,给出这个 [示例](https://echarts.apache.org/examples/zh/editor.html?c=dataset-link&edit=1&reset=1),多个图表共享一个 `dataset`,并带有联动交互。\n","dir":"/zh/concepts","path":"/zh/concepts/dataset","extension":".md","createdAt":"2021-06-04T12:26:37.933Z","updatedAt":"2021-07-21T15:12:02.141Z","meta":{"version":0,"revision":0,"created":1627897109159},"$loki":65},{"slug":"v5-upgrade-guide","toc":[{"id":"breaking-changes","depth":2,"text":"Breaking Changes"},{"id":"echarts-related-extensions","depth":2,"text":"ECharts Related Extensions"},{"id":"deprecated-api","depth":2,"text":"Deprecated API"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"apache-echarts-5-upgrade-guide"},"children":[{"type":"element","tag":"a","props":{"href":"#apache-echarts-5-upgrade-guide","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Apache ECharts 5 Upgrade Guide"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This guide is for those who want to upgrade from echarts 4.x (hereafter "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":") to echarts 5.x (hereafter "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":"). You can find out what new features "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" brings that are worth upgrading in "},{"type":"element","tag":"a","props":{"href":"en/basics/release-note/v5-feature"},"children":[{"type":"text","value":"New Features in ECharts 5"}]},{"type":"text","value":". In most cases, developers won't need to do anything extra for this upgrade, as echarts has always tried to keep the API as stable and backward-compatible as possible. However, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" still brings some breaking changes that require special attention. In addition, in some cases, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" provides a better API to replace the previous one, and these superseded APIs will no longer be recommended (though we have tried to be as compatible as possible with these changes). We'll try to explain these changes in detail in this document."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"breaking-changes"},"children":[{"type":"element","tag":"a","props":{"href":"#breaking-changes","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Breaking Changes"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"default-theme"},"children":[{"type":"element","tag":"a","props":{"href":"#default-theme","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Default theme"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"First of all, the default theme has been changed. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" has made a lot of changes and optimizations on the theme design. If you still want to keep the colors of the old version, you can manually declare the colors as follows."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n // ...\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Or, to make a simple "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" theme."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var themeEC4 = {\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n};\nvar chart = echarts.init(dom, themeEC4);\nchart.setOption(/* ... */);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"importing-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#importing-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Importing ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"removing-support-for-default-exports"},"children":[{"type":"element","tag":"a","props":{"href":"#removing-support-for-default-exports","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Removing Support for Default Exports"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Since "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":", echarts only provides "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"named exports"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"So if you are importing "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts"}]},{"type":"text","value":" like this:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import echarts from 'echarts';\n// Or import core module\nimport echarts from 'echarts/lib/echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It will throw error in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":". You need to change the code as follows to import the entire module."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n// Or\nimport * as echarts from 'echarts/lib/echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"tree-shaking-api"},"children":[{"type":"element","tag":"a","props":{"href":"#tree-shaking-api","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"tree-shaking API"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In 5.0.1, we introduced the new "},{"type":"element","tag":"a","props":{"href":"en/basics/import"},"children":[{"type":"text","value":"tree-shaking API"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\nimport { BarChart } from 'echarts/charts';\nimport { GridComponent } from 'echarts/components';\n// Note that the Canvas renderer is no longer included by default and needs to be imported explictly, or import the SVGRenderer if you need to use the SVG rendering mode\nimport { CanvasRenderer } from 'echarts/renderers';\n\necharts.use([BarChart, GridComponent, CanvasRenderer]);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To make it easier for you to know which modules you need to import based on your option, our new example page adds a new feature to generate the three-shakable code, you can check the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Full Code"}]},{"type":"text","value":" tab on the example page to see the modules you need to introduce and the related code."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In most cases, we recommend using the new tree-shaking interface whenever possible, as it maximizes the power of the packaging tool tree-shaking and effectively resolves namespace conflicts and prevents the exposure of internal structures. If you are still using the CommonJS method of writing modules, the previous approach is still supported:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"const echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/component/grid');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Second, because our source code has been rewritten using TypeScript, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" will no longer support importing files from "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/src"}]},{"type":"text","value":". You need to change it to import from "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/lib"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"dependency-adjustment"},"children":[{"type":"element","tag":"a","props":{"href":"#dependency-adjustment","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dependency Adjustment"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Note: This section is only for developers who use tree-shaking interfaces to ensure a minimal bundle size, not for those who imports the whole package."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to keep the size of the bundle small enough, we remove some dependencies that would have been imported by default. For example, as mentioned above, when using the new on-demand interface, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":" is no longer introduced by default, which ensures that unneeded Canvas rendering code is not imported when only SVG rendering mode is used, and in addition, the following dependencies are adjusted."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The right-angle coordinate system component is no longer introduced by default when using line charts and bar charts, so the following introduction method was used before"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"const echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/chart/line');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Need to introduce the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"grid"}]},{"type":"text","value":" component separately again"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"require('echarts/lib/component/grid');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reference issues: "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/14080","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"#14080"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/13764","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"#13764"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria"}]},{"type":"text","value":" components are no longer imported by default. You need import it manually if necessary."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import { AriaComponent } from 'echarts/components';\necharts.use(AriaComponent);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Or"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"require('echarts/lib/component/aria');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"removes-built-in-geojson"},"children":[{"type":"element","tag":"a","props":{"href":"#removes-built-in-geojson","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Removes Built-in GeoJSON"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" removes the built-in geoJSON (previously in the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/map"}]},{"type":"text","value":" folder). These geoJSON files were always sourced from third parties. If users still need them, they can go get them from the old version, or find more appropriate data and register it with ECharts via the registerMap interface."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"browser-compatibility"},"children":[{"type":"element","tag":"a","props":{"href":"#browser-compatibility","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Browser Compatibility"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"IE8 is no longer supported by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":". We no longer maintain and upgrade the previous "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/zrender/tree/4.3.2/src/vml","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"VML renderer"}]},{"type":"text","value":" for IE8 compatibility. If developers have a strong need for a VML renderer, they are welcome to submit a pull request to upgrade the VML renderer or maintain a separate third-party VML renderer, as we support registration of standalone renderers starting with "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5.0.1"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"echarts-configuration-item-adjustment"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-configuration-item-adjustment","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts configuration item adjustment"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"visual-style-settings-priority-change"},"children":[{"type":"element","tag":"a","props":{"href":"#visual-style-settings-priority-change","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Visual style settings priority change"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The priority of the visuals between "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" are reversed since "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"That is, previously in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":", the visuals (i.e., color, symbol, symbolSize, ...) that generated by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":" has the highest priority, which will overwrite the same visuals settings in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":". That brought troubles when needing to specify specific style to some certain data items while using "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":". Since "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":", the visuals specified in "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" has the highest priority."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In most cases, users will probably not notice this change when migrating from "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":". But users can still check that if "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap component"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" are both specified."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"padding-for-rich-text"},"children":[{"type":"element","tag":"a","props":{"href":"#padding-for-rich-text","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":" for Rich Text"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" adjusts the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.label.rich.%3Cstyle_name%3E.padding","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"rich.?.padding"}]},{"type":"text","value":" to make it more compliant with CSS specifications. In "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":", for example "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich. .padding: [11, 22, 33, 44]"}]},{"type":"text","value":" means that "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-top"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"33"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-bottom"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"11"}]},{"type":"text","value":". The position of the top and bottom is adjusted in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich. .padding: [11, 22, 33, 44]"}]},{"type":"text","value":" means that "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-top"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"11"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-bottom"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"33"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If the user is using "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.label.rich.%3Cstyle_name%3E.padding","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"rich.?.padding"}]},{"type":"text","value":", this order needs to be adjusted."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"echarts-related-extensions"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-related-extensions","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts Related Extensions"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"These extensions need to be upgraded to new version to support echarts "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-gl","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-gl"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-wordcloud","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-wordcloud"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-liquidfill","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-liquidfill"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"deprecated-api"},"children":[{"type":"element","tag":"a","props":{"href":"#deprecated-api","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Deprecated API"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Some of the API and echarts options are deprecated since "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":", but are still backward compatible. Users can "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"keep using these deprecated API"}]},{"type":"text","value":", with only some warning will be printed to console in dev mode. But if users have spare time, it is recommended to upgraded to new API for the consideration of long term maintenance."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The deprecated API and their corresponding new API are listed as follows:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Transform related props of a graphic element are changed:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Changes:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position: [number, number]"}]},{"type":"text","value":" are changed to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"x: number"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"y: number"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scale: [number, number]"}]},{"type":"text","value":" are changed to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scaleX: number"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scaleY: number"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"origin: [number, number]"}]},{"type":"text","value":" are changed to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"originX: number"}]},{"type":"text","value":"/"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"originY: number"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scale"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"origin"}]},{"type":"text","value":" are still supported but deprecated."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"It effects these places:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graphic"}]},{"type":"text","value":" components: the declarations of each element."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":": the declarations of each element in the return of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Directly use zrender graphic elements."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Text related props on graphic elements are changed:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Changes:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The declaration of attached text (or say, rect text) are changed.\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Prop "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style.text"}]},{"type":"text","value":" are deprecated in elements except "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Text"}]},{"type":"text","value":". Instead, Prop set "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textContent"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textConfig"}]},{"type":"text","value":" are provided to support more powerful capabilities."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"These related props at the left part below are deprecated. Use the right part below instead.\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textPosition => textConfig.position"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textOffset => textConfig.offset"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textRotation => textConfig.rotation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textDistance => textConfig.distance"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The props at the left part below are deprecated in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style.rich.?"}]},{"type":"text","value":". Use the props at the right part below instead.\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textFill => fill"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textStroke => stroke"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textFont => font"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textStrokeWidth => lineWidth"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textAlign => align"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textVerticalAlign => verticalAlign);"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textLineHeight =>"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textWidth => width"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textHeight => hight"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBackgroundColor => backgroundColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textPadding => padding"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderColor => borderColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderWidth => borderWidth"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderRadius => borderRadius"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowColor => shadowColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowBlur => shadowBlur"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowOffsetX => shadowOffsetX"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowOffsetY => shadowOffsetY"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Note: these props are not changed:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowBlur"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowOffsetX"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowOffsetY"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"It effects these places:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graphic"}]},{"type":"text","value":" components: the declarations of each element. [compat, but not accurately the same in some complicated cases.]"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":": the declarations of each element in the return of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":". [compat, but not accurately the same in some complicated cases]."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Directly use zrender API to create graphic elements. [No compat, breaking change]."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"API on chart instance:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"chart.one(...)"}]},{"type":"text","value":" is deprecated."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In props "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":", the value "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'auto'"}]},{"type":"text","value":" is deprecated. Use the value "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'inherit'"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"hoverAnimation"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverAnimation"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scale"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clipOverflow"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clip"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"In "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":", the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.style(...)"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.styleEmphasis(...)"}]},{"type":"text","value":" are deprecated. Because it is not really necessary and hard to ensure backward compatibility. Users can fetch system designated visual by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.visual(...)"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburst series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Action type "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"highlight"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburstHighlight"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Action type "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"downplay"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburstUnhighlight"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.downplay"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.blur"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.highlightPolicy"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.focus"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pie series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The action type at the left part below are deprecated. Use the right part instead:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieToggleSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"toggleSelect"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieUnSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselect"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The event type at the left part below are deprecated. Use the right part instead:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieselectchanged"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selected"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieunselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselected"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.margin"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.edgeDistance"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockWise"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockwise"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverOffset"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scaleSize"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"map series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The action type at the left part below are deprecated. Use the right part instead:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapToggleSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"toggleSelect"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapUnSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselect"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The event type at the left part below are deprecated. Use the right part instead:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapselectchanged"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selected"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapunselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselected"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.mapType"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.map"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.mapLocation"}]},{"type":"text","value":" is deprecated."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graph series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.focusNodeAdjacency"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis: { focus: 'adjacency'}"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gauge series"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockWise"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockwise"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverOffset"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scaleSize"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataZoom component"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataZoom.handleIcon"}]},{"type":"text","value":" need prefix "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"path://"}]},{"type":"text","value":" if using SVGPath."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.name"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.axisName"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"option "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.nameGap"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.axisNameGap"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Parse and format:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.format.formatTime"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.format"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.number.parseDate"}]},{"type":"text","value":" is deprecated. Use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.parse"}]},{"type":"text","value":" instead."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.format.getTextRect"}]},{"type":"text","value":" is deprecated."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Apache ECharts 5 Upgrade Guide\n\nThis guide is for those who want to upgrade from echarts 4.x (hereafter `v4`) to echarts 5.x (hereafter `v5`). You can find out what new features `v5` brings that are worth upgrading in [New Features in ECharts 5](en/basics/release-note/v5-feature). In most cases, developers won't need to do anything extra for this upgrade, as echarts has always tried to keep the API as stable and backward-compatible as possible. However, `v5` still brings some breaking changes that require special attention. In addition, in some cases, `v5` provides a better API to replace the previous one, and these superseded APIs will no longer be recommended (though we have tried to be as compatible as possible with these changes). We'll try to explain these changes in detail in this document.\n\n## Breaking Changes\n\n#### Default theme\n\nFirst of all, the default theme has been changed. `v5` has made a lot of changes and optimizations on the theme design. If you still want to keep the colors of the old version, you can manually declare the colors as follows.\n\n```js\nchart.setOption({\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n // ...\n});\n```\n\nOr, to make a simple `v4` theme.\n\n```js\nvar themeEC4 = {\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n};\nvar chart = echarts.init(dom, themeEC4);\nchart.setOption(/* ... */);\n```\n\n#### Importing ECharts\n\n##### Removing Support for Default Exports\n\nSince `v5`, echarts only provides `named exports`.\n\nSo if you are importing `echarts` like this:\n\n```js\nimport echarts from 'echarts';\n// Or import core module\nimport echarts from 'echarts/lib/echarts';\n```\n\nIt will throw error in `v5`. You need to change the code as follows to import the entire module.\n\n```js\nimport * as echarts from 'echarts';\n// Or\nimport * as echarts from 'echarts/lib/echarts';\n```\n\n##### tree-shaking API\n\nIn 5.0.1, we introduced the new [tree-shaking API](en/basics/import)\n\n```js\nimport * as echarts from 'echarts/core';\nimport { BarChart } from 'echarts/charts';\nimport { GridComponent } from 'echarts/components';\n// Note that the Canvas renderer is no longer included by default and needs to be imported explictly, or import the SVGRenderer if you need to use the SVG rendering mode\nimport { CanvasRenderer } from 'echarts/renderers';\n\necharts.use([BarChart, GridComponent, CanvasRenderer]);\n```\n\nTo make it easier for you to know which modules you need to import based on your option, our new example page adds a new feature to generate the three-shakable code, you can check the `Full Code` tab on the example page to see the modules you need to introduce and the related code.\n\nIn most cases, we recommend using the new tree-shaking interface whenever possible, as it maximizes the power of the packaging tool tree-shaking and effectively resolves namespace conflicts and prevents the exposure of internal structures. If you are still using the CommonJS method of writing modules, the previous approach is still supported:\n\n```js\nconst echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/component/grid');\n```\n\nSecond, because our source code has been rewritten using TypeScript, `v5` will no longer support importing files from `echarts/src`. You need to change it to import from `echarts/lib`.\n\n##### Dependency Adjustment\n\n> Note: This section is only for developers who use tree-shaking interfaces to ensure a minimal bundle size, not for those who imports the whole package.\n\nIn order to keep the size of the bundle small enough, we remove some dependencies that would have been imported by default. For example, as mentioned above, when using the new on-demand interface, `CanvasRenderer` is no longer introduced by default, which ensures that unneeded Canvas rendering code is not imported when only SVG rendering mode is used, and in addition, the following dependencies are adjusted.\n\n- The right-angle coordinate system component is no longer introduced by default when using line charts and bar charts, so the following introduction method was used before\n\n```js\nconst echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/chart/line');\n```\n\nNeed to introduce the `grid` component separately again\n\n```js\nrequire('echarts/lib/component/grid');\n```\n\nReference issues: [#14080](https://github.com/apache/echarts/issues/14080), [#13764](https://github.com/apache/echarts/issues/13764)\n\n- `aria` components are no longer imported by default. You need import it manually if necessary.\n\n```js\nimport { AriaComponent } from 'echarts/components';\necharts.use(AriaComponent);\n```\n\nOr\n\n```js\nrequire('echarts/lib/component/aria');\n```\n\n#### Removes Built-in GeoJSON\n\n`v5` removes the built-in geoJSON (previously in the `echarts/map` folder). These geoJSON files were always sourced from third parties. If users still need them, they can go get them from the old version, or find more appropriate data and register it with ECharts via the registerMap interface.\n\n#### Browser Compatibility\n\nIE8 is no longer supported by `v5`. We no longer maintain and upgrade the previous [VML renderer](https://github.com/ecomfe/zrender/tree/4.3.2/src/vml) for IE8 compatibility. If developers have a strong need for a VML renderer, they are welcome to submit a pull request to upgrade the VML renderer or maintain a separate third-party VML renderer, as we support registration of standalone renderers starting with `v5.0.1`.\n\n#### ECharts configuration item adjustment\n\n##### Visual style settings priority change\n\nThe priority of the visuals between [visualMap component](https://echarts.apache.org/option.html#visualMap) and [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) are reversed since `v5`.\n\nThat is, previously in `v4`, the visuals (i.e., color, symbol, symbolSize, ...) that generated by [visualMap component](https://echarts.apache.org/option.html#visualMap) has the highest priority, which will overwrite the same visuals settings in [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle). That brought troubles when needing to specify specific style to some certain data items while using [visualMap component](https://echarts.apache.org/option.html#visualMap). Since `v5`, the visuals specified in [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) has the highest priority.\n\nIn most cases, users will probably not notice this change when migrating from `v4` to `v5`. But users can still check that if [visualMap component](https://echarts.apache.org/option.html#visualMap) and [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) are both specified.\n\n##### `padding` for Rich Text\n\n`v5` adjusts the [rich.?.padding](https://echarts.apache.org/option.html#series-scatter.label.rich.<style_name>.padding) to make it more compliant with CSS specifications. In `v4`, for example `rich. .padding: [11, 22, 33, 44]` means that `padding-top` is `33` and `padding-bottom` is `11`. The position of the top and bottom is adjusted in `v5`, `rich. .padding: [11, 22, 33, 44]` means that `padding-top` is `11` and `padding-bottom` is `33`.\n\nIf the user is using [rich.?.padding](https://echarts.apache.org/option.html#series-scatter.label.rich.<style_name>.padding), this order needs to be adjusted.\n\n## ECharts Related Extensions\n\nThese extensions need to be upgraded to new version to support echarts `v5`:\n\n- [echarts-gl](https://github.com/ecomfe/echarts-gl)\n- [echarts-wordcloud](https://github.com/ecomfe/echarts-wordcloud)\n- [echarts-liquidfill](https://github.com/ecomfe/echarts-liquidfill)\n\n## Deprecated API\n\nSome of the API and echarts options are deprecated since `v5`, but are still backward compatible. Users can **keep using these deprecated API**, with only some warning will be printed to console in dev mode. But if users have spare time, it is recommended to upgraded to new API for the consideration of long term maintenance.\n\nThe deprecated API and their corresponding new API are listed as follows:\n\n- Transform related props of a graphic element are changed:\n - Changes:\n - `position: [number, number]` are changed to `x: number`/`y: number`.\n - `scale: [number, number]` are changed to `scaleX: number`/`scaleY: number`.\n - `origin: [number, number]` are changed to `originX: number`/`originY: number`.\n - The `position`, `scale` and `origin` are still supported but deprecated.\n - It effects these places:\n - In the `graphic` components: the declarations of each element.\n - In `custom series`: the declarations of each element in the return of `renderItem`.\n - Directly use zrender graphic elements.\n- Text related props on graphic elements are changed:\n - Changes:\n - The declaration of attached text (or say, rect text) are changed.\n - Prop `style.text` are deprecated in elements except `Text`. Instead, Prop set `textContent` and `textConfig` are provided to support more powerful capabilities.\n - These related props at the left part below are deprecated. Use the right part below instead.\n - textPosition => textConfig.position\n - textOffset => textConfig.offset\n - textRotation => textConfig.rotation\n - textDistance => textConfig.distance\n - The props at the left part below are deprecated in `style` and `style.rich.?`. Use the props at the right part below instead.\n - textFill => fill\n - textStroke => stroke\n - textFont => font\n - textStrokeWidth => lineWidth\n - textAlign => align\n - textVerticalAlign => verticalAlign);\n - textLineHeight =>\n - textWidth => width\n - textHeight => hight\n - textBackgroundColor => backgroundColor\n - textPadding => padding\n - textBorderColor => borderColor\n - textBorderWidth => borderWidth\n - textBorderRadius => borderRadius\n - textBoxShadowColor => shadowColor\n - textBoxShadowBlur => shadowBlur\n - textBoxShadowOffsetX => shadowOffsetX\n - textBoxShadowOffsetY => shadowOffsetY\n - Note: these props are not changed:\n - textShadowColor\n - textShadowBlur\n - textShadowOffsetX\n - textShadowOffsetY\n - It effects these places:\n - In the `graphic` components: the declarations of each element. [compat, but not accurately the same in some complicated cases.]\n - In `custom series`: the declarations of each element in the return of `renderItem`. [compat, but not accurately the same in some complicated cases].\n - Directly use zrender API to create graphic elements. [No compat, breaking change].\n- API on chart instance:\n - `chart.one(...)` is deprecated.\n- `label`:\n - In props `color`, `textBorderColor`, `backgroundColor` and `borderColor`, the value `'auto'` is deprecated. Use the value `'inherit'` instead.\n- `hoverAnimation`:\n - option `series.hoverAnimation` is deprecated. Use `series.emphasis.scale` instead.\n- `line series`:\n - option `series.clipOverflow` is deprecated. Use `series.clip` instead.\n- `custom series`:\n - In `renderItem`, the `api.style(...)` and `api.styleEmphasis(...)` are deprecated. Because it is not really necessary and hard to ensure backward compatibility. Users can fetch system designated visual by `api.visual(...)`.\n- `sunburst series`:\n - Action type `highlight` is deprecated. Use `sunburstHighlight` instead.\n - Action type `downplay` is deprecated. Use `sunburstUnhighlight` instead.\n - option `series.downplay` is deprecated. Use `series.blur` instead.\n - option `series.highlightPolicy` is deprecated. Use `series.emphasis.focus` instead.\n- `pie series`:\n - The action type at the left part below are deprecated. Use the right part instead:\n - `pieToggleSelect` => `toggleSelect`\n - `pieSelect` => `select`\n - `pieUnSelect` => `unselect`\n - The event type at the left part below are deprecated. Use the right part instead:\n - `pieselectchanged` => `selectchanged`\n - `pieselected` => `selected`\n - `pieunselected` => `unselected`\n - option `series.label.margin` is deprecated. Use `series.label.edgeDistance` instead.\n - option `series.clockWise` is deprecated. Use `series.clockwise` instead.\n - option `series.hoverOffset` is deprecated. Use `series.emphasis.scaleSize` instead.\n- `map series`:\n - The action type at the left part below are deprecated. Use the right part instead:\n - `mapToggleSelect` => `toggleSelect`\n - `mapSelect` => `select`\n - `mapUnSelect` => `unselect`\n - The event type at the left part below are deprecated. Use the right part instead:\n - `mapselectchanged` => `selectchanged`\n - `mapselected` => `selected`\n - `mapunselected` => `unselected`\n - option `series.mapType` is deprecated. Use `series.map` instead.\n - option `series.mapLocation` is deprecated.\n- `graph series`:\n - option `series.focusNodeAdjacency` is deprecated. Use `series.emphasis: { focus: 'adjacency'}` instead.\n- `gauge series`:\n - option `series.clockWise` is deprecated. Use `series.clockwise` instead.\n - option `series.hoverOffset` is deprecated. Use `series.emphasis.scaleSize` instead.\n- `dataZoom component`:\n - option `dataZoom.handleIcon` need prefix `path://` if using SVGPath.\n- `radar`:\n - option `radar.name` is deprecated. Use `radar.axisName` instead.\n - option `radar.nameGap` is deprecated. Use `radar.axisNameGap` instead.\n- Parse and format:\n - `echarts.format.formatTime` is deprecated. Use `echarts.time.format` instead.\n - `echarts.number.parseDate` is deprecated. Use `echarts.time.parse` instead.\n - `echarts.format.getTextRect` is deprecated.\n","dir":"/en/basics/release-note","path":"/en/basics/release-note/v5-upgrade-guide","extension":".md","createdAt":"2021-07-24T08:32:58.931Z","updatedAt":"2021-07-24T08:38:34.018Z","meta":{"version":0,"revision":0,"created":1627897109208},"$loki":66},{"slug":"radar","toc":[{"id":"suggestion-for-using-radar-chart","depth":2,"text":"Suggestion for Using Radar Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"radar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#radar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Radar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Radar Chart is suitable for display the data with more than three dimensions. The radar chart has more than two axes starting from the same point. The relative position and angle of the axis are usually meaningless."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Every variable in the radar chart match one axis that starting from the center. Axes have the same scale index and included angle. Connect the scale between axis, and connect the item in each axis together to become a polygon."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xH1-fnLcVG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The radar chart is useful for indicating similar values and checking outliers in variables. The radar chart can also be used to reflect what variables have a higher or lower score in the dataset, which makes it a better way to display the performance (see below). Similarly, the radar chart is often used in displaying data such as rankings, evaluations and reviews."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJH93GqVf&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"As shown below, the chart shows the comparison of the budgets and expenses in a kindergarten fund flow. The six areas involved are food, toys, picture books, medical care and clothing. Every axis has a range of 0 to 500. The toy is the only part that was overspent while the clothing is far below the budget. It becomes clear at a glance while using a radar chart to show which part is overspend or underspend."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrk6EfmqVf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-radar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-radar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Radar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The number of polygons in the radar chart should be limited. If there are more than 5 categories to be evaluated, both the outline and color block will be too confusing to read."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Including too many axes can also make the radar chart difficult to read. Therefore, try to keep the radar chart concisely and limit the number of variables."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Because the radial distance is hard to judge, it is still difficult to read the specific value although there are grid lines. We recommend you use a line graph if you need to compare specific values."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Radar Chart\n\nRadar Chart is suitable for display the data with more than three dimensions. The radar chart has more than two axes starting from the same point. The relative position and angle of the axis are usually meaningless. \n\nEvery variable in the radar chart match one axis that starting from the center. Axes have the same scale index and included angle. Connect the scale between axis, and connect the item in each axis together to become a polygon.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xH1-fnLcVG&v=1\">\n</iframe>\n\nThe radar chart is useful for indicating similar values and checking outliers in variables. The radar chart can also be used to reflect what variables have a higher or lower score in the dataset, which makes it a better way to display the performance (see below). Similarly, the radar chart is often used in displaying data such as rankings, evaluations and reviews.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJH93GqVf&v=1\">\n</iframe>\n\nAs shown below, the chart shows the comparison of the budgets and expenses in a kindergarten fund flow. The six areas involved are food, toys, picture books, medical care and clothing. Every axis has a range of 0 to 500. The toy is the only part that was overspent while the clothing is far below the budget. It becomes clear at a glance while using a radar chart to show which part is overspend or underspend.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrk6EfmqVf\">\n</iframe>\n\n## Suggestion for Using Radar Chart\n\n1. The number of polygons in the radar chart should be limited. If there are more than 5 categories to be evaluated, both the outline and color block will be too confusing to read.\n\n2. Including too many axes can also make the radar chart difficult to read. Therefore, try to keep the radar chart concisely and limit the number of variables.\n\n3. Because the radial distance is hard to judge, it is still difficult to read the specific value although there are grid lines. We recommend you use a line graph if you need to compare specific values.\n","dir":"/en/best-practice/specification","path":"/en/best-practice/specification/radar","extension":".md","createdAt":"2021-06-04T12:26:37.917Z","updatedAt":"2021-06-04T12:26:37.917Z","meta":{"version":0,"revision":0,"created":1627897109228},"$loki":67},{"slug":"gauge","toc":[{"id":"suggestion-for-using-gauger-chart","depth":2,"text":"Suggestion for Using Gauger Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"gauger-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#gauger-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Gauger Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Gauger Chart was also called a dial graph or speedometer graph. It is a form of a quasi-materialized display. It displays the data similar to the reading on a speedometer. The color of the gauger chart can be used to separate different categories of data. The gauger chart uses scale to mark data, pointers to indicating dimension, the angel of pointer to represent the value."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xH1vxib94f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-gauger-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-gauger-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Gauger Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The gauger chart is suitable for displaying single progress or measurement standard under quantitative conditions while it is not suitable for carpeting different variables or trends."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can provide info in different dimensions. However, do not include more than 3 pointers in one dashboard. It is recommended to use multiple dashboards if there are indeed multiple data to be displayed."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=gauge-car"},"children":[{"type":"text","value":"\n"}]}]},"text":"# Gauger Chart\n\nThe Gauger Chart was also called a dial graph or speedometer graph. It is a form of a quasi-materialized display. It displays the data similar to the reading on a speedometer. The color of the gauger chart can be used to separate different categories of data. The gauger chart uses scale to mark data, pointers to indicating dimension, the angel of pointer to represent the value.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xH1vxib94f\">\n</iframe>\n\n## Suggestion for Using Gauger Chart\n\n1. The gauger chart is suitable for displaying single progress or measurement standard under quantitative conditions while it is not suitable for carpeting different variables or trends.\n\n2. You can provide info in different dimensions. However, do not include more than 3 pointers in one dashboard. It is recommended to use multiple dashboards if there are indeed multiple data to be displayed.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=gauge-car\">\n</iframe>\n","dir":"/en/best-practice/specification","path":"/en/best-practice/specification/gauge","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-07-29T06:28:24.108Z","meta":{"version":0,"revision":0,"created":1627897109236},"$loki":68},{"slug":"funnel","toc":[{"id":"suggestion-for-using-funnel-chart","depth":2,"text":"Suggestion for Using Funnel Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"funnel-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#funnel-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Funnel Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Funnel chart (inverted triangle chart) present data into several stages, every stage is part of the whole. The overall percentage of all stages is 100%. Similar to the bar chart, the funnel chart shows no specific data but the proportion related to the whole. Therefore, a funnel chart doesn't have an axis."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The funnel chart usually used to provide the simplified data which is used to analyze the change or difference in every link of the process. It is also useful to find out the problem and bottleneck during the business."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrJIQEN5NM"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-funnel-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-funnel-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Funnel Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Represented by an e-commerce website, the funnel chart can easily show the entire process from the website to placing order. It not only shows the final conversion rate but also the conversion rate of each step, which leads to the problem directly. You can improve the design for some specific steps."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"As shown below, the first three steps(\"show\", \"click\", \"visit\") have only a little drain. The significant decrease happened from \"visit\" to \"consult\". As the result, the manager can mainly analyze what caused the reduction of consulting. For instance, it might because that the entrance for consult might not obvious enough."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJIPHN9Nf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":2},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Using two stacked funnel chart to compare between the prediction and outcome makes the deviation analyze easier."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrydEwN94f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Try to use two funnels in one chart to discuss the transforming circumstances. As the following chart shows, project B has a higher churn rate comparing with project A."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrJfrjEc4z&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":4},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The funnel chart is more useful for displaying a logic flow which is different from the pie chart. If the data have no logical relevance, you should choose the pie chart."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Depending on the type of data, use gradually changed colors or contract colors. Arrange them from dark to light according to the size of the funnel chart. Please don't add too many layers or colors to increase reading difficulty."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Funnel Chart\n\nFunnel chart (inverted triangle chart) present data into several stages, every stage is part of the whole. The overall percentage of all stages is 100%. Similar to the bar chart, the funnel chart shows no specific data but the proportion related to the whole. Therefore, a funnel chart doesn't have an axis.\n\nThe funnel chart usually used to provide the simplified data which is used to analyze the change or difference in every link of the process. It is also useful to find out the problem and bottleneck during the business.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrJIQEN5NM\">\n</iframe>\n\n\n## Suggestion for Using Funnel Chart\n\n1. Represented by an e-commerce website, the funnel chart can easily show the entire process from the website to placing order. It not only shows the final conversion rate but also the conversion rate of each step, which leads to the problem directly. You can improve the design for some specific steps.\n\nAs shown below, the first three steps(\"show\", \"click\", \"visit\") have only a little drain. The significant decrease happened from \"visit\" to \"consult\". As the result, the manager can mainly analyze what caused the reduction of consulting. For instance, it might because that the entrance for consult might not obvious enough.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJIPHN9Nf\">\n</iframe>\n\n2. Using two stacked funnel chart to compare between the prediction and outcome makes the deviation analyze easier.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrydEwN94f\">\n</iframe>\n\n3. Try to use two funnels in one chart to discuss the transforming circumstances. As the following chart shows, project B has a higher churn rate comparing with project A.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrJfrjEc4z&v=1\">\n</iframe>\n\n4. The funnel chart is more useful for displaying a logic flow which is different from the pie chart. If the data have no logical relevance, you should choose the pie chart.\n\n5. Depending on the type of data, use gradually changed colors or contract colors. Arrange them from dark to light according to the size of the funnel chart. Please don't add too many layers or colors to increase reading difficulty. \n","dir":"/en/best-practice/specification","path":"/en/best-practice/specification/funnel","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-06-04T12:26:37.916Z","meta":{"version":0,"revision":0,"created":1627897109241},"$loki":69},{"slug":"color-enhance","toc":[{"id":"sympathetic-response-of-color","depth":2,"text":"Sympathetic Response of Color"},{"id":"common-sense-consistency-of-color","depth":2,"text":"Common Sense Consistency of Color"},{"id":"divide-data-by-colors","depth":2,"text":"Divide Data by Colors"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"leveraging-color-to-enhance-data-visualization"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#leveraging-color-to-enhance-data-visualization","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Leveraging Color to Enhance Data Visualization"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In all the visual pathways in the data visualization, color is the first-way visual perception. Doing visual encoding and communication is an effective way. If used properly, color can sufficiently improve the visualization. In the following, we will look at some specific ideas to improve the visualization."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"sympathetic-response-of-color"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#sympathetic-response-of-color","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Sympathetic Response of Color"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Color perception is a complicated result of the interaction between physiological and psychological effects. To prove that humans can perceive colors by warm and cool, Hiroshi Ohchi, a Japanese graphic designer has done an experiment to paint the wall of two workplaces in gray-cyan and red-orange. With the same objective ambient temperature and labor intensity, staffs in the gray-cyan workplace are easier to feel cool. Further research found that except for the feeling of warm and cool by observing colors, there are also light and dark, far and near, lively and melancholic. Colors will cause emotional fluctuations that affect human behavior based on human instinct."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the field of visualization, if we choose the color that coincides with the characteristic of data and the sympathetic response of emotions."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is an example of the selling percentage of a certain dessert shop."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"50%","height":"100%","src":"images/design/color/color01.png"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We provided two charts with the same style but different color schemes. The right side one obviously performs better for the dessert data displaying."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/color/color02.png"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Compared with blue and purple, color likes orange, yellow, pink and green are preferred choices to inspire the appetite, happiness and warmness which matched the motion of eating sweets. In the other hand, most of the customer group for desserts is woman and children. Lively and cute chart colors in the left chart might be the better choice compared with the calm and rational colors of the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"##Semantic Response of Color"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Different colors can help us to identify and classify different ideas because we are familiar with combining things and concepts with colors. We subconsciously think of white when we referring to \"clouds\", pink when we referring to \"love\". Those colors that are naturally consistent with semantics are called \"semantic-resonant color\"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The researchers noticed that matching the semantic-resonant color for words contained specific color can increase the speed of the cognitive process and vice versa. This funny phenomenon is called the \"Stroop Effect\". In a comparative test (as shown below), the text \"YELLOW\" in the first line is easier to be positioned compared with the text \"YELLOW\" in the second line. In the second line, the text \"PURPLE\" have the font color of yellow, which makes it being noticed earlier sometimes. The font color here interfered with our speed of finding the right answer."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/color/color03.png"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Using semantic-resonant color effectively, we use the same color as the meaning of the data to improve the cognition efficiency of the visualization. For instance, you might use blue to display the data of \"OCEAN\", yellow to display the data of \"DESERT\"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The visual effects should be explained as easily as possible. Try to find out the color scheme that matches the preconceived and cultural association of the user. The following chart shows the sales info of kiwifruit, banana, orange and strawberry and chose the same color as the fruit itself. Therefore, we can easily identify and remember the fruit corresponding to each column."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"common-sense-consistency-of-color"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#common-sense-consistency-of-color","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Common Sense Consistency of Color"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In terms of visualization, the color used is directly related to factors such as data type, display environment, target client, and social background. You cannot separate color as an individual factor to design. Please restrain your free creative passion before selecting the color scheme and check if it is a special type of data. For example, colors like green and red in a stock chart have their customary meaning. Therefore, the consistency between the choice of color and common knowledge makes the user understand and distinguish the chart efficiently."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xp1oqJoQqG"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is another example of the outdoor temperature, the red and blue bars make the chart easy to distinguish without explanation."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xIVoX5gZcT&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"divide-data-by-colors"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#divide-data-by-colors","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Divide Data by Colors"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We usually use the line chart to analyze the trend. We can actively configure an interval when sometimes we need to clearly know whether a specific data is in some domain. If you set 25%-75% as our planned sales, try to set different colors for each interval in this domain to efficiently identify the interval for each value: whether it is not reaching the goal, reaching the goal, or exceeding the goal."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Therefore, color can be used as an effective tool to improve the readability of the chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"80%","height":"100%","src":"images/design/color/color04.png"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"# Leveraging Color to Enhance Data Visualization\n\nIn all the visual pathways in the data visualization, color is the first-way visual perception. Doing visual encoding and communication is an effective way. If used properly, color can sufficiently improve the visualization. In the following, we will look at some specific ideas to improve the visualization.\n\n## Sympathetic Response of Color\n\nColor perception is a complicated result of the interaction between physiological and psychological effects. To prove that humans can perceive colors by warm and cool, Hiroshi Ohchi, a Japanese graphic designer has done an experiment to paint the wall of two workplaces in gray-cyan and red-orange. With the same objective ambient temperature and labor intensity, staffs in the gray-cyan workplace are easier to feel cool. Further research found that except for the feeling of warm and cool by observing colors, there are also light and dark, far and near, lively and melancholic. Colors will cause emotional fluctuations that affect human behavior based on human instinct.\n\nIn the field of visualization, if we choose the color that coincides with the characteristic of data and the sympathetic response of emotions.\n\nHere is an example of the selling percentage of a certain dessert shop.\n\n<img max-width=\"830\" width=\"50%\" height=\"100%\"\nsrc=\"images/design/color/color01.png\">\n</img>\n\nWe provided two charts with the same style but different color schemes. The right side one obviously performs better for the dessert data displaying.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/color/color02.png\">\n</img>\n\nCompared with blue and purple, color likes orange, yellow, pink and green are preferred choices to inspire the appetite, happiness and warmness which matched the motion of eating sweets. In the other hand, most of the customer group for desserts is woman and children. Lively and cute chart colors in the left chart might be the better choice compared with the calm and rational colors of the chart.\n\n##Semantic Response of Color\n\nDifferent colors can help us to identify and classify different ideas because we are familiar with combining things and concepts with colors. We subconsciously think of white when we referring to \"clouds\", pink when we referring to \"love\". Those colors that are naturally consistent with semantics are called \"semantic-resonant color\".\n\nThe researchers noticed that matching the semantic-resonant color for words contained specific color can increase the speed of the cognitive process and vice versa. This funny phenomenon is called the \"Stroop Effect\". In a comparative test (as shown below), the text \"YELLOW\" in the first line is easier to be positioned compared with the text \"YELLOW\" in the second line. In the second line, the text \"PURPLE\" have the font color of yellow, which makes it being noticed earlier sometimes. The font color here interfered with our speed of finding the right answer.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/color/color03.png\">\n</img>\n\nUsing semantic-resonant color effectively, we use the same color as the meaning of the data to improve the cognition efficiency of the visualization. For instance, you might use blue to display the data of \"OCEAN\", yellow to display the data of \"DESERT\".\n\nThe visual effects should be explained as easily as possible. Try to find out the color scheme that matches the preconceived and cultural association of the user. The following chart shows the sales info of kiwifruit, banana, orange and strawberry and chose the same color as the fruit itself. Therefore, we can easily identify and remember the fruit corresponding to each column.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW\">\n</iframe>\n\n## Common Sense Consistency of Color\n\nIn terms of visualization, the color used is directly related to factors such as data type, display environment, target client, and social background. You cannot separate color as an individual factor to design. Please restrain your free creative passion before selecting the color scheme and check if it is a special type of data. For example, colors like green and red in a stock chart have their customary meaning. Therefore, the consistency between the choice of color and common knowledge makes the user understand and distinguish the chart efficiently.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xp1oqJoQqG\">\n</iframe>\n\nHere is another example of the outdoor temperature, the red and blue bars make the chart easy to distinguish without explanation.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xIVoX5gZcT&v=1\">\n</iframe>\n\n## Divide Data by Colors\n\nWe usually use the line chart to analyze the trend. We can actively configure an interval when sometimes we need to clearly know whether a specific data is in some domain. If you set 25%-75% as our planned sales, try to set different colors for each interval in this domain to efficiently identify the interval for each value: whether it is not reaching the goal, reaching the goal, or exceeding the goal.\n\nTherefore, color can be used as an effective tool to improve the readability of the chart.\n\n<img max-width=\"830\" width=\"80%\" height=\"100%\"\nsrc=\"images/design/color/color04.png\">\n</img>\n","dir":"/en/best-practice/design","path":"/en/best-practice/design/color-enhance","extension":".md","createdAt":"2021-06-04T12:26:37.917Z","updatedAt":"2021-07-29T06:23:03.304Z","meta":{"version":0,"revision":0,"created":1627897109250},"$loki":70},{"slug":"waterfall","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/en/application/chart-types/bar","path":"/en/application/chart-types/bar/waterfall","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-06-04T12:26:37.914Z","meta":{"version":0,"revision":0,"created":1627897109252},"$loki":71},{"slug":"dynamic-data","toc":[{"id":"异步加载","depth":2,"text":"异步加载"},{"id":"loading-动画","depth":2,"text":"loading 动画"},{"id":"数据的动态更新","depth":2,"text":"数据的动态更新"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"异步数据的加载与动态更新"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%82%E6%AD%A5%E6%95%B0%E6%8D%AE%E7%9A%84%E5%8A%A0%E8%BD%BD%E4%B8%8E%E5%8A%A8%E6%80%81%E6%9B%B4%E6%96%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"异步数据的加载与动态更新"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"异步加载"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%82%E6%AD%A5%E5%8A%A0%E8%BD%BD","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"异步加载"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"zh/get-started"},"children":[{"type":"text","value":"入门示例"}]},{"type":"text","value":"中的数据是在初始化后"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":"中直接填入的,但是很多时候可能数据需要异步加载后再填入。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ECharts"}]},{"type":"text","value":" 中实现异步数据的更新非常简单,在图表初始化后不管任何时候只要通过 jQuery 等工具异步获取数据后通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":" 填入数据和配置项就行。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var myChart = echarts.init(document.getElementById('main'));\n\n$.get('data.json').done(function(data) {\n // data 的结构:\n // {\n // categories: [\"衬衫\",\"羊毛衫\",\"雪纺衫\",\"裤子\",\"高跟鞋\",\"袜子\"],\n // values: [5, 20, 36, 10, 10, 20]\n // }\n myChart.setOption({\n title: {\n text: '异步数据加载示例'\n },\n tooltip: {},\n legend: {},\n xAxis: {\n data: data.categories\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: data.values\n }\n ]\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"或者先设置完其它的样式,显示一个空的直角坐标轴,然后获取数据后填入数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var myChart = echarts.init(document.getElementById('main'));\n// 显示标题,图例和空的坐标轴\nmyChart.setOption({\n title: {\n text: '异步数据加载示例'\n },\n tooltip: {},\n legend: {\n data: ['销量']\n },\n xAxis: {\n data: []\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: []\n }\n ]\n});\n\n// 异步加载数据\n$.get('data.json').done(function(data) {\n // 填入数据\n myChart.setOption({\n xAxis: {\n data: data.categories\n },\n series: [\n {\n // 根据名字对应到相应的系列\n name: '销量',\n data: data.data\n }\n ]\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-async"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 中在更新数据的时候需要通过"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":"属性对应到相应的系列,上面示例中如果"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":"不存在也可以根据系列的顺序正常更新,但是更多时候推荐更新数据的时候加上系列的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":"数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"loading-动画"},"children":[{"type":"element","tag":"a","props":{"href":"#loading-%E5%8A%A8%E7%94%BB","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"loading 动画"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果数据加载时间较长,一个空的坐标轴放在画布上也会让用户觉得是不是产生 bug 了,因此需要一个 loading 的动画来提示用户数据正在加载。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 默认有提供了一个简单的加载动画。只需要调用 "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.showLoading"},"children":[{"type":"text","value":"showLoading"}]},{"type":"text","value":" 方法显示。数据加载完成后再调用 "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.hideLoading"},"children":[{"type":"text","value":"hideLoading"}]},{"type":"text","value":" 方法隐藏加载动画。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.showLoading();\n$.get('data.json').done(function (data) {\n myChart.hideLoading();\n myChart.setOption(...);\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"效果如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-loading"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"数据的动态更新"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E7%9A%84%E5%8A%A8%E6%80%81%E6%9B%B4%E6%96%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据的动态更新"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 由数据驱动,数据的改变驱动图表展现的改变,因此动态数据的实现也变得异常简单。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"所有数据的更新都通过 "},{"type":"element","tag":"a","props":{"href":"~api.html#echartsInstance.setOption"},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":"实现,你只需要定时获取数据,"},{"type":"element","tag":"a","props":{"href":"~api.html#echartsInstance.setOption"},"children":[{"type":"text","value":"setOption"}]},{"type":"text","value":" 填入数据,而不用考虑数据到底产生了那些变化,ECharts 会找到两组数据之间的差异然后通过合适的动画去表现数据的变化。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"具体可以看下面示例:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/tutorial-dynamic-data"},"children":[{"type":"text","value":"\n"}]}]},"text":"# 异步数据的加载与动态更新\n\n## 异步加载\n\n[入门示例](zh/get-started)中的数据是在初始化后`setOption`中直接填入的,但是很多时候可能数据需要异步加载后再填入。`ECharts` 中实现异步数据的更新非常简单,在图表初始化后不管任何时候只要通过 jQuery 等工具异步获取数据后通过 `setOption` 填入数据和配置项就行。\n\n```js\nvar myChart = echarts.init(document.getElementById('main'));\n\n$.get('data.json').done(function(data) {\n // data 的结构:\n // {\n // categories: [\"衬衫\",\"羊毛衫\",\"雪纺衫\",\"裤子\",\"高跟鞋\",\"袜子\"],\n // values: [5, 20, 36, 10, 10, 20]\n // }\n myChart.setOption({\n title: {\n text: '异步数据加载示例'\n },\n tooltip: {},\n legend: {},\n xAxis: {\n data: data.categories\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: data.values\n }\n ]\n });\n});\n```\n\n或者先设置完其它的样式,显示一个空的直角坐标轴,然后获取数据后填入数据。\n\n```js\nvar myChart = echarts.init(document.getElementById('main'));\n// 显示标题,图例和空的坐标轴\nmyChart.setOption({\n title: {\n text: '异步数据加载示例'\n },\n tooltip: {},\n legend: {\n data: ['销量']\n },\n xAxis: {\n data: []\n },\n yAxis: {},\n series: [\n {\n name: '销量',\n type: 'bar',\n data: []\n }\n ]\n});\n\n// 异步加载数据\n$.get('data.json').done(function(data) {\n // 填入数据\n myChart.setOption({\n xAxis: {\n data: data.categories\n },\n series: [\n {\n // 根据名字对应到相应的系列\n name: '销量',\n data: data.data\n }\n ]\n });\n});\n```\n\n如下:\n\n<md-example src=\"doc-example/tutorial-async\"></md-example>\n\nECharts 中在更新数据的时候需要通过`name`属性对应到相应的系列,上面示例中如果`name`不存在也可以根据系列的顺序正常更新,但是更多时候推荐更新数据的时候加上系列的`name`数据。\n\n## loading 动画\n\n如果数据加载时间较长,一个空的坐标轴放在画布上也会让用户觉得是不是产生 bug 了,因此需要一个 loading 的动画来提示用户数据正在加载。\n\nECharts 默认有提供了一个简单的加载动画。只需要调用 [showLoading](api.html#echartsInstance.showLoading) 方法显示。数据加载完成后再调用 [hideLoading](api.html#echartsInstance.hideLoading) 方法隐藏加载动画。\n\n```js\nmyChart.showLoading();\n$.get('data.json').done(function (data) {\n myChart.hideLoading();\n myChart.setOption(...);\n});\n```\n\n效果如下:\n\n<md-example src=\"doc-example/tutorial-loading\"></md-example>\n\n## 数据的动态更新\n\nECharts 由数据驱动,数据的改变驱动图表展现的改变,因此动态数据的实现也变得异常简单。\n\n所有数据的更新都通过 [setOption](~api.html#echartsInstance.setOption)实现,你只需要定时获取数据,[setOption](~api.html#echartsInstance.setOption) 填入数据,而不用考虑数据到底产生了那些变化,ECharts 会找到两组数据之间的差异然后通过合适的动画去表现数据的变化。\n\n具体可以看下面示例:\n\n<md-example src=\"doc-example/tutorial-dynamic-data\"></md-example>\n","dir":"/zh/application/data","path":"/zh/application/data/dynamic-data","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-07-21T10:41:21.343Z","meta":{"version":0,"revision":0,"created":1627897109265},"$loki":72},{"slug":"baidu-app","toc":[{"id":"使用方式","depth":2,"text":"使用方式"},{"id":"注意事项","depth":2,"text":"注意事项"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"在百度智能小程序中使用-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E7%99%BE%E5%BA%A6%E6%99%BA%E8%83%BD%E5%B0%8F%E7%A8%8B%E5%BA%8F%E4%B8%AD%E4%BD%BF%E7%94%A8-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在百度智能小程序中使用 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"http://smartprogram.baidu.com/docs/develop/framework/echarts/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts 图表-beta"}]},{"type":"text","value":" 以小程序动态库的形式提供了在百度智能小程序中使用 ECharts 的方式。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"aidu-smart-app-echarts-demo"}]},{"type":"text","value":" 项目是使用该动态库的一个示例工程,可以作为参考,一般情况下不需要引入自己的项目。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如有使用上的问题,可以在 "},{"type":"element","tag":"a","props":{"href":"https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo/issues","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"baidu-smart-app-echarts-demo/issues"}]},{"type":"text","value":" 中咨询。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"使用方式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用方式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"参见百度智能小程序文档 "},{"type":"element","tag":"a","props":{"href":"http://smartprogram.baidu.com/docs/develop/framework/echarts/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"ECharts 图表-beta"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"注意事项"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"注意事项"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"百度智能小程序上的 ECharts 以动态库的形式开放,因此开发者的使用方式与"},{"type":"element","tag":"a","props":{"href":"./zh/application/cross-platform/wechat-app"},"children":[{"type":"text","value":"在微信小程序中使用 ECharts"}]},{"type":"text","value":" 不太相同。尤其需要注意的是,前者需要在指定动态库名称的时候确定 ECharts 的版本号,而不能自行更换或使用自定义构建。这一点是由底层框架的技术实现决定的。具体来说,在指定百度智能小程序动态库名称的时候,需要通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"provider"}]},{"type":"text","value":" 指定动态库名称,具体参见"},{"type":"element","tag":"a","props":{"href":"http://smartprogram.baidu.com/docs/develop/framework/echarts/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"文档"}]},{"type":"text","value":"的「在项目中引用动态库」章节。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"请务必查看"},{"type":"element","tag":"a","props":{"href":"http://smartprogram.baidu.com/docs/develop/framework/echarts/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"文档"}]},{"type":"text","value":"的「兼容性说明」以了解各功能的实现方式。"}]}]},"text":"# 在百度智能小程序中使用 ECharts\n\n[ECharts 图表-beta](http://smartprogram.baidu.com/docs/develop/framework/echarts/) 以小程序动态库的形式提供了在百度智能小程序中使用 ECharts 的方式。\n\n[aidu-smart-app-echarts-demo](https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo) 项目是使用该动态库的一个示例工程,可以作为参考,一般情况下不需要引入自己的项目。\n\n如有使用上的问题,可以在 [baidu-smart-app-echarts-demo/issues](https://github.com/baidu-smart-app/baidu-smart-app-echarts-demo/issues) 中咨询。\n\n## 使用方式\n\n参见百度智能小程序文档 [ECharts 图表-beta](http://smartprogram.baidu.com/docs/develop/framework/echarts/)。\n\n## 注意事项\n\n百度智能小程序上的 ECharts 以动态库的形式开放,因此开发者的使用方式与[在微信小程序中使用 ECharts](./zh/application/cross-platform/wechat-app) 不太相同。尤其需要注意的是,前者需要在指定动态库名称的时候确定 ECharts 的版本号,而不能自行更换或使用自定义构建。这一点是由底层框架的技术实现决定的。具体来说,在指定百度智能小程序动态库名称的时候,需要通过 `provider` 指定动态库名称,具体参见[文档](http://smartprogram.baidu.com/docs/develop/framework/echarts/)的「在项目中引用动态库」章节。\n\n请务必查看[文档](http://smartprogram.baidu.com/docs/develop/framework/echarts/)的「兼容性说明」以了解各功能的实现方式。\n","dir":"/zh/application/cross-platform","path":"/zh/application/cross-platform/baidu-app","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-07-21T06:20:00.860Z","meta":{"version":0,"revision":0,"created":1627897109267},"$loki":73},{"slug":"wechat-app","toc":[{"id":"使用方式","depth":2,"text":"使用方式"},{"id":"注意事项","depth":2,"text":"注意事项"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"在微信小程序中使用-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E5%BE%AE%E4%BF%A1%E5%B0%8F%E7%A8%8B%E5%BA%8F%E4%B8%AD%E4%BD%BF%E7%94%A8-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在微信小程序中使用 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-for-weixin","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-for-weixin"}]},{"type":"text","value":" 项目提供了一个小程序组件,用这种方式可以方便地使用 ECharts。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"使用方式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BD%BF%E7%94%A8%E6%96%B9%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"使用方式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下载该项目"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如有必要,将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ec-canvas"}]},{"type":"text","value":" 目录下的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]},{"type":"text","value":" 替换为最新版的 ECharts。如果希望减小包体积大小,可以使用"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//build.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"自定义构建"}]},{"type":"text","value":"生成并替换 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.js"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pages"}]},{"type":"text","value":" 目录下是使用的示例文件,可以作为参考,或者删除不需要的页面。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"更详细的说明请参见 "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-for-weixin","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-for-weixin"}]},{"type":"text","value":" 项目。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"注意事项"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"注意事项"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最新版的 ECharts 微信小程序支持微信 Canvas 2d,当用户的基础库版本 >= 2.9.0 且没有设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"force-use-old-canvas=\"true\""}]},{"type":"text","value":" 的情况下,使用新的 Canvas 2d(默认)。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用新的 Canvas 2d 可以提升渲染性能,解决非同层渲染问题,强烈建议开启。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"更详细的说明请参见 "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-for-weixin#canvas-2d-%E7%89%88%E6%9C%AC%E8%A6%81%E6%B1%82","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"Canvas 2d 版本要求"}]},{"type":"text","value":"。"}]}]},"text":"# 在微信小程序中使用 ECharts\n\n[echarts-for-weixin](https://github.com/ecomfe/echarts-for-weixin) 项目提供了一个小程序组件,用这种方式可以方便地使用 ECharts。\n\n## 使用方式\n\n1. 下载该项目\n2. 如有必要,将 `ec-canvas` 目录下的 `echarts.js` 替换为最新版的 ECharts。如果希望减小包体积大小,可以使用[自定义构建](https://echarts.apache.org//build.html)生成并替换 `echarts.js`\n3. `pages` 目录下是使用的示例文件,可以作为参考,或者删除不需要的页面。\n\n更详细的说明请参见 [echarts-for-weixin](https://github.com/ecomfe/echarts-for-weixin) 项目。\n\n## 注意事项\n\n最新版的 ECharts 微信小程序支持微信 Canvas 2d,当用户的基础库版本 >= 2.9.0 且没有设置 `force-use-old-canvas=\"true\"` 的情况下,使用新的 Canvas 2d(默认)。\n\n使用新的 Canvas 2d 可以提升渲染性能,解决非同层渲染问题,强烈建议开启。\n\n更详细的说明请参见 [Canvas 2d 版本要求](https://github.com/ecomfe/echarts-for-weixin#canvas-2d-%E7%89%88%E6%9C%AC%E8%A6%81%E6%B1%82)。\n","dir":"/zh/application/cross-platform","path":"/zh/application/cross-platform/wechat-app","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-06-04T12:26:37.922Z","meta":{"version":0,"revision":0,"created":1627897109274},"$loki":74},{"slug":"server","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"echarts-服务端渲染"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-%E6%9C%8D%E5%8A%A1%E7%AB%AF%E6%B8%B2%E6%9F%93","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts 服务端渲染"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 可以在服务端进行渲染。例如"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//examples","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"官方示例"}]},{"type":"text","value":"里的一个个小截图,就是在服务端预生成出来的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"服务端渲染可以使用流行的 headless 环境,例如 "},{"type":"element","tag":"a","props":{"href":"https://github.com/GoogleChrome/puppeteer","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"puppeteer"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"headless chrome"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://github.com/Automattic/node-canvas","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"node-canvas"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"https://github.com/jsdom/jsdom","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"jsdom"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"http://phantomjs.org/","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"PhantomJS"}]},{"type":"text","value":" 等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这是一些社区贡献的 ECharts 服务端渲染方案:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/hellosean1025/node-echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/hellosean1025/node-echarts"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/chfw/echarts-scrappeteer","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/chfw/echarts-scrappeteer"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73"}]}]},{"type":"text","value":"\n"}]}]},"text":"# ECharts 服务端渲染\n\nECharts 可以在服务端进行渲染。例如[官方示例](https://echarts.apache.org//examples)里的一个个小截图,就是在服务端预生成出来的。\n\n服务端渲染可以使用流行的 headless 环境,例如 [puppeteer](https://github.com/GoogleChrome/puppeteer)、[headless chrome](https://chromium.googlesource.com/chromium/src/+/lkgr/headless/README.md)、[node-canvas](https://github.com/Automattic/node-canvas)、[jsdom](https://github.com/jsdom/jsdom)、[PhantomJS](http://phantomjs.org/) 等。\n\n这是一些社区贡献的 ECharts 服务端渲染方案:\n\n- [https://github.com/hellosean1025/node-echarts](https://github.com/hellosean1025/node-echarts)\n- [https://github.com/chfw/echarts-scrappeteer](https://github.com/chfw/echarts-scrappeteer)\n- [https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js](https://github.com/chfw/pyecharts-snapshot/blob/master/pyecharts_snapshot/phantomjs/snapshot.js)\n- [https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73](https://gist.github.com/pissang/4c32ee30e35c91336af72b129a1a4a73)\n","dir":"/zh/application/cross-platform","path":"/zh/application/cross-platform/server","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-07-21T06:20:12.071Z","meta":{"version":0,"revision":0,"created":1627897109277},"$loki":75},{"slug":"rich-text","toc":[{"id":"文本样式相关的配置项","depth":2,"text":"文本样式相关的配置项"},{"id":"文本、文本框、文本片段的基本样式和装饰","depth":2,"text":"文本、文本框、文本片段的基本样式和装饰"},{"id":"标签的位置","depth":2,"text":"标签的位置"},{"id":"标签的旋转","depth":2,"text":"标签的旋转"},{"id":"文本片段的排版和对齐","depth":2,"text":"文本片段的排版和对齐"},{"id":"特殊效果:图标、分割线、标题块、简单表格","depth":2,"text":"特殊效果:图标、分割线、标题块、简单表格"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"富文本标签"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AF%8C%E6%96%87%E6%9C%AC%E6%A0%87%E7%AD%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"富文本标签"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 中的文本标签从 v3.7 开始支持富文本模式,能够:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"定制文本块整体的样式(如背景、边框、阴影等)、位置、旋转等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"对文本块中个别片段定义样式(如颜色、字体、高宽、背景、阴影等)、对齐方式等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在文本中使用图片做小图标或者背景。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"特定组合以上的规则,可以做出简单表格、分割线等效果。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"开始下面的介绍之前,先说明一下下面会使用的两个名词的含义:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块(Text Block):文本标签块整体。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本片段(Text fragment):文本标签块中的部分文本。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如下图示例:\n~"},{"type":"element","tag":"a","props":{"href":"$%7BgalleryViewPath%7Ddoc-example/text-block-fragment&edit=1&reset=1"},"children":[{"type":"text","value":"340x240"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"文本样式相关的配置项"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%96%87%E6%9C%AC%E6%A0%B7%E5%BC%8F%E7%9B%B8%E5%85%B3%E7%9A%84%E9%85%8D%E7%BD%AE%E9%A1%B9","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"文本样式相关的配置项"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"echarts 提供了丰富的文本标签配置项,包括:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"字体基本样式设置:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontWeight"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontSize"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontFamily"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文字颜色:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文字描边:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderWidth"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文字阴影:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowBlur"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowOffsetX"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textShadowOffsetY"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块或文本片段大小:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块或文本片段的对齐:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块或文本片段的边框、背景(颜色或图片):"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderRadius"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块或文本片段的阴影:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowBlur"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetX"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetY"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"文本块的位置和旋转:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rotate"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"可以在各处的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" 属性中定义文本片段样式。例如 "},{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.rich"},"children":[{"type":"text","value":"series-bar.label.rich"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"labelOption = {\n // 在文本中,可以对部分文本采用 rich 中定义样式。\n // 这里需要在文本中使用标记符号:\n // `{styleName|text content text content}` 标记样式名。\n // 注意,换行仍是使用 '\\n'。\n formatter: [\n '{a|这段文本采用样式a}',\n '{b|这段文本采用样式b}这段用默认样式{x|这段用样式x}'\n ].join('\\n'),\n\n // 这里是文本块的样式设置:\n color: '#333',\n fontSize: 5,\n fontFamily: 'Arial',\n borderWidth: 3,\n backgroundColor: '#984455',\n padding: [3, 10, 10, 5],\n lineHeight: 20,\n\n // rich 里是文本片段的样式设置:\n rich: {\n a: {\n color: 'red',\n lineHeight: 10\n },\n b: {\n backgroundColor: {\n image: 'xxx/xxx.jpg'\n },\n height: 40\n },\n x: {\n fontSize: 18,\n fontFamily: 'Microsoft YaHei',\n borderColor: '#449933',\n borderRadius: 4\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意:如果不定义 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":",不能指定文字块的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"文本、文本框、文本片段的基本样式和装饰"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%96%87%E6%9C%AC%E3%80%81%E6%96%87%E6%9C%AC%E6%A1%86%E3%80%81%E6%96%87%E6%9C%AC%E7%89%87%E6%AE%B5%E7%9A%84%E5%9F%BA%E6%9C%AC%E6%A0%B7%E5%BC%8F%E5%92%8C%E8%A3%85%E9%A5%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"文本、文本框、文本片段的基本样式和装饰"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"每个文本可以设置基本的字体样式:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontStyle"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontWeight"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontSize"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"fontFamily"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"可以设置文字的颜色 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":" 和边框的颜色 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderWidth"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"文本框可以设置边框和背景的样式:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"文本片段也可以设置边框和背景的样式:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n symbolSize: 1,\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n show: true,\n formatter: [\n 'Plain text',\n '{textBorder|textBorderColor + textBorderWidth}',\n '{textShadow|textShadowColor + textShadowBlur + textShadowOffsetX + textShadowOffsetY}',\n '{bg|backgroundColor + borderRadius + padding}',\n '{border|borderColor + borderWidth + borderRadius + padding}',\n '{shadow|shadowColor + shadowBlur + shadowOffsetX + shadowOffsetY}'\n ].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#333',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n color: '#000',\n fontSize: 14,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n lineHeight: 30,\n rich: {\n textBorder: {\n fontSize: 20,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n },\n textShadow: {\n fontSize: 16,\n textShadowBlur: 5,\n textShadowColor: '#000',\n textShadowOffsetX: 3,\n textShadowOffsetY: 3,\n color: '#fff'\n },\n bg: {\n backgroundColor: '#339911',\n color: '#fff',\n borderRadius: 15,\n padding: 5\n },\n border: {\n color: '#000',\n borderColor: '#449911',\n borderWidth: 1,\n borderRadius: 3,\n padding: 5\n },\n shadow: {\n backgroundColor: '#992233',\n padding: 5,\n color: '#fff',\n shadowBlur: 5,\n shadowColor: '#336699',\n shadowOffsetX: 6,\n shadowOffsetY: 6\n }\n }\n }\n }\n }\n ]\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: -1,\n max: 1\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"标签的位置"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%A0%87%E7%AD%BE%E7%9A%84%E4%BD%8D%E7%BD%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"标签的位置"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于折线图、柱状图、散点图等,均可以使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" 来设置标签。标签的相对于图形元素的位置,一般使用 "},{"type":"element","tag":"a","props":{"href":"option.html#series-scatter.label.position"},"children":[{"type":"text","value":"label.position"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"option.html#series-scatter.label.distance"},"children":[{"type":"text","value":"label.distance"}]},{"type":"text","value":" 来配置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"试试在下面例子中修改"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":"和"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":" 属性:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n symbolSize: 160,\n symbol: 'roundRect',\n data: [[1, 1]],\n label: {\n normal: {\n // 修改 position 和 distance 的值试试\n // 支持:'left', 'right', 'top', 'bottom', 'inside', 'insideTop', 'insideLeft', 'insideRight', 'insideBottom', 'insideTopLeft', 'insideTopRight', 'insideBottomLeft', 'insideBottomRight'\n position: 'top',\n distance: 10,\n\n show: true,\n formatter: ['Label Text'].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#555',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n fontSize: 18,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n }\n }\n }\n ],\n xAxis: {\n max: 2\n },\n yAxis: {\n max: 2\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":" 在不同的图中可取值有所不同。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"distance"}]},{"type":"text","value":" 并不是在每个图中都支持。详情请参见 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"option 文档"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"标签的旋转"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%A0%87%E7%AD%BE%E7%9A%84%E6%97%8B%E8%BD%AC","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"标签的旋转"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"某些图中,为了能有足够长的空间来显示标签,需要对标签进行旋转。例如:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"const labelOption = {\n show: true,\n rotate: 90,\n formatter: '{c} {name|{a}}',\n fontSize: 16,\n rich: {\n name: {}\n }\n};\n\noption = {\n xAxis: [\n {\n type: 'category',\n data: ['2012', '2013', '2014', '2015', '2016']\n }\n ],\n yAxis: [\n {\n type: 'value'\n }\n ],\n series: [\n {\n name: 'Forest',\n type: 'bar',\n barGap: 0,\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [320, 332, 301, 334, 390]\n },\n {\n name: 'Steppe',\n type: 'bar',\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [220, 182, 191, 234, 290]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这种场景下,可以结合 "},{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.align"},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"a","props":{"href":"option.html#series-bar.label.verticalAlign"},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" 来调整标签位置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意,逻辑是,先使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" 定位,再旋转。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"文本片段的排版和对齐"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%96%87%E6%9C%AC%E7%89%87%E6%AE%B5%E7%9A%84%E6%8E%92%E7%89%88%E5%92%8C%E5%AF%B9%E9%BD%90","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"文本片段的排版和对齐"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"关于排版方式,每个文本片段,可以想象成 CSS 中的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"inline-block"}]},{"type":"text","value":",在文档流中按行放置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"每个文本片段的内容盒尺寸("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"content box size"}]},{"type":"text","value":"),默认是根据文字大小决定的。但是,也可以设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"height"}]},{"type":"text","value":" 来强制指定,虽然一般不会这么做(参见下文)。文本片段的边框盒尺寸("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"border box size"}]},{"type":"text","value":"),由上述本身尺寸,加上文本片段的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]},{"type":"text","value":" 来得到。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"只有 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'\\n'"}]},{"type":"text","value":" 是换行符,能导致换行。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"一行内,会有多个文本片段。每行的实际高度,由 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" 最大的文本片段决定。文本片段的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" 可直接在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" 中指定,也可以在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" 的父层级中统一指定而采用到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich"}]},{"type":"text","value":" 的所有项中,如果都不指定,则取文本片段的边框盒尺寸("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"border box size"}]},{"type":"text","value":")。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在一行的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineHeight"}]},{"type":"text","value":" 被决定后,一行内,文本片段的竖直位置,由文本片段的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"verticalAlign"}]},{"type":"text","value":" 来指定(这里和 CSS 中的规则稍有不同):"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'bottom'"}]},{"type":"text","value":":文本片段的盒的底边贴住行底。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'top'"}]},{"type":"text","value":":文本片段的盒的顶边贴住行顶。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'middle'"}]},{"type":"text","value":":居行中。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"文本块的宽度,可以直接由文本块的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"width"}]},{"type":"text","value":" 指定,否则,由最长的行决定。宽度决定后,在一行中进行文本片段的放置。文本片段的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 决定了文本片段在行中的水平位置:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"首先,从左向右连续紧靠放置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'left'"}]},{"type":"text","value":" 的文本片段盒。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"然后,从右向左连续紧靠放置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'right'"}]},{"type":"text","value":" 的文本片段盒。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"最后,剩余的没处理的文本片段盒,紧贴着,在中间剩余的区域中居中放置。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"关于文字在文本片段盒中的位置:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'center'"}]},{"type":"text","value":",则文字在文本片段盒中是居中的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'left'"}]},{"type":"text","value":",则文字在文本片段盒中是居左的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"如果 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"align"}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'right'"}]},{"type":"text","value":",则文字在文本片段盒中是居右的。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"特殊效果:图标、分割线、标题块、简单表格"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%89%B9%E6%AE%8A%E6%95%88%E6%9E%9C%EF%BC%9A%E5%9B%BE%E6%A0%87%E3%80%81%E5%88%86%E5%89%B2%E7%BA%BF%E3%80%81%E6%A0%87%E9%A2%98%E5%9D%97%E3%80%81%E7%AE%80%E5%8D%95%E8%A1%A8%E6%A0%BC","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"特殊效果:图标、分割线、标题块、简单表格"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"看下面的例子:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"lr"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'scatter',\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n formatter: [\n '{tc|Center Title}{titleBg|}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n },\n {\n value: [0, 1],\n label: {\n normal: {\n formatter: [\n '{titleBg|Left Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n')\n }\n }\n },\n {\n value: [0, 2],\n label: {\n normal: {\n formatter: [\n '{titleBg|Right Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n }\n ],\n symbolSize: 1,\n label: {\n normal: {\n show: true,\n backgroundColor: '#ddd',\n borderColor: '#555',\n borderWidth: 1,\n borderRadius: 5,\n color: '#000',\n fontSize: 14,\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n },\n tc: {\n align: 'center',\n color: '#eee'\n },\n hr: {\n borderColor: '#777',\n width: '100%',\n borderWidth: 0.5,\n height: 0\n },\n sunny: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/sunny_128.png'\n }\n },\n cloudy: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/cloudy_128.png'\n }\n },\n showers: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/showers_128.png'\n }\n }\n }\n }\n }\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: 0,\n max: 2,\n inverse: true\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"文本片段的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":" 可以指定为图片后,就可以在文本中使用图标了:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"labelOption = {\n rich: {\n Sunny: {\n // 这样设定 backgroundColor 就可以是图片了。\n backgroundColor: {\n image: './data/asset/img/weather/sunny_128.png'\n },\n // 可以只指定图片的高度,从而图片的宽度根据图片的长宽比自动得到。\n height: 30\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"分割线实际是用 border 实现的:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"labelOption = {\n rich: {\n hr: {\n borderColor: '#777',\n // 这里把 width 设置为 '100%',表示分割线的长度充满文本块。\n // 注意,这里是文本块内容盒(content box)的 100%,而不包含 padding。\n // 虽然这和 CSS 相关的定义有所不同,但是在这类场景中更加方便。\n width: '100%',\n borderWidth: 0.5,\n height: 0\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"标题块是使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":" 实现的:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"labelOption = {\n // 标题文字居左\n formatter: '{titleBg|Left Title}',\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n }\n};\n\n// 标题文字居中。\n// 这个实现有些 tricky,但是,能够不引入更复杂的排版规则而实现这个效果。\nlabelOption = {\n formatter: '{tc|Center Title}{titleBg|}',\n rich: {\n titleBg: {\n align: 'right',\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n }\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"简单表格的设定,其实就是给不同行上纵向对应的文本片段设定同样的宽度就可以了。见 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=pie-rich-text","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"该例子"}]}]}]},"text":"# 富文本标签\n\nApache ECharts<sup>TM</sup> 中的文本标签从 v3.7 开始支持富文本模式,能够:\n\n- 定制文本块整体的样式(如背景、边框、阴影等)、位置、旋转等。\n- 对文本块中个别片段定义样式(如颜色、字体、高宽、背景、阴影等)、对齐方式等。\n- 在文本中使用图片做小图标或者背景。\n- 特定组合以上的规则,可以做出简单表格、分割线等效果。\n\n开始下面的介绍之前,先说明一下下面会使用的两个名词的含义:\n\n- 文本块(Text Block):文本标签块整体。\n- 文本片段(Text fragment):文本标签块中的部分文本。\n\n如下图示例:\n~[340x240](${galleryViewPath}doc-example/text-block-fragment&edit=1&reset=1)\n\n## 文本样式相关的配置项\n\necharts 提供了丰富的文本标签配置项,包括:\n\n- 字体基本样式设置:`fontStyle`、`fontWeight`、`fontSize`、`fontFamily`。\n- 文字颜色:`color`。\n- 文字描边:`textBorderColor`、`textBorderWidth`。\n- 文字阴影:`textShadowColor`、`textShadowBlur`、`textShadowOffsetX`、`textShadowOffsetY`。\n- 文本块或文本片段大小:`lineHeight`、`width`、`height`、`padding`。\n- 文本块或文本片段的对齐:`align`、`verticalAlign`。\n- 文本块或文本片段的边框、背景(颜色或图片):`backgroundColor`、`borderColor`、`borderWidth`、`borderRadius`。\n- 文本块或文本片段的阴影:`shadowColor`、`shadowBlur`、`shadowOffsetX`、`shadowOffsetY`。\n- 文本块的位置和旋转:`position`、`distance`、`rotate`。\n\n可以在各处的 `rich` 属性中定义文本片段样式。例如 [series-bar.label.rich](option.html#series-bar.label.rich)\n\n例如:\n\n```js\nlabelOption = {\n // 在文本中,可以对部分文本采用 rich 中定义样式。\n // 这里需要在文本中使用标记符号:\n // `{styleName|text content text content}` 标记样式名。\n // 注意,换行仍是使用 '\\n'。\n formatter: [\n '{a|这段文本采用样式a}',\n '{b|这段文本采用样式b}这段用默认样式{x|这段用样式x}'\n ].join('\\n'),\n\n // 这里是文本块的样式设置:\n color: '#333',\n fontSize: 5,\n fontFamily: 'Arial',\n borderWidth: 3,\n backgroundColor: '#984455',\n padding: [3, 10, 10, 5],\n lineHeight: 20,\n\n // rich 里是文本片段的样式设置:\n rich: {\n a: {\n color: 'red',\n lineHeight: 10\n },\n b: {\n backgroundColor: {\n image: 'xxx/xxx.jpg'\n },\n height: 40\n },\n x: {\n fontSize: 18,\n fontFamily: 'Microsoft YaHei',\n borderColor: '#449933',\n borderRadius: 4\n }\n }\n};\n```\n\n> 注意:如果不定义 `rich`,不能指定文字块的 `width` 和 `height`。\n\n## 文本、文本框、文本片段的基本样式和装饰\n\n每个文本可以设置基本的字体样式:`fontStyle`、`fontWeight`、`fontSize`、`fontFamily`。\n\n可以设置文字的颜色 `color` 和边框的颜色 `textBorderColor`、`textBorderWidth`。\n\n文本框可以设置边框和背景的样式:`borderColor`、`borderWidth`、`backgroundColor`、`padding`。\n\n文本片段也可以设置边框和背景的样式:`borderColor`、`borderWidth`、`backgroundColor`、`padding`。\n\n例如:\n\n```js [live]\noption = {\n series: [\n {\n type: 'scatter',\n symbolSize: 1,\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n show: true,\n formatter: [\n 'Plain text',\n '{textBorder|textBorderColor + textBorderWidth}',\n '{textShadow|textShadowColor + textShadowBlur + textShadowOffsetX + textShadowOffsetY}',\n '{bg|backgroundColor + borderRadius + padding}',\n '{border|borderColor + borderWidth + borderRadius + padding}',\n '{shadow|shadowColor + shadowBlur + shadowOffsetX + shadowOffsetY}'\n ].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#333',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n color: '#000',\n fontSize: 14,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n lineHeight: 30,\n rich: {\n textBorder: {\n fontSize: 20,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n },\n textShadow: {\n fontSize: 16,\n textShadowBlur: 5,\n textShadowColor: '#000',\n textShadowOffsetX: 3,\n textShadowOffsetY: 3,\n color: '#fff'\n },\n bg: {\n backgroundColor: '#339911',\n color: '#fff',\n borderRadius: 15,\n padding: 5\n },\n border: {\n color: '#000',\n borderColor: '#449911',\n borderWidth: 1,\n borderRadius: 3,\n padding: 5\n },\n shadow: {\n backgroundColor: '#992233',\n padding: 5,\n color: '#fff',\n shadowBlur: 5,\n shadowColor: '#336699',\n shadowOffsetX: 6,\n shadowOffsetY: 6\n }\n }\n }\n }\n }\n ]\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: -1,\n max: 1\n }\n};\n```\n\n## 标签的位置\n\n对于折线图、柱状图、散点图等,均可以使用 `label` 来设置标签。标签的相对于图形元素的位置,一般使用 [label.position](option.html#series-scatter.label.position)、[label.distance](option.html#series-scatter.label.distance) 来配置。\n\n试试在下面例子中修改`position`和`distance` 属性:\n\n```js [live]\noption = {\n series: [\n {\n type: 'scatter',\n symbolSize: 160,\n symbol: 'roundRect',\n data: [[1, 1]],\n label: {\n normal: {\n // 修改 position 和 distance 的值试试\n // 支持:'left', 'right', 'top', 'bottom', 'inside', 'insideTop', 'insideLeft', 'insideRight', 'insideBottom', 'insideTopLeft', 'insideTopRight', 'insideBottomLeft', 'insideBottomRight'\n position: 'top',\n distance: 10,\n\n show: true,\n formatter: ['Label Text'].join('\\n'),\n backgroundColor: '#eee',\n borderColor: '#555',\n borderWidth: 2,\n borderRadius: 5,\n padding: 10,\n fontSize: 18,\n shadowBlur: 3,\n shadowColor: '#888',\n shadowOffsetX: 0,\n shadowOffsetY: 3,\n textBorderColor: '#000',\n textBorderWidth: 3,\n color: '#fff'\n }\n }\n }\n ],\n xAxis: {\n max: 2\n },\n yAxis: {\n max: 2\n }\n};\n```\n\n> 注意:`position` 在不同的图中可取值有所不同。`distance` 并不是在每个图中都支持。详情请参见 [option 文档](https://echarts.apache.org/option.html)。\n\n## 标签的旋转\n\n某些图中,为了能有足够长的空间来显示标签,需要对标签进行旋转。例如:\n\n```js [live-lr]\nconst labelOption = {\n show: true,\n rotate: 90,\n formatter: '{c} {name|{a}}',\n fontSize: 16,\n rich: {\n name: {}\n }\n};\n\noption = {\n xAxis: [\n {\n type: 'category',\n data: ['2012', '2013', '2014', '2015', '2016']\n }\n ],\n yAxis: [\n {\n type: 'value'\n }\n ],\n series: [\n {\n name: 'Forest',\n type: 'bar',\n barGap: 0,\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [320, 332, 301, 334, 390]\n },\n {\n name: 'Steppe',\n type: 'bar',\n label: labelOption,\n emphasis: {\n focus: 'series'\n },\n data: [220, 182, 191, 234, 290]\n }\n ]\n};\n```\n\n这种场景下,可以结合 [align](option.html#series-bar.label.align) 和 [verticalAlign](option.html#series-bar.label.verticalAlign) 来调整标签位置。\n\n注意,逻辑是,先使用 `align` 和 `verticalAlign` 定位,再旋转。\n\n## 文本片段的排版和对齐\n\n关于排版方式,每个文本片段,可以想象成 CSS 中的 `inline-block`,在文档流中按行放置。\n\n每个文本片段的内容盒尺寸(`content box size`),默认是根据文字大小决定的。但是,也可以设置 `width`、`height` 来强制指定,虽然一般不会这么做(参见下文)。文本片段的边框盒尺寸(`border box size`),由上述本身尺寸,加上文本片段的 `padding` 来得到。\n\n只有 `'\\n'` 是换行符,能导致换行。\n\n一行内,会有多个文本片段。每行的实际高度,由 `lineHeight` 最大的文本片段决定。文本片段的 `lineHeight` 可直接在 `rich` 中指定,也可以在 `rich` 的父层级中统一指定而采用到 `rich` 的所有项中,如果都不指定,则取文本片段的边框盒尺寸(`border box size`)。\n\n在一行的 `lineHeight` 被决定后,一行内,文本片段的竖直位置,由文本片段的 `verticalAlign` 来指定(这里和 CSS 中的规则稍有不同):\n\n- `'bottom'`:文本片段的盒的底边贴住行底。\n- `'top'`:文本片段的盒的顶边贴住行顶。\n- `'middle'`:居行中。\n\n文本块的宽度,可以直接由文本块的 `width` 指定,否则,由最长的行决定。宽度决定后,在一行中进行文本片段的放置。文本片段的 `align` 决定了文本片段在行中的水平位置:\n\n- 首先,从左向右连续紧靠放置 `align` 为 `'left'` 的文本片段盒。\n- 然后,从右向左连续紧靠放置 `align` 为 `'right'` 的文本片段盒。\n- 最后,剩余的没处理的文本片段盒,紧贴着,在中间剩余的区域中居中放置。\n\n关于文字在文本片段盒中的位置:\n\n- 如果 `align` 为 `'center'`,则文字在文本片段盒中是居中的。\n- 如果 `align` 为 `'left'`,则文字在文本片段盒中是居左的。\n- 如果 `align` 为 `'right'`,则文字在文本片段盒中是居右的。\n\n## 特殊效果:图标、分割线、标题块、简单表格\n\n看下面的例子:\n\n```js [live-lr]\noption = {\n series: [\n {\n type: 'scatter',\n data: [\n {\n value: [0, 0],\n label: {\n normal: {\n formatter: [\n '{tc|Center Title}{titleBg|}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n },\n {\n value: [0, 1],\n label: {\n normal: {\n formatter: [\n '{titleBg|Left Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n')\n }\n }\n },\n {\n value: [0, 2],\n label: {\n normal: {\n formatter: [\n '{titleBg|Right Title}',\n ' Content text xxxxxxxx {sunny|} xxxxxxxx {cloudy|} ',\n '{hr|}',\n ' xxxxx {showers|} xxxxxxxx xxxxxxxxx '\n ].join('\\n'),\n rich: {\n titleBg: {\n align: 'right'\n }\n }\n }\n }\n }\n ],\n symbolSize: 1,\n label: {\n normal: {\n show: true,\n backgroundColor: '#ddd',\n borderColor: '#555',\n borderWidth: 1,\n borderRadius: 5,\n color: '#000',\n fontSize: 14,\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n },\n tc: {\n align: 'center',\n color: '#eee'\n },\n hr: {\n borderColor: '#777',\n width: '100%',\n borderWidth: 0.5,\n height: 0\n },\n sunny: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/sunny_128.png'\n }\n },\n cloudy: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/cloudy_128.png'\n }\n },\n showers: {\n height: 30,\n align: 'left',\n backgroundColor: {\n image:\n 'https://echarts.apache.org/examples/data/asset/img/weather/showers_128.png'\n }\n }\n }\n }\n }\n }\n ],\n xAxis: {\n show: false,\n min: -1,\n max: 1\n },\n yAxis: {\n show: false,\n min: 0,\n max: 2,\n inverse: true\n }\n};\n```\n\n文本片段的 `backgroundColor` 可以指定为图片后,就可以在文本中使用图标了:\n\n```js\nlabelOption = {\n rich: {\n Sunny: {\n // 这样设定 backgroundColor 就可以是图片了。\n backgroundColor: {\n image: './data/asset/img/weather/sunny_128.png'\n },\n // 可以只指定图片的高度,从而图片的宽度根据图片的长宽比自动得到。\n height: 30\n }\n }\n};\n```\n\n分割线实际是用 border 实现的:\n\n```js\nlabelOption = {\n rich: {\n hr: {\n borderColor: '#777',\n // 这里把 width 设置为 '100%',表示分割线的长度充满文本块。\n // 注意,这里是文本块内容盒(content box)的 100%,而不包含 padding。\n // 虽然这和 CSS 相关的定义有所不同,但是在这类场景中更加方便。\n width: '100%',\n borderWidth: 0.5,\n height: 0\n }\n }\n};\n```\n\n标题块是使用 `backgroundColor` 实现的:\n\n```js\nlabelOption = {\n // 标题文字居左\n formatter: '{titleBg|Left Title}',\n rich: {\n titleBg: {\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n }\n};\n\n// 标题文字居中。\n// 这个实现有些 tricky,但是,能够不引入更复杂的排版规则而实现这个效果。\nlabelOption = {\n formatter: '{tc|Center Title}{titleBg|}',\n rich: {\n titleBg: {\n align: 'right',\n backgroundColor: '#000',\n height: 30,\n borderRadius: [5, 5, 0, 0],\n padding: [0, 10, 0, 10],\n width: '100%',\n color: '#eee'\n }\n }\n};\n```\n\n简单表格的设定,其实就是给不同行上纵向对应的文本片段设定同样的宽度就可以了。见 [该例子](https://echarts.apache.org/examples/zh/editor.html?c=pie-rich-text)\n","dir":"/zh/application/label","path":"/zh/application/label/rich-text","extension":".md","createdAt":"2021-07-21T04:28:36.251Z","updatedAt":"2021-07-21T10:38:59.338Z","meta":{"version":0,"revision":0,"created":1627897109298},"$loki":76},{"slug":"5-2-0","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"apache-echarts-520"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#apache-echarts-520","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Apache ECharts 5.2.0"}]}]},"text":"# Apache ECharts 5.2.0\n","dir":"/zh/basics/release-note","path":"/zh/basics/release-note/5-2-0","extension":".md","createdAt":"2021-07-19T10:42:40.738Z","updatedAt":"2021-07-19T10:42:51.829Z","meta":{"version":0,"revision":0,"created":1627897109302},"$loki":77},{"slug":"v5-feature","toc":[{"id":"动态叙事","depth":2,"text":"动态叙事"},{"id":"视觉设计","depth":2,"text":"视觉设计"},{"id":"交互能力","depth":2,"text":"交互能力"},{"id":"开发体验","depth":2,"text":"开发体验"},{"id":"可访问性","depth":2,"text":"可访问性"},{"id":"小结","depth":2,"text":"小结"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"apache-echarts-5-新特性"},"children":[{"type":"element","tag":"a","props":{"href":"#apache-echarts-5-%E6%96%B0%E7%89%B9%E6%80%A7","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Apache ECharts 5 新特性"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"数据可视化在过去的几年中得到了长足的发展。开发者对于可视化产品的期待不再是简单的图表创建工具,而在交互、性能、数据处理等方面有了更高级的需求。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 始终致力于让开发者以更方便的方式创造灵活丰富的可视化作品。在最新推出的 Apache ECharts 5,我们着力加强了图表的叙事能力,让开发者可以以更简单的方式,讲述数据背后的故事。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/echarts-5.png","width":"800px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"“表·达”是 Apache ECharts 5 的核心,通过五大模块、十五项特性的全面升级,围绕可视化作品的叙事表达能力,让图“表”更能传“达”数据背后的故事,帮助开发者更轻松地创造满足各种场景需求的可视化作品。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"动态叙事"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8A%A8%E6%80%81%E5%8F%99%E4%BA%8B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"动态叙事"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"动画对于人类认知的重要性不言而喻。在之前的作品中,我们会通过初始化动画和过渡动画帮助用户理解数据变换之间的联系,让图表的出现和变换显得不那么生硬。这次,我们更是大幅度增强了我们的动画叙事能力,。希望能够进一步发挥动画对于用户认知的帮助作用,借助图表的动态叙事功能,帮助用户更容易理解图表背后表达的故事。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"动态排序图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8A%A8%E6%80%81%E6%8E%92%E5%BA%8F%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"动态排序图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 新增支持动态排序柱状图(bar-racing)以及动态排序折线图(line-racing),帮助开发者方便地创建带有时序性的图表,展现数据随着时间维度上的变化,讲述数据的演变过程。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"bar-race-country","width":700,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n\n\n"},{"type":"element","tag":"md-example","props":{"src":"line-race","width":700,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"动态排序图展现了不同的类目随着时间在排名上的衍变。而开发者只需要通过几行简单的配置项就可以在 ECharts 中开启这样的效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"自定义系列动画"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%87%AA%E5%AE%9A%E4%B9%89%E7%B3%BB%E5%88%97%E5%8A%A8%E7%94%BB","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"自定义系列动画"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了动态排序图,Apache ECharts 5 在自定义系列中提供了更加丰富强大的动画效果,支持标签数值文本的插值动画,图形的形变(morph)、分裂(separate)、合并(combine)等效果的过渡动画。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"想象一下,用这些动态效果,你可以创造出多么令人称奇的可视化作品!"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"视觉设计"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%A7%86%E8%A7%89%E8%AE%BE%E8%AE%A1","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"视觉设计"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"视觉设计的作用并不仅仅是为了让图表更好看,更重要的是,符合可视化原理的设计可以帮用户更快速地理解图表想表达的内容,并且尽可能消除不良设计带来的误解。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"默认设计"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%BB%98%E8%AE%A4%E8%AE%BE%E8%AE%A1","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"默认设计"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们发现,有很大一部分开发者使用了 ECharts 默认的主题样式,因而设计优雅、符合可视化原理的默认主题设计是非常重要的。在 Apache ECharts 5 中,我们重新设计了默认的主题样式,针对不同的系列和组件分别做了优化调整。以主题色为例,我们考量了颜色之间的区分度、与背景色的对比度、相邻颜色的和谐度等因素,并且确保色觉辨识障碍人士也能清楚地区分数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/theme-color.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们以最常用的柱状图为例,来看看新版本浅色主题和深色主题的样式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-theme-light.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-theme-dark.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于数据区域缩放,时间轴等交互组件,我们也设计了全新的样式并且提供了更好的交互体验:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/dataZoom.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/timeline.png","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"标签"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%A0%87%E7%AD%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"标签"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"标签是图表中的核心元素之一,清晰而明确的标签可以帮助用户对数据有更准确的理解。Apache ECharts 5 提供了多种新的标签功能,让密集的标签能清晰显示、准确表意。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 可以通过一个配置项开启自动隐藏重叠的标签。对于超出显示区域的标签,可以选择自动截断或者换行。密集的饼图标签,现在有了更美观的自动排布。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这些功能可以帮助避免文字过于密集影响可读性。并且,无需开发者编写额外的代码就能默认生效,大大简化了开发者的开发成本。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们也提供了多个配置项来让开发者主动控制标签的布局策略,例如标签拖动、整体显示在画布边缘,用引导线和图形元素连接,并且仍可联动高亮表达关联关系。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"新的标签功能可以让你在移动端这样局限的空间内也可以有很优雅的标签展示:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/pie-label.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"时间轴"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%97%B6%E9%97%B4%E8%BD%B4","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"时间轴"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 带来了适于表达时间标签刻度的时间轴。时间轴的默认设计更突出重要的信息,并且提供了更灵活的定制化能力,让开发者根据不同的需求定制时间轴的标签内容。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"首先,时间轴不再如之前般绝对平均分割,而是选取年、月、日、整点这类更有意义的点来展示,并且能同时显示不同层级的刻度。标签的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"formatter"}]},{"type":"text","value":" 支持了时间模版(例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{yyyy}-{MM}-{dd}"}]},{"type":"text","value":"),并且可以为不同时间粒度的标签指定不同的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"formatter"}]},{"type":"text","value":",结合已有的富文本标签,可以定制出醒目而多样的时间效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"不同的 dataZoom 粒度下时间刻度的显示:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/time-axis.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/time-axis-2.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"提示框"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8F%90%E7%A4%BA%E6%A1%86","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"提示框"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"提示框(Tooltip)是一种最常用的可视化组件,可以帮助用户交互式地了解数据的详细信息。在 Apache ECharts 5 中,我们对提示框的样式进行了优化,通过对字体样式,颜色的调整,指向图形的箭头,跟随图形颜色的边框色等功能,让提示框的默认展示优雅又清晰。并且改进了富文本的渲染逻辑,确保显示效果与 HTML 方式一致,让用户在不同场景下可以选择不同的技术方案实现同样的效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-tooltip.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/new-tooltip-2.png","width":"400px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,我们这次也加上了提示框内的列表按照数值大小或者类目顺序排序的功能。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"仪表盘"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BB%AA%E8%A1%A8%E7%9B%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"仪表盘"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们看到社区用户创建了很多酷炫的仪表盘图表,但是他们的配置方式往往比较复杂而取巧。因此,我们对仪表盘的功能作了全面升级,支持了图片或者矢量路径绘制指针、也支持了锚点(anchor)配置项、进度条(progress)、圆角效果等等配置项。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"不同样式的仪表盘指针:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/gauge-pointer.png","width":"600px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这些升级,不仅可以让开发者用更简单的配置项实现酷炫的效果,而且带来了更丰富的定制能力。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"gauge-clock","width":600,"height":600},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"扇形圆角"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%89%87%E5%BD%A2%E5%9C%86%E8%A7%92","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"扇形圆角"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"圆角可以带来更美观而柔和的视觉,也能够赋予更多的创造力。Apache ECharts 5 支持了饼图、旭日图、矩形树图的扇形圆角。可不要小看了简单的圆角配置项,合理地搭配其他的效果,就可以形成更具个性的的可视化作品。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"sunburst-borderRadius","width":400,"height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"交互能力"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BA%A4%E4%BA%92%E8%83%BD%E5%8A%9B","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"交互能力"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"可视化作品的交互能力帮助用户探索了解作品,加深对于图表主旨的理解。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"状态管理"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%8A%B6%E6%80%81%E7%AE%A1%E7%90%86","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"状态管理"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 4 中有高亮(emphasis)和普通(normal)两个交互的状态,在鼠标移到图形上的时候会进入高亮状态以区分该数据,开发者可以分别设置这两个状态的颜色,阴影等样式。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这次在 Apache ECharts 5 中,我们在原先的鼠标 hover 高亮的基础上,新增加了"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"淡出"}]},{"type":"text","value":"其它非相关元素的效果,从而可以达到聚焦目标数据的目的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"比如在这个"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/examples/zh/editor.html?c=bar-y-category-stack","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"柱状图"}]},{"type":"text","value":"的例子中,鼠标移到一个系列上的时候,其它非相关的系列就会淡出,从而可以更清晰的突出聚焦系列中数据的对比。在关系图,树图,旭日图,桑基等更复杂数据结构的图上,也可以通过淡出非相关元素来观察数据之间的联系。而且颜色,阴影等在高亮(emphasis)中可以设置的样式,现在也可以在淡出(blur)状态中设置了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,我们为所有系列还添加了"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"点击选中"}]},{"type":"text","value":"这个之前只有在饼图、地图等少数系列中才能开启的交互,开发者可以设置为单选或多选模式,并且通过监听 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]},{"type":"text","value":" 事件获取到选中的所有图形然后进行更进一步的处理。与高亮和淡出一样,选中的样式也可以在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]},{"type":"text","value":" 中配置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"性能提升"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%80%A7%E8%83%BD%E6%8F%90%E5%8D%87","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"性能提升"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"脏矩形渲染"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%84%8F%E7%9F%A9%E5%BD%A2%E6%B8%B2%E6%9F%93","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"脏矩形渲染"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 新支持了脏矩形渲染,解决只有局部变化的场景下的性能瓶颈。在使用 Canvas 渲染器时,脏矩形渲染技术探测并只更新视图变化的部分,而不是任何变动都引起画布完全重绘。这能在一些特殊场景下帮助提高渲染帧率,例如在图形很多时候,鼠标频繁触发一些图形高亮的场景。以往这类场景,会使用额外的 Canvas 层以优化性能,但是这种方式不是所有场景都通用,而且对于复杂的样式的效果并不理想。脏矩形渲染很好地同时满足了性能和显示正确。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"脏矩形的可视化演示,红色框选部分为该帧重绘区域:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"src":"images/feature-v5/dirty-rect.gif","width":"500px"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"大家在新的示例页面选择开启脏矩形优化就可以看到该效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"实时时序数据的折线图性能优化"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%9E%E6%97%B6%E6%97%B6%E5%BA%8F%E6%95%B0%E6%8D%AE%E7%9A%84%E6%8A%98%E7%BA%BF%E5%9B%BE%E6%80%A7%E8%83%BD%E4%BC%98%E5%8C%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"实时时序数据的折线图性能优化"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,海量数据下折线图的性能也有了大幅度的性能提升。我们经常碰到大量的实时时序数据的高性能绘制的需求,这些数据可能需要几百或者几十毫秒更新一次。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 5 对这些场景下的 CPU 消耗、内存占用、初始化时间都进行了深度的优化,使得百万量级的数据也能做到实时的更新(每次更新耗时少于 30ms),甚至对于千万级的数据,也可以在 1s 内渲染完,并且保持很小的内存占用以及流畅的提示框(tooltip)等交互。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"开发体验"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%80%E5%8F%91%E4%BD%93%E9%AA%8C","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"开发体验"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们希望如此强大的可视化工具可以被更多开发者以更简单的方式使用,因而开发者的开发体验也是我们非常关注的方面。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"数据集"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E9%9B%86","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据集"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 5 加强了数据集的数据转换能力,让开发者可以使用简单的方式实现常用的数据处理,如:数据过滤(filter)、排序(sort)、聚合(aggregate)、直方图(histogram)、简单聚类(clustering)、回归线计算(regression)等。开发者可以用统一的声明式方式来使用这些功能,可以方便地实现常用的数据操作。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"国际化"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9B%BD%E9%99%85%E5%8C%96","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"国际化"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 原有的国际化方案,采用的是根据不同的语言参数打包出不同的部署文件的形式。​ 这种方式,使动态的语言和静态的代码包绑定在一起,使用的时候只能通过重新加载不同语言版本的 ECharts 代码来达到切换语言的目的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"因此,从 Apache ECharts 5 开始,动态的语言包和静态的代码包分离开。切换语言的时候,只需要加载相应语言包 ​,通过类似挂载主题的方式,使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"registerLocale"}]},{"type":"text","value":" 函数挂载语言包对象 ​,重新初始化后就完成了语言的切换 ​。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// import the lang object and set when init​\necharts.registerLocale('DE', lang);​\necharts.init(DomElement, null, {​\n locale: 'DE'​\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"typescript-重构"},"children":[{"type":"element","tag":"a","props":{"href":"#typescript-%E9%87%8D%E6%9E%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"TypeScript 重构"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在近 8 年的时间里,Apache ECharts 已经发展成一个非常复杂的可视化库了,为了续可以更安全高效的进行重构和新功能的开发,我们在 Apache ECharts 5 的开发之初,使用 TypeScript 对代码进行了重写,TypeScript 所带来的强类型让我们更有信心地在 ECharts 5 开发的时候对代码进行大刀阔斧的重构以实现更多令人激动人心的特性。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"对于开发者,我们也可以从 TypeScript 代码直接生成更好更符合代码的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"DTS"}]},{"type":"text","value":"类型描述文件。在此之前,ECharts 的类型描述文件一直是由社区开发者帮我们维护并发布到"},{"type":"element","tag":"a","props":{"href":"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/echarts","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"DefinityTyped"}]},{"type":"text","value":",这个有着不小的工作量,非常感谢大家的贡献。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,如果开发者的组件是按需引入的,我们还提供了一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ComposeOption"}]},{"type":"text","value":" 类型方法,可以组合出一个只包含了引入组件的配置项类型,可以带来更严格的类型检查,帮助你提前检测到未引入的组件类型。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"可访问性"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8F%AF%E8%AE%BF%E9%97%AE%E6%80%A7","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"可访问性"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Apache ECharts 一直非常重视无障碍设计,我们希望让视觉障碍人士也能平等了解图表传递的信息。并且也希望图表的开发者能以极低的开发成本实现这一点,因而有利于让开发者更愿意为视觉障碍人士提供支持。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在上一个大版本中,我们支持了根据不同的图表类型和数据自动一键智能生成图表描述的功能,帮助开发者非常方便地支持图表的 DOM 描述信息。在 ECharts 5 中,我们也做了更多提高可访问性的设计,帮助视觉障碍人士更好地理解图表内容。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"主题配色"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%BB%E9%A2%98%E9%85%8D%E8%89%B2","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"主题配色"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们在设计新版默认主题样式的时候,将无障碍设计作为一个重要的考量依据,对颜色的明度和色值都进行反复测试,帮助视觉辨识障碍用户清楚地识别图表数据。​"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"并且,针对有更进一步无障碍需求的开发者,我们还提供了特殊的高对比度主题,以更高对比度颜色的主题将数据作进一步区分。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"贴花图案"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%B4%B4%E8%8A%B1%E5%9B%BE%E6%A1%88","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"贴花图案"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 5 还新增提供了贴花的功能,用图案辅助颜色表达,进一步帮助用户区分数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-decal-simple","width":600,"height":350},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"此外,贴花图案还能在一些其他的场景下提供帮助,比如:在报纸、书籍之类只有单色或者非常少的颜色的印刷品中,帮助更好地区分数据;用图形元素方便用户对数据产生更直观的理解等。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"doc-example/aria-decal-newspaper","width":600,"height":350},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"小结"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%B0%8F%E7%BB%93","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"小结"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除了以上介绍的功能,Apache ECharts 还在非常多的细节中做了改进,帮助开发者更轻松地创建默认好用、配置灵活的图表,用图表讲述数据背后的故事。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"感谢所有使用过 ECharts,甚至参与过社区贡献的开发者,正是你们才使得 Apache ECharts 5 成为可能。我们会以更大的热情投入到未来的开发中,Apache ECharts 也会以更大的诚意和大家在 6 相见!"}]}]},"text":"# Apache ECharts 5 新特性\n\n数据可视化在过去的几年中得到了长足的发展。开发者对于可视化产品的期待不再是简单的图表创建工具,而在交互、性能、数据处理等方面有了更高级的需求。\n\nApache ECharts 始终致力于让开发者以更方便的方式创造灵活丰富的可视化作品。在最新推出的 Apache ECharts 5,我们着力加强了图表的叙事能力,让开发者可以以更简单的方式,讲述数据背后的故事。\n\n<img src=\"images/feature-v5/echarts-5.png\" width=\"800px\" />\n\n“表·达”是 Apache ECharts 5 的核心,通过五大模块、十五项特性的全面升级,围绕可视化作品的叙事表达能力,让图“表”更能传“达”数据背后的故事,帮助开发者更轻松地创造满足各种场景需求的可视化作品。\n\n## 动态叙事\n\n动画对于人类认知的重要性不言而喻。在之前的作品中,我们会通过初始化动画和过渡动画帮助用户理解数据变换之间的联系,让图表的出现和变换显得不那么生硬。这次,我们更是大幅度增强了我们的动画叙事能力,。希望能够进一步发挥动画对于用户认知的帮助作用,借助图表的动态叙事功能,帮助用户更容易理解图表背后表达的故事。\n\n#### 动态排序图\n\nApache ECharts 5 新增支持动态排序柱状图(bar-racing)以及动态排序折线图(line-racing),帮助开发者方便地创建带有时序性的图表,展现数据随着时间维度上的变化,讲述数据的演变过程。\n\n<md-example src=\"bar-race-country\" width=\"700\" height=\"400\"></md-example>\n<md-example src=\"line-race\" width=\"700\" height=\"400\"></md-example>\n\n动态排序图展现了不同的类目随着时间在排名上的衍变。而开发者只需要通过几行简单的配置项就可以在 ECharts 中开启这样的效果。\n\n#### 自定义系列动画\n\n除了动态排序图,Apache ECharts 5 在自定义系列中提供了更加丰富强大的动画效果,支持标签数值文本的插值动画,图形的形变(morph)、分裂(separate)、合并(combine)等效果的过渡动画。\n\n想象一下,用这些动态效果,你可以创造出多么令人称奇的可视化作品!\n\n## 视觉设计\n\n视觉设计的作用并不仅仅是为了让图表更好看,更重要的是,符合可视化原理的设计可以帮用户更快速地理解图表想表达的内容,并且尽可能消除不良设计带来的误解。\n\n#### 默认设计\n\n我们发现,有很大一部分开发者使用了 ECharts 默认的主题样式,因而设计优雅、符合可视化原理的默认主题设计是非常重要的。在 Apache ECharts 5 中,我们重新设计了默认的主题样式,针对不同的系列和组件分别做了优化调整。以主题色为例,我们考量了颜色之间的区分度、与背景色的对比度、相邻颜色的和谐度等因素,并且确保色觉辨识障碍人士也能清楚地区分数据。\n\n<img src=\"images/feature-v5/theme-color.png\" width=\"400px\" />\n\n我们以最常用的柱状图为例,来看看新版本浅色主题和深色主题的样式:\n\n<img src=\"images/feature-v5/new-theme-light.png\" width=\"500px\" />\n<img src=\"images/feature-v5/new-theme-dark.png\" width=\"500px\" />\n\n对于数据区域缩放,时间轴等交互组件,我们也设计了全新的样式并且提供了更好的交互体验:\n\n<img src=\"images/feature-v5/dataZoom.png\" width=\"500px\" />\n\n<img src=\"images/feature-v5/timeline.png\" width=\"500px\" />\n\n#### 标签\n\n标签是图表中的核心元素之一,清晰而明确的标签可以帮助用户对数据有更准确的理解。Apache ECharts 5 提供了多种新的标签功能,让密集的标签能清晰显示、准确表意。\n\nApache ECharts 5 可以通过一个配置项开启自动隐藏重叠的标签。对于超出显示区域的标签,可以选择自动截断或者换行。密集的饼图标签,现在有了更美观的自动排布。\n\n这些功能可以帮助避免文字过于密集影响可读性。并且,无需开发者编写额外的代码就能默认生效,大大简化了开发者的开发成本。\n\n我们也提供了多个配置项来让开发者主动控制标签的布局策略,例如标签拖动、整体显示在画布边缘,用引导线和图形元素连接,并且仍可联动高亮表达关联关系。\n\n新的标签功能可以让你在移动端这样局限的空间内也可以有很优雅的标签展示:\n\n<img src=\"images/feature-v5/pie-label.png\" width=\"400px\" />\n\n#### 时间轴\n\nApache ECharts 5 带来了适于表达时间标签刻度的时间轴。时间轴的默认设计更突出重要的信息,并且提供了更灵活的定制化能力,让开发者根据不同的需求定制时间轴的标签内容。\n\n首先,时间轴不再如之前般绝对平均分割,而是选取年、月、日、整点这类更有意义的点来展示,并且能同时显示不同层级的刻度。标签的 `formatter` 支持了时间模版(例如 `{yyyy}-{MM}-{dd}`),并且可以为不同时间粒度的标签指定不同的 `formatter`,结合已有的富文本标签,可以定制出醒目而多样的时间效果。\n\n不同的 dataZoom 粒度下时间刻度的显示:\n\n<img src=\"images/feature-v5/time-axis.png\" width=\"600px\" />\n\n<img src=\"images/feature-v5/time-axis-2.png\" width=\"600px\" />\n\n#### 提示框\n\n提示框(Tooltip)是一种最常用的可视化组件,可以帮助用户交互式地了解数据的详细信息。在 Apache ECharts 5 中,我们对提示框的样式进行了优化,通过对字体样式,颜色的调整,指向图形的箭头,跟随图形颜色的边框色等功能,让提示框的默认展示优雅又清晰。并且改进了富文本的渲染逻辑,确保显示效果与 HTML 方式一致,让用户在不同场景下可以选择不同的技术方案实现同样的效果。\n\n<img src=\"images/feature-v5/new-tooltip.png\" width=\"400px\" />\n<img src=\"images/feature-v5/new-tooltip-2.png\" width=\"400px\" />\n\n除此之外,我们这次也加上了提示框内的列表按照数值大小或者类目顺序排序的功能。\n\n#### 仪表盘\n\n我们看到社区用户创建了很多酷炫的仪表盘图表,但是他们的配置方式往往比较复杂而取巧。因此,我们对仪表盘的功能作了全面升级,支持了图片或者矢量路径绘制指针、也支持了锚点(anchor)配置项、进度条(progress)、圆角效果等等配置项。\n\n不同样式的仪表盘指针:\n\n<img src=\"images/feature-v5/gauge-pointer.png\" width=\"600px\" />\n\n这些升级,不仅可以让开发者用更简单的配置项实现酷炫的效果,而且带来了更丰富的定制能力。\n\n<md-example src=\"gauge-clock\" width=\"600\" height=\"600\"></md-example>\n\n#### 扇形圆角\n\n圆角可以带来更美观而柔和的视觉,也能够赋予更多的创造力。Apache ECharts 5 支持了饼图、旭日图、矩形树图的扇形圆角。可不要小看了简单的圆角配置项,合理地搭配其他的效果,就可以形成更具个性的的可视化作品。\n\n<md-example src=\"sunburst-borderRadius\" width=\"400\" height=\"400\"></md-example>\n\n## 交互能力\n\n可视化作品的交互能力帮助用户探索了解作品,加深对于图表主旨的理解。\n\n#### 状态管理\n\n在 ECharts 4 中有高亮(emphasis)和普通(normal)两个交互的状态,在鼠标移到图形上的时候会进入高亮状态以区分该数据,开发者可以分别设置这两个状态的颜色,阴影等样式。\n\n这次在 Apache ECharts 5 中,我们在原先的鼠标 hover 高亮的基础上,新增加了**淡出**其它非相关元素的效果,从而可以达到聚焦目标数据的目的。\n\n比如在这个[柱状图](https://echarts.apache.org/examples/zh/editor.html?c=bar-y-category-stack)的例子中,鼠标移到一个系列上的时候,其它非相关的系列就会淡出,从而可以更清晰的突出聚焦系列中数据的对比。在关系图,树图,旭日图,桑基等更复杂数据结构的图上,也可以通过淡出非相关元素来观察数据之间的联系。而且颜色,阴影等在高亮(emphasis)中可以设置的样式,现在也可以在淡出(blur)状态中设置了。\n\n除此之外,我们为所有系列还添加了**点击选中**这个之前只有在饼图、地图等少数系列中才能开启的交互,开发者可以设置为单选或多选模式,并且通过监听 `selectchanged` 事件获取到选中的所有图形然后进行更进一步的处理。与高亮和淡出一样,选中的样式也可以在 `select` 中配置。\n\n#### 性能提升\n\n##### 脏矩形渲染\n\nApache ECharts 5 新支持了脏矩形渲染,解决只有局部变化的场景下的性能瓶颈。在使用 Canvas 渲染器时,脏矩形渲染技术探测并只更新视图变化的部分,而不是任何变动都引起画布完全重绘。这能在一些特殊场景下帮助提高渲染帧率,例如在图形很多时候,鼠标频繁触发一些图形高亮的场景。以往这类场景,会使用额外的 Canvas 层以优化性能,但是这种方式不是所有场景都通用,而且对于复杂的样式的效果并不理想。脏矩形渲染很好地同时满足了性能和显示正确。\n\n脏矩形的可视化演示,红色框选部分为该帧重绘区域:\n\n<img src=\"images/feature-v5/dirty-rect.gif\" width=\"500px\" />\n\n大家在新的示例页面选择开启脏矩形优化就可以看到该效果。\n\n##### 实时时序数据的折线图性能优化\n\n除此之外,海量数据下折线图的性能也有了大幅度的性能提升。我们经常碰到大量的实时时序数据的高性能绘制的需求,这些数据可能需要几百或者几十毫秒更新一次。\n\nApache ECharts 5 对这些场景下的 CPU 消耗、内存占用、初始化时间都进行了深度的优化,使得百万量级的数据也能做到实时的更新(每次更新耗时少于 30ms),甚至对于千万级的数据,也可以在 1s 内渲染完,并且保持很小的内存占用以及流畅的提示框(tooltip)等交互。\n\n## 开发体验\n\n我们希望如此强大的可视化工具可以被更多开发者以更简单的方式使用,因而开发者的开发体验也是我们非常关注的方面。\n\n#### 数据集\n\nECharts 5 加强了数据集的数据转换能力,让开发者可以使用简单的方式实现常用的数据处理,如:数据过滤(filter)、排序(sort)、聚合(aggregate)、直方图(histogram)、简单聚类(clustering)、回归线计算(regression)等。开发者可以用统一的声明式方式来使用这些功能,可以方便地实现常用的数据操作。\n\n#### 国际化\n\nECharts 原有的国际化方案,采用的是根据不同的语言参数打包出不同的部署文件的形式。​ 这种方式,使动态的语言和静态的代码包绑定在一起,使用的时候只能通过重新加载不同语言版本的 ECharts 代码来达到切换语言的目的。\n\n因此,从 Apache ECharts 5 开始,动态的语言包和静态的代码包分离开。切换语言的时候,只需要加载相应语言包 ​,通过类似挂载主题的方式,使用 `registerLocale` 函数挂载语言包对象 ​,重新初始化后就完成了语言的切换 ​。\n\n```js\n// import the lang object and set when init​\necharts.registerLocale('DE', lang);​\necharts.init(DomElement, null, {​\n locale: 'DE'​\n});\n```\n\n#### TypeScript 重构\n\n在近 8 年的时间里,Apache ECharts 已经发展成一个非常复杂的可视化库了,为了续可以更安全高效的进行重构和新功能的开发,我们在 Apache ECharts 5 的开发之初,使用 TypeScript 对代码进行了重写,TypeScript 所带来的强类型让我们更有信心地在 ECharts 5 开发的时候对代码进行大刀阔斧的重构以实现更多令人激动人心的特性。\n\n对于开发者,我们也可以从 TypeScript 代码直接生成更好更符合代码的`DTS`类型描述文件。在此之前,ECharts 的类型描述文件一直是由社区开发者帮我们维护并发布到[DefinityTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/echarts),这个有着不小的工作量,非常感谢大家的贡献。\n\n除此之外,如果开发者的组件是按需引入的,我们还提供了一个 `ComposeOption` 类型方法,可以组合出一个只包含了引入组件的配置项类型,可以带来更严格的类型检查,帮助你提前检测到未引入的组件类型。\n\n## 可访问性\n\nApache ECharts 一直非常重视无障碍设计,我们希望让视觉障碍人士也能平等了解图表传递的信息。并且也希望图表的开发者能以极低的开发成本实现这一点,因而有利于让开发者更愿意为视觉障碍人士提供支持。\n\n在上一个大版本中,我们支持了根据不同的图表类型和数据自动一键智能生成图表描述的功能,帮助开发者非常方便地支持图表的 DOM 描述信息。在 ECharts 5 中,我们也做了更多提高可访问性的设计,帮助视觉障碍人士更好地理解图表内容。\n\n#### 主题配色\n\n我们在设计新版默认主题样式的时候,将无障碍设计作为一个重要的考量依据,对颜色的明度和色值都进行反复测试,帮助视觉辨识障碍用户清楚地识别图表数据。​\n\n并且,针对有更进一步无障碍需求的开发者,我们还提供了特殊的高对比度主题,以更高对比度颜色的主题将数据作进一步区分。\n\n#### 贴花图案\n\nECharts 5 还新增提供了贴花的功能,用图案辅助颜色表达,进一步帮助用户区分数据。\n\n<md-example src=\"doc-example/aria-decal-simple\" width=\"600\" height=\"350\"></md-example>\n\n此外,贴花图案还能在一些其他的场景下提供帮助,比如:在报纸、书籍之类只有单色或者非常少的颜色的印刷品中,帮助更好地区分数据;用图形元素方便用户对数据产生更直观的理解等。\n\n<md-example src=\"doc-example/aria-decal-newspaper\" width=\"600\" height=\"350\"></md-example>\n\n## 小结\n\n除了以上介绍的功能,Apache ECharts 还在非常多的细节中做了改进,帮助开发者更轻松地创建默认好用、配置灵活的图表,用图表讲述数据背后的故事。\n\n感谢所有使用过 ECharts,甚至参与过社区贡献的开发者,正是你们才使得 Apache ECharts 5 成为可能。我们会以更大的热情投入到未来的开发中,Apache ECharts 也会以更大的诚意和大家在 6 相见!\n","dir":"/zh/basics/release-note","path":"/zh/basics/release-note/v5-feature","extension":".md","createdAt":"2021-07-21T06:01:33.136Z","updatedAt":"2021-07-21T06:12:10.011Z","meta":{"version":0,"revision":0,"created":1627897109310},"$loki":78},{"slug":"drag","toc":[{"id":"实现基本的拖拽功能","depth":2,"text":"实现基本的拖拽功能"},{"id":"添加-tooltip-组件","depth":2,"text":"添加 tooltip 组件"},{"id":"全部代码","depth":2,"text":"全部代码"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"拖拽的实现"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8B%96%E6%8B%BD%E7%9A%84%E5%AE%9E%E7%8E%B0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"拖拽的实现"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本篇通过介绍一个实现拖拽的小例子来介绍如何在 Apache ECharts"},{"type":"element","tag":"sup","props":{},"children":[{"type":"text","value":"TM"}]},{"type":"text","value":" 中实现复杂的交互。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"md-example","props":{"src":"line-draggable","height":400},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这个例子主要做到了这样一件事,用鼠标可以拖拽曲线的点,从而改变曲线的形状。例子很简单,但是有了这个基础我们还可以做更多的事情,比如在图中进行可视化得编辑。所以我们从这个简单的例子开始。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"echarts 本身没有提供封装好的“拖拽改变图表”这样比较业务定制的功能。但是这个功能开发者可以通过 API 扩展实现。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"实现基本的拖拽功能"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AE%9E%E7%8E%B0%E5%9F%BA%E6%9C%AC%E7%9A%84%E6%8B%96%E6%8B%BD%E5%8A%9F%E8%83%BD","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"实现基本的拖拽功能"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,基础的图表是一个 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"折线图 (series-line)"}]},{"type":"text","value":"。参见如下配置:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var symbolSize = 20;\n\n// 这个 data 变量在这里单独声明,在后面也会用到。\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\n\nmyChart.setOption({\n xAxis: {\n min: -100,\n max: 80,\n type: 'value',\n axisLine: { onZero: false }\n },\n yAxis: {\n min: -30,\n max: 60,\n type: 'value',\n axisLine: { onZero: false }\n },\n series: [\n {\n id: 'a',\n type: 'line',\n smooth: true,\n symbolSize: symbolSize, // 为了方便拖拽,把 symbolSize 尺寸设大了。\n data: data\n }\n ]\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"既然折线中原生的点没有拖拽功能,我们就为它加上拖拽功能:用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#graphic","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"graphic"}]},{"type":"text","value":" 组件,在每个点上面,覆盖一个隐藏的可拖拽的圆点。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n // 声明一个 graphic component,里面有若干个 type 为 'circle' 的 graphic elements。\n // 这里使用了 echarts.util.map 这个帮助方法,其行为和 Array.prototype.map 一样,但是兼容 es5 以下的环境。\n // 用 map 方法遍历 data 的每项,为每项生成一个圆点。\n graphic: echarts.util.map(data, function(dataItem, dataIndex) {\n return {\n // 'circle' 表示这个 graphic element 的类型是圆点。\n type: 'circle',\n\n shape: {\n // 圆点的半径。\n r: symbolSize / 2\n },\n // 用 transform 的方式对圆点进行定位。position: [x, y] 表示将圆点平移到 [x, y] 位置。\n // 这里使用了 convertToPixel 这个 API 来得到每个圆点的位置,下面介绍。\n position: myChart.convertToPixel('grid', dataItem),\n\n // 这个属性让圆点不可见(但是不影响他响应鼠标事件)。\n invisible: true,\n // 这个属性让圆点可以被拖拽。\n draggable: true,\n // 把 z 值设得比较大,表示这个圆点在最上方,能覆盖住已有的折线图的圆点。\n z: 100,\n // 此圆点的拖拽的响应事件,在拖拽过程中会不断被触发。下面介绍详情。\n // 这里使用了 echarts.util.curry 这个帮助方法,意思是生成一个与 onPointDragging\n // 功能一样的新的函数,只不过第一个参数永远为此时传入的 dataIndex 的值。\n ondrag: echarts.util.curry(onPointDragging, dataIndex)\n };\n })\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"上面的代码中,使用 "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.convertToPixel"},"children":[{"type":"text","value":"convertToPixel"}]},{"type":"text","value":" 这个 API,进行了从 data 到“像素坐标”的转换,从而得到了每个圆点应该在的位置,从而能绘制这些圆点。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.convertToPixel('grid', dataItem)"}]},{"type":"text","value":" 这句话中,第一个参数 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'grid'"}]},{"type":"text","value":" 表示 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataItem"}]},{"type":"text","value":" 在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#grid","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"grid"}]},{"type":"text","value":" 这个组件中(即直角坐标系)中进行转换。所谓“像素坐标”,就是以 echarts 容器 dom element 的左上角为零点的以像素为单位的坐标系中的坐标。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意这件事需要在第一次 setOption 后再进行,也就是说,须在坐标系("},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#grid","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"grid"}]},{"type":"text","value":")初始化后才能调用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.convertToPixel('grid', dataItem)"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有了这段代码后,就有了诸个能拖拽的点。接下来要为每个点,加上拖拽响应的事件:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"// 拖拽某个圆点的过程中会不断调用此函数。\n// 此函数中会根据拖拽后的新位置,改变 data 中的值,并用新的 data 值,重绘折线图,从而使折线图同步于被拖拽的隐藏圆点。\nfunction onPointDragging(dataIndex) {\n // 这里的 data 就是本文最初的代码块中声明的 data,在这里会被更新。\n // 这里的 this 就是被拖拽的圆点。this.position 就是圆点当前的位置。\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n // 用更新后的 data,重绘折线图。\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"上面的代码中,使用了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echartsInstance.convertFromPixel","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"convertFromPixel"}]},{"type":"text","value":" 这个 API。它是 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org//api.html#echartsInstance.convertToPixel","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"convertToPixel"}]},{"type":"text","value":" 的逆向过程。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"myChart.convertFromPixel('grid', this.position)"}]},{"type":"text","value":" 表示把当前像素坐标转换成 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#grid","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"grid"}]},{"type":"text","value":" 组件中直角坐标系的 dataItem 值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最后,为了使 dom 尺寸改变时,图中的元素能自适应得变化,加上这些代码:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"window.addEventListener('resize', function() {\n // 对每个拖拽圆点重新计算位置,并用 setOption 更新。\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n position: myChart.convertToPixel('grid', item)\n };\n })\n });\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"添加-tooltip-组件"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B7%BB%E5%8A%A0-tooltip-%E7%BB%84%E4%BB%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"添加 tooltip 组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"到此,拖拽的基本功能就完成了。但是想要更进一步得实时看到拖拽过程中,被拖拽的点的 data 值的变化状况,我们可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#tooltip","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"tooltip"}]},{"type":"text","value":" 组件来实时显示这个值。但是,tooltip 有其默认的“显示”“隐藏”触发规则,在我们拖拽的场景中并不适用,所以我们还要手动定制 tooltip 的“显示”“隐藏”行为。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在上述代码中分别添加如下定义:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n // ...,\n tooltip: {\n // 表示不使用默认的“显示”“隐藏”触发规则。\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br>Y: ' +\n params.data[1].toFixed(2)\n );\n }\n }\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"myChart.setOption({\n graphic: data.map(function(item, dataIndex) {\n return {\n type: 'circle',\n // ...,\n // 在 mouseover 的时候显示,在 mouseout 的时候隐藏。\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex)\n };\n })\n});\n\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\n\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'hideTip'\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这里使用了 "},{"type":"element","tag":"a","props":{"href":"api.html#echartsInstance.dispatchAction"},"children":[{"type":"text","value":"dispatchAction"}]},{"type":"text","value":" 来显示隐藏 tooltip。用到了 "},{"type":"element","tag":"a","props":{"href":"api.html#action.tooltip.showTip"},"children":[{"type":"text","value":"showTip"}]},{"type":"text","value":"、"},{"type":"element","tag":"a","props":{"href":"api.html#action.tooltip.hideTip"},"children":[{"type":"text","value":"hideTip"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"全部代码"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%85%A8%E9%83%A8%E4%BB%A3%E7%A0%81","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"全部代码"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"总结一下,全部的代码如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import echarts from 'echarts';\n\nvar symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n tooltip: {\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br />Y: ' +\n params.data[1].toFixed(2)\n );\n }\n },\n xAxis: { min: -100, max: 80, type: 'value', axisLine: { onZero: false } },\n yAxis: { min: -30, max: 60, type: 'value', axisLine: { onZero: false } },\n series: [\n { id: 'a', type: 'line', smooth: true, symbolSize: symbolSize, data: data }\n ]\n});\nmyChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n type: 'circle',\n position: myChart.convertToPixel('grid', item),\n shape: { r: symbolSize / 2 },\n invisible: true,\n draggable: true,\n ondrag: echarts.util.curry(onPointDragging, dataIndex),\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex),\n z: 100\n };\n })\n});\nwindow.addEventListener('resize', function() {\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return { position: myChart.convertToPixel('grid', item) };\n })\n });\n});\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({ type: 'hideTip' });\n}\nfunction onPointDragging(dataIndex, dx, dy) {\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有了这些基础,就可以定制更多的功能了。可以加 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#dataZoom","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"dataZoom"}]},{"type":"text","value":" 组件,可以制作一个直角坐标系上的绘图板等等。可以发挥想象力。"}]}]},"text":"# 拖拽的实现\n\n本篇通过介绍一个实现拖拽的小例子来介绍如何在 Apache ECharts<sup>TM</sup> 中实现复杂的交互。\n\n<md-example src=\"line-draggable\" height=\"400\"></md-example>\n\n这个例子主要做到了这样一件事,用鼠标可以拖拽曲线的点,从而改变曲线的形状。例子很简单,但是有了这个基础我们还可以做更多的事情,比如在图中进行可视化得编辑。所以我们从这个简单的例子开始。\n\necharts 本身没有提供封装好的“拖拽改变图表”这样比较业务定制的功能。但是这个功能开发者可以通过 API 扩展实现。\n\n## 实现基本的拖拽功能\n\n在这个例子中,基础的图表是一个 [折线图 (series-line)](https://echarts.apache.org/option.html#series-line)。参见如下配置:\n\n```js\nvar symbolSize = 20;\n\n// 这个 data 变量在这里单独声明,在后面也会用到。\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\n\nmyChart.setOption({\n xAxis: {\n min: -100,\n max: 80,\n type: 'value',\n axisLine: { onZero: false }\n },\n yAxis: {\n min: -30,\n max: 60,\n type: 'value',\n axisLine: { onZero: false }\n },\n series: [\n {\n id: 'a',\n type: 'line',\n smooth: true,\n symbolSize: symbolSize, // 为了方便拖拽,把 symbolSize 尺寸设大了。\n data: data\n }\n ]\n});\n```\n\n既然折线中原生的点没有拖拽功能,我们就为它加上拖拽功能:用 [graphic](https://echarts.apache.org/option.html#graphic) 组件,在每个点上面,覆盖一个隐藏的可拖拽的圆点。\n\n```js\nmyChart.setOption({\n // 声明一个 graphic component,里面有若干个 type 为 'circle' 的 graphic elements。\n // 这里使用了 echarts.util.map 这个帮助方法,其行为和 Array.prototype.map 一样,但是兼容 es5 以下的环境。\n // 用 map 方法遍历 data 的每项,为每项生成一个圆点。\n graphic: echarts.util.map(data, function(dataItem, dataIndex) {\n return {\n // 'circle' 表示这个 graphic element 的类型是圆点。\n type: 'circle',\n\n shape: {\n // 圆点的半径。\n r: symbolSize / 2\n },\n // 用 transform 的方式对圆点进行定位。position: [x, y] 表示将圆点平移到 [x, y] 位置。\n // 这里使用了 convertToPixel 这个 API 来得到每个圆点的位置,下面介绍。\n position: myChart.convertToPixel('grid', dataItem),\n\n // 这个属性让圆点不可见(但是不影响他响应鼠标事件)。\n invisible: true,\n // 这个属性让圆点可以被拖拽。\n draggable: true,\n // 把 z 值设得比较大,表示这个圆点在最上方,能覆盖住已有的折线图的圆点。\n z: 100,\n // 此圆点的拖拽的响应事件,在拖拽过程中会不断被触发。下面介绍详情。\n // 这里使用了 echarts.util.curry 这个帮助方法,意思是生成一个与 onPointDragging\n // 功能一样的新的函数,只不过第一个参数永远为此时传入的 dataIndex 的值。\n ondrag: echarts.util.curry(onPointDragging, dataIndex)\n };\n })\n});\n```\n\n上面的代码中,使用 [convertToPixel](api.html#echartsInstance.convertToPixel) 这个 API,进行了从 data 到“像素坐标”的转换,从而得到了每个圆点应该在的位置,从而能绘制这些圆点。`myChart.convertToPixel('grid', dataItem)` 这句话中,第一个参数 `'grid'` 表示 `dataItem` 在 [grid](https://echarts.apache.org/option.html#grid) 这个组件中(即直角坐标系)中进行转换。所谓“像素坐标”,就是以 echarts 容器 dom element 的左上角为零点的以像素为单位的坐标系中的坐标。\n\n注意这件事需要在第一次 setOption 后再进行,也就是说,须在坐标系([grid](https://echarts.apache.org/option.html#grid))初始化后才能调用 `myChart.convertToPixel('grid', dataItem)`。\n\n有了这段代码后,就有了诸个能拖拽的点。接下来要为每个点,加上拖拽响应的事件:\n\n```js\n// 拖拽某个圆点的过程中会不断调用此函数。\n// 此函数中会根据拖拽后的新位置,改变 data 中的值,并用新的 data 值,重绘折线图,从而使折线图同步于被拖拽的隐藏圆点。\nfunction onPointDragging(dataIndex) {\n // 这里的 data 就是本文最初的代码块中声明的 data,在这里会被更新。\n // 这里的 this 就是被拖拽的圆点。this.position 就是圆点当前的位置。\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n // 用更新后的 data,重绘折线图。\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n```\n\n上面的代码中,使用了 [convertFromPixel](https://echarts.apache.org//api.html#echartsInstance.convertFromPixel) 这个 API。它是 [convertToPixel](https://echarts.apache.org//api.html#echartsInstance.convertToPixel) 的逆向过程。`myChart.convertFromPixel('grid', this.position)` 表示把当前像素坐标转换成 [grid](https://echarts.apache.org/option.html#grid) 组件中直角坐标系的 dataItem 值。\n\n最后,为了使 dom 尺寸改变时,图中的元素能自适应得变化,加上这些代码:\n\n```js\nwindow.addEventListener('resize', function() {\n // 对每个拖拽圆点重新计算位置,并用 setOption 更新。\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n position: myChart.convertToPixel('grid', item)\n };\n })\n });\n});\n```\n\n## 添加 tooltip 组件\n\n到此,拖拽的基本功能就完成了。但是想要更进一步得实时看到拖拽过程中,被拖拽的点的 data 值的变化状况,我们可以使用 [tooltip](https://echarts.apache.org/option.html#tooltip) 组件来实时显示这个值。但是,tooltip 有其默认的“显示”“隐藏”触发规则,在我们拖拽的场景中并不适用,所以我们还要手动定制 tooltip 的“显示”“隐藏”行为。\n\n在上述代码中分别添加如下定义:\n\n```js\nmyChart.setOption({\n // ...,\n tooltip: {\n // 表示不使用默认的“显示”“隐藏”触发规则。\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br>Y: ' +\n params.data[1].toFixed(2)\n );\n }\n }\n});\n```\n\n```js\nmyChart.setOption({\n graphic: data.map(function(item, dataIndex) {\n return {\n type: 'circle',\n // ...,\n // 在 mouseover 的时候显示,在 mouseout 的时候隐藏。\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex)\n };\n })\n});\n\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\n\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'hideTip'\n });\n}\n```\n\n这里使用了 [dispatchAction](api.html#echartsInstance.dispatchAction) 来显示隐藏 tooltip。用到了 [showTip](api.html#action.tooltip.showTip)、[hideTip](api.html#action.tooltip.hideTip)。\n\n## 全部代码\n\n总结一下,全部的代码如下:\n\n```js\nimport echarts from 'echarts';\n\nvar symbolSize = 20;\nvar data = [\n [15, 0],\n [-50, 10],\n [-56.5, 20],\n [-46.5, 30],\n [-22.1, 40]\n];\nvar myChart = echarts.init(document.getElementById('main'));\nmyChart.setOption({\n tooltip: {\n triggerOn: 'none',\n formatter: function(params) {\n return (\n 'X: ' +\n params.data[0].toFixed(2) +\n '<br />Y: ' +\n params.data[1].toFixed(2)\n );\n }\n },\n xAxis: { min: -100, max: 80, type: 'value', axisLine: { onZero: false } },\n yAxis: { min: -30, max: 60, type: 'value', axisLine: { onZero: false } },\n series: [\n { id: 'a', type: 'line', smooth: true, symbolSize: symbolSize, data: data }\n ]\n});\nmyChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return {\n type: 'circle',\n position: myChart.convertToPixel('grid', item),\n shape: { r: symbolSize / 2 },\n invisible: true,\n draggable: true,\n ondrag: echarts.util.curry(onPointDragging, dataIndex),\n onmousemove: echarts.util.curry(showTooltip, dataIndex),\n onmouseout: echarts.util.curry(hideTooltip, dataIndex),\n z: 100\n };\n })\n});\nwindow.addEventListener('resize', function() {\n myChart.setOption({\n graphic: echarts.util.map(data, function(item, dataIndex) {\n return { position: myChart.convertToPixel('grid', item) };\n })\n });\n});\nfunction showTooltip(dataIndex) {\n myChart.dispatchAction({\n type: 'showTip',\n seriesIndex: 0,\n dataIndex: dataIndex\n });\n}\nfunction hideTooltip(dataIndex) {\n myChart.dispatchAction({ type: 'hideTip' });\n}\nfunction onPointDragging(dataIndex, dx, dy) {\n data[dataIndex] = myChart.convertFromPixel('grid', this.position);\n myChart.setOption({\n series: [\n {\n id: 'a',\n data: data\n }\n ]\n });\n}\n```\n\n有了这些基础,就可以定制更多的功能了。可以加 [dataZoom](https://echarts.apache.org/option.html#dataZoom) 组件,可以制作一个直角坐标系上的绘图板等等。可以发挥想象力。\n","dir":"/zh/application/interaction","path":"/zh/application/interaction/drag","extension":".md","createdAt":"2021-07-19T11:39:59.256Z","updatedAt":"2021-07-21T10:08:40.769Z","meta":{"version":0,"revision":0,"created":1627897109319},"$loki":79},{"slug":"gauge","toc":[{"id":"仪表盘的使用建议","depth":2,"text":"仪表盘的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"仪表盘"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E4%BB%AA%E8%A1%A8%E7%9B%98","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"仪表盘"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"仪表盘也被称为拨号图表或速度表图。其显示类似于拨号/速度计上的读数的数据,是一种拟物化的展示形式。仪表盘的颜色可以用来划分指示值的类别,使用刻度标示数据,指针指示维度,指针角度表示数值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xH1vxib94f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"仪表盘的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E4%BB%AA%E8%A1%A8%E7%9B%98%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"仪表盘的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、仪表盘非常适合在量化的情况下显示单一的价值和衡量标准,不适合用于比较不同变量或者趋势的分析。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、仪表盘上可以同时展示不同纬度的数据,但是为了避免指针的重叠影响数据的查看,并且基于常识,仪表盘的指针数量建议最多不要超过 3 根。如果确实有多个数据需要展示,建议可使用多个仪表盘。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=gauge-car"},"children":[{"type":"text","value":"\n"}]}]},"text":"# 仪表盘\n\n仪表盘也被称为拨号图表或速度表图。其显示类似于拨号/速度计上的读数的数据,是一种拟物化的展示形式。仪表盘的颜色可以用来划分指示值的类别,使用刻度标示数据,指针指示维度,指针角度表示数值。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xH1vxib94f\">\n</iframe>\n\n## 仪表盘的使用建议\n\n1、仪表盘非常适合在量化的情况下显示单一的价值和衡量标准,不适合用于比较不同变量或者趋势的分析。\n\n2、仪表盘上可以同时展示不同纬度的数据,但是为了避免指针的重叠影响数据的查看,并且基于常识,仪表盘的指针数量建议最多不要超过 3 根。如果确实有多个数据需要展示,建议可使用多个仪表盘。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=gauge-car\">\n</iframe>\n","dir":"/zh/best-practice/specification","path":"/zh/best-practice/specification/gauge","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-07-29T06:28:53.624Z","meta":{"version":0,"revision":0,"created":1627897109323},"$loki":80},{"slug":"funnel","toc":[{"id":"漏斗图的使用建议","depth":2,"text":"漏斗图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"漏斗图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%BC%8F%E6%96%97%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"漏斗图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"漏斗图又叫倒三角图,漏斗图将数据呈现为几个阶段,每个阶段的数据都是整体的一部分,从一个阶段到另一个阶段数据自上而下逐渐下降,所有阶段的占比总计 100%。与饼图一样,漏斗图呈现的也不是具体的数据,而是该数据相对于总数的占比、漏斗图不需要使用任何数据轴。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"漏斗图多用于显示简化的数据,可以用来单向分析业务各环节丢失或增加变化,也可用来直接表示某个环节与上一环节的差异。漏斗图对于确定组织的销售过程中可能存在的问题和瓶颈也很有用。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrJIQEN5NM"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"漏斗图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%BC%8F%E6%96%97%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"漏斗图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、以电商网站数据为代表,漏斗图能直观地展现从最初展现网站到最终下订单购买这整个流程中的转化状况。它不仅能展示用户从看到网站到实现购买的最终转化率,还可以展示每个步骤的转化率,能够直观地展示和说明问题所在,进而能针对性地通过各阶段的转化分析去改善设计。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如下图,「展现」「点击」「访问」三个环节基本并没有太大的流失,但是从「访问」到「咨询」环节数据明显减少,所以就可以重点分析为什么咨询量明显减少,例如是不是咨询的入口不够明显造成的。\b"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJIPHN9Nf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、可以对两个基于统一事情前后的两份数据使用叠加两个漏斗图进行对比,例如下图通过预期值和实现值的对比,可以分析每一项实现情况和预期指标的偏差。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrydEwN94f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、还可以用左右对比的漏斗图同时分析两个项目的转化情况。如下图可见项目 B 从「访问」到「咨询」环节的流失率明显大于项目 A。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrJfrjEc4z&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、漏斗图不是表示各个分类的占比情况,而是展示数据变化的一个逻辑流程,如果数据是无逻辑顺序的占比比较,建议使用饼图更合适。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"5、可以根据数据选择使用对比色或同一种颜色的色调渐变,从最暗到最浅来依照漏斗的尺寸排列。切记,不要添加许多图层和颜色造成漏斗图难以阅读。"}]}]},"text":"# 漏斗图\n\n漏斗图又叫倒三角图,漏斗图将数据呈现为几个阶段,每个阶段的数据都是整体的一部分,从一个阶段到另一个阶段数据自上而下逐渐下降,所有阶段的占比总计 100%。与饼图一样,漏斗图呈现的也不是具体的数据,而是该数据相对于总数的占比、漏斗图不需要使用任何数据轴。\n\n漏斗图多用于显示简化的数据,可以用来单向分析业务各环节丢失或增加变化,也可用来直接表示某个环节与上一环节的差异。漏斗图对于确定组织的销售过程中可能存在的问题和瓶颈也很有用。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrJIQEN5NM\">\n</iframe>\n\n## 漏斗图的使用建议\n\n1、以电商网站数据为代表,漏斗图能直观地展现从最初展现网站到最终下订单购买这整个流程中的转化状况。它不仅能展示用户从看到网站到实现购买的最终转化率,还可以展示每个步骤的转化率,能够直观地展示和说明问题所在,进而能针对性地通过各阶段的转化分析去改善设计。\n\n如下图,「展现」「点击」「访问」三个环节基本并没有太大的流失,但是从「访问」到「咨询」环节数据明显减少,所以就可以重点分析为什么咨询量明显减少,例如是不是咨询的入口不够明显造成的。\b\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJIPHN9Nf\">\n</iframe>\n\n2、可以对两个基于统一事情前后的两份数据使用叠加两个漏斗图进行对比,例如下图通过预期值和实现值的对比,可以分析每一项实现情况和预期指标的偏差。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrydEwN94f\">\n</iframe>\n\n3、还可以用左右对比的漏斗图同时分析两个项目的转化情况。如下图可见项目 B 从「访问」到「咨询」环节的流失率明显大于项目 A。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrJfrjEc4z&v=1\">\n</iframe>\n\n4、漏斗图不是表示各个分类的占比情况,而是展示数据变化的一个逻辑流程,如果数据是无逻辑顺序的占比比较,建议使用饼图更合适。\n\n5、可以根据数据选择使用对比色或同一种颜色的色调渐变,从最暗到最浅来依照漏斗的尺寸排列。切记,不要添加许多图层和颜色造成漏斗图难以阅读。\n","dir":"/zh/best-practice/specification","path":"/zh/best-practice/specification/funnel","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-06-04T12:26:37.924Z","meta":{"version":0,"revision":0,"created":1627897109324},"$loki":81},{"slug":"v5-upgrade-guide","toc":[{"id":"非兼容性改变","depth":2,"text":"非兼容性改变"},{"id":"echarts-的相关扩展","depth":2,"text":"ECharts 的相关扩展"},{"id":"不再推荐使用的-api","depth":2,"text":"不再推荐使用的 API"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"apache-echarts-5-升级指南"},"children":[{"type":"element","tag":"a","props":{"href":"#apache-echarts-5-%E5%8D%87%E7%BA%A7%E6%8C%87%E5%8D%97","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Apache ECharts 5 升级指南"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"本指南面向那些希望将 echarts 4.x(以下简称 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":")升级到 echarts 5.x(以下简称 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":")的用户。大家可以在 "},{"type":"element","tag":"a","props":{"href":"zh/basics/release-note/v5-feature"},"children":[{"type":"text","value":"ECharts 5 新特性"}]},{"type":"text","value":" 中了解这次"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":"带来了哪些值得升级的新特性。在绝大多数情况下,开发者用不着为这个升级做什么额外的事,因为 echarts 一直尽可能地保持 API 的稳定和向后兼容。但是,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 仍然带来了一些非兼容改动,需要特别关注。此外,在一些情况下,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 提供了更好的 API 用来取代之前的 API,这些被取代的 API 将不再被推荐使用(当然,我们尽量兼容了这些改动)。我们会在这篇文档里尽量详尽得解释这些改动。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"非兼容性改变"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%9D%9E%E5%85%BC%E5%AE%B9%E6%80%A7%E6%94%B9%E5%8F%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"非兼容性改变"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"默认主题(theme)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%BB%98%E8%AE%A4%E4%B8%BB%E9%A2%98%EF%BC%88theme%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"默认主题(theme)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"首先是默认主题的改动,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 在配色等主题设计上做了很多的优化来达到更好的视觉效果。如果大家依旧想保留旧版本的颜色,可以手动声明颜色,如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"chart.setOption({\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n // ...\n});\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"或者,做一个简单的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" 主题:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"var themeEC4 = {\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n};\nvar chart = echarts.init(dom, themeEC4);\nchart.setOption(/* ... */);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"引用-echarts"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%BC%95%E7%94%A8-echarts","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"引用 ECharts"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"去除-default-exports-的支持"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8E%BB%E9%99%A4-default-exports-%E7%9A%84%E6%94%AF%E6%8C%81","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"去除 default exports 的支持"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果使用者在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" 中这样引用了 echarts:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import echarts from 'echarts';\n// 或者按需引入\nimport echarts from 'echarts/lib/echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这两种方式,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 中不再支持了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用者需要如下更改代码解决这个问题:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts';\n// 按需引入\nimport * as echarts from 'echarts/lib/echarts';\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"按需引入"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8C%89%E9%9C%80%E5%BC%95%E5%85%A5","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"按需引入"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 5.0.1 中,我们引入了新的"},{"type":"element","tag":"a","props":{"href":"zh/basics/import"},"children":[{"type":"text","value":"按需引入接口"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import * as echarts from 'echarts/core';\nimport { BarChart } from 'echarts/charts';\nimport { GridComponent } from 'echarts/components';\n// 注意,新的接口中默认不再包含 Canvas 渲染器,需要显示引入,如果需要使用 SVG 渲染模式则使用 SVGRenderer\nimport { CanvasRenderer } from 'echarts/renderers';\n\necharts.use([BarChart, GridComponent, CanvasRenderer]);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果之前是使用"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"import 'echarts/lib/chart/bar'"}]},{"type":"text","value":"引入,新的接口对应的是"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"import {BarChart} from 'echarts/charts'"}]},{"type":"text","value":";"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"为了方便大家了解自己的配置项需要引入哪些模块,我们新的示例编辑页面添加了生成按需引入代码的功能,大家可以在示例编辑页的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"完整代码"}]},{"type":"text","value":"标签下选中按需引入后查看需要引入的模块以及相关代码。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在大部分情况下,我们都推荐大家尽可能用这套新的按需引入接口,它可以最大程度的利用打包工具 tree-shaking 的能力,并且可以有效解决命名空间冲突的问题而且防止了内部结构的暴露。如果你依旧在使用 CommonJS 的模块写法,之前的方式我们也依旧是支持的:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"const echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/component/grid');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其次,因为我们的源代码已使用 TypeScript 重写,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 将不再支持从 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/src"}]},{"type":"text","value":" 引用文件,需要改为从"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/lib"}]},{"type":"text","value":"引入。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"依赖调整"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%BE%9D%E8%B5%96%E8%B0%83%E6%95%B4","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"依赖调整"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意:该部分只针对为了保证较小的打包体积而是用按需引入接口的开发者,如果是全量引入的不需要关注"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"为了保证 tree-shaking 后的体积足够小,我们去除了一些之前会默认被打包进来的依赖。比如前面提到的在使用新的按需引入接口的时候,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"CanvasRenderer"}]},{"type":"text","value":"将不再被默认引入,这样可以保证只需要使用 SVG 渲染模式的时候不会把不需要的 Canvas 渲染代码也一起打包进来,除此之外,还有下面这些依赖的改动:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在使用折线图,柱状图中不再默认引入直角坐标系组件,因此之前使用下面的引入方式"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"const echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/chart/line');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"需要再单独引入"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"grid"}]},{"type":"text","value":"组件"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"require('echarts/lib/component/grid');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"参考 issue:"},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/14080","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"#14080"}]},{"type":"text","value":", "},{"type":"element","tag":"a","props":{"href":"https://github.com/apache/echarts/issues/13764","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"#13764"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"默认不再引入"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"aria"}]},{"type":"text","value":"组件,如果需要的话可以手动引入。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"import { AriaComponent } from 'echarts/components';\necharts.use(AriaComponent);\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"或者:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"js","line-highlights":"","file-name":""},"children":[{"type":"text","value":"require('echarts/lib/component/aria');\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"去除内置的-geojson"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8E%BB%E9%99%A4%E5%86%85%E7%BD%AE%E7%9A%84-geojson","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"去除内置的 geoJSON"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 移除了内置的 geoJSON(原先在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts/map"}]},{"type":"text","value":" 文件夹下)。这些 geoJSON 文件本就一直来源于第三方。如果使用者仍然需要他们,可以去从老版本中得到,或者自己寻找更合适的数据然后通过 registerMap 接口注册到 ECharts 中。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"浏览器兼容性"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%B5%8F%E8%A7%88%E5%99%A8%E5%85%BC%E5%AE%B9%E6%80%A7","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"浏览器兼容性"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 不再支持 IE8 浏览器。我们不再继续维护和升级之前的 "},{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/zrender/tree/4.3.2/src/vml","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"VML 渲染器"}]},{"type":"text","value":" 来着实现 IE8 的兼容。如果使用者确实有很强的需求,那么欢迎提 pull request 来升级 VML 渲染器,或者单独维护一个第三方 VML 渲染器,我们从 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5.0.1"}]},{"type":"text","value":" 开始支持注册独立的渲染器了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h4","props":{"id":"echarts-配置项调整"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-%E9%85%8D%E7%BD%AE%E9%A1%B9%E8%B0%83%E6%95%B4","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts 配置项调整"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"视觉样式设置的优先级改变"},"children":[{"type":"element","tag":"a","props":{"href":"#%E8%A7%86%E8%A7%89%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE%E7%9A%84%E4%BC%98%E5%85%88%E7%BA%A7%E6%94%B9%E5%8F%98","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"视觉样式设置的优先级改变"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 对调了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" 的视觉样式优先级。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"具体来说,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" 中,"},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":" 中生成的视觉样式(如,颜色、图形类型、图形尺寸等)的优先级,比开发者在 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" 中设置的样式的优先级高,也就是说如果他们同时设置的话,前者会生效而后者不会生效。这带来了些麻烦:假如使用者在使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap 组件"}]},{"type":"text","value":" 时,又想针对某个数据项对应的图形,设置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" 样式,则做不到。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 中于是提高了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" 的优先级,使他们能生效。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在绝大多处情况下,这个变化并不会带来什么影响。但是为保险起见,使用者在升级 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" 到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 时,还是可以检查下,是否有同时使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#visualMap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"visualMap"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" | "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" 的情况。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h5","props":{"id":"富文本的-padding"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%AF%8C%E6%96%87%E6%9C%AC%E7%9A%84-padding","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"富文本的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 调整了 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.label.rich.%3Cstyle_name%3E.padding","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"rich.?.padding"}]},{"type":"text","value":" 的格式使其更符合 CSS 的规范。"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v4"}]},{"type":"text","value":" 里,例如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich.?.padding: [11, 22, 33, 44]"}]},{"type":"text","value":" 表示 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-top"}]},{"type":"text","value":" 是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"33"}]},{"type":"text","value":" 且 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-bottom"}]},{"type":"text","value":" 是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"11"}]},{"type":"text","value":"。在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 中调整了上下的位置,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"rich.?.padding: [11, 22, 33, 44]"}]},{"type":"text","value":" 表示 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-top"}]},{"type":"text","value":" 是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"11"}]},{"type":"text","value":" 且 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"padding-bottom"}]},{"type":"text","value":" 是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"33"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果使用者有在使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.label.rich.%3Cstyle_name%3E.padding","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"rich.?.padding"}]},{"type":"text","value":",需要注意调整下这个顺序。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"echarts-的相关扩展"},"children":[{"type":"element","tag":"a","props":{"href":"#echarts-%E7%9A%84%E7%9B%B8%E5%85%B3%E6%89%A9%E5%B1%95","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"ECharts 的相关扩展"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果想要升级到 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" ,下面这些扩展需要升级到最新的版本实现兼容。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-gl","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-gl"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-wordcloud","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-wordcloud"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/ecomfe/echarts-liquidfill","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"echarts-liquidfill"}]}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"不再推荐使用的-api"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%8D%E5%86%8D%E6%8E%A8%E8%8D%90%E4%BD%BF%E7%94%A8%E7%9A%84-api","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"不再推荐使用的 API"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"一些 API(包括接口调用,事件监听和配置项)在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"v5"}]},{"type":"text","value":" 中不再推荐使用。当然,使用者仍然可以用他们,只是会在 dev 模式下,在 console 中打印一些 warning,并不会影响功能。但是从长远维护考虑,我们还是推荐升级成新的 API。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是不再推荐使用的 API 以及推荐的新 API:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"图形元素 transform 相关的属性被改变了:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"变更点:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position: [number, number]"}]},{"type":"text","value":" 改为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"x: number"}]},{"type":"text","value":" / "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"y: number"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scale: [number, number]"}]},{"type":"text","value":" 改为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scaleX: number"}]},{"type":"text","value":" / "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scaleY: number"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"origin: [number, number]"}]},{"type":"text","value":" 改为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"originX: number"}]},{"type":"text","value":" / "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"originY: number"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"position"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"scale"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"origin"}]},{"type":"text","value":" 仍然支持,但已不推荐使用。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"它影响到这些地方:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graphic"}]},{"type":"text","value":"组件中:每个元素的声明。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":" 中:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":" 返回的每个元素的声明。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"直接使用 zrender 图形元素时。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Text 相关的属性被改变:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"变更点:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"图形元素附带的文本的声明方式被改变:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"除了 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"Text"}]},{"type":"text","value":" 元素之外,其他元素中的属性 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style.text"}]},{"type":"text","value":" 都不推荐使用了。取而代之的是新属性 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textContent"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textConfig"}]},{"type":"text","value":",他们能带来更丰富的功能。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"其中,下面左边部分的这些属性已不推荐使用或废弃。请使用下面的右边部分的属性:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textPosition => textConfig.position"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textOffset => textConfig.offset"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textRotation => textConfig.rotation"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textDistance => textConfig.distance"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下面左边部分的属性在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"style.rich.?"}]},{"type":"text","value":" 中已不推荐使用或废弃。请使用下面右边的属性:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textFill => fill"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textStroke => stroke"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textFont => font"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textStrokeWidth => lineWidth"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textAlign => align"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textVerticalAlign => verticalAlign"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textLineHeight =>"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textWidth => width"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textHeight => hight"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBackgroundColor => backgroundColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textPadding => padding"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderColor => borderColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderWidth => borderWidth"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBorderRadius => borderRadius"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowColor => shadowColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowBlur => shadowBlur"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowOffsetX => shadowOffsetX"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textBoxShadowOffsetY => shadowOffsetY"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"注:这些属性并没有变化:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowColor"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowBlur"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowOffsetX"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"textShadowOffsetY"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"它影响到这些地方:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graphic"}]},{"type":"text","value":" 组件中:每个元素的声明。(原来的写法仍兼容,但在一些很复杂的情况下,可能效果不完全一致。)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在自定义系列("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":")中:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":" 返回中的每个元素的声明。(原来的写法仍兼容,但在一些很复杂的情况下,可能效果不完全一致。)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"直接使用 zrender API 创建图形元素。(不再兼容,原写法被废弃。)"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"图表实例上的 API:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"chart.one(...)"}]},{"type":"text","value":" 已不推荐使用。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":"。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"属性 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"textBorderColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":" 中,值 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"auto"}]},{"type":"text","value":" 已不推荐使用,而推荐使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'inherit'"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"hoverAnimation"}]},{"type":"text","value":":\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverAnimation"}]},{"type":"text","value":" 已不推荐使用,使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scale"}]},{"type":"text","value":" 代替之。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"折线图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line series"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clipOverflow"}]},{"type":"text","value":" 已不推荐使用,使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clip"}]},{"type":"text","value":" 代替之。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"自定义系列("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"custom series"}]},{"type":"text","value":")。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"renderItem"}]},{"type":"text","value":" 中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.style(...)"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.styleEmphasis(...)"}]},{"type":"text","value":" 已不推荐使用。因为这两个接口其实并不真正必要,也很难保证向后兼容。用户可以通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"api.visual(...)"}]},{"type":"text","value":" 获取系统自动分配的视觉信息。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"旭日图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburst"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"动作类型 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"highlight"}]},{"type":"text","value":" 已被弃用,请使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburstHighlight"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"动作类型 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"downplay"}]},{"type":"text","value":" 已被弃用,请使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"sunburstUnhighlight"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.downplay"}]},{"type":"text","value":" 已被弃用,请使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.blur"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.highlightPolicy"}]},{"type":"text","value":" 已不适用,请使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.focus"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"饼图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pie"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下面左边部分的 action 名已经不推荐使用。请使用右边的 action 名。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieToggleSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"toggleSelect"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieUnSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselect"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下面左边部分的事件名已经不推荐使用。请使用右边的事件名。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieselectchanged"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selected"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"pieunselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselected"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.margin"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.edgeDistance"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockWise"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockwise"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverOffset"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scaleSize"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"地图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"map series"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下文左边部分的 action 名已经不推荐使用。请使用右边的 action 名。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapToggleSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"toggleSelect"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"select"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapUnSelect"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselect"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"下面左边部分的事件名已经不推荐使用。请使用右边的事件名。\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapselectchanged"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selectchanged"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"selected"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"mapunselected"}]},{"type":"text","value":" => "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"unselected"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.mapType"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.map"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.mapLocation"}]},{"type":"text","value":" 已经不推荐使用。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"关系图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"graph series"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.focusNodeAdjacency"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis: { focus: 'adjacency'}"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"仪表盘("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"gauge series"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockWise"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.clockwise"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.hoverOffset"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.scaleSize"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataZoom"}]},{"type":"text","value":" 组件:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"dataZoom.handleIcon"}]},{"type":"text","value":" 如果使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVGPath"}]},{"type":"text","value":",需要前缀 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"path://"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"雷达图("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar"}]},{"type":"text","value":"):\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.name"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.axisName"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"选项 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.nameGap"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"radar.axisNameGap"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Parse and format:\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.format.formatTime"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.format"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.number.parseDate"}]},{"type":"text","value":" 已经不推荐使用。使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.time.parse"}]},{"type":"text","value":" 代替。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"echarts.format.getTextRect"}]},{"type":"text","value":" 已经不推荐使用。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Apache ECharts 5 升级指南\n\n本指南面向那些希望将 echarts 4.x(以下简称 `v4`)升级到 echarts 5.x(以下简称 `v5`)的用户。大家可以在 [ECharts 5 新特性](zh/basics/release-note/v5-feature) 中了解这次`v5`带来了哪些值得升级的新特性。在绝大多数情况下,开发者用不着为这个升级做什么额外的事,因为 echarts 一直尽可能地保持 API 的稳定和向后兼容。但是,`v5` 仍然带来了一些非兼容改动,需要特别关注。此外,在一些情况下,`v5` 提供了更好的 API 用来取代之前的 API,这些被取代的 API 将不再被推荐使用(当然,我们尽量兼容了这些改动)。我们会在这篇文档里尽量详尽得解释这些改动。\n\n## 非兼容性改变\n\n#### 默认主题(theme)\n\n首先是默认主题的改动,`v5` 在配色等主题设计上做了很多的优化来达到更好的视觉效果。如果大家依旧想保留旧版本的颜色,可以手动声明颜色,如下:\n\n```js\nchart.setOption({\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n // ...\n});\n```\n\n或者,做一个简单的 `v4` 主题:\n\n```js\nvar themeEC4 = {\n color: [\n '#c23531',\n '#2f4554',\n '#61a0a8',\n '#d48265',\n '#91c7ae',\n '#749f83',\n '#ca8622',\n '#bda29a',\n '#6e7074',\n '#546570',\n '#c4ccd3'\n ]\n};\nvar chart = echarts.init(dom, themeEC4);\nchart.setOption(/* ... */);\n```\n\n#### 引用 ECharts\n\n##### 去除 default exports 的支持\n\n如果使用者在 `v4` 中这样引用了 echarts:\n\n```js\nimport echarts from 'echarts';\n// 或者按需引入\nimport echarts from 'echarts/lib/echarts';\n```\n\n这两种方式,`v5` 中不再支持了。\n\n使用者需要如下更改代码解决这个问题:\n\n```js\nimport * as echarts from 'echarts';\n// 按需引入\nimport * as echarts from 'echarts/lib/echarts';\n```\n\n##### 按需引入\n\n在 5.0.1 中,我们引入了新的[按需引入接口](zh/basics/import)\n\n```js\nimport * as echarts from 'echarts/core';\nimport { BarChart } from 'echarts/charts';\nimport { GridComponent } from 'echarts/components';\n// 注意,新的接口中默认不再包含 Canvas 渲染器,需要显示引入,如果需要使用 SVG 渲染模式则使用 SVGRenderer\nimport { CanvasRenderer } from 'echarts/renderers';\n\necharts.use([BarChart, GridComponent, CanvasRenderer]);\n```\n\n如果之前是使用`import 'echarts/lib/chart/bar'`引入,新的接口对应的是`import {BarChart} from 'echarts/charts'`;\n\n为了方便大家了解自己的配置项需要引入哪些模块,我们新的示例编辑页面添加了生成按需引入代码的功能,大家可以在示例编辑页的`完整代码`标签下选中按需引入后查看需要引入的模块以及相关代码。\n\n在大部分情况下,我们都推荐大家尽可能用这套新的按需引入接口,它可以最大程度的利用打包工具 tree-shaking 的能力,并且可以有效解决命名空间冲突的问题而且防止了内部结构的暴露。如果你依旧在使用 CommonJS 的模块写法,之前的方式我们也依旧是支持的:\n\n```js\nconst echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/component/grid');\n```\n\n其次,因为我们的源代码已使用 TypeScript 重写,`v5` 将不再支持从 `echarts/src` 引用文件,需要改为从`echarts/lib`引入。\n\n##### 依赖调整\n\n> 注意:该部分只针对为了保证较小的打包体积而是用按需引入接口的开发者,如果是全量引入的不需要关注\n\n为了保证 tree-shaking 后的体积足够小,我们去除了一些之前会默认被打包进来的依赖。比如前面提到的在使用新的按需引入接口的时候,`CanvasRenderer`将不再被默认引入,这样可以保证只需要使用 SVG 渲染模式的时候不会把不需要的 Canvas 渲染代码也一起打包进来,除此之外,还有下面这些依赖的改动:\n\n- 在使用折线图,柱状图中不再默认引入直角坐标系组件,因此之前使用下面的引入方式\n\n```js\nconst echarts = require('echarts/lib/echarts');\nrequire('echarts/lib/chart/bar');\nrequire('echarts/lib/chart/line');\n```\n\n需要再单独引入`grid`组件\n\n```js\nrequire('echarts/lib/component/grid');\n```\n\n参考 issue:[#14080](https://github.com/apache/echarts/issues/14080), [#13764](https://github.com/apache/echarts/issues/13764)\n\n- 默认不再引入`aria`组件,如果需要的话可以手动引入。\n\n```js\nimport { AriaComponent } from 'echarts/components';\necharts.use(AriaComponent);\n```\n\n或者:\n\n```js\nrequire('echarts/lib/component/aria');\n```\n\n#### 去除内置的 geoJSON\n\n`v5` 移除了内置的 geoJSON(原先在 `echarts/map` 文件夹下)。这些 geoJSON 文件本就一直来源于第三方。如果使用者仍然需要他们,可以去从老版本中得到,或者自己寻找更合适的数据然后通过 registerMap 接口注册到 ECharts 中。\n\n#### 浏览器兼容性\n\n`v5` 不再支持 IE8 浏览器。我们不再继续维护和升级之前的 [VML 渲染器](https://github.com/ecomfe/zrender/tree/4.3.2/src/vml) 来着实现 IE8 的兼容。如果使用者确实有很强的需求,那么欢迎提 pull request 来升级 VML 渲染器,或者单独维护一个第三方 VML 渲染器,我们从 `v5.0.1` 开始支持注册独立的渲染器了。\n\n#### ECharts 配置项调整\n\n##### 视觉样式设置的优先级改变\n\n`v5` 对调了 [visualMap 组件](https://echarts.apache.org/option.html#visualMap) 和 [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) 的视觉样式优先级。\n\n具体来说,`v4` 中,[visualMap 组件](https://echarts.apache.org/option.html#visualMap) 中生成的视觉样式(如,颜色、图形类型、图形尺寸等)的优先级,比开发者在 [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) 中设置的样式的优先级高,也就是说如果他们同时设置的话,前者会生效而后者不会生效。这带来了些麻烦:假如使用者在使用 [visualMap 组件](https://echarts.apache.org/option.html#visualMap) 时,又想针对某个数据项对应的图形,设置 [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) 样式,则做不到。`v5` 中于是提高了 [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) 的优先级,使他们能生效。\n\n在绝大多处情况下,这个变化并不会带来什么影响。但是为保险起见,使用者在升级 `v4` 到 `v5` 时,还是可以检查下,是否有同时使用 [visualMap](https://echarts.apache.org/option.html#visualMap) 和 [itemStyle](https://echarts.apache.org/option.html#series-scatter.itemStyle) | [lineStyle](https://echarts.apache.org/option.html#series-scatter.lineStyle) | [areaStyle](https://echarts.apache.org/option.html#series-scatter.areaStyle) 的情况。\n\n##### 富文本的 `padding`\n\n`v5` 调整了 [rich.?.padding](https://echarts.apache.org/option.html#series-scatter.label.rich.<style_name>.padding) 的格式使其更符合 CSS 的规范。`v4` 里,例如 `rich.?.padding: [11, 22, 33, 44]` 表示 `padding-top` 是 `33` 且 `padding-bottom` 是 `11`。在 `v5` 中调整了上下的位置,`rich.?.padding: [11, 22, 33, 44]` 表示 `padding-top` 是 `11` 且 `padding-bottom` 是 `33`。\n\n如果使用者有在使用 [rich.?.padding](https://echarts.apache.org/option.html#series-scatter.label.rich.<style_name>.padding),需要注意调整下这个顺序。\n\n## ECharts 的相关扩展\n\n如果想要升级到 `v5` ,下面这些扩展需要升级到最新的版本实现兼容。\n\n- [echarts-gl](https://github.com/ecomfe/echarts-gl)\n- [echarts-wordcloud](https://github.com/ecomfe/echarts-wordcloud)\n- [echarts-liquidfill](https://github.com/ecomfe/echarts-liquidfill)\n\n## 不再推荐使用的 API\n\n一些 API(包括接口调用,事件监听和配置项)在 `v5` 中不再推荐使用。当然,使用者仍然可以用他们,只是会在 dev 模式下,在 console 中打印一些 warning,并不会影响功能。但是从长远维护考虑,我们还是推荐升级成新的 API。\n\n下面是不再推荐使用的 API 以及推荐的新 API:\n\n- 图形元素 transform 相关的属性被改变了:\n - 变更点:\n - `position: [number, number]` 改为 `x: number` / `y: number`。\n - `scale: [number, number]` 改为 `scaleX: number` / `scaleY: number`。\n - `origin: [number, number]` 改为 `originX: number` / `originY: number`。\n - `position`、`scale` 和 `origin` 仍然支持,但已不推荐使用。\n - 它影响到这些地方:\n - 在`graphic`组件中:每个元素的声明。\n - 在 `custom series` 中:`renderItem` 返回的每个元素的声明。\n - 直接使用 zrender 图形元素时。\n- Text 相关的属性被改变:\n - 变更点:\n - 图形元素附带的文本的声明方式被改变:\n - 除了 `Text` 元素之外,其他元素中的属性 `style.text` 都不推荐使用了。取而代之的是新属性 `textContent` 和 `textConfig`,他们能带来更丰富的功能。\n - 其中,下面左边部分的这些属性已不推荐使用或废弃。请使用下面的右边部分的属性:\n - textPosition => textConfig.position\n - textOffset => textConfig.offset\n - textRotation => textConfig.rotation\n - textDistance => textConfig.distance\n - 下面左边部分的属性在 `style` 和 `style.rich.?` 中已不推荐使用或废弃。请使用下面右边的属性:\n - textFill => fill\n - textStroke => stroke\n - textFont => font\n - textStrokeWidth => lineWidth\n - textAlign => align\n - textVerticalAlign => verticalAlign\n - textLineHeight =>\n - textWidth => width\n - textHeight => hight\n - textBackgroundColor => backgroundColor\n - textPadding => padding\n - textBorderColor => borderColor\n - textBorderWidth => borderWidth\n - textBorderRadius => borderRadius\n - textBoxShadowColor => shadowColor\n - textBoxShadowBlur => shadowBlur\n - textBoxShadowOffsetX => shadowOffsetX\n - textBoxShadowOffsetY => shadowOffsetY\n - 注:这些属性并没有变化:\n - textShadowColor\n - textShadowBlur\n - textShadowOffsetX\n - textShadowOffsetY\n - 它影响到这些地方:\n - 在 `graphic` 组件中:每个元素的声明。(原来的写法仍兼容,但在一些很复杂的情况下,可能效果不完全一致。)\n - 在自定义系列(`custom series`)中:`renderItem` 返回中的每个元素的声明。(原来的写法仍兼容,但在一些很复杂的情况下,可能效果不完全一致。)\n - 直接使用 zrender API 创建图形元素。(不再兼容,原写法被废弃。)\n- 图表实例上的 API:\n - `chart.one(...)` 已不推荐使用。\n- `label`。\n - 属性 `color`、`textBorderColor`、`backgroundColor`、`borderColor` 中,值 `auto` 已不推荐使用,而推荐使用 `'inherit'` 代替。\n- `hoverAnimation`:\n - 选项 `series.hoverAnimation` 已不推荐使用,使用 `series.emphasis.scale` 代替之。\n- 折线图(`line series`):\n - 选项 `series.clipOverflow` 已不推荐使用,使用 `series.clip` 代替之。\n- 自定义系列(`custom series`)。\n - 在 `renderItem` 中,`api.style(...)` 和 `api.styleEmphasis(...)` 已不推荐使用。因为这两个接口其实并不真正必要,也很难保证向后兼容。用户可以通过 `api.visual(...)` 获取系统自动分配的视觉信息。\n- 旭日图(`sunburst`):\n - 动作类型 `highlight` 已被弃用,请使用 `sunburstHighlight` 代替。\n - 动作类型 `downplay` 已被弃用,请使用 `sunburstUnhighlight` 代替。\n - 选项 `series.downplay` 已被弃用,请使用 `series.blur` 代替。\n - 选项 `series.highlightPolicy` 已不适用,请使用 `series.emphasis.focus` 代替。\n- 饼图(`pie`):\n - 下面左边部分的 action 名已经不推荐使用。请使用右边的 action 名。\n - `pieToggleSelect` => `toggleSelect`。\n - `pieSelect` => `select`。\n - `pieUnSelect` => `unselect`。\n - 下面左边部分的事件名已经不推荐使用。请使用右边的事件名。\n - `pieselectchanged` => `selectchanged`。\n - `pieselected` => `selected`。\n - `pieunselected` => `unselected`。\n - 选项 `series.label.margin` 已经不推荐使用。使用 `series.label.edgeDistance` 代替。\n - 选项 `series.clockWise` 已经不推荐使用。使用 `series.clockwise` 代替。\n - 选项 `series.hoverOffset` 已经不推荐使用。使用 `series.emphasis.scaleSize` 代替。\n- 地图(`map series`):\n - 下文左边部分的 action 名已经不推荐使用。请使用右边的 action 名。\n - `mapToggleSelect` => `toggleSelect`。\n - `mapSelect` => `select`。\n - `mapUnSelect` => `unselect`。\n - 下面左边部分的事件名已经不推荐使用。请使用右边的事件名。\n - `mapselectchanged` => `selectchanged`。\n - `mapselected` => `selected`。\n - `mapunselected` => `unselected`。\n - 选项 `series.mapType` 已经不推荐使用。使用 `series.map` 代替。\n - 选项 `series.mapLocation` 已经不推荐使用。\n- 关系图(`graph series`):\n - 选项 `series.focusNodeAdjacency` 已经不推荐使用。使用 `series.emphasis: { focus: 'adjacency'}` 代替。\n- 仪表盘(`gauge series`):\n - 选项 `series.clockWise` 已经不推荐使用。使用 `series.clockwise` 代替。\n - 选项 `series.hoverOffset` 已经不推荐使用。使用 `series.emphasis.scaleSize` 代替。\n- `dataZoom` 组件:\n - 选项 `dataZoom.handleIcon` 如果使用 `SVGPath`,需要前缀 `path://`。\n- 雷达图(`radar`):\n - 选项 `radar.name` 已经不推荐使用。使用 `radar.axisName` 代替。\n - 选项 `radar.nameGap` 已经不推荐使用。使用 `radar.axisNameGap` 代替。\n- Parse and format:\n - `echarts.format.formatTime` 已经不推荐使用。使用 `echarts.time.format` 代替。\n - `echarts.number.parseDate` 已经不推荐使用。使用 `echarts.time.parse` 代替。\n - `echarts.format.getTextRect` 已经不推荐使用。\n","dir":"/zh/basics/release-note","path":"/zh/basics/release-note/v5-upgrade-guide","extension":".md","createdAt":"2021-07-21T06:10:00.028Z","updatedAt":"2021-07-24T08:37:09.399Z","meta":{"version":0,"revision":0,"created":1627897109359},"$loki":82},{"slug":"radar","toc":[{"id":"雷达图的使用建议","depth":2,"text":"雷达图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"雷达图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%9B%B7%E8%BE%BE%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"雷达图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"雷达图(Radar Chart)又被叫做蜘蛛网图,适用于显示三个或更多的维度的变量。雷达图是以在同一点开始的轴上显示的三个或更多个变量的二维图表的形式来显示多元数据的方法,其中轴的相对位置和角度通常是无意义的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"雷达图的每个变量都有一个从中心向外发射的轴线,所有的轴之间的夹角相等,同时每个轴有相同的刻度,将轴到轴的刻度用网格线链接作为辅助元素,连接每个变量在其各自的轴线的数据点成一条多边形。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xH1-fnLcVG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"雷达图对于查看哪些变量具有相似的值、变量之间是否有异常值都很有用。雷达图表也可用于查看哪些变量在数据集内得分较高或较低,因此非常适合显示性能(见下图)。同样,雷达图也常用于排名、评估、评论等数据的展示。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJH93GqVf&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如下图,某幼儿园上周资金流统计的示例中比较了预算和开销。参与比较的六个方面是食品、玩具、绘本、医疗、门票、服饰。每个变量都是通过 0 到 500 之间的金额来比较的。只有玩具一项的支出超出了预算,而服饰花费远低于预算,使用雷达图,哪些方面超出或不足变得一目了然了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xrk6EfmqVf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"雷达图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%9B%B7%E8%BE%BE%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"雷达图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、一个雷达图包含的多边形数量是有限的,如果有五个以上要评估的事物,无论是轮廓还是填充区域,都会产生覆盖和混乱,使得数据难以阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、变量太多会产生太多的轴,也会使图表变得混乱,因此,要保持雷达图的简单并限制其变量数量。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、由于径向距离很难判断,所以虽然有网格线的参考,但是还是很难直观的比较图表内变量具体的值,如果需要的比较具体值话,建议使用线图。"}]}]},"text":"# 雷达图\n\n雷达图(Radar Chart)又被叫做蜘蛛网图,适用于显示三个或更多的维度的变量。雷达图是以在同一点开始的轴上显示的三个或更多个变量的二维图表的形式来显示多元数据的方法,其中轴的相对位置和角度通常是无意义的。\n\n\n雷达图的每个变量都有一个从中心向外发射的轴线,所有的轴之间的夹角相等,同时每个轴有相同的刻度,将轴到轴的刻度用网格线链接作为辅助元素,连接每个变量在其各自的轴线的数据点成一条多边形。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xH1-fnLcVG&v=1\">\n</iframe>\n\n雷达图对于查看哪些变量具有相似的值、变量之间是否有异常值都很有用。雷达图表也可用于查看哪些变量在数据集内得分较高或较低,因此非常适合显示性能(见下图)。同样,雷达图也常用于排名、评估、评论等数据的展示。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJH93GqVf&v=1\">\n</iframe>\n\n如下图,某幼儿园上周资金流统计的示例中比较了预算和开销。参与比较的六个方面是食品、玩具、绘本、医疗、门票、服饰。每个变量都是通过 0 到 500 之间的金额来比较的。只有玩具一项的支出超出了预算,而服饰花费远低于预算,使用雷达图,哪些方面超出或不足变得一目了然了。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xrk6EfmqVf\">\n</iframe>\n\n\n## 雷达图的使用建议\n\n1、一个雷达图包含的多边形数量是有限的,如果有五个以上要评估的事物,无论是轮廓还是填充区域,都会产生覆盖和混乱,使得数据难以阅读。\n\n2、变量太多会产生太多的轴,也会使图表变得混乱,因此,要保持雷达图的简单并限制其变量数量。\n\n3、由于径向距离很难判断,所以虽然有网格线的参考,但是还是很难直观的比较图表内变量具体的值,如果需要的比较具体值话,建议使用线图。\n\n","dir":"/zh/best-practice/specification","path":"/zh/best-practice/specification/radar","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897109363},"$loki":83},{"slug":"color-enhance","toc":[{"id":"颜色的情感共鸣","depth":2,"text":"颜色的情感共鸣"},{"id":"颜色的语义共鸣","depth":2,"text":"颜色的语义共鸣"},{"id":"图表颜色要吻合常识","depth":2,"text":"图表颜色要吻合常识"},{"id":"用颜色来区分数据","depth":2,"text":"用颜色来区分数据"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"用颜色增强可视化效果"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E7%94%A8%E9%A2%9C%E8%89%B2%E5%A2%9E%E5%BC%BA%E5%8F%AF%E8%A7%86%E5%8C%96%E6%95%88%E6%9E%9C","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"用颜色增强可视化效果"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在数据可视化所有的视觉通道中,色彩作为视觉的第一感知因素,对数据进行的视觉编码和传达是很有效的。如果使用得当,颜色可以非常有效地增强可视化效果。接下来,我们来看看具体有哪些使用颜色来增强可视化效果的的技巧和方法。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"颜色的情感共鸣"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%A2%9C%E8%89%B2%E7%9A%84%E6%83%85%E6%84%9F%E5%85%B1%E9%B8%A3","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"颜色的情感共鸣"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"颜色感知是一个复杂的物理和心理相互作用的结果。为了证明了人们感知到的色彩有冷与暖之分,日本色彩学家大智浩曾做过一个实验,将一个工作场地涂灰青色,另一个工作场地涂红橙色,两个工作场地的客观温度劳动强度相同,在灰青色工作场地工作的员工相对更容易感觉到冷。人们进一步研究发现,除了冷与暖的不同感受,色彩还有轻与重、远与近、活泼与忧郁等区分。所以,色彩之所以强大之处在于不同的色彩会使人的心理与生理产生不同的感受,从而引起情感反应和影响人们的情绪。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在可视化的颜色选择上,如果我们选用的颜色与我们数据本身的特点以及想要传达的情绪吻合的话,就可以伴随着颜色的视觉传达而引起情感上的共鸣。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"例如某个甜品店各类甜品的销售占比,数据如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"50%","height":"100%","src":"images/design/color/color01.png"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"针对这份数据,下面两个相同样式的图表,我们采用了两种不同配色方案,对比来看很明显,右图的配色更适合用来展示甜品数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/color/color02.png"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"因为相较于蓝色、紫色而言,橙色、黄色、粉色、绿色都是有利于提升食欲的颜色,而且更容易使人们产生温暖、幸福的情感,而这种情感与吃甜品时人们产生的感觉是一致的。另一方面,甜品本身的面向用户大多数是儿童和女性,针对这部分用户,比较明快、可爱的图表颜色也是更好的选择。而左侧的图表的配色更适合用于展示某种商务、男性群体的数据,因为左图的配色更容易使人产生理性和冷静的情感。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"颜色的语义共鸣"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%A2%9C%E8%89%B2%E7%9A%84%E8%AF%AD%E4%B9%89%E5%85%B1%E9%B8%A3","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"颜色的语义共鸣"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"不同的颜色可以帮助我们识别和区分不同的类别。我们已经习惯将颜色和各种事物或概念绑定在一起。当提到某些事物时我们经常会迅速的在心中匹配其对应的颜色,例如提到“云朵”会想到白色,“爱情”会想到粉红色。这些自然的、与语义一致的颜色被称为\"语义共鸣色\"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"研究表明,对于有固定颜色的词,匹配其具有语义共鸣的颜色,能有效的加速认知过程,反之则会阻碍认知,这种有趣的现象称为\"斯特鲁普效应\"。我们可以做个的对比试验,分别在上图两行文字中找到“黄”字。这个过程中,第一行的“黄”可以被快速定位到,因为对应使用了黄色。而在第二行寻找的时候,可能有人最早定位到的会是“紫”字,因为此处“紫”字使用了黄色,这就阻碍了我们寻找的速度和准确性。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/color/color03.png"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有效地利用语义共鸣色,即采用与数据本身意义一致的颜色,也可以提高可视化的认知效率。例如可以使用蓝色的来显示\"海洋\"的数据、使用黄色来显示“沙漠”的数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"视觉效果应该尽可能容易地解释,因此请尝试找到与观众的先入为主和文化联想相匹配的配色方案。如下示例中展示了猕猴桃、香蕉、橙子、草莓四种水果的销售数据,分别选择了与水果本身一致的颜色绿色、黄色、橙色、红色。这样,我们在辨别和记忆每个柱状所对应的水果时就轻而易举了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n color: ['#6E9D4E', '#EDDB4F', '#F7923A', '#F14747'],\n title: {\n text: '7月水果销量',\n x: '2%',\n y: '1%',\n textStyle: {\n color: '#fff',\n fontSize: '26'\n }\n },\n tooltip: {\n trigger: 'axis'\n },\n legend: {\n data: ['猕猴桃', '香蕉', '橙子', '草莓'],\n align: 'right'\n },\n grid: {\n left: '3%',\n right: '3%',\n top: '15%',\n bottom: '3%',\n containLabel: true\n },\n xAxis: [\n {\n type: 'category',\n data: ['第一周', '第二周', '第三周', '第四周']\n }\n ],\n yAxis: [\n {\n type: 'value',\n axisLabel: {\n formatter: '{value}'\n }\n }\n ],\n series: [\n {\n name: '猕猴桃',\n type: 'bar',\n data: [60, 110, 180, 100]\n },\n {\n name: '香蕉',\n type: 'bar',\n data: [90, 130, 170, 130]\n },\n {\n name: '橙子',\n type: 'bar',\n data: [120, 160, 140, 160]\n },\n {\n name: '草莓',\n type: 'bar',\n data: [110, 190, 90, 100]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"图表颜色要吻合常识"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9B%BE%E8%A1%A8%E9%A2%9C%E8%89%B2%E8%A6%81%E5%90%BB%E5%90%88%E5%B8%B8%E8%AF%86","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图表颜色要吻合常识"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在数据可视化的过程中,颜色的使用与图表的数据、展示环境、受众人群、社会背景等因素直接相关,我们不可以把颜色作为独立的因素去设计。在开始选择可视化作品的颜色时,请先克制住自由创作的热情,查看一下这是否是一份特殊的数据,再去选择对的颜色。例如一个股票数据的图表中,红色和绿色都有独特的含义。所以可视化图表颜色的选择吻合认知的常识,可以帮助我们更好地理解和区分数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xp1oqJoQqG"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"再例如查看天气温度。蓝色和红色易于理解,无需任何解释,并且易于区分。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xIVoX5gZcT&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"用颜色来区分数据"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E7%94%A8%E9%A2%9C%E8%89%B2%E6%9D%A5%E5%8C%BA%E5%88%86%E6%95%B0%E6%8D%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"用颜色来区分数据"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们通常会使用折线图来分析趋势,但是有的时候有需要明确的知道某个数据是否在某个区间范围内,因此我们可以主动地去配置定义区域。例如我们设定 25%-75% 这个范围内为我们计划完成的销售额,那我们可以在这个定义区域的范围内,给每个区域设置成一个底色,这样就可以高效的识别出每个数据处于哪个区间范围内,未达到、达到、超额完成的值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"所以,颜色可以被用来作为提高图表的可阅读性和有效工具。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"80%","height":"100%","src":"images/design/color/color04.png"},"children":[]}]},"text":"# 用颜色增强可视化效果\n\n在数据可视化所有的视觉通道中,色彩作为视觉的第一感知因素,对数据进行的视觉编码和传达是很有效的。如果使用得当,颜色可以非常有效地增强可视化效果。接下来,我们来看看具体有哪些使用颜色来增强可视化效果的的技巧和方法。\n\n## 颜色的情感共鸣\n\n颜色感知是一个复杂的物理和心理相互作用的结果。为了证明了人们感知到的色彩有冷与暖之分,日本色彩学家大智浩曾做过一个实验,将一个工作场地涂灰青色,另一个工作场地涂红橙色,两个工作场地的客观温度劳动强度相同,在灰青色工作场地工作的员工相对更容易感觉到冷。人们进一步研究发现,除了冷与暖的不同感受,色彩还有轻与重、远与近、活泼与忧郁等区分。所以,色彩之所以强大之处在于不同的色彩会使人的心理与生理产生不同的感受,从而引起情感反应和影响人们的情绪。\n\n在可视化的颜色选择上,如果我们选用的颜色与我们数据本身的特点以及想要传达的情绪吻合的话,就可以伴随着颜色的视觉传达而引起情感上的共鸣。\n\n例如某个甜品店各类甜品的销售占比,数据如下:\n\n<img max-width=\"830\" width=\"50%\" height=\"100%\" src=\"images/design/color/color01.png\" />\n\n针对这份数据,下面两个相同样式的图表,我们采用了两种不同配色方案,对比来看很明显,右图的配色更适合用来展示甜品数据。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/color/color02.png\" />\n\n因为相较于蓝色、紫色而言,橙色、黄色、粉色、绿色都是有利于提升食欲的颜色,而且更容易使人们产生温暖、幸福的情感,而这种情感与吃甜品时人们产生的感觉是一致的。另一方面,甜品本身的面向用户大多数是儿童和女性,针对这部分用户,比较明快、可爱的图表颜色也是更好的选择。而左侧的图表的配色更适合用于展示某种商务、男性群体的数据,因为左图的配色更容易使人产生理性和冷静的情感。\n\n## 颜色的语义共鸣\n\n不同的颜色可以帮助我们识别和区分不同的类别。我们已经习惯将颜色和各种事物或概念绑定在一起。当提到某些事物时我们经常会迅速的在心中匹配其对应的颜色,例如提到“云朵”会想到白色,“爱情”会想到粉红色。这些自然的、与语义一致的颜色被称为\"语义共鸣色\"。\n\n研究表明,对于有固定颜色的词,匹配其具有语义共鸣的颜色,能有效的加速认知过程,反之则会阻碍认知,这种有趣的现象称为\"斯特鲁普效应\"。我们可以做个的对比试验,分别在上图两行文字中找到“黄”字。这个过程中,第一行的“黄”可以被快速定位到,因为对应使用了黄色。而在第二行寻找的时候,可能有人最早定位到的会是“紫”字,因为此处“紫”字使用了黄色,这就阻碍了我们寻找的速度和准确性。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/color/color03.png\" />\n\n有效地利用语义共鸣色,即采用与数据本身意义一致的颜色,也可以提高可视化的认知效率。例如可以使用蓝色的来显示\"海洋\"的数据、使用黄色来显示“沙漠”的数据。\n\n视觉效果应该尽可能容易地解释,因此请尝试找到与观众的先入为主和文化联想相匹配的配色方案。如下示例中展示了猕猴桃、香蕉、橙子、草莓四种水果的销售数据,分别选择了与水果本身一致的颜色绿色、黄色、橙色、红色。这样,我们在辨别和记忆每个柱状所对应的水果时就轻而易举了。\n\n```js [live]\noption = {\n color: ['#6E9D4E', '#EDDB4F', '#F7923A', '#F14747'],\n title: {\n text: '7月水果销量',\n x: '2%',\n y: '1%',\n textStyle: {\n color: '#fff',\n fontSize: '26'\n }\n },\n tooltip: {\n trigger: 'axis'\n },\n legend: {\n data: ['猕猴桃', '香蕉', '橙子', '草莓'],\n align: 'right'\n },\n grid: {\n left: '3%',\n right: '3%',\n top: '15%',\n bottom: '3%',\n containLabel: true\n },\n xAxis: [\n {\n type: 'category',\n data: ['第一周', '第二周', '第三周', '第四周']\n }\n ],\n yAxis: [\n {\n type: 'value',\n axisLabel: {\n formatter: '{value}'\n }\n }\n ],\n series: [\n {\n name: '猕猴桃',\n type: 'bar',\n data: [60, 110, 180, 100]\n },\n {\n name: '香蕉',\n type: 'bar',\n data: [90, 130, 170, 130]\n },\n {\n name: '橙子',\n type: 'bar',\n data: [120, 160, 140, 160]\n },\n {\n name: '草莓',\n type: 'bar',\n data: [110, 190, 90, 100]\n }\n ]\n};\n```\n\n## 图表颜色要吻合常识\n\n在数据可视化的过程中,颜色的使用与图表的数据、展示环境、受众人群、社会背景等因素直接相关,我们不可以把颜色作为独立的因素去设计。在开始选择可视化作品的颜色时,请先克制住自由创作的热情,查看一下这是否是一份特殊的数据,再去选择对的颜色。例如一个股票数据的图表中,红色和绿色都有独特的含义。所以可视化图表颜色的选择吻合认知的常识,可以帮助我们更好地理解和区分数据。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xp1oqJoQqG\">\n</iframe>\n\n再例如查看天气温度。蓝色和红色易于理解,无需任何解释,并且易于区分。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xIVoX5gZcT&v=1\">\n</iframe>\n\n## 用颜色来区分数据\n\n我们通常会使用折线图来分析趋势,但是有的时候有需要明确的知道某个数据是否在某个区间范围内,因此我们可以主动地去配置定义区域。例如我们设定 25%-75% 这个范围内为我们计划完成的销售额,那我们可以在这个定义区域的范围内,给每个区域设置成一个底色,这样就可以高效的识别出每个数据处于哪个区间范围内,未达到、达到、超额完成的值。\n\n所以,颜色可以被用来作为提高图表的可阅读性和有效工具。\n\n<img max-width=\"830\" width=\"80%\" height=\"100%\" src=\"images/design/color/color04.png\" />\n","dir":"/zh/best-practice/design","path":"/zh/best-practice/design/color-enhance","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897109367},"$loki":84},{"slug":"stacked-bar","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stacked-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#stacked-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Stacked Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Sometimes, we hope to not only figure series separately but also the trend of the sum. It's a good choice to implement it by using the stacked bar chart. As the name suggests, in the stacked bar chart, data in the same category will be stacked up in one column. The overall height of the bar explained the change of total."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There is a simple way to implement a stacked bar chart by ECharts. You need to set the same string type value for a group of series in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":". The series with the same "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" value will be in the same category."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, the position of the second series is based on the position of the first series, the height increased is corresponding to the first series' height. Therefore, from the position of the second series, you can find the changing trend of the sum of the two."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The value of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" explained what series will be stacked up together. Theoretically, the specific value of 'stack' is meaningless. However, we prefer some suggestive strings for the convenience of reading."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For instance, here is a chart with 4 series that counted the amount of male and female. \"adult male\" and \"boy\" need to be stacked while \"adult female\" and \"girl\" need to be stacked. In this case, the suggestive value of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'male'"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'female'"}]},{"type":"text","value":". Although meaningless strings like "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'a'"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'b'"}]},{"type":"text","value":" can achieve the same effect but the code will have worse readability."}]},{"type":"text","value":"\n"}]}]},"text":"# Stacked Bar Chart\n\nSometimes, we hope to not only figure series separately but also the trend of the sum. It's a good choice to implement it by using the stacked bar chart. As the name suggests, in the stacked bar chart, data in the same category will be stacked up in one column. The overall height of the bar explained the change of total.\n\nThere is a simple way to implement a stacked bar chart by ECharts. You need to set the same string type value for a group of series in `stack`. The series with the same `stack` value will be in the same category.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\nIn this case, the position of the second series is based on the position of the first series, the height increased is corresponding to the first series' height. Therefore, from the position of the second series, you can find the changing trend of the sum of the two.\n\n> The value of `stack` explained what series will be stacked up together. Theoretically, the specific value of 'stack' is meaningless. However, we prefer some suggestive strings for the convenience of reading.\n>\n> For instance, here is a chart with 4 series that counted the amount of male and female. \"adult male\" and \"boy\" need to be stacked while \"adult female\" and \"girl\" need to be stacked. In this case, the suggestive value of `stack` is `'male'` and `'female'`. Although meaningless strings like `'a'` and `'b'` can achieve the same effect but the code will have worse readability.\n","dir":"/en/application/chart-types/bar","path":"/en/application/chart-types/bar/stacked-bar","extension":".md","createdAt":"2021-06-04T12:26:37.913Z","updatedAt":"2021-07-21T12:35:25.376Z","meta":{"version":0,"revision":0,"created":1627897109370},"$loki":85},{"slug":"basic-bar","toc":[{"id":"simple-example","depth":2,"text":"Simple Example"},{"id":"multi-series-bar-chart","depth":2,"text":"Multi-series Bar Chart"},{"id":"customized-bar-chart","depth":2,"text":"Customized Bar Chart"},{"id":"styles","depth":3,"text":"Styles"},{"id":"width-and-height-of-column","depth":3,"text":"Width and Height of Column"},{"id":"column-spacing","depth":3,"text":"Column Spacing"},{"id":"add-background-color-for-bars","depth":3,"text":"Add Background Color for Bars"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-bar-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-bar-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bar Chart, is a chart that presents the comparisons among discrete data. The length of the bars is proportionally related to the categorical data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To set the bar chart, you need to set the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'bar'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"[Option]"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"simple-example"},"children":[{"type":"element","tag":"a","props":{"href":"#simple-example","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Simple Example"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Let's begin with a basic bar chart:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, the x-axis is under the category type. Therefore, you should define some corresponding values for "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'xAxis'"}]},{"type":"text","value":". Meanwhile, the data type of the y-axis is numerical. The range of the y-axis will be generated automatically by the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'series'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"multi-series-bar-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#multi-series-bar-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Multi-series Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You may use a series to represent a group of related data. To show multiple series in the same chart, you need to add one more array under the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n },\n {\n type: 'bar',\n data: [26, 24, 18, 22, 23, 20, 27]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customized-bar-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#customized-bar-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customized Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"styles"},"children":[{"type":"element","tag":"a","props":{"href":"#styles","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Styles"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It is a good idea to install the style of Bar Chart by using "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'series.itemStyle'"}]},{"type":"text","value":". Description of the SCI:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Color of column("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'color'"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Outline color("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'borderColor'"}]},{"type":"text","value":"), width("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'borderWidth'"}]},{"type":"text","value":"), type("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'borderType'"}]},{"type":"text","value":") of column;"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Border radius of column("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'barBorderRadius'"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Transparency("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'opacity'"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Shadow type("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'shadowBlur'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'shadowColor'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'shadowOffsetX'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'shadowOffsetY'"}]},{"type":"text","value":")"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a example:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, we defined the style of the bar chart by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'itemStyle'"}]},{"type":"text","value":" of corresponding "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":". For complete configuration items and their usage, please check the configuration item manual: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.itemStyle"}]}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"width-and-height-of-column"},"children":[{"type":"element","tag":"a","props":{"href":"#width-and-height-of-column","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Width and Height of Column"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-bar.barWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]}]},{"type":"text","value":" to change the width of the bar. For instance, the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'barWidth'"}]},{"type":"text","value":" in the following case was set to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'20%'"}]},{"type":"text","value":". It indicates that width of each bar is 20% of the category width. As there are 5 data in every series, 20% "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'barWidth'"}]},{"type":"text","value":" means 4% for the entire x-axis."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In addition, "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barMaxWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMaxWidth"}]}]},{"type":"text","value":" has limited the maximum width of the bar. For some small value, you can declare a minimum height for the bar: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barMinHeight","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMinHeight"}]}]},{"type":"text","value":". When the corresponding height of data is smaller than the limit, ECharts will take 'barMinHeight' as the replaced height."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"column-spacing"},"children":[{"type":"element","tag":"a","props":{"href":"#column-spacing","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Column Spacing"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two kinds of column spacing. One is the spacing between different series under the same category: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]}]},{"type":"text","value":". The other is the spacing between categories: "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barCategoryGap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 18],\n barGap: '20%',\n barCategoryGap: '40%'\n },\n {\n type: 'bar',\n data: [12, 14, 9, 9, 11]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barGap"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'20%'"}]},{"type":"text","value":". That means the distance between bars under the same category is 20% of the bar width. For instance, if we set the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'40%'"}]},{"type":"text","value":", the gap on each side of the bar will take 40% place in categories (compared with the width of the column)."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usually, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]},{"type":"text","value":" is not necessary to be clarified if "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'barGap'"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]},{"type":"text","value":" was set. If you need to make sure the bar is not too wide while the graph is large, try to use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMaxWidth"}]},{"type":"text","value":" to limit the maximum width of bars."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the same cartesian coordinate system, the property will be shared by several column series. To make sure it takes effect on the graph, please set the property on the last bar chart series of the system."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"add-background-color-for-bars"},"children":[{"type":"element","tag":"a","props":{"href":"#add-background-color-for-bars","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Add Background Color for Bars"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You might want to change the background color of bars sometimes. After ECharts v4.7.0, this function can be enabled by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.showBackground","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'showBackground'"}]},{"type":"text","value":" and configured by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.backgroundStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"'backgroundStyle'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150, 80, 70, 110, 130],\n type: 'bar',\n showBackground: true,\n backgroundStyle: {\n color: 'rgba(220, 220, 220, 0.8)'\n }\n }\n ]\n};\n"}]}]}]},"text":"# Basic Bar Chart\n\nBar Chart, is a chart that presents the comparisons among discrete data. The length of the bars is proportionally related to the categorical data.\n\nTo set the bar chart, you need to set the `type` of `series` as `'bar'`.\n\n[[Option]](https://echarts.apache.org/option.html#series-bar)\n\n## Simple Example\n\nLet's begin with a basic bar chart:\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\nIn this case, the x-axis is under the category type. Therefore, you should define some corresponding values for `'xAxis'`. Meanwhile, the data type of the y-axis is numerical. The range of the y-axis will be generated automatically by the `data` in `'series'`.\n\n## Multi-series Bar Chart\n\nYou may use a series to represent a group of related data. To show multiple series in the same chart, you need to add one more array under the `series`.\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n },\n {\n type: 'bar',\n data: [26, 24, 18, 22, 23, 20, 27]\n }\n ]\n};\n```\n\n## Customized Bar Chart\n\n### Styles\n\nIt is a good idea to install the style of Bar Chart by using ['series.itemStyle'](https://echarts.apache.org/option.html#series-bar.itemStyle). Description of the SCI:\n\n- Color of column(`'color'`);\n- Outline color(`'borderColor'`), width(`'borderWidth'`), type(`'borderType'`) of column;\n- Border radius of column(`'barBorderRadius'`);\n- Transparency(`'opacity'`);\n- Shadow type(`'shadowBlur'`, `'shadowColor'`, `'shadowOffsetX'`, `'shadowOffsetY'`)\n\nHere is a example:\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\nIn this case, we defined the style of the bar chart by `'itemStyle'` of corresponding `series`. For complete configuration items and their usage, please check the configuration item manual: [`series.itemStyle`](https://echarts.apache.org/option.html#series-bar.itemStyle)。\n\n### Width and Height of Column\n\nYou can use [`barWidth`](https://echarts.apache.org/option.html##series-bar.barWidth) to change the width of the bar. For instance, the `'barWidth'` in the following case was set to `'20%'`. It indicates that width of each bar is 20% of the category width. As there are 5 data in every series, 20% `'barWidth'` means 4% for the entire x-axis.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\nIn addition, [`barMaxWidth`](https://echarts.apache.org/option.html#series-bar.barMaxWidth) has limited the maximum width of the bar. For some small value, you can declare a minimum height for the bar: [`barMinHeight`](https://echarts.apache.org/option.html#series-bar.barMinHeight). When the corresponding height of data is smaller than the limit, ECharts will take 'barMinHeight' as the replaced height.\n\n### Column Spacing\n\nThere are two kinds of column spacing. One is the spacing between different series under the same category: [`barWidth`](https://echarts.apache.org/option.html#series-bar.barWidth). The other is the spacing between categories: [`barCategoryGap`](https://echarts.apache.org/option.html#series-bar.barCategoryGap).\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 18],\n barGap: '20%',\n barCategoryGap: '40%'\n },\n {\n type: 'bar',\n data: [12, 14, 9, 9, 11]\n }\n ]\n};\n```\n\nIn this case, the `barGap` is `'20%'`. That means the distance between bars under the same category is 20% of the bar width. For instance, if we set the `barCategoryGap` to `'40%'`, the gap on each side of the bar will take 40% place in categories (compared with the width of the column).\n\nUsually, `barWidth` is not necessary to be clarified if `'barGap'` and `barCategoryGap` was set. If you need to make sure the bar is not too wide while the graph is large, try to use `barMaxWidth` to limit the maximum width of bars.\n\n> In the same cartesian coordinate system, the property will be shared by several column series. To make sure it takes effect on the graph, please set the property on the last bar chart series of the system.\n\n### Add Background Color for Bars\n\nYou might want to change the background color of bars sometimes. After ECharts v4.7.0, this function can be enabled by ['showBackground'](https://echarts.apache.org/option.html#series-bar.showBackground) and configured by ['backgroundStyle'](https://echarts.apache.org/option.html#series-bar.backgroundStyle).\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150, 80, 70, 110, 130],\n type: 'bar',\n showBackground: true,\n backgroundStyle: {\n color: 'rgba(220, 220, 220, 0.8)'\n }\n }\n ]\n};\n```\n","dir":"/en/application/chart-types/bar","path":"/en/application/chart-types/bar/basic-bar","extension":".md","createdAt":"2021-06-04T12:26:37.913Z","updatedAt":"2021-07-21T12:34:32.672Z","meta":{"version":0,"revision":0,"created":1627897109394},"$loki":86},{"slug":"bar-race","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"dynamic-sorting-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#dynamic-sorting-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Dynamic Sorting Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Dynamic Sorting Bar Chart is a new function that recently added in ECharts 5.0."}]}]},"text":"# Dynamic Sorting Bar Chart\n\nDynamic Sorting Bar Chart is a new function that recently added in ECharts 5.0.\n\n","dir":"/en/application/chart-types/bar","path":"/en/application/chart-types/bar/bar-race","extension":".md","createdAt":"2021-06-04T12:26:37.913Z","updatedAt":"2021-06-04T12:26:37.913Z","meta":{"version":0,"revision":0,"created":1627897109398},"$loki":87},{"slug":"polar-bar","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"bar-chart-in-polar-coordinate-system"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#bar-chart-in-polar-coordinate-system","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Bar Chart in Polar Coordinate System"}]}]},"text":"# Bar Chart in Polar Coordinate System\n\n","dir":"/en/application/chart-types/bar","path":"/en/application/chart-types/bar/polar-bar","extension":".md","createdAt":"2021-06-04T12:26:37.913Z","updatedAt":"2021-06-04T12:26:37.913Z","meta":{"version":0,"revision":0,"created":1627897109399},"$loki":88},{"slug":"basic-line","toc":[{"id":"simple-example","depth":2,"text":"Simple Example"},{"id":"line-chart-in-cartesian-coordinate-system","depth":2,"text":"Line Chart in Cartesian Coordinate System"},{"id":"customized-line-chart","depth":2,"text":"Customized Line Chart"},{"id":"line-style","depth":3,"text":"Line Style"},{"id":"item-style","depth":3,"text":"Item Style"},{"id":"display-value-on-items","depth":2,"text":"Display Value on Items."},{"id":"empty-data","depth":2,"text":"Empty Data"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-line-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-line-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"simple-example"},"children":[{"type":"element","tag":"a","props":{"href":"#simple-example","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Simple Example"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can use the following code to build a line chart which has x-axis as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"category"}]},{"type":"text","value":", y-axis as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":":"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['A', 'B', 'C']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, we set the type of axis to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"category"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":" under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yAxis"}]},{"type":"text","value":". We also clarified the content on the x-axis through "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":". In "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":", we set the type to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line"}]},{"type":"text","value":", and specify the values of three points through "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":". In this way, we got a simple line chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" here can be omitted because the defaults of the axis are "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":" while "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" has specified the category's "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":". In this case, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ECharts"}]},{"type":"text","value":" can recognize that this is a category axis."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"line-chart-in-cartesian-coordinate-system"},"children":[{"type":"element","tag":"a","props":{"href":"#line-chart-in-cartesian-coordinate-system","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Line Chart in Cartesian Coordinate System"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"How to implement if we want the line chart to be continuous? The answer is simple, as long as every value in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" of the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" is represented by an array containing two elements."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n data: [\n [20, 120],\n [50, 200],\n [40, 50]\n ],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customized-line-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#customized-line-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customized Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"line-style"},"children":[{"type":"element","tag":"a","props":{"href":"#line-style","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Line Style"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Line style can be changed by "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" setting. You can specify color, line width, polyline type and opacity etc.. For details, please see the handbook "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.lineStyle"}]}]},{"type":"text","value":" to figure out."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is an example of setting color, line width and type."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n lineStyle: {\n normal: {\n color: 'green',\n width: 4,\n type: 'dashed'\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When we set the line width here, the line width of items will not change. The line style of items needs to be set separately."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"item-style"},"children":[{"type":"element","tag":"a","props":{"href":"#item-style","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Item Style"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Item style can be change by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.itemStyle"}]}]},{"type":"text","value":". It included "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderStyle"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderType"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowColor"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opacity"}]},{"type":"text","value":" and so on. It works the same as the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineType"}]},{"type":"text","value":", so we will not do further discuss."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"display-value-on-items"},"children":[{"type":"element","tag":"a","props":{"href":"#display-value-on-items","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Display Value on Items."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the series, the label of the item was specified by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.label","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label"}]}]},{"type":"text","value":". If we change the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"show"}]},{"type":"text","value":" under "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":", the value will be displayed by default. Otherwise, if "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.emphasis.label.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.label.show"}]}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":", the label will show only if the mouse moved across the item."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n label: {\n show: true,\n position: 'bottom',\n textStyle: {\n fontSize: 20\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"empty-data"},"children":[{"type":"element","tag":"a","props":{"href":"#empty-data","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Empty Data"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In a "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":", there are empty data. It has some difference with "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"0"}]},{"type":"text","value":". While there are empty elements, the lines chart will ignore that point without pass through it----empty elements will not be connected by the points next by."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts, we use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'-'"}]},{"type":"text","value":" to represent null data, It is applicable for data in other series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [0, 22, '-', 23, 19],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Please note the difference between the empty data and 0."}]},{"type":"text","value":"\n"}]}]},"text":"# Basic Line Chart\n\n## Simple Example\n\nWe can use the following code to build a line chart which has x-axis as `category`, y-axis as `value`:\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['A', 'B', 'C']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150],\n type: 'line'\n }\n ]\n};\n```\n\nIn this case, we set the type of axis to `category` and `value` under `xAxis` and `yAxis`. We also clarified the content on the x-axis through `data`. In `series`, we set the type to `line`, and specify the values of three points through `data`. In this way, we got a simple line chart.\n\n> The `type` here can be omitted because the defaults of the axis are `value` while `xAxis` has specified the category's `data`. In this case, `ECharts` can recognize that this is a category axis.\n\n## Line Chart in Cartesian Coordinate System\n\nHow to implement if we want the line chart to be continuous? The answer is simple, as long as every value in `data` of the `series` is represented by an array containing two elements.\n\n```js [live]\noption = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n data: [\n [20, 120],\n [50, 200],\n [40, 50]\n ],\n type: 'line'\n }\n ]\n};\n```\n\n## Customized Line Chart\n\n### Line Style\n\nLine style can be changed by `lineStyle` setting. You can specify color, line width, polyline type and opacity etc.. For details, please see the handbook [`series.lineStyle`](https://echarts.apache.org/option.html#series-line.lineStyle) to figure out.\n\nHere is an example of setting color, line width and type.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n lineStyle: {\n normal: {\n color: 'green',\n width: 4,\n type: 'dashed'\n }\n }\n }\n ]\n};\n```\n\nWhen we set the line width here, the line width of items will not change. The line style of items needs to be set separately.\n\n### Item Style\n\nItem style can be change by [`series.itemStyle`](https://echarts.apache.org/option.html#series-line.itemStyle). It included `color`, `borderColor`, `borderStyle`, `borderWidth`, `borderType`, `shadowColor`, `opacity` and so on. It works the same as the `lineType`, so we will not do further discuss.\n\n## Display Value on Items.\n\nIn the series, the label of the item was specified by [`series.label`](https://echarts.apache.org/option.html#series-line.label). If we change the `show` under `label` to `true`, the value will be displayed by default. Otherwise, if [`series.emphasis.label.show`](https://echarts.apache.org/option.html#series-line.emphasis.label.show) is `true`, the label will show only if the mouse moved across the item.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n label: {\n show: true,\n position: 'bottom',\n textStyle: {\n fontSize: 20\n }\n }\n }\n ]\n};\n```\n\n## Empty Data\n\nIn a `series`, there are empty data. It has some difference with `0`. While there are empty elements, the lines chart will ignore that point without pass through it----empty elements will not be connected by the points next by.\n\nIn ECharts, we use `'-'` to represent null data, It is applicable for data in other series.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [0, 22, '-', 23, 19],\n type: 'line'\n }\n ]\n};\n```\n\n> Please note the difference between the empty data and 0.\n","dir":"/en/application/chart-types/line","path":"/en/application/chart-types/line/basic-line","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:29:15.878Z","meta":{"version":0,"revision":0,"created":1627897109407},"$loki":89},{"slug":"smooth-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"smooth-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#smooth-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Smooth Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The smooth line chart is also a variant of the basic line graph. It is a better choice for you to perform a comfort visual experience. While using the ECharts, you only need to change the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"smooth"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":" to achieve this effect."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n smooth: true\n }\n ]\n};\n"}]}]}]},"text":"# Smooth Line Chart\n\nThe smooth line chart is also a variant of the basic line graph. It is a better choice for you to perform a comfort visual experience. While using the ECharts, you only need to change the `smooth` to `true` to achieve this effect.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n smooth: true\n }\n ]\n};\n```\n","dir":"/en/application/chart-types/line","path":"/en/application/chart-types/line/smooth-line","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:30:49.855Z","meta":{"version":0,"revision":0,"created":1627897109409},"$loki":90},{"slug":"area-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"area-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#area-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Area Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The area chart fills the space between the line and axis with the background color, to express the data by the size of the area. Compared with the normal line chart, the area chart has more intuitive visual effects. It is especially suitable for the scenario with a few series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n areaStyle: {}\n },\n {\n data: [25, 14, 23, 35, 10],\n type: 'line',\n areaStyle: {\n color: '#ff0',\n opacity: 0.5\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to change the area style of the line chart, try to use "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"areaStyle"}]}]},{"type":"text","value":". Set "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'areaStyle'"}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{}"}]},{"type":"text","value":" to use the default type: use the color of series to fill the area in translucent. If you want to change the style, try to override the configuration items in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'areaStyle'"}]},{"type":"text","value":". For example, the color of the second series was changed to yellow with 50% opacity."}]}]},"text":"# Area Chart\n\nThe area chart fills the space between the line and axis with the background color, to express the data by the size of the area. Compared with the normal line chart, the area chart has more intuitive visual effects. It is especially suitable for the scenario with a few series.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n areaStyle: {}\n },\n {\n data: [25, 14, 23, 35, 10],\n type: 'line',\n areaStyle: {\n color: '#ff0',\n opacity: 0.5\n }\n }\n ]\n};\n```\n\nIf you want to change the area style of the line chart, try to use [`areaStyle`](https://echarts.apache.org/option.html#series-line.areaStyle). Set `'areaStyle'` to `{}` to use the default type: use the color of series to fill the area in translucent. If you want to change the style, try to override the configuration items in `'areaStyle'`. For example, the color of the second series was changed to yellow with 50% opacity.\n","dir":"/en/application/chart-types/line","path":"/en/application/chart-types/line/area-line","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:27:53.524Z","meta":{"version":0,"revision":0,"created":1627897109410},"$loki":91},{"slug":"waterfall","toc":[],"body":{"type":"root","children":[]},"text":"","dir":"/zh/application/chart-types/bar","path":"/zh/application/chart-types/bar/waterfall","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-06-04T12:26:37.920Z","meta":{"version":0,"revision":0,"created":1627897109411},"$loki":92},{"slug":"step-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"step-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#step-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Step Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The normal line chart connects two points by straight line directly, while the step line chart, also known as square wave chart, uses only horizontal and vertical lines to connect the nearby items together. Compared with the normal line chart, the step line chart significantly shows the sudden changes of analyzed data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"step"}]},{"type":"text","value":" is used to characterize the connection type of the step line chart. It has three available values: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'start'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'end'"}]},{"type":"text","value":", and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'middle'"}]},{"type":"text","value":". For item A and B, these values corresponded that the corner occurred at A, B, and mid-point between A and B."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {},\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n name: 'Step Start',\n type: 'line',\n step: 'start',\n data: [120, 132, 101, 134, 90, 230, 210]\n },\n {\n name: 'Step Middle',\n type: 'line',\n step: 'middle',\n data: [220, 282, 201, 234, 290, 430, 410]\n },\n {\n name: 'Step End',\n type: 'line',\n step: 'end',\n data: [450, 432, 401, 454, 590, 530, 510]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Please focus on the difference of line between three separate types."}]},{"type":"text","value":"\n"}]}]},"text":"# Step Line Chart\n\nThe normal line chart connects two points by straight line directly, while the step line chart, also known as square wave chart, uses only horizontal and vertical lines to connect the nearby items together. Compared with the normal line chart, the step line chart significantly shows the sudden changes of analyzed data.\n\nIn ECharts, `step` is used to characterize the connection type of the step line chart. It has three available values: `'start'`, `'end'`, and `'middle'`. For item A and B, these values corresponded that the corner occurred at A, B, and mid-point between A and B.\n\n```js [live]\noption = {\n legend: {},\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n name: 'Step Start',\n type: 'line',\n step: 'start',\n data: [120, 132, 101, 134, 90, 230, 210]\n },\n {\n name: 'Step Middle',\n type: 'line',\n step: 'middle',\n data: [220, 282, 201, 234, 290, 430, 410]\n },\n {\n name: 'Step End',\n type: 'line',\n step: 'end',\n data: [450, 432, 401, 454, 590, 530, 510]\n }\n ]\n};\n```\n\n> Please focus on the difference of line between three separate types.\n","dir":"/en/application/chart-types/line","path":"/en/application/chart-types/line/step-line","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:31:50.910Z","meta":{"version":0,"revision":0,"created":1627897109413},"$loki":93},{"slug":"stacked-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stacked-line-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#stacked-line-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Stacked Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Similar to the "},{"type":"element","tag":"a","props":{"href":"en/application/chart-types/bar/stacked-bar"},"children":[{"type":"text","value":"Stacked Bar Chart"}]},{"type":"text","value":", Stacked Line Chart use the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'stack'"}]},{"type":"text","value":" in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" to decide which series should be stacked together."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"However, without clarification, it is hard for us to judge whether it is a stacked line chart or normal line chart. Therefore, filling color for the area under the line is recommended to indicate for a stacked bar chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n }\n ]\n};\n"}]}]}]},"text":"# Stacked Line Chart\n\nSimilar to the [Stacked Bar Chart](en/application/chart-types/bar/stacked-bar), Stacked Line Chart use the `'stack'` in `series` to decide which series should be stacked together.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x'\n }\n ]\n};\n```\n\nHowever, without clarification, it is hard for us to judge whether it is a stacked line chart or normal line chart. Therefore, filling color for the area under the line is recommended to indicate for a stacked bar chart.\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n }\n ]\n};\n```\n","dir":"/en/application/chart-types/line","path":"/en/application/chart-types/line/stacked-line","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:31:21.466Z","meta":{"version":0,"revision":0,"created":1627897109414},"$loki":94},{"slug":"basic-scatter","toc":[{"id":"simple-example","depth":2,"text":"Simple Example"},{"id":"scatter-chart-in-cartesian-coordinate-system","depth":2,"text":"Scatter Chart in Cartesian Coordinate System"},{"id":"customized-scatter-chart","depth":2,"text":"Customized Scatter Chart"},{"id":"symbol-style","depth":3,"text":"Symbol Style"},{"id":"symbol-size","depth":3,"text":"Symbol Size"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-scatter-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-scatter-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Scatter Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Scatter Chart, a frequently used chart type, was constructed with several \"points\". These points sometimes represent the position of the value in the coordinate system (cartesian coordinate system, geo coordinate system, etc.), sometimes the size and color of items can be mapped to the value, represent high-dimensional data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"simple-example"},"children":[{"type":"element","tag":"a","props":{"href":"#simple-example","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Simple Example"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The following example is a basic scatter chart configuration with the x-axis as category and the y-axis as value:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"scatter-chart-in-cartesian-coordinate-system"},"children":[{"type":"element","tag":"a","props":{"href":"#scatter-chart-in-cartesian-coordinate-system","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Scatter Chart in Cartesian Coordinate System"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In the previous case, the x-axis of the scatter chart is a discrete category axis and the y-axis is a continuous value axis. However, the normal scene for the scatter chart is to have 2 continuous value axis (also called the cartesian coordinate system). The series type is different in that both x-axis and y-axis value are included in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":", but not in "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yAxis"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [\n [10, 5],\n [0, 8],\n [6, 10],\n [2, 12],\n [8, 9]\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customized-scatter-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#customized-scatter-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customized Scatter Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"symbol-style"},"children":[{"type":"element","tag":"a","props":{"href":"#symbol-style","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Symbol Style"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Symbol refers to the item shape in a scatter chart. There are three types of config available. The first is ECharts built-in shape, the second is image, the last is the SVG path."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The built-in shape in ECharts included: "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'circle'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'rect'"}]},{"type":"text","value":"(rectangle), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'roundRect'"}]},{"type":"text","value":"(rounded rectangle), "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'triangle'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'diamond'"}]},{"type":"text","value":", "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'pin'"}]},{"type":"text","value":" and "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'arrow'"}]},{"type":"text","value":". To use built-in shapes, you need to state the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" to the corresponding string."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you want to define the shape as any image, try to use "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image'"}]},{"type":"text","value":" following by the path, eg. "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image://http://example.com/xxx.png'"}]},{"type":"text","value":" or "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image://./xxx.png'"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" also supports SVG vector graphics. You can define "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" as an SVG file path that starts with "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'path://'"}]},{"type":"text","value":" to locate the vector graphics. The advantages of vector graphics are smaller size and no jagged or blurred."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Method to find the SVG path: Open an "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVG"}]},{"type":"text","value":" path; Find the path similar as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<path d=\"M… L…\"></path>"}]},{"type":"text","value":"; Add "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"d"}]},{"type":"text","value":"'s value after "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'path://'"}]},{"type":"text","value":". Let's check how to define an item to vector shape of heart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Firstly, we need an "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVG"}]},{"type":"text","value":" file of a heart. You can draw one by vector editing software, or download one from the internet. Here is the content:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"xml","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51.997 51.997\" style=\"enable-background:new 0 0 51.997 51.997;\" xml:space=\"preserve\">\n <path d=\"M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z\"/>\n</svg>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts, define config "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" as a path of d:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: 20,\n symbol:\n 'path://M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this way, we have a heart vector of the item."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"symbol-size"},"children":[{"type":"element","tag":"a","props":{"href":"#symbol-size","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Symbol Size"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The size of symbol is defined by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.symbolSize","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.symbolSize"}]}]},{"type":"text","value":". It can be s pixel value of the item size, or an array included two numbers, to define the width and height."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Besides, it can be defined as a call back function. Here is an example of the format:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"(value: Array | number, params: Object) => number | Array;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The first argument is the data value, and the second argument included other arguments of the data item. In the following instance, we define the size of the item proportional related to the data value."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: function(value) {\n return value / 10;\n }\n }\n ]\n};\n"}]}]}]},"text":"# Basic Scatter Chart\n\nScatter Chart, a frequently used chart type, was constructed with several \"points\". These points sometimes represent the position of the value in the coordinate system (cartesian coordinate system, geo coordinate system, etc.), sometimes the size and color of items can be mapped to the value, represent high-dimensional data.\n\n## Simple Example\n\nThe following example is a basic scatter chart configuration with the x-axis as category and the y-axis as value:\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310]\n }\n ]\n};\n```\n\n## Scatter Chart in Cartesian Coordinate System\n\nIn the previous case, the x-axis of the scatter chart is a discrete category axis and the y-axis is a continuous value axis. However, the normal scene for the scatter chart is to have 2 continuous value axis (also called the cartesian coordinate system). The series type is different in that both x-axis and y-axis value are included in `data`, but not in `xAxis` and `yAxis`.\n\n```js [live]\noption = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [\n [10, 5],\n [0, 8],\n [6, 10],\n [2, 12],\n [8, 9]\n ]\n }\n ]\n};\n```\n\n## Customized Scatter Chart\n\n### Symbol Style\n\nSymbol refers to the item shape in a scatter chart. There are three types of config available. The first is ECharts built-in shape, the second is image, the last is the SVG path.\n\nThe built-in shape in ECharts included: `'circle'`, `'rect'`(rectangle), `'roundRect'`(rounded rectangle), `'triangle'`, `'diamond'`, `'pin'` and `'arrow'`. To use built-in shapes, you need to state the `symbol` to the corresponding string.\n\nIf you want to define the shape as any image, try to use `'image'` following by the path, eg. `'image://http://example.com/xxx.png'` or `'image://./xxx.png'`.\n\nECharts `symbol` also supports SVG vector graphics. You can define `symbol` as an SVG file path that starts with `'path://'` to locate the vector graphics. The advantages of vector graphics are smaller size and no jagged or blurred.\n\nMethod to find the SVG path: Open an `SVG` path; Find the path similar as `<path d=\"M… L…\"></path>`; Add `d`'s value after `'path://'`. Let's check how to define an item to vector shape of heart.\n\nFirstly, we need an `SVG` file of a heart. You can draw one by vector editing software, or download one from the internet. Here is the content:\n\n```xml\n<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51.997 51.997\" style=\"enable-background:new 0 0 51.997 51.997;\" xml:space=\"preserve\">\n <path d=\"M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z\"/>\n</svg>\n```\n\nIn ECharts, define config `symbol` as a path of d:\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: 20,\n symbol:\n 'path://M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z'\n }\n ]\n};\n```\n\nIn this way, we have a heart vector of the item.\n\n### Symbol Size\n\nThe size of symbol is defined by [`series.symbolSize`](https://echarts.apache.org/option.html#series-scatter.symbolSize). It can be s pixel value of the item size, or an array included two numbers, to define the width and height.\n\nBesides, it can be defined as a call back function. Here is an example of the format:\n\n```ts\n(value: Array | number, params: Object) => number | Array;\n```\n\nThe first argument is the data value, and the second argument included other arguments of the data item. In the following instance, we define the size of the item proportional related to the data value.\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: function(value) {\n return value / 10;\n }\n }\n ]\n};\n```\n","dir":"/en/application/chart-types/scatter","path":"/en/application/chart-types/scatter/basic-scatter","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:18:22.321Z","meta":{"version":0,"revision":0,"created":1627897109420},"$loki":95},{"slug":"basic-pie","toc":[{"id":"simple-example","depth":2,"text":"Simple Example"},{"id":"customized-pie-chart","depth":2,"text":"Customized Pie Chart"},{"id":"radius-of-pie-chart","depth":3,"text":"Radius of Pie Chart"},{"id":"hide-chart-while-data-sum-is-0","depth":2,"text":"Hide Chart While Data Sum is 0"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-pie-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#basic-pie-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Pie Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Pie charts are mainly used to show the proportion of several categories compared with the total. The radians represent the proportion of each category."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"simple-example"},"children":[{"type":"element","tag":"a","props":{"href":"#simple-example","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Simple Example"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The config of the pie chart is not completely the same as the line chart and bar chart. There is no need to configure the axis. The name and value of data need to be defined in the series. Let's begin with a basic pie chart:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'Direct Visit'\n },\n {\n value: 234,\n name: 'Union Ad'\n },\n {\n value: 1548,\n name: 'Search Engine'\n }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To be mentioned, the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":" here does not need to be percentage data. ECharts will proportionately distribute their corresponding radians in the pie chart depending on all the data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"customized-pie-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#customized-pie-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Customized Pie Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"radius-of-pie-chart"},"children":[{"type":"element","tag":"a","props":{"href":"#radius-of-pie-chart","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Radius of Pie Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The radius of pie chart can be defined by "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.radius","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.radius"}]}]},{"type":"text","value":". Both percent string("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'60%'"}]},{"type":"text","value":") and absolute pixel string("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'200'"}]},{"type":"text","value":") are available. While it is a percent string, it is proportional related to the shorter container("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'div'"}]},{"type":"text","value":") edge."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'Direct Visit'\n },\n {\n value: 234,\n name: 'Union Ad'\n },\n {\n value: 1548,\n name: 'Search Engine'\n }\n ],\n radius: '50%'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"hide-chart-while-data-sum-is-0"},"children":[{"type":"element","tag":"a","props":{"href":"#hide-chart-while-data-sum-is-0","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Hide Chart While Data Sum is 0"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, if the data sum is 0, the series will divide the shape equally. For instance, if you don't want to show any shape while all 4 series have value equals 0, you could define "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.stillShowZeroSum","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.stillShowZeroSum"}]}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n data: [\n {\n value: 0,\n name: 'Direct Visit'\n },\n {\n value: 0,\n name: 'Union Ad'\n },\n {\n value: 0,\n name: 'Search Engine'\n }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you are willing to hide the label as well, define the "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.label.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.show"}]}]},{"type":"text","value":" to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":" as well."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [{\n type: 'pie',\n stillShowZeroSum: false,\n label: {\n show: false\n }\n data: [{\n value: 0,\n name: 'Direct Visit'\n }, {\n value: 0,\n name: 'Union Ad'\n }, {\n value: 0,\n name: 'Search Engine'\n }]\n }]\n};\n"}]}]}]},"text":"# Basic Pie Chart\n\nPie charts are mainly used to show the proportion of several categories compared with the total. The radians represent the proportion of each category.\n\n## Simple Example\n\nThe config of the pie chart is not completely the same as the line chart and bar chart. There is no need to configure the axis. The name and value of data need to be defined in the series. Let's begin with a basic pie chart:\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'Direct Visit'\n },\n {\n value: 234,\n name: 'Union Ad'\n },\n {\n value: 1548,\n name: 'Search Engine'\n }\n ]\n }\n ]\n};\n```\n\nTo be mentioned, the `value` here does not need to be percentage data. ECharts will proportionately distribute their corresponding radians in the pie chart depending on all the data.\n\n## Customized Pie Chart\n\n### Radius of Pie Chart\n\nThe radius of pie chart can be defined by [`series.radius`](https://echarts.apache.org/option.html#series-pie.radius). Both percent string(`'60%'`) and absolute pixel string(`'200'`) are available. While it is a percent string, it is proportional related to the shorter container(`'div'`) edge.\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'Direct Visit'\n },\n {\n value: 234,\n name: 'Union Ad'\n },\n {\n value: 1548,\n name: 'Search Engine'\n }\n ],\n radius: '50%'\n }\n ]\n};\n```\n\n## Hide Chart While Data Sum is 0\n\nBy default, if the data sum is 0, the series will divide the shape equally. For instance, if you don't want to show any shape while all 4 series have value equals 0, you could define [`series.stillShowZeroSum`](https://echarts.apache.org/option.html#series-pie.stillShowZeroSum) to `false`.\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n data: [\n {\n value: 0,\n name: 'Direct Visit'\n },\n {\n value: 0,\n name: 'Union Ad'\n },\n {\n value: 0,\n name: 'Search Engine'\n }\n ]\n }\n ]\n};\n```\n\nIf you are willing to hide the label as well, define the [`series.label.show`](https://echarts.apache.org/option.html#series-pie.label.show) to `false` as well.\n\n```js [live]\noption = {\n series: [{\n type: 'pie',\n stillShowZeroSum: false,\n label: {\n show: false\n }\n data: [{\n value: 0,\n name: 'Direct Visit'\n }, {\n value: 0,\n name: 'Union Ad'\n }, {\n value: 0,\n name: 'Search Engine'\n }]\n }]\n};\n```\n","dir":"/en/application/chart-types/pie","path":"/en/application/chart-types/pie/basic-pie","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:19:35.547Z","meta":{"version":0,"revision":0,"created":1627897109424},"$loki":96},{"slug":"doughnut","toc":[{"id":"basic-doughnut-chart","depth":2,"text":"Basic Doughnut Chart"},{"id":"show-text-in-middle-of-doughnut-from-highlighted-sector","depth":2,"text":"Show Text In Middle Of Doughnut From Highlighted Sector"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"doughnut-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#doughnut-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Doughnut Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Doughnut charts are also used to show the proportion of values compared with the total. Different from the pie chart, the blank in the middle of the chart can be used to provide some extra info. It makes a doughnut chart commonly used chart type."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"basic-doughnut-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#basic-doughnut-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Doughnut Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In ECharts, the radius of the pie chart could also be an array with 2 elements. Every element in the array could be string or value. The first element represents the inner radius while the second one is the outer radius."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The bar chart, from this perspective, is a subset of the doughnut chart that has inner radius equals to 0."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n title: {\n text: 'A Case of Doughnut Chart',\n left: 'center',\n top: 'center'\n },\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'A'\n },\n {\n value: 234,\n name: 'B'\n },\n {\n value: 1548,\n name: 'C'\n }\n ],\n radius: ['40%', '70%']\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If we set one radius to string of a percentage value, while the other to a value, the inner radius will be smaller than the outer radius in some resolution. ECharts will choose the smaller element for the inner radius automatically. However, it will still cause not an unexpected outcome."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"show-text-in-middle-of-doughnut-from-highlighted-sector"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#show-text-in-middle-of-doughnut-from-highlighted-sector","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Show Text In Middle Of Doughnut From Highlighted Sector"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The previous case gives you a way to show fixed text in the middle of doughnut chart. The next case will show you how to display the corresponding text of the sector highlighted by the mouse. The general idea is to fix "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" in the middle of the chart while hiding "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" in default."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {\n orient: 'vertical',\n x: 'left',\n data: ['A', 'B', 'C', 'D', 'E']\n },\n series: [\n {\n type: 'pie',\n radius: ['50%', '70%'],\n avoidLabelOverlap: false,\n label: {\n show: false,\n position: 'center',\n emphasis: {\n show: true\n }\n },\n labelLine: {\n show: false\n },\n emphasis: {\n label: {\n show: true,\n fontSize: '30',\n fontWeight: 'bold'\n }\n },\n data: [\n { value: 335, name: 'A' },\n { value: 310, name: 'B' },\n { value: 234, name: 'C' },\n { value: 135, name: 'D' },\n { value: 1548, name: 'E' }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In this case, "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"avoidLabelOverlap"}]},{"type":"text","value":" is used to control whether ECharts adjust the position of label to avoid overlaps. Default value of "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"avoidLabelOverlap"}]},{"type":"text","value":" is "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":". We want the label to be fixed in the middle so that we need to define it as "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":"."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Therefore, the middle of doughnut chart will show the "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" of the highlighted sector."}]}]},"text":"# Doughnut Chart\n\nDoughnut charts are also used to show the proportion of values compared with the total. Different from the pie chart, the blank in the middle of the chart can be used to provide some extra info. It makes a doughnut chart commonly used chart type.\n\n## Basic Doughnut Chart\n\nIn ECharts, the radius of the pie chart could also be an array with 2 elements. Every element in the array could be string or value. The first element represents the inner radius while the second one is the outer radius.\n\nThe bar chart, from this perspective, is a subset of the doughnut chart that has inner radius equals to 0.\n\n```js [live]\noption = {\n title: {\n text: 'A Case of Doughnut Chart',\n left: 'center',\n top: 'center'\n },\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'A'\n },\n {\n value: 234,\n name: 'B'\n },\n {\n value: 1548,\n name: 'C'\n }\n ],\n radius: ['40%', '70%']\n }\n ]\n};\n```\n\nIf we set one radius to string of a percentage value, while the other to a value, the inner radius will be smaller than the outer radius in some resolution. ECharts will choose the smaller element for the inner radius automatically. However, it will still cause not an unexpected outcome.\n\n## Show Text In Middle Of Doughnut From Highlighted Sector\n\nThe previous case gives you a way to show fixed text in the middle of doughnut chart. The next case will show you how to display the corresponding text of the sector highlighted by the mouse. The general idea is to fix `label` in the middle of the chart while hiding `label` in default.\n\n```js [live]\noption = {\n legend: {\n orient: 'vertical',\n x: 'left',\n data: ['A', 'B', 'C', 'D', 'E']\n },\n series: [\n {\n type: 'pie',\n radius: ['50%', '70%'],\n avoidLabelOverlap: false,\n label: {\n show: false,\n position: 'center',\n emphasis: {\n show: true\n }\n },\n labelLine: {\n show: false\n },\n emphasis: {\n label: {\n show: true,\n fontSize: '30',\n fontWeight: 'bold'\n }\n },\n data: [\n { value: 335, name: 'A' },\n { value: 310, name: 'B' },\n { value: 234, name: 'C' },\n { value: 135, name: 'D' },\n { value: 1548, name: 'E' }\n ]\n }\n ]\n};\n```\n\nIn this case, `avoidLabelOverlap` is used to control whether ECharts adjust the position of label to avoid overlaps. Default value of `avoidLabelOverlap` is `true`. We want the label to be fixed in the middle so that we need to define it as `false`.\n\nTherefore, the middle of doughnut chart will show the `name` of the highlighted sector.\n","dir":"/en/application/chart-types/pie","path":"/en/application/chart-types/pie/doughnut","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:24:20.782Z","meta":{"version":0,"revision":0,"created":1627897109434},"$loki":97},{"slug":"rose","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rose-chart(nightingale-chart)"},"children":[{"type":"element","tag":"a","props":{"href":"#rose-chart%EF%BC%88nightingale-chart%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Rose Chart(Nightingale Chart)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Rose Chart, which was also called the nightingale chart, usually indicates categories by sector of the same radius but different radius."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts can implement Rose Chart by defining "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.roseType","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.roseType"}]}]},{"type":"text","value":" of pie chart to "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'area'"}]},{"type":"text","value":". All other configs are the same as a basic pie chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 100,\n name: 'A'\n },\n {\n value: 200,\n name: 'B'\n },\n {\n value: 300,\n name: 'C'\n },\n {\n value: 400,\n name: 'D'\n },\n {\n value: 500,\n name: 'E'\n }\n ],\n roseType: 'area'\n }\n ]\n};\n"}]}]}]},"text":"# Rose Chart(Nightingale Chart)\n\nRose Chart, which was also called the nightingale chart, usually indicates categories by sector of the same radius but different radius.\n\nECharts can implement Rose Chart by defining [`series.roseType`](https://echarts.apache.org/option.html#series-pie.roseType) of pie chart to `'area'`. All other configs are the same as a basic pie chart.\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 100,\n name: 'A'\n },\n {\n value: 200,\n name: 'B'\n },\n {\n value: 300,\n name: 'C'\n },\n {\n value: 400,\n name: 'D'\n },\n {\n value: 500,\n name: 'E'\n }\n ],\n roseType: 'area'\n }\n ]\n};\n```\n","dir":"/en/application/chart-types/pie","path":"/en/application/chart-types/pie/rose","extension":".md","createdAt":"2021-06-04T12:26:37.914Z","updatedAt":"2021-07-21T12:20:36.695Z","meta":{"version":0,"revision":0,"created":1627897109436},"$loki":98},{"slug":"stacked-bar","toc":[{"id":"suggestion-for-using-stacked-bar-chart","depth":2,"text":"Suggestion for Using Stacked Bar Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stacked-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#stacked-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Stacked Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The stacked bar chart is an extension of the bar chart. The difference is that the data in the bar chart is placed parallel while stacked together in the stacked bar chart. You can use a stacked bar chart to reflect the total amount of each category, as well as the proportional relationship of each data compared with the category. Therefore, it is very suitable for dealing with the relationship between part and whole."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Compared with the pie chart, a stacked bar chart can display several groups of \"part and whole\" relationship. For instance, you can use a pie or bar chart to display the statistics of the number of people in each project in a physical education course. You can use a stacked bar chart when you want to distinguish boys and girls in each project. As shown in the chart, it included the info of the \"part and whole\" relationship of each group."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBk7oUNwEz"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-stacked-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-stacked-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Stacked Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Follow the basic rule of bar charts. Please avoid using too many colors so that the chart can be easily understood. Don't deliberately display partly data to mislead the user."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Stacked bar chart is not suitable for comparing data inside the group."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"While there are 2 or 3 categories, a stacked bar chart will show the best effect. It is not recommended to include more than 6 categories. Too many data series will also make it very difficult to read and understand."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Try to avoid using a stacked bar chart with categories that included negative values. It will affect understanding or the proportion between part and whole."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Most of the stacked bar charts are vertically generated. However, if you have very long labels, try to use the horizontal stack method."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Stacked Bar Chart\n\nThe stacked bar chart is an extension of the bar chart. The difference is that the data in the bar chart is placed parallel while stacked together in the stacked bar chart. You can use a stacked bar chart to reflect the total amount of each category, as well as the proportional relationship of each data compared with the category. Therefore, it is very suitable for dealing with the relationship between part and whole.\n\nCompared with the pie chart, a stacked bar chart can display several groups of \"part and whole\" relationship. For instance, you can use a pie or bar chart to display the statistics of the number of people in each project in a physical education course. You can use a stacked bar chart when you want to distinguish boys and girls in each project. As shown in the chart, it included the info of the \"part and whole\" relationship of each group.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xBk7oUNwEz\">\n</iframe>\n\n## Suggestion for Using Stacked Bar Chart\n\n1. Follow the basic rule of bar charts. Please avoid using too many colors so that the chart can be easily understood. Don't deliberately display partly data to mislead the user.\n\n2. A Stacked bar chart is not suitable for comparing data inside the group.\n\n3. While there are 2 or 3 categories, a stacked bar chart will show the best effect. It is not recommended to include more than 6 categories. Too many data series will also make it very difficult to read and understand.\n\n4. Try to avoid using a stacked bar chart with categories that included negative values. It will affect understanding or the proportion between part and whole.\n\n5. Most of the stacked bar charts are vertically generated. However, if you have very long labels, try to use the horizontal stack method. \n","dir":"/en/best-practice/specification/bar","path":"/en/best-practice/specification/bar/stacked-bar","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-06-04T12:26:37.916Z","meta":{"version":0,"revision":0,"created":1627897109440},"$loki":99},{"slug":"grouped-bar","toc":[{"id":"suggestion-for-using-grouped-bar-chart","depth":2,"text":"Suggestion for Using Grouped Bar Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"grouped-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#grouped-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Grouped Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A grouped bar chart is also called the gathered bar chart. When more than two data series placed one by one on the same axis, the chart will be grouped bar chart. It is equivalent to a basic bar chart combined with two or more charts."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xr13FAH54f&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A grouped bar chart usually used to compare several groups of data that included the same kind of variables. Same as the bar chart, the length of the bars is proportional related to the categorical data. Every series have an individual color or different saturation of the same color system so that the user can distinguish and compare each set of data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW&v=3"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-grouped-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-grouped-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Grouped Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The difficulty of chart reading will be tremendous if there are many series in one group. Therefore, we suggest you use a stacked bar chart rather than a grouped bar chart in this situation."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The gap between the two groups should be bigger than the gap inside the group, to avoid visually incorrect classification."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Grouped Bar Chart\n\nA grouped bar chart is also called the gathered bar chart. When more than two data series placed one by one on the same axis, the chart will be grouped bar chart. It is equivalent to a basic bar chart combined with two or more charts.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xr13FAH54f&v=1\">\n</iframe>\n\nA grouped bar chart usually used to compare several groups of data that included the same kind of variables. Same as the bar chart, the length of the bars is proportional related to the categorical data. Every series have an individual color or different saturation of the same color system so that the user can distinguish and compare each set of data.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW&v=3\">\n</iframe>\n\n\n## Suggestion for Using Grouped Bar Chart\n\n1. The difficulty of chart reading will be tremendous if there are many series in one group. Therefore, we suggest you use a stacked bar chart rather than a grouped bar chart in this situation.\n\n2. The gap between the two groups should be bigger than the gap inside the group, to avoid visually incorrect classification.","dir":"/en/best-practice/specification/bar","path":"/en/best-practice/specification/bar/grouped-bar","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-06-04T12:26:37.916Z","meta":{"version":0,"revision":0,"created":1627897109455},"$loki":100},{"slug":"area","toc":[{"id":"suggestion-for-using-area-line-chart","depth":2,"text":"Suggestion for Using Area Line Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"area-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#area-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Area Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"\bThe area line chart is similar to the basic line chart. They both described the trend of data over time. The difference is that the fill color and texture of the area line chart created a surface that represents the data volume. For a line chart, the filling area can draw attention for users to the trend of the total value. Therefore, the area line chart is mostly used to convey the size of the trend but not single values."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=area-simple"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-area-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-area-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Area Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The area line chart uses the filling is to represent the data. While there are several layers in one chart, try to make sure that the data are not overlapping. If the overlapping is not avoidable, you define the color and opacity to an appropriate value to make the chart readable."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJ-4tL84M"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":2},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The area line chart is strong to display two or three categories of data. We suggest not to show more than 4 groups, or there will be too many data series to identify the data like the following chart. So, we need to avoid an area line chart that has more than three series in one chart."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You should not use the area line chart while there are no boundaries between data values. As shown below, it is familiar that there are 3 different colors at first glance."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkO64PIEG&v=1"},"children":[]}]},"text":"# Area Line Chart\n\bThe area line chart is similar to the basic line chart. They both described the trend of data over time. The difference is that the fill color and texture of the area line chart created a surface that represents the data volume. For a line chart, the filling area can draw attention for users to the trend of the total value. Therefore, the area line chart is mostly used to convey the size of the trend but not single values.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=area-simple\"></iframe>\n\n\n## Suggestion for Using Area Line Chart\n\n1. The area line chart uses the filling is to represent the data. While there are several layers in one chart, try to make sure that the data are not overlapping. If the overlapping is not avoidable, you define the color and opacity to an appropriate value to make the chart readable. \n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJ-4tL84M\"></iframe>\n\n2. The area line chart is strong to display two or three categories of data. We suggest not to show more than 4 groups, or there will be too many data series to identify the data like the following chart. So, we need to avoid an area line chart that has more than three series in one chart.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\"></iframe>\n\n3. You should not use the area line chart while there are no boundaries between data values. As shown below, it is familiar that there are 3 different colors at first glance.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkO64PIEG&v=1\"></iframe>\n","dir":"/en/best-practice/specification/line","path":"/en/best-practice/specification/line/area","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-06-04T12:26:37.916Z","meta":{"version":0,"revision":0,"created":1627897109468},"$loki":101},{"slug":"basic-bar","toc":[{"id":"suggestions-for-using-bar-chart","depth":2,"text":"Suggestions for Using Bar Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#basic-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bar Chart is a chart that presents the comparisons among discrete data. The length of the bars is proportional related to the categorical data."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"While the label of the series is long, or there are more than 10 categories in one chart, a horizontal column chart can not show all labels, or labels can only be shown tilted. It affects the appliance. Therefore, we use a vertical bar chart to get a better display effect."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xByXtUE7Vz"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestions-for-using-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestions-for-using-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestions for Using Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Avoid using too many colors. One bar chart represents one set of metrics in general so that we suggest to use the same color or at least different shades of the same color. You can use a contrasting color to highlight meaningful data points."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xByYRlN7Ef"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":2},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The gap between bars should be appropriate. When they are too close, the attention of the user may be focused on the gap between bars. A reasonable width should be not less than twice the gap between the bars."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data on Y-axis should be started from 0, to reflect the value appropriately. If the y-axis is incomplete, it will mislead the user to make wrong judgments. For instance, the chart on the left side shows that the income in 2017 is 4 times higher than in 2014. But the chart on the right side shows the truth that the income in 2017 only increased by 25% compared with 2014."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bar03.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":4},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"When sorting multiple data, if it is not related to some specific value like date, it is better to comply with a certain logic and guide the user to check the data in an intuitive way. In short, logical sorting can lead the user to read data better to a certain extent."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJhWhGm4M"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We don't recommend using a 3D bar chart because the data transmission is not accurate. Users even have to guess which is the top of the bar."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bar04.jpg"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"# Basic Bar Chart\n\nBar Chart is a chart that presents the comparisons among discrete data. The length of the bars is proportional related to the categorical data.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f\">\n</iframe>\n\nWhile the label of the series is long, or there are more than 10 categories in one chart, a horizontal column chart can not show all labels, or labels can only be shown tilted. It affects the appliance. Therefore, we use a vertical bar chart to get a better display effect.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xByXtUE7Vz\">\n</iframe>\n\n## Suggestions for Using Bar Chart\n\n1. Avoid using too many colors. One bar chart represents one set of metrics in general so that we suggest to use the same color or at least different shades of the same color. You can use a contrasting color to highlight meaningful data points.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xByYRlN7Ef\">\n</iframe>\n\n2. The gap between bars should be appropriate. When they are too close, the attention of the user may be focused on the gap between bars. A reasonable width should be not less than twice the gap between the bars.\n\n3. Data on Y-axis should be started from 0, to reflect the value appropriately. If the y-axis is incomplete, it will mislead the user to make wrong judgments. For instance, the chart on the left side shows that the income in 2017 is 4 times higher than in 2014. But the chart on the right side shows the truth that the income in 2017 only increased by 25% compared with 2014.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bar03.jpg\">\n</img>\n\n4. When sorting multiple data, if it is not related to some specific value like date, it is better to comply with a certain logic and guide the user to check the data in an intuitive way. In short, logical sorting can lead the user to read data better to a certain extent.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJhWhGm4M\">\n</iframe>\n\nWe don't recommend using a 3D bar chart because the data transmission is not accurate. Users even have to guess which is the top of the bar.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bar04.jpg\">\n</img>\n","dir":"/en/best-practice/specification/bar","path":"/en/best-practice/specification/bar/basic-bar","extension":".md","createdAt":"2021-06-04T12:26:37.915Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109472},"$loki":102},{"slug":"stacked-area","toc":[{"id":"suggestion-for-using-stacked-area-chart","depth":2,"text":"Suggestion for Using Stacked Area Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stacked-area-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#stacked-area-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Stacked Area Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The stacked area chart is a special kind of area chart. It is used to compare several data series in the same interval. The main difference between the area chart and stacked area chart is that the base of every series is over the previous one. Therefore, every time a line is measured, the area between the lines will be filled with color."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If there are several series and you want to analyze the part-to-whole relationship for every single one, which reflects the contribution of partial quantity to the total, you can use the stacked area chart. For instance, the contribution of one seller to the total sales."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySthj74z"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here are two different kinds of stacked area chart:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"b","props":{},"children":[{"type":"text","value":"Traditional stacked chart"}]},{"type":"text","value":": Use the original value to stack, show the change in the whole process."}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"b","props":{},"children":[{"type":"text","value":"Percentage stacked chart"}]},{"type":"text","value":": The percentage stacked chart shows how did the relationship between series changed with time. The cumulative total is not the focus as this kind of chart. The important is to show the series distribution as the whole."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-stacked-area-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-stacked-area-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Stacked Area Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The area chart can't display data in many series that are closed to each others. It will make the chart hard to read:"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With the same series, stacked bar chart works better:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["article-look-outside"]},"children":[{"type":"text","value":"\n\t"},{"type":"element","tag":"div","props":{"className":["article-look-inside"],"style":"padding-bottom:50%"},"children":[{"type":"text","value":"\n\t "},{"type":"element","tag":"iframe","props":{"className":["article-look-content"],"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[{"type":"text","value":"\n\t "}]},{"type":"text","value":"\n\t"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":2},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Although the stacked bar chart is good dealing with several series, try not to include more than 7 in one chart."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Because the stacked bar chart provides the relation between part and whole, you should not include negative value in series."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We suggest putting larger values on the top side of the chart, you will get a better display effect."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]}]},"text":"# Stacked Area Chart\nThe stacked area chart is a special kind of area chart. It is used to compare several data series in the same interval. The main difference between the area chart and stacked area chart is that the base of every series is over the previous one. Therefore, every time a line is measured, the area between the lines will be filled with color.\n\nIf there are several series and you want to analyze the part-to-whole relationship for every single one, which reflects the contribution of partial quantity to the total, you can use the stacked area chart. For instance, the contribution of one seller to the total sales.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySthj74z\">\n</iframe>\n\nHere are two different kinds of stacked area chart:\n\n+ <b>Traditional stacked chart</b>: Use the original value to stack, show the change in the whole process.\n+ <b>Percentage stacked chart</b>: The percentage stacked chart shows how did the relationship between series changed with time. The cumulative total is not the focus as this kind of chart. The important is to show the series distribution as the whole.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf\">\n</iframe>\n\n## Suggestion for Using Stacked Area Chart\n\n1. The area chart can't display data in many series that are closed to each others. It will make the chart hard to read: \n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\">\n</iframe>\n\nWith the same series, stacked bar chart works better:\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf\">\n</iframe>\n\n<div class=\"article-look-outside\">\n\t<div class=\"article-look-inside\" style=\"padding-bottom:50%\">\n\t <iframe class=\"article-look-content\"\n\t src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\">\n\t </iframe>\n\t</div>\n</div>\n\n2. Although the stacked bar chart is good dealing with several series, try not to include more than 7 in one chart.\n\n3. Because the stacked bar chart provides the relation between part and whole, you should not include negative value in series.\n\n4. We suggest putting larger values on the top side of the chart, you will get a better display effect.\n","dir":"/en/best-practice/specification/line","path":"/en/best-practice/specification/line/stacked-area","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-06-04T12:26:37.916Z","meta":{"version":0,"revision":0,"created":1627897109485},"$loki":103},{"slug":"bubble","toc":[{"id":"suggestion-for-using-bubble-chart","depth":2,"text":"Suggestion for Using Bubble Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"bubble-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#bubble-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Bubble Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The bubble chart shows the relevance between variables. Same as the scatter chart, data in bubble chart are set with points, it shows the relationship of data between two variables. The different part is that the scatter chart has several variables. It included the size of the bubble. A bigger bubble means a larger value. Users can analyze the law of data by the location and size of bubbles."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHkRpZuY4z&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-bubble-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-bubble-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Bubble Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"It is a good choice to choose a bubble chart while there are three series, features and related values. As shown below, the bubbles' position shows the date and specific time when the code was submitted, the size explained the amount of code submitted."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=scatter-punchCard"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":2},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You can also change the color of the bubbles. The chart below uses different colors to classify the air quality of three areas. Red is Beijing, yellow is Shanghai, and blue is Guangzhou. Users can visually compare and analyze the tire quality of the three places."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xr1kK7LoEf&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A bubble chart commonly used to combine with the map. X-axis and y-axis represent the longitude and latitude. The size of bubbles can be the magnitude of the value at that position."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=scatter-world-population"},"children":[{"type":"text","value":"\n"}]}]},"text":"# Bubble Chart\n\nThe bubble chart shows the relevance between variables. Same as the scatter chart, data in bubble chart are set with points, it shows the relationship of data between two variables. The different part is that the scatter chart has several variables. It included the size of the bubble. A bigger bubble means a larger value. Users can analyze the law of data by the location and size of bubbles. \n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHkRpZuY4z&v=1\">\n</iframe>\n\n## Suggestion for Using Bubble Chart\n\n1. It is a good choice to choose a bubble chart while there are three series, features and related values. As shown below, the bubbles' position shows the date and specific time when the code was submitted, the size explained the amount of code submitted.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=scatter-punchCard\">\n</iframe>\n\n2. You can also change the color of the bubbles. The chart below uses different colors to classify the air quality of three areas. Red is Beijing, yellow is Shanghai, and blue is Guangzhou. Users can visually compare and analyze the tire quality of the three places. \n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xr1kK7LoEf&v=1\">\n</iframe>\n\n3. A bubble chart commonly used to combine with the map. X-axis and y-axis represent the longitude and latitude. The size of bubbles can be the magnitude of the value at that position.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\" \n src=\"https://gallery.echartsjs.com/view-lite.html?cid=scatter-world-population\">\n</iframe>\n","dir":"/en/best-practice/specification/scatter","path":"/en/best-practice/specification/scatter/bubble","extension":".md","createdAt":"2021-06-04T12:26:37.917Z","updatedAt":"2021-06-04T12:26:37.917Z","meta":{"version":0,"revision":0,"created":1627897109490},"$loki":104},{"slug":"basic-line","toc":[{"id":"suggestion-for-using-line-chart","depth":2,"text":"Suggestion for Using Line Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"basic-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#basic-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Basic Line Chart."}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The line chart is basically used to show the phase trend over time. The line chart is pretty useful to display a continuous 2D dataset like the fluctuation in the number of website visitors or sales prices."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xB1kG1rLEG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Except for displaying the trend of developing things, the line chart can be used to compare several different datasets. As shown below, we use a line chart to compare the sales of three different commodities and analyze which one is the best."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkBiMSU4M&v=1"},"children":[{"type":"text","value":">\n "}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A line chart is drawn by connecting data points with lines. For the beauty of special effects, you can also connect points with curves as shown in the chart above. This chart is also called a curve chart or spline chart. The usage of the spline chart is the same as the line chart. The only difference is that the connection between data points is a curve but not a straight line."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-line-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-line-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Line Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To make sure the data readability, use solid lines in charts if you can separate the data line and axis."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Do not draw more than 4 lines in a chart. As shown below, lines are entangled together without obvious contrast that makes the whole chart confusing and difficult to read."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBJzdEItVz&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Don't use decorates to separate charts. The legend is helpful, but sometimes distracting users:"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS1Tbdr8EG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":4},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"When displaying the data of the line chart, avoid deliberately distorting the trend. The meaningful volatility analysis chart should make the height of the item be two-thirds of the height of the y-axis."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/line/line01.jpg"},"children":[]}]}]},"text":"# Basic Line Chart.\n\nThe line chart is basically used to show the phase trend over time. The line chart is pretty useful to display a continuous 2D dataset like the fluctuation in the number of website visitors or sales prices.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xB1kG1rLEG&v=1\">\n</iframe>\n\nExcept for displaying the trend of developing things, the line chart can be used to compare several different datasets. As shown below, we use a line chart to compare the sales of three different commodities and analyze which one is the best.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkBiMSU4M&v=1\">>\n </iframe>\n\nA line chart is drawn by connecting data points with lines. For the beauty of special effects, you can also connect points with curves as shown in the chart above. This chart is also called a curve chart or spline chart. The usage of the spline chart is the same as the line chart. The only difference is that the connection between data points is a curve but not a straight line.\n\n## Suggestion for Using Line Chart\n\n1. To make sure the data readability, use solid lines in charts if you can separate the data line and axis.\n\n2. Do not draw more than 4 lines in a chart. As shown below, lines are entangled together without obvious contrast that makes the whole chart confusing and difficult to read.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xBJzdEItVz&v=1\">\n</iframe>\n\n3. Don't use decorates to separate charts. The legend is helpful, but sometimes distracting users:\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS1Tbdr8EG&v=1\">\n</iframe>\n\n4. When displaying the data of the line chart, avoid deliberately distorting the trend. The meaningful volatility analysis chart should make the height of the item be two-thirds of the height of the y-axis.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/line/line01.jpg\"></img>\n","dir":"/en/best-practice/specification/line","path":"/en/best-practice/specification/line/basic-line","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109499},"$loki":105},{"slug":"bi-directional-bar","toc":[{"id":"suggestion-for-using-bi-directional-bar-chart","depth":2,"text":"Suggestion for Using Bi-directional Bar Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bi-directional bar charts are mostly used to show values that included in two opposite meaning categories. One axis shows the name of categories being compared, while the other axis represents the scale value. As an example, Using a bi-directional bar chart to analyze the personal income (positive number) and outcome (negative number) in a week, you can easily find the value and fluctuation of income and outcome in a single series."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The bi-directional bar can be classified into the vertical chart (above) and horizontal chart(below, also called positive negative bar chart). For example, you can use a positive negative bar chart if there are positive and negative comments in a customer satisfaction survey data analysis. All data align in the middle, the positive comments attribute on the right side while the negative comments on the left side."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJ1un374z"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-bi-directional-bar-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-bi-directional-bar-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Bi-directional Bar Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The data on both sides in the bi-directional bar chart are comparative."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Don't define negative data on the right side of the bi-directional bar chart, to prevent misunderstanding caused by the violation of common sense."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bi-directional-bar01.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A bi-directional bar chart always used to display data with the opposite meaning, so that you need to avoid misunderstanding caused by the use of data that does not have a positive or negative meaning. As the chart below, there is no antagonism between the data of male and female, so that it is a better choice to use a basic bar chart rather than a bi-directional bar chart."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bi-directional-bar02.jpg"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"Bi-directional bar charts are mostly used to show values that included in two opposite meaning categories. One axis shows the name of categories being compared, while the other axis represents the scale value. As an example, Using a bi-directional bar chart to analyze the personal income (positive number) and outcome (negative number) in a week, you can easily find the value and fluctuation of income and outcome in a single series.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f\">\n</iframe>\n\nThe bi-directional bar can be classified into the vertical chart (above) and horizontal chart(below, also called positive negative bar chart). For example, you can use a positive negative bar chart if there are positive and negative comments in a customer satisfaction survey data analysis. All data align in the middle, the positive comments attribute on the right side while the negative comments on the left side.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJ1un374z\">\n</iframe>\n\n## Suggestion for Using Bi-directional Bar Chart\n\n1. The data on both sides in the bi-directional bar chart are comparative.\n\n2. Don't define negative data on the right side of the bi-directional bar chart, to prevent misunderstanding caused by the violation of common sense.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bi-directional-bar01.jpg\">\n</img>\n\n3. A bi-directional bar chart always used to display data with the opposite meaning, so that you need to avoid misunderstanding caused by the use of data that does not have a positive or negative meaning. As the chart below, there is no antagonism between the data of male and female, so that it is a better choice to use a basic bar chart rather than a bi-directional bar chart.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bi-directional-bar02.jpg\">\n</img>\n","dir":"/en/best-practice/specification/bar","path":"/en/best-practice/specification/bar/bi-directional-bar","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109507},"$loki":106},{"slug":"basic-pie","toc":[{"id":"suggestion-for-using-pie-chart","depth":2,"text":"Suggestion for Using Pie Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"pie-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#pie-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Pie Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The pie chart is mainly used to display the proportion of different categories compared with the total. The arc length of each sector in the figure means the proportion of the category. The sum of all categories is 100%."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Even the pie chart can display the distribution radio of the data, and widely used in every field, there is still controversy around the pie chart and its deformation chart. Therefore, you should use the pie chart with caution and avoid misunderstanding."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-pie-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-pie-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Pie Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The pie chart is preferred to show the proportion of data in the same dimension. It requests the data to be positive. Please also make sure the total of sectors is 100%."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"It is hard to compare the data in the pie chart with too many pieces. We suggest to controlling the number of categories under five. While there are too many categories, we might merge some unimportant data together, and name as \"other\". If all categories cannot be omitted, you should try a bar chart or stacked bar chart as an alternative."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie02.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The pie chart is not appropriate for the comparison of precise data. The following graph (left below) shows that every sector has almost the same proportion. In this case, you should try a bar chart or rose chart (right below) to achieve a better effect."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie03.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":4},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual habits of most people are observing from top to bottom in clockwise. Therefore we recommend you put the largest sector in the first place in the clockwise direction to stress the importance."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two advices for the rest of the data. Arrange sectors from big to small in clockwise or anti-clockwise follows the largest one:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie01.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Order the sectors according to the size not only consistent with the visual habits but also easier for data's identify and comparison. Base on this principle, you can put the part that needs to emphasize (don't need to be the largest part) at the prominent position."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":5},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You can add some decorations like color, motion, style, position to stress some data in a chart. Please be moderate or it will distract the user."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":6},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"3D pie chart distorted the ratio between each sector, which will cause mistakes and confusion in understanding. Therefore,a 3D pie chart is not recommended."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie04.jpg"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"# Pie Chart\n\nThe pie chart is mainly used to display the proportion of different categories compared with the total. The arc length of each sector in the figure means the proportion of the category. The sum of all categories is 100%.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1\">\n</iframe>\n\nEven the pie chart can display the distribution radio of the data, and widely used in every field, there is still controversy around the pie chart and its deformation chart. Therefore, you should use the pie chart with caution and avoid misunderstanding.\n\n## Suggestion for Using Pie Chart\n\n1. The pie chart is preferred to show the proportion of data in the same dimension. It requests the data to be positive. Please also make sure the total of sectors is 100%.\n\n2. It is hard to compare the data in the pie chart with too many pieces. We suggest to controlling the number of categories under five. While there are too many categories, we might merge some unimportant data together, and name as \"other\". If all categories cannot be omitted, you should try a bar chart or stacked bar chart as an alternative.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/pie/pie02.jpg\">\n</img>\n\n3. The pie chart is not appropriate for the comparison of precise data. The following graph (left below) shows that every sector has almost the same proportion. In this case, you should try a bar chart or rose chart (right below) to achieve a better effect.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/pie/pie03.jpg\">\n</img>\n\n4. Visual habits of most people are observing from top to bottom in clockwise. Therefore we recommend you put the largest sector in the first place in the clockwise direction to stress the importance.\n\nThere are two advices for the rest of the data. Arrange sectors from big to small in clockwise or anti-clockwise follows the largest one:\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/pie/pie01.jpg\">\n</img>\n\nOrder the sectors according to the size not only consistent with the visual habits but also easier for data's identify and comparison. Base on this principle, you can put the part that needs to emphasize (don't need to be the largest part) at the prominent position.\n\n5. You can add some decorations like color, motion, style, position to stress some data in a chart. Please be moderate or it will distract the user.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1\">\n</iframe>\n\n6. 3D pie chart distorted the ratio between each sector, which will cause mistakes and confusion in understanding. Therefore,a 3D pie chart is not recommended.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/pie/pie04.jpg\">\n</img>\n","dir":"/en/best-practice/specification/pie","path":"/en/best-practice/specification/pie/basic-pie","extension":".md","createdAt":"2021-06-04T12:26:37.916Z","updatedAt":"2021-07-29T06:23:03.536Z","meta":{"version":0,"revision":0,"created":1627897109516},"$loki":107},{"slug":"scatter","toc":[{"id":"suggestion-for-using-scatter-chart","depth":2,"text":"Suggestion for Using Scatter Chart"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"scatter-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#scatter-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Scatter Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The scatter chart shows the relation between the two variables. Data is embodied as a collection of points, which is appropriate to compare a large number of data without considering the time. The scatter chart can identify the relevant and relation of two variables thus find some trend. The scatter chart is also workable to find outliers or to understand data distribution. The chart above shows the distribution of the height and weight of students in a class."}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkCyUwKNG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The scatter chart can reflect the correlation(relation between variables) of a different type. It can be positively correlated, negatively correlated and uncorrelated."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Positively Correlated: When one value increases, the other value increases."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Negatively Correlated: When one value increases, the other value decreases."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Uncorrelated: Two values have no obvious relation and have no influence on each other."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/scatter/scatter5.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To be mentioned, the scatter chart can effectively illustrate the correlation between the two variables. However, it cannot strongly prove there exist causality. For example, AD serving and Visits are positively correlated, but we cannot prove that more AD serving must lead to more Visits. However, we have enough reason to increase the AD serving and observe the outcome after we find out the positive correlation between them."}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"suggestion-for-using-scatter-chart"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#suggestion-for-using-scatter-chart","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"Suggestion for Using Scatter Chart"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If no correlation was shown in the scatter chart, then the scatter chart is not the best choice."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If the package included a different series, you can use different colors for each series. As an example, add the legend to mark male as blue, female as red. You can not only distinguish the height and weight of different genders but also add an auxiliary line for the average of each series to improve the understanding of the distribution. In this case, females have more amount higher than the average value than lower."}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBy9E2oufM"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The trend line is useful when observing the relationship between two variables. The shape of the trend line can explain the relation type of two variables as well as make a prediction. It is better to include only two trend lines to avoid interference with the reading."}]},{"type":"text","value":"\n"},{"type":"element","tag":"ol","props":{"start":3},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The scatter points can present a good appearance only with adequate and relevant data. It is meaningless to draw a chart with very little and unrelated values."}]},{"type":"text","value":"\n"}]}]},"text":"# Scatter Chart\n\nThe scatter chart shows the relation between the two variables. Data is embodied as a collection of points, which is appropriate to compare a large number of data without considering the time. The scatter chart can identify the relevant and relation of two variables thus find some trend. The scatter chart is also workable to find outliers or to understand data distribution. The chart above shows the distribution of the height and weight of students in a class.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkCyUwKNG&v=1\">\n</iframe>\n\nThe scatter chart can reflect the correlation(relation between variables) of a different type. It can be positively correlated, negatively correlated and uncorrelated.\n\n- Positively Correlated: When one value increases, the other value increases.\n\n- Negatively Correlated: When one value increases, the other value decreases.\n\n- Uncorrelated: Two values have no obvious relation and have no influence on each other.\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/scatter/scatter5.jpg\">\n</img>\n\nTo be mentioned, the scatter chart can effectively illustrate the correlation between the two variables. However, it cannot strongly prove there exist causality. For example, AD serving and Visits are positively correlated, but we cannot prove that more AD serving must lead to more Visits. However, we have enough reason to increase the AD serving and observe the outcome after we find out the positive correlation between them.\n\n## Suggestion for Using Scatter Chart\n\n1. If no correlation was shown in the scatter chart, then the scatter chart is not the best choice.\n\n2. If the package included a different series, you can use different colors for each series. As an example, add the legend to mark male as blue, female as red. You can not only distinguish the height and weight of different genders but also add an auxiliary line for the average of each series to improve the understanding of the distribution. In this case, females have more amount higher than the average value than lower.\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xBy9E2oufM\">\n</iframe>\n\nThe trend line is useful when observing the relationship between two variables. The shape of the trend line can explain the relation type of two variables as well as make a prediction. It is better to include only two trend lines to avoid interference with the reading.\n\n3. The scatter points can present a good appearance only with adequate and relevant data. It is meaningless to draw a chart with very little and unrelated values.\n","dir":"/en/best-practice/specification/scatter","path":"/en/best-practice/specification/scatter/scatter","extension":".md","createdAt":"2021-06-04T12:26:37.917Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109520},"$loki":108},{"slug":"polar-bar","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"极坐标系柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%9E%81%E5%9D%90%E6%A0%87%E7%B3%BB%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"极坐标系柱状图"}]}]},"text":"# 极坐标系柱状图\n","dir":"/zh/application/chart-types/bar","path":"/zh/application/chart-types/bar/polar-bar","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-06-04T12:26:37.920Z","meta":{"version":0,"revision":0,"created":1627897109521},"$loki":109},{"slug":"bar-race","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"动态排序柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%8A%A8%E6%80%81%E6%8E%92%E5%BA%8F%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"动态排序柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"动态排序柱状图是 ECharts 5.0 新增的功能。"}]}]},"text":"# 动态排序柱状图\n\n动态排序柱状图是 ECharts 5.0 新增的功能。\n","dir":"/zh/application/chart-types/bar","path":"/zh/application/chart-types/bar/bar-race","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-06-04T12:26:37.920Z","meta":{"version":0,"revision":0,"created":1627897109521},"$loki":110},{"slug":"basic-bar","toc":[{"id":"最简单的柱状图","depth":2,"text":"最简单的柱状图"},{"id":"多系列的柱状图","depth":2,"text":"多系列的柱状图"},{"id":"柱状图样式设置","depth":2,"text":"柱状图样式设置"},{"id":"柱条样式","depth":3,"text":"柱条样式"},{"id":"柱条宽度和高度","depth":3,"text":"柱条宽度和高度"},{"id":"柱条间距","depth":3,"text":"柱条间距"},{"id":"为柱条添加背景色","depth":3,"text":"为柱条添加背景色"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基本柱状图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9F%BA%E6%9C%AC%E6%9F%B1%E7%8A%B6%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基本柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱状图(或称条形图)是一种通过柱形的长度来表现数据大小的一种常用图表类型。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"设置柱状图的方式,是将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" 设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'bar'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"text","value":"[配置项手册]"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"最简单的柱状图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84%E6%9F%B1%E7%8A%B6%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"最简单的柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"最简单的柱状图可以这样设置:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,横坐标是类目型的,因此需要在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" 中指定对应的值;而纵坐标是数值型的,可以根据 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 中的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":",自动生成对应的坐标范围。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"多系列的柱状图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%A4%9A%E7%B3%BB%E5%88%97%E7%9A%84%E6%9F%B1%E7%8A%B6%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"多系列的柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"我们可以用一个系列表示一组相关的数据,如果需要实现多系列的柱状图,只需要在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 多添加一项就可以了——"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n },\n {\n type: 'bar',\n data: [26, 24, 18, 22, 23, 20, 27]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"柱状图样式设置"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9F%B1%E7%8A%B6%E5%9B%BE%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"柱状图样式设置"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"柱条样式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9F%B1%E6%9D%A1%E6%A0%B7%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"柱条样式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱条的样式可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.itemStyle"}]}]},{"type":"text","value":" 设置,包括:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"柱条的颜色("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"color"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"柱条的描边颜色("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderColor"}]},{"type":"text","value":")、宽度("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderWidth"}]},{"type":"text","value":")、样式("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"borderType"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"柱条圆角的半径("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barBorderRadius"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"柱条透明度("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"opacity"}]},{"type":"text","value":");"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"阴影("},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowBlur"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowColor"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetX"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"shadowOffsetY"}]},{"type":"text","value":")。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,我们通过设置柱状图对应 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 的"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"itemStyle"}]},{"type":"text","value":",设置了柱条的样式。完整的配置项及其用法请参见配置项手册 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.itemStyle"}]}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"柱条宽度和高度"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9F%B1%E6%9D%A1%E5%AE%BD%E5%BA%A6%E5%92%8C%E9%AB%98%E5%BA%A6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"柱条宽度和高度"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱条宽度可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html##series-bar.barWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]}]},{"type":"text","value":" 设置。比如在下面的例子中,将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]},{"type":"text","value":" 设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'20%'"}]},{"type":"text","value":",表示每个柱条的宽度就是类目宽度的 20%。由于这个例子中,每个系列有 5 个数据,20% 的类目宽度也就是整个 x 轴宽度的 4%。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"另外,还可以设置 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barMaxWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMaxWidth"}]}]},{"type":"text","value":" 限制柱条的最大宽度。对于一些特别小的数据,我们也可以为柱条指定最小高度 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barMinHeight","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMinHeight"}]}]},{"type":"text","value":",当数据对应的柱条高度小于该值时,柱条高度将采用这个最小高度。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"柱条间距"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9F%B1%E6%9D%A1%E9%97%B4%E8%B7%9D","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"柱条间距"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱条间距分为两种,一种是不同系列在同一类目下的距离 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barWidth","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]}]},{"type":"text","value":",另一种是类目与类目的距离 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.barCategoryGap","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 18],\n barGap: '20%',\n barCategoryGap: '40%'\n },\n {\n type: 'bar',\n data: [12, 14, 9, 9, 11]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barGap"}]},{"type":"text","value":" 被设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'20%'"}]},{"type":"text","value":",这意味着每个类目(比如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"A"}]},{"type":"text","value":")下的两个柱子之间的距离,相对于柱条宽度的百分比。而 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]},{"type":"text","value":" 是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'40%'"}]},{"type":"text","value":",意味着柱条每侧空余的距离,相对于柱条宽度的百分比。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"通常而言,设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barGap"}]},{"type":"text","value":" 及 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barCategoryGap"}]},{"type":"text","value":" 后,就不需要设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barWidth"}]},{"type":"text","value":" 了,这时候的宽度会自动调整。如果有需要的话,可以设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"barMaxWidth"}]},{"type":"text","value":" 作为柱条宽度的上限,当图表宽度很大的时候,柱条宽度也不会太宽。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在同一坐标系上,此属性会被多个柱状图系列共享。此属性应设置于此坐标系中最后一个柱状图系列上才会生效,并且是对此坐标系中所有柱状图系列生效。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"为柱条添加背景色"},"children":[{"type":"element","tag":"a","props":{"href":"#%E4%B8%BA%E6%9F%B1%E6%9D%A1%E6%B7%BB%E5%8A%A0%E8%83%8C%E6%99%AF%E8%89%B2","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"为柱条添加背景色"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有时,我们希望能够为柱条添加背景色。从 ECharts 4.7.0 版本开始,这一功能可以简单地用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.showBackground","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"showBackground"}]}]},{"type":"text","value":" 开启,并且可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-bar.backgroundStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"backgroundStyle"}]}]},{"type":"text","value":" 配置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150, 80, 70, 110, 130],\n type: 'bar',\n showBackground: true,\n backgroundStyle: {\n color: 'rgba(220, 220, 220, 0.8)'\n }\n }\n ]\n};\n"}]}]}]},"text":"# 基本柱状图\n\n柱状图(或称条形图)是一种通过柱形的长度来表现数据大小的一种常用图表类型。\n\n设置柱状图的方式,是将 `series` 的 `type` 设为 `'bar'`。\n\n[[配置项手册]](https://echarts.apache.org/option.html#series-bar)\n\n## 最简单的柱状图\n\n最简单的柱状图可以这样设置:\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n }\n ]\n};\n```\n\n在这个例子中,横坐标是类目型的,因此需要在 `xAxis` 中指定对应的值;而纵坐标是数值型的,可以根据 `series` 中的 `data`,自动生成对应的坐标范围。\n\n## 多系列的柱状图\n\n我们可以用一个系列表示一组相关的数据,如果需要实现多系列的柱状图,只需要在 `series` 多添加一项就可以了——\n\n```js [live]\noption = {\n xAxis: {\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 27, 28, 25]\n },\n {\n type: 'bar',\n data: [26, 24, 18, 22, 23, 20, 27]\n }\n ]\n};\n```\n\n## 柱状图样式设置\n\n### 柱条样式\n\n柱条的样式可以通过 [`series.itemStyle`](https://echarts.apache.org/option.html#series-bar.itemStyle) 设置,包括:\n\n- 柱条的颜色(`color`);\n- 柱条的描边颜色(`borderColor`)、宽度(`borderWidth`)、样式(`borderType`);\n- 柱条圆角的半径(`barBorderRadius`);\n- 柱条透明度(`opacity`);\n- 阴影(`shadowBlur`、`shadowColor`、`shadowOffsetX`、`shadowOffsetY`)。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\n在这个例子中,我们通过设置柱状图对应 `series` 的`itemStyle`,设置了柱条的样式。完整的配置项及其用法请参见配置项手册 [`series.itemStyle`](https://echarts.apache.org/option.html#series-bar.itemStyle)。\n\n### 柱条宽度和高度\n\n柱条宽度可以通过 [`barWidth`](https://echarts.apache.org/option.html##series-bar.barWidth) 设置。比如在下面的例子中,将 `barWidth` 设为 `'20%'`,表示每个柱条的宽度就是类目宽度的 20%。由于这个例子中,每个系列有 5 个数据,20% 的类目宽度也就是整个 x 轴宽度的 4%。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\n另外,还可以设置 [`barMaxWidth`](https://echarts.apache.org/option.html#series-bar.barMaxWidth) 限制柱条的最大宽度。对于一些特别小的数据,我们也可以为柱条指定最小高度 [`barMinHeight`](https://echarts.apache.org/option.html#series-bar.barMinHeight),当数据对应的柱条高度小于该值时,柱条高度将采用这个最小高度。\n\n### 柱条间距\n\n柱条间距分为两种,一种是不同系列在同一类目下的距离 [`barWidth`](https://echarts.apache.org/option.html#series-bar.barWidth),另一种是类目与类目的距离 [`barCategoryGap`](https://echarts.apache.org/option.html#series-bar.barCategoryGap)。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n type: 'bar',\n data: [23, 24, 18, 25, 18],\n barGap: '20%',\n barCategoryGap: '40%'\n },\n {\n type: 'bar',\n data: [12, 14, 9, 9, 11]\n }\n ]\n};\n```\n\n在这个例子中,`barGap` 被设为 `'20%'`,这意味着每个类目(比如 `A`)下的两个柱子之间的距离,相对于柱条宽度的百分比。而 `barCategoryGap` 是 `'40%'`,意味着柱条每侧空余的距离,相对于柱条宽度的百分比。\n\n通常而言,设置 `barGap` 及 `barCategoryGap` 后,就不需要设置 `barWidth` 了,这时候的宽度会自动调整。如果有需要的话,可以设置 `barMaxWidth` 作为柱条宽度的上限,当图表宽度很大的时候,柱条宽度也不会太宽。\n\n> 在同一坐标系上,此属性会被多个柱状图系列共享。此属性应设置于此坐标系中最后一个柱状图系列上才会生效,并且是对此坐标系中所有柱状图系列生效。\n\n### 为柱条添加背景色\n\n有时,我们希望能够为柱条添加背景色。从 ECharts 4.7.0 版本开始,这一功能可以简单地用 [`showBackground`](https://echarts.apache.org/option.html#series-bar.showBackground) 开启,并且可以通过 [`backgroundStyle`](https://echarts.apache.org/option.html#series-bar.backgroundStyle) 配置。\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150, 80, 70, 110, 130],\n type: 'bar',\n showBackground: true,\n backgroundStyle: {\n color: 'rgba(220, 220, 220, 0.8)'\n }\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/bar","path":"/zh/application/chart-types/bar/basic-bar","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-07-21T12:33:34.758Z","meta":{"version":0,"revision":0,"created":1627897109528},"$loki":111},{"slug":"stacked-bar","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"堆叠柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%A0%86%E5%8F%A0%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有时候,我们不仅希望知道不同系列各自的数值,还希望知道它们之和的变化,这时候通常使用堆积柱状图图来表现。顾名思义,堆积柱状图就是一个系列的数值“堆积”在另一个系列上,因而从他们的高度总和就能表达总量的变化。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"使用 EChart 实现堆积折线图的方法非常简单,只需要给一个系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" 值设置一个字符串类型的值,这一个值表示该系列堆积的类别。也就是说,拥有同样 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" 值的系列将堆积在一组。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,第二个系列所在的位置是在第一个系列的位置的基础上,上升了第二个系列数值对应的高度。因此,从第二个系列的位置,就能看出这两者总和的变化趋势。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" 的取值用来表明哪些系列将被堆积在一起,理论上只要取值相同即可,具体的取值并没有什么区别。但在实际的应用中,我们建议使用一些有意义的字符串方便阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"比如,在一个统计男女人数的图中,有四个系列,“成年男性”和“男孩”系列需要进行堆积,“成年女性”和“女孩”系列需要堆积。这时,这两组的的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" 值就建议分别设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'男'"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'女'"}]},{"type":"text","value":"。虽然使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'a'"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'b'"}]},{"type":"text","value":" 这样没有意义的字符串也能实现同样的效果,但是代码的可阅读性就差了。"}]},{"type":"text","value":"\n"}]}]},"text":"# 堆叠柱状图\n\n有时候,我们不仅希望知道不同系列各自的数值,还希望知道它们之和的变化,这时候通常使用堆积柱状图图来表现。顾名思义,堆积柱状图就是一个系列的数值“堆积”在另一个系列上,因而从他们的高度总和就能表达总量的变化。\n\n使用 EChart 实现堆积折线图的方法非常简单,只需要给一个系列的 `stack` 值设置一个字符串类型的值,这一个值表示该系列堆积的类别。也就是说,拥有同样 `stack` 值的系列将堆积在一组。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'bar',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'bar',\n stack: 'x'\n }\n ]\n};\n```\n\n在这个例子中,第二个系列所在的位置是在第一个系列的位置的基础上,上升了第二个系列数值对应的高度。因此,从第二个系列的位置,就能看出这两者总和的变化趋势。\n\n> `stack` 的取值用来表明哪些系列将被堆积在一起,理论上只要取值相同即可,具体的取值并没有什么区别。但在实际的应用中,我们建议使用一些有意义的字符串方便阅读。\n>\n> 比如,在一个统计男女人数的图中,有四个系列,“成年男性”和“男孩”系列需要进行堆积,“成年女性”和“女孩”系列需要堆积。这时,这两组的的 `stack` 值就建议分别设为 `'男'` 和 `'女'`。虽然使用 `'a'` 和 `'b'` 这样没有意义的字符串也能实现同样的效果,但是代码的可阅读性就差了。\n","dir":"/zh/application/chart-types/bar","path":"/zh/application/chart-types/bar/stacked-bar","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-07-21T12:35:06.469Z","meta":{"version":0,"revision":0,"created":1627897109536},"$loki":112},{"slug":"rose","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"南丁格尔图(玫瑰图)"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8D%97%E4%B8%81%E6%A0%BC%E5%B0%94%E5%9B%BE%EF%BC%88%E7%8E%AB%E7%91%B0%E5%9B%BE%EF%BC%89","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"南丁格尔图(玫瑰图)"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"南丁格尔图又称玫瑰图,通常用弧度相同但半径不同的扇形表示各个类目。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 可以通过将饼图的 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.roseType","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.roseType"}]}]},{"type":"text","value":" 值设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'area'"}]},{"type":"text","value":" 实现南丁格尔图,其他配置项和饼图是相同的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 100,\n name: 'A'\n },\n {\n value: 200,\n name: 'B'\n },\n {\n value: 300,\n name: 'C'\n },\n {\n value: 400,\n name: 'D'\n },\n {\n value: 500,\n name: 'E'\n }\n ],\n roseType: 'area'\n }\n ]\n};\n"}]}]}]},"text":"# 南丁格尔图(玫瑰图)\n\n南丁格尔图又称玫瑰图,通常用弧度相同但半径不同的扇形表示各个类目。\n\nECharts 可以通过将饼图的 [`series.roseType`](https://echarts.apache.org/option.html#series-pie.roseType) 值设为 `'area'` 实现南丁格尔图,其他配置项和饼图是相同的。\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 100,\n name: 'A'\n },\n {\n value: 200,\n name: 'B'\n },\n {\n value: 300,\n name: 'C'\n },\n {\n value: 400,\n name: 'D'\n },\n {\n value: 500,\n name: 'E'\n }\n ],\n roseType: 'area'\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/pie","path":"/zh/application/chart-types/pie/rose","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-06-04T12:26:37.922Z","meta":{"version":0,"revision":0,"created":1627897109537},"$loki":113},{"slug":"doughnut","toc":[{"id":"基础圆环图","depth":2,"text":"基础圆环图"},{"id":"在圆环图中间显示高亮扇形对应的文字","depth":2,"text":"在圆环图中间显示高亮扇形对应的文字"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"圆环图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9C%86%E7%8E%AF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"圆环图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"圆环图同样可以用来表示数据占总体的比例,相比于饼图,它中间空余的部分可以用来显示一些额外的文字等信息,因而也是一种常用的图表类型。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"基础圆环图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9F%BA%E7%A1%80%E5%9C%86%E7%8E%AF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础圆环图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 中,饼图的半径除了上一小节提到的,可以是一个数值或者字符串之外,还可以是一个包含两个元素的数组,每个元素可以为数值或字符串。当它是一个数组时,它的前一项表示内半径,后一项表示外半径,这样就形成了一个圆环图。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"从这个角度上来说,可以认为饼图是一个内半径为 0 的圆环图,也就是说,饼图是圆环图的特例。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n title: {\n text: '圆环图的例子',\n left: 'center',\n top: 'center'\n },\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'A'\n },\n {\n value: 234,\n name: 'B'\n },\n {\n value: 1548,\n name: 'C'\n }\n ],\n radius: ['40%', '70%']\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果半径是数组,其中的两项也可以一项是数值,另一项是百分比形式的字符串。但是这样可能导致在某些分辨率下,内半径小于外半径。ECharts 会自动使用小的一项作为内半径,但是仍应小心这样可能会导致的非预期效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"在圆环图中间显示高亮扇形对应的文字"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9C%A8%E5%9C%86%E7%8E%AF%E5%9B%BE%E4%B8%AD%E9%97%B4%E6%98%BE%E7%A4%BA%E9%AB%98%E4%BA%AE%E6%89%87%E5%BD%A2%E5%AF%B9%E5%BA%94%E7%9A%84%E6%96%87%E5%AD%97","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在圆环图中间显示高亮扇形对应的文字"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"上面的例子展现了在圆环图中间显示固定文字的例子,下面我们要介绍,如何在圆环图中间显示鼠标高亮的扇形对应的文字。实现这一效果的思路是,利用系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":"(默认用扇形颜色显示数据的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":"),显示在圆环图中间。在默认情况下不显示系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":",在高亮时显示。具体的代码如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n legend: {\n orient: 'vertical',\n x: 'left',\n data: ['A', 'B', 'C', 'D', 'E']\n },\n series: [\n {\n type: 'pie',\n radius: ['50%', '70%'],\n avoidLabelOverlap: false,\n label: {\n show: false,\n position: 'center',\n emphasis: {\n show: true\n }\n },\n labelLine: {\n show: false\n },\n emphasis: {\n label: {\n show: true,\n fontSize: '30',\n fontWeight: 'bold'\n }\n },\n data: [\n { value: 335, name: 'A' },\n { value: 310, name: 'B' },\n { value: 234, name: 'C' },\n { value: 135, name: 'D' },\n { value: 1548, name: 'E' }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其中,"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"avoidLabelOverlap"}]},{"type":"text","value":" 是用来控制是否由 ECharts 调整标签位置以实现防止标签重叠。它的默认值是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":",而在这里,我们不希望标签位置调整到不是中间的位置,因此我们需要将其设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这样,圆环图中间会显示高亮数据的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" 值。"}]}]},"text":"# 圆环图\n\n圆环图同样可以用来表示数据占总体的比例,相比于饼图,它中间空余的部分可以用来显示一些额外的文字等信息,因而也是一种常用的图表类型。\n\n## 基础圆环图\n\n在 ECharts 中,饼图的半径除了上一小节提到的,可以是一个数值或者字符串之外,还可以是一个包含两个元素的数组,每个元素可以为数值或字符串。当它是一个数组时,它的前一项表示内半径,后一项表示外半径,这样就形成了一个圆环图。\n\n从这个角度上来说,可以认为饼图是一个内半径为 0 的圆环图,也就是说,饼图是圆环图的特例。\n\n```js [live]\noption = {\n title: {\n text: '圆环图的例子',\n left: 'center',\n top: 'center'\n },\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: 'A'\n },\n {\n value: 234,\n name: 'B'\n },\n {\n value: 1548,\n name: 'C'\n }\n ],\n radius: ['40%', '70%']\n }\n ]\n};\n```\n\n如果半径是数组,其中的两项也可以一项是数值,另一项是百分比形式的字符串。但是这样可能导致在某些分辨率下,内半径小于外半径。ECharts 会自动使用小的一项作为内半径,但是仍应小心这样可能会导致的非预期效果。\n\n## 在圆环图中间显示高亮扇形对应的文字\n\n上面的例子展现了在圆环图中间显示固定文字的例子,下面我们要介绍,如何在圆环图中间显示鼠标高亮的扇形对应的文字。实现这一效果的思路是,利用系列的 `label`(默认用扇形颜色显示数据的 `name`),显示在圆环图中间。在默认情况下不显示系列的 `label`,在高亮时显示。具体的代码如下:\n\n```js [live]\noption = {\n legend: {\n orient: 'vertical',\n x: 'left',\n data: ['A', 'B', 'C', 'D', 'E']\n },\n series: [\n {\n type: 'pie',\n radius: ['50%', '70%'],\n avoidLabelOverlap: false,\n label: {\n show: false,\n position: 'center',\n emphasis: {\n show: true\n }\n },\n labelLine: {\n show: false\n },\n emphasis: {\n label: {\n show: true,\n fontSize: '30',\n fontWeight: 'bold'\n }\n },\n data: [\n { value: 335, name: 'A' },\n { value: 310, name: 'B' },\n { value: 234, name: 'C' },\n { value: 135, name: 'D' },\n { value: 1548, name: 'E' }\n ]\n }\n ]\n};\n```\n\n其中,`avoidLabelOverlap` 是用来控制是否由 ECharts 调整标签位置以实现防止标签重叠。它的默认值是 `true`,而在这里,我们不希望标签位置调整到不是中间的位置,因此我们需要将其设为 `false`。\n\n这样,圆环图中间会显示高亮数据的 `name` 值。\n","dir":"/zh/application/chart-types/pie","path":"/zh/application/chart-types/pie/doughnut","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-07-21T12:22:31.315Z","meta":{"version":0,"revision":0,"created":1627897109539},"$loki":114},{"slug":"area-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"区域面积图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%8C%BA%E5%9F%9F%E9%9D%A2%E7%A7%AF%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"区域面积图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"区域面积图将折线到坐标轴的空间设置背景色,用区域面积表达数据。相比普通的折线图,区域面积图的视觉效果更加饱满丰富,在系列不多的场景下尤其适用。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n areaStyle: {}\n },\n {\n data: [25, 14, 23, 35, 10],\n type: 'line',\n areaStyle: {\n color: '#ff0',\n opacity: 0.5\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.areaStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"areaStyle"}]}]},{"type":"text","value":" 设置折线图的填充区域样式,将其设为为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"{}"}]},{"type":"text","value":" 表示使用默认样式,即使用系列的颜色以半透明的方式填充区域。如果想指定特定的样式,可以通过设置 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"areaStyle"}]},{"type":"text","value":" 下的配置项覆盖,如第二个系列将填充区域的颜色设为不透明度为 0.5 的黄色。"}]}]},"text":"# 区域面积图\n\n区域面积图将折线到坐标轴的空间设置背景色,用区域面积表达数据。相比普通的折线图,区域面积图的视觉效果更加饱满丰富,在系列不多的场景下尤其适用。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n areaStyle: {}\n },\n {\n data: [25, 14, 23, 35, 10],\n type: 'line',\n areaStyle: {\n color: '#ff0',\n opacity: 0.5\n }\n }\n ]\n};\n```\n\n通过 [`areaStyle`](https://echarts.apache.org/option.html#series-line.areaStyle) 设置折线图的填充区域样式,将其设为为 `{}` 表示使用默认样式,即使用系列的颜色以半透明的方式填充区域。如果想指定特定的样式,可以通过设置 `areaStyle` 下的配置项覆盖,如第二个系列将填充区域的颜色设为不透明度为 0.5 的黄色。\n","dir":"/zh/application/chart-types/line","path":"/zh/application/chart-types/line/area-line","extension":".md","createdAt":"2021-06-04T12:26:37.920Z","updatedAt":"2021-07-21T12:27:04.834Z","meta":{"version":0,"revision":0,"created":1627897109540},"$loki":115},{"slug":"basic-pie","toc":[{"id":"最简单的饼图","depth":2,"text":"最简单的饼图"},{"id":"饼图样式设置","depth":2,"text":"饼图样式设置"},{"id":"饼图的半径","depth":3,"text":"饼图的半径"},{"id":"如果数据和为-0,不显示饼图","depth":2,"text":"如果数据和为 0,不显示饼图"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基础饼图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9F%BA%E7%A1%80%E9%A5%BC%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础饼图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"饼图主要用于表现不同类目的数据在总和中的占比。每个的弧度表示数据数量的比例。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"最简单的饼图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84%E9%A5%BC%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"最简单的饼图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"饼图的配置和折线图、柱状图略有不同,不再需要配置坐标轴,而是把数据名称和值都写在系列中。以下是一个最简单的饼图的例子。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: '直接访问'\n },\n {\n value: 234,\n name: '联盟广告'\n },\n {\n value: 1548,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"需要注意的是,这里是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":" 不需要是百分比数据,ECharts 会根据所有数据的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"value"}]},{"type":"text","value":" ,按比例分配它们在饼图中对应的弧度。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"饼图样式设置"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%A5%BC%E5%9B%BE%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"饼图样式设置"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"饼图的半径"},"children":[{"type":"element","tag":"a","props":{"href":"#%E9%A5%BC%E5%9B%BE%E7%9A%84%E5%8D%8A%E5%BE%84","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"饼图的半径"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"饼图的半径可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.radius","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.radius"}]}]},{"type":"text","value":" 设置,可以是诸如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'60%'"}]},{"type":"text","value":" 这样相对的百分比字符串,或是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"200"}]},{"type":"text","value":" 这样的绝对像素数值。当它是百分比字符串时,它是相对于容器宽高中较小的一条边的。也就是说,如果宽度大于高度,则百分比是相对于高度的,反之则反;当它是数值型时,它表示绝对的像素大小。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: '直接访问'\n },\n {\n value: 234,\n name: '联盟广告'\n },\n {\n value: 1548,\n name: '搜索引擎'\n }\n ],\n radius: '50%'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"如果数据和为-0,不显示饼图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%A6%82%E6%9E%9C%E6%95%B0%E6%8D%AE%E5%92%8C%E4%B8%BA-0%EF%BC%8C%E4%B8%8D%E6%98%BE%E7%A4%BA%E9%A5%BC%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"如果数据和为 0,不显示饼图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在默认情况下,如果数据值和为 0,会显示平均分割的扇形。比如,如果有 4 个数据项,并且每个数据项都是 0,则每个扇形都是 90°。如果我们希望在这种情况下不显示任何扇形,可以将 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.stillShowZeroSum","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.stillShowZeroSum"}]}]},{"type":"text","value":" 设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n data: [\n {\n value: 0,\n name: '直接访问'\n },\n {\n value: 0,\n name: '联盟广告'\n },\n {\n value: 0,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果希望扇形对应的标签也不显示,可以将 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-pie.label.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label.show"}]}]},{"type":"text","value":" 设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n label: {\n show: false\n },\n data: [\n {\n value: 0,\n name: '直接访问'\n },\n {\n value: 0,\n name: '联盟广告'\n },\n {\n value: 0,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n"}]}]}]},"text":"# 基础饼图\n\n饼图主要用于表现不同类目的数据在总和中的占比。每个的弧度表示数据数量的比例。\n\n## 最简单的饼图\n\n饼图的配置和折线图、柱状图略有不同,不再需要配置坐标轴,而是把数据名称和值都写在系列中。以下是一个最简单的饼图的例子。\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: '直接访问'\n },\n {\n value: 234,\n name: '联盟广告'\n },\n {\n value: 1548,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n```\n\n需要注意的是,这里是 `value` 不需要是百分比数据,ECharts 会根据所有数据的 `value` ,按比例分配它们在饼图中对应的弧度。\n\n## 饼图样式设置\n\n### 饼图的半径\n\n饼图的半径可以通过 [`series.radius`](https://echarts.apache.org/option.html#series-pie.radius) 设置,可以是诸如 `'60%'` 这样相对的百分比字符串,或是 `200` 这样的绝对像素数值。当它是百分比字符串时,它是相对于容器宽高中较小的一条边的。也就是说,如果宽度大于高度,则百分比是相对于高度的,反之则反;当它是数值型时,它表示绝对的像素大小。\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n data: [\n {\n value: 335,\n name: '直接访问'\n },\n {\n value: 234,\n name: '联盟广告'\n },\n {\n value: 1548,\n name: '搜索引擎'\n }\n ],\n radius: '50%'\n }\n ]\n};\n```\n\n## 如果数据和为 0,不显示饼图\n\n在默认情况下,如果数据值和为 0,会显示平均分割的扇形。比如,如果有 4 个数据项,并且每个数据项都是 0,则每个扇形都是 90°。如果我们希望在这种情况下不显示任何扇形,可以将 [`series.stillShowZeroSum`](https://echarts.apache.org/option.html#series-pie.stillShowZeroSum) 设为 `false`。\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n data: [\n {\n value: 0,\n name: '直接访问'\n },\n {\n value: 0,\n name: '联盟广告'\n },\n {\n value: 0,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n```\n\n如果希望扇形对应的标签也不显示,可以将 [`series.label.show`](https://echarts.apache.org/option.html#series-pie.label.show) 设为 `false`。\n\n```js [live]\noption = {\n series: [\n {\n type: 'pie',\n stillShowZeroSum: false,\n label: {\n show: false\n },\n data: [\n {\n value: 0,\n name: '直接访问'\n },\n {\n value: 0,\n name: '联盟广告'\n },\n {\n value: 0,\n name: '搜索引擎'\n }\n ]\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/pie","path":"/zh/application/chart-types/pie/basic-pie","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-06-04T12:26:37.921Z","meta":{"version":0,"revision":0,"created":1627897109544},"$loki":116},{"slug":"basic-line","toc":[{"id":"最简单的折线图","depth":2,"text":"最简单的折线图"},{"id":"笛卡尔坐标系中的折线图","depth":2,"text":"笛卡尔坐标系中的折线图"},{"id":"折线图样式设置","depth":2,"text":"折线图样式设置"},{"id":"折线的样式","depth":3,"text":"折线的样式"},{"id":"数据点的样式","depth":3,"text":"数据点的样式"},{"id":"在数据点处显示数值","depth":2,"text":"在数据点处显示数值"},{"id":"空数据","depth":2,"text":"空数据"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基础折线图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9F%BA%E7%A1%80%E6%8A%98%E7%BA%BF%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱状图(或称条形图)是一种通过柱形的长度来表现数据大小的一种常用图表类型。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"最简单的折线图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84%E6%8A%98%E7%BA%BF%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"最简单的折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果我们想建立一个横坐标是类目型(category)、纵坐标是数值型(value)的折线图,我们可以使用这样的方式:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['A', 'B', 'C']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在这个例子中,我们通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" 将横坐标设为类目型,并指定了对应的值;通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" 将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yAxis"}]},{"type":"text","value":" 的类型设定为数值型。在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 中,我们将系列类型设为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"line"}]},{"type":"text","value":",并且通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" 指定了折线图三个点的取值。这样,就能得到一个最简单的折线图了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这里 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"yAxis"}]},{"type":"text","value":" 的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":" 属性都可以隐去不写。因为坐标轴的默认类型是数值型,而 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"xAxis"}]},{"type":"text","value":" 指定了类目型的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":",所以 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"ECharts"}]},{"type":"text","value":" 也能识别出这是类目型的坐标轴。为了让大家更容易理解,我们特意写了 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"type"}]},{"type":"text","value":"。在实际的应用中,如果是 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'value'"}]},{"type":"text","value":" 类型,也可以省略不写。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"笛卡尔坐标系中的折线图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%AC%9B%E5%8D%A1%E5%B0%94%E5%9D%90%E6%A0%87%E7%B3%BB%E4%B8%AD%E7%9A%84%E6%8A%98%E7%BA%BF%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"笛卡尔坐标系中的折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果我们希望折线图在横坐标和纵坐标上都是连续的,即在笛卡尔坐标系中,应该如何实现呢?答案也很简单,只要把 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series"}]},{"type":"text","value":" 的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" 每个数据用一个包含两个元素的数组表示就行了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n data: [\n [20, 120],\n [50, 200],\n [40, 50]\n ],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"折线图样式设置"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8A%98%E7%BA%BF%E5%9B%BE%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"折线图样式设置"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"折线的样式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%8A%98%E7%BA%BF%E7%9A%84%E6%A0%B7%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"折线的样式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"折线图中折线的样式可以通过 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"lineStyle"}]},{"type":"text","value":" 设置。可以为其指定颜色、线宽、折线类型、阴影、不透明度等等,具体的可以参考配置项手册 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.lineStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.lineStyle"}]}]},{"type":"text","value":" 了解。这里,我们以设置颜色(color)、线宽(width)和折线类型(type)为例说明。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n lineStyle: {\n normal: {\n color: 'green',\n width: 4,\n type: 'dashed'\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这里设置折线宽度时,数据点描边的宽度是不会跟着改变的,而应该在数据点的配置项中另外设置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"数据点的样式"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%B0%E6%8D%AE%E7%82%B9%E7%9A%84%E6%A0%B7%E5%BC%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"数据点的样式"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"数据点的样式可以通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.itemStyle","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.itemStyle"}]}]},{"type":"text","value":" 指定填充颜色(color)、描边颜色(borderColor)、描边宽度(borderWidth)、描边类型(borderType)、阴影(shadowColor)、不透明度(opacity)等。与折线样式的设置十分相似,这里不再展开说明。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"在数据点处显示数值"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9C%A8%E6%95%B0%E6%8D%AE%E7%82%B9%E5%A4%84%E6%98%BE%E7%A4%BA%E6%95%B0%E5%80%BC","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"在数据点处显示数值"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在系列中,这数据点的标签通过 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.label","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.label"}]}]},{"type":"text","value":" 属性指定。如果将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"label"}]},{"type":"text","value":" 下的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"show"}]},{"type":"text","value":" 指定为"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":",则表示该数值默认时就显示;如果为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"false"}]},{"type":"text","value":",而 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-line.emphasis.label.show","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.emphasis.label.show"}]}]},{"type":"text","value":" 为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":",则表示只有在鼠标移动到该数据时,才显示数值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n label: {\n show: true,\n position: 'bottom',\n textStyle: {\n fontSize: 20\n }\n }\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"空数据"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%A9%BA%E6%95%B0%E6%8D%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"空数据"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在一个系列中,可能一个横坐标对应的取值是“空”的,将其设为 0 有时并不能满足我们的期望--空数据不应被其左右的数据连接。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 中,我们使用字符串 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'-'"}]},{"type":"text","value":" 表示空数据,这对其他系列的数据也是适用的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [0, 22, '-', 23, 19],\n type: 'line'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"注意区别这个例子中,“空”数据与取值为 0 的数据。"}]},{"type":"text","value":"\n"}]}]},"text":"# 基础折线图\n\n柱状图(或称条形图)是一种通过柱形的长度来表现数据大小的一种常用图表类型。\n\n## 最简单的折线图\n\n如果我们想建立一个横坐标是类目型(category)、纵坐标是数值型(value)的折线图,我们可以使用这样的方式:\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['A', 'B', 'C']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n data: [120, 200, 150],\n type: 'line'\n }\n ]\n};\n```\n\n在这个例子中,我们通过 `xAxis` 将横坐标设为类目型,并指定了对应的值;通过 `type` 将 `yAxis` 的类型设定为数值型。在 `series` 中,我们将系列类型设为 `line`,并且通过 `data` 指定了折线图三个点的取值。这样,就能得到一个最简单的折线图了。\n\n> 这里 `xAxis` 和 `yAxis` 的 `type` 属性都可以隐去不写。因为坐标轴的默认类型是数值型,而 `xAxis` 指定了类目型的 `data`,所以 `ECharts` 也能识别出这是类目型的坐标轴。为了让大家更容易理解,我们特意写了 `type`。在实际的应用中,如果是 `'value'` 类型,也可以省略不写。\n\n## 笛卡尔坐标系中的折线图\n\n如果我们希望折线图在横坐标和纵坐标上都是连续的,即在笛卡尔坐标系中,应该如何实现呢?答案也很简单,只要把 `series` 的 `data` 每个数据用一个包含两个元素的数组表示就行了。\n\n```js [live]\noption = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n data: [\n [20, 120],\n [50, 200],\n [40, 50]\n ],\n type: 'line'\n }\n ]\n};\n```\n\n## 折线图样式设置\n\n### 折线的样式\n\n折线图中折线的样式可以通过 `lineStyle` 设置。可以为其指定颜色、线宽、折线类型、阴影、不透明度等等,具体的可以参考配置项手册 [`series.lineStyle`](https://echarts.apache.org/option.html#series-line.lineStyle) 了解。这里,我们以设置颜色(color)、线宽(width)和折线类型(type)为例说明。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n lineStyle: {\n normal: {\n color: 'green',\n width: 4,\n type: 'dashed'\n }\n }\n }\n ]\n};\n```\n\n这里设置折线宽度时,数据点描边的宽度是不会跟着改变的,而应该在数据点的配置项中另外设置。\n\n### 数据点的样式\n\n数据点的样式可以通过 [`series.itemStyle`](https://echarts.apache.org/option.html#series-line.itemStyle) 指定填充颜色(color)、描边颜色(borderColor)、描边宽度(borderWidth)、描边类型(borderType)、阴影(shadowColor)、不透明度(opacity)等。与折线样式的设置十分相似,这里不再展开说明。\n\n## 在数据点处显示数值\n\n在系列中,这数据点的标签通过 [`series.label`](https://echarts.apache.org/option.html#series-line.label) 属性指定。如果将 `label` 下的 `show` 指定为`true`,则表示该数值默认时就显示;如果为 `false`,而 [`series.emphasis.label.show`](https://echarts.apache.org/option.html#series-line.emphasis.label.show) 为 `true`,则表示只有在鼠标移动到该数据时,才显示数值。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n label: {\n show: true,\n position: 'bottom',\n textStyle: {\n fontSize: 20\n }\n }\n }\n ]\n};\n```\n\n## 空数据\n\n在一个系列中,可能一个横坐标对应的取值是“空”的,将其设为 0 有时并不能满足我们的期望--空数据不应被其左右的数据连接。\n\n在 ECharts 中,我们使用字符串 `'-'` 表示空数据,这对其他系列的数据也是适用的。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [0, 22, '-', 23, 19],\n type: 'line'\n }\n ]\n};\n```\n\n> 注意区别这个例子中,“空”数据与取值为 0 的数据。\n","dir":"/zh/application/chart-types/line","path":"/zh/application/chart-types/line/basic-line","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-06-04T12:26:37.921Z","meta":{"version":0,"revision":0,"created":1627897109552},"$loki":117},{"slug":"step-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"阶梯线图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%98%B6%E6%A2%AF%E7%BA%BF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"阶梯线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"阶梯线图又称方波图,它使用水平和垂直的线来连接两个数据点,而普通折线图则直接将两个点连接起来。阶梯线图能够很好地表达数据的突变。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 中,系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"step"}]},{"type":"text","value":" 属性用来表征阶梯线图的连接类型,它共有三种取值:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'start'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'middle'"}]},{"type":"text","value":" 和 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'end'"}]},{"type":"text","value":",分别表示在当前点,当前点与下个点的中间点,下个点拐弯。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n name: 'Step Start',\n type: 'line',\n step: 'start',\n data: [120, 132, 101, 134, 90, 230, 210]\n },\n {\n name: 'Step Middle',\n type: 'line',\n step: 'middle',\n data: [220, 282, 201, 234, 290, 430, 410]\n },\n {\n name: 'Step End',\n type: 'line',\n step: 'end',\n data: [450, 432, 401, 454, 590, 530, 510]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"blockquote","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"请注意这个例子中不同的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"step"}]},{"type":"text","value":" 取值对应的数据点和连线的区别。"}]},{"type":"text","value":"\n"}]}]},"text":"# 阶梯线图\n\n阶梯线图又称方波图,它使用水平和垂直的线来连接两个数据点,而普通折线图则直接将两个点连接起来。阶梯线图能够很好地表达数据的突变。\n\n在 ECharts 中,系列的 `step` 属性用来表征阶梯线图的连接类型,它共有三种取值:`'start'`、`'middle'` 和 `'end'`,分别表示在当前点,当前点与下个点的中间点,下个点拐弯。\n\n```js [live]\noption = {\n xAxis: {\n type: 'category',\n data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']\n },\n yAxis: {\n type: 'value'\n },\n series: [\n {\n name: 'Step Start',\n type: 'line',\n step: 'start',\n data: [120, 132, 101, 134, 90, 230, 210]\n },\n {\n name: 'Step Middle',\n type: 'line',\n step: 'middle',\n data: [220, 282, 201, 234, 290, 430, 410]\n },\n {\n name: 'Step End',\n type: 'line',\n step: 'end',\n data: [450, 432, 401, 454, 590, 530, 510]\n }\n ]\n};\n```\n\n> 请注意这个例子中不同的 `step` 取值对应的数据点和连线的区别。\n","dir":"/zh/application/chart-types/line","path":"/zh/application/chart-types/line/step-line","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-06-04T12:26:37.921Z","meta":{"version":0,"revision":0,"created":1627897109554},"$loki":118},{"slug":"stacked-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"堆叠折线图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%A0%86%E5%8F%A0%E6%8A%98%E7%BA%BF%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"与"},{"type":"element","tag":"a","props":{"href":"./zh/application/chart-types/bar/stacked-bar"},"children":[{"type":"text","value":"堆叠柱状图"}]},{"type":"text","value":"类似,堆叠折线图也是用系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"stack"}]},{"type":"text","value":" 设置哪些系列堆叠在一起。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"但是不同的是,如果不加说明的话,我们很难判断出这是一个堆叠折线图,还是一个普通的折线图。所以,对于堆叠折线图而言,一般建议使用区域填充色以表明堆叠的情况。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n }\n ]\n};\n"}]}]}]},"text":"# 堆叠折线图\n\n与[堆叠柱状图](./zh/application/chart-types/bar/stacked-bar)类似,堆叠折线图也是用系列的 `stack` 设置哪些系列堆叠在一起。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x'\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x'\n }\n ]\n};\n```\n\n但是不同的是,如果不加说明的话,我们很难判断出这是一个堆叠折线图,还是一个普通的折线图。所以,对于堆叠折线图而言,一般建议使用区域填充色以表明堆叠的情况。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 43, 49],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n },\n {\n data: [5, 4, 3, 5, 10],\n type: 'line',\n stack: 'x',\n areaStyle: {}\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/line","path":"/zh/application/chart-types/line/stacked-line","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-07-21T06:19:52.717Z","meta":{"version":0,"revision":0,"created":1627897109555},"$loki":119},{"slug":"basic-scatter","toc":[{"id":"最简单的散点图","depth":2,"text":"最简单的散点图"},{"id":"笛卡尔坐标系下的散点图","depth":2,"text":"笛卡尔坐标系下的散点图"},{"id":"散点图样式设置","depth":2,"text":"散点图样式设置"},{"id":"图形的形状","depth":3,"text":"图形的形状"},{"id":"图形的大小","depth":3,"text":"图形的大小"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基础散点图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9F%BA%E7%A1%80%E6%95%A3%E7%82%B9%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础散点图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"散点图,也是一种常见的图表类型。散点图由许多“点”组成,有时,这些点用来表示数据在坐标系中的位置(比如在笛卡尔坐标系下,表示数据在 x 轴和 y 轴上的坐标;在地图坐标系下,表示数据在地图上的某个位置等);有时,这些点的大小、颜色等属性也可以映射到数据值,用以表现高维数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"最简单的散点图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%9C%80%E7%AE%80%E5%8D%95%E7%9A%84%E6%95%A3%E7%82%B9%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"最简单的散点图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面是一个横坐标为类目轴、纵坐标为数值轴的最简单的散点图配置:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"笛卡尔坐标系下的散点图"},"children":[{"type":"element","tag":"a","props":{"href":"#%E7%AC%9B%E5%8D%A1%E5%B0%94%E5%9D%90%E6%A0%87%E7%B3%BB%E4%B8%8B%E7%9A%84%E6%95%A3%E7%82%B9%E5%9B%BE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"笛卡尔坐标系下的散点图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在上文的例子中,散点图的横坐标都是离散的类目轴,而纵坐标都是连续的数值轴。而对于散点图而言,另一种常见的场景是,两个坐标轴均为连续的数值轴,也就是笛卡尔坐标系。这时的系列形式略有不同,数据的横坐标和纵坐标一同写在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"data"}]},{"type":"text","value":" 中,而非坐标轴中。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [\n [10, 5],\n [0, 8],\n [6, 10],\n [2, 12],\n [8, 9]\n ]\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"散点图样式设置"},"children":[{"type":"element","tag":"a","props":{"href":"#%E6%95%A3%E7%82%B9%E5%9B%BE%E6%A0%B7%E5%BC%8F%E8%AE%BE%E7%BD%AE","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"散点图样式设置"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"图形的形状"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9B%BE%E5%BD%A2%E7%9A%84%E5%BD%A2%E7%8A%B6","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图形的形状"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图形(symbol)指的是散点图中数据“点”的形状。有三类图形可选,一种是 ECharts 内置形状,第二种是图片,第三种是 SVG 的路径。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"ECharts 内置形状包括:圆形、矩形、圆角矩形、三角形、菱形、大头针形、箭头形,分别对应"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'circle'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'rect'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'roundRect'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'triangle'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'diamond'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'pin'"}]},{"type":"text","value":"、"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'arrow'"}]},{"type":"text","value":"。使用内置形状时,只要将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" 属性指定为形状名称对应的字符串即可。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果想要将图形指定为任意的图片,以 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image://'"}]},{"type":"text","value":" 开头,后面跟图片的绝对或相对地址。形如:"},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image://http://example.com/xxx.png'"}]},{"type":"text","value":" 或 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'image://./xxx.png'"}]},{"type":"text","value":"。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,还支持 SVG 的路径作为矢量图形,将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" 设置为以 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'path://'"}]},{"type":"text","value":" 开头的 SVG 路径即可。使用矢量图形的好处是,图片不会因为缩放而产生锯齿或模糊,并且通常而言比图片形式的文件大小更小。路径的查看方法为,打开一个 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"SVG"}]},{"type":"text","value":" 文件,找到形如 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"<path d=\"M… L…\"></path>"}]},{"type":"text","value":" 的路径,将 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"d"}]},{"type":"text","value":" 的值添加在 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"'path://'"}]},{"type":"text","value":" 后即可。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"下面,我们展示一个将图形设置为矢量爱心形状的方式。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"首先,我们需要一个爱心的 SVG 文件,可以使用矢量编辑软件绘制,或者从网上下载到相关资源。其内容如下:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"xml","line-highlights":"","file-name":""},"children":[{"type":"text","value":"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51.997 51.997\" style=\"enable-background:new 0 0 51.997 51.997;\" xml:space=\"preserve\">\n <path d=\"M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z\"/>\n</svg>\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在 ECharts 的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"symbol"}]},{"type":"text","value":" 配置项中,我们使用 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"d"}]},{"type":"text","value":" 的值作为路径。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: 20,\n symbol:\n 'path://M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z'\n }\n ]\n};\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"这样,就能得到爱心形状的图形作为点的形状了。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h3","props":{"id":"图形的大小"},"children":[{"type":"element","tag":"a","props":{"href":"#%E5%9B%BE%E5%BD%A2%E7%9A%84%E5%A4%A7%E5%B0%8F","ariaHidden":"true","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"图形的大小"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"图形大小可以使用 "},{"type":"element","tag":"a","props":{"href":"https://echarts.apache.org/option.html#series-scatter.symbolSize","rel":["nofollow","noopener","noreferrer"],"target":"_blank"},"children":[{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"series.symbolSize"}]}]},{"type":"text","value":" 控制。它既可以是一个表示图形大小的像素值,也可以是一个包含两个 number 元素的数组,分别表示图形的宽和高。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"除此之外,它还可以是一个回调函数,其参数格式为:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-code-block","props":{"lang":"ts","line-highlights":"","file-name":""},"children":[{"type":"text","value":"(value: Array | number, params: Object) => number | Array;\n"}]}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"第一个参数为数据值,第二个参数是数据项的其他参数。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在下面的例子中,我们将散点图点的大小设置为与其数据值成正比。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: function(value) {\n return value / 10;\n }\n }\n ]\n};\n"}]}]}]},"text":"# 基础散点图\n\n散点图,也是一种常见的图表类型。散点图由许多“点”组成,有时,这些点用来表示数据在坐标系中的位置(比如在笛卡尔坐标系下,表示数据在 x 轴和 y 轴上的坐标;在地图坐标系下,表示数据在地图上的某个位置等);有时,这些点的大小、颜色等属性也可以映射到数据值,用以表现高维数据。\n\n## 最简单的散点图\n\n下面是一个横坐标为类目轴、纵坐标为数值轴的最简单的散点图配置:\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310]\n }\n ]\n};\n```\n\n## 笛卡尔坐标系下的散点图\n\n在上文的例子中,散点图的横坐标都是离散的类目轴,而纵坐标都是连续的数值轴。而对于散点图而言,另一种常见的场景是,两个坐标轴均为连续的数值轴,也就是笛卡尔坐标系。这时的系列形式略有不同,数据的横坐标和纵坐标一同写在 `data` 中,而非坐标轴中。\n\n```js [live]\noption = {\n xAxis: {},\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [\n [10, 5],\n [0, 8],\n [6, 10],\n [2, 12],\n [8, 9]\n ]\n }\n ]\n};\n```\n\n## 散点图样式设置\n\n### 图形的形状\n\n图形(symbol)指的是散点图中数据“点”的形状。有三类图形可选,一种是 ECharts 内置形状,第二种是图片,第三种是 SVG 的路径。\n\nECharts 内置形状包括:圆形、矩形、圆角矩形、三角形、菱形、大头针形、箭头形,分别对应`'circle'`、`'rect'`、`'roundRect'`、`'triangle'`、`'diamond'`、`'pin'`、`'arrow'`。使用内置形状时,只要将 `symbol` 属性指定为形状名称对应的字符串即可。\n\n如果想要将图形指定为任意的图片,以 `'image://'` 开头,后面跟图片的绝对或相对地址。形如:`'image://http://example.com/xxx.png'` 或 `'image://./xxx.png'`。\n\n除此之外,还支持 SVG 的路径作为矢量图形,将 `symbol` 设置为以 `'path://'` 开头的 SVG 路径即可。使用矢量图形的好处是,图片不会因为缩放而产生锯齿或模糊,并且通常而言比图片形式的文件大小更小。路径的查看方法为,打开一个 `SVG` 文件,找到形如 `<path d=\"M… L…\"></path>` 的路径,将 `d` 的值添加在 `'path://'` 后即可。\n\n下面,我们展示一个将图形设置为矢量爱心形状的方式。\n\n首先,我们需要一个爱心的 SVG 文件,可以使用矢量编辑软件绘制,或者从网上下载到相关资源。其内容如下:\n\n```xml\n<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<svg version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 51.997 51.997\" style=\"enable-background:new 0 0 51.997 51.997;\" xml:space=\"preserve\">\n <path d=\"M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z\"/>\n</svg>\n```\n\n在 ECharts 的 `symbol` 配置项中,我们使用 `d` 的值作为路径。\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: 20,\n symbol:\n 'path://M51.911,16.242C51.152,7.888,45.239,1.827,37.839,1.827c-4.93,0-9.444,2.653-11.984,6.905 c-2.517-4.307-6.846-6.906-11.697-6.906c-7.399,0-13.313,6.061-14.071,14.415c-0.06,0.369-0.306,2.311,0.442,5.478 c1.078,4.568,3.568,8.723,7.199,12.013l18.115,16.439l18.426-16.438c3.631-3.291,6.121-7.445,7.199-12.014 C52.216,18.553,51.97,16.611,51.911,16.242z'\n }\n ]\n};\n```\n\n这样,就能得到爱心形状的图形作为点的形状了。\n\n### 图形的大小\n\n图形大小可以使用 [`series.symbolSize`](https://echarts.apache.org/option.html#series-scatter.symbolSize) 控制。它既可以是一个表示图形大小的像素值,也可以是一个包含两个 number 元素的数组,分别表示图形的宽和高。\n\n除此之外,它还可以是一个回调函数,其参数格式为:\n\n```ts\n(value: Array | number, params: Object) => number | Array;\n```\n\n第一个参数为数据值,第二个参数是数据项的其他参数。\n\n在下面的例子中,我们将散点图点的大小设置为与其数据值成正比。\n\n```js [live]\noption = {\n xAxis: {\n data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']\n },\n yAxis: {},\n series: [\n {\n type: 'scatter',\n data: [220, 182, 191, 234, 290, 330, 310],\n symbolSize: function(value) {\n return value / 10;\n }\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/scatter","path":"/zh/application/chart-types/scatter/basic-scatter","extension":".md","createdAt":"2021-06-04T12:26:37.922Z","updatedAt":"2021-06-04T12:26:37.922Z","meta":{"version":0,"revision":0,"created":1627897109561},"$loki":120},{"slug":"smooth-line","toc":[],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"平滑曲线图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%B9%B3%E6%BB%91%E6%9B%B2%E7%BA%BF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"平滑曲线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"平滑曲线图也是折线图的一种变形,这种更柔和的样式也是一种不错的视觉选择。使用时,只需要将折线图系列的 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"smooth"}]},{"type":"text","value":" 属性设置为 "},{"type":"element","tag":"code","props":{},"children":[{"type":"text","value":"true"}]},{"type":"text","value":" 即可。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["nuxt-content-highlight"]},"children":[{"type":"element","tag":"md-live","props":{"lang":"js","layout":"tb"},"children":[{"type":"text","value":"option = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n smooth: true\n }\n ]\n};\n"}]}]}]},"text":"# 平滑曲线图\n\n平滑曲线图也是折线图的一种变形,这种更柔和的样式也是一种不错的视觉选择。使用时,只需要将折线图系列的 `smooth` 属性设置为 `true` 即可。\n\n```js [live]\noption = {\n xAxis: {\n data: ['A', 'B', 'C', 'D', 'E']\n },\n yAxis: {},\n series: [\n {\n data: [10, 22, 28, 23, 19],\n type: 'line',\n smooth: true\n }\n ]\n};\n```\n","dir":"/zh/application/chart-types/line","path":"/zh/application/chart-types/line/smooth-line","extension":".md","createdAt":"2021-06-04T12:26:37.921Z","updatedAt":"2021-07-21T12:30:39.873Z","meta":{"version":0,"revision":0,"created":1627897109568},"$loki":121},{"slug":"grouped-bar","toc":[{"id":"分组柱状-\b-图的使用建议","depth":2,"text":"分组柱状 \b 图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"分组柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%88%86%E7%BB%84%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"分组柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"分组柱状图也被称为聚集柱状图。当两个或多个数据序列并排显示并在同一轴上的类别下分组时,将使用分组柱状图。相当于包含带有两个或更多图表的简单的条形图。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xr13FAH54f&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"分组柱状图通常是用于将包含相同变量或类别的几个分组进行比较。像柱状图一样,每个柱的长度用于显示类别的数值,每个数据系列被分配一个单独的颜色或相同色系的不同饱和度,以区分它们,每组数据之间相互间隔并进行对比。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW&v=3"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"分组柱状-\b-图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%88%86%E7%BB%84%E6%9F%B1%E7%8A%B6-%08-%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"分组柱状 \b 图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、如果每个分组中的系列过多,数据的阅读难度就会越增加。因此,不建议每个分组中包含过多的系列。在系列较多时,可考虑使用堆叠柱状图。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、建议每两个分组之间的间距大于组内不同系列之间的间距,以免造成视觉上错误的归类和区分。"}]}]},"text":"# 分组柱状图\n\n分组柱状图也被称为聚集柱状图。当两个或多个数据序列并排显示并在同一轴上的类别下分组时,将使用分组柱状图。相当于包含带有两个或更多图表的简单的条形图。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xr13FAH54f&v=1\">\n</iframe>\n\n分组柱状图通常是用于将包含相同变量或类别的几个分组进行比较。像柱状图一样,每个柱的长度用于显示类别的数值,每个数据系列被分配一个单独的颜色或相同色系的不同饱和度,以区分它们,每组数据之间相互间隔并进行对比。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xry8WsXdOW&v=3\">\n</iframe>\n\n## 分组柱状 \b 图的使用建议\n\n1、如果每个分组中的系列过多,数据的阅读难度就会越增加。因此,不建议每个分组中包含过多的系列。在系列较多时,可考虑使用堆叠柱状图。\n\n2、建议每两个分组之间的间距大于组内不同系列之间的间距,以免造成视觉上错误的归类和区分。\n","dir":"/zh/best-practice/specification/bar","path":"/zh/best-practice/specification/bar/grouped-bar","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-06-04T12:26:37.924Z","meta":{"version":0,"revision":0,"created":1627897109570},"$loki":122},{"slug":"stacked-bar","toc":[{"id":"堆叠柱状-\b-图的使用建议","depth":2,"text":"堆叠柱状 \b 图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"堆叠柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%A0%86%E5%8F%A0%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"堆叠柱状图是柱状图的扩展。但区别在于,柱状图的数据值为并行排列,堆叠柱图则是一个个叠加起来的。它可以展示每一个分类的总量,以及该分类包含的每个小分类的大小及占比。因此,非常适合处理部分与整体的关系。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"与饼图显示单个部分到整体的关系不同的是,堆叠柱状图可以显示多个部分到整体的关系。例如一个班级体育课选课的各项目人数统计,你可以用柱状图或饼图来展示。但是,当需要进一步区分男生和女生参与到不同项目中的人数分别是多少时,就需要把每个项目中包含的男生数和女生数都展示出来。如图选用堆叠柱状图,不仅能显示每个项目的总人数,还能展示出每个项目中的一部分与整体的关系。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBk7oUNwEz"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"堆叠柱状-\b-图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%A0%86%E5%8F%A0%E6%9F%B1%E7%8A%B6-%08-%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠柱状 \b 图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、遵循基本的柱状图使用原则。为了使图表易于理解,请避免使用太多颜色,不要刻意展示被截断的数据误导读者。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、堆叠柱状图不适合用于对比不同分组内同个分类之间的数据大小。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、堆叠柱状图最好的展示效果是每个组只包含两到三个类别,最多不要超过 6 个,因为太多的数据系列会使数据的阅读和分辨变得非常困难。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、由于要分析部分数据在整体中的占比,因此要避免用堆叠柱状图展示包含负数的数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"5、大多数的堆叠柱状图都是垂直绘制的,但是如果你的数据标签特别长时,考虑更好地展示效果,可以选择使用水平堆叠的方式。"}]}]},"text":"# 堆叠柱状图\n\n堆叠柱状图是柱状图的扩展。但区别在于,柱状图的数据值为并行排列,堆叠柱图则是一个个叠加起来的。它可以展示每一个分类的总量,以及该分类包含的每个小分类的大小及占比。因此,非常适合处理部分与整体的关系。\n\n与饼图显示单个部分到整体的关系不同的是,堆叠柱状图可以显示多个部分到整体的关系。例如一个班级体育课选课的各项目人数统计,你可以用柱状图或饼图来展示。但是,当需要进一步区分男生和女生参与到不同项目中的人数分别是多少时,就需要把每个项目中包含的男生数和女生数都展示出来。如图选用堆叠柱状图,不仅能显示每个项目的总人数,还能展示出每个项目中的一部分与整体的关系。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xBk7oUNwEz\">\n</iframe>\n\n## 堆叠柱状 \b 图的使用建议\n\n1、遵循基本的柱状图使用原则。为了使图表易于理解,请避免使用太多颜色,不要刻意展示被截断的数据误导读者。\n\n2、堆叠柱状图不适合用于对比不同分组内同个分类之间的数据大小。\n\n3、堆叠柱状图最好的展示效果是每个组只包含两到三个类别,最多不要超过 6 个,因为太多的数据系列会使数据的阅读和分辨变得非常困难。\n\n4、由于要分析部分数据在整体中的占比,因此要避免用堆叠柱状图展示包含负数的数据。\n\n5、大多数的堆叠柱状图都是垂直绘制的,但是如果你的数据标签特别长时,考虑更好地展示效果,可以选择使用水平堆叠的方式。\n","dir":"/zh/best-practice/specification/bar","path":"/zh/best-practice/specification/bar/stacked-bar","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-06-04T12:26:37.924Z","meta":{"version":0,"revision":0,"created":1627897109571},"$loki":123},{"slug":"area","toc":[{"id":"面积图的使用建议","depth":2,"text":"面积图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"区域面积折线图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%8C%BA%E5%9F%9F%E9%9D%A2%E7%A7%AF%E6%8A%98%E7%BA%BF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"区域面积折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"\b 面积图又叫区域图,与折线图很相近,都可以用来展示随着连续时间的推移数据的变化趋势。区别在于,面积图在折线与类别数据的水平轴(X 轴)之间填充颜色或者纹理,形成一个面表示数据体积。相对于折线而言,被填充的区域可以更好的引起人们对总值趋势的注意,所以面积图主要用于传达趋势的大小,而不是确切的单个数据值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=area-simple"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"面积图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%9D%A2%E7%A7%AF%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"面积图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、面积图要用填充区域来展示数据,当图表上有多个图层时,要尽量确保数据不要重叠。如果无法避免重叠,可以通过将颜色和透明度设置为适当的值,使重叠的数据图可以变得可读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJ-4tL84M"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、面积图适合用来展示二到三组数据,建议最多不要展示超过四组数据系列,否则就如下方错误示例,数据系列过多而导致无法辨识数据,因此要避免在需要比较多个类别和确切的数据值的情况下使用面积图。超过三个系列的非堆叠面积图表是很难阅读的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、当数据值相距很远时,区域是模糊不清的,此时 \b 不太适合使用面积图展示。如下方错误示例虽然仔细分析能确定只展示了两个类别,乍一看,很可能会误以为图表上显示三种不同的颜色。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkO64PIEG&v=1"},"children":[]}]},"text":"# 区域面积折线图\n\n\b 面积图又叫区域图,与折线图很相近,都可以用来展示随着连续时间的推移数据的变化趋势。区别在于,面积图在折线与类别数据的水平轴(X 轴)之间填充颜色或者纹理,形成一个面表示数据体积。相对于折线而言,被填充的区域可以更好的引起人们对总值趋势的注意,所以面积图主要用于传达趋势的大小,而不是确切的单个数据值。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=area-simple\"></iframe>\n\n## 面积图的使用建议\n\n1、面积图要用填充区域来展示数据,当图表上有多个图层时,要尽量确保数据不要重叠。如果无法避免重叠,可以通过将颜色和透明度设置为适当的值,使重叠的数据图可以变得可读。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJ-4tL84M\"></iframe>\n\n2、面积图适合用来展示二到三组数据,建议最多不要展示超过四组数据系列,否则就如下方错误示例,数据系列过多而导致无法辨识数据,因此要避免在需要比较多个类别和确切的数据值的情况下使用面积图。超过三个系列的非堆叠面积图表是很难阅读的。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\"></iframe>\n\n3、当数据值相距很远时,区域是模糊不清的,此时 \b 不太适合使用面积图展示。如下方错误示例虽然仔细分析能确定只展示了两个类别,乍一看,很可能会误以为图表上显示三种不同的颜色。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkO64PIEG&v=1\"></iframe>\n","dir":"/zh/best-practice/specification/line","path":"/zh/best-practice/specification/line/area","extension":".md","createdAt":"2021-06-04T12:26:37.925Z","updatedAt":"2021-06-04T12:26:37.925Z","meta":{"version":0,"revision":0,"created":1627897109573},"$loki":124},{"slug":"basic-bar","toc":[{"id":"柱状图的使用建议","depth":2,"text":"柱状图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基础柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9F%BA%E7%A1%80%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"柱状图是最常见的图表类型,通过使用水平或垂直方向 \b 柱子的高度来显示不同类别的数值,其中柱状图的一个轴显示比较的类别,而另一个轴代表对应的数值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"纵向柱状图的柱是垂直方向的,横向柱状图的柱是水平方向的,又称条形图。条形图与横向柱状图表达数据的形式是一样的,不过,当图表的数据标签很长或者有超过 10 个项目进行比较时,横向柱状图会无法完全显示完标签,或者只能倾斜展示,影响美观。因此当数据标签过长时,选择用条形图可以获得更好的展示效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xByXtUE7Vz"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"柱状图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%9F%B1%E7%8A%B6%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"柱状图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、避免使用太多颜色,一般情况一个柱状图(条形图)表示一组相同的度量,所以建议使用相同的颜色或同一颜色的不同色调。如果需要强调某个数据时,可以使用对比色或者变化色调来突出显示有意义的数据点。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xByYRlN7Ef"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、柱状图柱子间的宽度和间隙要适当。当柱子太窄时,用户的视觉可能会集中在两个柱中间的负空间,而这里是不承载任何数据的。合理的宽度和间隙应该是 \b 单个柱子的宽度不小于柱间间隙的两倍。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、Y 轴数据应该从 0 基线开始,以恰当地反映数值。如果展示的是被截断的数据,那很可能会误导观众做出错误的判断。例如左侧图表显示出的数据结果是 2017 年收入是 2014 年收入的五倍,而实际上如右侧图表完整显示的数据表明 2017 年收入相对于 2014 年其实只提升了 25%。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bar03.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、对多个数据系列排序时,如果不涉及到日期等特定数据,最好能符合一定的逻辑用直观的方式引导用户更好地查看数据。可以通过升序或降序排布,例如按照数量从多到少来对数据进行排序,也可以按照字母顺序等来排布。总之,按照逻辑排序可以一定程度上引导人们更好地阅读数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJhWhGm4M"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"5、一般情况下不建议使用三维柱状图,与三维饼图一样,对于数据传达不太精准,甚至还不得不猜测哪个才是数据的顶端。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bar04.jpg"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"# 基础柱状图\n\n柱状图是最常见的图表类型,通过使用水平或垂直方向 \b 柱子的高度来显示不同类别的数值,其中柱状图的一个轴显示比较的类别,而另一个轴代表对应的数值。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f\">\n</iframe>\n\n纵向柱状图的柱是垂直方向的,横向柱状图的柱是水平方向的,又称条形图。条形图与横向柱状图表达数据的形式是一样的,不过,当图表的数据标签很长或者有超过 10 个项目进行比较时,横向柱状图会无法完全显示完标签,或者只能倾斜展示,影响美观。因此当数据标签过长时,选择用条形图可以获得更好的展示效果。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xByXtUE7Vz\">\n</iframe>\n\n## 柱状图的使用建议\n\n1、避免使用太多颜色,一般情况一个柱状图(条形图)表示一组相同的度量,所以建议使用相同的颜色或同一颜色的不同色调。如果需要强调某个数据时,可以使用对比色或者变化色调来突出显示有意义的数据点。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xByYRlN7Ef\">\n</iframe>\n\n2、柱状图柱子间的宽度和间隙要适当。当柱子太窄时,用户的视觉可能会集中在两个柱中间的负空间,而这里是不承载任何数据的。合理的宽度和间隙应该是 \b 单个柱子的宽度不小于柱间间隙的两倍。\n\n3、Y 轴数据应该从 0 基线开始,以恰当地反映数值。如果展示的是被截断的数据,那很可能会误导观众做出错误的判断。例如左侧图表显示出的数据结果是 2017 年收入是 2014 年收入的五倍,而实际上如右侧图表完整显示的数据表明 2017 年收入相对于 2014 年其实只提升了 25%。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bar03.jpg\">\n</img>\n\n4、对多个数据系列排序时,如果不涉及到日期等特定数据,最好能符合一定的逻辑用直观的方式引导用户更好地查看数据。可以通过升序或降序排布,例如按照数量从多到少来对数据进行排序,也可以按照字母顺序等来排布。总之,按照逻辑排序可以一定程度上引导人们更好地阅读数据。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJhWhGm4M\">\n</iframe>\n\n5、一般情况下不建议使用三维柱状图,与三维饼图一样,对于数据传达不太精准,甚至还不得不猜测哪个才是数据的顶端。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bar04.jpg\">\n</img>\n","dir":"/zh/best-practice/specification/bar","path":"/zh/best-practice/specification/bar/basic-bar","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109575},"$loki":125},{"slug":"basic-line","toc":[{"id":"折线图的使用建议","depth":2,"text":"折线图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"基础折线图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%9F%BA%E7%A1%80%E6%8A%98%E7%BA%BF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"基础折线图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"折线图主要用来展示数据相随着时间推移的趋势或变化。折线图非常适合用于展示一个连续的二维数据,如某网站访问人数或商品销量价格的波动。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xB1kG1rLEG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"折线图除了展示某个事情发展的趋势,还可以用来比较多个不同的数据序列。如下图,可以通过对比同时间段的三种商品的销量,分析哪一种商品的销量最好。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkBiMSU4M&v=1"},"children":[{"type":"text","value":">\n "}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"折线图是将数据点之间用线连接起来绘制成的图表。为了追求美观或特殊的效果,还可以如上图将点与点之间用曲线连接,这种图又叫曲线图或样条图样条。样条图与折线图用法相同,区别是数据点之间的连线使用曲线绘制。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"折线图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%8A%98%E7%BA%BF%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"折线图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、使用实线绘制数据线,首先要保证能够的区分数据线和坐标轴线,并且要尽力要所有的数据清晰可识别。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、建议不要绘制 4 条以上的折线,如下图错误的示例,线都折叠在一起并且又没有明显的对比,整张图表就会混乱并难以阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBJzdEItVz&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、不建议使用过多的装饰来区分图表,图例虽然可以帮助区分不同数据系列,但如下图使用过多种类的图例有时会让用户分心。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS1Tbdr8EG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、展示折线图的数据时,要避免刻意的歪曲趋势。如下图,左图过于扁平化掩盖了想传达的信息,右图过于夸大趋势。要根据展示数据波动的参考单位,做有意义的波动分析。正确的数据高度是线约占 Y 轴高度的 2/3。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/line/line01.jpg"},"children":[]}]}]},"text":"# 基础折线图\n\n折线图主要用来展示数据相随着时间推移的趋势或变化。折线图非常适合用于展示一个连续的二维数据,如某网站访问人数或商品销量价格的波动。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xB1kG1rLEG&v=1\">\n</iframe>\n\n折线图除了展示某个事情发展的趋势,还可以用来比较多个不同的数据序列。如下图,可以通过对比同时间段的三种商品的销量,分析哪一种商品的销量最好。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkBiMSU4M&v=1\">>\n </iframe>\n\n折线图是将数据点之间用线连接起来绘制成的图表。为了追求美观或特殊的效果,还可以如上图将点与点之间用曲线连接,这种图又叫曲线图或样条图样条。样条图与折线图用法相同,区别是数据点之间的连线使用曲线绘制。\n\n## 折线图的使用建议\n\n1、使用实线绘制数据线,首先要保证能够的区分数据线和坐标轴线,并且要尽力要所有的数据清晰可识别。\n\n2、建议不要绘制 4 条以上的折线,如下图错误的示例,线都折叠在一起并且又没有明显的对比,整张图表就会混乱并难以阅读。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xBJzdEItVz&v=1\">\n</iframe>\n\n3、不建议使用过多的装饰来区分图表,图例虽然可以帮助区分不同数据系列,但如下图使用过多种类的图例有时会让用户分心。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS1Tbdr8EG&v=1\">\n</iframe>\n\n4、展示折线图的数据时,要避免刻意的歪曲趋势。如下图,左图过于扁平化掩盖了想传达的信息,右图过于夸大趋势。要根据展示数据波动的参考单位,做有意义的波动分析。正确的数据高度是线约占 Y 轴高度的 2/3。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/line/line01.jpg\"></img>\n","dir":"/zh/best-practice/specification/line","path":"/zh/best-practice/specification/line/basic-line","extension":".md","createdAt":"2021-06-04T12:26:37.925Z","updatedAt":"2021-06-04T12:26:37.931Z","meta":{"version":0,"revision":0,"created":1627897109576},"$loki":126},{"slug":"stacked-area","toc":[{"id":"堆叠面积图的使用建议","depth":2,"text":"堆叠面积图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"堆叠面积图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%A0%86%E5%8F%A0%E9%9D%A2%E7%A7%AF%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠面积图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"堆积面积图是一种特殊的面积图,可以用来比较在一个区间内的多个变量。堆叠面积图和面积图的区别在于,堆叠面积图每个数据系列的起点都是基于前一个数据系列绘制的,也就是每度量一行就要填满行与行之间的区域。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"如果有多个数据系列,并想分析每个类别的部分到整体的关系,并展现部分量对于总量的贡献时,使用堆积面积图是非常合适的选择。例如下图显示某个销售员对总销售额的贡献。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySthj74z"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"有两种不同的堆积面积图类型:"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"b","props":{},"children":[{"type":"text","value":"传统的堆积面积图"}]},{"type":"text","value":":直接使用原始值堆叠,显示整个过程如何变化。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"b","props":{},"children":[{"type":"text","value":"百分比堆积面积图"}]},{"type":"text","value":":百分比堆积显示不同部分之间的关 ​​ 系如何随时间而变化。其中累积的总数不重要,重要的是显示出类别分布在整体中的作用。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"堆叠面积图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%A0%86%E5%8F%A0%E9%9D%A2%E7%A7%AF%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"堆叠面积图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、图表有重叠的数据时,类别数量越多,重叠越多,因此可见度越低。如果使用面积图(如下示例)时会因为系列的重叠而无法阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"那同样的数据,换成使用堆叠面积图展示,则相对更容易阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"div","props":{"className":["article-look-outside"]},"children":[{"type":"text","value":"\n\t"},{"type":"element","tag":"div","props":{"className":["article-look-inside"],"style":"padding-bottom:50%"},"children":[{"type":"text","value":"\n\t "},{"type":"element","tag":"iframe","props":{"className":["article-look-content"],"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M"},"children":[{"type":"text","value":"\n\t "}]},{"type":"text","value":"\n\t"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、虽然多数据系列时堆叠面积图比面积图有更好的展示效果,但依然不建议堆叠面积图中包含过多数据系列,最好不要多于 7 个,以免数据难以辨识。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、堆积面积图要展示部分和整体之间的关系,所以不能用于包含负值的数据的展示。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、建议堆叠面积图中把变化量较大的数据放在上方,变化量较小的数据放在下方会获得更加的展示效果。"}]}]},"text":"# 堆叠面积图\n\n堆积面积图是一种特殊的面积图,可以用来比较在一个区间内的多个变量。堆叠面积图和面积图的区别在于,堆叠面积图每个数据系列的起点都是基于前一个数据系列绘制的,也就是每度量一行就要填满行与行之间的区域。\n\n如果有多个数据系列,并想分析每个类别的部分到整体的关系,并展现部分量对于总量的贡献时,使用堆积面积图是非常合适的选择。例如下图显示某个销售员对总销售额的贡献。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySthj74z\">\n</iframe>\n\n有两种不同的堆积面积图类型:\n\n- <b>传统的堆积面积图</b>:直接使用原始值堆叠,显示整个过程如何变化。\n- <b>百分比堆积面积图</b>:百分比堆积显示不同部分之间的关 ​​ 系如何随时间而变化。其中累积的总数不重要,重要的是显示出类别分布在整体中的作用。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf\">\n</iframe>\n\n## 堆叠面积图的使用建议\n\n1、图表有重叠的数据时,类别数量越多,重叠越多,因此可见度越低。如果使用面积图(如下示例)时会因为系列的重叠而无法阅读。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\">\n</iframe>\n\n那同样的数据,换成使用堆叠面积图展示,则相对更容易阅读。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSyBN2i7Vf\">\n</iframe>\n\n<div class=\"article-look-outside\">\n\t<div class=\"article-look-inside\" style=\"padding-bottom:50%\">\n\t <iframe class=\"article-look-content\"\n\t src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHyNDxOo4M\">\n\t </iframe>\n\t</div>\n</div>\n\n2、虽然多数据系列时堆叠面积图比面积图有更好的展示效果,但依然不建议堆叠面积图中包含过多数据系列,最好不要多于 7 个,以免数据难以辨识。\n\n3、堆积面积图要展示部分和整体之间的关系,所以不能用于包含负值的数据的展示。\n\n4、建议堆叠面积图中把变化量较大的数据放在上方,变化量较小的数据放在下方会获得更加的展示效果。\n","dir":"/zh/best-practice/specification/line","path":"/zh/best-practice/specification/line/stacked-area","extension":".md","createdAt":"2021-06-04T12:26:37.931Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897109583},"$loki":127},{"slug":"bubble","toc":[{"id":"气泡图的使用建议","depth":2,"text":"气泡图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"气泡图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%B0%94%E6%B3%A1%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"气泡图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"气泡图是显示变量之间相关性的一种图表。与散点图类似。在直角坐标系中显示数据的两个变量( X 和 Y 轴)之间的关系,数据显示为点的集合。与散点图不同的是,气泡图是一个多变量图,它增加了第三个数值即气泡大小的变量,在气泡图中,较大的气泡表示较大的值。可以通过气泡的位置分布和大小比例,来分析数据的规律。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHkRpZuY4z&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"气泡图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%B0%94%E6%B3%A1%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"气泡图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、当数据具有 3 个序列、特征及相关值,使用气泡图是一个不错的选择。如下图气泡的位置显示了代码提交的日期、具体的时间点,气泡的大小说明了提交的代码量。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=scatter-punchCard"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、我们还可以给气泡加入颜色编码。例如下图用不同的颜色将三个地区的空气数据分类标注,红色代表北京,黄色代表上海、蓝色代表广州,可以直观地对比分析三地的空气质量情况。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xr1kK7LoEf&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、气泡图还经常用于和地图结合,其中 x 轴和 y 轴是经度和纬度的数据定位,气泡的大小可以表明该位置数量的多少。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=scatter-world-population"},"children":[{"type":"text","value":"\n"}]}]},"text":"# 气泡图\n\n气泡图是显示变量之间相关性的一种图表。与散点图类似。在直角坐标系中显示数据的两个变量( X 和 Y 轴)之间的关系,数据显示为点的集合。与散点图不同的是,气泡图是一个多变量图,它增加了第三个数值即气泡大小的变量,在气泡图中,较大的气泡表示较大的值。可以通过气泡的位置分布和大小比例,来分析数据的规律。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHkRpZuY4z&v=1\">\n</iframe>\n\n## 气泡图的使用建议\n\n1、当数据具有 3 个序列、特征及相关值,使用气泡图是一个不错的选择。如下图气泡的位置显示了代码提交的日期、具体的时间点,气泡的大小说明了提交的代码量。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=scatter-punchCard\">\n</iframe>\n\n2、我们还可以给气泡加入颜色编码。例如下图用不同的颜色将三个地区的空气数据分类标注,红色代表北京,黄色代表上海、蓝色代表广州,可以直观地对比分析三地的空气质量情况。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xr1kK7LoEf&v=1\">\n</iframe>\n\n3、气泡图还经常用于和地图结合,其中 x 轴和 y 轴是经度和纬度的数据定位,气泡的大小可以表明该位置数量的多少。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=scatter-world-population\">\n</iframe>\n","dir":"/zh/best-practice/specification/scatter","path":"/zh/best-practice/specification/scatter/bubble","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897109586},"$loki":128},{"slug":"bi-directional-bar","toc":[{"id":"双向柱状-\b-图的使用建议","depth":2,"text":"双向柱状 \b 图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"双向柱状图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%8F%8C%E5%90%91%E6%9F%B1%E7%8A%B6%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"双向柱状图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"双向柱状图多用于展示包含相反含义的数据的对比。其中图表的一个轴显示正在比较的类别,而另一轴代表对应的刻度值。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"双向柱状图一般用于正负两份相反数据的对比。例如一周内个人收入和支出的统计,其中收入为正数,支出为负数。使用双向柱状图可以很明确的对收入和支出做出对比,并能从单个系列中分析收入和支出的数值及波动。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"双向柱状图可分为垂直方向的双向柱状图(如上图)和水平方向的双向柱状图(又叫正负条形图,如下图),例如一个客户满意度的调查数据分析中,有正面评价和负面评价,这很适合用正负条形图,所有数据在中间对齐,正面的评价数据分布在右侧,负面的评价数据分布在左侧。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHJ1un374z"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"双向柱状-\b-图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E5%8F%8C%E5%90%91%E6%9F%B1%E7%8A%B6-%08-%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"双向柱状 \b 图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、双向柱状图正向和负向的数据具有对比性,因此一般选用差值较大的具有对比性的颜色。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、永远不要在 0 基线的右边画负值的水平条行图或在 0 基线的上边画负值的柱子,以免和常识违背造成误解。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bi-directional-bar01.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、双向柱状图多用于展示含相反含义的数据,因此要避免不具有正负含义的数据使用而造成的误解。 如下图人口统计图表中使用双向柱状图,一侧绘制男性的数据,另一侧绘制女性的数据,只是单纯的两类不同数据的对比,并不存在负数。那么,此时将两个数据序列绘制成一个分组柱状图是更合适的。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/bar/bi-directional-bar02.jpg"},"children":[]},{"type":"text","value":"\n"}]}]},"text":"# 双向柱状图\n\n双向柱状图多用于展示包含相反含义的数据的对比。其中图表的一个轴显示正在比较的类别,而另一轴代表对应的刻度值。\n\n双向柱状图一般用于正负两份相反数据的对比。例如一周内个人收入和支出的统计,其中收入为正数,支出为负数。使用双向柱状图可以很明确的对收入和支出做出对比,并能从单个系列中分析收入和支出的数值及波动。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xS18jqmX4f\">\n</iframe>\n\n双向柱状图可分为垂直方向的双向柱状图(如上图)和水平方向的双向柱状图(又叫正负条形图,如下图),例如一个客户满意度的调查数据分析中,有正面评价和负面评价,这很适合用正负条形图,所有数据在中间对齐,正面的评价数据分布在右侧,负面的评价数据分布在左侧。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHJ1un374z\">\n</iframe>\n\n## 双向柱状 \b 图的使用建议\n\n1、双向柱状图正向和负向的数据具有对比性,因此一般选用差值较大的具有对比性的颜色。\n\n2、永远不要在 0 基线的右边画负值的水平条行图或在 0 基线的上边画负值的柱子,以免和常识违背造成误解。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bi-directional-bar01.jpg\">\n</img>\n\n3、双向柱状图多用于展示含相反含义的数据,因此要避免不具有正负含义的数据使用而造成的误解。 如下图人口统计图表中使用双向柱状图,一侧绘制男性的数据,另一侧绘制女性的数据,只是单纯的两类不同数据的对比,并不存在负数。那么,此时将两个数据序列绘制成一个分组柱状图是更合适的。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/bar/bi-directional-bar02.jpg\">\n</img>\n","dir":"/zh/best-practice/specification/bar","path":"/zh/best-practice/specification/bar/bi-directional-bar","extension":".md","createdAt":"2021-06-04T12:26:37.924Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109592},"$loki":129},{"slug":"basic-pie","toc":[{"id":"饼图的使用建议","depth":2,"text":"饼图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"饼图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%A5%BC%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"饼图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"饼图主要用于展现不同类别数值相对于总数的占比情况。图中每个分块(扇区)的弧长表示该类别的占比大小,所有分块数据总和为 100%。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"虽然饼图能快速有效地展示数据的比例分布,并被广泛用于各个领域,但是饼图及其变形图表一直是比较受争议的图表。因此,我们在使用饼图及其变形图表时一定要谨慎并避免走进误区。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"饼图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E9%A5%BC%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"饼图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、饼图适合用来展示单一维度数据的占比,要求其数值中没有零或负值,并确保各分块占比总和为 100%。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、我们很难比较一个分块过多的饼图的数据,建议尽量将饼图分块数量控制在五个以内。当数据类别较多时,可以把较小或不重要的数据合并成第五个分块,并命名为\"其它\"。如果各类别都必须全部展示,此时选择柱状图或堆积柱状图或许更合适。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie02.jpg"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、饼图不适合被用于精确数据的比较,因此当各类别数据占比较接近时(如下左图),我们很难对比出每个类别占比的大小。此时建议选用柱状图或南丁格尔玫瑰图(如下右图)来获取更好的展示效果。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie03.jpg"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"4、大多数人视觉习惯是按照顺时针和自上而下的顺序去观察。因此在绘制饼图时,建议从 12 点钟开始沿顺时针右边第一个分块绘制饼图最大的数据分块,有效的强调其重要性。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"其余的数据分块有两种建议,一种是按照数据大小依次顺时针排列,另一种是在 12 点钟的左边绘制第二大的分块,其余的分块按照逆时针排列,最小的分块放在底部。如下图所示。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie01.jpg"},"children":[]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"按照数据大小区别顺序,不仅符合用户的视觉习惯,也更易于数据的识别和比较。当然基于这个原理,我们也可以把需要强调的最重要的部分(不一定是最大的部分)放在最突出重要的位置。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"5、可以添加一些装饰来强调饼图中的某一个数据。颜色、动效、样式、位置等元素都可以被用来突出显示一个扇区。请注意适度,有时太多的装饰会让用户理解数据时分心。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"6、三维的饼图歪曲了各分块相对于整体的比例关系,会造成错误及理解上的困扰。因此不建议使用 3D 饼图。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/pie/pie04.jpg"},"children":[]}]},"text":"# 饼图\n\n饼图主要用于展现不同类别数值相对于总数的占比情况。图中每个分块(扇区)的弧长表示该类别的占比大小,所有分块数据总和为 100%。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1\">\n</iframe>\n\n虽然饼图能快速有效地展示数据的比例分布,并被广泛用于各个领域,但是饼图及其变形图表一直是比较受争议的图表。因此,我们在使用饼图及其变形图表时一定要谨慎并避免走进误区。\n\n## 饼图的使用建议\n\n1、饼图适合用来展示单一维度数据的占比,要求其数值中没有零或负值,并确保各分块占比总和为 100%。\n\n2、我们很难比较一个分块过多的饼图的数据,建议尽量将饼图分块数量控制在五个以内。当数据类别较多时,可以把较小或不重要的数据合并成第五个分块,并命名为\"其它\"。如果各类别都必须全部展示,此时选择柱状图或堆积柱状图或许更合适。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/pie/pie02.jpg\" />\n\n3、饼图不适合被用于精确数据的比较,因此当各类别数据占比较接近时(如下左图),我们很难对比出每个类别占比的大小。此时建议选用柱状图或南丁格尔玫瑰图(如下右图)来获取更好的展示效果。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/pie/pie03.jpg\" />\n\n4、大多数人视觉习惯是按照顺时针和自上而下的顺序去观察。因此在绘制饼图时,建议从 12 点钟开始沿顺时针右边第一个分块绘制饼图最大的数据分块,有效的强调其重要性。\n\n其余的数据分块有两种建议,一种是按照数据大小依次顺时针排列,另一种是在 12 点钟的左边绘制第二大的分块,其余的分块按照逆时针排列,最小的分块放在底部。如下图所示。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/pie/pie01.jpg\" />\n\n按照数据大小区别顺序,不仅符合用户的视觉习惯,也更易于数据的识别和比较。当然基于这个原理,我们也可以把需要强调的最重要的部分(不一定是最大的部分)放在最突出重要的位置。\n\n5、可以添加一些装饰来强调饼图中的某一个数据。颜色、动效、样式、位置等元素都可以被用来突出显示一个扇区。请注意适度,有时太多的装饰会让用户理解数据时分心。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\n src=\"https://gallery.echartsjs.com/view-lite.html?cid=xHySlBkIEM&v=1\">\n</iframe>\n\n6、三维的饼图歪曲了各分块相对于整体的比例关系,会造成错误及理解上的困扰。因此不建议使用 3D 饼图。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\" src=\"images/design/pie/pie04.jpg\" />\n","dir":"/zh/best-practice/specification/pie","path":"/zh/best-practice/specification/pie/basic-pie","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-06-04T12:26:37.932Z","meta":{"version":0,"revision":0,"created":1627897109594},"$loki":130},{"slug":"scatter","toc":[{"id":"散点图的使用建议","depth":2,"text":"散点图的使用建议"}],"body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"散点图"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%95%A3%E7%82%B9%E5%9B%BE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"散点图"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"散点图在直角坐标系显示数据的两个变量(X 和 Y 轴)之间的关系,数据显示为点的集合,适合用于在不考虑时间的情况下比较大量的数据点。散点图通常用来识别两个变量之间的相关性或用来观察他们的关系,从而发现某种趋势,对于查找异常值或理解数据分布也很有效。如下图某个班级学生身高和体重的分布状况。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xSkCyUwKNG&v=1"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"散点图会显示不同类型的相关性,相关性即变量之间的关系。通常有正相关、负相关、不相关三种相关性。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"ul","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"正相关:数据点从低 x、y 值的点到高 x、y 值,一个变量增加,另一个变量增加。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"负相关:数据点从高 x、y 值的点到低 x、y 值,一个变量增加,另一个变量减少。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"不相关:数据没有明显的方向性,一个变量变化对另一个没有影响。"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"img","props":{"max-width":"830","width":"100%","height":"100%","src":"images/design/scatter/scatter5.jpg"},"children":[]},{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"需要注意的是,散点图能够有效的说明两个变量之间的相关性,但是并不能有力地证明 \b 其中存在因果关系。例如广告投放量和点击率是正相关的,但是不能说点击率高一定是因为广告投放量多造成的。但是,如果有明显的正相关性,就有足够的理由去增加投放量,然后再去观察数据。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"h2","props":{"id":"散点图的使用建议"},"children":[{"type":"element","tag":"a","props":{"ariaHidden":"true","href":"#%E6%95%A3%E7%82%B9%E5%9B%BE%E7%9A%84%E4%BD%BF%E7%94%A8%E5%BB%BA%E8%AE%AE","tabIndex":-1},"children":[{"type":"element","tag":"span","props":{"className":["icon","icon-link"]},"children":[]}]},{"type":"text","value":"散点图的使用建议"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"1、如果一个散点图没有显示变量之间的任何关系,那么或许该图表类型不是此数据的最佳选择。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2、如果数据包含不同系列,可以给不同系列使用不同的颜色,例如蓝色代表男性,红色代表女性,并增加图例标注出蓝色代表的含义。可以区分了解男女不同性别身高和体重的分布状况。还可以分别添加每个系列平均值的辅助线,可以更好的理解数据的分布情况,如图中女生体重高于平均值的比低于平均值的少。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"iframe","props":{"max-width":"830","width":"100%","height":400,"src":"https://gallery.echartsjs.com/view-lite.html?cid=xBy9E2oufM"},"children":[{"type":"text","value":"\n"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"在观察两个变量之间的关系时,趋势线是非常有用的,趋势线的形状走向解释了两个变量之间的关系类型,还可以用来预测未来的值。但需要注意的是趋势线最可只能使用两条,以免干扰正常的数据的阅读。"}]},{"type":"text","value":"\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"3、散点图只有有足够多的数据点,并且数据之间有相关性时才能呈现很好的结果。如果一份数据只有极少的信息或者数据间没有相关性,那么绘制一个很空的散点图和不相关的散点图都是没有意义的。"}]}]},"text":"# 散点图\n\n散点图在直角坐标系显示数据的两个变量(X 和 Y 轴)之间的关系,数据显示为点的集合,适合用于在不考虑时间的情况下比较大量的数据点。散点图通常用来识别两个变量之间的相关性或用来观察他们的关系,从而发现某种趋势,对于查找异常值或理解数据分布也很有效。如下图某个班级学生身高和体重的分布状况。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xSkCyUwKNG&v=1\">\n</iframe>\n\n散点图会显示不同类型的相关性,相关性即变量之间的关系。通常有正相关、负相关、不相关三种相关性。\n\n- 正相关:数据点从低 x、y 值的点到高 x、y 值,一个变量增加,另一个变量增加。\n\n- 负相关:数据点从高 x、y 值的点到低 x、y 值,一个变量增加,另一个变量减少。\n\n- 不相关:数据没有明显的方向性,一个变量变化对另一个没有影响。\n\n<img max-width=\"830\" width=\"100%\" height=\"100%\"\nsrc=\"images/design/scatter/scatter5.jpg\">\n</img>\n\n需要注意的是,散点图能够有效的说明两个变量之间的相关性,但是并不能有力地证明 \b 其中存在因果关系。例如广告投放量和点击率是正相关的,但是不能说点击率高一定是因为广告投放量多造成的。但是,如果有明显的正相关性,就有足够的理由去增加投放量,然后再去观察数据。\n\n## 散点图的使用建议\n\n1、如果一个散点图没有显示变量之间的任何关系,那么或许该图表类型不是此数据的最佳选择。\n\n2、如果数据包含不同系列,可以给不同系列使用不同的颜色,例如蓝色代表男性,红色代表女性,并增加图例标注出蓝色代表的含义。可以区分了解男女不同性别身高和体重的分布状况。还可以分别添加每个系列平均值的辅助线,可以更好的理解数据的分布情况,如图中女生体重高于平均值的比低于平均值的少。\n\n<iframe max-width=\"830\" width=\"100%\" height=\"400\"\nsrc=\"https://gallery.echartsjs.com/view-lite.html?cid=xBy9E2oufM\">\n</iframe>\n\n在观察两个变量之间的关系时,趋势线是非常有用的,趋势线的形状走向解释了两个变量之间的关系类型,还可以用来预测未来的值。但需要注意的是趋势线最可只能使用两条,以免干扰正常的数据的阅读。\n\n3、散点图只有有足够多的数据点,并且数据之间有相关性时才能呈现很好的结果。如果一份数据只有极少的信息或者数据间没有相关性,那么绘制一个很空的散点图和不相关的散点图都是没有意义的。\n","dir":"/zh/best-practice/specification/scatter","path":"/zh/best-practice/specification/scatter/scatter","extension":".md","createdAt":"2021-06-04T12:26:37.932Z","updatedAt":"2021-07-29T06:23:03.480Z","meta":{"version":0,"revision":0,"created":1627897109602},"$loki":131}],"idIndex":[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,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131],"maxId":131,"_dirty":true,"_nestedProperties":[],"transactional":false,"asyncListeners":false,"disableMeta":false,"disableChangesApi":true,"disableDeltaChangesApi":true,"cloneObjects":false,"cloneMethod":"deep","changes":[],"_fullTextSearch":{"ii":{"title":{"_store":true,"_optimizeChanges":true,"docCount":12,"docStore":[[1,{"fieldLength":2}],[2,{"fieldLength":1}],[3,{"fieldLength":1}],[4,{"fieldLength":1}],[5,{"fieldLength":2}],[6,{"fieldLength":2}],[8,{"fieldLength":1}],[9,{"fieldLength":1}],[10,{"fieldLength":1}],[11,{"fieldLength":1}],[12,{"fieldLength":1}],[13,{"fieldLength":1}]],"totalFieldLength":15,"root":{"k":[103,115,98,99,97,112,101,104,24555,20837,27010,24212,26368,32534],"v":[{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[1,1]]}}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[1,1]]}}]}]}]}]}]}]},{"k":[97,101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[2,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[5,1]]}}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[3,1]]}}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[4,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[5,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[6,1]]}}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[6,1]]}}]}]}]}]}]}]}]},{"k":[36895],"v":[{"k":[19978],"v":[{"k":[25163],"v":[{"d":{"df":1,"dc":[[8,1]]}}]}]}]},{"k":[38376],"v":[{"k":[31687],"v":[{"d":{"df":1,"dc":[[9,1]]}}]}]},{"k":[24565],"v":[{"k":[31687],"v":[{"d":{"df":1,"dc":[[10,1]]}}]}]},{"k":[29992],"v":[{"k":[31687],"v":[{"d":{"df":1,"dc":[[11,1]]}}]}]},{"k":[20339],"v":[{"k":[23454],"v":[{"k":[36341],"v":[{"d":{"df":1,"dc":[[12,1]]}}]}]}]},{"k":[36753],"v":[{"k":[26412],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"d":{"df":1,"dc":[[13,1]]}}]}]}]}]}]}},"description":{"_store":true,"_optimizeChanges":true,"docCount":0,"docStore":[],"totalFieldLength":0,"root":{}},"slug":{"_store":true,"_optimizeChanges":true,"docCount":131,"docStore":[[0,{"fieldLength":1}],[1,{"fieldLength":1}],[2,{"fieldLength":1}],[3,{"fieldLength":1}],[4,{"fieldLength":1}],[5,{"fieldLength":1}],[6,{"fieldLength":1}],[7,{"fieldLength":1}],[8,{"fieldLength":1}],[9,{"fieldLength":1}],[10,{"fieldLength":1}],[11,{"fieldLength":1}],[12,{"fieldLength":1}],[13,{"fieldLength":1}],[14,{"fieldLength":1}],[15,{"fieldLength":1}],[16,{"fieldLength":1}],[17,{"fieldLength":1}],[18,{"fieldLength":1}],[19,{"fieldLength":1}],[20,{"fieldLength":1}],[21,{"fieldLength":1}],[22,{"fieldLength":1}],[23,{"fieldLength":1}],[24,{"fieldLength":1}],[25,{"fieldLength":1}],[26,{"fieldLength":1}],[27,{"fieldLength":1}],[28,{"fieldLength":1}],[29,{"fieldLength":1}],[30,{"fieldLength":1}],[31,{"fieldLength":1}],[32,{"fieldLength":1}],[33,{"fieldLength":1}],[34,{"fieldLength":1}],[35,{"fieldLength":1}],[36,{"fieldLength":1}],[37,{"fieldLength":1}],[38,{"fieldLength":1}],[39,{"fieldLength":1}],[40,{"fieldLength":1}],[41,{"fieldLength":1}],[42,{"fieldLength":1}],[43,{"fieldLength":1}],[44,{"fieldLength":1}],[45,{"fieldLength":1}],[46,{"fieldLength":1}],[47,{"fieldLength":1}],[48,{"fieldLength":1}],[49,{"fieldLength":1}],[50,{"fieldLength":1}],[51,{"fieldLength":1}],[52,{"fieldLength":1}],[53,{"fieldLength":1}],[54,{"fieldLength":1}],[55,{"fieldLength":1}],[56,{"fieldLength":1}],[57,{"fieldLength":1}],[58,{"fieldLength":1}],[59,{"fieldLength":1}],[60,{"fieldLength":1}],[61,{"fieldLength":1}],[62,{"fieldLength":1}],[63,{"fieldLength":1}],[64,{"fieldLength":1}],[65,{"fieldLength":1}],[66,{"fieldLength":1}],[67,{"fieldLength":1}],[68,{"fieldLength":1}],[69,{"fieldLength":1}],[70,{"fieldLength":1}],[71,{"fieldLength":1}],[72,{"fieldLength":1}],[73,{"fieldLength":1}],[74,{"fieldLength":1}],[75,{"fieldLength":1}],[76,{"fieldLength":1}],[77,{"fieldLength":1}],[78,{"fieldLength":1}],[79,{"fieldLength":1}],[80,{"fieldLength":1}],[81,{"fieldLength":1}],[82,{"fieldLength":1}],[83,{"fieldLength":1}],[84,{"fieldLength":1}],[85,{"fieldLength":1}],[86,{"fieldLength":1}],[87,{"fieldLength":1}],[88,{"fieldLength":1}],[89,{"fieldLength":1}],[90,{"fieldLength":1}],[91,{"fieldLength":1}],[92,{"fieldLength":1}],[93,{"fieldLength":1}],[94,{"fieldLength":1}],[95,{"fieldLength":1}],[96,{"fieldLength":1}],[97,{"fieldLength":1}],[98,{"fieldLength":1}],[99,{"fieldLength":1}],[100,{"fieldLength":1}],[101,{"fieldLength":1}],[102,{"fieldLength":1}],[103,{"fieldLength":1}],[104,{"fieldLength":1}],[105,{"fieldLength":1}],[106,{"fieldLength":1}],[107,{"fieldLength":1}],[108,{"fieldLength":1}],[109,{"fieldLength":1}],[110,{"fieldLength":1}],[111,{"fieldLength":1}],[112,{"fieldLength":1}],[113,{"fieldLength":1}],[114,{"fieldLength":1}],[115,{"fieldLength":1}],[116,{"fieldLength":1}],[117,{"fieldLength":1}],[118,{"fieldLength":1}],[119,{"fieldLength":1}],[120,{"fieldLength":1}],[121,{"fieldLength":1}],[122,{"fieldLength":1}],[123,{"fieldLength":1}],[124,{"fieldLength":1}],[125,{"fieldLength":1}],[126,{"fieldLength":1}],[127,{"fieldLength":1}],[128,{"fieldLength":1}],[129,{"fieldLength":1}],[130,{"fieldLength":1}]],"totalFieldLength":131,"root":{"k":[103,112,109,99,115,111,116,104,100,105,97,108,101,118,114,119,102,98,53],"v":[{"k":[101,97,114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[67,1],[79,1]]}}]}]}]},{"k":[111],"v":[{"k":[117],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[99,1],[121,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115,108],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":12,"dc":[[1,1],[2,1],[3,1],[4,1],[5,1],[6,1],[8,1],[9,1],[10,1],[11,1],[12,1],[13,1]]}}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[87,1],[108,1]]}}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[98],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[14,1],[20,1],[21,1]]}}]}]}]}]}]},{"k":[111,97,104],"v":[{"k":[111,110,108],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[15,1],[22,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[19,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[69,1],[83,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[118],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101,116,109,99],"v":[{"k":[114],"v":[{"k":[105,118],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[16,1],[27,1]]}}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[57,1],[74,1]]}}]}]}]}]},{"k":[121,97,101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[99],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[98,108,97],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[84,1],[98,1],[111,1],[122,1]]}}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[93,1],[118,1]]}}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[89,1],[120,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[107,1],[130,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[17,1],[24,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":2,"dc":[[18,1],[25,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[112],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]}]},{"k":[111,114,97,121],"v":[{"k":[119,117],"v":[{"k":[110],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[26,1],[43,1]]}}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]}]},{"k":[105,97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[39,1],[60,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[45,115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[109,110],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[29,1],[41,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[114,120],"v":[{"k":[105,101],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]},{"k":[97],"v":[{"d":{"df":2,"dc":[[100,1],[123,1]]},"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[90,1],[114,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]}]}]},{"k":[118,100],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105,53],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[102,117],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,105,97,111],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[66,1],[82,1]]}}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[97,1],[112,1]]}}]}]}]},{"k":[114,97,101],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[70,1],[91,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[110],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[68,1],[80,1]]}}]}]}]}]}]},{"k":[97,117,105],"v":[{"k":[105,115,114],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[98,108,115,112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[85,1],[101,1],[110,1],[124,1]]}}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[88,1],[104,1],[116,1],[125,1]]}}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[95,1],[106,1],[115,1],[129,1]]}}]}]}]}]}]}]},{"k":[45],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[86,1],[109,1]]}}]}]}]}]}]}]},{"k":[98],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[103,1],[127,1]]}}]}]}]}]},{"k":[45],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[105,1],[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[50],"v":[{"k":[45],"v":[{"k":[48],"v":[{"d":{"df":1,"dc":[[76,1]]}}]}]}]}]}]}},"text":{"_store":true,"_optimizeChanges":true,"docCount":103,"docStore":[[0,{"fieldLength":368}],[7,{"fieldLength":173}],[14,{"fieldLength":0}],[15,{"fieldLength":0}],[16,{"fieldLength":0}],[17,{"fieldLength":0}],[18,{"fieldLength":0}],[19,{"fieldLength":0}],[20,{"fieldLength":0}],[21,{"fieldLength":0}],[22,{"fieldLength":0}],[23,{"fieldLength":330}],[24,{"fieldLength":0}],[25,{"fieldLength":0}],[26,{"fieldLength":155}],[27,{"fieldLength":0}],[28,{"fieldLength":538}],[29,{"fieldLength":49}],[30,{"fieldLength":544}],[31,{"fieldLength":541}],[32,{"fieldLength":725}],[33,{"fieldLength":511}],[34,{"fieldLength":490}],[35,{"fieldLength":1395}],[36,{"fieldLength":1180}],[37,{"fieldLength":745}],[38,{"fieldLength":822}],[39,{"fieldLength":0}],[40,{"fieldLength":71}],[41,{"fieldLength":15}],[42,{"fieldLength":248}],[43,{"fieldLength":68}],[44,{"fieldLength":27}],[45,{"fieldLength":146}],[46,{"fieldLength":121}],[47,{"fieldLength":543}],[48,{"fieldLength":145}],[49,{"fieldLength":436}],[50,{"fieldLength":27}],[51,{"fieldLength":835}],[52,{"fieldLength":251}],[53,{"fieldLength":747}],[54,{"fieldLength":262}],[55,{"fieldLength":2857}],[56,{"fieldLength":2634}],[57,{"fieldLength":76}],[58,{"fieldLength":404}],[59,{"fieldLength":1726}],[60,{"fieldLength":0}],[61,{"fieldLength":1112}],[62,{"fieldLength":1793}],[63,{"fieldLength":2329}],[64,{"fieldLength":1357}],[65,{"fieldLength":1802}],[66,{"fieldLength":341}],[67,{"fieldLength":149}],[68,{"fieldLength":346}],[69,{"fieldLength":794}],[70,{"fieldLength":0}],[71,{"fieldLength":174}],[72,{"fieldLength":30}],[73,{"fieldLength":46}],[74,{"fieldLength":22}],[75,{"fieldLength":1005}],[76,{"fieldLength":4}],[77,{"fieldLength":327}],[78,{"fieldLength":597}],[79,{"fieldLength":21}],[80,{"fieldLength":40}],[81,{"fieldLength":816}],[82,{"fieldLength":34}],[83,{"fieldLength":189}],[84,{"fieldLength":299}],[85,{"fieldLength":776}],[86,{"fieldLength":19}],[87,{"fieldLength":7}],[88,{"fieldLength":558}],[89,{"fieldLength":80}],[90,{"fieldLength":169}],[91,{"fieldLength":0}],[92,{"fieldLength":194}],[93,{"fieldLength":159}],[94,{"fieldLength":634}],[95,{"fieldLength":372}],[96,{"fieldLength":429}],[97,{"fieldLength":98}],[98,{"fieldLength":308}],[99,{"fieldLength":187}],[100,{"fieldLength":253}],[101,{"fieldLength":357}],[102,{"fieldLength":317}],[103,{"fieldLength":227}],[104,{"fieldLength":291}],[105,{"fieldLength":275}],[106,{"fieldLength":423}],[107,{"fieldLength":401}],[108,{"fieldLength":2}],[109,{"fieldLength":6}],[110,{"fieldLength":364}],[111,{"fieldLength":71}],[112,{"fieldLength":58}],[113,{"fieldLength":169}],[114,{"fieldLength":62}],[115,{"fieldLength":190}],[116,{"fieldLength":259}],[117,{"fieldLength":93}],[118,{"fieldLength":100}],[119,{"fieldLength":264}],[120,{"fieldLength":40}],[121,{"fieldLength":22}],[122,{"fieldLength":21}],[123,{"fieldLength":32}],[124,{"fieldLength":65}],[125,{"fieldLength":45}],[126,{"fieldLength":55}],[127,{"fieldLength":42}],[128,{"fieldLength":41}],[129,{"fieldLength":58}],[130,{"fieldLength":48}]],"totalFieldLength":42473,"root":{"k":[35,103,115,97,101,100,109,119,102,105,116,110,91,104,111,99,113,96,62,98,121,106,60,47,45,112,114,54,118,61,123,39,125,108,120,50,51,49,93,117,24555,33719,25903,19978,22312,36873,25991,20851,24341,30340,25171,32472,20934,23481,20043,20026,28982,26041,23454,22522,25351,20837,20351,36825,107,42,46,34,124,52,40,122,165,48,176,55,56,53,57,44,43,41,36,63,58,37,92,33,95,23547,25216,30830,26377,22240,26412,20013,21019,25110,20363,21028,25253,22914,27169,24182,21672,31561,38750,20854,24403,23448,24120,31038,20551,29305,23433,20320,25353,22270,25552,26680,28210,26159,27880,25509,38656,25105,23545,26469,31995,32452,36890,31867,20174,39033,39029,30446,21363,21151,35814,25512,36164,30456,29256,25554,27983,36827,21457,21442,21644,24213,19968,26356,20855,25968,21487,26080,21046,36981,40664,35774,24320,29983,23646,25972,37197,23450,38500,23436,20915,36824,20316,34987,25340,26032,20869,20195,27604,24038,21491,19979,39640,25928,28155,22320,21021,33410,23558,26102,21709,30417,20107,25913,19981,38405,27491,38144,20197,22352,30452,36724,26222,8220,21051,20803,31034,20889,35821,37325,27573,21477,20998,38169,33150,38463,25511,40736,22788,25152,20256,20004,28857,21482,34920,33258,35302,21435,21462,26174,35813,27809,24847,24067,26679,20132,26681,39068,35843,35270,26368,37324,26684,20840,27492,26631,33021,20063,27599,37117,31532,29616,36830,21017,31163,12290,38,126,65289,25277,25226,29992,24180,21516,37027,38142,21407,20960,65292,21069,65288,36755,22806,65306,21478,21518,20250,20540,22810,23567,8221,32431,25805,32500,20294,32780,25490,36807,39318,22768,31616,23601,30475,37319,22823,20102,21015,21160,26144,21333,26497,38024,32447,38382,31572,27668,20687,24037,36716,24418,24207,24322,22635,30001,30334,35831,26367,24494,19988,26381,29615,23500,23383,35797,20462,26576,34429,22987,24819,24102,31890,20202,25159,22278,29366,24615,33039,23618,28040,21152,22269,8203,20989,24050,25551,20027,36148,24863,25104,25302,25193,21464,23610,26082,20301,21040,24635,28431,21319,20173,20381,31227,23427,36820,25240,26093,39292,21517,38647,30740,20877,8,26609,38452,20010,38480,21450,22534,21335,21306,31515,31354,38454,19982,25955,36335,24179,38754,32437,26465,21452,36127],"v":[{"d":{"df":102,"dc":[[0,1],[7,1],[23,1],[26,1],[28,1],[29,1],[30,1],[31,1],[32,1],[33,1],[34,1],[35,1],[36,1],[37,1],[38,1],[40,1],[41,1],[42,1],[43,1],[44,1],[45,1],[46,1],[47,1],[48,1],[49,1],[50,1],[51,1],[52,1],[53,1],[54,1],[55,1],[56,1],[57,1],[58,1],[59,1],[61,1],[62,1],[63,1],[64,1],[65,1],[66,1],[67,1],[68,1],[69,1],[71,1],[72,1],[73,1],[74,1],[75,1],[76,1],[77,1],[78,1],[79,1],[80,1],[81,1],[82,1],[83,1],[84,1],[85,1],[86,1],[87,1],[88,1],[89,1],[90,1],[92,1],[93,1],[94,1],[95,1],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[116,1],[117,1],[118,1],[119,1],[120,1],[121,1],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1]]},"k":[35,109],"v":[{"d":{"df":82,"dc":[[0,3],[7,3],[23,2],[26,1],[28,4],[30,2],[31,2],[32,5],[33,2],[34,4],[35,4],[36,5],[37,8],[38,3],[40,2],[42,4],[43,1],[44,2],[45,2],[46,2],[47,8],[48,2],[49,5],[50,2],[51,4],[52,4],[53,5],[54,3],[55,5],[56,13],[58,3],[59,6],[61,3],[62,5],[63,6],[64,13],[65,3],[66,1],[67,1],[68,1],[69,3],[71,3],[72,2],[73,2],[75,6],[77,6],[78,3],[79,1],[80,1],[81,3],[82,1],[83,4],[85,3],[88,5],[94,3],[95,3],[96,2],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1],[110,3],[113,2],[115,3],[116,5],[119,3],[121,1],[122,1],[123,1],[124,1],[125,1],[126,1],[127,1],[128,1],[129,1],[130,1]]},"k":[35,115],"v":[{"d":{"df":18,"dc":[[23,3],[26,4],[33,5],[37,7],[38,2],[40,3],[43,4],[47,7],[48,5],[54,2],[85,4],[88,2],[94,2],[95,1],[110,4],[115,1],[116,2],[119,2]]},"k":[35],"v":[{"d":{"df":10,"dc":[[23,2],[37,3],[40,2],[47,3],[55,3],[62,3],[63,15],[65,5],[77,15],[81,5]]},"k":[35],"v":[{"d":{"df":4,"dc":[[63,2],[65,5],[77,2],[81,5]]}}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]},{"k":[101,114,105,111,108,117,116,97],"v":[{"k":[116,110,111],"v":[{"d":{"df":12,"dc":[[0,1],[23,3],[26,1],[28,2],[29,1],[55,3],[58,1],[61,2],[63,1],[65,1],[101,1],[102,1]]},"k":[116,115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[0,3],[28,1]]}}]}]}]},{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[101,100],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116,108],"v":[{"k":[101,105],"v":[{"d":{"df":7,"dc":[[0,1],[28,2],[30,4],[55,2],[61,1],[63,1],[65,1]]},"k":[100,44],"v":[{"d":{"df":6,"dc":[[30,2],[36,1],[55,1],[57,1],[65,1],[85,1]]},"k":[58,46],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[98,1]]}}]},{"d":{"df":1,"dc":[[30,1]]}}]},{"k":[110,111],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[30,4]]}}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":5,"dc":[[35,1],[38,1],[56,1],[96,1],[101,1]]},"k":[108,44],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[31,1],[56,1]]}}]}]},{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[31,1],[94,1]]},"k":[45,106],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,3],[81,2]]},"k":[65288],"v":[{"k":[21407],"v":[{"k":[20808],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[111,105,97,101],"v":[{"k":[117,223],"v":[{"k":[112],"v":[{"d":{"df":5,"dc":[[23,2],[36,1],[69,1],[84,1],[85,1]]},"k":[105,115,46,101,44],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"d":{"df":3,"dc":[[58,1],[98,1],[99,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[100,1]]}}]},{"d":{"df":2,"dc":[[98,2],[99,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[99,6]]}}]},{"d":{"df":1,"dc":[[99,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[100],"v":[{"d":{"df":3,"dc":[[32,1],[49,1],[66,1]]},"k":[99,58,105,47],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[28,1],[42,1],[65,1],[81,1]]},"k":[44,111],"v":[{"d":{"df":4,"dc":[[28,3],[42,3],[65,1],[81,1]]}},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,2],[42,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":5,"dc":[[36,1],[53,1],[56,1],[64,1],[83,1]]}},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[112,100,110,121],"v":[{"k":[104],"v":[{"d":{"df":10,"dc":[[33,1],[35,2],[38,1],[51,2],[56,1],[63,2],[66,1],[67,1],[85,1],[106,1]]},"k":[46,105,44,115],"v":[{"d":{"df":3,"dc":[[35,2],[67,1],[89,1]]}},{"k":[99],"v":[{"d":{"df":7,"dc":[[35,3],[36,2],[38,1],[61,7],[65,4],[69,1],[78,3]]},"k":[58,115,97],"v":[{"d":{"df":2,"dc":[[61,5],[78,5]]}},{"d":{"df":1,"dc":[[94,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[63,1],[94,2]]}}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]}]},{"d":{"df":3,"dc":[[38,1],[63,1],[85,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[105,117],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121,105],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]}]}]},{"k":[97,101],"v":[{"k":[116],"v":[{"k":[101,108],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[55,3],[62,2]]}}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]},{"k":[116,118,114],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"d":{"df":2,"dc":[[26,2],[43,2]]}}]}]}]},{"k":[101],"v":[{"d":{"df":4,"dc":[[36,1],[55,2],[56,1],[61,1]]},"k":[110,115],"v":[{"d":{"df":2,"dc":[[36,1],[55,1]]}},{"d":{"df":1,"dc":[[96,1]]}}]}]},{"k":[108],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]}]},{"d":{"df":2,"dc":[[26,1],[65,1]]},"k":[111,105,97,116],"v":[{"k":[100,103],"v":[{"d":{"df":8,"dc":[[31,1],[34,1],[63,2],[84,1],[85,1],[102,1],[103,1],[107,1]]}},{"k":[108],"v":[{"k":[101],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[50,1]]}},{"k":[102],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[107],"v":[{"k":[12289],"v":[{"k":[33150],"v":[{"k":[35759],"v":[{"k":[12289],"v":[{"k":[38463],"v":[{"k":[37324],"v":[{"k":[21644],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]},{"k":[108],"v":[{"k":[44,46],"v":[{"d":{"df":1,"dc":[[69,2]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]},{"d":{"df":1,"dc":[[88,1]]}}]},{"k":[111,97],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[36,2]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[66,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]}]},{"k":[105,101,97],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[63,1],[65,2],[101,1]]},"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[63,101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[117,118,112,116],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,4]]},"k":[114],"v":[{"d":{"df":1,"dc":[[67,6]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":3,"dc":[[85,1],[99,2],[101,3]]}},{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[99,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[94,1]]},"k":[116,117,101,97,114,105,112,111,104,121,118,99,109,119,110,113],"v":[{"k":[97,101,121,114,105,111,117],"v":[{"k":[114,110,98,116,103,99,102],"v":[{"k":[116],"v":[{"k":[101,44,105,39,115],"v":[{"k":[100],"v":[{"d":{"df":7,"dc":[[0,2],[28,1],[55,1],[58,1],[61,1],[63,1],[101,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[37,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[63,1],[65,1],[66,2]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"d":{"df":1,"dc":[[94,1]]}}]}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[114,108],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[31,1],[67,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[33,1],[65,1]]}}]}]},{"k":[101,105],"v":[{"d":{"df":5,"dc":[[33,2],[35,1],[36,1],[63,1],[94,1]]},"k":[115,44,46],"v":[{"k":[39,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":1,"dc":[[36,7]]}}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[55,1],[98,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[98,1]]},"k":[101,58,44],"v":[{"k":[100],"v":[{"d":{"df":7,"dc":[[68,1],[84,7],[93,5],[98,12],[99,1],[102,12],[106,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]},{"d":{"df":6,"dc":[[84,2],[85,4],[93,4],[110,4],[111,2],[118,4]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]},{"k":[102],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[112],"v":[{"d":{"df":2,"dc":[[28,2],[92,4]]},"k":[46,115,44,58],"v":[{"d":{"df":1,"dc":[[0,1]]}},{"d":{"df":1,"dc":[[56,1]]},"k":[46,40],"v":[{"d":{"df":1,"dc":[[68,1]]}},{"k":[34],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[68,1]]}},{"d":{"df":2,"dc":[[92,3],[117,3]]}}]}]},{"k":[108,112],"v":[{"k":[101],"v":[{"d":{"df":13,"dc":[[32,2],[34,2],[36,11],[37,1],[38,2],[59,6],[63,4],[65,2],[69,1],[85,2],[88,5],[90,1],[94,1]]},"k":[61,46,115,44,41,58,123],"v":[{"k":[34],"v":[{"k":[119,101,112],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[58],"v":[{"d":{"df":6,"dc":[[0,2],[7,2],[33,1],[37,1],[47,1],[48,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[58],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[119],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[58],"v":[{"k":[53],"v":[{"k":[48],"v":[{"k":[37],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[36,3]]}},{"d":{"df":5,"dc":[[36,6],[58,1],[59,7],[63,3],[85,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[37,1],[63,1]]}}]},{"d":{"df":4,"dc":[[36,1],[63,2],[90,1],[106,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"d":{"df":1,"dc":[[59,1]]}},{"k":[120],"v":[{"k":[124],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]},{"k":[117,105,111,97,101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[26,1],[38,1],[56,1],[58,1]]},"k":[115,44],"v":[{"d":{"df":2,"dc":[[56,1],[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[99,110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[28,1],[63,1]]}}]}]}]},{"k":[103],"v":[{"d":{"df":9,"dc":[[35,6],[37,1],[51,5],[55,10],[56,1],[62,2],[64,2],[84,1],[96,2]]},"k":[46,44,59,34,115,40],"v":[{"d":{"df":2,"dc":[[35,1],[94,1]]}},{"d":{"df":2,"dc":[[35,5],[95,1]]}},{"d":{"df":3,"dc":[[51,6],[55,3],[62,3]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[84,2]]}},{"k":[96],"v":[{"k":[39],"v":[{"k":[54,50],"v":[{"k":[48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,107,121],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[63,1],[65,1],[100,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[31,1],[107,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":3,"dc":[[59,2],[65,1],[81,1]]}}]},{"d":{"df":1,"dc":[[63,2]]}}]},{"k":[116,119,105],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[92,1],[104,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[106,2]]}}]}]}]},{"k":[108,99],"v":[{"k":[108],"v":[{"d":{"df":8,"dc":[[31,1],[36,1],[56,3],[63,1],[65,8],[66,1],[96,1],[106,1]]},"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[95,2],[115,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[115,101],"v":[{"d":{"df":1,"dc":[[59,2]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"k":[114,99],"v":[{"k":[101,121],"v":[{"k":[100],"v":[{"d":{"df":3,"dc":[[37,1],[38,1],[56,1]]}}]},{"d":{"df":1,"dc":[[63,4]]},"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[112,114,102,105,99,109,103,98,110,100],"v":[{"k":[112,101],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":9,"dc":[[30,1],[31,1],[34,1],[35,1],[36,1],[55,1],[56,7],[63,5],[65,5]]},"k":[115,101,46,105],"v":[{"d":{"df":6,"dc":[[0,1],[36,1],[37,1],[56,1],[63,2],[94,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[100],"v":[{"d":{"df":6,"dc":[[37,1],[55,3],[56,2],[59,1],[63,1],[65,2]]},"k":[44,58,46],"v":[{"d":{"df":1,"dc":[[38,1]]}},{"d":{"df":2,"dc":[[55,1],[65,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[101,112,102,118],"v":[{"d":{"df":8,"dc":[[0,1],[23,2],[30,1],[33,1],[85,2],[100,1],[104,1],[106,1]]}},{"k":[114],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]},{"k":[101],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]},{"k":[102],"v":[{"k":[105],"v":[{"k":[120,99],"v":[{"d":{"df":2,"dc":[[28,3],[55,2]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[101,97],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[65289],"v":[{"k":[65292],"v":[{"k":[33268],"v":[{"k":[21147],"v":[{"k":[20110],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[32593],"v":[{"k":[39029],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[21644],"v":[{"k":[32593],"v":[{"k":[39029],"v":[{"k":[24212],"v":[{"k":[29992],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[34987],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[27531],"v":[{"k":[38556],"v":[{"k":[20154],"v":[{"k":[22763],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[12290],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":8,"dc":[[31,1],[36,1],[56,2],[63,1],[66,1],[67,2],[90,1],[98,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]},{"k":[104,99],"v":[{"d":{"df":10,"dc":[[31,1],[32,4],[35,6],[55,1],[56,3],[58,1],[59,1],[63,9],[66,1],[69,1]]}},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]},{"d":{"df":3,"dc":[[84,1],[95,2],[106,1]]},"k":[109,46],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105,121],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":1,"dc":[[84,1]]}}]},{"k":[97,103],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[99,1],[100,1],[101,1],[102,1],[106,1]]},"k":[101,105,115],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":12,"dc":[[66,1],[67,1],[68,1],[98,1],[99,1],[100,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[84,2]]}}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]}]}]},{"k":[115,109,99],"v":[{"k":[101],"v":[{"k":[113,116],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[96,1]]}}]}]},{"k":[105],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[44,46],"v":[{"d":{"df":1,"dc":[[103,1]]}},{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,98],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]},{"k":[118,108,101,116,114,97,110,99,103,109,112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":14,"dc":[[0,1],[33,2],[56,6],[63,1],[68,1],[85,1],[94,1],[95,1],[98,1],[99,1],[100,1],[102,3],[103,1],[104,1]]}}]}]}]}]},{"k":[101,108],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[0,1],[31,1],[33,1],[35,1],[55,1]]},"k":[101,115,42,105],"v":[{"k":[100],"v":[{"d":{"df":3,"dc":[[35,1],[38,1],[63,1]]},"k":[58,46,39],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}},{"d":{"df":1,"dc":[[35,1]]}},{"k":[41],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]}},{"k":[42],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[111,110],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,2]]}}]},{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]},{"d":{"df":11,"dc":[[0,1],[23,1],[26,1],[36,1],[55,3],[56,2],[59,2],[61,2],[63,3],[65,1],[88,1]]},"k":[109,110],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,2]]}}]},{"d":{"df":21,"dc":[[0,1],[28,1],[36,3],[37,1],[38,1],[56,7],[57,1],[59,5],[61,1],[63,4],[65,1],[69,2],[77,1],[84,1],[85,5],[88,4],[90,1],[96,1],[99,1],[101,1],[103,1]]},"k":[116,105,111,46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":4,"dc":[[32,3],[36,1],[56,1],[88,1]]},"k":[115,46],"v":[{"d":{"df":2,"dc":[[56,1],[65,2]]}},{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[102],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[56,1],[64,1],[78,2]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[59,1],[85,1]]}}]},{"k":[105,118],"v":[{"k":[101,111],"v":[{"k":[115],"v":[{"d":{"df":25,"dc":[[28,1],[30,1],[35,6],[36,3],[38,1],[51,3],[55,4],[56,16],[58,1],[61,2],[62,5],[63,3],[64,2],[84,6],[85,4],[90,2],[93,1],[94,1],[95,2],[98,1],[99,3],[100,2],[101,1],[102,6],[107,1]]},"k":[58,111,116,105,110,46,44,108,41,96,39],"v":[{"d":{"df":51,"dc":[[0,1],[7,1],[28,1],[30,1],[32,1],[34,2],[35,7],[36,6],[37,10],[38,2],[42,1],[46,1],[47,10],[49,1],[51,7],[52,2],[53,4],[54,2],[55,8],[56,14],[58,3],[59,4],[61,4],[62,8],[64,13],[71,3],[75,4],[78,4],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]}},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":6,"dc":[[35,5],[38,1],[51,5],[54,1],[61,2],[78,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[35,2],[51,2],[56,1],[64,1]]}}]}]}]}]},{"d":{"df":13,"dc":[[35,1],[36,1],[55,3],[56,3],[61,1],[63,1],[85,1],[88,1],[90,1],[95,1],[102,1],[105,1],[107,1]]},"k":[100,110,101],"v":[{"k":[97,105],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":3,"dc":[[38,1],[54,1],[56,1]]}}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,2],[64,4]]}}]}]}]}]}]}]},{"d":{"df":10,"dc":[[56,2],[58,1],[59,1],[63,3],[84,2],[85,1],[88,1],[102,2],[103,1],[107,1]]}},{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}}]}]}]}]}]}]}]}]},{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]},"k":[58,65289],"v":[{"d":{"df":1,"dc":[[65,9]]}},{"k":[20013,65306,12290],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,4]]}},{"d":{"df":1,"dc":[[81,1]]}}]}]},{"d":{"df":1,"dc":[[84,1]]}}]}]},{"k":[117],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[57,1]]},"k":[45,46],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[57,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[57,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[107,3]]}}]}]}]}]},{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":3,"dc":[[23,3],[30,1],[35,2]]},"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"k":[115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]},{"k":[100,116,115],"v":[{"d":{"df":1,"dc":[[23,2]]}},{"d":{"df":1,"dc":[[23,1]]},"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]},{"k":[116,111],"v":[{"k":[111,105],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[35,1],[96,2],[97,1],[106,3]]},"k":[46,115,44],"v":[{"d":{"df":1,"dc":[[96,1]]}},{"d":{"df":1,"dc":[[106,3]]}},{"d":{"df":1,"dc":[[106,1]]}}]}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":7,"dc":[[38,3],[56,4],[69,2],[84,2],[90,1],[94,2],[96,1]]},"k":[108,44],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115,97,101],"v":[{"d":{"df":1,"dc":[[38,1]]}},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[38,2]]}}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115,45],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"d":{"df":6,"dc":[[56,1],[65,1],[67,1],[69,1],[92,1],[104,2]]},"k":[108,44,100],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[65,1],[84,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[56,1],[88,1]]}}]}]},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[118,109,110,116,121,102,108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[0,1],[37,1]]},"k":[100],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]},{"k":[101,112],"v":[{"d":{"df":25,"dc":[[28,1],[32,2],[34,1],[35,1],[36,1],[38,1],[55,4],[56,1],[59,2],[61,2],[63,2],[65,3],[66,2],[69,4],[84,5],[85,4],[88,1],[95,1],[97,2],[99,4],[101,2],[102,2],[103,1],[104,1],[106,2]]}},{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]},{"k":[107],"v":[{"k":[101],"v":[{"k":[121],"v":[{"k":[12289,44],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[105,117],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[105,121,97],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[99,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[69,1],[104,2]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[101,100,105,108,98,103,115,104],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[106,109],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,97],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[103,97,100,116],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[38,34],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[37,2],[47,2]]},"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[112,100],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[115,110],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[119],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[45],"v":[{"k":[109],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117,101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[97,108,100],"v":[{"k":[115],"v":[{"k":[121],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[45],"v":[{"k":[102,115],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100,102],"v":[{"k":[101],"v":[{"k":[115,109],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[97,108,99,98,112,115],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[103],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[95],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[103],"v":[{"k":[48],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[103],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[104,1],[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[48],"v":[{"k":[49,50,51,52],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[83,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[83,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[83,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[83,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97,105],"v":[{"k":[114],"v":[{"k":[48],"v":[{"k":[51,52],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[101,1],[124,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[101,1],[124,1]]}}]}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[48],"v":[{"k":[49,50],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[105,1],[128,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[105,1],[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[48],"v":[{"k":[50,51,49,52],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[129,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[129,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[129,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[129,1]]},"k":[62],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[53],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[107,1],[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[47],"v":[{"k":[101,116,110,100,112,103],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[53],"v":[{"k":[45,46],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104,105],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[108,45],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46,45],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]},{"k":[50],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[119],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[104,111],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[108,100],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[46,45],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]},{"k":[50],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,105],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[100,114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[110],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[61],"v":[{"k":[120,103,97,115],"v":[{"k":[104,114,112,105,98,115],"v":[{"k":[49,106,121,107],"v":[{"k":[45,118],"v":[{"k":[102],"v":[{"k":[110],"v":[{"k":[108],"v":[{"k":[99],"v":[{"k":[118],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[66,1],[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[57],"v":[{"k":[52],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[67,1],[79,1]]}}]}]}]}]}]}]}]}]}]},{"k":[104,105,45,49],"v":[{"k":[57,119],"v":[{"k":[51],"v":[{"k":[103],"v":[{"k":[113],"v":[{"k":[118],"v":[{"k":[102],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[66,1],[82,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[103],"v":[{"k":[109],"v":[{"k":[52],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[101,1],[124,1]]}}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[104],"v":[{"k":[110],"v":[{"k":[57],"v":[{"k":[110],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[68,1],[80,1]]}}]}]}]}]}]}]}]}]},{"k":[52],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[56],"v":[{"k":[52],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[100,1],[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[110],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[52],"v":[{"k":[122],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[105,1],[128,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110,115],"v":[{"k":[100],"v":[{"k":[120],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[52],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,2],[126,2]]},"k":[60],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[100,1],[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,108],"v":[{"k":[104],"v":[{"k":[106],"v":[{"k":[55],"v":[{"k":[52],"v":[{"k":[122],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[107],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[106,2],[129,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[112],"v":[{"k":[122],"v":[{"k":[117],"v":[{"k":[121],"v":[{"k":[52],"v":[{"k":[122],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[103,1],[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107,106,121,49],"v":[{"k":[54],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[109],"v":[{"k":[113],"v":[{"k":[118],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[66,1],[82,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105,102],"v":[{"k":[113],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[53],"v":[{"k":[110],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[68,1],[80,1]]}}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[106],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[52],"v":[{"k":[122],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[68,1],[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100,56],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[57],"v":[{"k":[52],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[68,1],[80,1]]}}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"k":[115],"v":[{"k":[120],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[34,38],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[118],"v":[{"k":[61],"v":[{"k":[51],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[99,1],[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[51,107],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[104],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[102],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[99,1],[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[55],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[103,1],[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[49],"v":[{"k":[111],"v":[{"k":[113],"v":[{"k":[106],"v":[{"k":[111],"v":[{"k":[113],"v":[{"k":[113],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[69,1],[83,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[118],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[53],"v":[{"k":[103],"v":[{"k":[122],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[69,1],[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107,121,49,106],"v":[{"k":[55],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[122],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[98,1],[122,1]]}}]}]}]}]}]}]}]}]}]},{"k":[120,121,57],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[55],"v":[{"k":[118],"v":[{"k":[122],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[101,1],[124,1]]}}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[108],"v":[{"k":[110],"v":[{"k":[55],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[101,1],[124,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[50],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[102],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[107,1],[130,1]]}}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[103],"v":[{"k":[49],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[104,1],[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[122],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[118],"v":[{"k":[122],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[104,1],[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107,49,121],"v":[{"k":[111,98,99],"v":[{"k":[54],"v":[{"k":[52],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[100,1],[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[52],"v":[{"k":[109],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[104,1],[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[117],"v":[{"k":[119],"v":[{"k":[107],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[107,1],[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[56,116],"v":[{"k":[106],"v":[{"k":[113],"v":[{"k":[109],"v":[{"k":[120],"v":[{"k":[52],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":4,"dc":[[101,1],[105,1],[124,1],[128,1]]}}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[56],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[118],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[104,1],[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[110],"v":[{"k":[50],"v":[{"k":[105],"v":[{"k":[55],"v":[{"k":[118],"v":[{"k":[102],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,2],[126,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[67,1],[79,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[100,1],[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[112,119],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[103,1],[127,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[103,1],[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109,122,110,103,116,100,120],"v":[{"k":[112,117,105],"v":[{"k":[108],"v":[{"k":[101,105],"v":[{"d":{"df":13,"dc":[[0,2],[36,1],[56,1],[58,3],[59,3],[61,2],[63,4],[65,1],[84,1],[85,1],[88,2],[94,1],[95,1]]},"k":[115,114,44],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[23,1],[36,1]]}}]},{"d":{"df":1,"dc":[[63,3]]}},{"d":{"df":1,"dc":[[88,1]]}}]},{"k":[102,99],"v":[{"k":[121,105],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":7,"dc":[[63,1],[66,1],[67,1],[68,1],[93,1],[94,1],[100,1]]},"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[66,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":12,"dc":[[28,1],[33,14],[56,2],[59,2],[63,1],[65,1],[68,1],[90,1],[94,5],[100,1],[103,4],[106,1]]},"k":[44,46,96],"v":[{"d":{"df":4,"dc":[[26,1],[36,2],[65,1],[94,1]]}},{"d":{"df":3,"dc":[[33,1],[38,1],[61,1]]}},{"d":{"df":1,"dc":[[59,4]]},"k":[65289],"v":[{"k":[65292,12290],"v":[{"k":[40664,30001],"v":[{"k":[35748],"v":[{"k":[26159],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19978],"v":[{"k":[36848],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[65292],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[99,103],"v":[{"k":[101],"v":[{"d":{"df":7,"dc":[[31,1],[36,1],[55,1],[56,1],[59,1],[61,1],[65,4]]}}]},{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":8,"dc":[[38,1],[56,1],[59,1],[63,2],[67,1],[100,1],[102,1],[105,1]]},"k":[97,58],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[31,1],[63,1],[68,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[92,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[117,101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115,46,41],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":2,"dc":[[34,1],[99,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[33,3]]}}]},{"k":[101],"v":[{"d":{"df":7,"dc":[[32,3],[57,1],[69,1],[85,1],[101,2],[102,1],[105,2]]},"k":[115,46],"v":[{"d":{"df":2,"dc":[[32,1],[105,1]]}},{"d":{"df":1,"dc":[[105,1]]}}]}]},{"d":{"df":1,"dc":[[66,1]]}}]},{"k":[101,108,97],"v":[{"k":[99,97,108,101],"v":[{"k":[105],"v":[{"k":[102,97],"v":[{"k":[121,105],"v":[{"d":{"df":8,"dc":[[0,1],[31,1],[33,1],[55,4],[56,7],[59,1],[65,1],[88,2]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[38,1],[56,1]]}}]}]}]},{"k":[101,99],"v":[{"k":[100,115],"v":[{"d":{"df":8,"dc":[[35,1],[36,1],[55,3],[56,1],[59,4],[63,1],[65,1],[88,2]]},"k":[46,44],"v":[{"d":{"df":5,"dc":[[0,1],[55,1],[56,1],[59,2],[65,1]]}},{"d":{"df":2,"dc":[[55,1],[59,1]]}}]},{"d":{"df":1,"dc":[[38,2]]}}]},{"d":{"df":10,"dc":[[31,2],[33,2],[56,2],[65,1],[66,2],[68,2],[69,3],[84,1],[101,1],[103,1]]},"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[44,115],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":9,"dc":[[31,1],[55,1],[56,2],[59,1],[63,2],[65,1],[69,1],[102,1],[104,1]]}}]}]}]},{"k":[107],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[31,1],[36,1]]}}]}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[69,2]]},"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[67,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[67,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99,116,110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"d":{"df":2,"dc":[[38,1],[63,1]]},"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[104,2]]}}]}]}]},{"k":[110,99,114],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"k":[101,105],"v":[{"d":{"df":3,"dc":[[34,1],[63,1],[90,1]]},"k":[46,115],"v":[{"d":{"df":2,"dc":[[34,1],[59,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[85,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"d":{"df":16,"dc":[[23,1],[26,1],[28,1],[36,1],[38,1],[55,1],[56,5],[61,2],[63,4],[65,2],[88,2],[96,1],[98,1],[99,1],[101,1],[105,2]]},"k":[108,109,117,102,114,99,44],"v":[{"k":[118,117,105],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[23,3]]},"k":[100],"v":[{"d":{"df":1,"dc":[[23,2]]}}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[57,1],[63,1]]}}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]},{"k":[101],"v":[{"d":{"df":25,"dc":[[26,1],[29,1],[30,1],[31,2],[32,2],[33,2],[34,2],[35,1],[38,1],[55,8],[56,8],[57,1],[59,4],[61,1],[63,3],[65,8],[68,1],[69,2],[84,1],[85,2],[88,1],[96,2],[101,1],[106,3],[107,1]]},"k":[111,116,104],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"k":[104,105],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44,46],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":7,"dc":[[33,1],[35,1],[55,1],[59,1],[69,1],[94,2],[104,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[69,1],[85,1]]}},{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[26,1],[37,1],[43,1],[55,3],[65,1]]},"k":[58,39,100],"v":[{"d":{"df":8,"dc":[[34,1],[35,1],[51,1],[52,1],[55,10],[56,13],[62,10],[64,13]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[119],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[31,2],[56,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":2,"dc":[[55,8],[63,1]]},"k":[101,116,105],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[55,1],[63,2]]}}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[63,2],[86,2],[101,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"d":{"df":1,"dc":[[100,1]]}}]},{"k":[111,97,105],"v":[{"k":[117,119,101,114,112],"v":[{"k":[108],"v":[{"k":[100],"v":[{"d":{"df":18,"dc":[[23,1],[34,2],[36,2],[37,1],[55,4],[59,1],[61,2],[66,1],[68,1],[69,1],[85,1],[93,1],[99,1],[100,1],[101,3],[102,1],[104,1],[106,3]]}}]}]},{"d":{"df":22,"dc":[[30,1],[31,1],[34,2],[35,1],[55,3],[56,5],[58,1],[61,1],[63,2],[66,1],[68,1],[85,1],[88,1],[95,2],[96,5],[98,1],[100,1],[101,1],[102,2],[104,1],[105,1],[106,1]]},"k":[58,110,47,115,101,116,98],"v":[{"d":{"df":14,"dc":[[30,1],[36,8],[46,1],[53,8],[56,1],[59,8],[64,1],[75,8],[88,1],[95,1],[96,4],[113,4],[115,1],[116,1]]}},{"d":{"df":12,"dc":[[32,1],[56,3],[61,1],[66,1],[68,1],[69,1],[98,1],[100,1],[101,1],[103,1],[104,3],[107,1]]}},{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,1],[61,1]]}}]}]}]}]},{"d":{"df":12,"dc":[[35,1],[63,1],[66,1],[68,2],[69,1],[92,1],[101,2],[102,1],[103,3],[105,1],[106,1],[107,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[68,1]]}}]},{"k":[114],"v":[{"k":[115],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[39,34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[44],"v":[{"k":[34],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[44,101],"v":[{"d":{"df":2,"dc":[[56,1],[101,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[112,100,114,110],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[61,1],[94,4],[95,2],[107,1]]},"k":[115,44,58],"v":[{"d":{"df":2,"dc":[[34,1],[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]},{"d":{"df":2,"dc":[[35,1],[94,1]]}},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]},{"k":[111,101],"v":[{"k":[119],"v":[{"d":{"df":3,"dc":[[36,1],[59,2],[85,1]]},"k":[98,111,99,44,58,115],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[59,1],[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":6,"dc":[[35,1],[36,2],[51,1],[53,2],[59,3],[75,3]]}}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"d":{"df":4,"dc":[[59,1],[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[59,3],[75,3]]}}]},{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58,125],"v":[{"d":{"df":4,"dc":[[36,2],[53,2],[59,3],[75,3]]}},{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58],"v":[{"d":{"df":6,"dc":[[35,1],[36,2],[51,1],[53,2],[59,3],[75,3]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[36,1],[59,2]]}},{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]},{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[56,1],[85,1]]}}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[39,34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[44],"v":[{"k":[34],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,109,110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"d":{"df":8,"dc":[[28,1],[32,1],[56,1],[65,2],[87,1],[88,1],[94,2],[99,1]]},"k":[46,44,115,41],"v":[{"d":{"df":2,"dc":[[32,1],[85,1]]}},{"d":{"df":3,"dc":[[56,1],[85,1],[94,2]]}},{"d":{"df":1,"dc":[[61,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]},{"k":[98,112],"v":[{"k":[111],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[61,1],[94,4]]},"k":[58,115,44],"v":[{"d":{"df":8,"dc":[[32,2],[49,2],[55,1],[59,1],[62,1],[75,1],[94,1],[119,1]]}},{"d":{"df":1,"dc":[[61,2]]},"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[38,1],[61,5],[78,5]]},"k":[58,44],"v":[{"d":{"df":12,"dc":[[36,2],[38,2],[53,2],[54,2],[56,1],[59,3],[61,2],[64,1],[75,3],[78,2],[94,2],[119,2]]}},{"d":{"df":3,"dc":[[61,2],[65,1],[78,2]]}}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]}]}]}]}]},{"k":[116,99],"v":[{"k":[97],"v":[{"k":[120,99],"v":[{"d":{"df":1,"dc":[[37,1]]}},{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"d":{"df":8,"dc":[[28,1],[31,11],[42,1],[45,8],[65,2],[81,2],[94,4],[119,4]]},"k":[114,112],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[28,1],[42,1],[65,1],[81,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[97,101,114,111,104,105],"v":[{"k":[116,108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":8,"dc":[[30,1],[31,1],[38,1],[55,1],[56,1],[94,8],[103,2],[107,10]]},"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":4,"dc":[[63,1],[66,2],[67,1],[105,1]]},"k":[58,115],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[97,101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[111],"v":[{"d":{"df":1,"dc":[[90,1]]},"k":[115,46],"v":[{"d":{"df":3,"dc":[[31,4],[55,1],[63,1]]},"k":[44,46],"v":[{"d":{"df":2,"dc":[[33,1],[63,3]]}},{"d":{"df":2,"dc":[[36,1],[63,1]]}}]},{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[94,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,3]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[64,2],[66,1]]},"k":[46,58,8221],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":2,"dc":[[56,5],[64,5]]}},{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,2]]},"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[58],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]},{"k":[111,97],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[63,1],[89,2]]},"k":[58],"v":[{"d":{"df":6,"dc":[[32,1],[49,1],[61,2],[78,2],[89,1],[120,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[65,1],[85,1],[106,1]]},"k":[101],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[85,1],[94,1],[96,2]]}}]}]}]}]}]},{"k":[101,105],"v":[{"k":[97,101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39,34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[44],"v":[{"k":[34],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":3,"dc":[[36,2],[56,1],[63,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]},{"k":[117],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]},{"d":{"df":51,"dc":[[0,9],[23,12],[26,1],[28,9],[29,3],[30,8],[31,9],[32,3],[33,6],[34,2],[35,9],[36,16],[37,8],[38,13],[40,1],[47,6],[53,4],[55,20],[56,26],[57,1],[58,5],[59,15],[61,11],[63,40],[65,10],[66,8],[67,4],[68,4],[69,7],[84,5],[85,7],[86,1],[88,4],[89,3],[90,1],[92,2],[93,2],[94,9],[95,2],[96,5],[97,1],[98,8],[99,5],[100,2],[101,9],[102,3],[103,5],[104,7],[105,10],[106,4],[107,8]]},"k":[112,114,110,116,115,98,102,108,99,100,117,109,103,120,118,39,58,101,46,12290,44,105],"v":[{"k":[97,112,105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":25,"dc":[[0,3],[7,3],[26,3],[28,2],[29,1],[31,1],[36,1],[38,1],[42,2],[43,3],[45,1],[51,1],[53,1],[55,1],[57,1],[59,1],[61,1],[62,1],[63,19],[65,1],[75,1],[76,1],[77,16],[78,1],[81,1]]}}]}]}]},{"k":[108,114,101],"v":[{"k":[105],"v":[{"k":[99,101,97],"v":[{"k":[97],"v":[{"k":[116,98],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[30,2],[46,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[61,1],[88,1]]}}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[59,4]]}}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[97,112],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[63,1],[65,1]]},"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[36,2]]}}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[65,1],[100,1],[106,1],[107,1]]},"k":[46,108],"v":[{"d":{"df":1,"dc":[[101,1]]}},{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[97,116],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[46,97],"v":[{"d":{"df":1,"dc":[[58,1]]}},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[63,1],[107,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"d":{"df":6,"dc":[[33,3],[48,1],[61,4],[65,10],[78,2],[81,6]]},"k":[41,46,115,93,42,65292,12290,65288,65306],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[65,1]]}},{"k":[40],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[42],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[36827,36825],"v":[{"k":[34892],"v":[{"k":[20102],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[20123],"v":[{"k":[34987],"v":[{"k":[21462],"v":[{"k":[20195],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]},"k":[23427],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"k":[21253],"v":[{"k":[25324],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[21644],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[65289],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,2]]}}]}]},{"k":[101,116,105,114,111,103,99],"v":[{"d":{"df":36,"dc":[[0,1],[28,3],[31,5],[32,3],[33,1],[34,3],[35,7],[36,2],[37,3],[38,6],[55,9],[56,4],[57,2],[58,1],[59,6],[63,4],[65,28],[66,4],[67,1],[69,6],[85,2],[88,3],[94,3],[95,3],[96,1],[97,1],[98,2],[99,1],[100,4],[101,2],[102,3],[103,2],[104,1],[105,3],[106,3],[107,1]]},"k":[97,58],"v":[{"d":{"df":7,"dc":[[34,1],[35,1],[63,2],[90,5],[93,1],[100,10],[102,10]]},"k":[46,115,44],"v":[{"d":{"df":2,"dc":[[35,2],[90,1]]}},{"d":{"df":1,"dc":[[66,1]]},"k":[116,46],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[44,58],"v":[{"d":{"df":2,"dc":[[36,2],[53,1]]}},{"d":{"df":4,"dc":[[90,2],[93,2],[114,2],[118,2]]}}]}]}]}]},{"d":{"df":1,"dc":[[103,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[38,1]]}}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[28,1],[36,2]]},"k":[115,46],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"k":[97,115],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[58,99],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}},{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"k":[111,97],"v":[{"k":[119],"v":[{"d":{"df":2,"dc":[[32,1],[63,1]]}}]},{"k":[121,110],"v":[{"d":{"df":9,"dc":[[38,1],[55,1],[56,3],[62,1],[85,1],[88,1],[94,2],[96,2],[119,1]]},"k":[46,44,58,59,41],"v":[{"d":{"df":2,"dc":[[35,1],[56,2]]},"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[35,1],[56,2]]}},{"d":{"df":1,"dc":[[38,1]]}},{"d":{"df":3,"dc":[[51,1],[94,1],[119,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[68,1],[106,1]]},"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[63,1],[106,1]]}}]}]}]},{"k":[117],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[94,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[106,1]]}}]},{"d":{"df":26,"dc":[[0,2],[23,3],[28,1],[30,1],[31,5],[35,4],[36,1],[37,2],[38,1],[47,2],[55,4],[56,5],[61,2],[63,3],[68,2],[69,6],[88,2],[94,6],[96,2],[98,1],[99,1],[100,2],[101,1],[105,1],[106,1],[107,2]]},"k":[100,121,115,111,97,110,103,105,99,116],"v":[{"d":{"df":44,"dc":[[0,10],[23,6],[26,2],[28,8],[30,4],[31,15],[32,13],[33,12],[34,2],[35,10],[36,9],[37,4],[38,13],[55,19],[56,21],[57,1],[58,4],[59,13],[61,5],[62,1],[63,64],[65,25],[66,9],[68,2],[69,29],[77,1],[81,1],[84,5],[85,4],[88,7],[90,1],[92,5],[94,9],[95,3],[98,6],[99,1],[100,2],[101,1],[102,3],[103,7],[104,3],[105,6],[106,6],[107,9]]},"k":[114,58,63,91,44],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[55,3],[62,3]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":7,"dc":[[26,1],[28,1],[35,1],[55,1],[63,1],[94,1],[95,1]]},"k":[116],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[23,1],[65,1]]}}]}]}]}]}]},{"k":[119],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[88,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[30,1],[55,3],[56,1],[69,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[121],"v":[{"k":[122,115],"v":[{"k":[101],"v":[{"d":{"df":7,"dc":[[56,1],[68,3],[69,1],[102,1],[103,2],[104,1],[105,1]]},"k":[44,100],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":1,"dc":[[92,1]]}}]}]},{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]},{"k":[117,108,101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[12289],"v":[{"k":[118],"v":[{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[66,1]]},"k":[58,46],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"d":{"df":1,"dc":[[66,1]]}}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[67,1]]}}]}]},{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[56,1],[58,2],[63,4]]},"k":[46,115],"v":[{"d":{"df":1,"dc":[[58,2]]}},{"d":{"df":1,"dc":[[63,5]]}}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[97,105],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]},{"k":[45],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":21,"dc":[[0,1],[23,1],[26,1],[32,6],[33,1],[34,1],[35,5],[38,1],[55,2],[56,2],[57,2],[59,5],[63,5],[65,7],[66,1],[69,1],[92,1],[100,1],[101,1],[103,1],[106,1]]},"k":[116,58],"v":[{"k":[114,101,97],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[30,1],[56,1],[105,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[33,1],[100,1],[101,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[32,1]]}}]},{"d":{"df":40,"dc":[[0,1],[28,5],[30,5],[31,9],[32,4],[33,1],[35,6],[36,4],[38,2],[42,3],[45,2],[55,8],[56,21],[57,2],[58,1],[59,4],[61,4],[63,11],[65,14],[66,2],[68,3],[69,8],[81,3],[84,1],[85,3],[88,5],[92,1],[94,7],[95,3],[96,1],[97,1],[98,3],[99,1],[100,1],[102,2],[103,2],[104,4],[105,2],[106,2],[107,6]]},"k":[115,112,58,121],"v":[{"k":[101,105,117,111],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[26,1],[43,1]]}}]}]},{"k":[115,103],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[32,1],[63,1]]}}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[33,1],[36,1]]}}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]},{"d":{"df":3,"dc":[[35,2],[38,1],[63,1]]}},{"k":[110],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[58,5]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,115,108,98,105],"v":[{"k":[117,118],"v":[{"k":[116],"v":[{"d":{"df":6,"dc":[[0,1],[30,4],[35,1],[36,1],[55,1],[59,1]]}}]},{"k":[101],"v":[{"d":{"df":4,"dc":[[28,1],[38,1],[56,2],[107,1]]},"k":[44,58,46],"v":[{"d":{"df":4,"dc":[[55,1],[61,3],[63,1],[65,1]]}},{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[104,1]]}}]}]}]},{"k":[116,111],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[95,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[55,5]]}}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[116,102],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":13,"dc":[[0,2],[26,1],[30,2],[33,3],[35,1],[37,1],[55,1],[56,3],[58,1],[61,1],[85,1],[94,1],[107,1]]}}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[69,1],[98,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[63,1],[101,1]]}}]}]}]}]}]},{"k":[108,115,103,119,114,105,116,101,109],"v":[{"d":{"df":16,"dc":[[28,4],[30,1],[34,1],[35,4],[36,1],[55,3],[56,1],[58,2],[63,5],[68,1],[69,1],[95,2],[97,1],[101,1],[105,1],[106,2]]},"k":[111,44],"v":[{"k":[119],"v":[{"d":{"df":3,"dc":[[23,1],[37,1],[63,3]]},"k":[105,115,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[23,1],[63,6]]}}]}]},{"d":{"df":2,"dc":[[30,1],[63,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]},{"d":{"df":4,"dc":[[56,1],[61,1],[63,1],[65,1]]}}]},{"k":[111],"v":[{"d":{"df":30,"dc":[[23,1],[30,2],[32,1],[34,1],[35,1],[36,1],[37,1],[38,4],[55,5],[56,5],[59,1],[63,14],[66,2],[67,1],[68,2],[69,1],[84,1],[88,1],[89,1],[92,1],[94,1],[96,2],[97,1],[98,1],[99,1],[103,1],[104,2],[105,1],[106,2],[107,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[109],"v":[{"k":[44,115],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[121],"v":[{"k":[115],"v":[{"d":{"df":6,"dc":[[31,1],[34,1],[56,2],[63,2],[65,2],[105,1]]}}]}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[121],"v":[{"d":{"df":3,"dc":[[31,1],[33,1],[56,1]]}}]}]}]}]},{"k":[103,97],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[34,1],[65,1],[81,1],[105,1]]},"k":[109,58,119,115],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[32,1],[59,3]]}}]}]}]},{"d":{"df":5,"dc":[[32,2],[49,2],[59,7],[75,7],[83,1]]}},{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[59,3]]}}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[104,101],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[103],"v":[{"k":[104],"v":[{"d":{"df":7,"dc":[[36,1],[56,1],[59,2],[61,1],[66,1],[84,1],[102,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[46],"v":[{"d":{"df":2,"dc":[[37,8],[47,8]]}}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[104,99,116,114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":6,"dc":[[23,1],[29,1],[63,3],[84,1],[89,1],[106,1]]}}]}]}]}]},{"k":[101,111,117],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105,39,101],"v":[{"k":[98],"v":[{"k":[105,108],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[30,2],[63,6]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[30,3],[46,1]]}}]}]}]},{"d":{"df":1,"dc":[[35,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[114,117],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":9,"dc":[[30,1],[32,3],[34,1],[36,1],[55,2],[56,1],[63,1],[68,1],[106,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[108,46],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[63,1],[65,2]]}}]},{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]}]},{"k":[117,105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[30,1],[56,1]]}}]}]},{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[35,2],[65,4],[81,4]]},"k":[115],"v":[{"d":{"df":2,"dc":[[35,1],[61,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[63,1],[69,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[30,2],[107,3]]},"k":[118,39,100,115,97,114,106,101],"v":[{"k":[97,105],"v":[{"k":[110],"v":[{"k":[116,99],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[28,1]]},"k":[58,115],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":2,"dc":[[56,1],[94,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[100,46],"v":[{"d":{"df":2,"dc":[[55,1],[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[30,2],[95,4]]}},{"d":{"df":9,"dc":[[36,1],[37,4],[58,1],[61,4],[68,1],[85,2],[94,1],[106,1],[107,2]]},"k":[105,101,114,115],"v":[{"k":[116,110],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[37,1],[63,3]]},"k":[97,44],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[31,1],[63,2]]}}]},{"d":{"df":3,"dc":[[63,4],[65,2],[85,1]]}}]}]}]}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[37,2],[59,2]]}}]}]},{"k":[100],"v":[{"d":{"df":4,"dc":[[33,2],[61,1],[63,3],[86,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[37,1],[63,1]]}}]}]}]},{"d":{"df":2,"dc":[[63,1],[65,1]]}}]},{"k":[39],"v":[{"d":{"df":1,"dc":[[35,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[35,2]]}}]}]},{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[117,97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[96,1]]},"k":[105,109,101,115],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[113],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[116,120],"v":[{"k":[111],"v":[{"d":{"df":3,"dc":[[36,3],[55,2],[59,1]]},"k":[109,45],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":2,"dc":[[37,1],[63,2]]},"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":6,"dc":[[30,1],[37,2],[38,2],[56,4],[63,2],[85,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[38,1],[96,1]]}}]}]}]}]}]}]}]}]}]},{"k":[109,97],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]},{"k":[111,97,98],"v":[{"k":[117,110],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":6,"dc":[[31,1],[56,2],[84,1],[98,1],[103,1],[107,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[31,1],[63,2]]}}]}]}]},{"k":[103],"v":[{"d":{"df":3,"dc":[[55,1],[85,1],[101,1]]}}]}]},{"k":[122],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[111,97,103],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[33,1],[65,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[33,1],[57,1]]}}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105,101],"v":[{"k":[115],"v":[{"d":{"df":9,"dc":[[32,4],[56,7],[59,1],[63,4],[66,4],[88,2],[90,1],[94,2],[105,2]]},"k":[108,116,112,44,46,41,39],"v":[{"k":[105,97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[32,2],[49,2],[61,4],[78,4]]}}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[58],"v":[{"d":{"df":3,"dc":[[32,5],[49,4],[83,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[32,3],[49,3]]}}]}]}]}]},{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[38,3],[66,1],[99,1]]}},{"d":{"df":6,"dc":[[38,1],[68,1],[88,1],[94,1],[95,1],[104,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[56,2]]}}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[115],"v":[{"d":{"df":4,"dc":[[32,2],[56,1],[58,3],[66,3]]},"k":[46],"v":[{"d":{"df":2,"dc":[[32,2],[56,1]]}}]}]}]},{"k":[111,101,97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"d":{"df":14,"dc":[[32,1],[33,1],[37,1],[56,2],[63,1],[96,1],[98,2],[99,1],[100,1],[101,1],[104,1],[105,1],[106,1],[107,1]]},"k":[108,97],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[32,2],[38,1],[107,2]]}}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[37,1],[55,1],[63,1],[92,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[94,1],[95,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[34,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[34,5]]}},{"d":{"df":1,"dc":[[34,1]]}}]},{"d":{"df":3,"dc":[[56,7],[59,1],[75,1]]}},{"k":[115],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[68,1]]}},{"d":{"df":1,"dc":[[80,1]]}},{"d":{"df":1,"dc":[[92,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]},{"k":[99,120,109,114,97,108,110,100,102,116,118,46,113,115,105,121,45,103],"v":[{"k":[104,111,115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[111,1]]},"k":[115],"v":[{"d":{"df":54,"dc":[[0,11],[7,9],[23,1],[26,5],[28,12],[29,2],[30,3],[31,7],[32,3],[33,1],[35,9],[36,1],[38,2],[40,1],[41,1],[42,14],[43,4],[44,2],[45,5],[48,1],[49,3],[51,10],[53,3],[54,3],[56,14],[58,4],[59,1],[61,2],[62,3],[63,30],[64,4],[65,19],[71,3],[72,4],[73,2],[74,3],[75,1],[76,1],[77,31],[78,3],[81,15],[85,2],[86,1],[94,3],[95,1],[96,2],[97,1],[109,1],[110,1],[112,1],[113,2],[116,1],[117,1],[119,3]]},"k":[105,46,33,60,44,52,93,53,45,12290,65292,65306],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[28,1],[32,1],[38,1],[84,1]]},"k":[105,117,99,114],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[40],"v":[{"k":[100,99],"v":[{"k":[111],"v":[{"k":[99,109],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[41,44],"v":[{"k":[59],"v":[{"d":{"df":12,"dc":[[0,1],[7,1],[28,2],[33,2],[35,1],[42,2],[48,2],[51,1],[58,2],[61,1],[71,2],[78,1]]}}]},{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[44,101],"v":[{"d":{"df":4,"dc":[[36,3],[53,3],[65,1],[81,1]]}},{"k":[108],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[44,41],"v":[{"d":{"df":2,"dc":[[31,2],[45,2]]}},{"k":[59],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,116],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[91,97],"v":[{"d":{"df":2,"dc":[[28,2],[42,2]]},"k":[115,98],"v":[{"k":[118],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[109,99],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,4],[78,4]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[40],"v":[{"k":[111,115,104],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[60],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116,108],"v":[{"k":[104,114],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[40],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[40],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[0,1]]}},{"k":[115],"v":[{"k":[117],"v":[{"k":[112],"v":[{"k":[62],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[112],"v":[{"k":[62],"v":[{"d":{"df":11,"dc":[[28,1],[36,1],[38,1],[42,1],[53,1],[55,1],[57,1],[59,1],[62,1],[75,1],[78,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":9,"dc":[[28,2],[35,1],[55,2],[63,2],[88,1],[89,1],[92,1],[94,1],[96,1]]}},{"d":{"df":2,"dc":[[53,2],[64,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[36,2]]}}]},{"k":[40],"v":[{"k":[122,46],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[45,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[53,1]]}},{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[73,1]]},"k":[22914],"v":[{"k":[26524],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[20943],"v":[{"k":[23567],"v":[{"k":[21253],"v":[{"k":[20307],"v":[{"k":[31215],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[91],"v":[{"k":[33258],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[26500],"v":[{"k":[24314],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[24182],"v":[{"k":[26367],"v":[{"k":[25442],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29978],"v":[{"k":[33267],"v":[{"k":[21442],"v":[{"k":[19982],"v":[{"k":[36807],"v":[{"k":[31038],"v":[{"k":[21306],"v":[{"k":[36129],"v":[{"k":[29486],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[65292],"v":[{"k":[27491],"v":[{"k":[26159],"v":[{"k":[20320],"v":[{"k":[20204],"v":[{"k":[25165],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,2],[42,2]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[112,97,105,99,101,116],"v":[{"k":[108,101,114,111],"v":[{"k":[97,105,111],"v":[{"k":[105,110],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[0,1],[34,1],[65,1],[107,1]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":4,"dc":[[0,1],[69,1],[84,2],[103,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[105,116],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[36,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[105,114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[114,99,110],"v":[{"k":[105],"v":[{"k":[109,101],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[31,1],[63,2]]},"k":[115,58,46],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[89,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":2,"dc":[[56,1],[63,1]]},"k":[97,101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[65292],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[55,1],[90,1]]},"k":[105],"v":[{"k":[111,110],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[110,114,115],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[101,115],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[109],"v":[{"k":[112,105],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":16,"dc":[[0,1],[23,2],[32,1],[33,1],[35,4],[37,1],[55,4],[56,1],[61,1],[63,1],[65,3],[69,2],[85,1],[88,2],[94,3],[95,1]]},"k":[39,93,115,44,58,46],"v":[{"d":{"df":3,"dc":[[0,1],[28,1],[58,2]]}},{"k":[40],"v":[{"k":[104,101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,2],[57,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[29,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":16,"dc":[[31,1],[35,1],[36,2],[37,1],[38,3],[55,2],[57,2],[58,1],[59,1],[61,4],[63,3],[65,1],[69,1],[90,1],[105,2],[107,2]]}},{"d":{"df":8,"dc":[[35,4],[36,2],[55,4],[56,3],[58,1],[59,6],[61,1],[85,1]]}},{"d":{"df":3,"dc":[[58,1],[61,1],[63,1]]}}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[30,1],[33,1],[59,1],[107,1]]},"k":[105,44,46,115],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[23,2],[55,1]]}}]}]},{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":2,"dc":[[33,1],[56,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]},{"k":[101,108,105],"v":[{"k":[112,101,108],"v":[{"k":[116],"v":[{"d":{"df":6,"dc":[[30,1],[33,1],[61,1],[65,1],[69,1],[104,1]]}}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[31,1],[63,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[39,12289],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"k":[110],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24211],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23548],"v":[{"k":[20986],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[99],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[114,101],"v":[{"k":[97],"v":[{"d":{"df":3,"dc":[[55,3],[65,1],[96,1]]}}]},{"k":[114,110],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[55,6]]}}]}]}]},{"k":[116,115],"v":[{"k":[46],"v":[{"d":{"df":2,"dc":[[56,1],[101,1]]}}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[98,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]}]}]}]},{"k":[112,97,98,111],"v":[{"k":[116,104],"v":[{"k":[121],"v":[{"d":{"df":4,"dc":[[0,1],[55,2],[58,3],[88,4]]}}]},{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115,122],"v":[{"d":{"df":2,"dc":[[36,11],[53,2]]},"k":[58,46],"v":[{"d":{"df":8,"dc":[[35,1],[36,5],[51,1],[53,5],[59,2],[75,2],[96,2],[113,2]]}},{"d":{"df":1,"dc":[[36,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[23,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]},{"k":[101,111],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[37,2]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97,115],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[0,1],[65,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]},{"k":[114,115,99,116],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]}]}]},{"k":[105,121],"v":[{"k":[101,108],"v":[{"k":[114],"v":[{"d":{"df":5,"dc":[[23,1],[63,1],[65,1],[69,2],[106,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]},{"k":[121],"v":[{"d":{"df":6,"dc":[[30,1],[63,4],[68,1],[69,2],[98,1],[105,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":4,"dc":[[36,1],[56,1],[63,1],[69,1]]}}]},{"k":[104],"v":[{"d":{"df":19,"dc":[[26,2],[33,2],[35,1],[38,1],[55,3],[56,7],[59,1],[61,2],[65,4],[66,1],[68,1],[69,3],[85,2],[95,1],[98,5],[99,1],[102,1],[106,2],[107,3]]}}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]},"k":[115,101,105],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[23,1],[35,2],[51,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"k":[109,103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":6,"dc":[[35,1],[59,1],[61,1],[65,3],[78,2],[96,3]]},"k":[115,58,44,46],"v":[{"d":{"df":8,"dc":[[31,1],[35,2],[36,1],[38,2],[61,6],[63,3],[65,2],[88,1]]},"k":[46,44,95,12290],"v":[{"d":{"df":6,"dc":[[35,1],[38,1],[63,1],[65,2],[88,1],[96,1]]}},{"d":{"df":4,"dc":[[35,1],[36,1],[63,1],[88,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"d":{"df":1,"dc":[[78,1]]}}]},{"d":{"df":2,"dc":[[35,2],[51,2]]}},{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]},{"k":[109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[99,103,118,97,100,104,115,116,111],"v":[{"k":[111],"v":[{"k":[117,100],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[117,58,44,46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[40],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[56,10],[64,10]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[36,2],[69,1]]},"k":[61],"v":[{"k":[34],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[45],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[53],"v":[{"k":[57],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[34],"v":[{"k":[63],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,108],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[23,1],[30,1]]},"k":[44,39,115],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":2,"dc":[[30,1],[95,4]]}},{"k":[39],"v":[{"d":{"df":1,"dc":[[35,2]]}}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[28,1],[31,2],[55,1]]},"k":[44,97,41],"v":[{"d":{"df":2,"dc":[[31,1],[69,1]]}},{"k":[108],"v":[{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101,105],"v":[{"d":{"df":2,"dc":[[55,1],[63,2]]},"k":[100],"v":[{"d":{"df":2,"dc":[[63,1],[85,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[44,39],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[69,1]]},"k":[100,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[63,1],[65,2]]},"k":[100,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[101,104,105,114,97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[117],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[44,33],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[65,1],[68,1],[85,1]]}}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"k":[117],"v":[{"k":[103],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[107,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]},{"k":[105,103,117],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[56,1],[61,1]]},"k":[111,101,105],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[28,1]]}}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[36,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[37,2],[94,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":4,"dc":[[35,2],[51,1],[59,4],[63,1]]},"k":[100,46,115,65288],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"d":{"df":2,"dc":[[35,1],[95,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"k":[36793],"v":[{"k":[65289],"v":[{"k":[19978],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[101,105],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[56,1],[63,5],[84,1],[85,1]]},"k":[105,34,93,115,58,46],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,2]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":3,"dc":[[28,1],[65,1],[107,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[46],"v":[{"d":{"df":2,"dc":[[29,1],[69,1]]}}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111,47],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[59,1],[63,3],[65,2],[69,1]]},"k":[46,58,33,44],"v":[{"d":{"df":4,"dc":[[37,1],[63,1],[69,1],[90,1]]}},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":2,"dc":[[63,1],[104,1]]}}]},{"d":{"df":1,"dc":[[58,1]]}},{"d":{"df":5,"dc":[[89,1],[98,1],[101,1],[102,1],[106,1]]}}]}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116,99],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[46,44],"v":[{"d":{"df":5,"dc":[[31,1],[36,1],[57,1],[59,1],[63,1]]},"k":[46,41,44],"v":[{"d":{"df":4,"dc":[[30,1],[32,1],[35,2],[88,1]]}},{"d":{"df":2,"dc":[[56,1],[59,1]]},"k":[44],"v":[{"d":{"df":3,"dc":[[31,1],[59,1],[94,1]]}}]},{"d":{"df":2,"dc":[[56,1],[63,1]]}}]},{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[101,111,97],"v":[{"k":[110,114],"v":[{"d":{"df":5,"dc":[[30,1],[33,1],[63,8],[101,1],[106,1]]},"k":[116,108],"v":[{"d":{"df":5,"dc":[[33,1],[35,6],[61,3],[63,1],[65,2]]},"k":[115,46,112,58,96],"v":[{"d":{"df":1,"dc":[[35,12]]},"k":[44,58,46],"v":[{"d":{"df":1,"dc":[[35,3]]}},{"d":{"df":1,"dc":[[35,2]]}},{"d":{"df":1,"dc":[[35,2]]}}]},{"d":{"df":1,"dc":[[35,3]]}},{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[35,2]]}}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[121],"v":[{"d":{"df":13,"dc":[[30,1],[38,7],[56,5],[59,2],[63,1],[66,2],[68,2],[85,1],[88,1],[96,1],[99,1],[102,3],[106,2]]},"k":[119],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]},{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[117,63],"v":[{"k":[105,97],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[31,1],[99,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":3,"dc":[[33,1],[55,5],[62,4]]},"k":[108,115],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[38,1],[95,1]]}}]}]},{"d":{"df":3,"dc":[[55,1],[95,1],[96,1]]}}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[115,112,53],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[55,1],[90,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[78,1]]},"k":[45],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]},{"k":[111,105,114,101,97,121,117,120,61,58],"v":[{"d":{"df":11,"dc":[[23,2],[33,2],[35,1],[55,3],[56,1],[61,2],[63,1],[65,1],[67,1],[88,1],[104,1]]},"k":[119,110,109,99,105,101,117],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[35,1],[37,1]]},"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"d":{"df":3,"dc":[[0,1],[26,1],[94,1]]},"k":[101,46],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[0,2],[36,4]]}}]},{"d":{"df":1,"dc":[[26,1]]}}]}]}]}]}]}]},{"k":[39,101],"v":[{"k":[116],"v":[{"d":{"df":12,"dc":[[0,1],[23,2],[28,1],[29,2],[56,3],[63,1],[68,1],[95,1],[98,1],[101,1],[104,1],[105,1]]}}]},{"d":{"df":1,"dc":[[69,1]]}}]},{"d":{"df":11,"dc":[[0,4],[7,3],[33,1],[35,2],[46,1],[48,1],[51,1],[59,1],[63,1],[77,1],[78,2]]},"k":[46,97],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[117,93],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[33,1],[37,1]]},"k":[97,93,46],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[23,4],[37,1]]}}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111,47],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[35,1],[56,1],[65,1]]}}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[23,1],[69,1]]}}]}]},{"k":[115],"v":[{"d":{"df":5,"dc":[[28,1],[55,1],[63,2],[95,1],[105,1]]},"k":[110],"v":[{"k":[39],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[23,1],[68,1]]}}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[96,9]]}}]}]}]}]}]}]},{"k":[114,115,102,97,109,118,100],"v":[{"k":[101,116],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[111,108,105],"v":[{"k":[114],"v":[{"k":[121,105],"v":[{"d":{"df":2,"dc":[[0,1],[26,2]]}},{"k":[101],"v":[{"k":[115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":7,"dc":[[28,1],[56,1],[58,1],[59,1],[63,1],[65,2],[69,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[68,1]]}},{"d":{"df":1,"dc":[[92,1]]}}]}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[63,6]]}}]}]},{"k":[112,97,116,99],"v":[{"k":[108,111,97],"v":[{"k":[97],"v":[{"k":[121],"v":[{"d":{"df":18,"dc":[[0,1],[32,1],[35,3],[55,3],[56,2],[58,1],[63,6],[66,2],[69,3],[88,1],[96,1],[98,3],[100,1],[101,1],[102,2],[104,1],[105,1],[106,2]]},"k":[101,46,44,105,115],"v":[{"k":[100],"v":[{"d":{"df":4,"dc":[[32,1],[61,1],[63,1],[88,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[36,1],[67,1]]}}]}]},{"d":{"df":2,"dc":[[58,1],[67,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":4,"dc":[[66,1],[67,1],[68,1],[104,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"d":{"df":1,"dc":[[67,1]]}}]}]}]},{"k":[115],"v":[{"k":[101,105],"v":[{"d":{"df":1,"dc":[[33,2]]},"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]},{"k":[98,100],"v":[{"k":[105,108],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[118],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[114,105,97,111],"v":[{"k":[105,97],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":6,"dc":[[30,2],[35,1],[63,1],[102,1],[106,1],[107,1]]},"k":[115,46],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[107,2]]}}]}]}]},{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[104],"v":[{"d":{"df":5,"dc":[[63,3],[69,2],[98,1],[99,1],[107,1]]},"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[66,1],[75,1],[85,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]},{"k":[114,117],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[38,3],[85,1],[94,1],[101,1]]}}]}]}]},{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]},{"k":[102],"v":[{"k":[101,105],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99,116],"v":[{"k":[101],"v":[{"d":{"df":9,"dc":[[31,1],[58,1],[68,1],[88,2],[92,1],[98,1],[100,1],[102,1],[104,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"d":{"df":23,"dc":[[33,1],[34,4],[35,1],[36,5],[55,1],[57,1],[59,5],[63,14],[67,3],[68,1],[69,4],[85,1],[94,1],[96,1],[97,1],[99,1],[100,1],[101,1],[102,1],[103,2],[104,2],[106,1],[107,4]]},"k":[46,105],"v":[{"d":{"df":1,"dc":[[34,1]]}},{"k":[97],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[66,2],[98,1],[104,1]]},"k":[121],"v":[{"d":{"df":1,"dc":[[99,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]}]},{"k":[108,103],"v":[{"d":{"df":1,"dc":[[67,1]]},"k":[111],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[46,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":5,"dc":[[38,12],[55,5],[56,26],[62,3],[64,7]]},"k":[41,115,46,58,110,105,44],"v":[{"d":{"df":1,"dc":[[38,1]]}},{"d":{"df":4,"dc":[[38,1],[55,2],[56,3],[64,1]]},"k":[41,44,58,46,91,65292],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"d":{"df":2,"dc":[[38,1],[56,1]]}},{"d":{"df":4,"dc":[[55,2],[56,4],[62,2],[64,4]]}},{"d":{"df":4,"dc":[[55,1],[56,2],[66,1],[67,1]]}},{"k":[50],"v":[{"k":[93],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[38,1],[56,2],[106,1]]}},{"d":{"df":6,"dc":[[38,1],[54,1],[55,27],[56,1],[62,26],[64,1]]},"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":3,"dc":[[55,2],[56,1],[62,2]]},"k":[59],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[56,1],[67,1]]}}]}]}]}]}]}]}]},{"k":[105,101],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[56,2],[69,1],[95,1]]},"k":[100],"v":[{"d":{"df":1,"dc":[[38,2]]}}]}]}]},{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[56,1],[102,1]]}}]},{"k":[97,105],"v":[{"k":[119,103,115,105],"v":[{"d":{"df":5,"dc":[[28,1],[94,1],[100,1],[104,1],[107,1]]},"k":[105,110],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[0,1],[63,1]]}}]}]},{"d":{"df":1,"dc":[[104,1]]}}]},{"k":[103],"v":[{"k":[105,97,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[61,6]]},"k":[44,46],"v":[{"d":{"df":2,"dc":[[61,3],[63,1]]}},{"d":{"df":1,"dc":[[61,3]]}}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,2]]},"k":[44,46,58],"v":[{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[61,2]]}},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[108,118],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[58,1]]},"k":[110],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]},{"k":[102,109,116,115,112,118,99,98,100,114,110,101,97,108],"v":[{"k":[105,97,111],"v":[{"k":[110],"v":[{"k":[101,105],"v":[{"d":{"df":10,"dc":[[30,2],[33,2],[38,2],[56,10],[85,1],[94,6],[95,2],[96,1],[100,1],[105,1]]},"k":[100,115],"v":[{"d":{"df":11,"dc":[[0,3],[28,2],[30,1],[33,1],[38,4],[56,3],[58,1],[59,4],[85,1],[94,2],[95,2]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":2,"dc":[[30,1],[38,3]]}}]},{"k":[116,110],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[58],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"d":{"df":1,"dc":[[97,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"d":{"df":12,"dc":[[30,4],[33,1],[36,1],[55,4],[56,5],[59,1],[61,2],[63,6],[65,5],[81,1],[90,1],[96,1]]},"k":[44,46,58,115],"v":[{"d":{"df":7,"dc":[[30,1],[36,2],[55,1],[56,3],[63,2],[65,1],[95,1]]}},{"d":{"df":7,"dc":[[55,1],[56,2],[58,1],[59,1],[65,2],[88,1],[96,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]},{"k":[111,97],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,3],[34,1]]}}]}]}]}]},{"k":[97,101],"v":[{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[101,46,115],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[23,1],[59,1]]}}]},{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":5,"dc":[[32,1],[36,1],[56,2],[61,1],[63,2]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[26,1]]}},{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]},{"k":[114,99],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"d":{"df":2,"dc":[[31,1],[38,1]]},"k":[100],"v":[{"d":{"df":1,"dc":[[59,4]]},"k":[44],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[99,105,115],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112,98],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[30,15],[63,3],[85,1]]},"k":[46,58,44,93,115],"v":[{"d":{"df":2,"dc":[[23,1],[30,2]]},"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":1,"dc":[[30,1]]}},{"k":[40],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[23,1],[28,1]]},"k":[100],"v":[{"d":{"df":4,"dc":[[31,1],[56,2],[63,1],[100,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[29,1],[63,6],[68,1]]},"k":[46,101,105,97],"v":[{"d":{"df":4,"dc":[[34,1],[63,2],[65,1],[69,1]]}},{"k":[100,114],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[101,114],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[34,1]]},"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":5,"dc":[[26,1],[38,1],[58,1],[68,1],[95,1]]}}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[121,105],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,6]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,28]]}}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[55,2],[65,1],[81,1]]},"k":[101,105],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[112],"v":[{"d":{"df":3,"dc":[[28,1],[55,1],[63,1]]},"k":[109,101,105],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[28,1],[63,5]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114,100],"v":[{"d":{"df":2,"dc":[[35,1],[63,3]]},"k":[115,39],"v":[{"d":{"df":5,"dc":[[28,1],[31,1],[35,1],[63,20],[65,3]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[30,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"k":[99,97],"v":[{"k":[101],"v":[{"k":[115,44],"v":[{"k":[44,41],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]},{"k":[105,108,97,114,111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[30,1],[55,1],[93,1]]}}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[101,105,97],"v":[{"d":{"df":6,"dc":[[32,1],[55,1],[56,4],[61,1],[65,1],[85,1]]},"k":[100],"v":[{"d":{"df":3,"dc":[[55,2],[56,1],[61,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[118,111],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,1],[63,1]]}}]},{"k":[110],"v":[{"d":{"df":3,"dc":[[55,2],[56,1],[65,1]]},"k":[58,115],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[65,4]]}}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[55,1],[62,2]]}}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]},{"k":[112],"v":[{"k":[101,108],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[98,1],[102,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[98,1],[104,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[116,114,110,121,115],"v":[{"k":[97,101,117],"v":[{"d":{"df":40,"dc":[[0,2],[23,1],[30,7],[31,3],[32,4],[34,1],[35,12],[36,2],[38,28],[51,1],[53,1],[55,36],[56,34],[58,12],[61,9],[62,8],[63,21],[65,2],[66,2],[67,2],[68,4],[69,10],[71,1],[78,13],[84,1],[85,3],[88,3],[90,1],[94,3],[95,3],[98,5],[99,2],[100,6],[101,5],[102,2],[103,3],[104,5],[105,7],[106,5],[107,3]]},"k":[58,44,122,115,46,105,116,98,108,91,93,95,41,65292,118,39],"v":[{"d":{"df":49,"dc":[[0,3],[7,3],[28,2],[30,1],[32,4],[34,5],[35,8],[36,2],[37,14],[38,2],[42,2],[46,1],[47,14],[49,3],[51,8],[52,5],[53,2],[54,2],[56,8],[58,9],[59,6],[61,4],[64,8],[71,7],[75,6],[78,4],[83,6],[84,3],[85,16],[88,9],[89,2],[90,3],[92,4],[93,6],[94,7],[95,4],[96,3],[97,1],[110,16],[111,3],[112,1],[113,3],[114,3],[115,4],[116,9],[117,4],[118,6],[119,7],[120,2]]}},{"d":{"df":13,"dc":[[30,1],[32,1],[35,1],[55,1],[56,4],[58,2],[61,1],[63,4],[67,1],[68,1],[88,1],[101,1],[106,1]]}},{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[55,16],[56,7],[62,26],[64,10],[104,1]]},"k":[58,105,46,115,44,63,12290],"v":[{"d":{"df":6,"dc":[[34,1],[52,1],[55,10],[56,11],[62,10],[64,10]]}},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[55,12],[56,2],[62,12],[64,2]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[56,2]]},"k":[100],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[55,1],[56,2],[63,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[104,1]]}}]},{"d":{"df":3,"dc":[[55,3],[56,2],[66,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":3,"dc":[[56,1],[62,2],[64,5]]},"k":[20363,31995,25903],"v":[{"k":[22914],"v":[{"k":[65292,65306],"v":[{"d":{"df":1,"dc":[[62,1]]}},{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[21015],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[25345],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"d":{"df":19,"dc":[[35,1],[36,1],[38,1],[55,5],[56,5],[58,2],[63,7],[67,1],[69,1],[85,3],[88,1],[92,1],[94,1],[95,2],[99,2],[100,2],[101,2],[106,2],[107,1]]},"k":[99,118,100,109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[58,2],[71,2]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[40],"v":[{"k":[102],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,116],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[61,2],[78,3]]},"k":[58,41],"v":[{"d":{"df":4,"dc":[[35,5],[51,5],[61,2],[78,2]]}},{"d":{"df":2,"dc":[[61,7],[78,7]]},"k":[44],"v":[{"d":{"df":2,"dc":[[61,4],[78,4]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"d":{"df":3,"dc":[[38,2],[54,2],[78,1]]},"k":[44,41],"v":[{"d":{"df":1,"dc":[[38,2]]}},{"k":[44,96],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}},{"d":{"df":1,"dc":[[78,1]]},"k":[44,12290],"v":[{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,2],[51,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[35,4],[51,4]]}}]}]}]}]},{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]},"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[48,49,100],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[126],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[37],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[37],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[37],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[38,1]]}},{"k":[58],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"d":{"df":1,"dc":[[51,1]]},"k":[100,22312,37325],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]},{"k":[36825],"v":[{"k":[37324],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]},{"k":[32472],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[59],"v":[{"d":{"df":2,"dc":[[55,13],[62,13]]}}]}]}]}]}]},{"k":[115],"v":[{"d":{"df":2,"dc":[[58,1],[106,1]]}}]}]},{"d":{"df":3,"dc":[[35,1],[55,2],[103,1]]},"k":[59,44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"d":{"df":1,"dc":[[101,1]]}}]},{"k":[109],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[107],"v":[{"d":{"df":4,"dc":[[34,1],[36,2],[63,1],[68,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[104],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[46,115],"v":[{"d":{"df":1,"dc":[[67,1]]}},{"d":{"df":1,"dc":[[67,1]]}}]}]}]}]}]}]}]}]},{"k":[110,41],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":3,"dc":[[58,3],[63,6],[86,2]]},"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[61,1],[78,1]]}}]},{"k":[97,114],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[68,1]]}}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]},{"k":[34],"v":[{"k":[109],"v":[{"k":[8230,53],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}},{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[99],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[44],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[44],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[44],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[51],"v":[{"k":[44],"v":[{"k":[48],"v":[{"k":[45],"v":[{"k":[57],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[44],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[56],"v":[{"k":[52],"v":[{"k":[44],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[48],"v":[{"k":[53],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[94,1]]}}]},{"k":[101,111,97,121,105,117,108,100,252,115],"v":[{"k":[116,115,109,97,101,105,110,99,100,108,114],"v":[{"k":[104,114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"d":{"df":8,"dc":[[0,2],[32,1],[35,2],[56,1],[61,2],[63,1],[65,2],[94,1]]},"k":[115,46,58],"v":[{"d":{"df":1,"dc":[[26,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[0,1],[55,1]]}}]},{"d":{"df":2,"dc":[[33,1],[98,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[0,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":3,"dc":[[31,2],[33,1],[63,2]]}}]}]}]},{"k":[110,115],"v":[{"k":[105,115,119],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[33,1],[69,1],[105,1]]},"k":[108,102,115,46,44],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":3,"dc":[[35,1],[84,1],[107,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[66,1],[84,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"d":{"df":4,"dc":[[55,1],[63,1],[101,1],[104,1]]}}]}]},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":2,"dc":[[69,1],[105,1]]}},{"d":{"df":1,"dc":[[105,1]]}}]}]}]},{"d":{"df":9,"dc":[[35,1],[38,2],[55,3],[56,4],[61,4],[65,2],[85,2],[103,1],[106,1]]}},{"k":[104],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[109,100],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[67,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":2,"dc":[[55,1],[63,1]]}}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[105],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[95,1],[107,1]]}}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]},{"k":[114,100,115,98,110,117,109,116,118],"v":[{"k":[101,112],"v":[{"d":{"df":27,"dc":[[0,1],[23,4],[30,2],[31,1],[32,2],[35,1],[36,2],[37,2],[38,4],[55,1],[56,3],[59,2],[61,3],[63,25],[65,3],[66,3],[67,1],[68,1],[85,1],[90,1],[98,1],[99,2],[100,2],[101,1],[102,1],[104,1],[107,3]]},"k":[44,46,111],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[63,2]]}},{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[104],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[117,101,105],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[115,44,46],"v":[{"d":{"df":2,"dc":[[26,1],[65,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":1,"dc":[[28,2]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"d":{"df":2,"dc":[[36,1],[65,2]]},"k":[44,115,46,114],"v":[{"d":{"df":2,"dc":[[28,1],[63,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"d":{"df":1,"dc":[[65,1]]}},{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[102],"v":[{"k":[105,121],"v":[{"k":[99,101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"d":{"df":2,"dc":[[30,1],[59,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]},{"k":[116],"v":[{"d":{"df":12,"dc":[[31,1],[35,1],[36,1],[38,2],[55,2],[56,4],[59,1],[63,2],[65,3],[69,1],[98,1],[106,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":3,"dc":[[56,1],[100,1],[105,1]]}}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[108,44],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[115,110],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[35,5],[36,1],[61,3],[63,4],[88,1]]},"k":[47,111,46],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[35,3]]}}]}]}]}]}]}]}]},{"k":[118,117],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"d":{"df":1,"dc":[[96,1]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]},{"k":[107,110,116,105,114,112,121,120,100,106,108,103],"v":[{"k":[101,105],"v":[{"d":{"df":20,"dc":[[0,1],[23,3],[30,3],[31,2],[33,1],[55,5],[56,1],[61,6],[63,3],[65,3],[66,1],[69,1],[85,2],[98,1],[100,2],[101,1],[102,1],[104,2],[106,1],[107,1]]},"k":[115],"v":[{"d":{"df":9,"dc":[[36,1],[55,1],[56,1],[61,1],[66,1],[68,1],[69,2],[96,1],[104,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[55,4],[63,6]]}}]}]}]},{"k":[117,97,121,100],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[93,108,58],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":3,"dc":[[31,1],[35,1],[65,2]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[35,1],[56,2]]}},{"d":{"df":1,"dc":[[55,1]]}}]}]},{"d":{"df":1,"dc":[[85,1]]}}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,3]]},"k":[109,115,114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"d":{"df":12,"dc":[[31,1],[34,2],[58,1],[63,1],[66,1],[68,1],[98,2],[99,1],[100,1],[101,1],[102,1],[106,2]]}},{"k":[97],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[99,104,101],"v":[{"k":[104],"v":[{"d":{"df":3,"dc":[[23,1],[55,1],[66,1]]},"k":[101,105],"v":[{"k":[100,115],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[115],"v":[{"k":[113],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[91],"v":[{"k":[50],"v":[{"k":[93],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[108,110],"v":[{"d":{"df":2,"dc":[[23,1],[30,1]]}},{"d":{"df":2,"dc":[[63,3],[102,1]]},"k":[108,116],"v":[{"k":[121],"v":[{"d":{"df":4,"dc":[[61,1],[68,1],[95,1],[106,1]]}}]},{"k":[97,101],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]},{"k":[107,105],"v":[{"d":{"df":2,"dc":[[67,1],[107,1]]},"k":[101,112,100],"v":[{"k":[116,114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[39],"v":[{"d":{"df":2,"dc":[[30,1],[35,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]}}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[37,3],[47,3]]}}]}]}]}]},{"k":[110],"v":[{"k":[111],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[36,1],[38,5],[56,20],[78,1]]},"k":[44,112,115,46],"v":[{"d":{"df":2,"dc":[[31,1],[38,1]]}},{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[36,1],[38,15],[56,8]]},"k":[46,58,44],"v":[{"d":{"df":1,"dc":[[38,3]]}},{"d":{"df":1,"dc":[[56,3]]}},{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[38,8],[94,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,2]]}}]}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[103,1]]}}]},{"d":{"df":5,"dc":[[31,1],[36,2],[38,1],[85,1],[101,1]]}},{"k":[45,58,105],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[56],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[34],"v":[{"d":{"df":32,"dc":[[32,1],[34,1],[49,1],[52,1],[66,3],[67,2],[68,4],[69,7],[79,2],[80,4],[82,3],[83,6],[98,1],[99,2],[100,4],[101,6],[102,4],[103,4],[104,5],[105,4],[106,6],[107,3],[121,2],[122,1],[123,4],[124,6],[125,5],[126,4],[127,4],[128,4],[129,6],[130,3]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":10,"dc":[[32,2],[38,1],[49,2],[54,1],[56,1],[59,6],[61,4],[64,1],[75,6],[78,4]]}},{"k":[109],"v":[{"k":[117,105],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[38,6],[85,2]]}}]},{"k":[122],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":3,"dc":[[61,1],[63,1],[65,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"d":{"df":3,"dc":[[84,1],[105,1],[107,1]]},"k":[34],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":12,"dc":[[0,1],[7,1],[28,2],[33,3],[35,1],[42,2],[48,3],[51,1],[58,2],[61,1],[71,2],[78,1]]},"k":[46,115],"v":[{"k":[115,114,111,100,103,104,99],"v":[{"k":[101,104],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[111,123,46],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[35,1],[51,1]]}}]}]}]}]}]}]}]},{"d":{"df":8,"dc":[[28,2],[35,1],[42,2],[51,1],[58,3],[61,10],[71,3],[78,10]]}},{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[40],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[41,123],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]},{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[99,108],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,5],[51,5]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[123],"v":[{"d":{"df":4,"dc":[[35,3],[51,3],[61,4],[78,4]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[122],"v":[{"k":[114],"v":[{"k":[40],"v":[{"k":[41],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[40],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116,102],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,4],[78,4]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,115,103,108,100],"v":[{"k":[105,58],"v":[{"k":[109],"v":[{"k":[97,117],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[23,1],[28,5],[65,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]},{"k":[109],"v":[{"d":{"df":2,"dc":[[38,3],[85,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]},{"d":{"df":10,"dc":[[32,2],[38,1],[49,2],[54,1],[56,1],[59,4],[61,4],[64,1],[75,4],[78,4]]}}]},{"k":[115,116,117,108],"v":[{"k":[105,112],"v":[{"k":[110,111],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[28,1]]}}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[110,115],"v":[{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[105,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[98,1],[101,1]]}}]}]}]}]},{"k":[104,114],"v":[{"k":[116],"v":[{"d":{"df":7,"dc":[[36,1],[55,4],[56,1],[68,2],[69,2],[85,1],[106,1]]}}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[115,111],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[41,115],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[41,115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]},{"k":[100,45],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[59,1],[96,6]]},"k":[39,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"d":{"df":1,"dc":[[105,1]]}}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]}]}]},{"k":[99,108,115],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[31,1],[63,1]]}}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[112,45],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":9,"dc":[[34,1],[38,2],[55,10],[56,2],[59,1],[63,1],[67,2],[85,1],[101,1]]}}]}]},{"k":[115],"v":[{"k":[116,101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]},{"k":[39],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[45],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[104,101,105,111,97,51,114],"v":[{"k":[105,101,111,97,121],"v":[{"k":[99,108,116],"v":[{"k":[104],"v":[{"d":{"df":27,"dc":[[0,1],[23,1],[28,2],[31,1],[32,1],[33,1],[35,2],[36,2],[37,1],[38,4],[55,4],[56,4],[59,2],[61,10],[63,5],[65,3],[66,2],[68,3],[69,2],[88,1],[93,1],[97,1],[101,1],[102,1],[104,1],[106,1],[107,1]]}}]},{"k":[101],"v":[{"d":{"df":27,"dc":[[30,1],[31,1],[32,1],[33,5],[34,2],[35,6],[38,2],[55,2],[56,2],[58,1],[61,2],[65,1],[66,2],[67,1],[84,1],[85,1],[88,2],[89,1],[92,1],[95,3],[96,3],[98,2],[100,2],[101,1],[103,1],[105,2],[106,1]]}}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[55,1],[69,1]]}}]}]},{"k":[114,110,116],"v":[{"k":[101],"v":[{"d":{"df":9,"dc":[[0,1],[31,3],[33,1],[35,1],[38,1],[55,4],[59,2],[61,1],[63,1]]}}]},{"d":{"df":26,"dc":[[0,1],[29,1],[31,2],[32,1],[33,1],[34,1],[35,12],[36,1],[37,1],[55,6],[56,2],[58,3],[59,1],[61,3],[63,6],[65,5],[69,3],[77,1],[85,1],[88,1],[98,1],[99,1],[101,2],[103,1],[104,1],[107,3]]},"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":6,"dc":[[30,1],[35,1],[55,1],[69,2],[93,1],[96,1]]}}]}]}]}]},{"d":{"df":4,"dc":[[23,1],[28,1],[63,1],[65,3]]},"k":[108,109,115],"v":[{"k":[101],"v":[{"d":{"df":6,"dc":[[30,1],[59,2],[63,1],[65,1],[102,1],[104,1]]},"k":[46,34,44],"v":[{"d":{"df":3,"dc":[[68,2],[98,2],[102,1]]}},{"d":{"df":1,"dc":[[98,2]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]},{"d":{"df":1,"dc":[[55,1]]}},{"k":[101],"v":[{"d":{"df":2,"dc":[[59,2],[61,1]]}}]}]},{"k":[116],"v":[{"d":{"df":7,"dc":[[38,1],[55,1],[63,2],[65,1],[66,1],[68,1],[84,1]]}}]},{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":30,"dc":[[0,2],[28,1],[30,2],[31,3],[32,1],[33,3],[35,3],[36,8],[37,2],[38,1],[55,17],[56,6],[58,1],[61,10],[63,26],[65,6],[66,1],[69,12],[84,2],[85,2],[88,10],[94,3],[96,3],[99,1],[100,2],[101,3],[102,1],[104,1],[106,3],[107,3]]},"k":[39,98,108,114,101,105],"v":[{"k":[108,118],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[26,1],[63,2],[65,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[30,3]]},"k":[112,115],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[42,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[35,1],[68,1],[104,1]]},"k":[93,44],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[35,1],[68,1]]}}]}]}]}]}]},{"k":[99,108],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[31,1],[65,1]]}}]}]}]},{"d":{"df":4,"dc":[[56,1],[63,1],[98,1],[107,1]]},"k":[45,44,46],"v":[{"k":[107],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[95,1]]}},{"d":{"df":1,"dc":[[95,1]]}}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[63,2],[65,1]]}}]},{"k":[107],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[107,2]]}}]}]}]}]},{"k":[116,108,100,115,110],"v":[{"k":[104],"v":[{"d":{"df":32,"dc":[[0,7],[28,7],[30,5],[31,4],[35,2],[38,1],[55,8],[56,3],[58,2],[61,6],[63,26],[65,5],[66,1],[68,1],[69,10],[84,2],[85,2],[88,1],[90,4],[92,1],[94,3],[95,2],[96,2],[98,4],[99,1],[101,2],[102,4],[103,2],[104,2],[105,1],[106,4],[107,3]]},"k":[111,105],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":10,"dc":[[23,1],[33,2],[36,1],[56,3],[59,2],[69,1],[88,1],[93,1],[104,1],[107,1]]}}]}]},{"k":[110],"v":[{"d":{"df":2,"dc":[[38,1],[63,1]]}}]}]}]},{"k":[108],"v":[{"d":{"df":31,"dc":[[0,1],[23,2],[28,4],[30,5],[31,2],[32,1],[33,3],[35,2],[36,4],[37,1],[38,1],[55,4],[56,16],[58,3],[59,2],[61,5],[63,3],[65,6],[66,1],[69,2],[84,4],[85,4],[88,6],[95,2],[96,5],[98,3],[99,2],[100,1],[101,1],[102,3],[106,2]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[33,1],[63,1],[95,1]]}}]}]}]}]},{"k":[116,101],"v":[{"k":[104],"v":[{"d":{"df":11,"dc":[[0,2],[33,7],[37,1],[59,5],[65,1],[75,1],[81,1],[85,6],[88,3],[94,1],[101,1]]},"k":[46,61,58,47,40,44],"v":[{"d":{"df":3,"dc":[[0,1],[33,1],[85,2]]}},{"k":[34],"v":[{"k":[49,56,52,55,53,54],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[37],"v":[{"k":[34],"v":[{"d":{"df":32,"dc":[[32,1],[37,2],[47,2],[49,1],[66,3],[67,2],[68,4],[69,5],[79,2],[80,4],[82,3],[83,4],[98,1],[99,2],[100,4],[101,6],[102,4],[103,4],[104,5],[105,4],[106,6],[107,3],[121,2],[122,1],[123,4],[124,6],[125,5],[126,4],[127,4],[128,4],[129,6],[130,3]]}}]}]}]}]},{"k":[48],"v":[{"k":[37,48],"v":[{"k":[34],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[69,1],[83,1]]}}]},{"k":[112],"v":[{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[34,112],"v":[{"d":{"df":3,"dc":[[59,1],[63,1],[77,1]]}},{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,4],[77,4]]}}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,2],[77,2]]}}]}]}]},{"k":[48],"v":[{"k":[48,37],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,5],[77,5]]}}]}]}]},{"k":[34],"v":[{"d":{"df":2,"dc":[[69,1],[83,1]]}}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[112,34],"v":[{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[63,3],[77,3]]}}]}]},{"d":{"df":2,"dc":[[63,3],[77,3]]}}]}]}]}]}]},{"d":{"df":6,"dc":[[33,3],[48,3],[59,5],[75,5],[88,1],[116,1]]}},{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[39],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[88,1]]}}]}]},{"d":{"df":1,"dc":[[85,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]},{"k":[104],"v":[{"d":{"df":1,"dc":[[33,1]]}}]},{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[111,97],"v":[{"k":[110,112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[40],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[39],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[63],"v":[{"k":[119],"v":[{"k":[100],"v":[{"k":[61],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114,110,117,109],"v":[{"k":[114,100,107,116,115],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[44,115],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]},{"d":{"df":4,"dc":[[31,2],[36,2],[59,1],[63,2]]},"k":[115,101,44,105,112,97],"v":[{"d":{"df":5,"dc":[[35,4],[59,1],[61,1],[88,1],[102,1]]}},{"k":[100],"v":[{"k":[63],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"d":{"df":1,"dc":[[63,2]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]},{"k":[104],"v":[{"d":{"df":2,"dc":[[56,1],[65,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]},{"k":[39,100],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[35,1],[65,1]]}}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]},{"k":[108],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[121,110,115,114,108,118],"v":[{"d":{"df":12,"dc":[[23,1],[28,1],[30,1],[33,1],[36,2],[37,1],[56,1],[58,1],[63,4],[66,1],[84,1],[96,1]]},"k":[44,115,46],"v":[{"d":{"df":6,"dc":[[31,1],[55,1],[56,1],[63,4],[88,1],[94,1]]}},{"d":{"df":1,"dc":[[34,1]]}},{"d":{"df":5,"dc":[[56,1],[58,1],[63,2],[69,1],[101,1]]}}]},{"k":[116],"v":[{"d":{"df":16,"dc":[[26,1],[28,1],[33,1],[36,1],[38,1],[56,1],[63,3],[65,2],[85,1],[88,1],[90,2],[94,1],[95,1],[96,1],[98,1],[102,1]]}}]},{"d":{"df":18,"dc":[[30,3],[31,1],[32,1],[33,4],[35,2],[56,2],[58,3],[63,1],[65,1],[66,1],[67,1],[85,2],[88,1],[90,1],[94,1],[97,1],[103,1],[107,1]]}},{"k":[110,109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[37,2],[47,2],[65,1]]},"k":[65292],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20174],"v":[{"k":[38271],"v":[{"k":[36828],"v":[{"k":[32500],"v":[{"k":[25252],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[25104],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[69,2]]},"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]},{"k":[99],"v":[{"d":{"df":1,"dc":[[46,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[105,111],"v":[{"k":[116],"v":[{"k":[105,116,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[35,1],[37,2],[65,1]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[36,1],[63,1]]}}]}]},{"d":{"df":2,"dc":[[36,1],[37,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[101,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[117,114,105,111,101,97,40,108],"v":[{"k":[114,110,116,108,99],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[0,1],[63,5],[69,1],[88,1]]}}]}]}]}]},{"k":[99,110,100],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":10,"dc":[[23,1],[30,1],[35,5],[55,2],[58,1],[61,9],[63,2],[78,6],[85,1],[86,1]]},"k":[97,46,40,115],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[105],"v":[{"k":[116],"v":[{"k":[121,105],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[26,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[26,1],[35,1],[55,1],[94,1]]}},{"k":[41,112,100,101,116,105,118],"v":[{"d":{"df":6,"dc":[[33,1],[35,5],[48,1],[51,9],[61,2],[78,2]]}},{"k":[97],"v":[{"k":[114],"v":[{"k":[97,109],"v":[{"k":[109],"v":[{"k":[115,41],"v":[{"k":[41,44],"v":[{"d":{"df":4,"dc":[[35,4],[51,4],[61,2],[78,2]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]},{"k":[97],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]},{"k":[101,97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[41,105],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}},{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]},{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,3],[51,3]]}}]}]}]}]}]},{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,3],[78,3]]}}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[63,1]]},"k":[46,34],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[101,121],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[56,1],[68,10]]},"k":[115],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]},{"d":{"df":1,"dc":[[69,1]]}}]},{"d":{"df":1,"dc":[[66,1]]}}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[23,1],[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[108,102],"v":[{"d":{"df":2,"dc":[[26,1],[61,2]]},"k":[121,102],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[104],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]},{"k":[111,101,97,117],"v":[{"k":[109],"v":[{"d":{"df":27,"dc":[[0,1],[26,7],[28,9],[31,5],[33,1],[35,4],[37,1],[38,1],[42,9],[45,3],[55,11],[56,12],[57,1],[59,5],[61,3],[62,1],[63,3],[65,15],[66,2],[68,4],[78,1],[81,10],[84,1],[94,1],[96,3],[101,1],[106,2]]},"k":[46,100,116],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[113,101],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[63,1],[94,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[103,109],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[59,16]]},"k":[115,58,44,125,46,65289],"v":[{"d":{"df":1,"dc":[[59,9]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":1,"dc":[[59,6]]}},{"d":{"df":1,"dc":[[59,1]]}},{"k":[39,116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[59,1]]}},{"k":[65306],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[22359],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]},{"k":[108,114,110,120,118,101,103],"v":[{"k":[101,116,108],"v":[{"d":{"df":6,"dc":[[0,3],[26,1],[36,1],[37,3],[56,1],[94,2]]},"k":[46,115,44,110],"v":[{"d":{"df":2,"dc":[[0,1],[33,1]]}},{"d":{"df":3,"dc":[[0,1],[63,3],[65,2]]}},{"d":{"df":1,"dc":[[36,2]]}},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[55,4],[62,1]]},"k":[115,46,116,105],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}},{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"d":{"df":7,"dc":[[56,1],[58,3],[59,2],[65,1],[81,1],[90,1],[100,1]]},"k":[101,115,105],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[58,1],[102,1]]}}]},{"d":{"df":1,"dc":[[90,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[93,1],[100,2]]}}]}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":16,"dc":[[0,1],[23,1],[37,1],[38,4],[55,1],[56,9],[61,5],[63,1],[65,1],[68,1],[69,1],[84,2],[94,2],[96,1],[100,1],[106,1]]},"k":[108,46,45],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[94,1]]}}]}]},{"d":{"df":2,"dc":[[55,1],[56,1]]}},{"k":[119],"v":[{"k":[97],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[100,101,97],"v":[{"d":{"df":12,"dc":[[26,1],[31,1],[33,1],[37,1],[58,2],[65,2],[68,1],[69,1],[84,1],[94,2],[105,1],[107,3]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[45],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[55,2],[68,1]]},"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[55,2],[59,1],[61,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[96,1]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[61,1],[96,2]]}}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]},{"k":[108],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[84,1],[88,1],[106,1]]}}]}]}]}]},{"k":[117,108,114,111,99,110],"v":[{"k":[110,114],"v":[{"k":[100],"v":[{"d":{"df":3,"dc":[[0,1],[63,1],[69,1]]}}]},{"d":{"df":1,"dc":[[55,1]]},"k":[116],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[38,2]]}}]}]}]},{"k":[108,100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"d":{"df":4,"dc":[[23,1],[36,2],[56,2],[98,1]]},"k":[105,115,101,58],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":23,"dc":[[0,2],[26,1],[28,1],[29,1],[30,2],[31,1],[33,2],[35,1],[36,1],[37,2],[38,1],[56,3],[58,1],[59,1],[63,1],[65,2],[68,1],[69,1],[85,1],[88,1],[94,3],[100,1],[106,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"d":{"df":3,"dc":[[55,1],[65,1],[106,1]]},"k":[58,46],"v":[{"d":{"df":6,"dc":[[30,1],[35,1],[36,1],[55,1],[57,1],[65,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"d":{"df":44,"dc":[[0,4],[23,4],[26,1],[28,3],[30,2],[31,5],[33,3],[34,3],[35,5],[36,15],[37,4],[38,9],[55,6],[56,15],[57,2],[58,1],[59,8],[61,3],[63,34],[65,12],[66,3],[67,3],[68,5],[69,8],[84,3],[85,8],[88,2],[89,1],[90,2],[92,1],[93,3],[94,1],[95,1],[96,1],[98,4],[99,1],[100,3],[101,2],[102,3],[103,1],[104,3],[105,2],[106,4],[107,4]]},"k":[109,99],"v":[{"d":{"df":6,"dc":[[33,1],[38,1],[55,1],[56,1],[63,1],[67,1]]},"k":[101,97,44,117],"v":[{"k":[100,114],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[116,108],"v":[{"d":{"df":4,"dc":[[35,1],[36,1],[37,3],[56,5]]},"k":[116,58,44,115,65306],"v":[{"k":[101,105],"v":[{"k":[114,100],"v":[{"k":[58],"v":[{"d":{"df":13,"dc":[[32,4],[35,1],[36,6],[49,4],[51,1],[53,6],[56,1],[59,9],[61,2],[64,1],[75,9],[78,2],[83,1]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[37,2]]}}]}]}]},{"d":{"df":4,"dc":[[35,1],[56,1],[65,1],[94,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]},{"d":{"df":1,"dc":[[38,1]]}},{"k":[108],"v":[{"k":[97],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[116,100],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]},{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[92,1],[102,1]]},"k":[58,101],"v":[{"d":{"df":6,"dc":[[36,2],[53,2],[59,2],[65,1],[75,2],[81,1]]}},{"k":[100],"v":[{"d":{"df":2,"dc":[[63,2],[101,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":5,"dc":[[59,3],[63,1],[65,1],[69,2],[81,1]]},"k":[44,115,102,119],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":7,"dc":[[59,8],[75,8],[83,1],[88,1],[96,1],[113,1],[116,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97,101,116,119,109],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[23,2],[55,2],[61,1],[63,2],[65,1]]},"k":[44,115],"v":[{"d":{"df":2,"dc":[[35,1],[38,1]]}},{"d":{"df":4,"dc":[[55,2],[63,7],[65,2],[103,1]]},"k":[58,46],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[37,1],[69,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[58,1],[65,1]]}}]}]},{"d":{"df":2,"dc":[[63,4],[90,1]]}},{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]},"k":[46,34,44,115],"v":[{"d":{"df":1,"dc":[[84,1]]}},{"d":{"df":1,"dc":[[84,1]]}},{"d":{"df":1,"dc":[[105,1]]}},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]},{"k":[108,99,109,100,114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":12,"dc":[[34,1],[36,2],[52,1],[53,2],[55,1],[61,4],[62,1],[78,4],[95,1],[96,1],[113,1],[115,1]]},"k":[44,96],"v":[{"d":{"df":8,"dc":[[56,1],[59,4],[64,1],[75,4],[95,2],[96,2],[113,2],[115,2]]}},{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[116,101,105],"v":[{"k":[44,111],"v":[{"d":{"df":3,"dc":[[35,1],[36,1],[56,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[63,1],[69,1]]}}]}]}]},{"k":[98],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[107],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]},{"k":[110,108],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[58,1]]}}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[121,105],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[69,1],[100,1]]}}]}]}]}]}]},{"k":[101,105],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":2,"dc":[[66,1],[69,1]]}}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[96],"v":[{"k":[44,12290],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[96],"v":[{"k":[102],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,111,117],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[121,101],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":1,"dc":[[63,3]]}}]}]}]}]}]},{"k":[119],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[104,1],[105,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]},"k":[110,116,115,100,102,109,101,99,108,103],"v":[{"d":{"df":47,"dc":[[0,3],[23,9],[26,3],[28,6],[29,1],[30,4],[31,12],[32,6],[33,7],[34,3],[35,18],[36,16],[37,5],[38,6],[55,27],[56,51],[57,1],[58,9],[59,23],[61,12],[63,50],[65,32],[66,7],[67,2],[68,2],[69,16],[84,7],[85,10],[86,1],[87,1],[88,10],[90,2],[92,1],[93,1],[94,11],[95,2],[96,10],[98,6],[99,2],[100,2],[101,7],[102,5],[103,1],[104,4],[105,6],[106,11],[107,3]]},"k":[115,102,99,116,105,100,114,112,97,118,110],"v":[{"k":[116,112,105],"v":[{"k":[97,101,105],"v":[{"k":[108,110],"v":[{"k":[108],"v":[{"d":{"df":6,"dc":[[0,1],[26,1],[28,2],[42,1],[43,1],[85,1]]},"k":[97,105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[26,3],[28,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[0,3],[28,1],[31,1],[33,1],[55,2]]},"k":[115,44,34,58],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":12,"dc":[[33,1],[55,1],[56,1],[68,1],[69,1],[84,1],[85,2],[94,1],[95,1],[98,1],[101,1],[102,1]]}},{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44,46,58],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[65,20]]}},{"d":{"df":1,"dc":[[65,4]]}}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[100],"v":[{"d":{"df":1,"dc":[[29,1]]}}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[37,1],[98,1],[99,1]]}}]}]}]},{"k":[111,108],"v":[{"d":{"df":8,"dc":[[30,2],[37,2],[47,2],[56,1],[59,1],[67,1],[69,1],[98,1]]},"k":[114,46],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":5,"dc":[[0,1],[30,1],[37,1],[38,1],[63,3]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[96,1]]}}]},{"k":[117],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[108,111,114],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[0,1],[36,1],[66,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"d":{"df":10,"dc":[[0,2],[26,1],[28,1],[30,2],[34,1],[35,1],[67,1],[98,1],[102,2],[107,1]]},"k":[58,100],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":13,"dc":[[32,1],[35,2],[36,1],[56,1],[65,1],[66,1],[88,1],[94,3],[98,2],[99,1],[103,1],[105,1],[107,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]},{"k":[109,114],"v":[{"k":[105,112,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,2]]}}]}]},{"k":[97,108],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[101,2],[105,2]]}}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[99,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[68,1],[69,1],[107,1]]},"k":[100,115],"v":[{"d":{"df":2,"dc":[[84,1],[101,1]]}},{"k":[44,46],"v":[{"d":{"df":1,"dc":[[107,2]]}},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]},{"k":[114,101,111,117],"v":[{"k":[111,97],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[101,105,116],"v":[{"d":{"df":4,"dc":[[26,1],[28,1],[38,1],[65,2]]},"k":[100],"v":[{"d":{"df":5,"dc":[[0,1],[33,2],[61,2],[63,2],[65,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[28,1],[61,1]]}}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]},{"k":[110,114,108],"v":[{"k":[100,115],"v":[{"k":[101,105],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[23,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[102,110,99,97,112,118],"v":[{"k":[97,101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[28,2],[65,1]]},"k":[115,44,46],"v":[{"d":{"df":2,"dc":[[28,1],[65,1]]}},{"d":{"df":2,"dc":[[28,1],[65,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[100,110],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[101,97],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]},{"k":[116,108],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118,111],"v":[{"k":[101,105],"v":[{"d":{"df":3,"dc":[[34,2],[35,1],[63,3]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]},{"k":[110],"v":[{"d":{"df":3,"dc":[[35,2],[63,1],[69,1]]},"k":[46,44,115],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[33,1],[38,6],[55,2],[63,2],[68,1],[105,1]]}},{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[63,1],[90,1],[101,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":2,"dc":[[35,1],[63,1]]},"k":[105,8203],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101,105,97],"v":[{"d":{"df":3,"dc":[[0,2],[28,2],[33,4]]},"k":[100],"v":[{"k":[46],"v":[{"d":{"df":2,"dc":[[58,1],[61,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[31,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[33,1],[63,2]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[105,101],"v":[{"k":[99,118],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101,111,105],"v":[{"d":{"df":5,"dc":[[32,1],[34,1],[55,3],[56,1],[93,1]]},"k":[115],"v":[{"d":{"df":5,"dc":[[35,1],[38,1],[61,1],[85,1],[97,1]]}}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[66,1],[67,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[69,1],[99,1]]}}]}]}]}]}]}]},{"k":[120,101],"v":[{"d":{"df":5,"dc":[[35,6],[51,5],[55,1],[62,15],[66,1]]},"k":[12290],"v":[{"k":[24403],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[55,1],[67,1]]}}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[38,1],[54,1],[56,1],[64,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[55,7],[56,1]]}}]}]},{"k":[99],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,2]]}}]}]}]}]}]}]}]}]},{"k":[101,111,105],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[66,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[96,4]]}}]}]}]},{"d":{"df":40,"dc":[[0,3],[23,4],[28,2],[30,3],[31,3],[32,1],[34,1],[35,3],[36,5],[38,2],[55,5],[56,7],[58,1],[59,3],[61,2],[63,8],[65,11],[66,3],[67,4],[68,3],[69,3],[84,1],[85,3],[88,4],[89,1],[90,1],[92,1],[93,2],[94,2],[95,2],[96,3],[98,5],[99,1],[100,1],[101,4],[102,2],[103,3],[105,1],[106,3],[107,4]]},"k":[101,39,44,46,115,45],"v":[{"k":[109],"v":[{"d":{"df":15,"dc":[[30,2],[35,4],[37,1],[38,3],[55,2],[61,1],[63,1],[64,2],[65,1],[66,1],[85,1],[88,3],[92,1],[94,4],[104,1]]},"k":[115,46,58,105,110,41],"v":[{"d":{"df":10,"dc":[[0,2],[28,1],[30,1],[55,5],[65,1],[85,1],[88,2],[90,1],[92,1],[94,1]]},"k":[44,116,46],"v":[{"d":{"df":2,"dc":[[30,1],[63,1]]}},{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[58,44],"v":[{"d":{"df":6,"dc":[[35,1],[36,5],[38,2],[51,1],[53,5],[54,2]]}},{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[38,2],[88,1]]}}]},{"d":{"df":4,"dc":[[30,2],[63,1],[88,1],[94,2]]}},{"d":{"df":1,"dc":[[30,1]]}},{"k":[100],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[61,2],[78,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]},{"k":[115],"v":[{"d":{"df":3,"dc":[[23,5],[58,1],[84,1]]}}]},{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":4,"dc":[[34,1],[36,1],[37,1],[56,2]]}},{"d":{"df":5,"dc":[[38,1],[55,2],[59,2],[61,2],[106,1]]},"k":[101],"v":[{"k":[108],"v":[{"k":[102],"v":[{"k":[58,46],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[45],"v":[{"k":[45],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":47,"dc":[[0,3],[23,1],[28,4],[30,12],[31,14],[32,2],[33,5],[34,5],[35,22],[36,13],[37,11],[38,28],[47,8],[53,4],[55,45],[56,37],[57,2],[58,3],[59,24],[61,23],[63,17],[65,38],[66,8],[67,4],[68,6],[69,12],[84,6],[85,15],[86,1],[88,6],[89,2],[90,1],[92,1],[93,3],[94,12],[95,6],[96,5],[98,6],[99,3],[100,7],[101,9],[102,8],[103,5],[104,9],[105,2],[106,8],[107,7]]},"k":[115,44,58],"v":[{"k":[117,101],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]},"k":[93,115,65306],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[31,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[91],"v":[{"k":[35],"v":[{"k":[49],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[49],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[33,1],[35,1],[55,1],[65,1]]}},{"d":{"df":2,"dc":[[55,1],[56,1]]}}]},{"d":{"df":4,"dc":[[35,1],[51,1],[56,1],[64,1]]},"k":[61,101,58,46,12290],"v":[{"k":[34],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[34],"v":[{"d":{"df":4,"dc":[[0,2],[7,2],[33,1],[48,1]]},"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[33,2],[48,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,110],"v":[{"d":{"df":3,"dc":[[63,1],[85,1],[96,1]]},"k":[115],"v":[{"d":{"df":3,"dc":[[29,1],[56,2],[69,2]]}}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[121,105],"v":[{"d":{"df":6,"dc":[[35,1],[63,1],[69,3],[100,1],[106,1],[107,1]]}},{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[55,1],[61,4],[62,1],[78,4]]}},{"d":{"df":1,"dc":[[56,1]]}},{"k":[36825],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"d":{"df":39,"dc":[[23,5],[26,1],[28,3],[30,5],[31,4],[33,3],[34,1],[35,9],[36,3],[37,2],[38,3],[51,6],[55,9],[56,16],[57,1],[58,1],[59,3],[61,1],[63,1],[65,11],[66,2],[67,1],[68,1],[69,4],[85,3],[88,4],[90,2],[94,1],[95,3],[96,1],[98,1],[99,1],[100,1],[101,2],[102,1],[104,1],[105,1],[106,1],[107,2]]},"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]},{"k":[112,97],"v":[{"k":[111,108,114,97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":12,"dc":[[28,15],[31,5],[33,1],[36,1],[42,9],[45,3],[61,1],[63,1],[65,15],[77,1],[78,1],[81,9]]},"k":[105,97,101,115],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[28,1],[65,3]]}}]}]},{"k":[110],"v":[{"k":[116,99],"v":[{"d":{"df":4,"dc":[[31,2],[56,1],[63,3],[102,1]]},"k":[108],"v":[{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[31,1],[65,4]]}}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":8,"dc":[[33,1],[35,1],[58,2],[61,3],[63,2],[84,2],[88,1],[97,1]]},"k":[97,101,115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[31,1],[59,1],[63,1]]}}]}]}]}]},{"k":[100],"v":[{"d":{"df":5,"dc":[[35,1],[55,1],[58,1],[59,4],[61,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"d":{"df":2,"dc":[[55,1],[61,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[63,1],[68,1],[69,4],[107,1]]},"k":[109,100],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115,46],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]},{"k":[105],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[101,105],"v":[{"d":{"df":3,"dc":[[37,1],[59,2],[63,1]]},"k":[115,41,58,44],"v":[{"d":{"df":1,"dc":[[37,2]]}},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":2,"dc":[[59,5],[75,5]]}},{"d":{"df":2,"dc":[[59,1],[94,2]]}}]},{"k":[110],"v":[{"k":[101,97],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]},{"k":[56],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]},"k":[45],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[59,2]]},"k":[58,44],"v":[{"d":{"df":2,"dc":[[34,4],[52,4]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[108],"v":[{"k":[101,117],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]},{"k":[104,117,97,111,121,105,101,114,119,99],"v":[{"k":[101,105,97,111,117,114],"v":[{"d":{"df":49,"dc":[[0,21],[23,17],[26,11],[28,33],[29,1],[30,55],[31,31],[32,48],[33,57],[34,29],[35,64],[36,31],[37,21],[38,48],[55,103],[56,131],[57,3],[58,20],[59,51],[61,53],[62,1],[63,138],[65,85],[66,31],[67,9],[68,36],[69,74],[77,1],[84,31],[85,55],[88,31],[89,4],[90,19],[92,10],[93,4],[94,45],[95,21],[96,35],[97,3],[98,24],[99,15],[100,23],[101,31],[102,32],[103,26],[104,29],[105,21],[106,40],[107,37]]},"k":[115,110,114,105,121,109,111],"v":[{"k":[101],"v":[{"d":{"df":15,"dc":[[0,1],[26,1],[31,1],[32,2],[33,1],[35,1],[36,1],[55,1],[56,3],[59,1],[61,1],[63,5],[65,10],[92,1],[94,1]]}}]},{"d":{"df":8,"dc":[[0,2],[30,1],[33,1],[56,2],[59,1],[61,1],[63,1],[107,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":1,"dc":[[36,1]]}}]},{"k":[101],"v":[{"d":{"df":28,"dc":[[30,1],[31,2],[32,2],[33,1],[34,2],[35,1],[55,5],[56,2],[58,1],[59,1],[63,1],[66,2],[67,1],[69,1],[84,1],[85,2],[88,2],[94,1],[95,1],[98,1],[99,1],[100,4],[101,1],[102,1],[103,1],[105,2],[106,3],[107,1]]},"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,1],[106,1]]},"k":[44],"v":[{"d":{"df":16,"dc":[[23,1],[58,1],[63,2],[66,1],[68,1],[69,3],[84,1],[85,1],[93,1],[96,1],[98,1],[99,1],[100,1],[101,1],[102,1],[106,1]]},"k":[97],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"d":{"df":9,"dc":[[31,2],[35,1],[38,1],[56,2],[63,1],[65,1],[69,1],[85,1],[95,1]]}}]},{"d":{"df":9,"dc":[[31,2],[36,4],[38,2],[55,2],[59,1],[63,1],[65,2],[100,1],[101,1]]}},{"d":{"df":6,"dc":[[36,2],[55,3],[61,1],[63,3],[65,1],[68,1]]},"k":[46,101,115,44],"v":[{"d":{"df":4,"dc":[[31,2],[36,1],[63,1],[107,1]]}},{"d":{"df":3,"dc":[[36,9],[63,5],[65,3]]},"k":[46,115,44,101],"v":[{"d":{"df":2,"dc":[[36,1],[65,1]]}},{"d":{"df":2,"dc":[[36,2],[63,1]]}},{"d":{"df":1,"dc":[[63,2]]}},{"k":[99],"v":[{"k":[52],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,114,110],"v":[{"d":{"df":30,"dc":[[0,2],[23,1],[28,3],[29,1],[30,3],[33,2],[35,8],[36,2],[37,8],[38,4],[47,8],[55,27],[56,5],[59,4],[61,10],[63,9],[65,6],[69,2],[78,1],[84,2],[85,4],[88,4],[89,1],[94,1],[96,2],[99,1],[102,1],[104,1],[106,2],[107,1]]},"k":[58,46,44],"v":[{"d":{"df":2,"dc":[[36,1],[65,1]]}},{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[59,96],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}},{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[38,2],[65,1]]},"k":[45],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[55,1],[65,1]]}}]}]}]}]}]}]}]},{"k":[103,107],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]},{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[116,110],"v":[{"d":{"df":35,"dc":[[0,1],[23,4],[28,3],[31,1],[33,2],[35,4],[36,1],[37,2],[38,4],[55,18],[56,8],[59,2],[61,4],[63,17],[65,11],[66,2],[68,1],[69,7],[84,1],[85,3],[86,1],[88,2],[92,1],[94,2],[96,2],[98,3],[99,2],[100,5],[101,4],[102,2],[103,2],[104,2],[105,4],[106,2],[107,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[61,1]]}}]},{"d":{"df":18,"dc":[[32,1],[34,1],[35,1],[55,7],[62,4],[63,2],[66,3],[67,1],[85,1],[96,1],[98,1],[99,3],[100,2],[101,3],[102,1],[104,1],[105,1],[107,2]]},"k":[107],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":6,"dc":[[23,1],[55,1],[59,1],[61,2],[65,2],[69,1]]}}]}]},{"k":[115,109],"v":[{"d":{"df":4,"dc":[[23,1],[55,1],[63,2],[107,1]]}},{"k":[98],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]},{"k":[111,101],"v":[{"k":[117,119],"v":[{"k":[103],"v":[{"k":[104],"v":[{"d":{"df":4,"dc":[[30,1],[58,1],[63,1],[88,3]]},"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[101],"v":[{"d":{"df":10,"dc":[[37,1],[38,3],[66,1],[68,1],[88,1],[92,2],[94,1],[100,2],[103,3],[104,1]]},"k":[45],"v":[{"k":[99,115],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,114],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[0,2]]}}]}]}]}]}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[30,2]]}}]}]},{"k":[107,103,98,114,108,115,105],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[0,1],[55,2],[63,1],[85,2]]},"k":[115,110],"v":[{"d":{"df":3,"dc":[[58,1],[63,1],[85,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[0,1]]},"k":[44,41],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":3,"dc":[[28,1],[63,1],[65,1]]},"k":[108,115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[59,2],[64,1]]},"k":[34,46,44],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,3]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[51,1],[63,1],[69,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[107],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[108],"v":[{"k":[46,111],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":47,"dc":[[0,4],[23,14],[26,4],[28,12],[29,3],[30,16],[31,13],[32,10],[33,22],[34,10],[35,20],[36,12],[37,12],[38,21],[40,1],[55,54],[56,76],[58,12],[59,18],[61,23],[63,82],[65,43],[66,12],[67,7],[68,14],[69,23],[84,7],[85,16],[88,9],[89,4],[90,9],[92,2],[93,4],[94,14],[95,10],[96,12],[97,1],[98,8],[99,4],[100,11],[101,12],[102,9],[103,3],[104,7],[105,6],[106,13],[107,11]]},"k":[111,46,112,107,103,121,116],"v":[{"d":{"df":9,"dc":[[31,1],[63,1],[66,2],[68,1],[85,1],[98,2],[100,1],[101,2],[106,2]]},"k":[108,58,107],"v":[{"d":{"df":7,"dc":[[28,2],[37,1],[55,1],[57,1],[63,1],[65,1],[69,1]]},"k":[116,115],"v":[{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":5,"dc":[[51,1],[61,3],[63,4],[64,1],[78,2]]},"k":[58,44,99,65292,46,63,12290],"v":[{"d":{"df":15,"dc":[[0,1],[7,1],[28,1],[32,1],[35,1],[42,1],[49,1],[51,1],[56,5],[58,2],[61,2],[64,5],[71,2],[78,2],[83,1]]}},{"d":{"df":3,"dc":[[28,1],[35,1],[63,1]]}},{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[28,3],[42,3]]}}]}]}]}]}]}]}]}]}]},{"k":[36873],"v":[{"k":[20013],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"k":[29992],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[63,2]]}}]},{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":6,"dc":[[32,1],[59,2],[65,1],[101,1],[102,1],[106,1]]},"k":[58,45,105],"v":[{"d":{"df":9,"dc":[[34,2],[36,1],[52,2],[53,1],[56,1],[64,1],[83,1],[96,1],[113,1]]}},{"k":[108],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[121],"v":[{"k":[111],"v":[{"k":[44,46],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":1,"dc":[[32,1]]}}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[66,1],[98,1],[104,1]]},"k":[46,44],"v":[{"d":{"df":4,"dc":[[56,1],[84,1],[92,1],[93,1]]}},{"d":{"df":2,"dc":[[63,1],[106,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[66,1]]},"k":[115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":4,"dc":[[98,1],[100,1],[102,2],[106,1]]},"k":[46,44],"v":[{"d":{"df":4,"dc":[[84,1],[95,1],[96,1],[106,1]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]},{"k":[112],"v":[{"k":[101,105],"v":[{"d":{"df":23,"dc":[[28,5],[30,1],[32,1],[35,1],[38,2],[42,1],[51,1],[55,13],[56,9],[61,1],[62,11],[63,5],[64,4],[65,6],[68,1],[69,1],[78,1],[84,1],[85,1],[88,3],[92,1],[94,1],[107,1]]},"k":[61,58,115,46,44,65292,40],"v":[{"k":[34],"v":[{"k":[116,105,115,119,100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[106],"v":[{"k":[97],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[33,3],[48,3]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[99],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,3],[47,3]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":51,"dc":[[0,1],[7,1],[28,1],[30,1],[32,17],[34,5],[35,10],[36,9],[37,10],[38,3],[42,1],[46,1],[47,10],[49,17],[51,10],[52,5],[53,9],[54,3],[55,31],[56,31],[58,2],[59,7],[61,13],[62,31],[64,31],[71,2],[75,7],[78,13],[83,6],[84,2],[85,12],[88,8],[89,1],[90,3],[92,5],[93,4],[94,4],[95,4],[96,2],[97,1],[110,12],[111,2],[112,1],[113,2],[114,2],[115,4],[116,8],[117,5],[118,4],[119,4],[120,1]]}},{"d":{"df":6,"dc":[[28,2],[38,1],[55,1],[56,2],[63,2],[94,1]]},"k":[99,46,44],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[28,2],[42,2],[63,3],[77,3],[81,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"d":{"df":3,"dc":[[34,1],[59,1],[92,1]]}},{"d":{"df":1,"dc":[[38,1]]}}]},{"d":{"df":5,"dc":[[28,1],[85,1],[88,1],[96,1],[107,1]]}},{"d":{"df":3,"dc":[[35,3],[69,1],[94,1]]}},{"k":[22914],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[96],"v":[{"k":[39],"v":[{"k":[98,115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[116,99,109,112,110,108,114],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[30,3],[34,1],[37,1],[59,4]]},"k":[58,44,99,46,125,98],"v":[{"d":{"df":12,"dc":[[0,1],[7,1],[28,1],[30,1],[42,1],[46,1],[51,1],[58,2],[71,2],[83,1],[96,1],[113,1]]}},{"d":{"df":3,"dc":[[28,1],[30,2],[58,1]]}},{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[44,111],"v":[{"d":{"df":2,"dc":[[28,4],[42,4]]}},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[30,1],[32,1]]}},{"k":[123,39],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[98],"v":[{"k":[103],"v":[{"k":[124],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]},{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,5],[75,5]]}}]}]}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[44,115],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"k":[44,46],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":1,"dc":[[32,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":9,"dc":[[32,1],[38,1],[55,4],[56,3],[58,1],[61,1],[63,12],[102,1],[103,1]]},"k":[34,39,46,115,44,45,108],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"d":{"df":1,"dc":[[32,3]]}},{"d":{"df":7,"dc":[[32,1],[35,1],[63,3],[100,1],[102,1],[104,1],[107,1]]}},{"d":{"df":1,"dc":[[101,1]]},"k":[116,46],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"d":{"df":4,"dc":[[55,2],[56,1],[62,1],[63,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":2,"dc":[[63,1],[65,1]]}},{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[61,1]]}}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]},{"k":[120,99,109,97,114,101,115,108,110],"v":[{"k":[116],"v":[{"d":{"df":11,"dc":[[32,1],[34,1],[36,2],[56,1],[59,58],[63,3],[65,3],[69,3],[75,4],[81,1],[96,3]]},"k":[58,115,46,44,39,98,41,112,99,111,114,100,102,97,118,108,119,104,117],"v":[{"d":{"df":13,"dc":[[0,1],[7,1],[28,1],[30,1],[42,1],[46,1],[51,1],[58,2],[59,5],[71,2],[83,1],[96,1],[113,1]]}},{"d":{"df":1,"dc":[[34,1]]},"k":[116,104],"v":[{"k":[121,114],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":5,"dc":[[34,1],[52,1],[83,1],[88,1],[116,1]]}}]}]}]},{"k":[111],"v":[{"k":[107],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98,111,58,99],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[59,1],[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"d":{"df":4,"dc":[[59,1],[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[125,58],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[59,2]]}},{"d":{"df":2,"dc":[[59,1],[63,1]]}},{"k":[44,93],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"k":[46],"v":[{"k":[106],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[92],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,97],"v":[{"k":[114,120],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119,58,99,114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[125,58],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99,98,111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}},{"k":[111,97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[46],"v":[{"k":[112,111,114,100],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[105,111],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]},{"k":[104],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[99,113],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[23,1],[63,1]]}}]}]},{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[108,101,111],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,5]]},"k":[93,115],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[32,2],[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"k":[39],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,7],[64,7]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[109],"v":[{"d":{"df":4,"dc":[[36,1],[55,1],[61,1],[65,1]]},"k":[44,115],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":3,"dc":[[59,1],[63,1],[69,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,6],[62,6]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46,101],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[63,4]]},"k":[34,105],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[121,101,117,97,105,111],"v":[{"d":{"df":19,"dc":[[23,2],[33,1],[34,1],[37,1],[52,1],[56,3],[57,1],[59,1],[65,1],[66,1],[68,1],[69,2],[85,1],[90,2],[94,1],[98,2],[100,1],[102,1],[106,2]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101,110,97,109],"v":[{"k":[115,45,44,109],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[105,97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[42,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[101,97,105],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[28,2]]}}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[28,2]]}}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[65,4],[81,2]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[38,1],[63,1]]}},{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[100],"v":[{"d":{"df":5,"dc":[[32,1],[84,2],[100,3],[104,2],[107,3]]},"k":[115,46],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[67,1]]}}]},{"d":{"df":3,"dc":[[69,1],[104,1],[107,1]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[99,1]]}}]}]}]}]}]}]}]},{"k":[101,110,116],"v":[{"d":{"df":15,"dc":[[30,1],[32,1],[36,1],[46,1],[49,1],[53,1],[55,2],[59,1],[62,2],[75,1],[83,1],[89,1],[96,1],[113,1],[120,1]]},"k":[44,96],"v":[{"d":{"df":16,"dc":[[32,1],[34,2],[36,7],[49,1],[52,2],[53,7],[59,4],[61,6],[75,4],[78,6],[85,1],[88,1],[96,1],[110,1],[113,1],[116,1]]}},{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[104],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]},{"k":[110,118,99],"v":[{"k":[115],"v":[{"k":[112,108,102,109,105],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116,99],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"k":[121],"v":[{"k":[40],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117,97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[46],"v":[{"d":{"df":2,"dc":[[34,1],[90,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":6,"dc":[[55,32],[61,1],[62,29],[65,1],[78,1],[81,1]]},"k":[96,101,58,115,44,46,34,97,105],"v":[{"d":{"df":1,"dc":[[55,2]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":2,"dc":[[55,16],[62,14]]}},{"d":{"df":1,"dc":[[55,6]]},"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[55,3]]}},{"d":{"df":1,"dc":[[55,5]]}},{"d":{"df":1,"dc":[[55,1]]},"k":[58,46],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[56,1],[101,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[103,109,99,101,97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[35,8]]},"k":[58,101,111,115],"v":[{"d":{"df":5,"dc":[[32,1],[35,1],[49,1],[51,1],[83,1]]}},{"k":[100],"v":[{"d":{"df":2,"dc":[[35,11],[61,1]]}}]},{"k":[110],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[109],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[107],"v":[{"k":[121],"v":[{"k":[44,46,65292],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[19981],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[26356],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[25490],"v":[{"k":[29256],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[32780],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[65,2]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[111,105],"v":[{"d":{"df":22,"dc":[[32,3],[35,2],[38,2],[55,2],[56,2],[58,1],[59,1],[63,1],[66,1],[68,2],[69,2],[85,1],[88,1],[92,1],[94,1],[99,3],[100,1],[102,1],[103,1],[105,1],[106,1],[107,7]]},"k":[45,46],"v":[{"k":[100,116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[32,1],[56,6]]}}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[84,1]]}}]},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"k":[101,111,97,117,112,105],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[120,119,101,99,97,105,115,63,117,118,103],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[0,3],[28,1],[55,1],[88,1],[96,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]},{"d":{"df":10,"dc":[[0,1],[23,2],[35,1],[36,1],[55,2],[56,1],[61,3],[63,11],[65,9],[86,1]]},"k":[108,115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]},{"k":[112],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":26,"dc":[[0,1],[28,2],[31,3],[32,1],[33,2],[34,1],[35,3],[36,1],[38,1],[55,6],[56,5],[58,3],[61,2],[63,2],[65,12],[66,1],[69,1],[84,3],[85,3],[89,1],[94,2],[95,3],[96,1],[100,1],[105,1],[106,1]]},"k":[101,115,46,105],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[55,1],[59,1]]},"k":[46],"v":[{"d":{"df":4,"dc":[[28,1],[30,1],[38,1],[56,1]]}}]}]},{"d":{"df":6,"dc":[[30,1],[55,1],[63,3],[65,2],[88,1],[106,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[38,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":4,"dc":[[28,1],[56,1],[65,1],[85,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[116,114],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]},{"k":[44,98],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"k":[121],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[98,1],[102,1],[105,6]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[107,2]]}}]}]}]}]}]}]}]}]},{"d":{"df":13,"dc":[[0,1],[30,1],[31,1],[33,1],[35,1],[63,3],[65,8],[68,2],[94,1],[95,1],[100,1],[105,1],[107,3]]},"k":[116,110,46,114,100,117,119],"v":[{"d":{"df":32,"dc":[[23,3],[28,3],[30,1],[31,2],[33,4],[35,2],[36,3],[37,1],[55,10],[56,13],[59,1],[61,3],[62,1],[63,5],[65,7],[67,2],[68,2],[69,1],[84,1],[85,2],[88,3],[94,1],[95,2],[96,1],[98,2],[100,5],[101,4],[102,3],[104,2],[105,1],[106,3],[107,2]]},"k":[101,97,105,58,63,46],"v":[{"d":{"df":4,"dc":[[28,2],[55,1],[65,1],[88,1]]},"k":[58],"v":[{"d":{"df":3,"dc":[[31,1],[55,1],[65,2]]}}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,1],[65,1]]},"k":[100,58,44],"v":[{"d":{"df":1,"dc":[[69,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]},{"d":{"df":3,"dc":[[36,1],[57,1],[59,1]]}},{"d":{"df":1,"dc":[[59,3]]}}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[45],"v":[{"k":[116,115,114],"v":[{"k":[101,97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]}]}]}]}]}]}]},{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":9,"dc":[[32,1],[35,1],[36,8],[53,2],[56,4],[90,1],[92,2],[93,1],[94,1]]},"k":[58,108,41],"v":[{"d":{"df":6,"dc":[[36,2],[53,2],[59,6],[75,6],[88,1],[116,1]]}},{"k":[121],"v":[{"d":{"df":1,"dc":[[58,1]]}}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":3,"dc":[[33,6],[35,3],[51,1]]},"k":[46,100,115,65288],"v":[{"d":{"df":1,"dc":[[33,2]]}},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"k":[33410],"v":[{"k":[28857],"v":[{"k":[65289],"v":[{"k":[19978],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":3,"dc":[[56,2],[61,2],[63,2]]},"k":[44,46],"v":[{"d":{"df":2,"dc":[[56,1],[63,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[109,110,116],"v":[{"k":[101,105],"v":[{"d":{"df":11,"dc":[[35,9],[36,1],[51,6],[55,4],[56,12],[58,1],[64,2],[84,1],[95,1],[105,1],[106,1]]},"k":[58,100,34,44,115,46,108],"v":[{"d":{"df":31,"dc":[[0,1],[7,1],[28,1],[30,6],[32,11],[34,6],[35,17],[36,2],[42,1],[46,6],[49,11],[51,17],[52,6],[53,2],[55,4],[56,9],[58,3],[59,3],[62,4],[64,9],[71,3],[75,3],[83,4],[92,3],[95,12],[96,8],[97,5],[112,5],[113,8],[115,12],[117,3]]}},{"d":{"df":3,"dc":[[30,1],[35,3],[56,3]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"d":{"df":2,"dc":[[35,1],[56,1]]}},{"d":{"df":1,"dc":[[56,1]]},"k":[46,112],"v":[{"d":{"df":1,"dc":[[37,1]]}},{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,2],[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[56,3]]}},{"k":[121],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[109,108],"v":[{"k":[98,101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":15,"dc":[[23,1],[31,2],[32,1],[35,3],[51,3],[55,8],[62,2],[63,1],[66,2],[94,1],[98,1],[104,1],[106,1],[107,1],[119,2]]},"k":[44,59,46,40,93,96,115,41],"v":[{"d":{"df":4,"dc":[[35,2],[55,2],[94,1],[119,1]]}},{"d":{"df":3,"dc":[[51,2],[55,2],[62,2]]}},{"d":{"df":1,"dc":[[55,1]]}},{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[65,3],[81,3]]}}]},{"d":{"df":1,"dc":[[81,3]]},"k":[47,46,12290],"v":[{"k":[96],"v":[{"k":[121,115,111],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,3]]}},{"d":{"df":1,"dc":[[81,3]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]},{"d":{"df":1,"dc":[[105,2]]}}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":2,"dc":[[55,2],[62,1]]},"k":[97,45],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":3,"dc":[[56,1],[64,1],[88,1]]},"k":[44],"v":[{"d":{"df":10,"dc":[[31,2],[33,1],[45,2],[48,1],[55,2],[56,1],[62,2],[63,1],[64,1],[77,1]]}}]}]}]},{"k":[109],"v":[{"d":{"df":4,"dc":[[26,3],[28,4],[42,3],[43,3]]}}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[97,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":53,"dc":[[0,1],[7,1],[28,1],[30,2],[32,6],[34,3],[35,12],[36,11],[37,9],[38,4],[42,1],[46,2],[47,9],[49,7],[51,10],[52,3],[53,11],[54,4],[55,22],[56,17],[58,3],[59,13],[61,6],[62,24],[64,19],[65,2],[71,3],[75,13],[78,6],[81,2],[83,3],[84,1],[85,6],[88,6],[89,1],[90,1],[92,1],[93,2],[94,5],[95,6],[96,4],[97,2],[110,6],[111,1],[112,2],[113,4],[114,1],[115,8],[116,6],[117,1],[118,2],[119,5],[120,1]]},"k":[105,106,104,101,115,39,53,97,111,102,103,99,100,114,119,116,122,108,112,93,54,96,123,91,50,51,49,52,118,37197,24120,109,23448,26415,29305,27700,22312,31034,20027,25968,98,56,57,55,110,34,48,45,120,46,32858,30452,31616,32447,25351,23545,22810,20363,35,20837,35813,25240],"v":[{"k":[110,115,116],"v":[{"k":[115,116],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[0,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[26,1],[31,1]]}}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46,45],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[98,115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,4],[81,5]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[100],"v":[{"k":[101,111],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,111,101,105],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119,103],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116,115],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[104,99],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[102],"v":[{"k":[119],"v":[{"k":[47],"v":[{"k":[101,112],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[102],"v":[{"k":[119],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[98],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[102],"v":[{"k":[119],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[98],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[52],"v":[{"k":[99],"v":[{"k":[51],"v":[{"k":[50],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[99],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[51],"v":[{"k":[54],"v":[{"k":[97],"v":[{"k":[102],"v":[{"k":[55],"v":[{"k":[50],"v":[{"k":[98],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[97],"v":[{"k":[49],"v":[{"k":[97],"v":[{"k":[52],"v":[{"k":[97],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[52],"v":[{"k":[99],"v":[{"k":[51],"v":[{"k":[50],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[99],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[51],"v":[{"k":[54],"v":[{"k":[97],"v":[{"k":[102],"v":[{"k":[55],"v":[{"k":[50],"v":[{"k":[98],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[97],"v":[{"k":[49],"v":[{"k":[97],"v":[{"k":[52],"v":[{"k":[97],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]},{"k":[97],"v":[{"k":[116,100],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[108,116],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[112],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99,102,118,120,109],"v":[{"k":[104,115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":7,"dc":[[26,1],[31,1],[41,1],[43,1],[45,1],[72,2],[81,1]]},"k":[46,93,45],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[26,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103,119,108,102],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[73,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115,93],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98,100,112],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[101,100,108],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[49,48],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[107],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[36,2],[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,99,104,116],"v":[{"k":[116,114],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104,126],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"d":{"df":1,"dc":[[0,1]]},"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[46,23454],"v":[{"d":{"df":1,"dc":[[58,1]]}},{"k":[29616],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23450],"v":[{"k":[26102],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[91],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[126],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46,108,45],"v":[{"k":[100,115,101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93,115],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115,35],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[38,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,2],[64,1]]},"k":[44,46,65292,12290],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[64,1]]}},{"k":[21478],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[24040],"v":[{"k":[22823],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[30334],"v":[{"k":[19975],"v":[{"k":[20197],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[38,1],[55,5]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[108,116],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[112],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104,97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[93,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,10],[62,10]]},"k":[115,38144,34924,112,109,99,119,108,100,53,98,30452,22270,116,50,55,110,122,104,35,29461,31532,97,52],"v":[{"k":[97,104,99,101,117],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[0,1],[58,1]]}}]}]}]}]}]},{"k":[105,111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115,39],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]},{"k":[119],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[94,3],[119,3]]}}]}]}]}]},{"k":[37327],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[7,1],[71,1]]}}]}]}]},{"k":[34923],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]},{"k":[114,111],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[34,1],[52,1],[55,3],[56,4],[62,3],[64,4]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]}]}]}]}]}]},{"k":[97,105,111],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,5],[64,5]]}}]}]}]}]},{"k":[108,97],"v":[{"k":[107],"v":[{"d":{"df":6,"dc":[[34,1],[52,1],[55,6],[56,2],[62,6],[64,2]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[37,5],[47,5],[85,3],[92,1],[110,3],[117,1]]}}]}]}]}]},{"k":[104,97,101],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]}]}]}]},{"k":[107],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,10],[62,10]]}}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,1],[64,1]]}}]}]}]}]}]},{"k":[101,97,105],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[34,4]]},"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,98],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,6],[62,6]]}}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[97,117],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[35,1],[51,1],[55,1],[62,1],[96,1],[113,1]]}}]}]}]}]},{"k":[108,105,97],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25509],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[20363],"v":[{"k":[19968],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[52,4]]}}]}]}]}]},{"k":[111],"v":[{"k":[102],"v":[{"k":[117],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,8],[62,8]]}}]}]}]}]}]},{"k":[53,48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[49],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[53],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[111],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"k":[54],"v":[{"k":[101],"v":[{"k":[57],"v":[{"k":[100],"v":[{"k":[52],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]},{"k":[29492],"v":[{"k":[26691],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[19968],"v":[{"k":[21608],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":14,"dc":[[84,1],[85,3],[88,4],[89,1],[90,1],[93,2],[96,1],[110,3],[111,1],[113,1],[114,1],[116,4],[118,2],[120,1]]}}]}]},{"k":[48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]},{"k":[44,57,51,55,48],"v":[{"d":{"df":18,"dc":[[0,1],[7,1],[28,1],[35,1],[42,1],[51,1],[56,1],[58,1],[59,3],[64,1],[71,1],[75,3],[84,1],[85,2],[93,2],[110,2],[111,1],[118,2]]}},{"k":[48],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[51],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[46,44],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]},{"k":[112,114,120,99,119,103,110,108,105],"v":[{"k":[105,97,112],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47,97],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[29,1]]},"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[26,1],[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104,97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,101],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]},"k":[46],"v":[{"k":[115,100,103],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[30,2],[46,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[30,2],[46,1]]},"k":[65292],"v":[{"k":[21017],"v":[{"k":[23558],"v":[{"k":[20854],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[21542],"v":[{"k":[21017],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[25340],"v":[{"k":[25509],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[31639],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[20165],"v":[{"k":[24403],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[19981],"v":[{"k":[22826],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[25165],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[65292],"v":[{"k":[29978],"v":[{"k":[33267],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[116,111],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108,115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,3],[81,4]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[108,116],"v":[{"k":[105,97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[49,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[49,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[49,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[65306],"v":[{"k":[21508],"v":[{"k":[31181],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112,102],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[23,1],[59,1],[75,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[53,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[115,105],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[32,1],[57,1]]}}]}]}]}]}]}]}]},{"k":[97,101],"v":[{"k":[113],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[113],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,101,114],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"d":{"df":2,"dc":[[23,1],[40,1]]}}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]},{"k":[97,105],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[93,105],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[61,2]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,97],"v":[{"k":[100,110,109],"v":[{"k":[101],"v":[{"k":[112,115],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[121],"v":[{"k":[119],"v":[{"k":[120],"v":[{"k":[119],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"k":[91],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[121],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[121],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[50],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[122],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[121],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[121],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[50],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[122],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116,102],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97,104],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[97,104],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]},{"k":[101,97,115,105],"v":[{"k":[118,116,102],"v":[{"k":[64],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[58],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[64],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[41],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[23,2]]}},{"d":{"df":1,"dc":[[40,1]]},"k":[20026],"v":[{"k":[20102],"v":[{"k":[35753],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20154],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[22312],"v":[{"k":[23558],"v":[{"k":[26469],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[65292],"v":[{"k":[24378],"v":[{"k":[28872],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[33521],"v":[{"k":[25991],"v":[{"k":[21457],"v":[{"k":[36865],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97,105],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[95],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[115,93,122],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[93,46],"v":[{"k":[40],"v":[{"k":[126],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[55,2],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[118],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[51],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[51],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[118],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104,97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[108,110],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[26,1],[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[46],"v":[{"k":[63],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[46],"v":[{"k":[60],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[95],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[44,65292],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[19979],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,114,104,111],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,101],"v":[{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"k":[101],"v":[{"k":[109,45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"k":[91],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[45,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,97],"v":[{"k":[113,118,110],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[93,45],"v":[{"d":{"df":39,"dc":[[32,1],[34,1],[35,1],[36,1],[37,2],[47,2],[49,1],[51,2],[52,1],[53,1],[55,2],[56,6],[59,2],[62,2],[64,7],[75,2],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]}},{"k":[108,114,98],"v":[{"k":[114],"v":[{"k":[93],"v":[{"d":{"df":4,"dc":[[37,2],[47,2],[59,2],[75,2]]}}]}]},{"k":[108],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]},{"k":[116],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[115],"v":[{"k":[116,93],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108,115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,4],[81,4]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[93,46],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102,112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"k":[58,65292],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"k":[29616],"v":[{"k":[22312],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[75,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,114,117,104],"v":[{"k":[115,112],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[117],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[57,1]]}},{"k":[91],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":7,"dc":[[32,1],[55,3],[56,5],[58,2],[62,1],[64,3],[71,2]]}},{"k":[44,52,56,48],"v":[{"d":{"df":4,"dc":[[32,1],[49,1],[94,1],[119,1]]}},{"k":[51],"v":[{"k":[48],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[101,115,98,97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46,105],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[33,1]]}},{"k":[91],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[114,100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[33,2],[48,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,104],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100,105,108,101,115,114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98,108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[110,1]]},"k":[12290],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[116,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96,46],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[116,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[95,1],[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121,116],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[119,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[95,1],[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,111],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[115,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[97,1],[112,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114,99],"v":[{"k":[119,109,99],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35,115],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[41],"v":[{"k":[46,65292],"v":[{"d":{"df":1,"dc":[[85,1]]}},{"k":[21478],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[19982],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[36317],"v":[{"k":[31163],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,105],"v":[{"k":[120],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[46,65292],"v":[{"d":{"df":1,"dc":[[85,1]]}},{"k":[24403],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[23567],"v":[{"k":[20110],"v":[{"k":[35813],"v":[{"k":[20540],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[23558],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[85,1]]}},{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[114,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[90,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":11,"dc":[[34,1],[35,1],[37,1],[47,1],[51,1],[52,1],[55,3],[56,4],[62,3],[64,4],[95,2]]}},{"k":[49,111,37197],"v":[{"k":[50,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[39033],"v":[{"k":[25163],"v":[{"k":[20876],"v":[{"k":[93],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[56,57,48,52,54,49,51,50,53,44],"v":[{"k":[54,53],"v":[{"k":[48,54],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[57],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[52,53],"v":[{"k":[55],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[53],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[55,44],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":2,"dc":[[88,1],[116,1]]}}]},{"k":[48,55],"v":[{"k":[50],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[56],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[52,44],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"d":{"df":2,"dc":[[85,1],[110,1]]}}]},{"k":[50],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[48,44,50],"v":[{"k":[51],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"d":{"df":6,"dc":[[37,9],[47,9],[56,1],[64,1],[85,3],[110,3]]}},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[59,1],[75,1],[92,1],[94,3],[117,1],[119,3]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[90,1],[114,1]]}}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"k":[49,55,56,54,52,48,50,44],"v":[{"k":[49,52],"v":[{"k":[54],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[55],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[48,53],"v":[{"k":[54],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[57],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[57,50],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[50],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[49],"v":[{"k":[54],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[54,49,51],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[56],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[38,2],[54,2]]}}]},{"k":[46,48],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[53,51,55,50,48,57,44,49],"v":[{"k":[49,44],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[54,51,57,44],"v":[{"k":[55],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[51],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[55],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[48,49,44],"v":[{"k":[56,44],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":7,"dc":[[83,1],[85,1],[88,1],[92,1],[110,1],[116,1],[117,1]]}}]},{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]},{"d":{"df":4,"dc":[[56,1],[64,1],[85,1],[110,1]]}}]},{"k":[48,54,46,44],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[55],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":14,"dc":[[84,1],[85,2],[88,2],[89,1],[90,1],[93,2],[94,1],[110,2],[111,1],[114,1],[116,2],[118,2],[119,1],[120,1]]}}]},{"k":[51,46],"v":[{"k":[52,54],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"d":{"df":2,"dc":[[56,3],[64,3]]}},{"k":[44,48],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]},{"k":[51,52,50,48,53],"v":[{"k":[50,52],"v":[{"k":[57],"v":[{"k":[54,52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]},{"k":[48],"v":[{"k":[53],"v":[{"k":[54,51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[49],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]}]},{"k":[105,115,109,101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":6,"dc":[[36,1],[38,1],[53,1],[54,1],[65,4],[81,2]]},"k":[46,45,93],"v":[{"k":[116,105,111,100],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[126],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115,112,99],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35,118],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[56,1],[64,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[39033],"v":[{"k":[25163],"v":[{"k":[20876],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47,111],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[65306],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23581],"v":[{"k":[35797],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35265],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[113],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46,93],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[40,1],[41,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[65306],"v":[{"k":[31038],"v":[{"k":[21306],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[38598],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26041],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35821],"v":[{"k":[36895],"v":[{"k":[26597],"v":[{"k":[25163],"v":[{"k":[20876],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25928],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[19981],"v":[{"k":[23569],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[115],"v":[{"k":[118],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29699],"v":[{"k":[22270],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]},{"k":[20363],"v":[{"k":[38598,93],"v":[{"k":[21512],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[36],"v":[{"k":[123],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[98],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[125],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[101,108],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[49,48],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[107],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"k":[65292],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20849],"v":[{"k":[20139],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39064],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[22120],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114,105],"v":[{"d":{"df":2,"dc":[[55,1],[63,1]]}},{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[57,53,49,50,44],"v":[{"k":[46],"v":[{"k":[51,55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[46],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"k":[53,55,50,52,49,48],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,3],[64,3]]}}]}]}]},{"k":[46],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]},{"k":[46],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[46],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[52],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[111,101,117],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[65,3],[81,3]]}}]}]}]}]}]}]},{"k":[115,34924],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[34923],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[32650],"v":[{"k":[27611],"v":[{"k":[34923],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[38634],"v":[{"k":[32442],"v":[{"k":[34923],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[35044],"v":[{"k":[23376],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[39640],"v":[{"k":[36319],"v":[{"k":[38795],"v":[{"k":[34],"v":[{"k":[44],"v":[{"k":[34],"v":[{"k":[34972],"v":[{"k":[23376],"v":[{"k":[34],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":6,"dc":[[59,7],[75,7],[88,1],[94,1],[116,1],[119,1]]}}]},{"k":[53,52,50],"v":[{"k":[48,54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[46],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]},{"k":[54],"v":[{"k":[46],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]},{"k":[50],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[46],"v":[{"k":[46],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[38598],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[26041],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[21333],"v":[{"k":[32858],"v":[{"k":[31867],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[24615],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[25968],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[25968],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[39033],"v":[{"k":[24335],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[23376],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[49],"v":[{"k":[52,51],"v":[{"k":[48],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[49],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[55],"v":[{"k":[54],"v":[{"k":[52],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[54],"v":[{"k":[52],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38376],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[21518],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[20013],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[22635],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24322],"v":[{"k":[27493],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[22635],"v":[{"k":[20837],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[23376],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[101,111,116,97,114,105,117],"v":[{"k":[114,105,108,97],"v":[{"k":[101],"v":[{"d":{"df":16,"dc":[[0,1],[33,1],[34,1],[35,3],[38,4],[55,1],[56,5],[58,1],[61,3],[69,3],[84,1],[85,1],[88,2],[94,2],[95,1],[102,1]]},"k":[44,58,46],"v":[{"d":{"df":2,"dc":[[0,1],[88,1]]}},{"d":{"df":2,"dc":[[55,2],[59,2]]}},{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":8,"dc":[[0,3],[33,3],[37,1],[59,2],[84,2],[85,3],[104,2],[107,2]]},"k":[61,46,58],"v":[{"k":[34],"v":[{"k":[49,56,51,52,54],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[37],"v":[{"k":[34],"v":[{"d":{"df":14,"dc":[[32,1],[49,1],[69,4],[83,4],[101,2],[104,1],[105,2],[106,4],[107,1],[124,2],[125,1],[128,2],[129,4],[130,1]]}}]}]}]}]},{"k":[48],"v":[{"k":[37],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]},{"k":[48,53],"v":[{"k":[48],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":3,"dc":[[37,2],[47,2],[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[63,2],[77,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[34],"v":[{"d":{"df":28,"dc":[[66,3],[67,2],[68,4],[69,3],[79,2],[80,4],[82,3],[83,2],[98,1],[99,2],[100,4],[101,4],[102,4],[103,4],[104,4],[105,2],[106,2],[107,2],[121,2],[122,1],[123,4],[124,4],[125,4],[126,4],[127,4],[128,2],[129,2],[130,2]]},"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":4,"dc":[[61,1],[63,3],[77,3],[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[33,2],[84,1],[85,1],[94,1]]}},{"d":{"df":4,"dc":[[33,3],[48,3],[59,10],[75,10]]}}]}]}]}]},{"k":[112],"v":[{"d":{"df":8,"dc":[[23,4],[28,1],[30,2],[31,1],[37,1],[55,3],[63,15],[69,1]]},"k":[46,102,115,105],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"k":[117],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]},{"d":{"df":3,"dc":[[30,1],[55,1],[63,2]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114,100],"v":[{"k":[105,116],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[30,2]]}}]}]},{"d":{"df":1,"dc":[[94,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[94,2]]}}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[57,1],[74,1]]}}]}]}]}]}]}]},{"k":[119,114,118,112],"v":[{"d":{"df":16,"dc":[[0,1],[23,1],[28,1],[29,2],[31,2],[33,1],[35,1],[36,1],[38,1],[55,1],[56,9],[61,2],[88,1],[94,1],[96,1],[102,1]]},"k":[45,101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[44],"v":[{"d":{"df":11,"dc":[[30,1],[31,2],[56,2],[65,1],[67,1],[84,1],[93,1],[94,1],[96,1],[98,1],[107,2]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":5,"dc":[[59,4],[92,1],[98,1],[101,1],[105,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[63,1],[77,1]]},"k":[105,101,115],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[63,1],[84,1]]}}]}]},{"k":[109,116],"v":[{"k":[108],"v":[{"d":{"df":6,"dc":[[33,1],[48,2],[53,1],[59,1],[63,1],[77,1]]},"k":[62,44,46,65306],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}},{"d":{"df":3,"dc":[[33,1],[36,1],[48,1]]}},{"d":{"df":1,"dc":[[37,1]]}},{"d":{"df":1,"dc":[[47,1]]}}]}]},{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101,103],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101,122],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116,115],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[104,99],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[102],"v":[{"k":[119],"v":[{"k":[47],"v":[{"k":[101,112],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[98],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[121],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[52],"v":[{"k":[99],"v":[{"k":[51],"v":[{"k":[50],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[99],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[51],"v":[{"k":[54],"v":[{"k":[97],"v":[{"k":[102],"v":[{"k":[55],"v":[{"k":[50],"v":[{"k":[98],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[97],"v":[{"k":[49],"v":[{"k":[97],"v":[{"k":[52],"v":[{"k":[97],"v":[{"k":[55],"v":[{"k":[51],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,100,110,118,114,112,98],"v":[{"d":{"df":23,"dc":[[23,2],[30,1],[31,3],[32,2],[33,3],[34,1],[38,2],[55,5],[56,1],[61,2],[63,7],[65,6],[66,2],[68,1],[69,1],[85,1],[88,3],[90,1],[92,1],[96,1],[100,1],[103,1],[106,1]]}},{"d":{"df":1,"dc":[[23,1]]}},{"k":[100,110],"v":[{"k":[98,108,44],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[107],"v":[{"d":{"df":3,"dc":[[23,1],[29,1],[88,1]]}}]}]}]},{"k":[101,105],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[114],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[97],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[101,105],"v":[{"d":{"df":24,"dc":[[23,1],[28,1],[29,1],[31,2],[34,1],[35,1],[38,2],[55,3],[56,1],[58,1],[61,3],[63,18],[65,4],[66,2],[68,3],[69,2],[84,1],[94,2],[95,1],[98,1],[99,1],[101,1],[105,1],[107,4]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":4,"dc":[[35,1],[55,1],[56,1],[59,2]]}}]}]}]},{"k":[100,109],"v":[{"d":{"df":6,"dc":[[31,1],[65,1],[66,1],[93,1],[102,1],[106,1]]},"k":[119],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,2]]}}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[112],"v":[{"k":[101,105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[35,2],[68,1]]}}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[106,2]]}}]}]}]}]},{"k":[101,58],"v":[{"k":[102],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[115,119],"v":[{"k":[116,101],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[12289],"v":[{"k":[60],"v":[{"k":[97],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[24320],"v":[{"k":[28304],"v":[{"k":[20013],"v":[{"k":[22269],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[62],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[59,2],[75,2]]}}]},{"k":[103,100,115,114],"v":[{"k":[104],"v":[{"k":[108,101,45,116],"v":[{"k":[121,105],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[35,1],[63,1],[101,1]]},"k":[105,115,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[37,1],[63,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[96,3]]}}]}]}]}]}]}]},{"k":[114,115],"v":[{"d":{"df":6,"dc":[[56,1],[63,1],[66,1],[68,1],[101,1],[107,1]]}},{"k":[116],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]},{"k":[112,99,100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]},{"k":[101,105],"v":[{"d":{"df":5,"dc":[[34,2],[58,1],[61,1],[63,1],[95,2]]},"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[96,1]]}}]}]}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[93,44],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[105],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[110,103,109],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[30,1],[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[63,1],[69,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[102,112,110,116,114,118,117,98,99,119,109,108,104],"v":[{"d":{"df":44,"dc":[[0,1],[23,1],[26,5],[28,4],[30,20],[31,11],[32,14],[33,13],[34,8],[35,21],[36,12],[37,6],[38,19],[55,29],[56,44],[58,4],[59,44],[61,16],[63,66],[65,20],[66,5],[67,4],[68,7],[69,29],[84,14],[85,25],[88,8],[89,1],[90,4],[92,3],[94,14],[95,6],[96,14],[97,2],[98,10],[99,6],[100,5],[101,6],[102,7],[103,10],[104,9],[105,6],[106,11],[107,11]]},"k":[102,116],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[101,105,115],"v":[{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[26,1]]}}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[29,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[36,6],[53,6]]}}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[56,1],[63,2],[66,1]]}}]}]}]},{"k":[101,116,97,112],"v":[{"k":[110,114],"v":[{"d":{"df":2,"dc":[[0,2],[94,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105,111],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46,115],"v":[{"d":{"df":2,"dc":[[34,1],[35,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[55,3]]},"k":[58,115],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"d":{"df":1,"dc":[[55,2]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[111,109],"v":[{"k":[110],"v":[{"d":{"df":48,"dc":[[0,1],[7,1],[28,3],[30,1],[32,8],[34,6],[35,3],[36,6],[37,15],[38,2],[42,1],[46,1],[47,14],[49,8],[51,2],[52,6],[53,5],[54,2],[55,11],[56,12],[59,6],[62,10],[64,12],[65,15],[75,4],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]},"k":[115,58,46,97,49,50,44],"v":[{"d":{"df":5,"dc":[[26,1],[36,2],[59,1],[63,1],[65,1]]},"k":[44,58],"v":[{"d":{"df":2,"dc":[[26,1],[59,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":2,"dc":[[28,1],[42,1]]}},{"d":{"df":2,"dc":[[31,1],[36,1]]},"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[46,91],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"k":[48],"v":[{"k":[93],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[55,1],[59,1]]}}]},{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[105],"v":[{"k":[115,122],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]},{"k":[97,101,105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[56,2],[63,1]]},"k":[100,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[88,1],[100,1]]},"k":[58,46],"v":[{"d":{"df":2,"dc":[[90,1],[114,1]]}},{"d":{"df":1,"dc":[[90,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[105,2]]}}]}]}]}]}]}]},{"d":{"df":31,"dc":[[0,1],[23,2],[26,3],[28,2],[30,3],[31,4],[32,3],[34,2],[35,9],[38,3],[55,7],[56,2],[58,1],[59,2],[61,9],[63,5],[65,5],[67,1],[68,1],[69,1],[84,1],[85,3],[88,2],[92,1],[95,1],[99,1],[101,4],[102,1],[105,4],[106,1],[107,1]]},"k":[108,101,44,122,100,112,109,45,46],"v":[{"k":[105,121],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[26,3]]}}]}]},{"d":{"df":25,"dc":[[26,1],[28,2],[30,1],[31,1],[34,1],[35,3],[36,3],[37,1],[55,7],[56,2],[58,2],[59,3],[61,1],[63,9],[65,4],[66,1],[68,2],[84,1],[88,1],[89,1],[92,1],[101,2],[104,1],[106,1],[107,3]]}}]},{"d":{"df":22,"dc":[[33,1],[34,2],[35,8],[38,4],[55,8],[56,6],[63,2],[66,1],[67,1],[68,1],[69,1],[84,1],[85,2],[94,2],[96,2],[99,3],[100,2],[101,3],[102,2],[104,1],[105,1],[107,2]]},"k":[115,46,44,58],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":2,"dc":[[56,1],[102,1]]}},{"d":{"df":2,"dc":[[65,1],[102,1]]}},{"d":{"df":1,"dc":[[106,1]]}}]},{"d":{"df":1,"dc":[[38,1]]}},{"k":[101],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,4],[78,4]]}}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]},{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[41,44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}},{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[109,111],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[88,1]]}}]},{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":17,"dc":[[23,2],[33,1],[35,1],[36,1],[38,1],[55,5],[56,3],[59,1],[63,8],[69,1],[85,1],[88,1],[94,1],[96,1],[97,1],[105,1],[107,2]]},"k":[115,119,46],"v":[{"d":{"df":2,"dc":[[23,1],[56,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[102,1]]}}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,1],[59,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[88,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]},{"d":{"df":35,"dc":[[23,3],[28,4],[29,1],[30,1],[31,6],[32,2],[33,2],[34,4],[35,7],[36,3],[37,2],[38,3],[55,15],[56,9],[58,1],[59,8],[61,1],[62,2],[63,6],[65,6],[66,2],[67,3],[68,3],[69,1],[93,1],[94,4],[96,1],[98,3],[99,2],[100,2],[101,3],[104,2],[105,1],[106,4],[107,1]]},"k":[100,105,58,63,44,97],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":8,"dc":[[23,1],[28,1],[37,1],[55,1],[58,1],[63,2],[65,2],[106,1]]},"k":[58,46,101],"v":[{"d":{"df":2,"dc":[[55,8],[62,6]]}},{"d":{"df":2,"dc":[[55,1],[68,1]]}},{"k":[100,120],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[91],"v":[{"k":[93],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,103],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":6,"dc":[[34,2],[35,1],[51,1],[52,2],[96,1],[113,1]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[97],"v":[{"k":[108],"v":[{"d":{"df":4,"dc":[[55,3],[56,1],[63,2],[102,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":1,"dc":[[65,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":6,"dc":[[26,1],[31,1],[63,3],[100,1],[102,1],[104,1]]},"k":[97,108,118,44,115,119,114],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":5,"dc":[[30,5],[34,1],[63,2],[68,1],[84,1]]}}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[115,112],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[96,1]]}}]},{"k":[101,105],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[100,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[119],"v":[{"d":{"df":1,"dc":[[36,2]]}}]}]}]},{"d":{"df":1,"dc":[[61,1]]}},{"k":[116,112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116,100],"v":[{"d":{"df":1,"dc":[[66,1]]}},{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[90,1]]}}]}]}]}]}]}]},{"k":[114,116],"v":[{"d":{"df":6,"dc":[[28,1],[36,1],[61,1],[63,2],[65,2],[69,2]]},"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[38,1],[63,1],[65,1],[68,1],[69,1],[107,1]]},"k":[111,115,112,108,46,44,99,100,101],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,4]]}}]}]},{"k":[105],"v":[{"k":[101,110],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[55,2],[62,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[66,1],[107,1]]}}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[66,1],[85,1]]}}]}]}]},{"d":{"df":2,"dc":[[61,1],[88,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[68,1],[105,2],[107,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[96,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[96,2]]}}]}]}]},{"k":[115,106,116,118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[118],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":4,"dc":[[32,1],[69,1],[106,1],[107,1]]}}]}]},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[63,2],[77,1]]},"k":[46,44,59,105,41],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}},{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":3,"dc":[[68,1],[104,1],[107,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[117],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"d":{"df":2,"dc":[[38,1],[55,1]]}}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[88,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[106,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[56,1],[65,2]]}}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[100,108,97,114,111,104,117,101,105,115,39,112,45,49,53],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[26,2],[43,2]]}}]},{"k":[105,97,117,111,101],"v":[{"k":[99,101],"v":[{"k":[107],"v":[{"d":{"df":4,"dc":[[0,1],[26,1],[34,1],[35,4]]},"k":[105,115,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[34,1],[35,1]]}}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[35,4]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[35,3]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[114,115],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[121,105],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"k":[101,99],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[85,1],[88,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[93,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101,105,61,46],"v":[{"k":[115],"v":[{"k":[44,34],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[102],"v":[{"k":[121,105],"v":[{"d":{"df":2,"dc":[[69,1],[103,1]]}},{"k":[99,101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[99,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]},{"k":[34],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[107],"v":[{"k":[45],"v":[{"k":[111,105,99],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[102,1],[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[107,1]]}}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[93,44],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[117,116,115,99],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]},{"k":[104],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[66,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[44,100],"v":[{"d":{"df":1,"dc":[[101,1]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]},{"k":[107],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[106,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[63,3],[66,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[63,4],[69,1]]}}]}]}]}]}]},{"k":[110,115,117,112,114,108,116],"v":[{"d":{"df":42,"dc":[[0,3],[23,5],[26,3],[28,4],[30,7],[31,6],[32,7],[33,3],[34,3],[35,12],[36,10],[37,2],[38,7],[55,20],[56,27],[57,1],[58,4],[59,26],[61,9],[63,21],[65,7],[66,2],[67,2],[68,3],[69,7],[84,2],[85,3],[88,6],[94,5],[95,1],[96,1],[97,1],[98,5],[99,1],[100,1],[101,4],[102,1],[103,4],[104,3],[105,3],[106,3],[107,8]]},"k":[118,110,100,39],"v":[{"k":[97],"v":[{"k":[115],"v":[{"d":{"df":10,"dc":[[28,1],[31,11],[42,1],[45,9],[61,2],[63,2],[65,2],[73,3],[77,2],[81,2]]},"k":[114,58,46,65306,44],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":6,"dc":[[28,5],[31,1],[42,5],[45,1],[65,1],[81,1]]},"k":[93],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":4,"dc":[[31,1],[45,1],[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":3,"dc":[[35,1],[61,2],[63,1]]}},{"k":[22914],"v":[{"k":[91],"v":[{"k":[28843],"v":[{"k":[20809],"v":[{"k":[23614],"v":[{"k":[36857],"v":[{"k":[29305],"v":[{"k":[25928],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[24102],"v":[{"k":[26377],"v":[{"k":[28151],"v":[{"k":[21512],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[30340],"v":[{"k":[28909],"v":[{"k":[21147],"v":[{"k":[22270],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"d":{"df":6,"dc":[[30,1],[56,2],[63,1],[69,1],[106,1],[107,2]]}}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]},{"k":[101],"v":[{"d":{"df":5,"dc":[[38,2],[55,3],[56,1],[85,1],[96,3]]},"k":[115,44,46,58,93],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[46,44,93],"v":[{"d":{"df":2,"dc":[[31,1],[59,1]]},"k":[93],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":6,"dc":[[33,1],[36,1],[55,1],[56,1],[58,1],[65,4]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"d":{"df":10,"dc":[[33,1],[55,2],[56,2],[84,2],[85,3],[88,2],[94,1],[96,1],[106,1],[107,1]]}},{"d":{"df":2,"dc":[[55,1],[61,2]]}},{"d":{"df":1,"dc":[[56,1]]}},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,116],"v":[{"k":[105,101,97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[31,1],[63,1]]}}]}]},{"d":{"df":3,"dc":[[69,1],[96,1],[106,1]]},"k":[100],"v":[{"d":{"df":2,"dc":[[68,1],[105,2]]}}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[99,98],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[63,2]]}},{"d":{"df":2,"dc":[[63,1],[65,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[116,101,112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":5,"dc":[[32,1],[56,1],[85,1],[88,1],[94,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[61,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[66,1]]}},{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[67,1]]}}]}]}]}]}]}]},{"k":[99,108,109],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]},{"k":[100],"v":[{"d":{"df":2,"dc":[[38,2],[59,1]]}}]}]}]}]}]}]},{"d":{"df":5,"dc":[[33,3],[35,2],[55,1],[58,2],[94,1]]},"k":[101,105,98],"v":[{"k":[100],"v":[{"d":{"df":11,"dc":[[32,1],[38,2],[56,2],[61,2],[67,1],[69,2],[94,1],[97,1],[99,1],[104,1],[105,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[33,2]]}}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[35,3]]}}]}]}]}]},{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[101,99],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105,121],"v":[{"k":[101,99],"v":[{"k":[115],"v":[{"d":{"df":13,"dc":[[32,1],[38,1],[63,1],[66,1],[67,1],[85,1],[95,1],[97,1],[98,1],[100,1],[101,1],[105,1],[106,4]]},"k":[46,58,41,44],"v":[{"d":{"df":4,"dc":[[32,1],[34,2],[98,1],[105,1]]}},{"d":{"df":4,"dc":[[34,1],[58,1],[71,1],[85,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":3,"dc":[[56,1],[98,1],[106,1]]}}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[85,1],[99,1],[101,1]]}}]}]}]},{"d":{"df":6,"dc":[[56,2],[63,1],[84,1],[85,3],[88,1],[94,2]]},"k":[44,65292,46,58,39],"v":[{"d":{"df":2,"dc":[[56,3],[98,1]]}},{"d":{"df":1,"dc":[[64,1]]}},{"d":{"df":4,"dc":[[84,1],[95,1],[98,1],[106,1]]}},{"d":{"df":1,"dc":[[85,1]]}},{"k":[115],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]},{"k":[104],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]},{"k":[101,97,111],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"d":{"df":7,"dc":[[0,1],[23,4],[40,1],[56,1],[61,1],[63,7],[65,1]]},"k":[100],"v":[{"d":{"df":4,"dc":[[31,1],[36,1],[63,1],[100,1]]}}]},{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[115],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"k":[119],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]}]}]}]}]},{"k":[110,100,109,114,111,118,108,99,117,112,103,115,105],"v":[{"k":[116,115,102,118,99,100,110],"v":[{"k":[101,97,114,105],"v":[{"k":[110,120],"v":[{"k":[116],"v":[{"d":{"df":7,"dc":[[30,2],[33,1],[34,2],[59,5],[63,1],[75,4],[88,1]]},"k":[58,46,125,44],"v":[{"d":{"df":2,"dc":[[0,1],[94,1]]}},{"d":{"df":3,"dc":[[32,1],[33,1],[63,1]]}},{"k":[96],"v":[{"d":{"df":1,"dc":[[75,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[101,115,108,105],"v":[{"k":[114,100],"v":[{"d":{"df":2,"dc":[[0,1],[33,11]]},"k":[44,115,46,40],"v":[{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":1,"dc":[[33,1]]}},{"k":[96],"v":[{"k":[39],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[33,1],[35,1],[56,1],[69,1]]}}]},{"d":{"df":5,"dc":[[31,1],[38,1],[55,1],[61,1],[63,1]]}},{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[58],"v":[{"d":{"df":3,"dc":[[36,1],[53,1],[83,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]},{"k":[111,105,97],"v":[{"k":[108,118],"v":[{"d":{"df":3,"dc":[[34,1],[63,1],[96,1]]},"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]},{"k":[98],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[57,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[102,2]]},"k":[46,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[115,99],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[63,2],[104,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[110],"v":[{"k":[117],"v":[{"k":[111,101],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":3,"dc":[[38,9],[94,2],[104,1]]},"k":[108,63],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]},{"d":{"df":1,"dc":[[88,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[111,105,116,117],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[0,1],[35,1],[65,1],[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[108],"v":[{"k":[111],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[40],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[112,40],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[110,115],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,100],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116,99],"v":[{"d":{"df":3,"dc":[[63,1],[69,1],[106,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[121],"v":[{"d":{"df":2,"dc":[[55,1],[69,2]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[105,97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[34,1],[107,1]]}}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[59,1],[65,2],[75,1],[81,2]]},"k":[114],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]},{"k":[109,108],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]},{"k":[105,111,108,117],"v":[{"k":[103,110,100],"v":[{"d":{"df":8,"dc":[[32,5],[35,1],[36,2],[55,4],[56,1],[62,2],[94,2],[95,1]]},"k":[117,46,58,115],"v":[{"k":[114],"v":[{"k":[97,101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":10,"dc":[[0,2],[28,1],[30,5],[38,3],[56,3],[63,5],[65,1],[85,2],[90,1],[94,1]]},"k":[115,44],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":2,"dc":[[59,1],[63,1]]}}]},{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]}]},{"d":{"df":3,"dc":[[56,4],[69,1],[95,1]]},"k":[100],"v":[{"d":{"df":3,"dc":[[55,2],[63,2],[85,1]]}}]}]}]},{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":2,"dc":[[55,16],[62,16]]}},{"d":{"df":3,"dc":[[56,1],[58,1],[97,1]]},"k":[34,58],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":1,"dc":[[56,4]]}}]}]},{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[109],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[110,111],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[66,1],[104,1]]}}]},{"k":[110],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]},{"k":[101,105],"v":[{"k":[110,114,121],"v":[{"k":[105,116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116,99],"v":[{"d":{"df":2,"dc":[[28,1],[56,1]]},"k":[108],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[84,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[36,2]]}}]}]}]}]},{"k":[116,115],"v":[{"d":{"df":2,"dc":[[55,2],[61,1]]},"k":[101,105,115,116],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[55,4],[61,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"d":{"df":1,"dc":[[61,1]]}},{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,1],[68,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[100,1]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[105,101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[55,1],[56,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[105,117],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,3]]},"k":[115,97],"v":[{"d":{"df":1,"dc":[[67,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[59,91],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[93],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[56,1],[66,2],[92,1],[104,1]]},"k":[105,101,115],"v":[{"k":[111,110],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[63,1],[92,1],[104,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[104,1]]}}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[88,1]]}}]},{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]},{"k":[101,105],"v":[{"d":{"df":14,"dc":[[0,1],[23,1],[26,1],[28,2],[31,2],[35,2],[36,1],[37,9],[61,7],[63,4],[65,3],[84,1],[88,1],[103,2]]},"k":[46,34,44,65292,45,96],"v":[{"d":{"df":5,"dc":[[0,1],[28,1],[37,1],[63,3],[65,1]]}},{"d":{"df":1,"dc":[[28,1]]}},{"d":{"df":2,"dc":[[37,1],[65,1]]}},{"k":[35299],"v":[{"k":[21387],"v":[{"k":[21518],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]},{"k":[112,109,98,101,102],"v":[{"k":[108,111,97,114],"v":[{"k":[101,105,121],"v":[{"k":[116,120],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[0,1],[30,1],[56,1],[63,2],[85,1]]},"k":[100,108],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[58,1]]}}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,3]]}}]},{"k":[101,99,97],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100,46],"v":[{"d":{"df":4,"dc":[[38,1],[59,1],[65,2],[69,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"d":{"df":1,"dc":[[101,1]]}}]},{"k":[110,115],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":10,"dc":[[28,2],[35,8],[36,1],[37,2],[38,7],[42,1],[56,1],[61,3],[63,2],[65,2]]},"k":[115,111,116,58,41,93,46,44,96,65292],"v":[{"d":{"df":8,"dc":[[28,7],[36,1],[37,2],[38,3],[56,1],[59,1],[63,1],[65,1]]},"k":[44,46,58],"v":[{"d":{"df":2,"dc":[[28,2],[63,2]]}},{"d":{"df":3,"dc":[[36,1],[37,1],[63,1]]}},{"d":{"df":1,"dc":[[65,2]]}}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,4],[51,4]]},"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[36,1]]}},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118,103,116,100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":3,"dc":[[36,1],[38,1],[65,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[38,1]]}},{"d":{"df":2,"dc":[[56,1],[61,1]]}},{"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[37324],"v":[{"k":[38754],"v":[{"k":[26377],"v":[{"k":[33509],"v":[{"k":[24178],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]}]}]}]},{"k":[114,116],"v":[{"k":[105,101,97],"v":[{"k":[115,110],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[55,2],[63,1],[66,1],[106,1]]},"k":[44,46,115],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":3,"dc":[[55,5],[63,1],[106,1]]}},{"d":{"df":2,"dc":[[85,1],[101,1]]}}]}]}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[68,1],[98,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":9,"dc":[[55,1],[66,1],[68,1],[99,2],[102,1],[103,1],[104,2],[106,1],[107,1]]},"k":[100],"v":[{"d":{"df":9,"dc":[[55,2],[69,3],[90,1],[92,1],[95,1],[96,1],[98,2],[101,1],[106,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]},{"k":[98,116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]},{"k":[105,44],"v":[{"k":[98],"v":[{"k":[108,105],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[61,1],[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[101],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]},{"k":[117,97,111,101,105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116,99],"v":[{"k":[121],"v":[{"d":{"df":3,"dc":[[23,1],[57,1],[63,3]]}}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]},{"k":[110,100],"v":[{"d":{"df":9,"dc":[[29,1],[33,1],[36,1],[38,5],[55,3],[56,3],[63,2],[69,2],[105,1]]},"k":[46,108,106],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"k":[121],"v":[{"d":{"df":6,"dc":[[35,1],[56,1],[57,1],[63,2],[96,1],[103,1]]}}]},{"k":[115],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[37,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[105,3]]}}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101,97,105],"v":[{"d":{"df":4,"dc":[[28,2],[59,1],[63,2],[103,1]]},"k":[44,100],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":2,"dc":[[63,1],[99,1]]}}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}},{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[89,1]]}}]}]}]}]},{"k":[101,114,110],"v":[{"d":{"df":3,"dc":[[28,1],[63,2],[65,1]]}},{"k":[101],"v":[{"k":[99,115,108],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[108,110],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":10,"dc":[[34,2],[35,3],[63,1],[65,1],[69,1],[84,1],[85,3],[94,1],[95,1],[96,1]]}}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[107,3]]},"k":[40],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[107,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[107,2]]}},{"d":{"df":1,"dc":[[107,2]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[34,1],[63,3],[92,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114,100,112,108],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":9,"dc":[[28,1],[32,2],[56,6],[61,4],[65,1],[85,1],[87,1],[88,1],[94,5]]},"k":[115,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":1,"dc":[[56,2]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[63,2],[69,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[30,1],[56,1],[61,1]]}}]}]},{"k":[111,117,108],"v":[{"k":[114,110],"v":[{"d":{"df":17,"dc":[[34,3],[35,1],[36,6],[38,1],[59,2],[63,5],[66,1],[67,1],[69,23],[85,3],[90,2],[93,1],[94,1],[99,2],[100,2],[101,2],[103,1]]},"k":[115,58,44,34,40,46],"v":[{"d":{"df":9,"dc":[[38,1],[63,2],[65,2],[68,2],[69,9],[98,1],[100,1],[103,1],[107,1]]},"k":[44,116,46,59],"v":[{"d":{"df":4,"dc":[[34,1],[36,1],[63,4],[69,1]]}},{"k":[111],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[36,3],[53,3]]}}]}]}]}]},{"d":{"df":4,"dc":[[63,1],[68,1],[69,1],[101,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":19,"dc":[[34,1],[35,1],[36,15],[38,1],[51,1],[52,1],[53,15],[54,1],[59,14],[65,2],[75,14],[81,2],[83,2],[85,1],[88,1],[90,1],[110,1],[114,1],[116,1]]}},{"d":{"df":6,"dc":[[36,1],[63,2],[65,1],[88,2],[90,1],[106,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[96],"v":[{"k":[39],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[101,1],[102,1]]}}]},{"k":[58],"v":[{"d":{"df":1,"dc":[[56,2]]}}]}]},{"k":[109],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[56,17],[59,1],[85,4],[101,1]]},"k":[46,44,40,115,59,41],"v":[{"d":{"df":4,"dc":[[35,1],[56,1],[69,1],[84,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"k":[114,96],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,4]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[99,98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[85,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[38,1],[107,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,7],[64,7]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]}]}]},{"k":[108,110,114],"v":[{"k":[100],"v":[{"d":{"df":4,"dc":[[35,2],[63,1],[95,1],[96,2]]}}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[56,2]]},"k":[58,101],"v":[{"d":{"df":2,"dc":[[56,5],[64,5]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[63,1],[69,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[97,111,101,105,114,117],"v":[{"k":[114,110],"v":[{"k":[115,116,97],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[45],"v":[{"k":[56],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":48,"dc":[[0,4],[28,3],[30,11],[31,6],[32,1],[33,12],[34,5],[35,4],[36,3],[38,3],[42,1],[45,3],[53,3],[55,1],[56,4],[58,3],[59,1],[61,3],[63,13],[65,2],[66,13],[67,6],[68,11],[69,7],[81,1],[84,3],[85,7],[86,2],[87,1],[88,6],[89,2],[90,3],[92,3],[93,3],[94,7],[95,8],[96,9],[97,2],[98,12],[99,9],[100,10],[101,10],[102,11],[103,8],[104,12],[105,8],[106,15],[107,10]]},"k":[12290,115,34,44,46,39,93,58,41,63,65289,65288,60,40],"v":[{"d":{"df":1,"dc":[[0,1]]}},{"d":{"df":17,"dc":[[28,3],[31,2],[33,1],[34,1],[35,3],[38,1],[56,8],[59,1],[61,1],[63,9],[65,1],[69,1],[95,1],[96,1],[98,1],[104,1],[105,1]]},"k":[44,46,34,93],"v":[{"d":{"df":7,"dc":[[28,1],[30,1],[34,1],[35,1],[38,1],[63,4],[65,1]]}},{"d":{"df":7,"dc":[[28,1],[33,1],[56,1],[63,3],[98,1],[99,1],[104,1]]}},{"d":{"df":1,"dc":[[29,1]]}},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[29,1]]},"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]},{"d":{"df":22,"dc":[[30,2],[34,1],[38,1],[56,2],[63,1],[68,1],[84,1],[85,3],[90,2],[92,3],[94,1],[96,2],[97,2],[98,2],[99,1],[100,2],[101,1],[102,1],[103,1],[104,1],[105,1],[107,1]]}},{"d":{"df":28,"dc":[[30,2],[31,1],[32,1],[33,1],[34,3],[35,1],[36,1],[56,4],[58,1],[59,1],[63,1],[68,3],[69,2],[84,1],[88,1],[92,1],[93,2],[94,1],[95,1],[96,1],[97,1],[98,2],[99,2],[100,3],[102,4],[104,4],[105,1],[106,2]]},"k":[111,115],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[101,39],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[99,109],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,6],[51,6]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[111,117],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]}}]}]}]}]}]},{"k":[112],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[123,47],"v":[{"d":{"df":4,"dc":[[35,4],[51,4],[65,1],[81,1]]}},{"k":[42],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"d":{"df":1,"dc":[[96,1]]}}]},{"k":[40],"v":[{"k":[104,101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111,104],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[121],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[93,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[56,1],[85,1],[95,1],[102,1]]}},{"d":{"df":1,"dc":[[68,1]]},"k":[58,46],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[105,1]]}}]},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[97,1]]},"k":[21448],"v":[{"k":[34987],"v":[{"k":[21483],"v":[{"k":[20570],"v":[{"k":[34584],"v":[{"k":[34523],"v":[{"k":[32593],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[36866],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[12290],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[28857],"v":[{"k":[24320],"v":[{"k":[22987],"v":[{"k":[30340],"v":[{"k":[36724],"v":[{"k":[19978],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[30340],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22810],"v":[{"k":[20803],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[21644],"v":[{"k":[35282],"v":[{"k":[24230],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[26159],"v":[{"k":[26080],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[97,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[47],"v":[{"k":[98],"v":[{"k":[62],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[102,2]]}}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46,44,105],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[59,1]]}},{"k":[115,122],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]}]}]}]},{"k":[103,110],"v":[{"k":[101,105],"v":[{"d":{"df":16,"dc":[[30,1],[32,4],[33,5],[36,1],[56,3],[58,1],[61,1],[65,4],[68,1],[84,1],[85,2],[88,2],[89,1],[90,2],[102,1],[103,1]]},"k":[100,115,93,46],"v":[{"d":{"df":7,"dc":[[30,1],[56,1],[65,3],[68,1],[88,1],[90,1],[102,1]]},"k":[46,44,58],"v":[{"d":{"df":2,"dc":[[33,1],[65,2]]}},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,3]]}}]},{"d":{"df":4,"dc":[[58,1],[63,2],[65,4],[92,1]]},"k":[46,41,58],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":1,"dc":[[65,2]]}}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":1,"dc":[[88,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[34,1],[35,1],[84,1]]}}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[36,1],[56,2]]},"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[111,105,115],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":11,"dc":[[26,1],[28,1],[31,1],[38,1],[55,1],[58,1],[63,2],[68,1],[69,1],[96,1],[103,1]]}}]}]},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":7,"dc":[[31,2],[34,1],[69,2],[84,1],[89,1],[103,1],[105,1]]},"k":[115,46],"v":[{"d":{"df":1,"dc":[[69,1]]}},{"d":{"df":1,"dc":[[107,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":12,"dc":[[28,1],[32,1],[36,1],[37,1],[38,1],[56,4],[58,1],[65,2],[69,1],[85,1],[94,1],[101,1]]},"k":[58,101,105],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[66,1]]}}]}]}]}]}]},{"k":[108],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[58,46],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[43],"v":[{"k":[47],"v":[{"k":[108],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[57,1]]}},{"k":[91],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[12289],"v":[{"k":[91],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[115,114,116,108,109],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":3,"dc":[[35,1],[38,1],[63,2]]},"k":[105,122,101,97],"v":[{"k":[122],"v":[{"k":[97,101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[26,2],[36,1],[56,1],[63,2]]},"k":[93,46],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[26,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]},{"d":{"df":3,"dc":[[30,1],[36,2],[61,2]]},"k":[100],"v":[{"d":{"df":5,"dc":[[32,1],[85,1],[88,1],[94,1],[95,1]]}}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[114],"v":[{"d":{"df":2,"dc":[[69,1],[105,1]]}}]},{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"k":[114,118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[28,1],[35,1],[37,1],[61,1]]},"k":[108,105],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[35,5],[51,5]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[61,2],[104,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]}]}]}]}]},{"k":[114,110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":7,"dc":[[29,1],[32,1],[36,1],[56,1],[65,1],[69,1],[101,2]]}}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[59,3]]},"k":[58,46],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[55,3],[62,3]]}},{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[99],"v":[{"k":[117,108],"v":[{"k":[109,108],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[44,115],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[61,5]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[61,5]]}},{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"k":[115,118],"v":[{"d":{"df":6,"dc":[[33,1],[48,1],[59,1],[65,1],[75,3],[81,1]]},"k":[46,41],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[58],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"d":{"df":1,"dc":[[64,3]]}}]},{"d":{"df":1,"dc":[[34,2]]},"k":[93,58,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[34,3]]}}]},{"d":{"df":1,"dc":[[34,1]]}},{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[117],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]},{"k":[50],"v":[{"k":[46],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[55],"v":[{"k":[45],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[55],"v":[{"k":[45],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[52],"v":[{"k":[54],"v":[{"k":[45],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[48],"v":[{"k":[54],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[57],"v":[{"k":[55],"v":[{"k":[45],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[48],"v":[{"k":[54],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[48],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[44],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[48],"v":[{"k":[54],"v":[{"k":[49],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[48],"v":[{"k":[55],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[49],"v":[{"k":[53],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[48],"v":[{"k":[46],"v":[{"k":[48],"v":[{"k":[54],"v":[{"k":[44],"v":[{"k":[48],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[54],"v":[{"k":[57],"v":[{"k":[45],"v":[{"k":[48],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[54],"v":[{"k":[44],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[48],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[44],"v":[{"k":[53],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[55],"v":[{"k":[56],"v":[{"d":{"df":2,"dc":[[94,2],[119,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"k":[48],"v":[{"k":[55],"v":[{"k":[56],"v":[{"k":[44],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[53],"v":[{"k":[54],"v":[{"k":[56],"v":[{"k":[44],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[53],"v":[{"k":[54],"v":[{"k":[56],"v":[{"k":[44],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[55],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[44],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[108],"v":[{"k":[49],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[53],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[108],"v":[{"k":[49],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[54],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[56],"v":[{"k":[99],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[45],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[49],"v":[{"k":[45],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[44],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[52],"v":[{"d":{"df":2,"dc":[[94,2],[119,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[50],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[53],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[44],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[55],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[122],"v":[{"k":[34,39],"v":[{"k":[47],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117,105,58],"v":[{"k":[105,101,97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[0,1],[23,1]]}},{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]},{"k":[115,114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[23,1],[29,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[23,3]]}}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[110,115,108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[97,121],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[32,1],[67,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[102,1]]},"k":[34,39],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":1,"dc":[[32,3]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[45],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[67,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[103,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":1,"dc":[[56,7]]}}]},{"k":[100,101,105,96,60,110,121,99,115,116,97,39,111,119,114,109,108,112,113,122,118,46,63,103,102,98,50,62,61,33,123,91,49,117,104,48,51,25968,31995,120],"v":[{"k":[105,97,116,111,96],"v":[{"k":[115],"v":[{"k":[116,112],"v":[{"k":[47,96,97],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[44,65292],"v":[{"d":{"df":1,"dc":[[0,1]]}},{"k":[28857],"v":[{"k":[20987],"v":[{"k":[24182],"v":[{"k":[20445],"v":[{"k":[23384],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[26,1],[43,1]]}},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[59,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97,101],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[115,96,105,122],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105,96,46],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[55,5]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[56,7],[64,3]]},"k":[58,46,12290,65292],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,4]]}},{"d":{"df":1,"dc":[[64,2]]}},{"k":[24182],"v":[{"k":[24102],"v":[{"k":[26377],"v":[{"k":[32852],"v":[{"k":[21160],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[115,100],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96,104],"v":[{"d":{"df":2,"dc":[[56,2],[64,3]]},"k":[59,46],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[56,4],[61,1],[85,1],[88,1],[116,2],[119,1]]},"k":[46,44,65292],"v":[{"d":{"df":2,"dc":[[61,1],[88,3]]}},{"d":{"df":1,"dc":[[94,1]]}},{"k":[33258,25152],"v":[{"k":[21160],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]},{"k":[110,116],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[46,96],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[55,3],[62,2]]},"k":[65289],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[26085],"v":[{"k":[26399],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[119],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[119,2]]},"k":[39],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]},{"k":[99,120,110,102,109],"v":[{"k":[104,45],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[46,111,96,47],"v":[{"k":[106,105,116,117,102,110],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":5,"dc":[[0,1],[7,2],[26,1],[43,1],[73,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[48,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[112,102],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[62,1],[65,1],[81,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[109,99],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[102,103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]}]}]},{"d":{"df":5,"dc":[[31,1],[58,1],[65,1],[88,1],[116,1]]}},{"k":[115,108,109],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[98],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[118,101],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[65292],"v":[{"k":[20063],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[63,4]]}}]}]}]}]}]}]}]}]},{"k":[110,116,100],"v":[{"k":[100,99,108],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]},"k":[44,65292],"v":[{"d":{"df":1,"dc":[[0,1]]}},{"k":[20320],"v":[{"k":[20250],"v":[{"k":[30475],"v":[{"k":[21040],"v":[{"k":[19968],"v":[{"k":[29255],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[25285],"v":[{"k":[24515],"v":[{"k":[65292],"v":[{"k":[25171],"v":[{"k":[24320],"v":[{"k":[25511],"v":[{"k":[21046],"v":[{"k":[21488],"v":[{"k":[30830],"v":[{"k":[35748],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[25253],"v":[{"k":[38169],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[19979],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[65292],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[27969],"v":[{"k":[20013],"v":[{"k":[25353],"v":[{"k":[34892],"v":[{"k":[25918],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[96],"v":[{"d":{"df":61,"dc":[[0,3],[7,3],[26,1],[28,4],[30,3],[31,3],[32,8],[33,4],[34,6],[35,16],[36,7],[37,24],[38,4],[42,4],[43,1],[45,3],[46,3],[47,24],[48,4],[49,8],[51,16],[52,6],[53,7],[54,4],[55,15],[56,16],[58,3],[59,8],[61,7],[62,15],[63,1],[64,16],[65,10],[71,3],[75,8],[77,1],[78,7],[81,10],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,6],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,6],[120,1]]},"k":[104,115,106,116,109,120],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"d":{"df":4,"dc":[[0,3],[7,3],[33,3],[48,3]]}}]}]}]},{"k":[104],"v":[{"d":{"df":2,"dc":[[26,1],[43,1]]},"k":[101],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]},{"k":[115],"v":[{"d":{"df":57,"dc":[[28,2],[30,1],[31,3],[32,8],[33,1],[34,6],[35,16],[36,7],[37,11],[38,4],[42,2],[45,3],[46,1],[47,11],[48,1],[49,8],[51,14],[52,6],[53,7],[54,4],[55,13],[56,16],[58,3],[59,8],[61,7],[62,13],[63,1],[64,16],[65,10],[71,3],[75,8],[77,1],[78,7],[81,10],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]},"k":[123],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[51],"v":[{"k":[45],"v":[{"k":[53],"v":[{"k":[125],"v":[{"k":[91],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"d":{"df":7,"dc":[[28,1],[42,1],[51,2],[55,2],[62,2],[94,1],[119,1]]}}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[37,15],[47,15]]}}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]},{"k":[47,100,96,61,62,112],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[62],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[118],"v":[{"k":[62],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]},{"k":[40,44],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[40],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]},{"k":[112,111,97,117],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]},{"k":[114,116],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[53,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[110,109],"v":[{"k":[96],"v":[{"k":[46,44,12290],"v":[{"d":{"df":1,"dc":[[55,2]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[22312],"v":[{"k":[22823],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[25353],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[31574],"v":[{"k":[30053],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[20687],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[23601],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[36716],"v":[{"k":[25104],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[31574],"v":[{"k":[30053],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[20005],"v":[{"k":[26684],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[22120],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[23485],"v":[{"k":[26494],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36935],"v":[{"k":[21040],"v":[{"k":[21547],"v":[{"k":[26377],"v":[{"k":[23614],"v":[{"k":[32512],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[96,100],"v":[{"d":{"df":3,"dc":[[58,2],[96,1],[113,1]]},"k":[65289],"v":[{"k":[65292],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22312],"v":[{"k":[22278],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[19981],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[108],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]},{"k":[97,58],"v":[{"k":[114,120],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[116,2]]},"k":[46],"v":[{"d":{"df":2,"dc":[[88,1],[94,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[97,108,111,117,104],"v":[{"k":[110,116],"v":[{"k":[118,100],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[28,2],[65,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[88,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]}]},{"k":[105,117],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[110,108,109],"v":[{"k":[116,102,115,118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[115],"v":[{"k":[47],"v":[{"k":[122,101],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[96,112],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[65288],"v":[{"k":[20013],"v":[{"k":[25991],"v":[{"k":[25991],"v":[{"k":[31456],"v":[{"k":[65289],"v":[{"k":[25110],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[47],"v":[{"k":[96,112],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[65288],"v":[{"k":[33521],"v":[{"k":[25991],"v":[{"k":[25991],"v":[{"k":[31456],"v":[{"k":[65289],"v":[{"k":[30446],"v":[{"k":[24405],"v":[{"k":[19979],"v":[{"k":[26032],"v":[{"k":[22686],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[37,1]]}},{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[96,46,58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,2]]}}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,4],[62,3]]}}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[61,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[96,97,108,115,104],"v":[{"d":{"df":1,"dc":[[75,1]]},"k":[44,46,12289],"v":[{"d":{"df":4,"dc":[[38,1],[59,1],[65,1],[88,1]]}},{"d":{"df":1,"dc":[[59,1]]}},{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[65,3],[81,1]]},"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[118,116,114,121,111,101,99,104,117,109],"v":[{"k":[103],"v":[{"k":[114,112,96],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[21069],"v":[{"k":[32512],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[94,2],[119,1]]}}]}]},{"k":[114,97,121,101],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[35,1],[51,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[116,99],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[47,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[84,3],[111,4],[118,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[46,96],"v":[{"k":[116,114],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[46],"v":[{"k":[63],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]},{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[92,1],[117,2]]}}]}]}]},{"k":[99],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[20026],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[96,115],"v":[{"d":{"df":2,"dc":[[94,4],[119,3]]},"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[114,116,108],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46,96,108],"v":[{"k":[100,101,104,99,98,108,109,102],"v":[{"k":[97,105,111],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[56,1],[61,1],[64,1]]}}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"k":[110,109],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,3],[64,4]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46,58],"v":[{"k":[115,102],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96,115],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"k":[111,105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97,111],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[105,111],"v":[{"k":[112],"v":[{"k":[111,96],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[102],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]},{"k":[99],"v":[{"k":[107],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,4],[81,4]]}}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[109,101],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[116,96,108],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[111],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[106],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[56,3],[85,1],[88,1],[93,1],[110,4],[116,2]]},"k":[44,46],"v":[{"d":{"df":2,"dc":[[56,1],[88,2]]}},{"d":{"df":2,"dc":[[56,1],[85,2]]}}]},{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,2],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[58,1],[61,1],[71,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[58,1],[61,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99,96,101],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[63,1],[65,2],[77,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,2],[77,1]]},"k":[46,12290],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[81,2]]}}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116,108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[59,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[58,120,96,121],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]},{"d":{"df":1,"dc":[[65,1]]}},{"k":[58],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[97,111],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99,98,111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[88,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[119],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]},{"k":[110],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[104,117],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[89,1],[120,1]]}}]}]}]}]}]}]},{"k":[114,104,121,111,101],"v":[{"k":[117,101,97],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":4,"dc":[[46,1],[62,1],[89,1],[120,1]]},"k":[46,44,65292],"v":[{"d":{"df":2,"dc":[[30,1],[96,1]]}},{"d":{"df":2,"dc":[[30,1],[88,2]]}},{"k":[21017,32780],"v":[{"k":[29983,34920],"v":[{"k":[25104],"v":[{"k":[26080],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[21542],"v":[{"k":[21017],"v":[{"k":[19981],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[22312],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[31227],"v":[{"k":[21160],"v":[{"k":[21040],"v":[{"k":[35813],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[25165],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[19981],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[21040],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23558],"v":[{"k":[20854],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[96,46],"v":[{"d":{"df":2,"dc":[[55,1],[62,2]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[112,116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[96,46],"v":[{"d":{"df":1,"dc":[[61,1]]}},{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[101],"v":[{"k":[96,100],"v":[{"d":{"df":6,"dc":[[38,1],[54,1],[85,1],[88,1],[110,1],[116,2]]},"k":[12290],"v":[{"k":[22312],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[30340],"v":[{"k":[24212],"v":[{"k":[29992],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,2]]},"k":[65292],"v":[{"k":[23545],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[26377],"v":[{"k":[22909],"v":[{"k":[22788],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,103],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[116],"v":[{"k":[98,115,96,99],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99,119],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":2,"dc":[[59,2],[65,1]]}},{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99,98,111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[116,102],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[65292],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[33021],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[26356],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114,103,110,120,108,112,117,118,96],"v":[{"k":[101,105],"v":[{"k":[97],"v":[{"k":[45,115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[114,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[46,45,96],"v":[{"k":[100,103],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[30,2],[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[40],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[47],"v":[{"k":[96],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[47],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[96,46],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,6],[75,7]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[46],"v":[{"k":[115,118],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[40,101],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[40],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[111],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[96,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65289],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[23376],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[36317],"v":[{"k":[31163],"v":[{"k":[65292],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[123,112,116,99,115,100,109,103,108,22270,20215,50,51,39,45,49,97,110,111,102,105,92,98,114,120,121,52,101,30007,22899,54,118],"v":[{"k":[116,64],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[65292],"v":[{"k":[23558],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[26367],"v":[{"k":[25442],"v":[{"k":[25104],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,91],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]},{"k":[52],"v":[{"k":[93],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]},{"k":[114,105,97],"v":[{"k":[105,111],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]},{"k":[101,110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[38,1]]},"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[23558],"v":[{"k":[19978],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[36873],"v":[{"k":[20854],"v":[{"k":[19968],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[31867],"v":[{"k":[20284],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[22411],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[94,1],[119,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]},{"k":[104,105,111,114],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,2]]},"k":[58,46,65289],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"k":[19978],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112,111],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[58,65306],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[30418],"v":[{"k":[30340],"v":[{"k":[39030],"v":[{"k":[36793],"v":[{"k":[36148],"v":[{"k":[20303],"v":[{"k":[34892],"v":[{"k":[39030],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[97,108,111,101,105],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,65292],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[21017],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[20013],"v":[{"k":[26159],"v":[{"k":[23621],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]},{"k":[118,99,101,104,116],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99,111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120,121],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]},{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114,99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]},{"k":[107],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[93,1]]}}]}]}]}]}]}]},{"k":[98,105],"v":[{"k":[108],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]},{"k":[111,105,252,97],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[100,109,117,111],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[118,117],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[58,65306,46],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[23621],"v":[{"k":[34892],"v":[{"k":[20013],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[92,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]}]},{"k":[108,114],"v":[{"k":[111],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,12289],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]},{"k":[101,105],"v":[{"k":[103,102],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99,101],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]},"k":[44,65292],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[21017],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[20013],"v":[{"k":[26159],"v":[{"k":[23621],"v":[{"k":[24038],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[102],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,2],[64,1]]}}]}]}]},{"k":[34920],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"k":[123,20215],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[12290],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26684],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26684],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[22270],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[49,37],"v":[{"k":[50],"v":[{"k":[45],"v":[{"k":[48],"v":[{"k":[53,51],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[50],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[45],"v":[{"k":[49],"v":[{"k":[50],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[96],"v":[{"k":[46,65292],"v":[{"d":{"df":1,"dc":[[85,2]]}},{"k":[34920,36825],"v":[{"k":[31034],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24847],"v":[{"k":[21619],"v":[{"k":[30528],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[65288],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[51],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]},{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]},"k":[41,65289],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[22312],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[30340],"v":[{"k":[22836],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[23614],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[54],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41,65289],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109,117,39,114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[84,1],[111,1]]}}]},{"k":[101,114],"v":[{"k":[97],"v":[{"k":[115,39],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[90,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[90,1]]}}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":1,"dc":[[112,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[97,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]},{"k":[117,97],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[108,101],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[58,65292],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"k":[22312],"v":[{"k":[23384],"v":[{"k":[20648],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]}]}]}]}]},{"k":[110,116,109],"v":[{"k":[116,104],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[58,65292],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"k":[22312],"v":[{"k":[23384],"v":[{"k":[20648],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[39,58],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[94,1]]}}]},{"k":[47],"v":[{"k":[47],"v":[{"k":[104,46,39],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[47],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[94,1]]}},{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,2],[75,1]]}}]}]}]},{"k":[111,39,97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[58,65306],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[30418],"v":[{"k":[30340],"v":[{"k":[24213],"v":[{"k":[36793],"v":[{"k":[36148],"v":[{"k":[20303],"v":[{"k":[34892],"v":[{"k":[24213],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[84,1],[111,1]]}}]},{"k":[114],"v":[{"k":[39,119,103],"v":[{"k":[96],"v":[{"k":[46,12290],"v":[{"d":{"df":1,"dc":[[85,1]]}},{"d":{"df":1,"dc":[[110,1]]}}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[85,2]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]},{"k":[105,101,111],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]},"k":[44,65292],"v":[{"d":{"df":1,"dc":[[59,1]]}},{"k":[21017],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[20013],"v":[{"k":[26159],"v":[{"k":[23621],"v":[{"k":[21491],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[40],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[40],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39,97],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,65292],"v":[{"d":{"df":1,"dc":[[85,1]]}},{"k":[24847],"v":[{"k":[21619],"v":[{"k":[30528],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[27599],"v":[{"k":[20391],"v":[{"k":[31354],"v":[{"k":[20313],"v":[{"k":[30340],"v":[{"k":[36317],"v":[{"k":[31163],"v":[{"k":[65292],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[44,65292],"v":[{"d":{"df":1,"dc":[[92,1]]}},{"k":[20998],"v":[{"k":[21035],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[22312],"v":[{"k":[24403],"v":[{"k":[21069],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[21069],"v":[{"k":[28857],"v":[{"k":[19982],"v":[{"k":[19979],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[25296],"v":[{"k":[24367],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]},{"k":[39],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]},{"k":[112,98,117,114,110],"v":[{"k":[116,97],"v":[{"k":[115,105],"v":[{"k":[46],"v":[{"k":[119,104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[48,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[88,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]},{"k":[106],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[46,44,12290,65292],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[51,1]]}},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[21487],"v":[{"k":[36873],"v":[{"k":[30340],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[96,105],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[58,120,96,121],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[58],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110,100],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]},"k":[44,12289],"v":[{"d":{"df":1,"dc":[[59,2]]}},{"k":[96],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,111,105,97],"v":[{"k":[115,103,110],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[33,2],[48,1]]}}]}]}]}]}]}]},{"k":[114,96,105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[65,2]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[96,46],"v":[{"d":{"df":2,"dc":[[59,2],[75,4]]},"k":[44,65292],"v":[{"d":{"df":1,"dc":[[59,2]]}},{"k":[19981],"v":[{"k":[33021],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[22359],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,2]]},"k":[63],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[96,46],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[110,97],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96,103],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96,103],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121,97,100],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115,46],"v":[{"k":[46],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[56],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100,99],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[123],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116,102],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105,114,112],"v":[{"k":[110],"v":[{"k":[116,115],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96,46],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"k":[115],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]},"k":[96,116,115,117],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[111],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96,99,101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96,101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101,105,97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[115,96,104,116],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]},{"k":[44,12289,65292],"v":[{"d":{"df":3,"dc":[[56,1],[59,1],[88,1]]}},{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24182],"v":[{"k":[19988],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]},"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":7,"dc":[[36,1],[56,1],[59,1],[75,1],[88,1],[96,2],[116,1]]},"k":[58,12290,65288,65292],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[81,1]]}},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[29992],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[26102],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,114,105,111],"v":[{"k":[114,100,116,103],"v":[{"k":[97,115],"v":[{"k":[109,108],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[65292],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,8],[62,8]]}}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96,45],"v":[{"d":{"df":3,"dc":[[65,1],[75,1],[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,4]]}}]},{"k":[116,98],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]},{"k":[101,111],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"k":[118],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[96,116,115,117],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[111],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96,99,101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96,101],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96,58],"v":[{"d":{"df":1,"dc":[[59,2]]},"k":[44,12289],"v":[{"d":{"df":2,"dc":[[59,1],[65,1]]}},{"k":[96],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[35,3],[51,2]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]},{"k":[105,101,52,53,97],"v":[{"k":[110,115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[38,3],[54,1]]},"k":[12290,46],"v":[{"k":[26368],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[91],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,3]]},"k":[41,44,65289],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[65,2]]}},{"k":[21319],"v":[{"k":[32423],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[96,46],"v":[{"d":{"df":2,"dc":[[65,7],[81,8]]},"k":[41,44,46,58,65289],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"d":{"df":1,"dc":[[65,4]]}},{"d":{"df":1,"dc":[[65,4]]}},{"d":{"df":1,"dc":[[65,1]]}},{"k":[30340],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[12290],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":3,"dc":[[88,2],[95,1],[115,2]]},"k":[58],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]},{"k":[46],"v":[{"k":[46],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]},{"k":[99],"v":[{"k":[61],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]},{"k":[114,97],"v":[{"k":[97,105],"v":[{"k":[112],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[96,105],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"k":[99],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,1]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[96,105,114,117,97,111],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96,58],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[109],"v":[{"k":[100,116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110,100],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[96,58],"v":[{"d":{"df":2,"dc":[[55,3],[62,2]]},"k":[47],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,3],[62,1]]}}]}]}]}]},{"k":[96,58],"v":[{"d":{"df":2,"dc":[[55,3],[62,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,108],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[108],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[57,1],[95,1]]},"k":[46,12290,65292],"v":[{"d":{"df":2,"dc":[[95,1],[96,1]]}},{"d":{"df":2,"dc":[[113,1],[115,2]]}},{"k":[32780],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]},{"k":[110,114],"v":[{"k":[116],"v":[{"k":[115,119,102],"v":[{"k":[116,105],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]},{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,2]]}}]}]}]}]}]}]}]}]}]},{"k":[109,99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[63,2],[77,1]]},"k":[65292],"v":[{"k":[32467],"v":[{"k":[21512],"v":[{"k":[24050],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[23500],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[20986],"v":[{"k":[37266],"v":[{"k":[30446],"v":[{"k":[32780],"v":[{"k":[22810],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[45],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,97,108],"v":[{"k":[120,114],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[59,2]]},"k":[99,119,114,115,116],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[59,3],[65,1],[88,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,3],[88,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[114,99],"v":[{"k":[96,103,99,119,109],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[59,1]]}}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[85,2],[110,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[85,1],[110,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[120],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[75,2]]},"k":[44,46,58],"v":[{"d":{"df":1,"dc":[[59,3]]}},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[46,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[48,96],"v":[{"k":[49,48],"v":[{"k":[49],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[96],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]},{"d":{"df":1,"dc":[[62,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]},{"k":[96,61],"v":[{"k":[40,44,65288],"v":[{"k":[96],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[96],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[62],"v":[{"k":[61],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[60],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[60],"v":[{"k":[61],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[61],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[113],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[33],"v":[{"k":[61],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[60],"v":[{"k":[62],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"k":[65288],"v":[{"k":[23567],"v":[{"k":[25324],"v":[{"k":[21495],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[31526],"v":[{"k":[21495],"v":[{"k":[25110],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[21035],"v":[{"k":[21517],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[36215],"v":[{"k":[26469],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[39318],"v":[{"k":[20808],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[22320],"v":[{"k":[33021],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[20063],"v":[{"k":[26377],"v":[{"k":[20123],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[29305],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[40,44],"v":[{"k":[96],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[40,44],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[113],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[61],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[40,46],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[115,121,125],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[124],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[121],"v":[{"k":[121],"v":[{"k":[125],"v":[{"k":[45],"v":[{"k":[123],"v":[{"k":[109],"v":[{"k":[109],"v":[{"k":[125],"v":[{"k":[45],"v":[{"k":[123],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[125],"v":[{"k":[96],"v":[{"k":[41,65289],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20026],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[31890],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[90,1],[114,1]]}}]}]},{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[93],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[50,96,49],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[96],"v":[{"k":[41,65289],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,3]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,2]]}}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[46,12290],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[100,115],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[96,101],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]},{"k":[100],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,111,105],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[44,12290],"v":[{"d":{"df":1,"dc":[[59,2]]}},{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"d":{"df":1,"dc":[[62,3]]},"k":[12290,46],"v":[{"d":{"df":1,"dc":[[62,2]]}},{"d":{"df":1,"dc":[[88,1]]}}]}]},{"k":[96,51],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[46,12290],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[25454],"v":[{"k":[38598],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,3]]},"k":[65288],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[26159,20013],"v":[{"k":[19987],"v":[{"k":[38376],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[31649],"v":[{"k":[29702],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[22909],"v":[{"k":[22788],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[96],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[20013,12290],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[36825],"v":[{"k":[20214],"v":[{"k":[20107],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[58,97],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}},{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[96],"v":[{"d":{"df":4,"dc":[[88,2],[94,1],[110,1],[116,3]]}}]}]}]}]}]}]},{"d":{"df":29,"dc":[[0,1],[7,1],[28,1],[31,1],[33,2],[36,1],[37,1],[42,1],[45,2],[47,1],[48,2],[50,6],[53,1],[55,1],[56,1],[59,2],[62,1],[64,1],[65,1],[75,2],[81,1],[84,3],[85,1],[88,2],[92,1],[110,1],[111,3],[116,2],[117,1]]},"k":[59,61],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}},{"d":{"df":2,"dc":[[55,1],[73,1]]}}]},{"d":{"df":2,"dc":[[68,1],[80,1]]},"k":[101,117,97,121,111,114,108,39,105,246,58,103,44,46],"v":[{"d":{"df":38,"dc":[[0,1],[23,3],[30,5],[31,4],[32,2],[33,2],[34,4],[35,8],[36,12],[38,6],[55,26],[56,13],[57,1],[58,1],[59,28],[61,11],[63,15],[65,6],[66,4],[67,2],[69,4],[84,5],[85,4],[88,7],[93,1],[94,3],[95,4],[96,5],[98,1],[99,3],[100,1],[101,5],[102,1],[103,1],[104,2],[105,1],[106,4],[107,2]]},"k":[102,99,116,101,103,108,104,115,58,96,105,97],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":11,"dc":[[0,1],[23,1],[33,2],[35,1],[36,1],[37,1],[55,5],[58,1],[61,1],[65,1],[69,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":2,"dc":[[28,1],[63,1]]}}]}]}]}]},{"k":[97,111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":12,"dc":[[31,3],[33,1],[36,1],[55,1],[56,1],[65,2],[66,1],[68,1],[69,1],[88,1],[101,1],[102,1]]}}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,2],[66,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[119,116],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":22,"dc":[[31,2],[32,1],[58,1],[63,3],[65,1],[66,1],[68,1],[69,2],[85,3],[88,1],[90,1],[92,2],[98,2],[99,1],[100,1],[101,3],[102,4],[103,2],[104,1],[105,1],[106,1],[107,5]]}}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":11,"dc":[[31,2],[63,5],[65,1],[66,1],[69,2],[89,1],[101,3],[102,1],[105,1],[106,1],[107,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]},{"k":[110],"v":[{"d":{"df":5,"dc":[[31,1],[55,1],[61,2],[63,4],[65,3]]}}]},{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[85,1],[95,1]]},"k":[110],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[31,1],[33,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"d":{"df":5,"dc":[[36,1],[59,1],[65,8],[66,1],[103,1]]},"k":[58,46,41,44],"v":[{"d":{"df":2,"dc":[[32,1],[56,1]]}},{"d":{"df":3,"dc":[[55,1],[56,1],[61,1]]}},{"d":{"df":1,"dc":[[106,2]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[55,1],[66,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]},{"d":{"df":6,"dc":[[66,1],[68,1],[100,1],[103,1],[104,2],[105,1]]}}]}]}]},{"k":[97,105],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[35,1],[61,1],[69,1]]},"k":[46,115],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,4]]},"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[105,116],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[55,3]]},"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[94,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[98,1],[107,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]},{"d":{"df":2,"dc":[[55,2],[56,1]]}},{"k":[39],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[110,106],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[69,1],[105,1]]}}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]},{"k":[116,103,110,105,98,100,115],"v":[{"d":{"df":23,"dc":[[0,1],[23,1],[28,1],[35,1],[36,3],[38,1],[55,7],[56,3],[58,2],[59,2],[61,1],[63,7],[65,6],[68,2],[69,1],[84,2],[94,1],[97,1],[100,1],[101,1],[104,2],[106,1],[107,2]]}},{"d":{"df":3,"dc":[[23,2],[40,2],[71,1]]},"k":[46,44,12290,65292,115],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[23,2]]}},{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]},{"k":[25110,32780],"v":[{"k":[32773],"v":[{"k":[20320],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24819],"v":[{"k":[35831],"v":[{"k":[27714],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159],"v":[{"k":[19981],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[26576],"v":[{"k":[31181],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23581],"v":[{"k":[35797],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[58,1]]}}]},{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[28,3],[65,2]]},"k":[114,46],"v":[{"d":{"df":1,"dc":[[28,1]]}},{"d":{"df":1,"dc":[[28,2]]}}]}]}]}]},{"k":[108],"v":[{"k":[100,116],"v":[{"d":{"df":1,"dc":[[88,1]]},"k":[115,101],"v":[{"d":{"df":1,"dc":[[28,1]]}},{"k":[114],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[45],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":6,"dc":[[36,1],[37,1],[38,2],[55,5],[65,2],[94,3]]}}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[36,1],[103,7]]},"k":[46,115],"v":[{"d":{"df":2,"dc":[[56,1],[103,1]]}},{"d":{"df":1,"dc":[[103,1]]},"k":[46,39],"v":[{"d":{"df":1,"dc":[[103,2]]}},{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[115,46],"v":[{"d":{"df":1,"dc":[[66,1]]}},{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]},{"k":[114,115,99,105,110],"v":[{"d":{"df":21,"dc":[[0,1],[28,1],[35,1],[38,1],[63,1],[64,1],[65,1],[68,1],[84,5],[85,13],[86,2],[87,1],[93,2],[95,1],[96,1],[98,15],[99,10],[101,6],[102,3],[105,11],[106,3]]},"k":[99,115,44,103,47,45,46,58],"v":[{"k":[104,97],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[28,1],[42,1],[65,1],[81,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[28,3],[42,3]]}}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[69,1],[85,4],[99,1],[101,2]]},"k":[101,44,46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":2,"dc":[[85,1],[101,2]]}}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[97],"v":[{"k":[112],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[85,1],[110,1]]}}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[85,2],[101,1]]}},{"d":{"df":1,"dc":[[85,1]]}}]},{"k":[101,105],"v":[{"d":{"df":3,"dc":[[35,1],[102,1],[106,1]]},"k":[100],"v":[{"d":{"df":14,"dc":[[0,1],[28,1],[30,1],[31,1],[35,1],[38,2],[55,1],[56,1],[59,1],[61,6],[63,1],[65,1],[69,1],[84,1]]}}]},{"k":[99],"v":[{"d":{"df":19,"dc":[[30,2],[37,1],[55,1],[56,1],[59,3],[61,3],[85,2],[88,1],[89,1],[94,2],[95,2],[96,1],[97,1],[98,1],[99,1],[100,1],[101,1],[104,1],[105,1]]},"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[94,1]]},"k":[103,119],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":5,"dc":[[34,2],[59,3],[63,1],[85,2],[90,1]]},"k":[44,99,46,115],"v":[{"d":{"df":2,"dc":[[34,1],[59,1]]}},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":6,"dc":[[34,1],[36,1],[52,1],[53,1],[59,14],[75,14]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[59,1],[69,1]]}},{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[45],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[117],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"d":{"df":31,"dc":[[23,1],[28,1],[30,8],[34,2],[35,5],[36,7],[38,1],[55,13],[56,15],[57,1],[58,6],[59,16],[61,5],[63,15],[65,8],[68,1],[69,3],[84,2],[85,6],[88,6],[90,1],[92,1],[94,3],[95,2],[96,1],[97,2],[99,1],[101,1],[103,1],[104,1],[105,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[88,1]]}}]},{"k":[116,100,111,120,117,114,97,121],"v":[{"k":[116,104],"v":[{"k":[111,108],"v":[{"k":[109],"v":[{"d":{"df":6,"dc":[[26,1],[32,1],[34,1],[59,2],[65,1],[106,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":7,"dc":[[34,1],[36,1],[52,1],[53,1],[56,1],[64,1],[83,1]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"d":{"df":12,"dc":[[31,1],[32,1],[35,1],[55,3],[56,1],[63,1],[65,1],[66,1],[94,1],[95,1],[100,1],[105,1]]}}]},{"k":[121],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]},{"k":[107],"v":[{"k":[109,115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]},{"d":{"df":3,"dc":[[59,5],[63,1],[75,3]]},"k":[44,112,46,101,65289],"v":[{"d":{"df":2,"dc":[[35,1],[59,1]]}},{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[55,3],[62,2]]}}]}]}]},{"d":{"df":1,"dc":[[59,3]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[56,2],[63,1]]},"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[59,2],[63,1],[75,1],[85,1]]},"k":[44,119,99,114,58],"v":[{"d":{"df":1,"dc":[[59,2]]}},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":4,"dc":[[59,1],[65,1],[75,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,7],[75,7]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,7],[75,7]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":4,"dc":[[59,2],[65,1],[75,2],[81,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[59,9],[75,9]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[59,2],[75,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]},{"k":[105,111,101],"v":[{"k":[110,103],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[28,1],[63,2]]},"k":[115],"v":[{"d":{"df":2,"dc":[[63,1],[65,2]]}}]}]},{"k":[104],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[119,117],"v":[{"k":[115,110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":3,"dc":[[31,2],[33,1],[65,1]]},"k":[45],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[31,1],[57,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,3],[64,3]]}},{"d":{"df":2,"dc":[[56,3],[64,3]]},"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[63,1],[65,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[105,115],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[37,1],[65,3]]}}]}]},{"d":{"df":2,"dc":[[55,1],[59,1]]}}]}]}]}]},{"k":[105,117,101,97,111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[30,2]]},"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[114,101],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[69,3],[103,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[107],"v":[{"d":{"df":3,"dc":[[35,4],[55,1],[96,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":4,"dc":[[37,1],[59,10],[61,2],[66,1]]},"k":[44,115,58,46,65289],"v":[{"d":{"df":2,"dc":[[37,1],[59,1]]}},{"d":{"df":1,"dc":[[37,1]]}},{"d":{"df":1,"dc":[[59,3]]}},{"d":{"df":1,"dc":[[59,2]]}},{"k":[65306],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[22359],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[34,1]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[34,5]]}},{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[110,103,45],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[61,2],[106,1]]},"k":[103],"v":[{"k":[101],"v":[{"k":[115,114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":2,"dc":[[99,1],[103,1]]}}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[105,8]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"d":{"df":1,"dc":[[92,2]]}},{"d":{"df":1,"dc":[[92,1]]}}]},{"d":{"df":9,"dc":[[32,1],[38,2],[49,6],[54,1],[64,7],[119,1],[125,1],[127,2],[130,1]]},"k":[111,97,45,58,93,101,61],"v":[{"k":[117],"v":[{"d":{"df":38,"dc":[[0,7],[23,7],[26,4],[28,7],[29,1],[30,2],[31,5],[32,5],[33,7],[35,2],[37,7],[38,3],[56,20],[58,5],[63,8],[65,13],[66,2],[67,1],[68,2],[69,3],[84,2],[85,8],[88,1],[89,2],[90,2],[94,4],[95,3],[96,2],[98,5],[99,1],[100,2],[101,1],[102,4],[103,1],[104,2],[105,3],[106,6],[107,2]]},"k":[114,39],"v":[{"d":{"df":12,"dc":[[0,1],[23,7],[26,2],[28,2],[31,1],[35,1],[37,1],[56,1],[61,1],[63,1],[65,1],[69,1]]},"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[102],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]},{"k":[120,104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[58,105],"v":[{"d":{"df":41,"dc":[[0,1],[7,1],[28,1],[32,8],[34,1],[35,1],[36,1],[37,5],[42,1],[47,5],[49,8],[51,1],[52,1],[53,1],[55,2],[56,7],[58,2],[59,4],[61,2],[62,2],[64,7],[71,2],[75,4],[78,2],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[110,6],[111,1],[114,1],[116,5],[117,1],[118,2],[119,4],[120,1]]}},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":4,"dc":[[32,2],[49,2],[56,4],[64,4]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[120],"v":[{"k":[105,101],"v":[{"k":[115],"v":[{"d":{"df":7,"dc":[[32,6],[56,1],[85,2],[88,1],[94,3],[101,2],[103,1]]},"k":[46,58,63],"v":[{"d":{"df":3,"dc":[[32,1],[56,2],[104,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,2]]}}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]},{"d":{"df":5,"dc":[[36,3],[53,3],[56,4],[64,4],[83,1]]}},{"d":{"df":2,"dc":[[61,1],[78,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]},{"k":[97,108],"v":[{"k":[114],"v":[{"k":[115,44],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"d":{"df":3,"dc":[[69,1],[90,1],[103,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]}]},{"k":[34],"v":[{"k":[48],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]},{"k":[117,115,97,113,111],"v":[{"k":[115,109,100,105],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[0,4],[37,2]]}}]},{"k":[112],"v":[{"d":{"df":1,"dc":[[35,2]]}}]},{"k":[103],"v":[{"k":[101,109],"v":[{"d":{"df":2,"dc":[[56,2],[93,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[36,1],[53,2],[55,1],[62,2]]},"k":[100,111],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[43,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[26,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[56,2],[64,1]]},"k":[46,12290],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[41],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[115,118,112,103],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[97],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]}]},{"k":[98],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[33,104,109,115,47,98,100,116,97,105,63,112],"v":[{"d":{"df":1,"dc":[[0,1]]},"k":[100,45],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]}]}]}]},{"k":[45],"v":[{"d":{"df":4,"dc":[[0,3],[7,4],[37,14],[47,14]]}}]}]},{"k":[116,101],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]}]},{"k":[101,100],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]},{"k":[45],"v":[{"k":[101,111,97],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":15,"dc":[[0,1],[7,1],[30,1],[37,2],[46,1],[47,2],[55,3],[58,3],[59,1],[61,1],[62,3],[63,6],[71,3],[77,6],[78,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[37,8],[47,8]]}}]}]}]}]}]}]}]},{"k":[99,116,118],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[0,3],[7,3],[33,3],[48,3]]}}]}]}]}]},{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]},{"k":[104,98,115,105,109,100],"v":[{"k":[101,116],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]},{"k":[109],"v":[{"k":[108],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]}]},{"k":[111],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]}]},{"k":[99,116,118],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[62],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[33,3],[48,3]]}}]}]}]}]}]},{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]}]}]},{"k":[103],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]},{"k":[109,102],"v":[{"k":[103],"v":[{"k":[62],"v":[{"d":{"df":10,"dc":[[32,1],[49,1],[69,4],[101,2],[105,2],[106,4],[107,1],[124,2],[128,2],[130,1]]}}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":26,"dc":[[66,3],[67,2],[68,4],[69,3],[79,2],[80,4],[82,3],[83,2],[98,1],[99,2],[101,4],[102,5],[103,4],[104,4],[105,2],[106,2],[107,2],[121,2],[122,1],[124,4],[125,4],[126,5],[127,4],[128,2],[129,2],[130,2]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,8],[47,8]]}}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[118],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[102,2],[126,2]]}}]}]}]}]},{"k":[111,114,62],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,2],[7,2]]}}]}]}]},{"k":[47],"v":[{"k":[62],"v":[{"k":[123],"v":[{"k":[98],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[116,112,20256,30334],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]}]}]}]}]}]},{"k":[32479],"v":[{"k":[30340],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[62],"v":[{"k":[65306],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[20540],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[65292],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25972],"v":[{"k":[20010],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20998],"v":[{"k":[27604],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[62],"v":[{"k":[65306],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[118],"v":[{"d":{"df":6,"dc":[[0,2],[7,2],[33,3],[48,3],[102,2],[126,2]]}}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[0,1],[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[23,1],[40,2]]}},{"k":[109,102],"v":[{"k":[103],"v":[{"d":{"df":20,"dc":[[32,1],[34,1],[37,1],[47,1],[49,1],[52,1],[63,13],[69,4],[77,13],[83,4],[101,2],[104,1],[105,2],[106,4],[107,1],[124,2],[125,1],[128,2],[129,4],[130,1]]}}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":28,"dc":[[66,3],[67,2],[68,4],[69,3],[79,2],[80,4],[82,3],[83,2],[98,1],[99,2],[100,4],[101,4],[102,5],[103,4],[104,4],[105,2],[106,2],[107,2],[121,2],[122,1],[123,4],[124,4],[125,4],[126,5],[127,4],[128,2],[129,2],[130,2]]}}]}]}]}]}]},{"k":[120],"v":[{"k":[109],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]},{"d":{"df":8,"dc":[[36,2],[53,2],[55,2],[61,2],[78,2],[81,3],[94,1],[119,1]]},"k":[62,47,42,92],"v":[{"d":{"df":10,"dc":[[0,2],[7,2],[34,1],[37,1],[47,1],[52,1],[63,13],[77,13],[83,4],[129,4]]},"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]},{"d":{"df":32,"dc":[[0,3],[7,3],[28,14],[31,4],[32,25],[34,15],[35,54],[36,18],[37,1],[38,35],[42,14],[45,4],[47,1],[49,25],[51,57],[52,15],[53,22],[54,32],[55,81],[56,52],[58,9],[59,18],[61,34],[62,73],[63,1],[64,49],[65,4],[71,9],[75,16],[77,1],[78,25],[81,4]]},"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"d":{"df":2,"dc":[[62,1],[64,1]]}}]}]}]},{"d":{"df":2,"dc":[[34,1],[52,1]]}},{"k":[115],"v":[{"k":[43],"v":[{"k":[109],"v":[{"k":[252],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[92],"v":[{"k":[115],"v":[{"k":[42],"v":[{"k":[36],"v":[{"k":[47],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":31,"dc":[[23,6],[26,4],[29,3],[31,4],[36,4],[37,4],[38,6],[40,6],[41,4],[43,4],[44,6],[45,4],[47,4],[50,1],[53,4],[54,6],[55,33],[56,17],[57,4],[59,24],[62,33],[64,18],[65,104],[74,4],[75,24],[81,104],[85,5],[107,3],[110,5],[126,2],[130,3]]},"k":[45,49,51],"v":[{"d":{"df":1,"dc":[[0,1]]},"k":[62,115],"v":[{"d":{"df":4,"dc":[[0,4],[7,4],[37,14],[47,14]]}},{"k":[97],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[26,1],[28,1],[42,1],[43,1]]}}]}]}]}]},{"k":[59,44,48],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":2,"dc":[[59,3],[75,3]]}},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]},{"k":[97,114,108,111,101,105,104,117,115],"v":[{"k":[103,99,114,121,108,116,100,115,105],"v":[{"k":[101],"v":[{"d":{"df":6,"dc":[[26,1],[28,1],[33,1],[34,1],[35,1],[65,2]]},"k":[46,44,115,93],"v":[{"d":{"df":3,"dc":[[0,1],[33,1],[63,1]]}},{"d":{"df":2,"dc":[[26,1],[37,1]]}},{"d":{"df":1,"dc":[[33,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[33,1]]}}]},{"k":[40],"v":[{"k":[36,104],"v":[{"k":[123],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[98],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[125],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[107],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101,105],"v":[{"d":{"df":3,"dc":[[26,1],[28,2],[107,1]]},"k":[100,46],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[28,1],[65,1]]}}]}]}]}]}]}]},{"k":[116,97,101,115],"v":[{"d":{"df":10,"dc":[[30,2],[32,1],[56,1],[65,12],[66,2],[68,1],[98,2],[102,1],[103,1],[106,1]]},"k":[46,105,101,115,108,45,41],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"k":[116,99,101,97],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[105],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[55,1],[63,1]]}}]}]}]}]}]}]},{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[108],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]},{"d":{"df":1,"dc":[[61,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"k":[121],"v":[{"d":{"df":1,"dc":[[98,1]]}}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[45],"v":[{"k":[119],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[106,1]]}}]},{"k":[109,108],"v":[{"k":[101,115,46],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[61,2]]},"k":[93,115],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58,115],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[35,2],[55,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[33,1],[63,1]]}},{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]},{"k":[46,58],"v":[{"k":[110,115,100],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[44,41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[59],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[91],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[91],"v":[{"k":[48,49],"v":[{"k":[93],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[40],"v":[{"k":[50],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[93],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[40],"v":[{"k":[50],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[91],"v":[{"k":[51],"v":[{"k":[93],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[31,1],[98,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[33,1],[59,1]]},"k":[104],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":3,"dc":[[55,2],[65,1],[81,1]]},"k":[114,100],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[58,63],"v":[{"d":{"df":2,"dc":[[55,3],[62,2]]},"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":1,"dc":[[33,1]]}},{"k":[101,108],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[36,5]]},"k":[44,58],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]},{"k":[104,116],"v":[{"d":{"df":3,"dc":[[37,1],[63,1],[94,3]]},"k":[119,46,44,58,59],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"d":{"df":1,"dc":[[94,1]]}},{"d":{"df":1,"dc":[[94,1]]}},{"d":{"df":1,"dc":[[94,1]]}},{"d":{"df":1,"dc":[[94,1]]}}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]},"k":[58,125,46,12290],"v":[{"d":{"df":2,"dc":[[59,9],[75,9]]}},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]},{"d":{"df":1,"dc":[[59,1]]}},{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[116,115],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[88,1]]},"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]},{"k":[111,101,105],"v":[{"k":[99,98,109,106,118,110,112,100,103],"v":[{"k":[101],"v":[{"k":[101,115,100],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[0,1]]}}]},{"k":[115],"v":[{"d":{"df":5,"dc":[[30,2],[55,1],[61,1],[68,1],[69,1]]},"k":[105,46],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[56,1],[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":2,"dc":[[68,1],[102,1]]}}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[38,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[108,97],"v":[{"k":[101],"v":[{"k":[109],"v":[{"d":{"df":2,"dc":[[23,6],[68,2]]},"k":[115,46,97],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[23,2]]}},{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]},{"k":[98],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[23,1],[65,1]]}}]}]}]}]},{"k":[112,105],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[68,2],[98,1]]},"k":[46,93,44],"v":[{"d":{"df":3,"dc":[[26,2],[28,1],[98,1]]}},{"k":[40],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[26,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]},{"k":[105,101],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":10,"dc":[[28,2],[30,2],[32,3],[36,1],[55,3],[56,3],[63,4],[67,1],[68,1],[96,1]]},"k":[100,115],"v":[{"d":{"df":5,"dc":[[28,1],[31,1],[55,1],[65,1],[69,1]]}},{"d":{"df":9,"dc":[[28,2],[29,1],[36,1],[38,1],[55,1],[59,1],[63,4],[65,2],[102,1]]}}]}]}]},{"d":{"df":2,"dc":[[69,1],[107,2]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":2,"dc":[[55,2],[65,2]]},"k":[101,115,111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[58,1]]},"k":[116,108],"v":[{"k":[121,105],"v":[{"d":{"df":2,"dc":[[55,3],[85,2]]},"k":[46],"v":[{"d":{"df":2,"dc":[[36,1],[59,1]]}}]},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[121],"v":[{"k":[46,44],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[65,7]]}},{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":5,"dc":[[68,1],[95,2],[96,1],[98,1],[106,3]]},"k":[97,46],"v":[{"k":[108,116],"v":[{"d":{"df":5,"dc":[[94,1],[95,1],[98,1],[99,1],[101,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[95,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[99],"v":[{"k":[116,101],"v":[{"d":{"df":2,"dc":[[55,1],[64,1]]},"k":[58,115],"v":[{"d":{"df":2,"dc":[[56,9],[64,9]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[55,2]]},"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[97,101],"v":[{"k":[109],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[63,1],[67,1]]}}]}]}]}]}]},{"k":[112,99,116,118,115,102,100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[0,3]]},"k":[100],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]}]},{"k":[105,111],"v":[{"k":[112,115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[105,121],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]},"k":[45],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[115,101],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[37,7],[47,7]]}}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[37,7],[47,7]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[104,1]]}}]}]},{"k":[101,105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[37,1],[105,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"k":[101,111],"v":[{"k":[119],"v":[{"d":{"df":1,"dc":[[37,3]]}}]},{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":8,"dc":[[55,1],[56,3],[58,1],[63,1],[65,3],[94,1],[96,1],[102,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[63,1],[65,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[55,1],[68,1],[107,1]]},"k":[97,115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[58,1],[63,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[85,1],[101,1]]}}]}]}]}]},{"k":[105,101],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[84,1]]},"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[69,1],[106,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]}]},{"k":[99,110,111],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34,39,115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[32,1]]}}]},{"d":{"df":1,"dc":[[32,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]},{"k":[116,99],"v":[{"d":{"df":1,"dc":[[35,3]]},"k":[101,58],"v":[{"k":[100],"v":[{"d":{"df":3,"dc":[[55,1],[63,1],[65,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[105],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[65,2]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[65,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[111,97,101,117],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":3,"dc":[[0,1],[61,1],[63,1]]}}]}]}]}]}]},{"k":[99,110],"v":[{"k":[101,105],"v":[{"d":{"df":5,"dc":[[23,1],[36,1],[59,2],[85,1],[106,1]]},"k":[46,100,44,115],"v":[{"d":{"df":2,"dc":[[32,1],[55,1]]}},{"d":{"df":5,"dc":[[34,1],[56,2],[59,2],[98,1],[99,1]]}},{"d":{"df":1,"dc":[[36,1]]}},{"k":[58,46],"v":[{"d":{"df":1,"dc":[[65,2]]}},{"d":{"df":1,"dc":[[103,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[97,110],"v":[{"k":[115],"v":[{"k":[101,105],"v":[{"d":{"df":11,"dc":[[30,1],[33,1],[56,2],[57,1],[68,1],[69,1],[85,2],[88,2],[92,1],[98,1],[106,2]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[63],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[61],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,111,112,105,119,108],"v":[{"k":[115,105,116],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[55,2],[63,3],[65,1]]},"k":[46,44],"v":[{"d":{"df":4,"dc":[[23,1],[63,1],[65,1],[69,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":10,"dc":[[59,7],[61,4],[65,1],[66,1],[75,1],[84,3],[94,1],[96,1],[103,1],[106,1]]},"k":[58,101,46],"v":[{"d":{"df":12,"dc":[[32,2],[36,2],[49,2],[53,2],[59,1],[61,5],[75,1],[78,4],[88,1],[96,1],[113,1],[116,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[69,1]]}}]},{"d":{"df":2,"dc":[[103,1],[106,1]]}}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[105,5],[107,1]]},"k":[46,108],"v":[{"d":{"df":1,"dc":[[106,1]]}},{"k":[121],"v":[{"d":{"df":1,"dc":[[107,3]]}}]}]}]}]}]}]},{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[37,2]]}}]}]}]},{"k":[114],"v":[{"d":{"df":2,"dc":[[31,1],[63,1]]}}]},{"k":[45,117],"v":[{"k":[117],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]},{"k":[112,108],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[63,1],[88,1]]},"k":[46,115,105,101],"v":[{"d":{"df":2,"dc":[[36,1],[66,1]]}},{"d":{"df":8,"dc":[[55,1],[61,3],[63,1],[88,2],[92,1],[94,1],[104,3],[107,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[61,1],[101,1]]}},{"d":{"df":2,"dc":[[103,1],[107,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[67,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[67,2]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[102],"v":[{"k":[117],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[55,1],[63,2],[65,1]]}}]}]}]}]}]},{"k":[121,97],"v":[{"k":[110,103,108],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[46,115],"v":[{"d":{"df":1,"dc":[[66,1]]}},{"d":{"df":1,"dc":[[66,1]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]},{"k":[114],"v":[{"d":{"df":2,"dc":[[56,1],[87,1]]},"k":[41],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[111,114],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":5,"dc":[[23,1],[30,3],[63,2],[98,1],[106,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[102,105,99,115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[89,1]]},"k":[97,115],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[31,1],[56,2],[63,6],[66,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]},{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110,112,105],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[95,2]]},"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":7,"dc":[[59,1],[63,1],[68,1],[69,1],[95,1],[96,1],[102,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[111,112],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[105,1]]},"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[96,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101,99,112,120,110],"v":[{"d":{"df":10,"dc":[[30,1],[35,2],[56,3],[63,3],[68,2],[95,8],[96,2],[97,2],[98,2],[106,11]]},"k":[99],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[38,1],[59,1]]},"k":[119,115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[38,5]]}}]}]}]},{"d":{"df":1,"dc":[[38,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[107,116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[100,41],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[55,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[61,1],[94,1],[95,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[107],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]},{"k":[111,121,101,97],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[111,99],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]},{"k":[116,114,98,108],"v":[{"d":{"df":3,"dc":[[34,1],[55,1],[106,2]]},"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[102,1]]}}]}]}]}]},{"k":[101,112],"v":[{"d":{"df":1,"dc":[[55,2]]}},{"k":[108],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]},{"k":[121],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,105,111,117,97,58],"v":[{"k":[112,108,115,111,109,113,99,102,100,110,103,97,98,116,117,45,118,105,119],"v":[{"k":[111,114,108,101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[101],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]}]}]}]},{"k":[111,101],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[105,101],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[23,2],[40,1]]}}]}]}]},{"d":{"df":1,"dc":[[23,2]]}}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":9,"dc":[[38,2],[56,1],[67,1],[85,1],[88,1],[94,2],[95,1],[100,1],[103,1]]},"k":[101,115,97],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[68,1],[88,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[30,1],[63,1]]}}]}]},{"d":{"df":6,"dc":[[32,3],[56,1],[96,1],[100,1],[101,1],[105,1]]}},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]},"k":[100],"v":[{"d":{"df":2,"dc":[[30,2],[85,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[108,101],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[61,2]]}}]},{"k":[100],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]},{"k":[121,101,105,97,111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]},{"k":[97,118],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[33,1],[63,1]]},"k":[100,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[99,116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[103,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]},{"d":{"df":1,"dc":[[107,2]]}}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"k":[116],"v":[{"k":[105,101],"v":[{"k":[111,118],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[32,1],[102,1],[107,4]]},"k":[97,115],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[101],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":5,"dc":[[55,1],[98,3],[102,2],[103,1],[107,1]]},"k":[58,115,44,46],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[98,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]},{"k":[100],"v":[{"d":{"df":10,"dc":[[36,1],[65,5],[68,1],[69,1],[85,2],[94,1],[95,1],[99,1],[101,2],[103,1]]}}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[111,117,105,101,116,112],"v":[{"k":[117,108],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[23,1],[33,1]]}}]}]}]}]},{"k":[118,117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[96,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[116],"v":[{"d":{"df":5,"dc":[[35,2],[36,1],[55,6],[57,1],[69,1]]},"k":[44,58,46,91],"v":[{"d":{"df":3,"dc":[[23,1],[31,1],[68,1]]}},{"d":{"df":1,"dc":[[37,2]]}},{"d":{"df":1,"dc":[[55,3]]}},{"k":[48,49],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[58,46],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[55,1],[62,3]]},"k":[58,44,46],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,2]]}}]}]}]}]}]}]},{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]},{"k":[108,116,97],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[38,2],[59,1],[106,1]]},"k":[114],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[101,111],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[115],"v":[{"k":[105,101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"d":{"df":1,"dc":[[69,3]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]},{"k":[111,97,101],"v":[{"k":[118],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[23,1],[65,1]]}}]}]},{"d":{"df":2,"dc":[[55,1],[65,1]]},"k":[100,115],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[33,1]]}}]},{"d":{"df":1,"dc":[[65,2]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[101,105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[23,1],[65,1],[81,1]]},"k":[44,115],"v":[{"d":{"df":1,"dc":[[23,1]]}},{"d":{"df":1,"dc":[[106,1]]}}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[31,1],[65,1]]},"k":[100,109,40],"v":[{"d":{"df":2,"dc":[[28,6],[31,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[57,1]]}}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115,46],"v":[{"k":[46,44],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[47],"v":[{"k":[101,99],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]}]}]}]},{"k":[104,111],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[98,108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[103,97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,116,101],"v":[{"k":[109,114,103],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":8,"dc":[[26,1],[37,1],[56,1],[58,1],[65,1],[66,1],[101,1],[106,1]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":6,"dc":[[23,1],[37,1],[65,2],[67,1],[93,1],[98,1]]},"k":[46],"v":[{"d":{"df":3,"dc":[[31,1],[36,1],[106,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[35,1]]}}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[88,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[65,1]]},"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[117,108],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,5]]},"k":[44,41],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[86,1]]}}]}]}]}]}]},{"k":[101,108,97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[101,114,115],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[26,1]]}}]}]},{"d":{"df":4,"dc":[[55,6],[56,2],[62,1],[65,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]}]},{"k":[101,105],"v":[{"k":[114],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]},{"d":{"df":2,"dc":[[61,1],[94,1]]}}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[66,1],[98,1],[101,1],[107,1]]},"k":[115],"v":[{"d":{"df":2,"dc":[[32,1],[102,1]]}}]}]}]}]},{"k":[99],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[63,1],[69,2],[103,1]]},"k":[117,101,114,45,46],"v":[{"k":[99],"v":[{"k":[101,116],"v":[{"d":{"df":1,"dc":[[26,1]]}},{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[119],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[110],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[107,1]]}}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[31,3],[56,1]]},"k":[101,105],"v":[{"k":[114,100],"v":[{"d":{"df":3,"dc":[[28,1],[31,12],[65,2]]},"k":[44,46,63,115,58,93],"v":[{"d":{"df":3,"dc":[[28,1],[63,1],[65,2]]}},{"d":{"df":2,"dc":[[28,1],[31,2]]}},{"d":{"df":1,"dc":[[31,1]]}},{"d":{"df":2,"dc":[[31,3],[65,1]]}},{"d":{"df":2,"dc":[[31,2],[45,2]]}},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[57,1],[61,1]]}}]},{"k":[110,116],"v":[{"k":[103],"v":[{"d":{"df":5,"dc":[[28,1],[31,1],[57,2],[63,7],[65,3]]},"k":[44],"v":[{"d":{"df":1,"dc":[[57,1]]}}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"k":[105,117,58,63,101,114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101,114],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[28,2],[36,2],[55,1],[65,1]]},"k":[101,109],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[37,1],[55,1]]}}]},{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[120],"v":[{"k":[112],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[93,41,44],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[108,101,112],"v":[{"k":[105,111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[108,101,112],"v":[{"k":[105,111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[100,99,108,115],"v":[{"d":{"df":4,"dc":[[33,1],[66,1],[98,1],[101,1]]},"k":[105,97,46,58],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":5,"dc":[[30,2],[33,2],[67,1],[68,1],[99,1]]},"k":[46],"v":[{"d":{"df":2,"dc":[[84,1],[107,1]]}}]}]}]},{"k":[98],"v":[{"k":[105,108],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,1]]},"k":[46,44],"v":[{"d":{"df":2,"dc":[[63,1],[84,1]]}},{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]}]},{"d":{"df":2,"dc":[[66,2],[104,1]]}},{"d":{"df":1,"dc":[[102,1]]}}]},{"k":[116,104],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]},{"k":[116,45,108],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,3]]}}]}]}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[107,1]]},"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]}]}]},{"k":[117,114],"v":[{"k":[114],"v":[{"k":[110],"v":[{"d":{"df":10,"dc":[[35,1],[36,4],[51,1],[53,4],[55,1],[61,7],[65,2],[78,7],[94,1],[119,1]]}}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[115,100],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,2]]}}]}]}]},{"k":[114,99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[61,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[61,1],[65,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[119],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105,116],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[99,103],"v":[{"k":[104],"v":[{"d":{"df":7,"dc":[[30,1],[46,1],[59,2],[61,1],[63,3],[65,1],[75,2]]},"k":[101,58],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[56,1],[63,2]]}}]},{"d":{"df":2,"dc":[[59,10],[75,10]]}}]}]},{"k":[104,105],"v":[{"k":[116],"v":[{"d":{"df":9,"dc":[[32,1],[34,1],[37,2],[56,2],[59,3],[65,6],[69,2],[101,1],[105,2]]},"k":[46,58,45],"v":[{"d":{"df":1,"dc":[[32,1]]}},{"d":{"df":5,"dc":[[34,2],[36,1],[52,2],[53,1],[83,1]]}},{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[117,116,119,108,115],"v":[{"k":[103,110],"v":[{"k":[104],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[63,2]]},"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,2]]}}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"k":[58,100,46],"v":[{"d":{"df":3,"dc":[[32,1],[59,1],[75,1]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[59,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,13]]},"k":[115,46],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,2]]}}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[97,3],[106,1]]},"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[97,1],[112,1]]}}]}]}]}]}]}]}]},{"k":[110,108],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[110,116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":5,"dc":[[36,1],[55,1],[56,3],[59,3],[98,1]]},"k":[58,115,44,34],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[56,1]]}},{"d":{"df":1,"dc":[[59,3]]}},{"d":{"df":1,"dc":[[61,1]]},"k":[44,46],"v":[{"d":{"df":1,"dc":[[61,2]]}},{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]},{"k":[116,119,100,110,114,99],"v":[{"k":[104,105,101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":5,"dc":[[34,1],[55,2],[63,1],[99,1],[105,1]]}}]}]},{"k":[111],"v":[{"d":{"df":2,"dc":[[59,1],[106,1]]},"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[68,3]]},"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"d":{"df":1,"dc":[[35,1]]},"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]},{"k":[105,97],"v":[{"k":[117,97,111],"v":[{"k":[115],"v":[{"d":{"df":6,"dc":[[38,1],[61,1],[85,1],[95,2],[96,7],[97,1]]},"k":[58,46],"v":[{"d":{"df":10,"dc":[[35,1],[51,1],[55,3],[56,1],[62,3],[64,1],[95,1],[96,2],[113,2],[115,1]]}},{"d":{"df":2,"dc":[[96,1],[97,1]]}}]}]},{"k":[108,110],"v":[{"d":{"df":1,"dc":[[66,1]]}},{"k":[115],"v":[{"d":{"df":1,"dc":[[95,2]]}}]}]},{"d":{"df":1,"dc":[[106,1]]}}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[66,12]]}}]}]},{"k":[103,107],"v":[{"k":[101],"v":[{"d":{"df":3,"dc":[[38,5],[66,1],[85,1]]},"k":[59,46],"v":[{"d":{"df":1,"dc":[[38,1]]}},{"d":{"df":1,"dc":[[38,1]]}}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[115],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"d":{"df":4,"dc":[[36,3],[53,3],[61,2],[78,2]]}}]},{"d":{"df":6,"dc":[[59,1],[63,1],[75,1],[77,1],[98,1],[122,1]]},"k":[48,44,56,46,53,55,57,52,54,12289],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[48,93,44],"v":[{"k":[112,44],"v":[{"k":[120],"v":[{"k":[59],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[58],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[59],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[62],"v":[{"d":{"df":4,"dc":[[0,2],[7,2],[33,1],[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[33,1],[48,1]]}}]},{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"d":{"df":4,"dc":[[32,2],[49,2],[59,1],[75,1]]}},{"k":[46,44],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":1,"dc":[[106,1]]},"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[46],"v":[{"k":[50,49],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[46,44],"v":[{"k":[57,51,50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[46],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[51,55],"v":[{"k":[57],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[49],"v":[{"k":[53],"v":[{"k":[56],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[46],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[19977],"v":[{"k":[32500],"v":[{"k":[30340],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[27498],"v":[{"k":[26354],"v":[{"k":[20102],"v":[{"k":[21508],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[20363],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[21450],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[22256],"v":[{"k":[25200],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[19981],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,101,105,52,111,115,51,109],"v":[{"k":[114,108],"v":[{"d":{"df":22,"dc":[[0,2],[7,2],[28,3],[31,3],[33,3],[35,4],[36,5],[42,3],[45,3],[48,3],[51,4],[53,4],[55,1],[56,6],[58,2],[61,5],[62,1],[64,6],[65,2],[71,2],[78,5],[81,2]]},"k":[105,121],"v":[{"k":[101,97,111],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[26,1],[63,1]]}}]}]},{"k":[98,110],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[66,1]]},"k":[115],"v":[{"d":{"df":4,"dc":[[37,1],[66,1],[67,1],[107,2]]},"k":[44,46,41],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":4,"dc":[[66,2],[99,1],[103,3],[107,3]]}},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[89,1]]}}]}]},{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[36,1],[63,1]]}}]}]}]},{"d":{"df":1,"dc":[[38,1]]}}]},{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":23,"dc":[[30,2],[32,2],[35,1],[36,1],[38,15],[54,3],[55,7],[56,5],[63,2],[65,2],[66,1],[84,5],[88,3],[94,7],[95,2],[96,1],[100,1],[101,2],[102,2],[103,1],[105,1],[107,5],[119,1]]},"k":[58,41,44,115,91,65292,34,46],"v":[{"d":{"df":20,"dc":[[30,5],[35,10],[38,2],[46,5],[51,10],[54,2],[55,4],[56,1],[59,4],[62,4],[64,1],[69,1],[75,4],[94,1],[95,12],[96,8],[97,5],[112,5],[113,8],[115,12]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"d":{"df":6,"dc":[[38,2],[55,1],[61,1],[85,1],[94,2],[96,2]]}},{"d":{"df":11,"dc":[[55,4],[59,1],[63,1],[66,1],[85,1],[88,1],[92,1],[96,1],[102,1],[105,1],[107,1]]},"k":[46,58],"v":[{"d":{"df":6,"dc":[[38,1],[66,1],[98,1],[100,2],[103,1],[107,1]]}},{"d":{"df":4,"dc":[[56,1],[58,1],[71,1],[92,1]]}}]},{"k":[51],"v":[{"k":[93],"v":[{"k":[41,65289],"v":[{"d":{"df":1,"dc":[[38,1]]}},{"k":[34987],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[36825],"v":[{"k":[26356],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,2]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[55,3]]}},{"d":{"df":8,"dc":[[55,1],[56,1],[67,1],[94,1],[96,1],[100,1],[103,1],[105,1]]}}]}]}]}]},{"k":[114,99],"v":[{"k":[121,115,116],"v":[{"d":{"df":5,"dc":[[23,1],[28,1],[63,6],[98,3],[107,1]]}},{"k":[105,97],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":3,"dc":[[26,1],[63,1],[65,1]]},"k":[115,44,61],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,2]]}},{"k":[34],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[48,49],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"d":{"df":2,"dc":[[56,1],[69,1]]}}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":5,"dc":[[34,1],[59,1],[92,1],[101,1],[105,1]]},"k":[108,97],"v":[{"k":[121],"v":[{"d":{"df":2,"dc":[[34,1],[98,1]]}}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[63,1],[94,6]]}}]}]}]}]},{"k":[97,115,100,101,110,99,117,111],"v":[{"d":{"df":3,"dc":[[28,3],[55,4],[65,1]]}},{"k":[105,117],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[30,1],[55,1]]},"k":[39,101,111,115],"v":[{"d":{"df":2,"dc":[[30,1],[95,4]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[36,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[114],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]},{"d":{"df":1,"dc":[[107,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":10,"dc":[[31,1],[36,3],[38,19],[56,4],[63,4],[65,2],[69,4],[89,1],[90,1],[106,2]]},"k":[105,109,108,115],"v":[{"k":[122],"v":[{"k":[97,101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":4,"dc":[[38,1],[55,1],[63,6],[69,1]]},"k":[44,58,115,46],"v":[{"d":{"df":2,"dc":[[36,1],[69,3]]}},{"d":{"df":1,"dc":[[56,2]]}},{"d":{"df":1,"dc":[[63,2]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":2,"dc":[[63,1],[69,3]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":4,"dc":[[36,1],[38,8],[53,1],[54,8]]},"k":[58],"v":[{"d":{"df":4,"dc":[[38,2],[54,2],[56,1],[64,1]]}}]}]}]},{"k":[121],"v":[{"d":{"df":3,"dc":[[38,1],[99,1],[103,1]]}}]},{"d":{"df":1,"dc":[[65,4]]}}]}]}]}]},{"k":[101],"v":[{"k":[111],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[119],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[105,98],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]},{"k":[111],"v":[{"k":[120],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[48],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":2,"dc":[[56,1],[69,1]]}}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]}]},{"k":[46],"v":[{"k":[48,55],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]},{"k":[108],"v":[{"k":[117,97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[104,1]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[37,1],[44,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[55],"v":[{"d":{"df":1,"dc":[[75,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[65,3],[81,2]]}}]}]},{"d":{"df":57,"dc":[[0,2],[7,2],[28,4],[30,1],[31,3],[32,8],[33,4],[34,6],[35,9],[36,9],[37,13],[38,2],[42,4],[45,3],[46,1],[47,13],[48,4],[49,8],[51,8],[52,6],[53,8],[54,2],[55,22],[56,15],[58,2],[59,6],[61,7],[62,22],[64,14],[65,4],[71,2],[75,10],[78,7],[81,4],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]},"k":[61,96,62],"v":[{"k":[61],"v":[{"d":{"df":2,"dc":[[35,5],[51,5]]}}]},{"k":[39],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[65,34],[81,34],[94,1],[119,1]]}}]},{"d":{"df":58,"dc":[[0,5],[7,5],[28,10],[30,9],[31,3],[32,44],[33,4],[34,24],[35,57],[36,46],[37,27],[38,11],[42,10],[45,3],[46,9],[47,27],[48,4],[49,43],[51,58],[52,24],[53,46],[54,11],[55,95],[56,87],[58,13],[59,72],[61,36],[62,94],[63,1],[64,87],[65,6],[71,13],[75,76],[78,36],[81,6],[83,13],[84,4],[85,24],[88,19],[89,3],[90,5],[92,6],[93,8],[94,12],[95,19],[96,19],[97,7],[110,24],[111,4],[112,7],[113,19],[114,5],[115,21],[116,19],[117,6],[118,8],[119,12],[120,3]]},"k":[125,46,99,110,115,8203,98],"v":[{"d":{"df":10,"dc":[[38,2],[54,2],[55,1],[59,1],[62,1],[75,1],[90,1],[93,2],[114,1],[118,2]]},"k":[44,41],"v":[{"d":{"df":33,"dc":[[0,2],[7,2],[28,2],[32,1],[34,1],[35,1],[37,5],[42,2],[47,5],[49,1],[51,1],[52,1],[55,3],[56,13],[58,5],[62,3],[64,13],[71,5],[84,1],[85,5],[88,5],[89,1],[90,1],[92,1],[93,2],[94,5],[110,5],[111,1],[114,1],[116,5],[118,2],[119,5],[120,1]]}},{"k":[59],"v":[{"d":{"df":1,"dc":[[51,4]]}}]}]},{"k":[46],"v":[{"k":[46],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[35,4]]}}]}]}]}]}]},{"k":[125,108],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[111],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[124],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[124],"v":[{"k":[123],"v":[{"k":[97],"v":[{"k":[125],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[117,104],"v":[{"k":[110],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[124],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[124],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}},{"k":[97],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[125],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":5,"dc":[[55,1],[59,9],[61,4],[75,9],[78,4]]},"k":[101,99,112,104,115,98,32650,38634,35044,39640,34972,38144,114,100,117,118,116,97,123,106,102,109,111,110,108,50,35,119,103,120,121,39,105,53,54,49,26576,35775,30452,37038,32852,35270,25628,51,52,55,56,57,38477,28201,36873,21462,22270,39292,22307,26805,29785,61,62,60,46,33,44,96,24322,92,39321,27225,33609,31532,29461,45,22278],"v":[{"k":[99,109,100,110,120,39],"v":[{"k":[104,115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":4,"dc":[[0,1],[7,1],[28,1],[42,1]]},"k":[39,47],"v":[{"k":[59],"v":[{"d":{"df":8,"dc":[[28,1],[31,1],[42,1],[45,1],[61,1],[65,2],[78,1],[81,2]]}}]},{"k":[99,114,108],"v":[{"k":[111,104],"v":[{"k":[114,109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[59],"v":[{"d":{"df":6,"dc":[[28,2],[31,1],[42,2],[45,1],[65,1],[81,1]]}}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[59],"v":[{"d":{"df":4,"dc":[[28,2],[42,2],[65,2],[81,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[59,96],"v":[{"d":{"df":4,"dc":[[28,2],[42,2],[65,1],[81,1]]}},{"k":[59],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[59],"v":[{"d":{"df":6,"dc":[[28,2],[31,1],[42,2],[45,1],[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[98],"v":[{"k":[47],"v":[{"k":[101,99],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[65292],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[96],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[58,39],"v":[{"k":[120,114],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[65292],"v":[{"k":[39],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":2,"dc":[[30,1],[35,2]]}}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]},"k":[44,41,65292],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[24403],"v":[{"k":[21069],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[103,100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,8],[62,8]]}}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[96,1],[97,1],[112,1],[113,1]]},"k":[93],"v":[{"d":{"df":14,"dc":[[84,1],[85,3],[88,3],[89,1],[90,1],[93,2],[96,1],[110,3],[111,1],[113,1],[114,1],[116,3],[118,2],[120,1]]}}]}]},{"k":[97,104,101,114,105,117,111,39],"v":[{"k":[114,110,116,107],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115,39],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]}]}]}]},{"k":[118,97],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[39],"v":[{"d":{"df":6,"dc":[[34,1],[52,1],[55,2],[56,3],[62,2],[64,3]]},"k":[44,41,96,65289],"v":[{"d":{"df":13,"dc":[[32,1],[49,1],[56,4],[59,1],[64,4],[75,1],[83,1],[85,1],[88,1],[92,1],[110,1],[116,1],[117,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":1,"dc":[[62,1]]}},{"k":[65292],"v":[{"k":[21017],"v":[{"k":[23558],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[34892],"v":[{"k":[65289],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[21518],"v":[{"k":[32493],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[34892],"v":[{"k":[65289],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[105,101],"v":[{"k":[102,110],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[115,39],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[0,1]]}}]}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,7],[64,7]]}}]}]}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":9,"dc":[[30,1],[32,2],[34,1],[46,1],[49,2],[51,1],[52,1],[96,1],[113,1]]},"k":[44],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[96,2],[113,2]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[61,1],[78,2]]},"k":[44,46],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[61,3],[78,3]]}},{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]},{"k":[115,98],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]},{"k":[110,108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]},{"k":[117],"v":[{"k":[109],"v":[{"k":[110],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[96,2],[97,1],[112,1],[113,2]]},"k":[44,93],"v":[{"d":{"df":14,"dc":[[84,1],[85,3],[88,3],[89,1],[90,1],[93,2],[96,1],[110,3],[111,1],[113,1],[114,1],[116,3],[118,2],[120,1]]}},{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]},{"k":[97,105,114,111,108],"v":[{"k":[110,116],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[0,1],[28,1],[35,1]]}}]}]}]}]},{"k":[104],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[99],"v":[{"k":[53],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[49],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[44],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[44],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[44],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[44],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[51],"v":[{"k":[44],"v":[{"k":[48],"v":[{"k":[45],"v":[{"k":[57],"v":[{"k":[46],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[44],"v":[{"k":[50],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[56],"v":[{"k":[52],"v":[{"k":[44],"v":[{"k":[54],"v":[{"k":[46],"v":[{"k":[57],"v":[{"k":[48],"v":[{"k":[53],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,110],"v":[{"k":[39,99],"v":[{"k":[44],"v":[{"d":{"df":14,"dc":[[30,1],[35,2],[36,1],[46,1],[51,2],[53,1],[55,6],[62,6],[95,4],[96,2],[97,1],[112,1],[113,2],[115,4]]}}]},{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]},{"k":[101,105,111],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,7],[62,7]]}}]}]}]}]},{"k":[100,102],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44,93],"v":[{"d":{"df":4,"dc":[[55,3],[56,2],[62,3],[64,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,3],[62,3]]}}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[101,111,105,116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[0,1],[28,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]}]}]}]}]}]}]},{"k":[103,100],"v":[{"k":[104],"v":[{"k":[45,108],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119,101],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[63],"v":[{"k":[113],"v":[{"k":[61],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[115,99],"v":[{"k":[117,104],"v":[{"k":[110],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[95],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[121],"v":[{"k":[95],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111,97,101,118,99,104,117,116],"v":[{"k":[99,117,114],"v":[{"k":[107],"v":[{"k":[115],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[93],"v":[{"d":{"df":2,"dc":[[0,1],[28,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]},{"k":[116],"v":[{"k":[39],"v":[{"k":[44,41,65289],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}},{"d":{"df":1,"dc":[[55,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[27809],"v":[{"k":[26377],"v":[{"k":[21517],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[108,110,116],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[32,7]]},"k":[39],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[0,1],[28,1],[35,1],[55,5],[58,3],[62,5]]}}]}]}]}]},{"d":{"df":1,"dc":[[38,1]]},"k":[107],"v":[{"k":[101],"v":[{"k":[121],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[44,93],"v":[{"d":{"df":6,"dc":[[37,5],[47,5],[85,3],[92,1],[110,3],[117,1]]}},{"d":{"df":2,"dc":[[94,3],[119,3]]}}]}]}]},{"k":[97,112,114,108],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":3,"dc":[[30,1],[35,2],[95,4]]}}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[39,46],"v":[{"d":{"df":3,"dc":[[51,4],[59,2],[75,2]]},"k":[12289,46,41,44],"v":[{"k":[39],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[12289],"v":[{"k":[39],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[12289],"v":[{"k":[39],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[35,4]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":4,"dc":[[35,1],[36,2],[51,1],[53,2]]}}]},{"k":[108,101],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[31,1],[45,1]]}}]}]},{"k":[114,97,111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44],"v":[{"d":{"df":8,"dc":[[36,4],[53,4],[55,3],[59,3],[62,3],[75,3],[94,4],[119,4]]}}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44,93,34],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}},{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[105,111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[119],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[61,2],[78,2]]}}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":6,"dc":[[37,5],[47,5],[85,3],[92,1],[110,3],[117,1]]}}]}]}]},{"k":[114,101,97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[112],"v":[{"d":{"df":2,"dc":[[92,3],[117,3]]},"k":[112],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[99,114],"v":[{"k":[107],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]},{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]}]}]}]}]},{"k":[97,39,108,111],"v":[{"k":[114],"v":[{"k":[39,109],"v":[{"d":{"df":6,"dc":[[34,3],[37,1],[47,1],[52,3],[56,7],[64,6]]},"k":[44],"v":[{"d":{"df":25,"dc":[[0,1],[7,1],[28,1],[32,1],[35,1],[36,1],[37,9],[42,1],[47,9],[49,1],[51,1],[53,1],[55,2],[56,14],[58,2],[59,2],[62,2],[64,14],[71,2],[75,2],[83,4],[84,2],[85,10],[110,10],[111,2]]}}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[96,2],[97,1],[112,1],[113,2]]},"k":[44],"v":[{"d":{"df":16,"dc":[[35,1],[51,1],[84,1],[85,3],[88,4],[89,1],[90,1],[93,2],[96,1],[110,3],[111,1],[113,1],[114,1],[116,4],[118,2],[120,1]]}}]},{"k":[117],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]},"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]},{"k":[120,116,108],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[88,1],[116,1]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]},{"k":[27611],"v":[{"k":[34923],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]}]},{"k":[32442],"v":[{"k":[34923],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]}]},{"k":[23376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]},{"k":[36319],"v":[{"k":[38795],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]}]},{"k":[23376],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]},{"k":[37327,21806],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[7,1],[42,1],[51,1],[71,3]]}}]}]},{"k":[26102,25968,37329],"v":[{"k":[38388],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[49,3]]}}]}]},{"k":[37327],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[49,3]]}}]}]},{"k":[39069],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]},{"k":[101,105,103,117,97,111],"v":[{"k":[102,99,100,103],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[30,1]]},"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[34,2],[52,2]]}}]}]},{"k":[39],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]},"k":[93,44,46],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]},{"d":{"df":3,"dc":[[38,2],[59,1],[75,1]]}},{"d":{"df":1,"dc":[[38,1]]}}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[103,99],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":3,"dc":[[59,2],[75,2],[83,1]]},"k":[44],"v":[{"d":{"df":4,"dc":[[32,1],[49,1],[59,2],[75,2]]}}]}]}]}]},{"k":[104],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[98],"v":[{"k":[97,40],"v":[{"k":[40],"v":[{"k":[48,49,50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"k":[50],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[53,50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]}]}]},{"k":[50,49],"v":[{"k":[53,48],"v":[{"k":[49,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[50],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,3],[53,3]]}}]}]}]}]}]}]},{"k":[119,117],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,5],[64,4]]},"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105,97,101,111,39],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[30,1],[35,2],[95,4]]}}]}]}]}]},{"k":[115,116,114],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"d":{"df":4,"dc":[[32,4],[49,4],[88,1],[116,1]]}}]}]}]}]},{"k":[97,101],"v":[{"k":[39,122,115],"v":[{"d":{"df":1,"dc":[[35,1]]}},{"k":[111],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[93,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,3],[62,3]]}}]},{"d":{"df":2,"dc":[[55,2],[62,1]]}}]}]}]},{"k":[107],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[99,115,39],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]},"k":[44,59],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[8203],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[119],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":4,"dc":[[96,1],[97,1],[112,1],[113,1]]},"k":[44],"v":[{"d":{"df":14,"dc":[[84,1],[85,3],[88,3],[89,1],[90,1],[93,2],[96,1],[110,3],[111,1],[113,1],[114,1],[116,3],[118,2],[120,1]]}}]}]},{"k":[110,117],"v":[{"k":[105],"v":[{"k":[111,116],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[30,1],[95,4]]}}]},{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[36,4],[53,4]]}}]}]}]}]},{"k":[117],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,3],[51,3]]}}]}]}]},{"k":[105,97,101],"v":[{"k":[100,110],"v":[{"k":[101],"v":[{"k":[111],"v":[{"d":{"df":2,"dc":[[30,1],[35,2]]}}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]}]},{"k":[108,116],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":8,"dc":[[59,1],[75,1],[85,1],[88,1],[92,1],[110,1],[116,1],[117,1]]},"k":[44],"v":[{"d":{"df":5,"dc":[[32,6],[49,6],[61,4],[78,4],[83,1]]}}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":6,"dc":[[34,2],[35,1],[51,1],[52,2],[96,1],[113,1]]}}]}]}]}]}]}]}]}]}]},{"k":[105,101,117,111,104,114,121],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,6],[62,5]]},"k":[44,96],"v":[{"d":{"df":2,"dc":[[32,3],[49,3]]}},{"d":{"df":1,"dc":[[55,2]]},"k":[58,65292,65306,12290],"v":[{"d":{"df":1,"dc":[[55,2]]}},{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"d":{"df":1,"dc":[[62,1]]},"k":[25226],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[20540],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[25104],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25139],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[109,97],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[99,39],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,6],[62,6]]}}]}]}]}]}]},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[114,101,118],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[37,5],[47,5],[85,3],[92,1],[94,3],[110,3],[117,1],[119,3]]}}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[112,102],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]},{"k":[117],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[105,117],"v":[{"k":[115],"v":[{"d":{"df":2,"dc":[[36,4],[53,4]]}}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[37,5],[47,5],[85,3],[92,1],[94,3],[110,3],[117,1],[119,3]]}}]}]}]},{"k":[105],"v":[{"k":[109],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,3],[62,3]]},"k":[96],"v":[{"k":[58,65306],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[22914],"v":[{"k":[26524],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[25226],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[20004],"v":[{"k":[31471],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[26684],"v":[{"k":[65288],"v":[{"k":[20840],"v":[{"k":[35282],"v":[{"k":[21322],"v":[{"k":[35282],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[25442],"v":[{"k":[34892],"v":[{"k":[31526],"v":[{"k":[21435],"v":[{"k":[25481],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"k":[20026],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[96,1]]},"k":[114,120,112,117,39,102,99,103,115,109,97,100],"v":[{"k":[114,105,101],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,2],[49,2]]}}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[97],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[97,1],[112,1]]}}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[83,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]},{"k":[103,115],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[55,1],[62,1],[96,2],[97,1],[112,1],[113,2]]},"k":[44,96],"v":[{"d":{"df":4,"dc":[[35,1],[51,1],[61,4],[78,4]]}},{"d":{"df":2,"dc":[[55,1],[62,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[35,2]]}}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[99,121],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[58,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44,93],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[123],"v":[{"k":[64],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[125],"v":[{"k":[98],"v":[{"k":[98],"v":[{"k":[98],"v":[{"k":[123],"v":[{"k":[64],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[99],"v":[{"k":[99],"v":[{"k":[99],"v":[{"k":[123],"v":[{"k":[64],"v":[{"k":[91],"v":[{"k":[52],"v":[{"k":[93],"v":[{"k":[125],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[106],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[125],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[118,97,98,116,115,99,104],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[32,4],[49,4]]},"k":[39],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]},{"k":[125,124],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[115,36825],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"k":[27573],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[97],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[124,103,111],"v":[{"k":[115,36825],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]},{"k":[27573],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[98],"v":[{"k":[125],"v":[{"k":[36825],"v":[{"k":[27573],"v":[{"k":[29992],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[123],"v":[{"k":[120],"v":[{"k":[124],"v":[{"k":[36825],"v":[{"k":[27573],"v":[{"k":[29992],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[120],"v":[{"k":[125],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[124],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[124],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,99,105],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98,115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[124],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[124],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[124],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[98],"v":[{"k":[103],"v":[{"k":[124],"v":[{"k":[108,114],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[124],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[125],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[114],"v":[{"k":[124],"v":[{"k":[125],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]}]},{"k":[97,117],"v":[{"k":[110,112],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[110,108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]},{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]},{"k":[101,105,114,111],"v":[{"k":[98],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]}]},{"k":[110,108],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44,59],"v":[{"d":{"df":2,"dc":[[55,11],[62,10]]}},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]},{"k":[97,105],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[37,5],[47,5],[85,3],[92,1],[94,3],[110,3],[117,1],[119,3]]}}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"k":[97,111,121,117,105,115],"v":[{"k":[114,121,105,120,116],"v":[{"k":[99,107],"v":[{"k":[104],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]},{"k":[110],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[39,46],"v":[{"d":{"df":1,"dc":[[51,1]]}},{"k":[115],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[96,59],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}}]}]}]}]},{"k":[117,110],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[111,117],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,1],[51,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[112],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[94,3],[119,3]]}}]}]}]},{"k":[95],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,3],[51,3]]}}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]}]}]}]}]},{"k":[110,108,99,100],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[107],"v":[{"d":{"df":2,"dc":[[56,6],[64,6]]}}]},{"k":[114],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[99,117,114],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]},{"k":[100,97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,2],[64,3]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]},{"k":[111,101,97,117],"v":[{"k":[118,100,116,114,110],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"d":{"df":1,"dc":[[35,1]]}},{"k":[116,119],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]},{"k":[97],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[55,1],[61,2],[62,1],[78,2]]}}]}]}]}]},{"k":[119],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]},{"k":[117,109],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]},{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[39,115],"v":[{"k":[96,59],"v":[{"d":{"df":2,"dc":[[55,2],[62,1]]},"k":[58,46,65306,65292,12290],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}},{"k":[24378],"v":[{"k":[21046],"v":[{"k":[25226],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25104],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[36716],"v":[{"k":[25104],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[36716],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20174],"v":[{"k":[32780],"v":[{"k":[21435],"v":[{"k":[25481],"v":[{"k":[23614],"v":[{"k":[32512],"v":[{"k":[36716],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[25165],"v":[{"k":[33021],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[39],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]},{"k":[101,105],"v":[{"k":[102,103,109],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[32,1],[35,1],[49,1],[51,1],[59,4],[75,3],[96,1],[113,1]]}}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[34,18]]},"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[88,3],[116,3]]},"k":[44,12289],"v":[{"d":{"df":18,"dc":[[32,1],[49,1],[55,1],[56,1],[61,2],[62,1],[64,1],[78,2],[88,2],[89,1],[90,2],[92,3],[93,4],[114,2],[116,2],[117,3],[118,4],[120,1]]}},{"k":[39],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[12289],"v":[{"k":[39],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48,26376,37,54],"v":[{"k":[49,37],"v":[{"k":[53,54,55,50,49,51,52],"v":[{"k":[39],"v":[{"k":[44,58,93],"v":[{"d":{"df":8,"dc":[[34,1],[36,1],[52,1],[53,1],[56,4],[59,1],[64,4],[75,1]]}},{"d":{"df":2,"dc":[[56,4],[64,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[39],"v":[{"k":[44,58,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,4],[64,4]]}},{"d":{"df":2,"dc":[[56,4],[64,4]]}},{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"k":[39,45],"v":[{"k":[93,44,58],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]},{"d":{"df":2,"dc":[[56,2],[64,2]]}},{"d":{"df":2,"dc":[[56,4],[64,4]]}}]},{"k":[48],"v":[{"k":[53],"v":[{"k":[45],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[96,65292],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[20250],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[34987],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[34987],"v":[{"k":[29992],"v":[{"k":[22312],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25968],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[45,39],"v":[{"k":[48],"v":[{"k":[53,54,55],"v":[{"k":[45,39],"v":[{"k":[49,50],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[41,44,93,65289],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[45,39],"v":[{"k":[48,50],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]},{"k":[50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[45],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[45],"v":[{"k":[48],"v":[{"k":[50,51,52,49],"v":[{"k":[45],"v":[{"k":[49,50],"v":[{"k":[50,52,56],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]},{"k":[52],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]},{"k":[45],"v":[{"k":[48,49],"v":[{"k":[49],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]},{"k":[57,50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]},{"k":[45],"v":[{"k":[48],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]},{"k":[45],"v":[{"k":[49],"v":[{"k":[54],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[56,1],[59,1],[64,1],[75,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[56,1],[59,1],[64,1],[75,1]]}}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[39],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[99,50,54,100,57,55,98,53,101,56,102,51,49,52,48],"v":[{"k":[99,50,97,52,100],"v":[{"k":[99],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}}]}]}]},{"k":[51],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[56],"v":[{"k":[54],"v":[{"k":[50],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[99],"v":[{"k":[100],"v":[{"k":[51],"v":[{"k":[39],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]},{"k":[100],"v":[{"k":[48],"v":[{"k":[100],"v":[{"k":[53],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[102],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]}]},{"k":[49,101,55],"v":[{"k":[97],"v":[{"k":[48],"v":[{"k":[97],"v":[{"k":[56],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[55],"v":[{"k":[48],"v":[{"k":[55],"v":[{"k":[52],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[48],"v":[{"k":[101],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[52,100],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[54],"v":[{"k":[53],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[54,100],"v":[{"k":[98],"v":[{"k":[54],"v":[{"k":[54],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]},{"k":[49,102,100,54,56,57],"v":[{"k":[99],"v":[{"k":[55,97],"v":[{"k":[97],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]},{"k":[56],"v":[{"k":[99],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[54],"v":[{"k":[98],"v":[{"k":[56],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[57],"v":[{"k":[54],"v":[{"k":[102],"v":[{"k":[53],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[98],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[52],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[53],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]},{"k":[50],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"k":[52,53,51,50,55],"v":[{"k":[57],"v":[{"k":[102],"v":[{"k":[56],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[57],"v":[{"k":[97],"v":[{"k":[97],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[97,98],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[57],"v":[{"k":[98],"v":[{"k":[99],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[56],"v":[{"k":[57],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[55],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]},{"k":[100],"v":[{"k":[97],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]}]},{"k":[52,53],"v":[{"k":[54],"v":[{"k":[53],"v":[{"k":[55],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[65,2],[81,2]]}}]}]}]}]}]}]},{"k":[53],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]},{"k":[54,97,101,48,55,100],"v":[{"k":[57],"v":[{"k":[100,48],"v":[{"k":[56],"v":[{"k":[55],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[100],"v":[{"k":[49],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[55],"v":[{"k":[101],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[100,101],"v":[{"k":[100],"v":[{"k":[55],"v":[{"k":[56],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[39],"v":[{"d":{"df":2,"dc":[[59,4],[75,4]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]},{"k":[54],"v":[{"k":[50],"v":[{"k":[97],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[98],"v":[{"k":[99],"v":[{"k":[102],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[98],"v":[{"k":[52],"v":[{"k":[102],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]},{"k":[100,51,56],"v":[{"k":[99],"v":[{"k":[49],"v":[{"k":[97],"v":[{"k":[57],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[55],"v":[{"k":[56],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[56],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]},{"k":[52,102,98,55,49],"v":[{"k":[57],"v":[{"k":[102],"v":[{"k":[52],"v":[{"k":[50],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[100,57,102,48],"v":[{"k":[98],"v":[{"k":[53],"v":[{"k":[99],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[102],"v":[{"k":[55],"v":[{"k":[102],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[39],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]},"k":[44],"v":[{"d":{"df":3,"dc":[[59,2],[75,2],[83,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[90,1],[114,1]]}}]}]}]},{"k":[55],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[102,57],"v":[{"k":[56],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[50],"v":[{"k":[51],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]},{"k":[52],"v":[{"k":[55],"v":[{"k":[52],"v":[{"k":[55],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]},{"k":[55,50,51],"v":[{"k":[97],"v":[{"k":[50],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[53],"v":[{"k":[101],"v":[{"k":[57],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[51,57,54],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]},{"k":[57],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[54],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"k":[50],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]}]}]}]}]},{"k":[52],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[51,49],"v":[{"k":[51],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]},{"k":[49],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,9],[75,9]]}}]}]}]}]}]},{"k":[111,101,97],"v":[{"k":[111],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]},{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[37,5],[47,5],[85,3],[92,1],[94,3],[110,3],[117,1],[119,3]]}}]}]}]},{"k":[108],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[56,6],[64,6]]}}]}]}]}]}]},{"k":[114,101],"v":[{"k":[97,111,101],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[35,1]]},"k":[41,44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[112],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]}]},{"k":[97,120,58,39],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39,120],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"k":[47],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[112],"v":[{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}},{"d":{"df":6,"dc":[[84,2],[85,4],[93,2],[110,4],[111,2],[118,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[93,2],[118,2]]}}]}]},{"k":[121,101],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]},{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[93,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":2,"dc":[[55,7],[62,7]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[116,99,110],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]},{"k":[100,115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[39,116,108,114,98],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[111],"v":[{"k":[112],"v":[{"k":[39,108,114],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39,108,114],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[53,26376,48],"v":[{"k":[37],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[37],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[95,1],[115,1]]},"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,3],[62,3]]}}]}]}]}]}]},{"k":[48,26376],"v":[{"k":[37],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[57,26376,48,49,50,37,53],"v":[{"k":[57],"v":[{"k":[48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[26376,48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[37],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[44,65292],"v":[{"d":{"df":2,"dc":[[59,5],[75,5]]}},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[38271],"v":[{"k":[24230],"v":[{"k":[20805],"v":[{"k":[28385],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[22359],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[26376],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[37],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[31449],"v":[{"k":[28857],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[38382],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[46,1],[51,1]]}}]}]}]}]}]},{"k":[25509],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[39],"v":[{"d":{"df":3,"dc":[[46,1],[51,1],[115,4]]}}]}]}]}]},{"k":[20214],"v":[{"k":[33829],"v":[{"k":[38144],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[46,1],[51,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[30431],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[39],"v":[{"d":{"df":3,"dc":[[46,1],[51,1],[115,4]]},"k":[44],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[39057],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[46,1],[51,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[32034],"v":[{"k":[24341],"v":[{"k":[25806],"v":[{"k":[39],"v":[{"d":{"df":3,"dc":[[46,1],[51,1],[115,4]]},"k":[93],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[26376,37,48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,3]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]},{"k":[26376,48],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"k":[37],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]}]},{"k":[26376,48],"v":[{"k":[39,27700],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]},{"k":[26524],"v":[{"k":[38144],"v":[{"k":[37327],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]},{"k":[37],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]},{"k":[26376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[26376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[27700],"v":[{"k":[37327],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,2]]}}]}]}]}]},{"k":[24230],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,2]]}}]}]}]},{"k":[20013],"v":[{"k":[20102],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[28040],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[20102],"v":[{"k":[39],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[20363,29926],"v":[{"k":[39,20108,19977,110,19968],"v":[{"d":{"df":1,"dc":[[51,1]]}},{"k":[39],"v":[{"d":{"df":1,"dc":[[52,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[52,5]]}}]}]},{"k":[39],"v":[{"d":{"df":1,"dc":[[52,2]]},"k":[93,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[52,3]]}}]},{"d":{"df":1,"dc":[[52,1]]}}]}]},{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]},{"k":[39],"v":[{"d":{"df":1,"dc":[[52,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]},{"k":[21346],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]},{"k":[22270],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[39532],"v":[{"k":[21147],"v":[{"k":[35834],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[33922],"v":[{"k":[20872],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]},{"k":[40065],"v":[{"k":[39],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[58,63],"v":[{"d":{"df":2,"dc":[[55,6],[62,6]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[61,39],"v":[{"k":[39],"v":[{"k":[58,63],"v":[{"d":{"df":2,"dc":[[55,5],[62,5]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[39,61,62,98],"v":[{"k":[58,63],"v":[{"d":{"df":2,"dc":[[55,7],[62,7]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"k":[39],"v":[{"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[39],"v":[{"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[114],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]},"k":[62],"v":[{"k":[121],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[61,1],[78,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[47],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[95],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[56],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[61],"v":[{"k":[39],"v":[{"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]},{"d":{"df":4,"dc":[[55,10],[59,3],[62,10],[75,3]]}},{"k":[41,12290],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[36716],"v":[{"k":[25442],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[31354],"v":[{"k":[26684],"v":[{"k":[65288],"v":[{"k":[20840],"v":[{"k":[35282],"v":[{"k":[21322],"v":[{"k":[35282],"v":[{"k":[31354],"v":[{"k":[26684],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[25442],"v":[{"k":[34892],"v":[{"k":[31526],"v":[{"k":[37117],"v":[{"k":[33021],"v":[{"k":[34987],"v":[{"k":[28040],"v":[{"k":[38500],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27493],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[71,2]]}}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]},{"k":[34121],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,2]]}}]}]}]},{"k":[23376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,2]]}}]}]}]},{"k":[33683],"v":[{"k":[39],"v":[{"k":[93,44],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]},{"d":{"df":1,"dc":[[83,1]]}}]}]}]},{"k":[20108,19977,22235],"v":[{"k":[21608],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]},{"k":[21608],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]},{"k":[21608],"v":[{"k":[39],"v":[{"k":[93],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[29492],"v":[{"k":[26691],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]},{"k":[29615],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":57,"dc":[[0,1],[7,1],[28,7],[30,2],[31,1],[32,22],[33,2],[34,8],[35,21],[36,19],[37,9],[38,5],[42,7],[45,1],[46,2],[47,9],[48,2],[49,22],[51,21],[52,8],[53,19],[54,5],[55,49],[56,32],[58,4],[59,45],[61,17],[62,49],[64,32],[65,4],[71,4],[75,45],[78,17],[81,4],[83,5],[84,1],[85,7],[88,9],[89,1],[90,2],[92,1],[93,2],[94,5],[95,7],[96,6],[97,2],[110,7],[111,1],[112,2],[113,6],[114,2],[115,8],[116,9],[117,1],[118,2],[119,5],[120,1]]},"k":[44,59,41,93,96],"v":[{"d":{"df":51,"dc":[[0,3],[7,3],[28,2],[30,6],[32,14],[34,10],[35,18],[36,22],[37,5],[38,4],[42,2],[46,6],[47,5],[49,13],[51,19],[52,10],[53,22],[54,4],[55,27],[56,41],[58,6],[59,21],[61,7],[62,27],[64,41],[71,6],[75,21],[78,7],[83,7],[84,2],[85,11],[88,5],[89,1],[90,2],[92,4],[93,4],[94,3],[95,8],[96,11],[97,4],[110,11],[111,2],[112,4],[113,11],[114,2],[115,9],[116,5],[117,4],[118,4],[119,3],[120,1]]}},{"d":{"df":53,"dc":[[0,1],[7,1],[28,1],[30,1],[32,8],[33,1],[34,6],[35,4],[36,4],[37,13],[38,2],[42,1],[46,1],[47,13],[48,1],[49,8],[51,4],[52,6],[53,4],[54,2],[55,15],[56,14],[59,6],[61,5],[62,15],[64,14],[65,1],[75,10],[78,5],[81,1],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[95,4],[96,2],[97,1],[110,6],[111,1],[112,1],[113,2],[114,1],[115,4],[116,5],[117,1],[118,2],[119,4],[120,1]]}},{"d":{"df":2,"dc":[[61,5],[78,5]]},"k":[59,96],"v":[{"d":{"df":18,"dc":[[28,2],[31,2],[33,2],[35,22],[36,1],[42,2],[45,2],[48,2],[51,22],[53,1],[58,6],[61,16],[63,1],[65,1],[71,6],[77,1],[78,16],[81,1]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"d":{"df":11,"dc":[[34,1],[35,1],[37,1],[47,1],[51,1],[52,1],[55,3],[56,2],[62,3],[64,2],[95,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]},{"d":{"df":2,"dc":[[55,2],[62,1]]},"k":[46,44,12290],"v":[{"d":{"df":1,"dc":[[55,3]]}},{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[62,2]]},"k":[19981,36825],"v":[{"k":[36807],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[8220],"v":[{"k":[19982],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[65292],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"k":[20215],"v":[{"k":[26684],"v":[{"k":[22823],"v":[{"k":[20110],"v":[{"k":[31561],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,97,105,111,116,110,8230],"v":[{"k":[103,118,115,102,110,97,116,105],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100,116],"v":[{"d":{"df":5,"dc":[[34,10],[35,4],[56,1],[104,1],[107,1]]},"k":[58,115,46],"v":[{"d":{"df":16,"dc":[[0,1],[7,1],[32,1],[34,7],[35,1],[49,1],[51,1],[52,6],[56,3],[58,2],[64,3],[71,2],[83,1],[92,1],[96,1],[113,1]]}},{"d":{"df":2,"dc":[[34,2],[58,1]]},"k":[44,46,101],"v":[{"d":{"df":1,"dc":[[34,1]]}},{"d":{"df":2,"dc":[[34,1],[35,1]]}},{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[35,1]]}}]},{"d":{"df":1,"dc":[[34,1]]}}]}]}]},{"k":[101],"v":[{"k":[108,114],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[46,115],"v":[{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":1,"dc":[[63,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]},{"k":[97],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"d":{"df":5,"dc":[[31,1],[55,3],[62,2],[63,1],[101,1]]}}]},{"k":[116],"v":[{"d":{"df":8,"dc":[[32,3],[37,2],[56,1],[59,3],[65,6],[69,1],[101,1],[105,1]]},"k":[58,46],"v":[{"d":{"df":7,"dc":[[35,1],[36,1],[51,2],[53,1],[83,1],[96,1],[113,1]]}},{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[103],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":5,"dc":[[32,1],[85,1],[99,1],[101,1],[106,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[32,2],[49,2]]}}]}]}]}]},{"k":[107,118,100,115],"v":[{"k":[115],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[33,1]]}}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[59,1]]}}]},{"d":{"df":2,"dc":[[101,1],[107,1]]},"k":[115],"v":[{"d":{"df":1,"dc":[[68,1]]}}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[101,1]]}}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]},"k":[39],"v":[{"k":[115],"v":[{"d":{"df":6,"dc":[[55,1],[61,1],[63,1],[85,1],[94,1],[95,1]]}}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]},{"k":[114,98,116,121,115,110,119],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":6,"dc":[[23,1],[31,1],[32,1],[56,2],[63,5],[107,1]]},"k":[45,44,114,115],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[31,1],[85,1]]}},{"d":{"df":3,"dc":[[31,1],[102,1],[103,1]]}},{"k":[116],"v":[{"d":{"df":1,"dc":[[106,3]]}}]}]}]}]},{"k":[101,111],"v":[{"k":[108],"v":[{"d":{"df":7,"dc":[[32,3],[59,5],[63,5],[88,2],[95,1],[96,2],[101,1]]},"k":[115,44,58,46,63,111,105,108],"v":[{"d":{"df":3,"dc":[[59,1],[63,9],[101,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[36,2]]}},{"d":{"df":2,"dc":[[98,1],[101,1]]}}]},{"d":{"df":3,"dc":[[36,2],[53,1],[59,1]]}},{"d":{"df":12,"dc":[[36,5],[53,5],[56,1],[59,8],[64,1],[75,8],[88,1],[95,1],[96,2],[113,2],[115,1],[116,1]]}},{"d":{"df":1,"dc":[[56,1]]},"k":[39],"v":[{"d":{"df":2,"dc":[[36,4],[53,4]]}}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[59,2],[75,6]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,2],[75,2]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[96,1],[113,1]]}}]}]}]}]}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[101,116,58,105],"v":[{"k":[114,115],"v":[{"k":[44,46],"v":[{"d":{"df":1,"dc":[[33,1]]}},{"d":{"df":1,"dc":[[61,1]]}}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[101],"v":[{"k":[39,114],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,7],[64,7]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":2,"dc":[[35,1],[55,1]]}}]}]},{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"k":[116],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]},{"k":[111,101],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":3,"dc":[[34,2],[59,3],[63,1]]},"k":[115,46],"v":[{"d":{"df":2,"dc":[[34,1],[37,1]]}},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[34,1]]},"k":[115],"v":[{"d":{"df":3,"dc":[[63,1],[68,1],[100,1]]}}]}]}]},{"k":[116],"v":[{"d":{"df":4,"dc":[[55,1],[63,2],[85,1],[94,1]]}}]},{"k":[103],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]},"k":[117,41],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,6]]},"k":[115,44],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[59],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[8203],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[103,1]]}}]},{"k":[107,110,115,98,116,103,118,109],"v":[{"k":[101],"v":[{"d":{"df":17,"dc":[[28,2],[33,1],[35,1],[36,2],[38,2],[55,11],[56,5],[59,2],[61,1],[63,2],[65,1],[69,1],[84,1],[100,1],[101,1],[104,1],[106,1]]},"k":[108,58,115],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[23,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]},{"d":{"df":2,"dc":[[36,1],[55,4]]}},{"d":{"df":1,"dc":[[69,1]]}}]}]},{"k":[107,101],"v":[{"d":{"df":2,"dc":[[37,1],[68,1]]},"k":[115,61,97,105],"v":[{"d":{"df":1,"dc":[[26,1]]}},{"k":[34],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[37,2],[47,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"d":{"df":21,"dc":[[31,1],[32,1],[38,1],[55,2],[56,1],[59,1],[61,4],[63,3],[65,1],[66,1],[69,2],[88,13],[89,3],[90,3],[92,8],[93,5],[95,1],[100,11],[102,1],[104,10],[107,3]]},"k":[99,115,44,97,104,46,45,119],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[28,1],[42,1]]}}]}]}]}]}]},{"d":{"df":7,"dc":[[37,1],[63,1],[88,1],[92,1],[102,1],[104,3],[107,1]]},"k":[101,116,46],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[28,2],[42,2]]}}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[58,44],"v":[{"d":{"df":4,"dc":[[32,4],[49,4],[88,1],[116,1]]}},{"d":{"df":2,"dc":[[36,2],[53,1]]}}]}]}]}]},{"d":{"df":3,"dc":[[59,1],[66,1],[104,1]]}}]},{"d":{"df":3,"dc":[[32,1],[59,1],[69,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[38,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]}]},{"d":{"df":3,"dc":[[59,7],[69,1],[104,1]]}},{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":4,"dc":[[29,1],[38,1],[57,1],[63,1]]},"k":[101,44],"v":[{"k":[110,100],"v":[{"d":{"df":3,"dc":[[33,2],[35,3],[63,1]]},"k":[105,101],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,5]]}}]}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[35,2]]},"k":[115],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"d":{"df":2,"dc":[[35,2],[65,1]]}}]},{"d":{"df":1,"dc":[[38,1]]}}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105,121],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"d":{"df":2,"dc":[[31,1],[55,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":4,"dc":[[34,1],[59,3],[68,1],[107,1]]}}]}]}]},{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":4,"dc":[[34,1],[63,1],[68,1],[69,1]]}}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[37,1]]},"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"d":{"df":2,"dc":[[66,1],[85,1]]},"k":[101,44],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[85,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]},{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]},{"k":[111,99,119,110,97,103,116],"v":[{"k":[107,115],"v":[{"d":{"df":2,"dc":[[63,2],[69,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[97],"v":[{"k":[116,108],"v":[{"k":[101,105],"v":[{"d":{"df":3,"dc":[[23,1],[56,1],[94,1]]},"k":[100],"v":[{"d":{"df":3,"dc":[[32,1],[33,1],[61,1]]}}]},{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[59,1],[103,1]]},"k":[34],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[63,1],[77,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,2]]},"k":[45,101],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]},{"k":[114],"v":[{"d":{"df":2,"dc":[[56,1],[66,1]]},"k":[99,46],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,1],[37,1]]}}]}]}]},{"d":{"df":1,"dc":[[107,1]]}}]}]}]},{"k":[103],"v":[{"d":{"df":5,"dc":[[58,1],[63,1],[65,1],[88,1],[98,1]]},"k":[101,44,105],"v":[{"k":[114,115],"v":[{"d":{"df":4,"dc":[[33,1],[56,1],[63,2],[65,8]]}},{"k":[116],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"d":{"df":1,"dc":[[101,1]]}},{"k":[116],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[103,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":3,"dc":[[36,1],[58,1],[63,1]]},"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":2,"dc":[[58,10],[71,2]]}}]}]}]}]},{"k":[105,97],"v":[{"k":[99],"v":[{"d":{"df":3,"dc":[[63,1],[68,1],[101,1]]},"k":[97],"v":[{"k":[108],"v":[{"d":{"df":3,"dc":[[55,3],[68,1],[101,1]]},"k":[101],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[59],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[63,2],[65,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[58,63,101],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}},{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[63],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]}]},{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[34],"v":[{"k":[62],"v":[{"k":[60],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[62],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[119,1]]},"k":[59],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":8,"dc":[[32,1],[38,2],[49,6],[54,1],[64,8],[110,1],[119,1],[127,2]]},"k":[97,58,47,45,39,104,109,120,12289,61],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[58,105],"v":[{"d":{"df":41,"dc":[[0,1],[7,1],[28,1],[32,8],[34,1],[35,1],[36,1],[37,5],[42,1],[47,5],[49,8],[51,1],[52,1],[53,1],[55,2],[56,7],[58,3],[59,4],[61,2],[62,2],[64,7],[71,3],[75,4],[78,2],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,4],[110,6],[111,1],[114,1],[116,5],[117,1],[118,2],[119,4],[120,1]]}},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[56,4],[64,4]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":11,"dc":[[30,1],[36,3],[46,1],[53,3],[56,4],[59,1],[64,4],[75,1],[83,1],[96,1],[113,1]]}},{"k":[121],"v":[{"d":{"df":1,"dc":[[49,3]]},"k":[45],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]}]}]},{"k":[97],"v":[{"k":[120],"v":[{"k":[105,101],"v":[{"k":[115],"v":[{"d":{"df":6,"dc":[[32,6],[56,4],[85,1],[88,2],[94,3],[103,1]]},"k":[44,46,58],"v":[{"d":{"df":2,"dc":[[32,1],[56,2]]}},{"d":{"df":2,"dc":[[56,1],[85,1]]}},{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]}]}]},{"k":[93],"v":[{"d":{"df":1,"dc":[[34,1]]}}]},{"k":[114],"v":[{"d":{"df":1,"dc":[[36,1]]}}]},{"k":[108],"v":[{"k":[104,110,58],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[113],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[40],"v":[{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[61,58],"v":[{"k":[34],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[48],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[118],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[107],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[49],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[47],"v":[{"k":[120],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[107],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[61],"v":[{"k":[34],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[62],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]},"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[59,9],[75,9]]},"k":[120],"v":[{"d":{"df":2,"dc":[[59,3],[75,3]]}}]}]}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":2,"dc":[[64,1],[130,4]]}}]},{"k":[34],"v":[{"k":[48],"v":[{"k":[112],"v":[{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]},{"d":{"df":11,"dc":[[55,2],[56,3],[59,2],[61,2],[62,2],[64,6],[75,2],[78,2],[94,1],[96,1],[98,1]]},"k":[48,51,100,53,55,50,52,56,57,49,96,44,54,34,110,93,65289,46,12289,47],"v":[{"d":{"df":6,"dc":[[35,1],[51,1],[55,4],[62,4],[88,1],[116,1]]},"k":[44,93,49,55,59,37,48],"v":[{"d":{"df":18,"dc":[[0,1],[7,1],[28,1],[34,2],[35,1],[42,1],[51,1],[52,2],[55,4],[58,1],[59,2],[62,4],[71,1],[75,2],[85,1],[94,1],[110,1],[119,1]]}},{"d":{"df":8,"dc":[[0,1],[7,1],[28,1],[35,1],[42,1],[51,1],[58,1],[71,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[57,53,49,50,44,51,52,55],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[36,18],[53,18]]}}]}]},{"d":{"df":2,"dc":[[55,6],[62,8]]},"k":[93,50,12289],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,10],[62,10]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[50],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[12289],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[51],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,2]]},"k":[93,46],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,10],[62,10]]}}]},{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":4,"dc":[[55,2],[62,2],[92,1],[117,1]]}},{"d":{"df":2,"dc":[[55,1],[62,1]]},"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,10],[62,10]]}}]}]},{"d":{"df":1,"dc":[[124,2]]},"k":[93,53,46],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]},"k":[44],"v":[{"d":{"df":2,"dc":[[55,8],[62,8]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"d":{"df":1,"dc":[[101,2]]}}]},{"d":{"df":2,"dc":[[101,2],[124,2]]}}]},{"k":[41],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}},{"d":{"df":1,"dc":[[85,3]]},"k":[12290],"v":[{"k":[30001],"v":[{"k":[20110],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[44,93],"v":[{"d":{"df":6,"dc":[[85,1],[88,1],[97,1],[110,1],[112,1],[116,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]},{"k":[52,57,56,50,44,49,53,48],"v":[{"k":[44],"v":[{"d":{"df":14,"dc":[[30,1],[35,1],[46,1],[51,1],[59,1],[75,1],[92,1],[94,3],[95,2],[96,2],[113,2],[115,2],[117,1],[119,3]]},"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]},{"k":[54],"v":[{"k":[56],"v":[{"k":[57],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[41],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,2],[54,2]]}}]}]},{"d":{"df":10,"dc":[[38,1],[54,1],[85,1],[88,3],[89,1],[90,2],[110,1],[114,2],[116,3],[120,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":4,"dc":[[55,2],[56,2],[62,2],[64,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"d":{"df":4,"dc":[[32,1],[56,2],[73,2],[104,1]]},"k":[65292,65288],"v":[{"k":[24403],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[22522],"v":[{"k":[30784],"v":[{"k":[24211],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]},{"k":[48,44,52,50,49,93,53,51,37],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"d":{"df":8,"dc":[[32,1],[37,9],[47,9],[49,1],[55,4],[62,4],[85,3],[110,3]]}},{"k":[56],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[56],"v":[{"k":[52],"v":[{"k":[55],"v":[{"k":[56],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[53],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[37,9],[47,9],[85,2],[110,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":1,"dc":[[101,1]]},"k":[45,12290],"v":[{"k":[55],"v":[{"k":[53],"v":[{"k":[37],"v":[{"d":{"df":2,"dc":[[69,1],[83,1]]}}]}]}]},{"d":{"df":1,"dc":[[124,1]]}}]}]},{"k":[54,44,49,93],"v":[{"k":[54],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":6,"dc":[[37,9],[47,9],[55,2],[62,2],[85,2],[110,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":2,"dc":[[85,1],[110,1]]}}]},{"k":[55,51,44,48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":14,"dc":[[65,2],[81,2],[84,1],[85,3],[88,3],[89,1],[90,1],[93,2],[110,3],[111,1],[114,1],[116,3],[118,2],[120,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[85,2],[110,2]]}}]}]},{"k":[44,49,46],"v":[{"d":{"df":6,"dc":[[37,9],[47,9],[55,2],[62,2],[85,4],[110,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44,49,55,52,50],"v":[{"d":{"df":16,"dc":[[37,9],[47,9],[55,4],[62,4],[84,1],[85,4],[88,2],[89,1],[90,1],[93,2],[110,4],[111,1],[114,1],[116,2],[118,2],[120,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":4,"dc":[[55,2],[56,1],[62,2],[64,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[44,48],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}},{"k":[93,44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}},{"d":{"df":4,"dc":[[92,1],[94,3],[117,1],[119,3]]}}]}]},{"k":[44,49,57,48],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":6,"dc":[[55,1],[56,5],[59,3],[62,1],[64,5],[75,3]]}},{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[100],"v":[{"d":{"df":1,"dc":[[56,4]]}}]},{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"d":{"df":14,"dc":[[66,1],[67,1],[68,1],[73,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1]]},"k":[57],"v":[{"k":[46],"v":[{"k":[48],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]},{"k":[20202,21487,21464,24314,22534,38754,26609,34429,25105,27704,22914],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[19978],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[32428],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[24120],"v":[{"k":[35782],"v":[{"k":[65292],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[30340],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[26368],"v":[{"k":[22810],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[36229],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[79,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[23545],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[32479],"v":[{"k":[19968],"v":[{"k":[20107],"v":[{"k":[24773],"v":[{"k":[21069],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21472],"v":[{"k":[21152],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[39044],"v":[{"k":[26399],"v":[{"k":[20540],"v":[{"k":[21644],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[21644],"v":[{"k":[39044],"v":[{"k":[26399],"v":[{"k":[25351],"v":[{"k":[26631],"v":[{"k":[30340],"v":[{"k":[20559],"v":[{"k":[24046],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[37327],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[20250],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21464],"v":[{"k":[24471],"v":[{"k":[28151],"v":[{"k":[20081],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[35201],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[24182],"v":[{"k":[38480],"v":[{"k":[21046],"v":[{"k":[20854],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35758],"v":[{"k":[27599,19981],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[38388],"v":[{"k":[36317],"v":[{"k":[22823],"v":[{"k":[20110],"v":[{"k":[32452],"v":[{"k":[20869],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[38388],"v":[{"k":[36317],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[20813],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[19978],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[30340],"v":[{"k":[24402],"v":[{"k":[31867],"v":[{"k":[21644],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]},{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[19981],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[20869],"v":[{"k":[21516],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31215],"v":[{"k":[22270],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20108],"v":[{"k":[21040],"v":[{"k":[19977],"v":[{"k":[32452],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[26368],"v":[{"k":[22810],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[36229],"v":[{"k":[36807],"v":[{"k":[22235],"v":[{"k":[32452],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[21542],"v":[{"k":[21017],"v":[{"k":[23601],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[26041],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[32780],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[36776],"v":[{"k":[35782],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[35201],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[22312],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[21644],"v":[{"k":[30830],"v":[{"k":[20999],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[36229],"v":[{"k":[36807],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[38750],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26159],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"k":[26609],"v":[{"k":[23376],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[38388],"v":[{"k":[38553],"v":[{"k":[35201],"v":[{"k":[36866],"v":[{"k":[24403],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[26609],"v":[{"k":[23376],"v":[{"k":[22826],"v":[{"k":[31364],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[38598],"v":[{"k":[20013],"v":[{"k":[22312],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[36127],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[25215],"v":[{"k":[36733],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[21512],"v":[{"k":[29702],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[38388],"v":[{"k":[38553],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28982],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[26102],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[27604],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[26377],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[20381],"v":[{"k":[28982],"v":[{"k":[19981],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[26368],"v":[{"k":[22909],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[22810],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[36824,24456],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[32473],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[21152],"v":[{"k":[20837],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[32534],"v":[{"k":[30721],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[23558],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[22320],"v":[{"k":[21306],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[27668],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[26631],"v":[{"k":[27880],"v":[{"k":[65292],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[21271],"v":[{"k":[20140],"v":[{"k":[65292],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[19978],"v":[{"k":[28023],"v":[{"k":[12289],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[24191],"v":[{"k":[24030],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[22320],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[19977],"v":[{"k":[22320],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[27668],"v":[{"k":[36136],"v":[{"k":[37327],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38590],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[23613],"v":[{"k":[37327],"v":[{"k":[23558],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[25511],"v":[{"k":[21046],"v":[{"k":[22312],"v":[{"k":[20116],"v":[{"k":[20010],"v":[{"k":[20197],"v":[{"k":[20869],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25226],"v":[{"k":[36739],"v":[{"k":[23567],"v":[{"k":[25110],"v":[{"k":[19981],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21512],"v":[{"k":[24182],"v":[{"k":[25104],"v":[{"k":[31532],"v":[{"k":[20116],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[21629],"v":[{"k":[21517],"v":[{"k":[20026],"v":[{"k":[34],"v":[{"k":[20854],"v":[{"k":[23427],"v":[{"k":[34],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[21508],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[37117],"v":[{"k":[24517],"v":[{"k":[39035],"v":[{"k":[20840],"v":[{"k":[37096],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[35768],"v":[{"k":[26356],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36828],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]},{"k":[26524],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[32473],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[30007],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[22899],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[26631],"v":[{"k":[27880],"v":[{"k":[20986],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[30007],"v":[{"k":[22899],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[24615],"v":[{"k":[21035],"v":[{"k":[36523],"v":[{"k":[39640],"v":[{"k":[21644],"v":[{"k":[20307],"v":[{"k":[37325],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[29366],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[36741],"v":[{"k":[21161],"v":[{"k":[32447],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[22899],"v":[{"k":[29983],"v":[{"k":[20307],"v":[{"k":[37325],"v":[{"k":[39640],"v":[{"k":[20110],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[20302],"v":[{"k":[20110],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23569],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[51],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]},{"d":{"df":9,"dc":[[55,1],[56,4],[62,1],[64,5],[67,1],[79,1],[98,1],[100,1],[127,1]]},"k":[54,51,49,48,50,57,56,53,52,44,96,55,34,93,114,46,8221,12289,100],"v":[{"k":[44,46,54],"v":[{"d":{"df":12,"dc":[[0,1],[7,1],[28,1],[35,1],[36,1],[42,1],[51,1],[53,1],[55,4],[58,1],[62,4],[71,1]]}},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]},"k":[53,93,57,55,50,52,44,48],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[30,1],[35,1],[46,1],[51,1],[95,2],[96,2],[113,2],[115,2]]},"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]},{"k":[55],"v":[{"k":[53],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[49],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"d":{"df":2,"dc":[[65,2],[81,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[94,3],[119,3]]}}]}]},{"k":[48,44,49,52,56],"v":[{"k":[44,93],"v":[{"d":{"df":6,"dc":[[30,1],[35,1],[46,1],[51,1],[96,1],[113,1]]},"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]},{"d":{"df":2,"dc":[[94,1],[119,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[94,2],[119,2]]}}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":7,"dc":[[32,1],[36,1],[53,1],[55,2],[59,1],[62,4],[75,1]]},"k":[48,44,41,46,49,93,109],"v":[{"k":[112,44],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[33,1]]},"k":[12289],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[20026],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[97,1],[112,1]]}}]},{"d":{"df":5,"dc":[[38,1],[55,2],[59,7],[62,2],[75,7]]}},{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[55,1]]},"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]},"k":[65289],"v":[{"k":[65292],"v":[{"k":[29978],"v":[{"k":[33267],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[21315],"v":[{"k":[19975],"v":[{"k":[32423],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[44,57,49,50,51],"v":[{"d":{"df":4,"dc":[[32,1],[49,1],[55,2],[62,2]]}},{"k":[52],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[55],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[54],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[46,53,44,48],"v":[{"k":[49],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,1],[64,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[93],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]}]},{"k":[49,54],"v":[{"k":[57],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[49],"v":[{"k":[49],"v":[{"k":[55],"v":[{"k":[57],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[57,44,49],"v":[{"k":[51,44],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"d":{"df":4,"dc":[[55,2],[62,2],[90,1],[114,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"k":[51,49,44,53],"v":[{"k":[52],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]},{"d":{"df":14,"dc":[[38,1],[54,1],[55,4],[56,2],[59,10],[62,4],[64,2],[75,10],[84,1],[85,2],[93,2],[110,2],[111,1],[118,2]]}},{"d":{"df":1,"dc":[[55,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[56,7]]}}]},{"d":{"df":13,"dc":[[56,1],[66,1],[68,1],[73,1],[98,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1]]}},{"d":{"df":1,"dc":[[64,1]]}},{"k":[36824,30001,22534,24403,121,19981,27668,21452,39292,25955],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[24038],"v":[{"k":[21491],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[30340],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[36716],"v":[{"k":[21270],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[21487],"v":[{"k":[35265],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110],"v":[{"k":[24452],"v":[{"k":[21521],"v":[{"k":[36317],"v":[{"k":[31163],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[26377],"v":[{"k":[32593],"v":[{"k":[26684],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[21442],"v":[{"k":[32771],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20869],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[20540],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21472,31215],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[26368],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[26159],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[32452],"v":[{"k":[21482],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20004],"v":[{"k":[21040],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[26368],"v":[{"k":[22810],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[36229],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[35201],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21644],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[36127],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[30456],"v":[{"k":[36317],"v":[{"k":[24456],"v":[{"k":[36828],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[26159],"v":[{"k":[27169],"v":[{"k":[31946],"v":[{"k":[19981],"v":[{"k":[28165],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[124,1]]}},{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[35013],"v":[{"k":[39280],"v":[{"k":[26469],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[31181],"v":[{"k":[31867],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[20250],"v":[{"k":[35753],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20998],"v":[{"k":[24515],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27873],"v":[{"k":[22270],"v":[{"k":[36824],"v":[{"k":[32463],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[21644],"v":[{"k":[22320],"v":[{"k":[22270],"v":[{"k":[32467],"v":[{"k":[21512],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[22810],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[21547],"v":[{"k":[30456],"v":[{"k":[21453],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[35201],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[19981],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[27491],"v":[{"k":[36127],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32780],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[35823],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[19981],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[34987],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[31934],"v":[{"k":[30830],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[24403],"v":[{"k":[21508],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[25509],"v":[{"k":[36817],"v":[{"k":[26102],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[24038],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[20986],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[36873],"v":[{"k":[29992],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[21335],"v":[{"k":[19969],"v":[{"k":[26684],"v":[{"k":[23572],"v":[{"k":[29611],"v":[{"k":[29808],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[21491],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[26469],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[22270],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[26377],"v":[{"k":[36275],"v":[{"k":[22815],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[26377],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[26102],"v":[{"k":[25165],"v":[{"k":[33021],"v":[{"k":[21576],"v":[{"k":[29616],"v":[{"k":[24456],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19968],"v":[{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[26497],"v":[{"k":[23569],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38388],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24456],"v":[{"k":[31354],"v":[{"k":[30340],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[21644],"v":[{"k":[19981],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[101,1],[106,2],[129,1]]}}]},{"d":{"df":8,"dc":[[35,2],[51,2],[55,9],[56,7],[59,3],[62,9],[64,9],[75,3]]},"k":[48,51,53,50,49,57,44,52,54,56,41,55,107,96,34,115,93,46,8221,12289],"v":[{"d":{"df":6,"dc":[[35,1],[51,1],[59,1],[75,1],[101,1],[124,1]]},"k":[44,48,46,53,50,49,52,93,59],"v":[{"d":{"df":16,"dc":[[0,2],[7,2],[28,2],[34,2],[35,3],[36,5],[42,2],[51,3],[52,2],[53,5],[55,2],[58,2],[59,8],[62,2],[71,2],[75,8]]}},{"d":{"df":4,"dc":[[55,2],[61,1],[62,2],[78,1]]},"k":[46,37,48,44,93,65285],"v":[{"d":{"df":1,"dc":[[38,2]]},"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"d":{"df":2,"dc":[[33,2],[48,1]]},"k":[59,12290,46,65292],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}},{"d":{"df":2,"dc":[[48,1],[129,2]]}},{"d":{"df":2,"dc":[[68,1],[106,2]]}},{"k":[32780],"v":[{"k":[19981],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[41],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]},{"d":{"df":6,"dc":[[36,1],[53,1],[61,1],[78,1],[97,1],[112,1]]}},{"d":{"df":3,"dc":[[38,2],[54,2],[83,2]]}},{"k":[12290],"v":[{"k":[19982],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[21576],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[20063],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26159],"v":[{"k":[35813],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[24635],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[12289],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36724],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[50,51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[32,2],[49,2]]}}]}]},{"k":[56],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[56,44],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]},{"k":[44],"v":[{"d":{"df":14,"dc":[[59,3],[61,2],[75,3],[78,2],[84,1],[85,2],[90,1],[93,2],[94,1],[110,2],[111,1],[114,1],[118,2],[119,1]]}}]},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"k":[53,46,55,49,48,50,52],"v":[{"k":[44],"v":[{"d":{"df":8,"dc":[[30,1],[35,1],[46,1],[51,1],[55,1],[62,1],[96,1],[113,1]]},"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]},{"k":[50,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[54],"v":[{"k":[48],"v":[{"k":[52],"v":[{"k":[56],"v":[{"k":[57],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]},{"k":[49],"v":[{"k":[48],"v":[{"k":[53],"v":[{"k":[48],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]},{"k":[44,93],"v":[{"d":{"df":1,"dc":[[83,1]]}},{"d":{"df":1,"dc":[[83,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"d":{"df":1,"dc":[[63,1]]},"k":[52,48,51,44],"v":[{"k":[56],"v":[{"k":[44,46],"v":[{"d":{"df":8,"dc":[[30,1],[35,1],[46,1],[51,1],[95,2],[96,2],[113,2],[115,2]]}},{"d":{"df":1,"dc":[[30,1]]}}]}]},{"k":[44,93],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[85,1],[110,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":4,"dc":[[56,1],[59,1],[64,1],[75,1]]}}]},{"d":{"df":1,"dc":[[129,2]]},"k":[53,46,49,50,54,51,57,55,93,48],"v":[{"k":[46],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]},"k":[50,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]},{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[50,44],"v":[{"k":[52],"v":[{"k":[57],"v":[{"k":[50],"v":[{"k":[56],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[53],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[56],"v":[{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,1]]},"k":[41,44],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]},{"k":[53],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":4,"dc":[[56,1],[64,1],[94,1],[119,1]]}}]},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[88,1],[116,1]]}}]}]}]},{"k":[50,46,53,51,56,58,48,93],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]},{"k":[53,50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[52],"v":[{"k":[54],"v":[{"k":[48],"v":[{"k":[53],"v":[{"k":[55],"v":[{"k":[55],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]},{"k":[56],"v":[{"k":[57],"v":[{"k":[53],"v":[{"k":[54],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[49],"v":[{"k":[51],"v":[{"k":[58],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[41,65289],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":3,"dc":[[83,1],[85,1],[110,1]]}}]},{"d":{"df":2,"dc":[[85,1],[110,1]]}}]},{"k":[46,57,44,53,49,48,93],"v":[{"k":[51],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[48],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[36,18],[53,18]]}}]}]}]},{"d":{"df":2,"dc":[[55,4],[62,4]]}},{"k":[52],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[94,3],[119,3]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]},{"k":[44],"v":[{"d":{"df":6,"dc":[[88,3],[89,1],[90,1],[114,1],[116,3],[120,1]]}}]}]},{"d":{"df":12,"dc":[[32,1],[35,1],[36,5],[49,1],[51,1],[53,5],[55,3],[56,4],[59,4],[62,3],[64,4],[75,4]]}},{"k":[46,55,51,44,48],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[53],"v":[{"k":[54],"v":[{"k":[56],"v":[{"k":[53],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[52,44],"v":[{"k":[53],"v":[{"k":[54],"v":[{"k":[57],"v":[{"k":[49],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":8,"dc":[[55,2],[59,2],[62,2],[75,2],[85,1],[90,1],[110,1],[114,1]]}},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[46,53,55,44,48],"v":[{"k":[52,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"d":{"df":2,"dc":[[59,2],[75,2]]}},{"k":[44,93],"v":[{"d":{"df":3,"dc":[[59,1],[75,1],[83,1]]}},{"d":{"df":1,"dc":[[83,1]]}}]}]},{"k":[46,51,44,49,50,48,93],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":6,"dc":[[37,9],[47,9],[59,2],[75,2],[85,4],[110,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[44],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[94,3],[119,3]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[83,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[48,44],"v":[{"k":[57,44],"v":[{"k":[54],"v":[{"k":[56],"v":[{"k":[54],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[83,1]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[65289],"v":[{"k":[12289],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"d":{"df":1,"dc":[[56,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"d":{"df":2,"dc":[[63,1],[77,1]]},"k":[116],"v":[{"d":{"df":1,"dc":[[56,2]]}}]},{"k":[93,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"d":{"df":2,"dc":[[59,1],[75,1]]}}]},{"d":{"df":15,"dc":[[61,1],[66,1],[67,1],[68,1],[73,1],[98,1],[99,1],[100,1],[101,1],[102,1],[103,1],[104,1],[105,1],[106,1],[107,1]]}},{"d":{"df":1,"dc":[[64,1]]}},{"k":[20202,20197,19968,22914,36981,38754,36991,20351,22270,24403,21452,39292],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[22312],"v":[{"k":[37327],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[21333],"v":[{"k":[19968],"v":[{"k":[30340],"v":[{"k":[20215],"v":[{"k":[20540],"v":[{"k":[21644],"v":[{"k":[34913],"v":[{"k":[37327],"v":[{"k":[26631],"v":[{"k":[20934],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[79,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30005],"v":[{"k":[21830],"v":[{"k":[32593],"v":[{"k":[31449],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20026],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[33021],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[22320],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[20174],"v":[{"k":[26368],"v":[{"k":[21021],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[32593],"v":[{"k":[31449],"v":[{"k":[21040],"v":[{"k":[26368],"v":[{"k":[32456],"v":[{"k":[19979],"v":[{"k":[35746],"v":[{"k":[21333],"v":[{"k":[36141],"v":[{"k":[20080],"v":[{"k":[36825],"v":[{"k":[25972],"v":[{"k":[20010],"v":[{"k":[27969],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[36716],"v":[{"k":[21270],"v":[{"k":[29366],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"k":[23427],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[33021],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20174],"v":[{"k":[30475],"v":[{"k":[21040],"v":[{"k":[32593],"v":[{"k":[31449],"v":[{"k":[21040],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[36141],"v":[{"k":[20080],"v":[{"k":[30340],"v":[{"k":[26368],"v":[{"k":[32456],"v":[{"k":[36716],"v":[{"k":[21270],"v":[{"k":[29575],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[27493],"v":[{"k":[39588],"v":[{"k":[30340],"v":[{"k":[36716],"v":[{"k":[21270],"v":[{"k":[29575],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[22320],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[21644],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[25152],"v":[{"k":[22312],"v":[{"k":[65292],"v":[{"k":[36827],"v":[{"k":[32780],"v":[{"k":[33021],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[24615],"v":[{"k":[22320],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[21508],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[36716],"v":[{"k":[21270],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[21435],"v":[{"k":[25913],"v":[{"k":[21892],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[30340],"v":[{"k":[22810],"v":[{"k":[36793],"v":[{"k":[24418],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[26159],"v":[{"k":[26377],"v":[{"k":[38480],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26377],"v":[{"k":[20116],"v":[{"k":[20010],"v":[{"k":[20197],"v":[{"k":[19978],"v":[{"k":[35201],"v":[{"k":[35780],"v":[{"k":[20272],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[29289],"v":[{"k":[65292],"v":[{"k":[26080],"v":[{"k":[35770],"v":[{"k":[26159],"v":[{"k":[36718],"v":[{"k":[24275],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[20250],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[21644],"v":[{"k":[28151],"v":[{"k":[20081],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38590],"v":[{"k":[20197],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26524],"v":[{"k":[27599,19968],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[38590],"v":[{"k":[24230],"v":[{"k":[23601],"v":[{"k":[20250],"v":[{"k":[36234],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[20013],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[36807],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[25110],"v":[{"k":[35768],"v":[{"k":[35813],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[27492],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26368],"v":[{"k":[20339],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24490],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21407],"v":[{"k":[21017],"v":[{"k":[12290],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[20351],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26131],"v":[{"k":[20110],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[21051],"v":[{"k":[24847],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[34987],"v":[{"k":[25130],"v":[{"k":[26029],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[35823],"v":[{"k":[23548],"v":[{"k":[35835],"v":[{"k":[32773],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31215],"v":[{"k":[22270],"v":[{"k":[35201],"v":[{"k":[29992],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[19978],"v":[{"k":[26377],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[23618],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[35201],"v":[{"k":[23613],"v":[{"k":[37327],"v":[{"k":[30830],"v":[{"k":[20445],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[23558],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21644],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[36866],"v":[{"k":[24403],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22270],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21464],"v":[{"k":[24471],"v":[{"k":[21487],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20813],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[32452],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[24230],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[33394],"v":[{"k":[35843],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24378],"v":[{"k":[35843],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[33394],"v":[{"k":[35843],"v":[{"k":[26469],"v":[{"k":[31361],"v":[{"k":[20986],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[23454],"v":[{"k":[32447],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32447],"v":[{"k":[65292],"v":[{"k":[39318],"v":[{"k":[20808],"v":[{"k":[35201],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32447],"v":[{"k":[21644],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[32447],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[35201],"v":[{"k":[23613],"v":[{"k":[21147],"v":[{"k":[35201],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28165],"v":[{"k":[26224],"v":[{"k":[21487],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[26377],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[36234],"v":[{"k":[22810],"v":[{"k":[65292],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[36234],"v":[{"k":[22810],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[21487],"v":[{"k":[35265],"v":[{"k":[24230],"v":[{"k":[36234],"v":[{"k":[20302],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[65289],"v":[{"k":[26102],"v":[{"k":[20250],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[32780],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]},{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[27491],"v":[{"k":[21521],"v":[{"k":[21644],"v":[{"k":[36127],"v":[{"k":[21521],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[36873],"v":[{"k":[29992],"v":[{"k":[24046],"v":[{"k":[20540],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[21333],"v":[{"k":[19968],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[35201],"v":[{"k":[27714],"v":[{"k":[20854],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[20013],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[38646],"v":[{"k":[25110],"v":[{"k":[36127],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[30830],"v":[{"k":[20445],"v":[{"k":[21508],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[24635],"v":[{"k":[21644],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":53,"dc":[[0,1],[7,1],[28,1],[30,2],[32,4],[34,3],[35,10],[36,8],[37,9],[38,2],[42,1],[46,2],[47,9],[49,5],[51,8],[52,3],[53,8],[54,2],[55,14],[56,13],[58,3],[59,2],[61,4],[62,16],[64,15],[65,2],[71,3],[75,2],[78,4],[81,2],[83,1],[84,1],[85,6],[88,5],[89,1],[90,1],[92,1],[93,2],[94,5],[95,5],[96,3],[97,1],[110,6],[111,1],[112,1],[113,3],[114,1],[115,7],[116,5],[117,1],[118,2],[119,5],[120,1]]},"k":[41,44,59,46],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[28,2],[42,2]]}}]},{"d":{"df":21,"dc":[[32,2],[35,2],[36,2],[49,2],[51,2],[53,2],[55,8],[56,3],[59,6],[62,8],[64,3],[75,6],[83,2],[88,1],[95,1],[96,1],[97,1],[112,1],[113,1],[115,1],[116,1]]}},{"d":{"df":8,"dc":[[36,1],[38,2],[53,1],[54,2],[56,1],[61,2],[64,1],[78,2]]}},{"k":[106],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[92],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[59,1],[75,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[59,4],[75,4]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115,110,112,109,116],"v":[{"d":{"df":5,"dc":[[31,1],[37,1],[63,1],[69,1],[93,1]]},"k":[105,101,97,117,46],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":32,"dc":[[0,1],[23,2],[28,3],[30,1],[31,5],[34,1],[35,3],[37,1],[55,4],[56,4],[58,1],[59,2],[61,2],[63,6],[65,9],[66,2],[67,1],[68,2],[69,1],[84,1],[85,1],[89,1],[98,3],[99,1],[100,1],[101,3],[102,1],[103,1],[104,1],[105,2],[106,1],[107,1]]}}]}]},{"d":{"df":38,"dc":[[23,2],[26,7],[28,4],[29,1],[30,4],[31,3],[32,2],[33,2],[34,3],[35,2],[36,3],[37,1],[38,3],[55,9],[56,20],[58,3],[59,2],[61,2],[63,3],[65,28],[66,1],[67,1],[68,2],[69,3],[85,3],[88,2],[90,3],[93,1],[94,2],[98,4],[99,1],[100,1],[101,3],[102,2],[104,3],[105,3],[106,1],[107,1]]},"k":[114,115,100,46,58,102],"v":[{"d":{"df":11,"dc":[[30,1],[33,1],[34,1],[35,3],[55,1],[58,1],[59,1],[65,1],[69,1],[99,1],[101,4]]},"k":[115,39,34,46],"v":[{"d":{"df":10,"dc":[[30,1],[35,2],[36,1],[55,3],[56,1],[63,8],[65,6],[100,1],[101,1],[103,2]]},"k":[44,39,58],"v":[{"d":{"df":2,"dc":[[23,1],[63,1]]}},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[104,1]]}}]},{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"d":{"df":1,"dc":[[30,1]]}},{"d":{"df":4,"dc":[[63,1],[69,1],[98,1],[106,1]]}}]},{"d":{"df":6,"dc":[[28,1],[56,1],[67,1],[92,1],[100,1],[103,1]]}},{"d":{"df":28,"dc":[[31,3],[32,3],[34,2],[35,3],[36,1],[38,2],[55,6],[56,3],[57,1],[59,4],[61,7],[63,6],[65,1],[66,2],[67,1],[68,2],[69,3],[92,1],[94,1],[95,1],[96,4],[99,1],[100,1],[102,1],[103,1],[104,2],[105,2],[106,2]]},"k":[44],"v":[{"d":{"df":3,"dc":[[55,1],[61,1],[65,1]]}}]},{"d":{"df":2,"dc":[[31,2],[37,1]]}},{"d":{"df":1,"dc":[[37,2]]}},{"k":[117],"v":[{"k":[108],"v":[{"d":{"df":4,"dc":[[66,1],[68,2],[104,1],[107,1]]}}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":7,"dc":[[31,1],[32,1],[33,1],[37,2],[55,1],[63,1],[104,1]]},"k":[58,44],"v":[{"d":{"df":1,"dc":[[37,1]]}},{"d":{"df":2,"dc":[[63,1],[85,1]]}}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":9,"dc":[[32,3],[36,1],[38,3],[55,1],[66,1],[68,1],[69,1],[97,1],[99,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[110,100,122,105,97,116,101,99,114],"v":[{"k":[101],"v":[{"k":[99,101],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[23,1]]}}]}]}]}]}]}]},{"k":[100],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":8,"dc":[[30,1],[37,1],[56,3],[67,1],[85,4],[88,2],[93,1],[106,1]]},"k":[115,108,101],"v":[{"k":[116,112],"v":[{"k":[97,111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"d":{"df":9,"dc":[[23,1],[30,3],[33,1],[34,1],[56,1],[59,1],[63,5],[69,1],[107,1]]},"k":[46,105],"v":[{"d":{"df":2,"dc":[[36,1],[98,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":4,"dc":[[56,1],[63,3],[98,1],[107,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[111],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[98,1]]}}]}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]},{"k":[121],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[31,2]]}}]}]}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[26,1]]}}]}]},{"k":[111,116,113,118,102,110,109],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"d":{"df":1,"dc":[[55,2]]}},{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,4]]}}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[116],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[98],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[120],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[96,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[46,58],"v":[{"d":{"df":1,"dc":[[107,1]]}},{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[107,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[37,2],[84,2]]},"k":[112,100,115,103],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[34,1]]}}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[101,105],"v":[{"d":{"df":5,"dc":[[35,1],[37,1],[56,1],[58,4],[61,2]]},"k":[100,46,115,41],"v":[{"d":{"df":3,"dc":[[58,1],[61,2],[63,1]]}},{"d":{"df":1,"dc":[[58,1]]}},{"d":{"df":1,"dc":[[63,2]]}},{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[58,2]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[101,105],"v":[{"d":{"df":2,"dc":[[63,1],[65,4]]},"k":[100,115,44],"v":[{"d":{"df":2,"dc":[[63,1],[65,2]]}},{"d":{"df":1,"dc":[[63,1]]}},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]},{"k":[100],"v":[{"d":{"df":1,"dc":[[53,1]]}}]},{"k":[105],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]},{"k":[36895],"v":[{"k":[19978],"v":[{"k":[25163],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]},{"k":[21462],"v":[{"d":{"df":2,"dc":[[7,1],[43,7]]},"k":[28789,28857,30340,31995],"v":[{"k":[24863],"v":[{"d":{"df":1,"dc":[[41,1]]}}]},{"k":[20987],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]},{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[32479],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[20998],"v":[{"k":[37197],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25345],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[22810,24120,26356,30340,65306,20102],"v":[{"k":[31181],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[19979],"v":[{"k":[19968],"v":[{"k":[31687],"v":[{"k":[25945],"v":[{"k":[31243],"v":[{"k":[91],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[20013],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20197],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35268],"v":[{"k":[30340],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[21253],"v":[{"k":[25324],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[12289],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[31243],"v":[{"k":[24230],"v":[{"k":[19978],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[32780],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[39],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]},{"k":[26102,39292],"v":[{"k":[38388],"v":[{"k":[27169],"v":[{"k":[29256],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[12289],"v":[{"k":[26093],"v":[{"k":[26085],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[26641],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[22278],"v":[{"k":[35282],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[23567],"v":[{"k":[30475],"v":[{"k":[20102],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[22278],"v":[{"k":[35282],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[65292],"v":[{"k":[21512],"v":[{"k":[29702],"v":[{"k":[22320],"v":[{"k":[25645],"v":[{"k":[37197],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24418],"v":[{"k":[25104],"v":[{"k":[26356],"v":[{"k":[20855],"v":[{"k":[20010],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]},"k":[33719,38754,65292,12290,20540],"v":[{"k":[21462],"v":[{"k":[20026],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[24555],"v":[{"k":[36895],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340,25552],"v":[{"k":[20195,20363],"v":[{"k":[30721],"v":[{"k":[20250,20013],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]},{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[20102],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"k":[23376],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[20102],"v":[{"k":[22312],"v":[{"k":[22278],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22266],"v":[{"k":[23450],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[35201],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[22312],"v":[{"k":[22278],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[12290],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[30340],"v":[{"k":[24605],"v":[{"k":[36335],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[21033],"v":[{"k":[29992],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[35832],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[20250],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[51,2]]},"k":[32780],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"d":{"df":15,"dc":[[7,1],[40,1],[42,1],[47,1],[48,1],[51,4],[62,2],[64,1],[77,1],[78,2],[81,4],[113,1],[116,1],[117,1],[119,1]]},"k":[21018,32472,39033,32447,36719,29615,39035,24320,91,26377,23481,20108,25511,35752,28145,19979,40736,22270,36825,19968,22823,31995,25968,20219,39292,22352,30334,24494,25991,19981,33258,36817,19978,37197,20351,32477,96,21487,21516,22278,40664,35266],"v":[{"k":[25165],"v":[{"k":[20445],"v":[{"k":[23384],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]},{"k":[22270],"v":[{"k":[21069],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[20013],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]},{"k":[23450],"v":[{"k":[21046],"v":[{"d":{"df":1,"dc":[[43,2]]},"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30828],"v":[{"k":[20214],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[36739],"v":[{"k":[22909],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[19981],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36866],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[32416],"v":[{"k":[32467],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22659],"v":[{"k":[36739],"v":[{"k":[24046],"v":[{"k":[65292],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[35797],"v":[{"k":[39564],"v":[{"k":[26469],"v":[{"k":[30830],"v":[{"k":[23450],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21738],"v":[{"k":[31181],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[26377],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[32463],"v":[{"k":[39564],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]},{"k":[22987,21457],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29615],"v":[{"k":[22659],"v":[{"k":[20013],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[24555],"v":[{"k":[36895],"v":[{"k":[19978],"v":[{"k":[25163],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[20102],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[24403],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[20063],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[22320],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22120],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[34987],"v":[{"k":[38144],"v":[{"k":[27585],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[24635],"v":[{"k":[26159],"v":[{"k":[24212],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32500],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[36724],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26377],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[12290],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21046],"v":[{"k":[21488],"v":[{"k":[20013],"v":[{"k":[25171],"v":[{"k":[21360],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[35770],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20808],"v":[{"k":[26126],"v":[{"k":[30830],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[122],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33394],"v":[{"k":[31995],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[12289],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[32473],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[21322],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[30340],"v":[{"k":[27973],"v":[{"k":[33394],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[23618],"v":[{"k":[65292],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[27973],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[20363,30340],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[32473],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20102],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[65292],"v":[{"k":[28176],"v":[{"k":[21464],"v":[{"k":[33394],"v":[{"k":[31561],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30475],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23558],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[19982],"v":[{"k":[20854],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[25104],"v":[{"k":[27491],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26631],"v":[{"k":[24748],"v":[{"k":[28014],"v":[{"k":[21040],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[19978],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[20250],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[26159],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[65292],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[26159],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[24448],"v":[{"k":[24448],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[25226],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[22522,27178,25105,96,31532],"v":[{"k":[30784],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[26159],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]},"k":[35774],"v":[{"k":[32622],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]},{"k":[20108],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[25152],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[22522],"v":[{"k":[30784],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[19978],"v":[{"k":[21319],"v":[{"k":[20102],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[33021],"v":[{"k":[30475],"v":[{"k":[20986],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[32773],"v":[{"k":[24635],"v":[{"k":[21644],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010,34892],"v":[{"k":[31354,31995],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[21015],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[27178],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[31354],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[20854],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[22810,37096],"v":[{"k":[25968],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20998],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[37117],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[23613],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[22871],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[31243],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[21033],"v":[{"k":[29992],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[20013],"v":[{"k":[35774,65292],"v":[{"k":[32622],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[36825],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[38598,21487,28857],"v":[{"k":[20013],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[35270],"v":[{"k":[21270],"v":[{"k":[25152,30340],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[36890],"v":[{"k":[36947],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[30340],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[24863],"v":[{"k":[30693],"v":[{"k":[22240],"v":[{"k":[32032],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[32534],"v":[{"k":[30721],"v":[{"k":[21644],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[26159],"v":[{"k":[24456],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24471],"v":[{"k":[24403],"v":[{"k":[65292],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[22320],"v":[{"k":[22686],"v":[{"k":[24378],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[25509],"v":[{"k":[19979],"v":[{"k":[26469],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26469],"v":[{"k":[30475],"v":[{"k":[30475],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[26377],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[26469],"v":[{"k":[22686],"v":[{"k":[24378],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[30340],"v":[{"k":[30340],"v":[{"k":[25216],"v":[{"k":[24039],"v":[{"k":[21644],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19982],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12289],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[12289],"v":[{"k":[21463],"v":[{"k":[20247],"v":[{"k":[20154],"v":[{"k":[32676],"v":[{"k":[12289],"v":[{"k":[31038],"v":[{"k":[20250],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[31561],"v":[{"k":[22240],"v":[{"k":[32032],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[19981],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25226],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[29420],"v":[{"k":[31435],"v":[{"k":[30340],"v":[{"k":[22240],"v":[{"k":[32032],"v":[{"k":[21435],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[24320],"v":[{"k":[22987],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[20808],"v":[{"k":[20811],"v":[{"k":[21046],"v":[{"k":[20303],"v":[{"k":[33258],"v":[{"k":[30001],"v":[{"k":[21019],"v":[{"k":[20316],"v":[{"k":[30340],"v":[{"k":[28909],"v":[{"k":[24773],"v":[{"k":[65292],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[19968],"v":[{"k":[19979],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20221],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20877],"v":[{"k":[21435],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[23545],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32929],"v":[{"k":[31080],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[21644],"v":[{"k":[32511],"v":[{"k":[33394],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"k":[29420],"v":[{"k":[29305],"v":[{"k":[30340],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[21563],"v":[{"k":[21512],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[30340],"v":[{"k":[24120],"v":[{"k":[35782],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[21644],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22788],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]},{"k":[20309],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[21644],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[31561],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[26377],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[65288],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[65289],"v":[{"k":[20013],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[12289],"v":[{"k":[26497],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]},{"k":[20449],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[20013],"v":[{"k":[20351,65292],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[20570],"v":[{"k":[23567],"v":[{"k":[22270],"v":[{"k":[26631],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23545],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21516],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[21487],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[26377],"v":[{"k":[25152],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013,65288],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[21152],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[24378],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[25554],"v":[{"k":[20540],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[21464],"v":[{"k":[65288],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[20998],"v":[{"k":[35010],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[21512],"v":[{"k":[24182],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[31561],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[30340],"v":[{"k":[36807],"v":[{"k":[28193],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}},{"k":[19968,36848,25991],"v":[{"k":[20010],"v":[{"k":[22823],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[20102],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[21644],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[19968],"v":[{"k":[38190],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20195],"v":[{"k":[30721],"v":[{"k":[20013],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[27178],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[31163],"v":[{"k":[25955],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[36724],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[32780],"v":[{"k":[35328],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[22343],"v":[{"k":[20026],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[31515],"v":[{"k":[21345],"v":[{"k":[23572],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26102],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[30053],"v":[{"k":[26377],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[27178],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[21644],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[19968],"v":[{"k":[21516],"v":[{"k":[20889],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33394],"v":[{"k":[31561],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[19978],"v":[{"k":[20570],"v":[{"k":[20102],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[26469],"v":[{"k":[36798],"v":[{"k":[21040],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[20381],"v":[{"k":[26087],"v":[{"k":[24819],"v":[{"k":[20445],"v":[{"k":[30041],"v":[{"k":[26087],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22823],"v":[{"k":[22810],"v":[{"k":[22788],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20026],"v":[{"k":[20445],"v":[{"k":[38505],"v":[{"k":[36215],"v":[{"k":[35265],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[22312],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[96],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20013],"v":[{"k":[65306],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35270],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36873],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[19982],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[30340],"v":[{"k":[29305],"v":[{"k":[28857],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[24819],"v":[{"k":[35201],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[32490],"v":[{"k":[21563],"v":[{"k":[21512],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20276],"v":[{"k":[38543],"v":[{"k":[30528],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[32780],"v":[{"k":[24341],"v":[{"k":[36215],"v":[{"k":[24773],"v":[{"k":[24863],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[27492],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20849],"v":[{"k":[20139],"v":[{"k":[12290],"v":[{"k":[27492],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[24212],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20110],"v":[{"k":[27492],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[26368],"v":[{"k":[21518],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[19978],"v":[{"k":[25165],"v":[{"k":[20250],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[26159],"v":[{"k":[23545],"v":[{"k":[27492],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29615],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[21644],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23519],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[32447],"v":[{"k":[26159],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[26377],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[36208],"v":[{"k":[21521],"v":[{"k":[35299],"v":[{"k":[37322],"v":[{"k":[20102],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[39044],"v":[{"k":[27979],"v":[{"k":[26410],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[32447],"v":[{"k":[26368],"v":[{"k":[21487],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20004],"v":[{"k":[26465],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[20813],"v":[{"k":[24178],"v":[{"k":[25200],"v":[{"k":[27491],"v":[{"k":[24120],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25321,20013,39033],"v":[{"d":{"df":1,"dc":[[7,1]]},"k":[21738,28210],"v":[{"k":[31181],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[45,1]]},"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[36719],"v":[{"k":[30828],"v":[{"k":[20214],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[12289],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[12289],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[32508],"v":[{"k":[21512],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26579],"v":[{"k":[22120],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]},{"k":[33539],"v":[{"k":[22260],"v":[{"k":[20013,22806],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]},{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,15]]}}]},{"k":[20214,26723,26412,23383],"v":[{"d":{"df":2,"dc":[[7,2],[47,1]]},"k":[12290,65292,21517,21363,21518,22841,26412],"v":[{"d":{"df":1,"dc":[[7,1]]}},{"k":[20869,26368,37027,25214,21487],"v":[{"k":[23481],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]},{"k":[22810],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[19977],"v":[{"k":[32423],"v":[{"k":[30446],"v":[{"k":[24405],"v":[{"k":[12290],"v":[{"k":[23558],"v":[{"k":[36335],"v":[{"k":[24452],"v":[{"k":[21450],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20040],"v":[{"k":[21487,25903],"v":[{"k":[20197],"v":[{"k":[33258,20351],"v":[{"k":[34892],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[21644],"v":[{"k":[27880],"v":[{"k":[20876],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[25345],"v":[{"k":[20102],"v":[{"k":[33258],"v":[{"k":[27880],"v":[{"k":[20876],"v":[{"k":[65292],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[24418],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]},{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30690],"v":[{"k":[37327],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[36719],"v":[{"k":[20214],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[20174],"v":[{"k":[32593],"v":[{"k":[19978],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[21040],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[36164],"v":[{"k":[28304],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31216],"v":[{"k":[23567],"v":[{"k":[20889],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]},{"k":[21487],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]},{"k":[65288],"v":[{"k":[20551],"v":[{"k":[35774],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]},{"k":[19979],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[23601],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[20110],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[26041],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[20173],"v":[{"k":[28982],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21435],"v":[{"k":[20174],"v":[{"k":[32769],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[20013],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[23547],"v":[{"k":[25214],"v":[{"k":[26356],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[93,32534,25903,30340,20013],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111,47],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35,41],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[20013],"v":[{"k":[35814],"v":[{"k":[32454],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[20102],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[26412],"v":[{"k":[25991],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36753],"v":[{"k":[25351],"v":[{"k":[21335],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[25345],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20840],"v":[{"k":[23616],"v":[{"k":[27880],"v":[{"k":[20876],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[21018],"v":[{"k":[25165],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[26377],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20960],"v":[{"k":[31181],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26102,20171],"v":[{"k":[20505],"v":[{"k":[35201],"v":[{"k":[30041],"v":[{"k":[24847],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[30340],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[35823],"v":[{"k":[35748],"v":[{"k":[20026],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32461],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[26377],"v":[{"k":[21015],"v":[{"k":[20986],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,2]]}}]}]}]}]}]},{"k":[22359,29255,26679,12289,26694],"v":[{"k":[65288,25110,30340],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[22823,30340],"v":[{"k":[23567],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545,36793,38452],"v":[{"k":[40784],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26694],"v":[{"k":[12289],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[65288],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24433],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20301,23485],"v":[{"k":[32622],"v":[{"k":[21644],"v":[{"k":[26059],"v":[{"k":[36716],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[30001],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[22359],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27573],"v":[{"k":[65288,20063,30340],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[21644],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[75,1]]},"k":[25490],"v":[{"k":[29256],"v":[{"k":[21644],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26694],"v":[{"k":[12289],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[21644],"v":[{"k":[35013],"v":[{"k":[39280],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[21644],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39068,25551,38452],"v":[{"k":[33394],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[36793],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24433],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110,31995],"v":[{"k":[36825,26631,25490,25991],"v":[{"k":[20123],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[19979],"v":[{"k":[19968],"v":[{"k":[31687],"v":[{"k":[25945],"v":[{"k":[31243],"v":[{"k":[91],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[110],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[20013],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31614],"v":[{"k":[30340],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[29256],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24819],"v":[{"k":[35937],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23383],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270,25805],"v":[{"k":[30340,65288],"v":[{"k":[33410,36793],"v":[{"k":[28857],"v":[{"k":[34987],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[26102],"v":[{"k":[27492],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[34987],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34987],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[26102],"v":[{"k":[27492],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[34987],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]},{"k":[20316],"v":[{"k":[31526],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20837,29992],"v":[{"d":{"df":3,"dc":[[7,1],[42,3],[53,1]]},"k":[21018,26609,25552],"v":[{"k":[21018],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[7,2]]}}]}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21518],"v":[{"k":[32512],"v":[{"k":[37117],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[26694],"v":[{"k":[65292],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[21518],"v":[{"k":[32512],"v":[{"k":[37117],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[43,1],[62,2],[81,1]]},"k":[20195,22270,36825,27880,25991],"v":[{"k":[30721],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[29255],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[20876],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25913],"v":[{"k":[20026],"v":[{"k":[20174],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[96],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":9,"dc":[[51,5],[53,1],[54,2],[62,18],[64,6],[78,1],[110,1],[116,2],[119,1]]},"k":[30446,24320,25277,25509,33410,24418,22270,20540,31995,20803,21508,37197,27599,21069,35270,31532,25968,32467,36755,25152,21478,20363,21015,32500,34892,21160,26041,29256,24773,29238,25991,26680,31867,24038,36870,8220,26102,31283,25903,33021,27169,20860,20248,26684,35268,30456,96,21462,22278,40644,36335],"v":[{"k":[24405],"v":[{"k":[26032],"v":[{"k":[24314],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]},{"k":[21457],"v":[{"k":[32773,20043],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[26469],"v":[{"k":[32452],"v":[{"k":[21512],"v":[{"k":[20986],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[26356],"v":[{"k":[20005],"v":[{"k":[26684],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[20320],"v":[{"k":[26816],"v":[{"k":[26597],"v":[{"k":[20986],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[23569],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[20102],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21021],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]},{"k":[35937],"v":[{"k":[21644],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[65292],"v":[{"k":[24418],"v":[{"k":[25104],"v":[{"k":[21487],"v":[{"k":[20114],"v":[{"k":[25442],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[21475],"v":[{"d":{"df":1,"dc":[[48,1]]}}]},{"k":[28857],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[22312],"v":[{"k":[27983],"v":[{"k":[35272],"v":[{"k":[22120],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[22987],"v":[{"k":[32456],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[26159],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[65292,21270],"v":[{"k":[20294],"v":[{"k":[20854],"v":[{"k":[23454],"v":[{"k":[19981],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[65306,12290],"v":[{"d":{"df":1,"dc":[[62,1]]}},{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[34920],"v":[{"k":[20013,26377],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[23558],"v":[{"k":[20250],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[20989],"v":[{"k":[25968],"v":[{"k":[20570],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[36339],"v":[{"k":[36716],"v":[{"k":[21040],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22320],"v":[{"k":[22336],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[24377],"v":[{"k":[20986],"v":[{"k":[23545],"v":[{"k":[35805],"v":[{"k":[26694],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[20570],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[19979],"v":[{"k":[38075],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[20250,22312,35797,12290,28155,20316],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"d":{"df":1,"dc":[[64,1]]}},{"k":[35797],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"d":{"df":1,"dc":[[78,1]]}},{"k":[21152],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]},{"k":[20026],"v":[{"k":[36335],"v":[{"k":[24452],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]},{"k":[21015],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[34987],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]},{"k":[32032],"v":[{"k":[34987],"v":[{"d":{"df":1,"dc":[[51,2]]}}]}]},{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21644],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[36981],"v":[{"k":[20174],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[21629],"v":[{"k":[21517],"v":[{"k":[20064],"v":[{"k":[24815],"v":[{"k":[65292],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21644],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[65288],"v":[{"k":[21363],"v":[{"k":[26412],"v":[{"k":[25991],"v":[{"k":[24320],"v":[{"k":[22836],"v":[{"k":[30340],"v":[{"k":[37027],"v":[{"k":[31181],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[26356],"v":[{"k":[25153],"v":[{"k":[24179],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31181,19968,39033],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[23601],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[20102],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[25226],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[8220],"v":[{"k":[32447],"v":[{"k":[8221],"v":[{"k":[65292],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[25226],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[8220],"v":[{"k":[38271],"v":[{"k":[24230],"v":[{"k":[8221],"v":[{"k":[12290],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[26356],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[27827],"v":[{"k":[27969],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[26641],"v":[{"k":[22270],"v":[{"k":[20063],"v":[{"k":[37117],"v":[{"k":[20250],"v":[{"k":[20570],"v":[{"k":[20986],"v":[{"k":[21508],"v":[{"k":[33258],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015,34892],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,2]]}}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[65292],"v":[{"k":[20026],"v":[{"k":[27599],"v":[{"k":[39033],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[21462],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35273],"v":[{"k":[26144,26679],"v":[{"k":[23556],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20998],"v":[{"k":[20026],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[19982],"v":[{"k":[20998],"v":[{"k":[27573],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[20248],"v":[{"k":[20808],"v":[{"k":[32423],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]},{"k":[22235,19968],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[21363],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]},{"k":[20010,34892],"v":[{"k":[36755],"v":[{"k":[20986],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[36755],"v":[{"k":[20837],"v":[{"k":[65288],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[65288],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19978],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[65292,39033,35774,12290],"v":[{"k":[26469],"v":[{"k":[33258],"v":[{"k":[20110],"v":[{"k":[27492],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]}]}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,3]]}}]},{"k":[32622],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[65289],"v":[{"k":[20173],"v":[{"k":[27491],"v":[{"k":[24120],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[116,1]]}}]}]},{"k":[26524,26500],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,3]]},"k":[20363],"v":[{"k":[22914],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[58],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]},{"k":[20837,20986],"v":[{"k":[65292,12290],"v":[{"k":[26469,26159],"v":[{"k":[33258],"v":[{"k":[20110],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[19978],"v":[{"k":[28216],"v":[{"k":[30340],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[20013],"v":[{"k":[20197],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[26159],"v":[{"k":[21518],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[26377],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[25968,39033],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[20013],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[37117],"v":[{"k":[19981],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[21462],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[30418],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[23376],"v":[{"k":[65306],"v":[{"d":{"df":2,"dc":[[62,1],[64,1]]}}]}]},{"k":[65288,19978],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[110],"v":[{"k":[65289],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[34892],"v":[{"k":[65288],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[65289],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[24230],"v":[{"k":[65288,8221,21517,37324],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[8220],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[24847],"v":[{"k":[24605],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[47],"v":[{"k":[21015],"v":[{"k":[65289],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,3]]}},{"k":[36830],"v":[{"k":[36215],"v":[{"k":[26469],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21517],"v":[{"k":[12290],"v":[{"k":[65288],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[38271],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,2]]}}]}]}]}]}]},{"k":[19978],"v":[{"k":[38754],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[30011],"v":[{"k":[26469],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[27491],"v":[{"k":[22312],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[12290,23545],"v":[{"d":{"df":1,"dc":[[72,1]]}},{"k":[22278],"v":[{"k":[28857],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[23450],"v":[{"k":[20301],"v":[{"k":[12290],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[21495],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[33258],"v":[{"k":[34892],"v":[{"k":[26356],"v":[{"k":[25442],"v":[{"k":[25110],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[33258],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[26500],"v":[{"k":[24314],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[28857],"v":[{"k":[26159],"v":[{"k":[30001],"v":[{"k":[24213],"v":[{"k":[23618],"v":[{"k":[26694],"v":[{"k":[26550],"v":[{"k":[30340],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[26469],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[24211],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20917],"v":[{"k":[19979,12290],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[23618],"v":[{"k":[32423],"v":[{"k":[20013],"v":[{"k":[32479],"v":[{"k":[19968],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[32780],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,2]]}}]}]}]}]}]},{"k":[24515],"v":[{"k":[65292],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[20116],"v":[{"k":[22823],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[12289],"v":[{"k":[21313],"v":[{"k":[20116],"v":[{"k":[39033],"v":[{"k":[29305],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[20840],"v":[{"k":[38754],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[65292],"v":[{"k":[22260],"v":[{"k":[32469],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[21465],"v":[{"k":[20107],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[22270],"v":[{"k":[8220],"v":[{"k":[34920],"v":[{"k":[8221],"v":[{"k":[26356],"v":[{"k":[33021],"v":[{"k":[20256],"v":[{"k":[8220],"v":[{"k":[36798],"v":[{"k":[8221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32972],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[25925],"v":[{"k":[20107],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[26356],"v":[{"k":[36731],"v":[{"k":[26494],"v":[{"k":[22320],"v":[{"k":[21019],"v":[{"k":[36896],"v":[{"k":[28385],"v":[{"k":[36275],"v":[{"k":[21508],"v":[{"k":[31181],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22411,30446],"v":[{"k":[25551,26159,35774],"v":[{"k":[36848],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[26159],"v":[{"k":[30001],"v":[{"k":[31038],"v":[{"k":[21306],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[24110],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[32500],"v":[{"k":[25252],"v":[{"k":[24182],"v":[{"k":[21457],"v":[{"k":[24067],"v":[{"k":[21040],"v":[{"k":[91],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[26377],"v":[{"k":[30528],"v":[{"k":[19981],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[24863],"v":[{"k":[35874],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[30340],"v":[{"k":[36129],"v":[{"k":[29486],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[23450],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]},{"k":[23485],"v":[{"k":[24230],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[25972],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]},{"k":[19978],"v":[{"k":[35282],"v":[{"k":[20026],"v":[{"k":[38646],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[20197],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[20026],"v":[{"k":[21333],"v":[{"k":[20301],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21521],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[121],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26174],"v":[{"k":[31034],"v":[{"k":[8221],"v":[{"k":[8220],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[8221],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20505],"v":[{"k":[26174,38544],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[34255],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]},{"k":[23450],"v":[{"k":[21644],"v":[{"k":[21521],"v":[{"k":[21518],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25345],"v":[{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[21147],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[21629],"v":[{"k":[21517],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[20914],"v":[{"k":[31361],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[32780],"v":[{"k":[19988],"v":[{"k":[38450],"v":[{"k":[27490],"v":[{"k":[20102],"v":[{"k":[20869],"v":[{"k":[37096],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[30340],"v":[{"k":[26292],"v":[{"k":[38706],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20320],"v":[{"k":[20381],"v":[{"k":[26087],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22359],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[20381],"v":[{"k":[26087],"v":[{"k":[26159],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[30340],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23481],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[30830],"v":[{"k":[23454],"v":[{"k":[26377],"v":[{"k":[24456],"v":[{"k":[24378],"v":[{"k":[30340],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[27426],"v":[{"k":[36814],"v":[{"k":[25552],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20808],"v":[{"k":[32423],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[33021],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[20351],"v":[{"k":[20854],"v":[{"k":[26356],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[33539],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[52],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[20851],"v":[{"k":[25193],"v":[{"k":[23637],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20102],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21450],"v":[{"k":[20854],"v":[{"k":[29992],"v":[{"k":[27861],"v":[{"k":[35831],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[25163],"v":[{"k":[20876],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20540],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[34920],"v":[{"k":[26126],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[23558],"v":[{"k":[34987],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[65292],"v":[{"k":[29702],"v":[{"k":[35770],"v":[{"k":[19978],"v":[{"k":[21482],"v":[{"k":[35201],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[65292],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[24182],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[22312],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[30340],"v":[{"k":[24212],"v":[{"k":[29992],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29615],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[22278],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[29305],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[114,1]]}}]}]},{"k":[24452],"v":[{"k":[12290,20316,65292],"v":[{"d":{"df":1,"dc":[[119,1]]}},{"k":[20026],"v":[{"k":[30690],"v":[{"k":[37327],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]},{"k":[23558],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]},{"k":[24320,21360],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]},{"k":[25152,20986],"v":[{"k":[26377],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[30340],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[26469],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[21046],"v":[{"k":[19968,22270],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]},{"k":[34920],"v":[{"d":{"df":1,"dc":[[42,1]]},"k":[12290],"v":[{"k":[32780],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]},{"k":[22791],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[20102],"v":[{"k":[39640,23485],"v":[{"k":[23485],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]},{"k":[39640],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[7,2]]}}]}]}]}]}]}]}]}]}]},{"k":[22120],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[12290,33410],"v":[{"k":[22312],"v":[{"k":[21018],"v":[{"k":[25165],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[34987],"v":[{"k":[38144],"v":[{"k":[27585],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[34987],"v":[{"k":[37325],"v":[{"k":[24314],"v":[{"k":[26102],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21518,25152,21069,38388],"v":[{"k":[65292],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]},{"k":[20197],"v":[{"k":[29992],"v":[{"k":[8220],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[8221],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[19981],"v":[{"k":[24456],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[24605],"v":[{"k":[32500],"v":[{"k":[30340],"v":[{"k":[35789],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[36890],"v":[{"k":[20439],"v":[{"k":[26131],"v":[{"k":[25026],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[30452],"v":[{"k":[20197],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[20173],"v":[{"k":[28982],"v":[{"k":[34987],"v":[{"k":[27491],"v":[{"k":[24120],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[37329],"v":[{"k":[39069],"v":[{"k":[26469],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[29609],"v":[{"k":[20855],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[30340],"v":[{"k":[25903],"v":[{"k":[20986],"v":[{"k":[36229],"v":[{"k":[20986],"v":[{"k":[20102],"v":[{"k":[39044],"v":[{"k":[31639],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26381],"v":[{"k":[39280],"v":[{"k":[33457],"v":[{"k":[36153],"v":[{"k":[36828],"v":[{"k":[20302],"v":[{"k":[20110],"v":[{"k":[39044],"v":[{"k":[31639],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[26041],"v":[{"k":[38754],"v":[{"k":[36229],"v":[{"k":[20986],"v":[{"k":[25110],"v":[{"k":[19981],"v":[{"k":[36275],"v":[{"k":[21464],"v":[{"k":[24471],"v":[{"k":[19968],"v":[{"k":[30446],"v":[{"k":[20102],"v":[{"k":[28982],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":8,"dc":[[7,2],[45,1],[51,8],[62,10],[64,3],[75,5],[78,1],[116,1]]},"k":[20102,22270,26609],"v":[{"k":[21487,26041,20445],"v":[{"k":[20197],"v":[{"k":[35753],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23545],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[23613],"v":[{"k":[37327],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[26377],"v":[{"k":[35821],"v":[{"k":[27861],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20415],"v":[{"k":[25302,22823],"v":[{"k":[25341],"v":[{"k":[65292],"v":[{"k":[25226],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[23478],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[20102],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[96],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[19979],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[21518],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35777],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[34920],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]},{"k":[26465],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[33394],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]},{"k":[21518],"v":[{"k":[23601,65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]},{"k":[25105,20174],"v":[{"k":[20204],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[91],"v":[{"k":[20256],"v":[{"k":[20837],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21491],"v":[{"k":[21521],"v":[{"k":[24038],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[32039],"v":[{"k":[38752],"v":[{"k":[25918],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27861,20415,24335],"v":[{"k":[21021,29983,26174,38544,36941],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]},{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[26159],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[12290],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34255],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]},{"k":[21382],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"d":{"df":1,"dc":[[62,1]]}},{"k":[30340,19968],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[31867],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[31867],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[30446],"v":[{"k":[21069],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33268],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[22312],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[26041],"v":[{"k":[26696],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363,29616,26102],"v":[{"k":[24182,19988,65289,25110],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]},{"k":[27983],"v":[{"k":[35272],"v":[{"k":[22120],"v":[{"k":[26131],"v":[{"k":[23849],"v":[{"k":[28291],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65288],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[26159],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[26159],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25139],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[26159],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32773],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[26576,30340,22522,22534,21335],"v":[{"k":[31181],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[30097],"v":[{"k":[38382],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[21015],"v":[{"k":[34920],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[24605],"v":[{"k":[36335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,2]]}}]},{"k":[26412],"v":[{"k":[30340],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"k":[31215],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[32473],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19969],"v":[{"k":[26684],"v":[{"k":[23572],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21644],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[112,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39044,26102],"v":[{"k":[35272],"v":[{"k":[21644],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]},{"k":[24207],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110,30784,26412,32447],"v":[{"k":[20934],"v":[{"k":[22791],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[65292],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"d":{"df":3,"dc":[[7,1],[42,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351,22278,39292,25240,25955,26609],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[29615],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]},{"k":[22270],"v":[{"d":{"df":1,"dc":[[115,1]]}}]},{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":2,"dc":[[116,1],[125,1]]}}]}]},{"k":[28857],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]},{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]},{"k":[24320,30340],"v":[{"k":[22987],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[24688],"v":[{"k":[24403],"v":[{"k":[22320],"v":[{"k":[21453],"v":[{"k":[26144],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[34987],"v":[{"k":[25130],"v":[{"k":[26029],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[24456],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[35823],"v":[{"k":[23548],"v":[{"k":[35266],"v":[{"k":[20247],"v":[{"k":[20570],"v":[{"k":[20986],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[30340],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[24038],"v":[{"k":[20391],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20986],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21491,19978],"v":[{"k":[36793],"v":[{"k":[30011],"v":[{"k":[36127],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[26465],"v":[{"k":[34892],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36793],"v":[{"k":[30011],"v":[{"k":[36127],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[23376],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[20813],"v":[{"k":[21644],"v":[{"k":[24120],"v":[{"k":[35782],"v":[{"k":[36829],"v":[{"k":[32972],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[35823],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450,21521],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[22270,20102,32500,25968,21160,65292,22635,20026],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[37197,22823],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21644],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":2,"dc":[[7,1],[51,1]]}}]}]}]}]}]},{"k":[23567],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]},{"k":[25968,32500,25240,31867],"v":[{"k":[25454],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[24230],"v":[{"k":[65292,30340],"v":[{"k":[33021],"v":[{"k":[35774],"v":[{"k":[25104],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[39034],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[33021],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26368],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]},{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[65306],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[39033],"v":[{"k":[30340],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[24577],"v":[{"k":[24211],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[65292],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"k":[91],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[41],"v":[{"k":[30340],"v":[{"k":[12300],"v":[{"k":[22312],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[24211],"v":[{"k":[12301],"v":[{"k":[31456],"v":[{"k":[33410],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21542],"v":[{"k":[21017],"v":[{"k":[65292],"v":[{"k":[30001],"v":[{"k":[26368],"v":[{"k":[38271],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[12290],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[20013],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[25918],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20805],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[25551],"v":[{"k":[36793],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65288],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[25551],"v":[{"k":[36793],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[25551],"v":[{"k":[36793],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[19981],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[65289],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"k":[19982],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[21313],"v":[{"k":[20998],"v":[{"k":[30456],"v":[{"k":[20284],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[23637],"v":[{"k":[24320],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[96],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[35813],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[26102],"v":[{"k":[23601],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[65307],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31532],"v":[{"k":[19977],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[21015],"v":[{"k":[24207],"v":[{"k":[21495],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[38376],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[7,1],[42,1]]}}]}]}]}]},{"k":[29992,24471],"v":[{"d":{"df":7,"dc":[[40,1],[45,3],[47,1],[51,1],[62,3],[64,2],[111,1]]},"k":[21018,25628,24517,27169,26041,65306,21322,20998,22806,24207,26032,32773],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21644],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"d":{"df":2,"dc":[[7,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32034],"v":[{"k":[24341],"v":[{"k":[25806],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[20851],"v":[{"k":[38190],"v":[{"k":[23383],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]},{"k":[39035],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]},{"k":[26495],"v":[{"k":[25340],"v":[{"k":[25509],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[20808],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"d":{"df":2,"dc":[[72,1],[73,1]]},"k":[58],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]},{"d":{"df":1,"dc":[[47,3]]}},{"k":[24452],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[20102],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[27573],"v":[{"k":[22411],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[37096],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[21495],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,2]]}}]}]},{"k":[30340],"v":[{"d":{"df":1,"dc":[[73,1]]}}]},{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[26356],"v":[{"k":[25913],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35813],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[20256],"v":[{"k":[20837],"v":[{"k":[35813],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[21363],"v":[{"k":[20026],"v":[{"k":[35813],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[38500],"v":[{"k":[38750],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26679,20004,26159,26102,31181,37324,20010,20123,20960,27425,21477],"v":[{"k":[20320,35774,27809,65292,30456,30340],"v":[{"k":[30340],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23601],"v":[{"k":[35806],"v":[{"k":[29983],"v":[{"k":[20102],"v":[{"k":[65281],"v":[{"d":{"df":1,"dc":[[7,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[24615],"v":[{"k":[23601],"v":[{"k":[24046],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22278,23601],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[20250],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33021],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[29233],"v":[{"k":[24515],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[30340],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[32477],"v":[{"k":[23545],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[23427],"v":[{"k":[26159],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[26159],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[23485],"v":[{"k":[39640],"v":[{"k":[20013],"v":[{"k":[36739],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[26465],"v":[{"k":[36793],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[22823],"v":[{"k":[20110],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[26159],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[21453],"v":[{"k":[20043],"v":[{"k":[21017],"v":[{"k":[21453],"v":[{"k":[65307],"v":[{"k":[24403],"v":[{"k":[23427],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22411],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[32477],"v":[{"k":[23545],"v":[{"k":[30340],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31181],"v":[{"k":[20351,26041],"v":[{"k":[29992],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[24046],"v":[{"k":[24322],"v":[{"k":[24456],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[20570],"v":[{"k":[21040],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[34987],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[65292],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[24402],"v":[{"k":[21151],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]},"k":[19968,25968,20010],"v":[{"k":[20010,20123],"v":[{"k":[20851,8220],"v":[{"k":[20110],"v":[{"k":[8220],"v":[{"k":[26576],"v":[{"k":[31449],"v":[{"k":[28857],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[26159],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[26469],"v":[{"k":[28304],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[8212],"v":[{"k":[8212],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[51],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[65292],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[33829],"v":[{"k":[38144],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[51],"v":[{"k":[49],"v":[{"k":[48],"v":[{"k":[65292],"v":[{"k":[32852],"v":[{"k":[30431],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[65292],"v":[{"k":[35270],"v":[{"k":[39057],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[49],"v":[{"k":[51],"v":[{"k":[53],"v":[{"k":[65292],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[24341],"v":[{"k":[25806],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[49],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[56],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[31038],"v":[{"k":[21306],"v":[{"k":[36129],"v":[{"k":[29486],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[39033],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[54,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26356],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[20505],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]},{"k":[24773,20889,26041,22330],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[27861],"v":[{"d":{"df":1,"dc":[[53,1]]}}]},{"k":[24335],"v":[{"k":[30340,65292],"v":[{"k":[20248],"v":[{"k":[28857],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[36866],"v":[{"k":[20110],"v":[{"k":[23545],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[8220],"v":[{"k":[26641],"v":[{"k":[8221],"v":[{"k":[12289],"v":[{"k":[8220],"v":[{"k":[22270],"v":[{"k":[8221],"v":[{"k":[12289],"v":[{"k":[36229],"v":[{"k":[22823],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65289],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[30340],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[21644],"v":[{"k":[38745],"v":[{"k":[24577],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[21253],"v":[{"k":[32465],"v":[{"k":[23450],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[37325],"v":[{"k":[26032],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26223],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[32467],"v":[{"k":[21512],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[116,1]]},"k":[31616,27599,26159,38656,25226,20351,30340,35774],"v":[{"k":[35201],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[20102],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21450],"v":[{"k":[29992],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20851],"v":[{"k":[20110],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21450],"v":[{"k":[29992],"v":[{"k":[27861],"v":[{"k":[35831],"v":[{"k":[31227],"v":[{"k":[27493],"v":[{"k":[91],"v":[{"k":[23448],"v":[{"k":[32593],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[39033],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[65288],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[54,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27492,25991],"v":[{"k":[22806],"v":[{"k":[37096],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[25152],"v":[{"k":[38656],"v":[{"k":[30340],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[22359],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26631],"v":[{"k":[35760],"v":[{"k":[31526],"v":[{"k":[21495],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[75,1]]}},{"k":[29992],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[78,4]]}}]}]},{"d":{"df":1,"dc":[[78,2]]}},{"k":[32622],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[25551],"v":[{"k":[36793],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[36319],"v":[{"k":[30528],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[22312],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[20013],"v":[{"k":[21478],"v":[{"k":[22806],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[62,11],[78,4]]},"k":[35789,31867,39292,31995,39069,31579,34920,20363,23454,24110,23646,32452,33539],"v":[{"k":[25351],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[32473],"v":[{"k":[23450],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24050],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[8221],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[8220],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[8221],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22411],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[19978],"v":[{"k":[36848],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[22806],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[36873],"v":[{"k":[26465],"v":[{"k":[20214],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[36941],"v":[{"k":[21382],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36798],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[23376],"v":[{"k":[26174,20027],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[20570],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[19968],"v":[{"k":[20214],"v":[{"k":[20107],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[24456],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[26377],"v":[{"k":[20102],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[22522],"v":[{"k":[30784],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20570],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[24773],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[24471],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20174],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[24320],"v":[{"k":[22987],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29616],"v":[{"k":[26377],"v":[{"k":[20123],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]},{"k":[21161],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[20854,24847],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[21644],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[24605],"v":[{"k":[26159],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[19982],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24615],"v":[{"k":[35753],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[19981,21487],"v":[{"k":[21487],"v":[{"k":[35265],"v":[{"k":[65288],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[20182],"v":[{"k":[21709],"v":[{"k":[24212],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[34987],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"k":[20013],"v":[{"k":[65288],"v":[{"k":[21363],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[65289],"v":[{"k":[20013],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[35859],"v":[{"k":[8220],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[8221],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[20197],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22260],"v":[{"k":[20869],"v":[{"k":[20026],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[35745],"v":[{"k":[21010],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[39069],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[30340],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[20869],"v":[{"k":[65292],"v":[{"k":[32473],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24213],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[39640],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[20986],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22788],"v":[{"k":[20110],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"k":[21306],"v":[{"k":[38388],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[20869],"v":[{"k":[65292],"v":[{"k":[26410],"v":[{"k":[36798],"v":[{"k":[21040],"v":[{"k":[12289],"v":[{"k":[36798],"v":[{"k":[21040],"v":[{"k":[12289],"v":[{"k":[36229],"v":[{"k":[39069],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23646,21151,21319],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[20102],"v":[{"k":[65292],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33021],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[36807],"v":[{"k":[20110],"v":[{"k":[23494],"v":[{"k":[38598],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[21487],"v":[{"k":[35835],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[65292],"v":[{"k":[26080],"v":[{"k":[38656],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[32534],"v":[{"k":[20889],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[23601],"v":[{"k":[33021],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[65292],"v":[{"k":[22823],"v":[{"k":[22823],"v":[{"k":[31616],"v":[{"k":[21270],"v":[{"k":[20102],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[25104],"v":[{"k":[26412],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32423],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[29992],"v":[{"k":[26356],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[37239],"v":[{"k":[28843],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19988],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[30340],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20250],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[31532],"v":[{"k":[19968,20108],"v":[{"k":[20010],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[35805],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]},{"k":[110,101,103,105,111,114,97],"v":[{"k":[111],"v":[{"k":[119],"v":[{"d":{"df":5,"dc":[[23,1],[29,2],[55,1],[65,1],[69,1]]},"k":[108,110],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[61,1],[69,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[92,1]]}}]}]}]},{"k":[101,121,112],"v":[{"k":[112],"v":[{"d":{"df":4,"dc":[[28,1],[55,1],[65,3],[66,1]]}}]},{"d":{"df":2,"dc":[[34,1],[55,1]]},"k":[45],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[56,3],[64,3]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"k":[110,119],"v":[{"k":[100,103],"v":[{"d":{"df":5,"dc":[[34,1],[35,1],[55,2],[99,1],[102,2]]},"k":[115,101],"v":[{"d":{"df":4,"dc":[[34,1],[35,2],[85,1],[102,1]]}},{"k":[114],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[66,1]]}}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,4],[53,4]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,4],[62,4]]}}]}]}]}]},{"k":[114],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}}]}]}]}]},{"d":{"df":6,"dc":[[28,3],[31,2],[42,3],[45,2],[65,3],[81,3]]},"k":[42,47],"v":[{"d":{"df":1,"dc":[[33,2]]},"k":[116,99,23567,20173,97,102,110,20851,19982,24418,98,107],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[33,2]]}}]}]}]}]},{"k":[111,108],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[99],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]},{"k":[36148],"v":[{"k":[22763],"v":[{"k":[65306],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[48,2]]}}]}]}]}]}]},{"k":[28982],"v":[{"k":[34987],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[12290],"v":[{"k":[20107],"v":[{"k":[23454],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[21482],"v":[{"k":[20250],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,4]]}}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[58],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]},{"k":[20110],"v":[{"k":[32500,20851,36923,35299],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[31995],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[31526],"v":[{"k":[65306],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[36753],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65306],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[26512],"v":[{"k":[22120],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[25110],"v":[{"k":[38750],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[24335],"v":[{"k":[21270],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[65306],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[101],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[44,41],"v":[{"d":{"df":2,"dc":[[34,1],[52,1]]}},{"k":[59],"v":[{"d":{"df":2,"dc":[[65,1],[81,1]]}}]}]}]},{"k":[46,99,112],"v":[{"k":[46],"v":[{"d":{"df":21,"dc":[[28,2],[32,25],[34,15],[35,10],[36,3],[37,4],[38,4],[42,2],[47,4],[49,25],[51,10],[52,15],[53,4],[54,4],[55,6],[56,6],[59,1],[62,5],[64,7],[65,2],[81,2]]},"k":[41,44],"v":[{"d":{"df":2,"dc":[[36,2],[65,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[36,1]]}}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]}]},{"k":[115],"v":[{"k":[118],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]}]}]}]},{"k":[102,105,97,114,123,112,115,116,98,118,110,111,121,99,106,109,100,103,120,108],"v":[{"k":[117,105],"v":[{"k":[108],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[28,1]]}}]}]},{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34],"v":[{"d":{"df":2,"dc":[[55,4],[62,7]]},"k":[96],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[32473],"v":[{"k":[20986],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[26465],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[20363],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[29,2]]},"k":[110,116],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[112,110,114,109,34,100],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[29,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[59,1]]}},{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[84,2]]}}]}]}]}]},{"k":[101,105],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[34],"v":[{"k":[96],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,1]]}}]}]}]}]}]}]}]}]}]},{"k":[114,105,97,117,111],"v":[{"k":[105,111],"v":[{"k":[122,99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[30,1]]}}]},{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"k":[100],"v":[{"k":[117],"v":[{"k":[99],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[34],"v":[{"d":{"df":2,"dc":[[56,2],[64,1]]}}]}]}]}]}]}]},{"k":[101,120],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[101],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[61,2]]}}]}]}]},{"k":[114],"v":[{"k":[115,116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]},{"d":{"df":1,"dc":[[98,2]]}}]}]},{"k":[114],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]}]}]}]}]}]},{"k":[97,116,111,99,104,101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[32,4]]}}]}]}]},{"k":[121,114],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]},{"k":[105,111],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34],"v":[{"d":{"df":2,"dc":[[55,1],[62,4]]},"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[111],"v":[{"k":[119],"v":[{"k":[47,44],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[61,4]]}}]}]}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[109],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97,114,119,104],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[97,101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34,97],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[34],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[111],"v":[{"k":[45],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]},{"k":[108,111,34],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[107],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]},{"k":[120,121],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]}]}]}]},{"k":[34],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]},{"d":{"df":1,"dc":[[59,1]]}}]},{"k":[105],"v":[{"k":[110,115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[53,1]]},"k":[46,65289],"v":[{"d":{"df":1,"dc":[[36,1]]}},{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[68,1]]},"k":[41],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]},{"k":[111,117,97],"v":[{"k":[114,116,110],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]},{"k":[34],"v":[{"d":{"df":1,"dc":[[55,2]]}}]},{"k":[45],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[55,1]]},"k":[34],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]}]}]}]},{"k":[109,118],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[105],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[58,1]]}}]}]}]}]}]}]}]}]},{"k":[117,114,99,116],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]},{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[97,108],"v":[{"k":[114],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,3]]}}]}]},{"k":[108],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[69,2]]}}]}]}]}]}]}]},{"k":[111,108],"v":[{"k":[110],"v":[{"k":[100,115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]}]},{"k":[105,111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]},{"k":[117],"v":[{"k":[100],"v":[{"k":[115],"v":[{"k":[34],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[105,97],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[120],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[97,105,101],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[56,7]]},"k":[34],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]}]},{"k":[114,105],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[108],"v":[{"k":[34],"v":[{"d":{"df":1,"dc":[[84,1]]}}]}]}]}]},{"k":[34],"v":[{"k":[125],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]},{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[34],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[69,1]]}}]}]}]}]}]}]},{"d":{"df":10,"dc":[[28,4],[35,1],[42,4],[51,1],[55,19],[62,21],[65,8],[81,8],[94,2],[119,2]]}},{"d":{"df":12,"dc":[[56,4],[59,1],[64,4],[75,1],[77,1],[84,1],[95,1],[100,1],[101,1],[104,1],[115,1],[125,1]]},"k":[46,56,48,51,57,50,53,54,44,49,52,12289,37],"v":[{"d":{"df":7,"dc":[[56,1],[68,1],[98,1],[101,1],[102,1],[104,1],[106,1]]},"k":[48,49,120,55],"v":[{"d":{"df":2,"dc":[[30,1],[46,1]]}},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":1,"dc":[[65,1]]},"k":[65288],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[31616],"v":[{"k":[31216],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[46],"v":[{"k":[48],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]},{"k":[46],"v":[{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]}]},{"d":{"df":2,"dc":[[59,1],[75,1]]},"k":[48,93,37,49],"v":[{"d":{"df":2,"dc":[[33,2],[48,2]]},"k":[112,41,44],"v":[{"k":[120],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]}]},{"d":{"df":1,"dc":[[48,1]]},"k":[96],"v":[{"d":{"df":1,"dc":[[33,1]]}}]},{"d":{"df":2,"dc":[[97,1],[112,1]]}}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}},{"d":{"df":1,"dc":[[85,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[46,52,44,48,50],"v":[{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]},{"d":{"df":6,"dc":[[84,1],[85,2],[93,2],[110,2],[111,1],[118,2]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[56,93],"v":[{"k":[54],"v":[{"k":[55],"v":[{"k":[48],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":6,"dc":[[84,1],[85,2],[93,2],[110,2],[111,1],[118,2]]}}]}]},{"k":[57,52],"v":[{"k":[55],"v":[{"k":[50],"v":[{"k":[50],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[48],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[50,52],"v":[{"k":[56],"v":[{"k":[53],"v":[{"k":[50],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":13,"dc":[[38,1],[54,1],[55,2],[62,2],[63,1],[84,1],[85,2],[88,1],[93,2],[110,2],[111,1],[116,1],[118,2]]}},{"k":[44,46,48,51],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[49],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[51,93],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[93],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[65,2],[81,2]]}}]}]},{"k":[28431,30001,23545,23637,24314,22823],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[21508],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26159],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[27969],"v":[{"k":[31243],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[26080],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26356],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110],"v":[{"k":[35201],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[35201],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[36127],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[28041],"v":[{"k":[21450],"v":[{"k":[21040],"v":[{"k":[26085],"v":[{"k":[26399],"v":[{"k":[31561],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[26368],"v":[{"k":[22909],"v":[{"k":[33021],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[29992],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[24341],"v":[{"k":[23548],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[21319],"v":[{"k":[24207],"v":[{"k":[25110],"v":[{"k":[38477],"v":[{"k":[24207],"v":[{"k":[25490],"v":[{"k":[24067],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[20174],"v":[{"k":[22810],"v":[{"k":[21040],"v":[{"k":[23569],"v":[{"k":[26469],"v":[{"k":[23545],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[23383],"v":[{"k":[27597],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[31561],"v":[{"k":[26469],"v":[{"k":[25490],"v":[{"k":[24067],"v":[{"k":[12290],"v":[{"k":[24635],"v":[{"k":[20043],"v":[{"k":[65292],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[31243],"v":[{"k":[24230],"v":[{"k":[19978],"v":[{"k":[24341],"v":[{"k":[23548],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[35201],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[21051],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[27498],"v":[{"k":[26354],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[24038],"v":[{"k":[22270],"v":[{"k":[36807],"v":[{"k":[20110],"v":[{"k":[25153],"v":[{"k":[24179],"v":[{"k":[21270],"v":[{"k":[25513],"v":[{"k":[30422],"v":[{"k":[20102],"v":[{"k":[24819],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[65292],"v":[{"k":[21491],"v":[{"k":[22270],"v":[{"k":[36807],"v":[{"k":[20110],"v":[{"k":[22840],"v":[{"k":[22823],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[12290],"v":[{"k":[35201],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[27874],"v":[{"k":[21160],"v":[{"k":[30340],"v":[{"k":[21442],"v":[{"k":[32771],"v":[{"k":[21333],"v":[{"k":[20301],"v":[{"k":[65292],"v":[{"k":[20570],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[27874],"v":[{"k":[21160],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[12290],"v":[{"k":[27491],"v":[{"k":[30830],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[26159],"v":[{"k":[32447],"v":[{"k":[32422],"v":[{"k":[21344],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35758],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[25226],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[37327],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[19978],"v":[{"k":[26041],"v":[{"k":[65292],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[37327],"v":[{"k":[36739],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[19979],"v":[{"k":[26041],"v":[{"k":[20250],"v":[{"k":[33719],"v":[{"k":[24471],"v":[{"k":[26356],"v":[{"k":[21152],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[25968],"v":[{"k":[20154],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20064],"v":[{"k":[24815],"v":[{"k":[26159],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[39034],"v":[{"k":[26102],"v":[{"k":[38024],"v":[{"k":[21644],"v":[{"k":[33258],"v":[{"k":[19978],"v":[{"k":[32780],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[21435],"v":[{"k":[35266],"v":[{"k":[23519],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[22312],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[85,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]},{"d":{"df":3,"dc":[[55,1],[61,2],[78,2]]},"k":[111,118,104,119,112,62,100,99,41,105,123,33,101,109,91,102,96,115,116,108,106,97,114,117,98,103,110],"v":[{"k":[116,110,118,114],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[30,2]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[38,1]]}}]},{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]},{"d":{"df":1,"dc":[[65,1]]}}]},{"k":[109,105,97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[36,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]},"k":[58],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]},{"k":[101,114,105],"v":[{"k":[97,114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[31,1]]}}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[102],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[65,2]]}}]}]}]}]}]}]}]},{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[41],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]},{"k":[114,108,97,111],"v":[{"k":[111,105,101],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]},{"k":[99],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[118],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]},{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[99,115,100],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,2],[51,2]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105,116],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108,115],"v":[{"k":[121],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]}]},{"k":[49],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]},{"k":[101,97,111],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[31,1]]}}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]}}]}]}]},{"k":[110],"v":[{"k":[39],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[97,117,111,104,108],"v":[{"k":[116,114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[105,121],"v":[{"k":[101,99],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]},{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[116],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[94,1]]},"k":[41],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[61,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[108,109],"v":[{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[59,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[59,1]]}}]}]}]},{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[85,1]]}}]}]}]}]}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]},{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[35,4]]}},{"k":[115,116,46,110,41,105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[36,2]]}}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]},{"d":{"df":1,"dc":[[55,1]]},"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[68,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,2]]}},{"k":[41],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[56,2]]}}]}]}]}]}]}]}]}]}]},{"k":[100],"v":[{"k":[125],"v":[{"k":[37],"v":[{"k":[41],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]},{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110,120,103,46],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]}]},{"k":[99,112],"v":[{"k":[101],"v":[{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,2]]}}]}]}]},{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[108],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[103],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]},{"k":[118,97],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[99,112],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[45],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[111],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[116,113,101,117],"v":[{"k":[97,114],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]},{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]},{"k":[108],"v":[{"d":{"df":2,"dc":[[55,1],[62,1]]}}]},{"k":[101,114],"v":[{"d":{"df":2,"dc":[[55,1],[66,1]]}},{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46,45],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[104],"v":[{"k":[101,97,111],"v":[{"d":{"df":1,"dc":[[55,2]]},"k":[114],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[117],"v":[{"k":[103],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]},{"k":[105,111,101],"v":[{"k":[107,110],"v":[{"k":[101],"v":[{"d":{"df":2,"dc":[[55,8],[59,1]]}}]},{"k":[101],"v":[{"d":{"df":1,"dc":[[61,1]]},"k":[44,97],"v":[{"d":{"df":1,"dc":[[56,1]]}},{"k":[114],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[103],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[99],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[115,102],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[63,1]]}}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]},{"k":[115],"v":[{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[110,118,120,103,115,108,98],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]},{"k":[111],"v":[{"k":[105],"v":[{"k":[100],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]}]}]}]},{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[69,1]]}},{"k":[115],"v":[{"k":[111],"v":[{"d":{"df":1,"dc":[[94,1]]}}]}]},{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]},{"k":[111,105],"v":[{"k":[119],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[56,2]]},"k":[46],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]},{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[106,1]]}}]}]}]}]},{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[56,1]]}}]}]}]}]},{"k":[97,117],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]},{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[61,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[118],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[105,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[61,1],[78,1]]},"k":[111,114,101,58],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[32,1]]},"k":[46,105,44],"v":[{"d":{"df":1,"dc":[[31,1]]}},{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[35,1]]}}]}]},{"d":{"df":1,"dc":[[63,1]]}}]}]}]},{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":4,"dc":[[35,5],[51,4],[65,2],[81,2]]}}]}]}]}]}]},{"k":[97],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[61,2],[78,2]]}}]},{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[32,1]]}}]}]},{"d":{"df":15,"dc":[[55,1],[56,3],[59,2],[62,2],[64,7],[66,1],[75,2],[82,1],[94,3],[95,1],[113,1],[116,2],[119,3],[124,1],[128,2]]},"k":[44,46,96,41,51,34,93,65292],"v":[{"d":{"df":16,"dc":[[32,3],[35,7],[36,3],[38,1],[49,3],[51,7],[53,3],[54,1],[56,1],[59,10],[61,2],[75,10],[78,2],[95,8],[101,1],[115,6]]}},{"d":{"df":2,"dc":[[88,1],[96,1]]},"k":[53,51,56,52],"v":[{"d":{"df":2,"dc":[[90,1],[114,2]]},"k":[41,44],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]},{"d":{"df":2,"dc":[[59,2],[75,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,4],[53,4]]}}]},{"k":[44,41],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"k":[39],"v":[{"d":{"df":2,"dc":[[85,1],[110,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]},{"d":{"df":2,"dc":[[55,3],[62,1]]},"k":[46,44],"v":[{"d":{"df":1,"dc":[[55,1]]}},{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[55,1],[56,1]]}}]},{"k":[58],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[58],"v":[{"k":[50],"v":[{"k":[50],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[41],"v":[{"d":{"df":1,"dc":[[55,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[44],"v":[{"d":{"df":4,"dc":[[59,5],[61,2],[75,5],[78,2]]}}]},{"k":[19981,20250,21017],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]},{"k":[26174],"v":[{"k":[31034],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[30340],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]}]},{"d":{"df":2,"dc":[[102,1],[126,1]]},"k":[48,56,51,50,55,52,53,57,54,49,44],"v":[{"k":[44,46],"v":[{"d":{"df":4,"dc":[[32,1],[49,1],[85,1],[110,1]]}},{"k":[56],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[46,57,54,50],"v":[{"k":[55,49,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}}]},{"k":[44,93],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"d":{"df":2,"dc":[[56,2],[64,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[53],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[51],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[54],"v":[{"k":[53],"v":[{"k":[56],"v":[{"k":[51],"v":[{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[53],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[52,49],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]},{"k":[51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]},{"k":[46,44,41],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]}]},{"d":{"df":4,"dc":[[36,1],[53,1],[55,2],[62,2]]}},{"k":[39],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[44,46],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"k":[52,49,51],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[46],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[44,46],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"k":[52,55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,3],[53,3]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[46,49],"v":[{"k":[49,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[52],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[56,57,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44,93],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}},{"d":{"df":2,"dc":[[56,3],[64,3]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[46,44],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"d":{"df":1,"dc":[[77,1]]},"k":[54,48,53,51,50,55,49,57,46,93],"v":[{"k":[44,46],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]}},{"k":[52,53],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}},{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[48,46,54,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[33,1],[48,1]]}}]},{"k":[56,55,54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[56],"v":[{"k":[56],"v":[{"k":[53],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[61,2],[78,2],[85,1],[110,1]]}}]},{"k":[46],"v":[{"k":[56,52,55],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[46],"v":[{"k":[49,53],"v":[{"k":[44,93],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,4],[64,4]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]},{"k":[46,57,51],"v":[{"k":[53,56],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[93],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,1],[64,1]]}}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[93],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[48],"v":[{"k":[54],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[55],"v":[{"k":[55],"v":[{"k":[54],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]},{"k":[46,50],"v":[{"k":[56,55,57,49,54,52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]},{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44],"v":[{"d":{"df":4,"dc":[[36,1],[53,1],[56,1],[64,1]]}}]}]},{"k":[51],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]},{"k":[51],"v":[{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]},{"d":{"df":12,"dc":[[35,1],[51,1],[59,2],[62,1],[63,14],[65,1],[66,1],[75,2],[77,20],[81,2],[85,1],[110,1]]},"k":[46,53,51,41,54,55,48,50,101,44,52,56,34,116,93,65292,12289,57,49],"v":[{"d":{"df":5,"dc":[[55,1],[63,1],[68,1],[98,1],[106,1]]},"k":[50,120,48],"v":[{"d":{"df":2,"dc":[[32,1],[49,1]]},"k":[46],"v":[{"k":[48],"v":[{"d":{"df":1,"dc":[[76,1]]}}]}]},{"d":{"df":1,"dc":[[65,1]]},"k":[65288],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[31616],"v":[{"k":[31216],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[109,1]]},"k":[46],"v":[{"d":{"df":1,"dc":[[86,1]]},"k":[49],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[44],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]},{"k":[46,48],"v":[{"k":[49],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[93],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,1],[64,1]]}}]}]}]},{"k":[51],"v":[{"k":[52],"v":[{"k":[53],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[46,57,48],"v":[{"k":[57,51],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,2],[64,2]]}}]},{"k":[93],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[57],"v":[{"k":[52],"v":[{"k":[54],"v":[{"k":[48],"v":[{"k":[53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[57],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[50],"v":[{"k":[57],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[46,49],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]},{"k":[49],"v":[{"k":[48],"v":[{"k":[49],"v":[{"k":[49],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]},{"k":[50,44,112,48,93,37],"v":[{"k":[57],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[51],"v":[{"k":[57],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]},{"d":{"df":4,"dc":[[36,1],[53,1],[55,3],[62,3]]}},{"k":[120],"v":[{"k":[34],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]},{"d":{"df":1,"dc":[[82,1]]},"k":[48,46,44],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]},{"d":{"df":1,"dc":[[66,1]]}},{"d":{"df":2,"dc":[[97,1],[112,1]]}}]},{"d":{"df":2,"dc":[[88,1],[116,1]]}},{"d":{"df":1,"dc":[[90,1]]}}]},{"k":[49,44],"v":[{"k":[48],"v":[{"k":[57],"v":[{"k":[54],"v":[{"k":[55],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]},{"d":{"df":2,"dc":[[55,2],[62,2]]}}]},{"k":[50],"v":[{"k":[59],"v":[{"d":{"df":2,"dc":[[36,2],[53,2]]}}]}]},{"d":{"df":15,"dc":[[36,2],[53,2],[55,2],[56,1],[59,10],[62,2],[63,6],[64,1],[75,10],[84,1],[85,2],[93,2],[110,2],[111,1],[118,2]]}},{"k":[53],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[38,1],[54,1]]}}]}]}]},{"k":[50],"v":[{"k":[49],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[56,1]]}},{"k":[104],"v":[{"d":{"df":1,"dc":[[56,2]]}}]},{"k":[44,40],"v":[{"d":{"df":4,"dc":[[59,1],[75,1],[94,1],[119,1]]}},{"k":[101],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[65,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25105],"v":[{"k":[20204],"v":[{"k":[30528],"v":[{"k":[21147],"v":[{"k":[21152],"v":[{"k":[24378],"v":[{"k":[20102],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[21465],"v":[{"k":[20107],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[35762],"v":[{"k":[36848],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32972],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[25925],"v":[{"k":[20107],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487,22823,19968],"v":[{"k":[20197],"v":[{"k":[26681,28155],"v":[{"k":[25454],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[33394],"v":[{"k":[35843],"v":[{"k":[28176],"v":[{"k":[21464],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[26368],"v":[{"k":[26263],"v":[{"k":[21040],"v":[{"k":[26368],"v":[{"k":[27973],"v":[{"k":[26469],"v":[{"k":[20381],"v":[{"k":[29031],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[30340],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[25490],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"k":[20999],"v":[{"k":[35760],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[35768],"v":[{"k":[22810],"v":[{"k":[22270],"v":[{"k":[23618],"v":[{"k":[21644],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[38590],"v":[{"k":[20197],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21152],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[35013],"v":[{"k":[39280],"v":[{"k":[26469],"v":[{"k":[24378],"v":[{"k":[35843],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[26576],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[21160],"v":[{"k":[25928],"v":[{"k":[12289],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12289],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[31561],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[31361],"v":[{"k":[20986],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25159],"v":[{"k":[21306],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[36866],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[35013],"v":[{"k":[39280],"v":[{"k":[20250],"v":[{"k":[35753],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[20998],"v":[{"k":[24515],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[22402],"v":[{"k":[30452],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[29305],"v":[{"k":[21035],"v":[{"k":[38271],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33324],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[19981],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19977],"v":[{"k":[32500],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[19982],"v":[{"k":[19977],"v":[{"k":[32500],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[19981],"v":[{"k":[22826],"v":[{"k":[31934],"v":[{"k":[20934],"v":[{"k":[65292],"v":[{"k":[29978],"v":[{"k":[33267],"v":[{"k":[36824],"v":[{"k":[19981],"v":[{"k":[24471],"v":[{"k":[19981],"v":[{"k":[29468],"v":[{"k":[27979],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"k":[25165],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[39030],"v":[{"k":[31471],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]}]},{"k":[48,46],"v":[{"k":[93],"v":[{"d":{"df":2,"dc":[[92,1],[117,1]]}}]},{"k":[57],"v":[{"k":[57],"v":[{"k":[55],"v":[{"d":{"df":2,"dc":[[94,2],[119,2]]},"k":[34,59],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}},{"k":[34],"v":[{"d":{"df":2,"dc":[[94,1],[119,1]]}}]}]}]}]}]}]}]},{"k":[51,50,52,49,53,56,48,44,93],"v":[{"k":[46],"v":[{"k":[55],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[93],"v":[{"k":[44],"v":[{"d":{"df":4,"dc":[[34,1],[52,1],[56,1],[64,1]]}}]}]}]}]},{"k":[44,46],"v":[{"d":{"df":2,"dc":[[55,2],[62,2]]}},{"k":[49,53],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,3],[64,3]]}}]},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]},{"k":[46],"v":[{"k":[52],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,2],[64,2]]}}]}]}]},{"k":[46,56],"v":[{"k":[50],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]},"k":[44],"v":[{"d":{"df":2,"dc":[[56,3],[64,3]]}}]}]},{"k":[53],"v":[{"k":[50],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]}]},{"k":[46],"v":[{"k":[56],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]},{"k":[56],"v":[{"k":[44,93],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}},{"k":[44],"v":[{"d":{"df":2,"dc":[[56,1],[64,1]]}}]}]}]},{"k":[44,176],"v":[{"d":{"df":5,"dc":[[59,1],[75,1],[83,1],[92,1],[117,1]]}},{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[19981],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[85,2],[110,2]]}},{"d":{"df":2,"dc":[[94,1],[119,1]]}}]},{"d":{"df":2,"dc":[[34,1],[52,1]]}},{"d":{"df":8,"dc":[[35,5],[51,5],[56,3],[59,12],[61,6],[75,12],[78,6],[102,2]]}},{"k":[59,58],"v":[{"d":{"df":3,"dc":[[35,2],[61,2],[78,2]]}},{"d":{"df":1,"dc":[[55,1]]}}]},{"k":[123,46],"v":[{"k":[109,120],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[125],"v":[{"k":[105,110],"v":[{"k":[110,100],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]},{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]},{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[58],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[125],"v":[{"d":{"df":2,"dc":[[37,1],[47,1]]}}]}]}]}]}]}]},{"k":[103],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[40,106],"v":[{"k":[39],"v":[{"k":[100],"v":[{"k":[101,97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[113],"v":[{"k":[61],"v":[{"k":[39],"v":[{"d":{"df":2,"dc":[[35,1],[51,1]]}}]}]}]}]}]}]}]}]},{"k":[116],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[41],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[102],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":2,"dc":[[58,1],[71,1]]},"k":[40],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":2,"dc":[[58,2],[71,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[47],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[106],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":2,"dc":[[36,1],[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"d":{"df":2,"dc":[[35,2],[51,2]]}},{"d":{"df":2,"dc":[[35,1],[51,1]]}},{"k":[96],"v":[{"k":[96],"v":[{"k":[96],"v":[{"d":{"df":2,"dc":[[37,6],[47,6]]}}]}]}]},{"k":[91],"v":[{"k":[105,22270],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[37,1]]}}]}]}]}]},{"k":[29255],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108,104,119],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[95],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]},{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[95],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]}]}]}]},{"k":[104],"v":[{"k":[105,97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]},{"k":[116],"v":[{"d":{"df":1,"dc":[[38,1]]}}]}]}]}]},{"k":[27714],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]},{"k":[26415],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]},{"k":[20445],"v":[{"k":[29616],"v":[{"k":[26377],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[31561],"v":[{"k":[36164],"v":[{"k":[26009],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38750,26102,20102,20854,25928,20004],"v":[{"k":[24120],"v":[{"k":[22823],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[20320],"v":[{"k":[36935],"v":[{"k":[21040],"v":[{"k":[36807],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[24456],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[21035],"v":[{"k":[20154],"v":[{"k":[22312],"v":[{"k":[27492],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[20063],"v":[{"k":[36935],"v":[{"k":[21040],"v":[{"k":[24182],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[24341],"v":[{"k":[25806],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[20851],"v":[{"k":[38190],"v":[{"k":[23383],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[20320],"v":[{"k":[33258],"v":[{"k":[21161],"v":[{"k":[22320],"v":[{"k":[22312],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20381],"v":[{"k":[36182],"v":[{"k":[31038],"v":[{"k":[21306],"v":[{"k":[30340],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20505,65292,24182],"v":[{"k":[65292],"v":[{"k":[24320,25105],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[30011],"v":[{"k":[24067],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[8221],"v":[{"k":[25152],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[8220],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[37325],"v":[{"k":[32622],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21508],"v":[{"k":[33258],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[20043],"v":[{"k":[21644],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[22270],"v":[{"k":[26469],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[12290],"v":[{"k":[39038],"v":[{"k":[21517],"v":[{"k":[24605],"v":[{"k":[20041],"v":[{"k":[65292],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[8220],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[8221],"v":[{"k":[22312],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[32780],"v":[{"k":[20174],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[24635],"v":[{"k":[21644],"v":[{"k":[23601],"v":[{"k":[33021],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[24635],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[20026],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19981],"v":[{"k":[33021],"v":[{"k":[28385],"v":[{"k":[36275],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[26399],"v":[{"k":[26395],"v":[{"k":[45],"v":[{"k":[45],"v":[{"k":[31354],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[19981],"v":[{"k":[24212],"v":[{"k":[34987],"v":[{"k":[20854],"v":[{"k":[24038],"v":[{"k":[21491],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]},"k":[25968,36825],"v":[{"k":[25454],"v":[{"k":[34920],"v":[{"k":[20043],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[28789],"v":[{"k":[27963],"v":[{"k":[22320],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"k":[36724],"v":[{"k":[21644],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27573,20123],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[26377],"v":[{"k":[20102],"v":[{"k":[35832],"v":[{"k":[20010],"v":[{"k":[33021],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"k":[25509],"v":[{"k":[19979],"v":[{"k":[26469],"v":[{"k":[35201],"v":[{"k":[20026],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[21709],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22522],"v":[{"k":[30784],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21152],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[8221],"v":[{"k":[8220],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[8221],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[20013],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[36866],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[35201],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22320],"v":[{"k":[21033],"v":[{"k":[29992],"v":[{"k":[35821],"v":[{"k":[20041],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[19982],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25552],"v":[{"k":[39640],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[25928],"v":[{"k":[29575],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[34],"v":[{"k":[28023],"v":[{"k":[27915],"v":[{"k":[34],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12289],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[8220],"v":[{"k":[27801],"v":[{"k":[28448],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31181],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27492,20026],"v":[{"k":[65292],"v":[{"k":[22312,20174],"v":[{"k":[20570],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[21069],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[30830],"v":[{"k":[20445],"v":[{"k":[29616],"v":[{"k":[26377],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[31561],"v":[{"k":[36164],"v":[{"k":[26009],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23581],"v":[{"k":[35797],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[25110],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[30340],"v":[{"k":[36164],"v":[{"k":[26009],"v":[{"k":[21253],"v":[{"k":[25324],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[30456],"v":[{"k":[36739],"v":[{"k":[20110],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[32043],"v":[{"k":[33394],"v":[{"k":[32780],"v":[{"k":[35328],"v":[{"k":[65292],"v":[{"k":[27225],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[31881],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[32511],"v":[{"k":[33394],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[26377],"v":[{"k":[21033],"v":[{"k":[20110],"v":[{"k":[25552],"v":[{"k":[21319],"v":[{"k":[39135],"v":[{"k":[27442],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19988],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[20351],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[28201],"v":[{"k":[26262],"v":[{"k":[12289],"v":[{"k":[24184],"v":[{"k":[31119],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[24863],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[24773],"v":[{"k":[24863],"v":[{"k":[19982],"v":[{"k":[21507],"v":[{"k":[29980],"v":[{"k":[21697],"v":[{"k":[26102],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[30340],"v":[{"k":[24863],"v":[{"k":[35273],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[26041],"v":[{"k":[38754],"v":[{"k":[65292],"v":[{"k":[29980],"v":[{"k":[21697],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[30340],"v":[{"k":[38754],"v":[{"k":[21521],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[22823],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[26159],"v":[{"k":[20799],"v":[{"k":[31461],"v":[{"k":[21644],"v":[{"k":[22899],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[36825],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[26126],"v":[{"k":[24555],"v":[{"k":[12289],"v":[{"k":[21487],"v":[{"k":[29233],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"k":[24038],"v":[{"k":[20391],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[33394],"v":[{"k":[26356],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[26576],"v":[{"k":[31181],"v":[{"k":[21830],"v":[{"k":[21153],"v":[{"k":[12289],"v":[{"k":[30007],"v":[{"k":[24615],"v":[{"k":[32676],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[24038],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[33394],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[20351],"v":[{"k":[20154],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[29702],"v":[{"k":[24615],"v":[{"k":[21644],"v":[{"k":[20919],"v":[{"k":[38745],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[24863],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25163,36136,25991,31687,36523,25351],"v":[{"k":[20876],"v":[{"k":[30340],"v":[{"k":[25991,8220],"v":[{"k":[31456],"v":[{"d":{"df":1,"dc":[[40,1]]}}]},{"k":[24212],"v":[{"k":[29992],"v":[{"k":[31687],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]}]}]}]}]},{"k":[19978],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[30001],"v":[{"k":[20110],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[34987],"v":[{"k":[31227],"v":[{"k":[38500],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[21363],"v":[{"k":[20351],"v":[{"k":[20043],"v":[{"k":[21518],"v":[{"k":[35813],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[34987],"v":[{"k":[37325],"v":[{"k":[26032],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[25152],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[33410],"v":[{"k":[28857],"v":[{"k":[20063],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[19981],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340,20027,20171],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[32479],"v":[{"k":[19968],"v":[{"k":[35813],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[20316],"v":[{"k":[39118],"v":[{"k":[26684],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[26159],"v":[{"k":[22823],"v":[{"k":[30053],"v":[{"k":[27010],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32461],"v":[{"k":[36825],"v":[{"k":[20960],"v":[{"k":[31181],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[33539],"v":[{"k":[30068],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[20132],"v":[{"k":[21449],"v":[{"k":[65288],"v":[{"k":[21363],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[32454],"v":[{"k":[33410],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[21508],"v":[{"k":[26377],"v":[{"k":[21508],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[20559],"v":[{"k":[22909],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36890],"v":[{"k":[36807],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[23567],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[26469],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27809],"v":[{"k":[26377],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[23553],"v":[{"k":[35013],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[8221],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[19994],"v":[{"k":[21153],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21335],"v":[{"k":[38754],"v":[{"k":[21521],"v":[{"k":[37027],"v":[{"k":[20123],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25628,26032,25152,25353,30340,23450,20808,34987,19968,20107,22522,32452,35774,65292,12290,20540,22768,32500,21518,31532,25351,26174,25340,23454,22312,21672,24320,26377,37197,20102,36825,19981,29983,20110,35843,25171,65306,24050],"v":[{"k":[32034],"v":[{"k":[20851],"v":[{"k":[38190],"v":[{"k":[23383],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]},{"k":[24314],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]},{"k":[26377],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21644],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20551],"v":[{"k":[22914],"v":[{"k":[20320],"v":[{"k":[19981],"v":[{"k":[24819],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]},{"d":{"df":4,"dc":[[43,1],[51,1],[75,1],[110,1]]},"k":[20107,26679,32467,25968,32500,24773,31532,20540,25991,35268],"v":[{"k":[20214],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[24335],"v":[{"k":[31616],"v":[{"k":[20171],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]},{"k":[26500],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[23384],"v":[{"k":[25918],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]},{"k":[24230],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[21517],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[20917],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65307],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[19968],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20316,65292],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[24182],"v":[{"k":[29992],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]},{"k":[26412],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[21017],"v":[{"k":[31245],"v":[{"k":[26377],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]},{"k":[20041],"v":[{"k":[26377,26679],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[29238],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[65288],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]},{"k":[31227],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20877],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[20250],"v":[{"k":[21457],"v":[{"k":[29616],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[8220],"v":[{"k":[19981],"v":[{"k":[35265],"v":[{"k":[8221],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33324],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[21333],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[20214],"v":[{"k":[20998],"v":[{"k":[20026],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[19978],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[37117],"v":[{"k":[20250],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[21644],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[32622],"v":[{"k":[26679,12290,25968,65292,30340],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[26126],"v":[{"k":[26263],"v":[{"k":[12289],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23427],"v":[{"k":[32473],"v":[{"k":[23450],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[32452],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20250],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[20174],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[20173],"v":[{"k":[28982],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[20808],"v":[{"k":[32423],"v":[{"k":[39640],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[21069],"v":[{"k":[32773],"v":[{"k":[20250],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[32780],"v":[{"k":[21518],"v":[{"k":[32773],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[20102],"v":[{"k":[20123],"v":[{"k":[40635],"v":[{"k":[28902],"v":[{"k":[65306],"v":[{"k":[20551],"v":[{"k":[22914],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487,38656,24456,25903,8220,25968,96,38500,36825,26377,20363,22312,25105,91,20540,39292,31995,32780],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[28145],"v":[{"k":[33394],"v":[{"k":[27169],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[30475],"v":[{"k":[21040],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[22320],"v":[{"k":[26041],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]},{"k":[25345],"v":[{"k":[19981],"v":[{"k":[20889],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[26159],"v":[{"k":[20381],"v":[{"k":[25176],"v":[{"k":[20110],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[26469],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[46],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[99,97],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[40],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[41],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20102],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[36825],"v":[{"k":[20123],"v":[{"k":[35201],"v":[{"k":[32032],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[19981],"v":[{"k":[23569],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20813],"v":[{"k":[21435],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[30340],"v":[{"k":[27493],"v":[{"k":[39588],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[37325,23545,22312,20063,24341,23558,20351],"v":[{"k":[26032],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[20102],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21644],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[20570],"v":[{"k":[20102],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[12290],"v":[{"k":[20197],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[33394],"v":[{"k":[20026],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[32771],"v":[{"k":[37327],"v":[{"k":[20102],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[24230],"v":[{"k":[12289],"v":[{"k":[19982],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[24230],"v":[{"k":[12289],"v":[{"k":[30456],"v":[{"k":[37051],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[21644],"v":[{"k":[35856],"v":[{"k":[24230],"v":[{"k":[31561],"v":[{"k":[22240],"v":[{"k":[32032],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[30830],"v":[{"k":[20445],"v":[{"k":[33394],"v":[{"k":[35273],"v":[{"k":[36776],"v":[{"k":[35782],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[20154],"v":[{"k":[22763],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[28165],"v":[{"k":[26970],"v":[{"k":[22320],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[20102],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[23545],"v":[{"k":[23383],"v":[{"k":[20307],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[65292],"v":[{"k":[25351],"v":[{"k":[21521],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[31661],"v":[{"k":[22836],"v":[{"k":[65292],"v":[{"k":[36319],"v":[{"k":[38543],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[33394],"v":[{"k":[31561],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20248],"v":[{"k":[38597],"v":[{"k":[21448],"v":[{"k":[28165],"v":[{"k":[26224],"v":[{"k":[12290],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[25913],"v":[{"k":[36827],"v":[{"k":[20102],"v":[{"k":[23500],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[65292],"v":[{"k":[30830],"v":[{"k":[20445],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[19982],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21407],"v":[{"k":[20808],"v":[{"k":[30340],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]},{"k":[20570],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[25552],"v":[{"k":[39640],"v":[{"k":[21487],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[20154],"v":[{"k":[22763],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20837],"v":[{"k":[20102],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[91],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31995],"v":[{"k":[21015],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]},{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}},{"k":[22270],"v":[{"k":[30340],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[19978],"v":[{"k":[19968],"v":[{"k":[23567],"v":[{"k":[33410],"v":[{"k":[25552],"v":[{"k":[21040],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[25110],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[23427],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[30340],"v":[{"k":[21069],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[20869],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[65292],"v":[{"k":[21518],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[22806],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[23601],"v":[{"k":[24418],"v":[{"k":[25104],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22278],"v":[{"k":[29615],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]},{"k":[38750],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[20013],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[54,1],[81,1]]},"k":[26681],"v":[{"k":[25454],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[26377],"v":[{"k":[20123],"v":[{"k":[35768],"v":[{"k":[24046],"v":[{"k":[24322],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[32447],"v":[{"k":[24615],"v":[{"k":[34920],"v":[{"k":[8220],"v":[{"k":[12289],"v":[{"k":[8220],"v":[{"k":[26641],"v":[{"k":[8220],"v":[{"k":[12289],"v":[{"k":[8220],"v":[{"k":[22270],"v":[{"k":[8220],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"k":[20010],"v":[{"k":[20849],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[65288],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[65289],"v":[{"k":[8220],"v":[{"k":[30340],"v":[{"k":[38598],"v":[{"k":[21512],"v":[{"k":[12290],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[21547],"v":[{"k":[26377],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[8220],"v":[{"k":[21644],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[21333],"v":[{"k":[19968],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"k":[19968],"v":[{"k":[32500],"v":[{"k":[65289],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65288],"v":[{"k":[22810],"v":[{"k":[32500],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[26126],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[24230],"v":[{"k":[21517],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[24182],"v":[{"k":[38750],"v":[{"k":[24378],"v":[{"k":[21046],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[19968],"v":[{"k":[34892],"v":[{"k":[65288],"v":[{"k":[21015],"v":[{"k":[65289],"v":[{"k":[21040],"v":[{"k":[24213],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[19981],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[32500,65292,23545],"v":[{"k":[24230],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[24212],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65307],"v":[{"k":[32780],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[25104],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[29616],"v":[{"k":[24322,22797],"v":[{"k":[27493],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[21518],"v":[{"k":[19981],"v":[{"k":[31649],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[21482],"v":[{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26434],"v":[{"k":[30340],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]},{"k":[26356],"v":[{"k":[26032],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[19978],"v":[{"k":[38754],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[20013],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[19981],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[27491],"v":[{"k":[24120],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35810],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]},{"k":[21551],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]},{"k":[39640],"v":[{"k":[20142],"v":[{"k":[65288],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[65288],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[65289],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[30340],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[31227],"v":[{"k":[21040],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[20250],"v":[{"k":[36827],"v":[{"k":[20837],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"k":[20197],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[35813],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[31561],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[35299],"v":[{"k":[36825],"v":[{"k":[27425],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[20102],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[20540],"v":[{"k":[24471],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[30340],"v":[{"k":[26032],"v":[{"k":[29305],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[32477],"v":[{"k":[22823],"v":[{"k":[22810],"v":[{"k":[25968],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[30528],"v":[{"k":[20026],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[20570],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26679],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[20877],"v":[{"k":[25903,25512],"v":[{"k":[25345],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[28982],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[20173],"v":[{"k":[28982],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[26159],"v":[{"k":[20250],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25104],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[20808],"v":[{"k":[32423],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159],"v":[{"k":[25552],"v":[{"k":[39640],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[25972],"v":[{"k":[20102],"v":[{"k":[19978],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[46],"v":[{"k":[63],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[58],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21360],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[96],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19981],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25110],"v":[{"k":[24223],"v":[{"k":[24323],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24314],"v":[{"k":[19968,22270],"v":[{"k":[20010],"v":[{"k":[26368,20363],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[21487],"v":[{"k":[22797],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]},{"k":[23376],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[23558],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[20182],"v":[{"k":[20154],"v":[{"k":[26356],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[22797],"v":[{"k":[29616],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[12290],"v":[{"k":[65288],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[65292],"v":[{"k":[21407],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[34987],"v":[{"k":[24223],"v":[{"k":[24323],"v":[{"k":[12290],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[40,1],[45,1],[47,1],[48,1],[62,3],[119,1]]},"k":[32773,35831],"v":[{"d":{"df":6,"dc":[[40,1],[42,1],[45,2],[51,3],[62,2],[64,2]]},"k":[20063,20808,65292,25353,65306],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35774],"v":[{"k":[32622],"v":[{"k":[23436],"v":[{"k":[20854],"v":[{"k":[23427],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31354],"v":[{"k":[30340],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21518],"v":[{"k":[22635],"v":[{"k":[20837],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20570],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[27714],"v":[{"k":[26032],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]},{"k":[23376,22914],"v":[{"k":[24212],"v":[{"k":[23613],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20197],"v":[{"k":[26368],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[22797],"v":[{"k":[29616],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[21435],"v":[{"k":[38500],"v":[{"k":[19981],"v":[{"k":[24517],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21644],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35753],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[20154],"v":[{"k":[26356],"v":[{"k":[24555],"v":[{"k":[36895],"v":[{"k":[22320],"v":[{"k":[23450],"v":[{"k":[20301],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[35753],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[26356],"v":[{"k":[24555],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[12290],"v":[{"k":[26356],"v":[{"k":[35814],"v":[{"k":[32454],"v":[{"k":[30340],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[35831],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65306,65292,26576],"v":[{"d":{"df":2,"dc":[[51,4],[75,2]]}},{"k":[91,22312],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[20010],"v":[{"k":[29980],"v":[{"k":[21697],"v":[{"k":[24215],"v":[{"k":[21508],"v":[{"k":[31867],"v":[{"k":[29980],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26029],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]},{"k":[21578],"v":[{"d":{"df":1,"dc":[[40,1]]}}]},{"k":[26524,20309,19978,19979,26377],"v":[{"d":{"df":1,"dc":[[75,3]]},"k":[19981,27809,21482,26159,20320,22270,20026,20027,20445,38656,24819,25105,35201,25968,35774,26377,20351,20043,21322,24076],"v":[{"k":[31526,26159,25351],"v":[{"k":[21512],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[25110],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[39044],"v":[{"k":[26399],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[24456],"v":[{"k":[26377],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[40,1]]}},{"k":[23450],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[33021,26377],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[31572],"v":[{"k":[22797],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21457],"v":[{"k":[36865],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[33267],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[32452],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31867,22352],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[20551],"v":[{"k":[22914],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[26377],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26631],"v":[{"k":[31995],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24819],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[20197],"v":[{"k":[20943],"v":[{"k":[23569],"v":[{"k":[21253],"v":[{"k":[20307],"v":[{"k":[31215],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[96],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[65292],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[20013],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159,35273,21457],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]},{"k":[24471],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[30340],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[30772],"v":[{"k":[22351],"v":[{"k":[20102],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[22312],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22359],"v":[{"k":[22806],"v":[{"k":[38754],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[38459],"v":[{"k":[27490],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[35813],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29616],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22359],"v":[{"k":[24182],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[34987],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[20808],"v":[{"k":[26816],"v":[{"k":[26597],"v":[{"k":[35813],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[35821],"v":[{"k":[27861],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[19981],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[19981],"v":[{"k":[31561],"v":[{"k":[20110],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,2]]}},{"k":[39064],"v":[{"k":[20445],"v":[{"k":[23384],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]},{"k":[23384],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]},{"k":[35201],"v":[{"k":[26377,23545],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[39035],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26377],"v":[{"k":[21518],"v":[{"k":[32512],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[20182,21319,23558],"v":[{"k":[20204],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[32423],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[22270],"v":[{"k":[24418],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[20026],"v":[{"k":[20219],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[38656,24819,24076],"v":[{"k":[35201],"v":[{"k":[23545],"v":[{"k":[26085],"v":[{"k":[26399],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[65288],"v":[{"k":[106],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24314],"v":[{"k":[31435],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[27178],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[26159],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26395],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[22312],"v":[{"k":[27178],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[21644],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[19978],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[22312],"v":[{"k":[31515],"v":[{"k":[21345],"v":[{"k":[23572],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[21602],"v":[{"k":[65311],"v":[{"k":[31572],"v":[{"k":[26696],"v":[{"k":[20063],"v":[{"k":[24456],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[35201],"v":[{"k":[25226],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[20540],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[35774,21152,21644],"v":[{"k":[32622],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[36733],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36739],"v":[{"k":[38271],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31354],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[30011],"v":[{"k":[24067],"v":[{"k":[19978],"v":[{"k":[20063],"v":[{"k":[20250],"v":[{"k":[35753],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[35273],"v":[{"k":[24471],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20026],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]},{"k":[32622],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[64,2]]}}]}]},{"k":[31867,22810],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[24819],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21040],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[37327],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[24635],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[36129],"v":[{"k":[29486],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[21592],"v":[{"k":[23545],"v":[{"k":[24635],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[39069],"v":[{"k":[30340],"v":[{"k":[36129],"v":[{"k":[29486],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[32773],"v":[{"k":[22312,26377],"v":[{"d":{"df":1,"dc":[[81,1]]}},{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[21069],"v":[{"k":[26159],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[96],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[24452],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[39033],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[26159],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[22312],"v":[{"k":[26576],"v":[{"k":[20123],"v":[{"k":[20998],"v":[{"k":[36776],"v":[{"k":[29575],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20869],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[23567],"v":[{"k":[20110],"v":[{"k":[22806],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[12290],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26395],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20063],"v":[{"k":[19981],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351,21306],"v":[{"k":[29992],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]},{"k":[20998],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"k":[21738],"v":[{"k":[37324],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[25152],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[24605],"v":[{"k":[36335],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"k":[65288],"v":[{"k":[105],"v":[{"k":[65289],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[65288],"v":[{"k":[105],"v":[{"k":[105],"v":[{"k":[65289],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21040],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65306,22270],"v":[{"d":{"df":1,"dc":[[71,1]]}},{"k":[31034,65292,20154],"v":[{"k":[20363],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[12300,26576],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[12301],"v":[{"k":[12300],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[12301],"v":[{"k":[12300],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[12301],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[24182],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[22826],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[27969],"v":[{"k":[22833],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20174],"v":[{"k":[12300],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[12301],"v":[{"k":[21040],"v":[{"k":[12300],"v":[{"k":[21672],"v":[{"k":[35810],"v":[{"k":[12301],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[20943],"v":[{"k":[23569],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[37325],"v":[{"k":[28857],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[20026],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[21672],"v":[{"k":[35810],"v":[{"k":[37327],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[20943],"v":[{"k":[23569],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[21672],"v":[{"k":[35810],"v":[{"k":[30340],"v":[{"k":[20837],"v":[{"k":[21475],"v":[{"k":[19981],"v":[{"k":[22815],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[8],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24188],"v":[{"k":[20799],"v":[{"k":[22253],"v":[{"k":[19978],"v":[{"k":[21608],"v":[{"k":[36164],"v":[{"k":[37329],"v":[{"k":[27969],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[20013],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[20102],"v":[{"k":[39044],"v":[{"k":[31639],"v":[{"k":[21644],"v":[{"k":[24320],"v":[{"k":[38144],"v":[{"k":[12290],"v":[{"k":[21442],"v":[{"k":[19982],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30340],"v":[{"k":[20845],"v":[{"k":[20010],"v":[{"k":[26041],"v":[{"k":[38754],"v":[{"k":[26159],"v":[{"k":[39135],"v":[{"k":[21697],"v":[{"k":[12289],"v":[{"k":[29609],"v":[{"k":[20855],"v":[{"k":[12289],"v":[{"k":[32472],"v":[{"k":[26412],"v":[{"k":[12289],"v":[{"k":[21307],"v":[{"k":[30103],"v":[{"k":[12289],"v":[{"k":[38376],"v":[{"k":[31080],"v":[{"k":[12289],"v":[{"k":[26381],"v":[{"k":[39280],"v":[{"k":[12290],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21475],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21452],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[20391],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[30007],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20391],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[22899],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[26159],"v":[{"k":[21333],"v":[{"k":[32431],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[31867],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[36127],"v":[{"k":[25968],"v":[{"k":[12290],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[65292],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"k":[23558],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24207],"v":[{"k":[21015],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[26356],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351,24517],"v":[{"k":[29992],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]},{"k":[26495,24335],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19979],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[25353,36890,19988,19981,27809],"v":[{"k":[29031],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[35814],"v":[{"k":[32454],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]},{"k":[36807],"v":[{"d":{"df":1,"dc":[[42,1]]}}]},{"k":[25351,65292],"v":[{"k":[23450],"v":[{"k":[20102],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[38024],"v":[{"k":[23545],"v":[{"k":[26377],"v":[{"k":[26356],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[26080],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[24230],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[39640],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[24230],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[23558],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20316],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25903,26159],"v":[{"k":[25345],"v":[{"k":[32431],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[22235],"v":[{"k":[20010],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[31526],"v":[{"k":[30340],"v":[{"k":[21491],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[26159],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[37117],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[12290],"v":[{"k":[35814],"v":[{"k":[24773],"v":[{"k":[35831],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26377],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35810],"v":[{"k":[31867],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]},{"k":[38382,25171,26694,35821,65292,20215,12290,22270,31561,21487,24037],"v":[{"k":[31572],"v":[{"k":[24179],"v":[{"k":[21488],"v":[{"k":[19978],"v":[{"k":[25552],"v":[{"k":[38382],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]},{"k":[21253],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26500],"v":[{"k":[24314],"v":[{"k":[65292],"v":[{"k":[26412],"v":[{"k":[25991],"v":[{"k":[23558],"v":[{"k":[20250],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26550],"v":[{"k":[30340],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[65292],"v":[{"k":[106],"v":[{"k":[97],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[12289],"v":[{"k":[112],"v":[{"k":[121],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[12289],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35328],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]},{"k":[115,20882,29616],"v":[{"k":[118],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]},{"k":[21495],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[20173],"v":[{"k":[19981],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[20110],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]},{"d":{"df":2,"dc":[[51,1],[74,1]]},"k":[24403],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[34920],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[21547],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[12290],"v":[{"k":[36825,26377],"v":[{"k":[20123],"v":[{"k":[30340],"v":[{"k":[22320],"v":[{"k":[26041],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[32447],"v":[{"k":[23485],"v":[{"k":[12289],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20102],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23601],"v":[{"k":[33267],"v":[{"k":[23569],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20570],"v":[{"k":[21040],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20107],"v":[{"k":[24773],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33021],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[22320],"v":[{"k":[26041],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20855],"v":[{"k":[24322],"v":[{"k":[27493],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21518],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[25216,20860],"v":[{"k":[26415],"v":[{"k":[31867],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]},{"k":[23481],"v":[{"k":[24615],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[20182,20540,23450,20313,20013,23454,27425],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[38382,27880,22823,30340],"v":[{"k":[39064],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21457],"v":[{"k":[36865],"v":[{"k":[33521],"v":[{"k":[25991],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[33267],"v":[{"k":[37038],"v":[{"k":[20214],"v":[{"k":[32452],"v":[{"d":{"df":1,"dc":[[40,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24847],"v":[{"k":[20107],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]},{"k":[37096],"v":[{"k":[20998],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[20027],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]},{"k":[22914],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[20041],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[33258,30340],"v":[{"k":[21160],"v":[{"k":[32447],"v":[{"k":[24615],"v":[{"k":[35745],"v":[{"k":[31639],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,2]]}}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[26377],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[20381],"v":[{"k":[27425],"v":[{"k":[39034],"v":[{"k":[26102],"v":[{"k":[38024],"v":[{"k":[25490],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292,23384],"v":[{"k":[91,19979,96],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[24038],"v":[{"k":[36793],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[30340],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[24050],"v":[{"k":[19981],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25110],"v":[{"k":[24223],"v":[{"k":[24323],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[118],"v":[{"k":[111],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[22240],"v":[{"k":[26524],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[25237],"v":[{"k":[25918],"v":[{"k":[37327],"v":[{"k":[21644],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[29575],"v":[{"k":[26159],"v":[{"k":[27491],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[35828],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[29575],"v":[{"k":[39640],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[26159],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[24191],"v":[{"k":[21578],"v":[{"k":[25237],"v":[{"k":[25918],"v":[{"k":[37327],"v":[{"k":[22810],"v":[{"k":[36896],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26377],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[30340],"v":[{"k":[27491],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[26377],"v":[{"k":[36275],"v":[{"k":[22815],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[30001],"v":[{"k":[21435],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[25237],"v":[{"k":[25918],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[21435],"v":[{"k":[35266],"v":[{"k":[23519],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[91],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[28304],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[24050],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[49,1]]},"k":[20320,21069,22270,36825,20854,8220],"v":[{"k":[26377],"v":[{"k":[8220],"v":[{"k":[19981],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[25104],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[26679],"v":[{"k":[8221],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[8220],"v":[{"k":[19981],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[20987],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[25152],"v":[{"k":[23646],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[12290],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"k":[19981],"v":[{"k":[35201],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[37117],"v":[{"k":[19981],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[35748],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[36755],"v":[{"k":[20837],"v":[{"k":[26469],"v":[{"k":[33258],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20182],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[25968],"v":[{"k":[20540],"v":[{"k":[21450],"v":[{"k":[21487],"v":[{"k":[36716],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[21644],"v":[{"k":[8220],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[36716],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[21644],"v":[{"k":[8220],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[8221],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[30693],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[31216],"v":[{"k":[21628],"v":[{"k":[8220],"v":[{"k":[21518],"v":[{"k":[32773],"v":[{"k":[8221],"v":[{"k":[20026],"v":[{"k":[8220],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[8221],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26041],"v":[{"d":{"df":1,"dc":[[44,1]]},"k":[23454],"v":[{"k":[20363],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[22270,30340],"v":[{"k":[34920],"v":[{"k":[31867,25152],"v":[{"k":[22411],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]},{"k":[25551],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22823],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[34920],"v":[{"k":[8221],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[65292],"v":[{"k":[19978],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[37117],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[26469],"v":[{"k":[23481],"v":[{"k":[32435],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25226],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21160,25968],"v":[{"k":[20316],"v":[{"k":[21644],"v":[{"k":[21160],"v":[{"k":[20316],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[20256],"v":[{"k":[36755],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[30340],"v":[{"k":[23384],"v":[{"k":[20648],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[21069],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21306],"v":[{"d":{"df":1,"dc":[[44,1]]},"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[38598],"v":[{"d":{"df":1,"dc":[[41,1]]}}]}]}]}]}]}]}]},{"k":[22914,35774],"v":[{"k":[20320,26159,25968],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[96],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[109],"v":[{"k":[96],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[96],"v":[{"k":[121],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[31561],"v":[{"k":[21253],"v":[{"k":[31649],"v":[{"k":[29702],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[8220],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[8220],"v":[{"k":[65292],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[120],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[23548],"v":[{"k":[20986],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[39029,20027],"v":[{"k":[38754],"v":[{"k":[20013],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[39029],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[39029],"v":[{"k":[37117],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39064],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]},{"k":[24615,23450,27530],"v":[{"k":[21482],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]},{"k":[32452],"v":[{"k":[21512],"v":[{"k":[20197],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20570],"v":[{"k":[20986],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[34920],"v":[{"k":[26684],"v":[{"k":[12289],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[32447],"v":[{"k":[31561],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65306],"v":[{"k":[22270],"v":[{"k":[26631],"v":[{"k":[12289],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[32447],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[22359],"v":[{"k":[12289],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[34920],"v":[{"k":[26684],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35013],"v":[{"d":{"df":1,"dc":[[42,2]]},"k":[26041],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351,22312],"v":[{"k":[29992],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[21629],"v":[{"k":[20196],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]},{"k":[22238],"v":[{"k":[35843],"v":[{"k":[20989],"v":[{"k":[25968],"v":[{"k":[20013],"v":[{"k":[33719],"v":[{"k":[24471],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21517],"v":[{"k":[12289],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[21518],"v":[{"k":[22312],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20179],"v":[{"k":[24211],"v":[{"k":[20013],"v":[{"k":[32034],"v":[{"k":[24341],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[20854],"v":[{"k":[23427],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[21518],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[28014],"v":[{"k":[23618],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38656,20998,34892,21015,29031],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":2,"dc":[[42,1],[81,2]]},"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[118],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[22909],"v":[{"k":[22788],"v":[{"k":[26159],"v":[{"k":[20551],"v":[{"k":[22914],"v":[{"k":[20320],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20064],"v":[{"k":[24815],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[26356],"v":[{"k":[26131],"v":[{"k":[20110],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[21644],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[28982],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21407],"v":[{"k":[29702],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25226],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24378],"v":[{"k":[35843],"v":[{"k":[30340],"v":[{"k":[26368],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[65288],"v":[{"k":[19981],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[26159],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[65289],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[26368],"v":[{"k":[31361],"v":[{"k":[20986],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920,29255,24038,20363,24418,30340],"v":[{"k":[21644,23481,30340,45,23454,39068],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]},{"k":[22120],"v":[{"k":[21450],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]},{"k":[22270],"v":[{"k":[24418],"v":[{"k":[26102],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[21518],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[22312],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[24320],"v":[{"k":[20851],"v":[{"k":[26102],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[98],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[72,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[33394],"v":[{"k":[35201],"v":[{"k":[21563],"v":[{"k":[21512],"v":[{"k":[24120],"v":[{"k":[35782],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]},{"k":[23454],"v":[{"k":[38469],"v":[{"k":[23384],"v":[{"k":[25918],"v":[{"k":[22320],"v":[{"k":[22336],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]},{"k":[20391],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]},{"d":{"df":1,"dc":[[52,1]]},"k":[24320,26159,19968,30340,20108,19977,27880,35201],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[21482],"v":[{"k":[20250],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[23545],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[21306],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[27880],"v":[{"k":[37322],"v":[{"k":[12289],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[12289],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[31561],"v":[{"k":[26469],"v":[{"k":[26631],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[35760],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25110],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[35813],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12289],"v":[{"k":[21364],"v":[{"k":[26159],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[30340],"v":[{"k":[38053],"v":[{"k":[21273],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33324,58],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[21491],"v":[{"k":[19978],"v":[{"k":[35282],"v":[{"k":[12289],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[24213],"v":[{"k":[37096],"v":[{"k":[12289],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[27178],"v":[{"k":[25490],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[32437],"v":[{"k":[25490],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"k":[12290],"v":[{"k":[36824],"v":[{"k":[35201],"v":[{"k":[32508],"v":[{"k":[21512],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[26159],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[21738],"v":[{"k":[31181],"v":[{"k":[25670],"v":[{"k":[25918],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[32437],"v":[{"k":[21521],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[32039],"v":[{"k":[24352],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[21306],"v":[{"k":[37327],"v":[{"k":[36807],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[12289],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[25670],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[19979],"v":[{"k":[26041],"v":[{"k":[12290],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[26159],"v":[{"k":[20960],"v":[{"k":[31181],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[30340],"v":[{"k":[25670],"v":[{"k":[25918],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[52,1]]}}]},{"k":[39068],"v":[{"k":[33394],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[26377],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"k":[31181],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12289],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[25152],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[58],"v":[{"d":{"df":1,"dc":[[52,1]]}}]},{"k":[58],"v":[{"d":{"df":1,"dc":[[52,1]]}}]},{"k":[24847],"v":[{"k":[20107],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]},{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[35270],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[20123],"v":[{"k":[21452],"v":[{"k":[36724],"v":[{"k":[22270],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20102],"v":[{"k":[22810],"v":[{"k":[31181],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[35201],"v":[{"k":[26377],"v":[{"k":[25152],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31867,20803,30340,65288,22823],"v":[{"k":[21035],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32032],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[26102,38468],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[24102],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[34987],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24418,22823],"v":[{"k":[29366],"v":[{"d":{"df":1,"dc":[[119,1]]}}]},{"k":[23567],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]},{"k":[115],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[65289],"v":[{"k":[25351],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[8220],"v":[{"k":[28857],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[12290],"v":[{"k":[26377],"v":[{"k":[19977],"v":[{"k":[31867],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[21487],"v":[{"k":[36873],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23567],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":3,"dc":[[121,1],[122,1],[128,1]]}}]}]}]}]}]},{"k":[20379,31034],"v":[{"k":[30340,20102,19968],"v":[{"k":[25353,25968],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[26469],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[24517],"v":[{"k":[39035],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[22810,36724,20016,26356],"v":[{"k":[31181],"v":[{"k":[23433,26032],"v":[{"k":[35013],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[20219],"v":[{"k":[24847],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[23494],"v":[{"k":[38598],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[33021],"v":[{"k":[28165],"v":[{"k":[26224],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[12289],"v":[{"k":[20934],"v":[{"k":[30830],"v":[{"k":[34920],"v":[{"k":[24847],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"d":{"df":1,"dc":[[49,3]]}}]},{"k":[23500],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[65292],"v":[{"k":[21253],"v":[{"k":[25324],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22909],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[32452,26694],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"d":{"df":1,"dc":[[77,1]]},"k":[65288],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26368],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[24335],"v":[{"k":[22320],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[35814],"v":[{"k":[32454],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24515],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[26680],"v":[{"k":[24515],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[26579],"v":[{"d":{"df":1,"dc":[[45,1]]},"k":[22120,27169,20195],"v":[{"d":{"df":1,"dc":[[45,2]]},"k":[65292,21644,12290,26469,21487,65288,26102,93],"v":[{"k":[27880,20174,38656,25110,25105],"v":[{"k":[24847],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]},{"k":[32780],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"k":[21482],"v":[{"k":[39035],"v":[{"k":[22312],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32773],"v":[{"k":[21333],"v":[{"k":[29420],"v":[{"k":[32500],"v":[{"k":[25252],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[26041],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"d":{"df":1,"dc":[[45,2]]}},{"d":{"df":1,"dc":[[45,2]]}},{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25913],"v":[{"k":[21892],"v":[{"k":[12290],"v":[{"k":[22823],"v":[{"k":[30053],"v":[{"k":[24471],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[36816],"v":[{"k":[34892],"v":[{"k":[22312],"v":[{"k":[20302],"v":[{"k":[31471],"v":[{"k":[23433],"v":[{"k":[21331],"v":[{"k":[26426],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33021],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]},{"k":[65292],"v":[{"k":[33039],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[25506],"v":[{"k":[27979],"v":[{"k":[24182],"v":[{"k":[21482],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[35270],"v":[{"k":[22270],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[21464],"v":[{"k":[21160],"v":[{"k":[37117],"v":[{"k":[24341],"v":[{"k":[36215],"v":[{"k":[30011],"v":[{"k":[24067],"v":[{"k":[23436],"v":[{"k":[20840],"v":[{"k":[37325],"v":[{"k":[32472],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[33021],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25552],"v":[{"k":[39640],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[24103],"v":[{"k":[29575],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[39057],"v":[{"k":[32321],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[12290],"v":[{"k":[20197],"v":[{"k":[24448],"v":[{"k":[36825],"v":[{"k":[31867],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[52],"v":[{"k":[46],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[50],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[65292,21017,30340],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[30340],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[20013],"v":[{"k":[23601],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[20877],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[26080],"v":[{"k":[38656],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[27169],"v":[{"k":[22359],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[26102],"v":[{"k":[20505],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[25226],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[30721],"v":[{"k":[20063],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[36827],"v":[{"k":[26469],"v":[{"k":[65292],"v":[{"k":[38500],"v":[{"k":[27492],"v":[{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[26377],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20381],"v":[{"k":[36182],"v":[{"k":[30340],"v":[{"k":[25913],"v":[{"k":[21160],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[62,4],[81,4],[110,1]]},"k":[24517,36716,21478,21517,25442,29992],"v":[{"k":[39035],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]},{"k":[25442],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[40],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[30446],"v":[{"k":[21069],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[33021],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[22312],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31354],"v":[{"k":[38388],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[34892],"v":[{"k":[31526],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[25442],"v":[{"k":[34892],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]},{"k":[26469],"v":[{"k":[25511],"v":[{"k":[21046],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[30001],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]},{"k":[20876,65306,24847],"v":[{"k":[24517],"v":[{"k":[39035],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[42,2]]}}]}]}]}]}]},{"k":[24403,36825],"v":[{"k":[21069],"v":[{"k":[26576],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[20381],"v":[{"k":[28982],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20381],"v":[{"k":[36182],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[24182],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[65306,65292,32500,20107,36825,21306],"v":[{"k":[22312,29702,22914,96,35813],"v":[{"d":{"df":1,"dc":[[53,1]]}},{"k":[35770],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[26524],"v":[{"k":[19981],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]},{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21482],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[36739],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[20307],"v":[{"k":[31215],"v":[{"k":[32780],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26159],"v":[{"k":[20840],"v":[{"k":[37327],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20851],"v":[{"k":[27880],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27599,25442,36923,36825,26032],"v":[{"k":[20010],"v":[{"k":[22806],"v":[{"k":[37096],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"k":[21517],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34892],"v":[{"k":[20173],"v":[{"k":[26159],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[36753],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[20808],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[37324],"v":[{"k":[26159],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[22359],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[30418],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[20013],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[24207],"v":[{"k":[21495],"v":[{"k":[65288],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[65289],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39033],"v":[{"d":{"df":2,"dc":[[72,1],[73,1]]}}]},{"k":[20214],"v":[{"k":[20107],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[27425],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]},{"k":[21035],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[31354],"v":[{"k":[8221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[19982],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19979,21475],"v":[{"k":[26469],"v":[{"k":[30340,25105],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[23601],"v":[{"k":[36319],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[23558],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[23433],"v":[{"k":[35013],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[30446],"v":[{"k":[24405],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27880],"v":[{"k":[20876],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[35201],"v":[{"k":[27880,32473,20877],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[27880,65292],"v":[{"k":[24847],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[30340],"v":[{"k":[20307],"v":[{"k":[31215],"v":[{"k":[26159],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351,36825,25955],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[22312],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]},{"k":[37324],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]},{"k":[28857],"v":[{"k":[22270],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[26377],"v":[{"k":[21147],"v":[{"k":[22320],"v":[{"k":[35777],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20986],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[65292],"v":[{"k":[26368],"v":[{"k":[23567,22823],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[21333],"v":[{"k":[29420],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[96],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[96],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[22312,24378,21487,36824,25552,20063,21457,20197,30475,24076,36890],"v":[{"k":[31034,35774],"v":[{"k":[20363],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[8221],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[30340],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[24403],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[12290],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[22312],"v":[{"k":[20320],"v":[{"k":[30340],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35745],"v":[{"k":[26032],"v":[{"k":[29256],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[26080],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[32771],"v":[{"k":[37327],"v":[{"k":[20381],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[33394],"v":[{"k":[20540],"v":[{"k":[37117],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[21453],"v":[{"k":[22797],"v":[{"k":[27979],"v":[{"k":[35797],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[36776],"v":[{"k":[35782],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[28165],"v":[{"k":[26970],"v":[{"k":[22320],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[8203],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28872],"v":[{"k":[27426],"v":[{"k":[36814],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[20204],"v":[{"k":[91],"v":[{"k":[21453],"v":[{"k":[39304],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[41],"v":[{"k":[32473],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[20307],"v":[{"k":[39564],"v":[{"k":[21644],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[20570],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[35774,20351,29992],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[32452],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[22810],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[21487],"v":[{"k":[36873],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20379],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[25903,25552],"v":[{"k":[25345],"v":[{"k":[20102],"v":[{"k":[36923],"v":[{"k":[36753],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[31526],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[20379],"v":[{"k":[20102],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[26469],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[20027],"v":[{"k":[21160],"v":[{"k":[25511],"v":[{"k":[21046],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"k":[24067],"v":[{"k":[23616],"v":[{"k":[31574],"v":[{"k":[30053],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[25302],"v":[{"k":[21160],"v":[{"k":[12289],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22312],"v":[{"k":[30011],"v":[{"k":[24067],"v":[{"k":[36793],"v":[{"k":[32536],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[24341],"v":[{"k":[23548],"v":[{"k":[32447],"v":[{"k":[21644],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[20173],"v":[{"k":[21487],"v":[{"k":[32852],"v":[{"k":[21160],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[20851],"v":[{"k":[32852],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29616],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[24456],"v":[{"k":[22823],"v":[{"k":[19968],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26368],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[20026],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[26469],"v":[{"k":[30475],"v":[{"k":[30475],"v":[{"k":[26032],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[27973],"v":[{"k":[33394],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[21644],"v":[{"k":[28145],"v":[{"k":[33394],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[31038],"v":[{"k":[21306],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[20102],"v":[{"k":[24456],"v":[{"k":[22810],"v":[{"k":[37239],"v":[{"k":[28843],"v":[{"k":[30340],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[24448],"v":[{"k":[24448],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[32780],"v":[{"k":[21462],"v":[{"k":[24039],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23545],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[20316],"v":[{"k":[20102],"v":[{"k":[20840],"v":[{"k":[38754],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[65292],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[20102],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[30690],"v":[{"k":[37327],"v":[{"k":[36335],"v":[{"k":[24452],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[12289],"v":[{"k":[20063],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[20102],"v":[{"k":[38170],"v":[{"k":[28857],"v":[{"k":[65288],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[12289],"v":[{"k":[36827],"v":[{"k":[24230],"v":[{"k":[26465],"v":[{"k":[65288],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[22278],"v":[{"k":[35282],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26395],"v":[{"k":[22914],"v":[{"k":[27492],"v":[{"k":[24378],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[32780],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[20307],"v":[{"k":[39564],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[20851],"v":[{"k":[27880],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[38754],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24120],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[26469],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[26377],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[26126],"v":[{"k":[30830],"v":[{"k":[30340],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[22312],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[21306],"v":[{"k":[38388],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[20869],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20027],"v":[{"k":[21160],"v":[{"k":[22320],"v":[{"k":[21435],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110,31532,20004,24212,25991,36825,20195,27599,35843],"v":[{"k":[20351,37197,26377,24403,22270,20854,31867,19968,25240,25968,24320],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]},{"k":[32622],"v":[{"k":[39033],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]},{"k":[20123],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[36275],"v":[{"k":[20197],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[20960],"v":[{"k":[30334],"v":[{"k":[20960],"v":[{"k":[21315],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[22320],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21069],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20020],"v":[{"k":[26102],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[20889],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21487],"v":[{"k":[28378],"v":[{"k":[21160],"v":[{"k":[32763],"v":[{"k":[39029],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20182],"v":[{"k":[8220],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[36716],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[22312],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[25353],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[29305],"v":[{"k":[24615],"v":[{"k":[26377],"v":[{"k":[21161],"v":[{"k":[20110],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65306],"v":[{"k":[25226],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[25490],"v":[{"k":[21040],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[65292],"v":[{"k":[23588],"v":[{"k":[20854],"v":[{"k":[26159],"v":[{"k":[24403],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[20849],"v":[{"k":[21516],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[26102],"v":[{"k":[12290],"v":[{"k":[35265],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[12289],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[22343],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[32553],"v":[{"k":[25918],"v":[{"k":[65292],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36724],"v":[{"k":[31561],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[20102],"v":[{"k":[20840],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[20307],"v":[{"k":[39564],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21457],"v":[{"k":[32773],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[22235],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[25353],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[20808],"v":[{"k":[32423],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36215],"v":[{"k":[26469],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26412],"v":[{"k":[22359],"v":[{"k":[20013],"v":[{"k":[20010],"v":[{"k":[21035],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[23383],"v":[{"k":[20307],"v":[{"k":[12289],"v":[{"k":[39640],"v":[{"k":[23485],"v":[{"k":[12289],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[12289],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]},{"k":[30721],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[20102],"v":[{"k":[37325],"v":[{"k":[20889],"v":[{"k":[65292],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[37325],"v":[{"k":[26032],"v":[{"k":[35745],"v":[{"k":[31639],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20102],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[24320,32452,33258,25552,21306,23450,34920,28385,25351,31649,20570,35774,37197,35843,24378,24471,26174,30528,21319],"v":[{"k":[21457],"v":[{"d":{"df":1,"dc":[[42,1]]}}]},{"k":[21512],"v":[{"k":[20986],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[24517],"v":[{"k":[39035],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[21644],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21160],"v":[{"k":[26684,24179],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]},{"k":[22343],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[25104],"v":[{"k":[33509],"v":[{"k":[24178],"v":[{"k":[22359],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20379],"v":[{"k":[36890],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20998],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]},{"k":[20041],"v":[{"k":[27599,65292],"v":[{"k":[22359],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]},{"k":[36825],"v":[{"k":[26679],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[65292,25105],"v":[{"k":[27492],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[20204],"v":[{"k":[35201],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[36275],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[19968,24341,65288],"v":[{"k":[20010],"v":[{"k":[8220],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[8221],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[20013],"v":[{"k":[26159],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[33021],"v":[{"k":[20351],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[33021],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[29992],"v":[{"k":[36884],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[31354],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[36825],"v":[{"k":[37324],"v":[{"k":[21644],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[29702],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[22797],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"k":[24635],"v":[{"k":[20307],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[24863],"v":[{"k":[35273],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[12290],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[25972],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[21046],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[65292],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[36825],"v":[{"k":[20040],"v":[{"k":[20570],"v":[{"k":[65288],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"k":[19979],"v":[{"k":[25991],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[30418],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[12290,27599],"v":[{"d":{"df":1,"dc":[[75,1]]}},{"k":[20010],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[23454],"v":[{"k":[29616],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[32423],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[21015,22914],"v":[{"k":[31867,22312,21517,24341,25152,65292,34987],"v":[{"k":[22411],"v":[{"k":[30340,12290],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[21518],"v":[{"k":[32512],"v":[{"k":[37117],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]},{"k":[20540],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20026],"v":[{"k":[65306],"v":[{"k":[39],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[12289],"v":[{"k":[39],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"k":[12289],"v":[{"k":[39],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20256],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[31216],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20250],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23433],"v":[{"k":[25918],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[20309],"v":[{"k":[38543],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[32780],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[32047],"v":[{"k":[31215],"v":[{"k":[30340],"v":[{"k":[24635],"v":[{"k":[25968],"v":[{"k":[19981],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[65292],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20986],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[22312],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"d":{"df":3,"dc":[[51,3],[54,3],[78,1]]},"k":[31867,26368,20132,35774,93,20013,30340,23450,65292,12290,26469,36827,65306],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[21518],"v":[{"k":[32512],"v":[{"k":[37117],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[42,1]]}}]}]}]}]}]}]}]}]},{"k":[22810],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[25918],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[20114],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[41],"v":[{"d":{"df":3,"dc":[[53,1],[54,1],[81,3]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487,30452,65306],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[26377],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]},{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"k":[65288],"v":[{"k":[21407],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[20173],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[24456],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[23436],"v":[{"k":[20840],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[12290],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[31616],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20041],"v":[{"k":[20102],"v":[{"k":[25226],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[42],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[42],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[42],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[19978],"v":[{"k":[42],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36890,22312,21487],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[54,1]]}}]},{"k":[27599],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[19978],"v":[{"k":[38754],"v":[{"k":[65292],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[21046],"v":[{"k":[20316],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[32472],"v":[{"k":[22270],"v":[{"k":[26495],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21457],"v":[{"k":[25381],"v":[{"k":[24819],"v":[{"k":[35937],"v":[{"k":[21147],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[54,1]]}},{"k":[37197,23454],"v":[{"k":[32622],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26377],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[31561],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[19978],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[32473],"v":[{"k":[20986],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26102],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34892],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[36890],"v":[{"k":[36947],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"k":[35814],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[36807,24120],"v":[{"d":{"df":3,"dc":[[42,1],[53,1],[114,1]]},"k":[39292,35843],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[21333],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]},{"k":[26469,32780],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]},{"k":[35328],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]},{"k":[22411,20284],"v":[{"d":{"df":1,"dc":[[42,1]]},"k":[30340,12290,26041,65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[33021],"v":[{"k":[22312],"v":[{"k":[25968],"v":[{"k":[36724],"v":[{"k":[19978],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[39035],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[101,26102],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[38388],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[27861],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[32452],"v":[{"k":[21512],"v":[{"k":[20986],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21482],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20102],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[26356],"v":[{"k":[20005],"v":[{"k":[26684],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[26816],"v":[{"k":[26597],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[20320],"v":[{"k":[25552],"v":[{"k":[21069],"v":[{"k":[26816],"v":[{"k":[27979],"v":[{"k":[21040],"v":[{"k":[26410],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30465],"v":[{"k":[30053],"v":[{"k":[19981],"v":[{"k":[20889],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]},{"k":[22320],"v":[{"k":[65292],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[43,6]]},"k":[21021,32780,12300,36825],"v":[{"k":[22987],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]},{"k":[20063],"v":[{"k":[23601],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"k":[19978],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[35775],"v":[{"k":[38382],"v":[{"k":[12301],"v":[{"k":[21040],"v":[{"k":[12300],"v":[{"k":[21672],"v":[{"k":[35810],"v":[{"k":[12301],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[30340],"v":[{"k":[27969],"v":[{"k":[22833],"v":[{"k":[29575],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[22823],"v":[{"k":[20110],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[35282],"v":[{"k":[24230],"v":[{"k":[19978],"v":[{"k":[26469],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35748],"v":[{"k":[20026],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20869],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[30340,26159,25552,12290],"v":[{"d":{"df":1,"dc":[[43,1]]}},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[35813],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[24211],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[24037],"v":[{"k":[31243],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[21442],"v":[{"k":[32771],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[30340],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20379],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[73,1]]}}]}]},{"k":[38754],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25214],"v":[{"k":[21040],"v":[{"k":[21508],"v":[{"k":[20010],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[38142],"v":[{"k":[25509],"v":[{"k":[12290],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[19979],"v":[{"k":[26041],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24405,21069],"v":[{"k":[19979],"v":[{"k":[30340,26159],"v":[{"d":{"df":2,"dc":[[43,1],[73,1]]}},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[21442],"v":[{"k":[32771],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[21024],"v":[{"k":[38500],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21482,24182],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[23545],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[38750],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[37117],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20026,21487],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]},{"k":[25351,12290],"v":[{"k":[23450],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[120,1]]}}]}]},{"k":[33021],"v":[{"k":[30340,19968],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]},{"k":[26679],"v":[{"k":[30340],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[20989],"v":[{"k":[25968],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[19981],"v":[{"k":[36807],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[27704],"v":[{"k":[36828],"v":[{"k":[20026],"v":[{"k":[27492],"v":[{"k":[26102],"v":[{"k":[20256],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35265],"v":[{"k":[91],"v":[{"k":[22312],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]}]}]}]}]}]}]},{"k":[33616],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[43,1]]}}]}]},{"k":[28304],"v":[{"k":[21015],"v":[{"k":[34920],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]},{"k":[20851,21516,35265],"v":[{"k":[30340],"v":[{"k":[36164,37197,23450,23646],"v":[{"k":[28304],"v":[{"k":[65292],"v":[{"k":[21253],"v":[{"k":[25324],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]},{"k":[32622],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[36724,21051,25991],"v":[{"k":[32447],"v":[{"k":[20004],"v":[{"k":[31471],"v":[{"k":[30340],"v":[{"k":[31661],"v":[{"k":[22836],"v":[{"k":[65292],"v":[{"k":[36724],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[38271],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[23383],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[33258],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20041],"v":[{"k":[26377],"v":[{"k":[25152],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[31867],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[20013],"v":[{"k":[26356],"v":[{"k":[21152],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24615],"v":[{"k":[34987],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[20102,65306],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]},{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[21363],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[20540],"v":[{"k":[20026],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65281],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[26412],"v":[{"k":[65292,35201,24320],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]}]}]}]}]}]},{"k":[27714],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[35],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[50],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[37],"v":[{"k":[101],"v":[{"k":[55],"v":[{"k":[37],"v":[{"k":[56],"v":[{"k":[57],"v":[{"k":[37],"v":[{"k":[56],"v":[{"k":[56],"v":[{"k":[37],"v":[{"k":[101],"v":[{"k":[54],"v":[{"k":[37],"v":[{"k":[57],"v":[{"k":[99],"v":[{"k":[37],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[37],"v":[{"k":[101],"v":[{"k":[56],"v":[{"k":[37],"v":[{"k":[97],"v":[{"k":[54],"v":[{"k":[37],"v":[{"k":[56],"v":[{"k":[49],"v":[{"k":[37],"v":[{"k":[101],"v":[{"k":[54],"v":[{"k":[37],"v":[{"k":[98],"v":[{"k":[49],"v":[{"k":[37],"v":[{"k":[56],"v":[{"k":[50],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22987],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[22320],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"k":[31561,93],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"d":{"df":1,"dc":[[44,1]]}}]}]},{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[63],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[110],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[61],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[112],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[115],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[65292],"v":[{"k":[35813],"v":[{"k":[25554],"v":[{"k":[20214],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[20320],"v":[{"k":[20445],"v":[{"k":[23384],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[24110],"v":[{"k":[20320],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21270],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35272],"v":[{"k":[22120],"v":[{"k":[31471,20860,12290],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[24211],"v":[{"k":[22823],"v":[{"k":[22810],"v":[{"k":[20250],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]},{"k":[23481],"v":[{"k":[24615],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[25105],"v":[{"k":[20204],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[32487],"v":[{"k":[32493],"v":[{"k":[32500],"v":[{"k":[25252],"v":[{"k":[21644],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34892],"v":[{"k":[28210,25968,19968,22686],"v":[{"k":[26579],"v":[{"k":[12290],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26469],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[24448],"v":[{"k":[24448],"v":[{"k":[26159],"v":[{"k":[21487],"v":[{"k":[26367],"v":[{"k":[25442],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[30456],"v":[{"k":[36817],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[21644],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[21448],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[24046],"v":[{"k":[24322],"v":[{"k":[12290],"v":[{"k":[20110],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[21462],"v":[{"k":[33293],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[25104],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[19981],"v":[{"k":[26131],"v":[{"k":[26377],"v":[{"k":[26631],"v":[{"k":[20934],"v":[{"k":[31572],"v":[{"k":[26696],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[20123],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[36816],"v":[{"k":[31639],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[37327],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19981],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24067],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]},{"k":[25968,35265,32771],"v":[{"k":[93,12290],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[30334],"v":[{"k":[24230],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]}}]},{"d":{"df":12,"dc":[[45,1],[51,1],[59,1],[62,2],[64,2],[75,4],[81,6],[111,2],[116,1],[117,1],[127,1],[130,1]]},"k":[36793],"v":[{"k":[26694],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[23618],"v":[{"k":[24211],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]},{"k":[33324,25991,20010,20123,34892,30452,26679],"v":[{"k":[26469],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[99,101],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}},{"d":{"df":1,"dc":[[81,1]]},"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[20869],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[12290],"v":[{"k":[27599],"v":[{"k":[34892],"v":[{"k":[30340],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[30001],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38750,23613],"v":[{"k":[24120],"v":[{"k":[37325],"v":[{"k":[35270],"v":[{"k":[26080],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[35753],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[20154],"v":[{"k":[22763],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[24179],"v":[{"k":[31561],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20256],"v":[{"k":[36882],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[20063],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[33021],"v":[{"k":[20197],"v":[{"k":[26497],"v":[{"k":[20302],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[25104],"v":[{"k":[26412],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[32780],"v":[{"k":[26377],"v":[{"k":[21033],"v":[{"k":[20110],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[26356],"v":[{"k":[24895],"v":[{"k":[24847],"v":[{"k":[20026],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[20154],"v":[{"k":[22763],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[33021],"v":[{"k":[22320],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]},{"k":[36866,22810,35814,26032],"v":[{"k":[21512],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[65288],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[26159],"v":[{"k":[30001],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[22823],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[65289],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[28909],"v":[{"k":[21147],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[22320],"v":[{"k":[29702],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[25110],"v":[{"k":[24179],"v":[{"k":[34892],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[35268],"v":[{"k":[27169],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21033],"v":[{"k":[20110],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[26576],"v":[{"k":[20123],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39044,32452],"v":[{"k":[35272],"v":[{"k":[24067],"v":[{"k":[23616],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[20214],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]},{"k":[32454],"v":[{"k":[30340],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[35831],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[73,2]]}}]}]}]}]}]}]}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"k":[26377,20307],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[21183],"v":[{"k":[65306],"v":[{"k":[23427],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23384],"v":[{"k":[21344],"v":[{"k":[29992],"v":[{"k":[26356],"v":[{"k":[20302],"v":[{"k":[65288],"v":[{"k":[36825],"v":[{"k":[23545],"v":[{"k":[31227],"v":[{"k":[21160],"v":[{"k":[31471],"v":[{"k":[23588],"v":[{"k":[20854],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27983],"v":[{"k":[35272],"v":[{"k":[22120],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[32553],"v":[{"k":[25918],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[26102],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[27169],"v":[{"k":[31946],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487,26469],"v":[{"k":[20197],"v":[{"k":[30475],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]},{"k":[35828],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[52],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"k":[37327,25454,32452],"v":[{"k":[22810],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[20869],"v":[{"k":[23384],"v":[{"k":[21344],"v":[{"k":[29992],"v":[{"k":[36229],"v":[{"k":[20986],"v":[{"k":[25163],"v":[{"k":[26426],"v":[{"k":[25215],"v":[{"k":[21463],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[37327,21517,22312,22270,39033,30340,21487,21644,26368,25490,36716,38598,21040,28857],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[65288],"v":[{"k":[32463],"v":[{"k":[39564],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[21517],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[20256],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[24418],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,3]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[35270,21508,21160],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]},{"k":[31181],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[24577],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]},{"k":[35270,20197],"v":[{"k":[21270],"v":[{"k":[26159,22312],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21040],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[65288],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[32534],"v":[{"k":[30721],"v":[{"k":[65292],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[36890],"v":[{"k":[36947],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36807],"v":[{"k":[21435],"v":[{"k":[30340],"v":[{"k":[20960],"v":[{"k":[24180],"v":[{"k":[20013],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"k":[38271],"v":[{"k":[36275],"v":[{"k":[30340],"v":[{"k":[21457],"v":[{"k":[23637],"v":[{"k":[12290],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20135],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[26399],"v":[{"k":[24453],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[26159],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[22312],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[12289],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[12289],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[31561],"v":[{"k":[26041],"v":[{"k":[38754],"v":[{"k":[26377],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[39640],"v":[{"k":[32423],"v":[{"k":[30340],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34987],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[22797],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[22823],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[24517],"v":[{"k":[20026],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[19968],"v":[{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32500,20854],"v":[{"k":[24230],"v":[{"d":{"df":1,"dc":[[54,1]]}}]},{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[20998],"v":[{"k":[31163],"v":[{"k":[24320],"v":[{"k":[26469],"v":[{"k":[12290],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24120],"v":[{"k":[21464],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[24120],"v":[{"k":[19981],"v":[{"k":[21464],"v":[{"k":[12290],"v":[{"k":[20998],"v":[{"k":[24320],"v":[{"k":[26131],"v":[{"k":[20110],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[31649],"v":[{"k":[29702],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23567],"v":[{"k":[20540],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[39,51],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]},{"k":[48],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24207],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[25442],"v":[{"k":[22522,30340,22120],"v":[{"k":[30784],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[36827],"v":[{"k":[38454],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[62,3]]}}]}]},{"d":{"df":2,"dc":[[64,1],[77,1]]}},{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[116,1]]},"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]},{"k":[20013],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[20197,20026,21462,30452,35270,35775],"v":[{"k":[26681,35774,21516,34987,22810,31616,22312,25552,25351,21482,36890],"v":[{"k":[25454],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36873],"v":[{"k":[29992],"v":[{"k":[21482],"v":[{"k":[29992],"v":[{"k":[21040],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[45,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[20840,20026,25991],"v":[{"k":[23616],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[33394],"v":[{"k":[30424],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[19987],"v":[{"k":[23646],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[33394],"v":[{"k":[30424],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}},{"k":[23383],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[26102],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"d":{"df":2,"dc":[[54,1],[64,1]]}}]}]}]}]}]},{"k":[38142,19981,20351],"v":[{"k":[24335],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[35821],"v":[{"k":[27861],"v":[{"k":[31958],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21516],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[29992],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[37325],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[65292],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"k":[35265],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20889],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"d":{"df":1,"dc":[[64,1]]},"k":[26381,21508],"v":[{"k":[21153],"v":[{"k":[31471],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[91],"v":[{"k":[23448],"v":[{"k":[26041],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[37324],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20010],"v":[{"k":[23567],"v":[{"k":[25130],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[22312],"v":[{"k":[26381],"v":[{"k":[21153],"v":[{"k":[31471],"v":[{"k":[39044],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[20986],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22788],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]},{"k":[21319],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[38750],"v":[{"k":[21516],"v":[{"k":[23618],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[65292],"v":[{"k":[24378],"v":[{"k":[28872],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[24320],"v":[{"k":[21551],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20026],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[26631],"v":[{"k":[20102],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25351],"v":[{"k":[23450],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[30340],"v":[{"k":[38271],"v":[{"k":[23485],"v":[{"k":[27604],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36807],"v":[{"k":[19968,23558],"v":[{"k":[20010],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[24320],"v":[{"k":[21551],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[12290],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[36229],"v":[{"k":[20986],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[25130],"v":[{"k":[26029],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[25442],"v":[{"k":[34892],"v":[{"k":[12290],"v":[{"k":[23494],"v":[{"k":[38598],"v":[{"k":[30340],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65292],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[26377],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[32654],"v":[{"k":[35266],"v":[{"k":[30340],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[25490],"v":[{"k":[24067],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39292],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[112,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]}},{"k":[20540],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[25509],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[25506],"v":[{"k":[32034],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[65292],"v":[{"k":[21152],"v":[{"k":[28145],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20027],"v":[{"k":[26088],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38382],"v":[{"k":[24615],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[38556,24847],"v":[{"k":[30861],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]},{"k":[20041],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[23450],"v":[{"k":[20102],"v":[{"k":[26080],"v":[{"k":[38556],"v":[{"k":[30861],"v":[{"k":[23500],"v":[{"k":[20114],"v":[{"k":[32852],"v":[{"k":[32593],"v":[{"k":[24212],"v":[{"k":[29992],"v":[{"k":[35268],"v":[{"k":[33539],"v":[{"k":[38598],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[119],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[45],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[119],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[51],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[119],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[47],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[65292],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20174],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[35268],"v":[{"k":[33539],"v":[{"k":[65292],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[30450],"v":[{"k":[20154],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[26391],"v":[{"k":[35835],"v":[{"k":[35774],"v":[{"k":[22791],"v":[{"k":[30340],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[19979],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20154],"v":[{"k":[32676],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35748],"v":[{"k":[20851,25353,25226,20540,20250,65292,30340,26377,35774,20027,19981],"v":[{"k":[38381],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]},{"k":[29031],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[21487],"v":[{"k":[36716],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[20063],"v":[{"k":[34987],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[25104],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[25353],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]},{"k":[12290],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[34987],"v":[{"k":[23433],"v":[{"k":[25918],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[33258,35797],"v":[{"k":[21160],"v":[{"k":[25506],"v":[{"k":[27979],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[28982],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[19981],"v":[{"k":[20934],"v":[{"k":[30830],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[32773],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[24378],"v":[{"k":[21046],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]},"k":[35268,20027],"v":[{"k":[21017],"v":[{"k":[19981],"v":[{"k":[33021],"v":[{"k":[28385],"v":[{"k":[36275],"v":[{"k":[35201],"v":[{"k":[27714],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[26469],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39064],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[32780],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[20248],"v":[{"k":[38597],"v":[{"k":[12289],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[21407],"v":[{"k":[29702],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[26159],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[12290],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35745],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[39064],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"k":[20877],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[96],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[96],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622,20026,23450],"v":[{"k":[20026,22270,26041,26609,65292,12290,25240,21738],"v":[{"d":{"df":2,"dc":[[46,2],[75,1]]},"k":[20197],"v":[{"d":{"df":1,"dc":[[119,1]]}}]},{"k":[29255],"v":[{"k":[39640],"v":[{"k":[23485],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[24335],"v":[{"k":[20030],"v":[{"k":[20363],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]},{"k":[21253,21487],"v":[{"k":[25324],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]},{"k":[20197],"v":[{"k":[26159],"v":[{"k":[35832],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]},{"k":[27604,21487],"v":[{"k":[22914],"v":[{"k":[22312],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[20026],"v":[{"k":[20854],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[32447],"v":[{"k":[23485],"v":[{"k":[12289],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12289],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[12289],"v":[{"k":[19981],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[31561],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21442],"v":[{"k":[32771],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[25163],"v":[{"k":[20876],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[20854],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[114,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20123],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[118,1]]}}]}]}]}]}]}]}]}]}]}]},{"d":{"df":3,"dc":[[54,1],[110,2],[115,2]]}},{"k":[25104],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[22768],"v":[{"k":[26126],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[21551,22987,21457,22836],"v":[{"k":[12290,65292],"v":[{"k":[24320],"v":[{"k":[21551],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12289],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[31561],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[20851],"v":[{"k":[20110],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]},{"k":[25903,65289,65292,35745,35760,19979],"v":[{"k":[25345],"v":[{"k":[20102,23500,27880],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[8221],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[27169],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]},{"k":[20876],"v":[{"k":[29420],"v":[{"k":[31435],"v":[{"k":[30340],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[22120],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[26356,21160],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[24577],"v":[{"k":[30340],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[21253],"v":[{"k":[21644],"v":[{"k":[38745],"v":[{"k":[24577],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[21253],"v":[{"k":[20998],"v":[{"k":[31163],"v":[{"k":[24320],"v":[{"k":[12290],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[21253],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[65289,65292],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[21508],"v":[{"k":[31181],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[37117],"v":[{"k":[20889],"v":[{"k":[65292],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[20889],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31532],"v":[{"k":[19977],"v":[{"k":[21015],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[65292],"v":[{"k":[20808],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[19968],"v":[{"k":[19979],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21517],"v":[{"k":[35789],"v":[{"k":[30340],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20307,30340],"v":[{"k":[39564],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[26102],"v":[{"k":[20505],"v":[{"k":[23545],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[22823],"v":[{"k":[20992],"v":[{"k":[38420],"v":[{"k":[26023],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[26500],"v":[{"k":[20197],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[20196],"v":[{"k":[20154],"v":[{"k":[28608],"v":[{"k":[21160],"v":[{"k":[20154],"v":[{"k":[24515],"v":[{"k":[30340],"v":[{"k":[29305],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292,30340],"v":[{"k":[21518],"v":[{"k":[38754],"v":[{"k":[36319],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[30340],"v":[{"k":[32477],"v":[{"k":[23545],"v":[{"k":[25110],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[22320],"v":[{"k":[22336],"v":[{"k":[12290],"v":[{"k":[24418],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[120],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[119,1]]}}]}]},{"k":[25104],"v":[{"k":[30340,25551,20102,25968],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]},{"k":[36848],"v":[{"k":[30340],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[27969],"v":[{"k":[31243],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[25454],"v":[{"k":[30340],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[24615],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[65292,38450,26469,20013,65306,37117,25351,29992,35774],"v":[{"k":[22312,20197],"v":[{"k":[26391],"v":[{"k":[35835],"v":[{"k":[35774],"v":[{"k":[22791],"v":[{"k":[30340],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[30450],"v":[{"k":[20154],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20540],"v":[{"k":[20026],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21450],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[27490],"v":[{"k":[21516],"v":[{"k":[20010],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[12290],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450,37197],"v":[{"k":[21046],"v":[{"k":[12290],"v":[{"k":[91],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[12290],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[26159],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[110],"v":[{"k":[65289],"v":[{"k":[26469],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[75,1]]}},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[38544],"v":[{"k":[21435],"v":[{"k":[19981],"v":[{"k":[20889],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[12290,20026],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]},{"k":[24418],"v":[{"k":[29366],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26469],"v":[{"k":[34920],"v":[{"k":[24449],"v":[{"k":[38454],"v":[{"k":[26799],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[20849],"v":[{"k":[26377],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[21462],"v":[{"k":[20540],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[100],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[120,1]]}}]}]}]}]},{"k":[20307],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]},{"k":[32622],"v":[{"k":[39033,65292,20026,12290],"v":[{"k":[25351,21253,65292,35843,20013],"v":[{"k":[23450],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25324],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]},{"k":[25913],"v":[{"k":[21464],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[34892],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[121],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[98],"v":[{"k":[121],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25972],"v":[{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[27492],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}},{"d":{"df":1,"dc":[[110,1]]}}]}]},{"k":[21046,20041,20301],"v":[{"k":[27169,25991],"v":[{"k":[26495],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]},{"k":[26412],"v":[{"k":[22359],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[12289],"v":[{"k":[36793],"v":[{"k":[26694],"v":[{"k":[12289],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[12289],"v":[{"k":[26059],"v":[{"k":[36716],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20026,20102],"v":[{"k":[36830,20998],"v":[{"k":[32493],"v":[{"k":[22411],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]},{"k":[27573],"v":[{"k":[22411],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]},{"k":[22270],"v":[{"k":[24418],"v":[{"k":[39068,23610],"v":[{"k":[33394],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21015],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]},{"k":[23544],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[20877],"v":[{"k":[26059],"v":[{"k":[36716],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[20102,22806,27492],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[25972,30452,19978,19968,20108,21160,20197],"v":[{"k":[20307],"v":[{"k":[24615],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[32454],"v":[{"k":[31890],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25509],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]},{"k":[36848],"v":[{"k":[35268,30340],"v":[{"k":[33539],"v":[{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22806],"v":[{"k":[37096],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"k":[22806],"v":[{"k":[37096],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[33021],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[25110],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[26356],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[26041],"v":[{"k":[24211],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36143],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[20102],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[25104],"v":[{"k":[28145],"v":[{"k":[33394],"v":[{"k":[27169],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32500],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[20197],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24577],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[19978],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65289],"v":[{"k":[65292,12290],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[23427],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[25226],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[30340],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36755],"v":[{"k":[20986],"v":[{"k":[32473],"v":[{"k":[21040],"v":[{"k":[21518],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[25105,28023,22914,36824,23427],"v":[{"k":[20204],"v":[{"k":[36825,20026],"v":[{"k":[27425],"v":[{"k":[20063],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[20102],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[20869],"v":[{"k":[30340],"v":[{"k":[21015],"v":[{"k":[34920],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[39034],"v":[{"k":[24207],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25152],"v":[{"k":[26377],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[36824],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[20102],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[22312],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[22320],"v":[{"k":[22270],"v":[{"k":[31561],"v":[{"k":[23569],"v":[{"k":[25968],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013],"v":[{"k":[25165],"v":[{"k":[33021],"v":[{"k":[24320],"v":[{"k":[21551],"v":[{"k":[30340],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[65292],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[21333],"v":[{"k":[36873],"v":[{"k":[25110],"v":[{"k":[22810],"v":[{"k":[36873],"v":[{"k":[27169],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[37327],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[19979],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[20063],"v":[{"k":[26377],"v":[{"k":[20102],"v":[{"k":[22823],"v":[{"k":[24133],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[25552],"v":[{"k":[21319],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[32463],"v":[{"k":[24120],"v":[{"k":[30896],"v":[{"k":[21040],"v":[{"k":[22823],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[23454],"v":[{"k":[26102],"v":[{"k":[26102],"v":[{"k":[24207],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[39640],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[30340],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20960],"v":[{"k":[30334],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[20960],"v":[{"k":[21313],"v":[{"k":[27627],"v":[{"k":[31186],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[19968],"v":[{"k":[27425],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26524],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[26159],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[36824],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25903],"v":[{"k":[25345],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]},{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[20989],"v":[{"k":[25968],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[20026],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20840,25972,25104],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]},{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[27969],"v":[{"k":[31243],"v":[{"k":[35831],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[26144],"v":[{"k":[23556],"v":[{"k":[65292],"v":[{"k":[21442],"v":[{"k":[35265],"v":[{"k":[21518],"v":[{"k":[25991],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20351,20102],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[46,1]]}}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[22312],"v":[{"k":[34892],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159,25552,21487,26377,26032,22312],"v":[{"d":{"df":2,"dc":[[46,1],[51,1]]}},{"k":[20379],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]},{"k":[20197],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[8220],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[22120],"v":[{"k":[8221],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20123],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[22686],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[36148],"v":[{"k":[33457],"v":[{"k":[30340],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[26696],"v":[{"k":[36741],"v":[{"k":[21161],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[65292],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38750],"v":[{"k":[24120],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[32454],"v":[{"k":[33410],"v":[{"k":[20013],"v":[{"k":[20570],"v":[{"k":[20102],"v":[{"k":[25913],"v":[{"k":[36827],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[26356],"v":[{"k":[36731],"v":[{"k":[26494],"v":[{"k":[22320],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[22909],"v":[{"k":[29992],"v":[{"k":[12289],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[28789],"v":[{"k":[27963],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[35762],"v":[{"k":[36848],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32972],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[25925],"v":[{"k":[20107],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20026],"v":[{"k":[25972,26609],"v":[{"k":[20307],"v":[{"k":[24615],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[46],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26465],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[19978],"v":[{"k":[38480],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[24456],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[20063],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[22826],"v":[{"k":[23485],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35774,22768,38142,20915],"v":[{"k":[32622,20026],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[46,1]]}}]},{"d":{"df":1,"dc":[[110,1]]}}]},{"k":[26126],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[24335],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[33719],"v":[{"k":[21462],"v":[{"k":[21069],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[20869],"v":[{"k":[65292],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[31446],"v":[{"k":[30452],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[30001],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25509],"v":[{"k":[23436],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[20043],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[20381],"v":[{"k":[27425],"v":[{"k":[25340],"v":[{"k":[25509],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[46],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[21253],"v":[{"k":[25324],"v":[{"k":[27169],"v":[{"k":[26495],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[20197],"v":[{"k":[26367],"v":[{"k":[25442],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[46,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22686,29305,30340,25903],"v":[{"k":[19968,25903,30340],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[25345],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[65289],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[21019],"v":[{"k":[24314],"v":[{"k":[24102],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[24207],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38543],"v":[{"k":[30528],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[35762],"v":[{"k":[36848],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[28436],"v":[{"k":[21464],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21151],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[109,1]]}}]}]}]}]},{"k":[24615],"v":[{"d":{"df":1,"dc":[[77,1]]},"k":[93],"v":[{"k":[40],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[110],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26631],"v":[{"k":[31614],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35753],"v":[{"k":[20320],"v":[{"k":[22312],"v":[{"k":[31227],"v":[{"k":[21160],"v":[{"k":[31471],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[23616],"v":[{"k":[38480],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[20869],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26377],"v":[{"k":[24456],"v":[{"k":[20248],"v":[{"k":[38597],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25345],"v":[{"k":[20102],"v":[{"k":[33039],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[65292],"v":[{"k":[35299],"v":[{"k":[20915],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[23616],"v":[{"k":[37096],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[29942],"v":[{"k":[39048],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622,28210],"v":[{"k":[21464,25552,24418],"v":[{"k":[37327],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[20379],"v":[{"k":[20102],"v":[{"k":[33021],"v":[{"k":[36215],"v":[{"k":[36807],"v":[{"k":[28388],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29366],"v":[{"k":[65292,21253],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[65292],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[25324],"v":[{"k":[65306],"v":[{"k":[22278],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[22278],"v":[{"k":[35282],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[19977],"v":[{"k":[35282],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[33777],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[22823],"v":[{"k":[22836],"v":[{"k":[38024],"v":[{"k":[24418],"v":[{"k":[12289],"v":[{"k":[31661],"v":[{"k":[22836],"v":[{"k":[24418],"v":[{"k":[65292],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[116],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[39],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[35201],"v":[{"k":[23558],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26579],"v":[{"k":[23436],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[20445],"v":[{"k":[25345],"v":[{"k":[24456],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23384],"v":[{"k":[21344],"v":[{"k":[29992],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[27969],"v":[{"k":[30021],"v":[{"k":[30340],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[31561],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30721,26367],"v":[{"k":[25512,30340,35302,26469,30452],"v":[{"k":[33616],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]},{"k":[39044],"v":[{"k":[35272],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]},{"k":[21457],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[36798],"v":[{"k":[21040],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[30340],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[25509],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[26356],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[30340],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[27492],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[12290,20043],"v":[{"d":{"df":1,"dc":[[81,16]]}},{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]},{"k":[22914],"v":[{"k":[27880,65292,22312],"v":[{"k":[37322],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[22270,22312],"v":[{"k":[34920],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[30007],"v":[{"k":[22899],"v":[{"k":[20154],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[22235],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[25104],"v":[{"k":[24180],"v":[{"k":[30007],"v":[{"k":[24615],"v":[{"k":[8221],"v":[{"k":[21644],"v":[{"k":[8220],"v":[{"k":[30007],"v":[{"k":[23401],"v":[{"k":[8221],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[25104],"v":[{"k":[24180],"v":[{"k":[22899],"v":[{"k":[24615],"v":[{"k":[8221],"v":[{"k":[21644],"v":[{"k":[8220],"v":[{"k":[22899],"v":[{"k":[23401],"v":[{"k":[8221],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[32452],"v":[{"k":[30340],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36825],"v":[{"k":[20010],"v":[{"k":[91],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[45],"v":[{"k":[121],"v":[{"k":[45],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[41],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[31227],"v":[{"k":[21040],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[23427],"v":[{"k":[38750],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[23601],"v":[{"k":[20250],"v":[{"k":[28129],"v":[{"k":[20986],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[28165],"v":[{"k":[26224],"v":[{"k":[30340],"v":[{"k":[31361],"v":[{"k":[20986],"v":[{"k":[32858],"v":[{"k":[28966],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[26641],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[26093],"v":[{"k":[26085],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[26705],"v":[{"k":[22522],"v":[{"k":[31561],"v":[{"k":[26356],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[28129],"v":[{"k":[20986],"v":[{"k":[38750],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[26469],"v":[{"k":[35266],"v":[{"k":[23519],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[32852],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"k":[19988],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[38452],"v":[{"k":[24433],"v":[{"k":[31561],"v":[{"k":[22312],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[65288],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[20013],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"k":[28129],"v":[{"k":[20986],"v":[{"k":[65288],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[29366],"v":[{"k":[24577],"v":[{"k":[20013],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21491],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[24038],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[19978,12290,38754,36733,25991,30340],"v":[{"d":{"df":1,"dc":[[47,1]]}},{"d":{"df":1,"dc":[[47,1]]}},{"k":[65292,26159,31034,23545,36825,35814,24038],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23601,23637],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[20960],"v":[{"k":[31181],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65292],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[20854],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23558],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[30690],"v":[{"k":[37327],"v":[{"k":[29233],"v":[{"k":[24515],"v":[{"k":[24418],"v":[{"k":[29366],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]},"k":[30417,19978,19968,19981],"v":[{"k":[21548],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[24320],"v":[{"k":[20851],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[36848],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[26368,27178],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[20026],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[12289],"v":[{"k":[32437],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[26368],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20877],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[28436],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"k":[22914],"v":[{"k":[20309],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[54,1]]}},{"k":[20010],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[26465],"v":[{"k":[20214],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32454],"v":[{"k":[35299],"v":[{"k":[37322],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[36793],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[23646,20107],"v":[{"k":[24615],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[20214],"v":[{"k":[21517],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[19981],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[21517],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35813],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]},{"k":[24038],"v":[{"k":[36793],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[116,1]]},"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[23558],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"k":[19981],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[114,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20142],"v":[{"k":[20195,24403,30340,26679,26102],"v":[{"k":[30721],"v":[{"k":[34892],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[21517],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]},{"k":[21069],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[26679,22522],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[30784],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[26032],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[20102],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[28129],"v":[{"k":[20986],"v":[{"k":[42],"v":[{"k":[42],"v":[{"k":[20854],"v":[{"k":[23427],"v":[{"k":[38750],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36798],"v":[{"k":[21040],"v":[{"k":[32858],"v":[{"k":[28966],"v":[{"k":[30446],"v":[{"k":[26631],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,3]]}}]}]},{"k":[28857,26631],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]}]}]},{"k":[31614],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]}]}]}]}]}]}]},{"k":[26524],"v":[{"k":[65306,58,22914],"v":[{"d":{"df":1,"dc":[[47,2]]}},{"d":{"df":1,"dc":[[47,1]]}},{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]},{"k":[21152],"v":[{"d":{"df":1,"dc":[[78,1]]},"k":[31034,37197],"v":[{"k":[20363],"v":[{"d":{"df":1,"dc":[[47,1]]}}]},{"k":[32622],"v":[{"k":[39033],"v":[{"k":[38142],"v":[{"k":[25509],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]},{"k":[22336,29702,22270],"v":[{"k":[20013],"v":[{"k":[96],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[96],"v":[{"k":[21518],"v":[{"k":[38754],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[20018],"v":[{"d":{"df":1,"dc":[[47,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[65288],"v":[{"k":[103],"v":[{"k":[101],"v":[{"k":[111],"v":[{"k":[65289],"v":[{"k":[29305],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65288],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[22987],"v":[{"k":[21270],"v":[{"d":{"df":1,"dc":[[48,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]},{"k":[28857],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]},{"d":{"df":2,"dc":[[64,3],[116,1]]},"k":[20854,35302,19981,27178],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]},{"k":[21457],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]},{"k":[20877],"v":[{"k":[34987,25903],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[65288],"v":[{"k":[24403],"v":[{"k":[28982],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23613],"v":[{"k":[37327],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[20102],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[25913],"v":[{"k":[21160],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20250],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[31687],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[37324],"v":[{"k":[23613],"v":[{"k":[37327],"v":[{"k":[35814],"v":[{"k":[23613],"v":[{"k":[24471],"v":[{"k":[35299],"v":[{"k":[37322],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[25913],"v":[{"k":[21160],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25345],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[20102],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65307],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38656,26377,65292,30340,38388],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[26377],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24847],"v":[{"k":[20041],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,4]]}}]}]}]},{"k":[27492,20182,26377,21448,36824],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[34987],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,3]]}}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[26102],"v":[{"k":[20505],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20250],"v":[{"k":[37197],"v":[{"k":[19981],"v":[{"k":[23545],"v":[{"k":[65292],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[20986],"v":[{"k":[26469],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[19981],"v":[{"k":[30693],"v":[{"k":[36947],"v":[{"k":[21738],"v":[{"k":[37324],"v":[{"k":[38169],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24819],"v":[{"k":[38024],"v":[{"k":[23545],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[65292],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26816],"v":[{"k":[26597],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[26377],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20960],"v":[{"k":[20010],"v":[{"k":[35201],"v":[{"k":[28857],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[36724],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[24212],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]},{"k":[21548],"v":[{"k":[22270,8220],"v":[{"k":[34920],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[24182],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[20214],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[33719,19982,21517,65288,30340,31561,12290,20250,21644,96,19981,26159,22312,32473,65292],"v":[{"k":[21462],"v":[{"k":[27983,21040],"v":[{"k":[35272],"v":[{"k":[22120],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36873],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26356],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[30340],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[12290],"v":[{"k":[19982],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[21644],"v":[{"k":[28129],"v":[{"k":[20986],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[36873],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]},"k":[34892],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]},{"k":[31216],"v":[{"k":[65292],"v":[{"k":[22343],"v":[{"k":[20026],"v":[{"k":[23567],"v":[{"k":[20889],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32465],"v":[{"k":[23450],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36825],"v":[{"k":[37324],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[24320],"v":[{"k":[20851],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65289,22522],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[32553],"v":[{"k":[25918],"v":[{"k":[26102],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[30784],"v":[{"k":[19978],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]},{"d":{"df":1,"dc":[[51,1]]},"k":[19979],"v":[{"k":[38754],"v":[{"k":[20808],"v":[{"k":[26469],"v":[{"k":[30475],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[21518],"v":[{"k":[25171],"v":[{"k":[24320],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30001],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[20063],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[37324],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[35832],"v":[{"k":[22914],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[51,1]]}},{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,2]]}}]},{"k":[21516],"v":[{"k":[12290],"v":[{"k":[21069],"v":[{"k":[32773],"v":[{"k":[26159],"v":[{"k":[24403],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[22312],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[22320],"v":[{"k":[26041],"v":[{"k":[37117],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[21518],"v":[{"k":[32773],"v":[{"k":[26159],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[24403],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[19978],"v":[{"k":[26102],"v":[{"k":[25165],"v":[{"k":[33021],"v":[{"k":[34987],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[12290],"v":[{"k":[20107],"v":[{"k":[23454],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[19978],"v":[{"k":[34987],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[30340],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21464,20026],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,3]]}}]},{"k":[21547,22826,21516,20877,38656,30456],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[20043],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[19981],"v":[{"k":[31561],"v":[{"k":[20110],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30456,36866],"v":[{"k":[21516],"v":[{"k":[12290],"v":[{"k":[23588],"v":[{"k":[20854],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[21069],"v":[{"k":[32773],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[22312],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[24211],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[30830],"v":[{"k":[23450],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21512],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[26041],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[34429],"v":[{"k":[28982],"v":[{"k":[20180],"v":[{"k":[32454],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[33021],"v":[{"k":[30830],"v":[{"k":[23450],"v":[{"k":[21482],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[20045],"v":[{"k":[19968],"v":[{"k":[30475],"v":[{"k":[65292],"v":[{"k":[24456],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[35823],"v":[{"k":[20197],"v":[{"k":[20026],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[19978],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340,26679],"v":[{"d":{"df":1,"dc":[[77,1]]},"k":[39068],"v":[{"k":[33394],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[21644],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24050],"v":[{"k":[32463],"v":[{"k":[20064],"v":[{"k":[24815],"v":[{"k":[23558],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21644],"v":[{"k":[21508],"v":[{"k":[31181],"v":[{"k":[20107],"v":[{"k":[29289],"v":[{"k":[25110],"v":[{"k":[27010],"v":[{"k":[24565],"v":[{"k":[32465],"v":[{"k":[23450],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[25552],"v":[{"k":[21040],"v":[{"k":[26576],"v":[{"k":[20123],"v":[{"k":[20107],"v":[{"k":[29289],"v":[{"k":[26102],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[32463],"v":[{"k":[24120],"v":[{"k":[20250],"v":[{"k":[36805],"v":[{"k":[36895],"v":[{"k":[30340],"v":[{"k":[22312],"v":[{"k":[24515],"v":[{"k":[20013],"v":[{"k":[21305],"v":[{"k":[37197],"v":[{"k":[20854],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[25552],"v":[{"k":[21040],"v":[{"k":[8220],"v":[{"k":[20113],"v":[{"k":[26421],"v":[{"k":[8221],"v":[{"k":[20250],"v":[{"k":[24819],"v":[{"k":[21040],"v":[{"k":[30333],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[8220],"v":[{"k":[29233],"v":[{"k":[24773],"v":[{"k":[8221],"v":[{"k":[20250],"v":[{"k":[24819],"v":[{"k":[21040],"v":[{"k":[31881],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[33258],"v":[{"k":[28982],"v":[{"k":[30340],"v":[{"k":[12289],"v":[{"k":[19982],"v":[{"k":[35821],"v":[{"k":[20041],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[34987],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[34],"v":[{"k":[35821],"v":[{"k":[20041],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"k":[33394],"v":[{"k":[34],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[30340],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25903,25512],"v":[{"k":[25345],"v":[{"d":{"df":1,"dc":[[81,1]]}}]},{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[35201],"v":[{"k":[26159],"v":[{"k":[30334],"v":[{"k":[20998],"v":[{"k":[27604],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20851],"v":[{"k":[65306],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[23545],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35835],"v":[{"d":{"df":1,"dc":[[48,1]]}}]},{"k":[30830,30456],"v":[{"k":[30340,65306],"v":[{"k":[20570],"v":[{"k":[27861],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[34987],"v":[{"k":[38144],"v":[{"k":[27585],"v":[{"k":[20043],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25105],"v":[{"k":[26368],"v":[{"k":[27427],"v":[{"k":[36175],"v":[{"k":[30340],"v":[{"k":[31185],"v":[{"k":[25216],"v":[{"k":[20844],"v":[{"k":[21496],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[20851],"v":[{"k":[65306],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[20174],"v":[{"k":[20302],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]},{"k":[27585],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23481],"v":[{"k":[22120],"v":[{"k":[37325],"v":[{"k":[26032],"v":[{"k":[34987],"v":[{"k":[28155],"v":[{"k":[21152],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[27425],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38144,21069,21450,23567,21160,19979],"v":[{"k":[27585],"v":[{"k":[23454],"v":[{"k":[20363],"v":[{"k":[37322],"v":[{"k":[25918],"v":[{"k":[36164],"v":[{"k":[28304],"v":[{"k":[65292],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[20869],"v":[{"k":[23384],"v":[{"k":[27844],"v":[{"k":[28431],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[48,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[21644],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22914,25512],"v":[{"k":[20309],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[33616],"v":[{"k":[30340],"v":[{"k":[26032],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[31243],"v":[{"k":[24207],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[24211],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[22312],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24577],"v":[{"k":[24211],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[24320],"v":[{"k":[25918],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[30340],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[19982],"v":[{"k":[91],"v":[{"k":[22312],"v":[{"k":[24494],"v":[{"k":[20449],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[20013],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]},{"k":[26631],"v":[{"k":[36724],"v":[{"d":{"df":1,"dc":[[49,1]]},"k":[22768],"v":[{"k":[26126],"v":[{"k":[20026],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[20250],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35282,25509],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013,65288],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[49,1]]}}]},{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[65289],"v":[{"k":[29305],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26679,30340,20351],"v":[{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[65288],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[12289],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[12289],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[12289],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[12289],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[46],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26679],"v":[{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[53,1]]},"k":[26159],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[32437],"v":[{"k":[35266],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]},{"d":{"df":2,"dc":[[49,1],[64,1]]},"k":[12290,12289,21644,37117,65292,26174,24120,65288,38656,32447,20195,34920,22312,19978,65289,65306,65311,23485,25968,39640,26159],"v":[{"d":{"df":2,"dc":[[49,1],[64,3]]},"k":[22914],"v":[{"k":[26524],"v":[{"k":[24819],"v":[{"k":[35201],"v":[{"k":[25226],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[20986],"v":[{"k":[26469],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20511],"v":[{"k":[21161],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[121],"v":[{"d":{"df":1,"dc":[[49,1]]}}]},{"d":{"df":3,"dc":[[49,2],[119,1],[127,1]]}},{"k":[30001],"v":[{"k":[36724],"v":[{"k":[32447],"v":[{"k":[12289],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[12289],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[12289],"v":[{"k":[36724],"v":[{"k":[26631],"v":[{"k":[39064],"v":[{"k":[22235],"v":[{"k":[20010],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[25104],"v":[{"k":[12290],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[36824],"v":[{"k":[20250],"v":[{"k":[26377],"v":[{"k":[32593],"v":[{"k":[26684],"v":[{"k":[32447],"v":[{"k":[26469],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[21644],"v":[{"k":[35745],"v":[{"k":[31639],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36890,22810,21462,31867,25968,31532],"v":[{"k":[24120],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[20110],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[31532],"v":[{"k":[20108],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20540],"v":[{"k":[36724],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[20116],"v":[{"k":[21015,34892],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[22312],"v":[{"k":[22270,24038,19978],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[24213],"v":[{"k":[37096],"v":[{"k":[65292],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[20391,21491],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]},{"k":[20004],"v":[{"k":[20391],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]},{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]},{"k":[29992,24120],"v":[{"k":[26469],"v":[{"k":[26631],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[25351],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[35266],"v":[{"k":[23519],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[35282],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[8220],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[26469],"v":[{"k":[26631],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[32771],"v":[{"k":[23519],"v":[{"k":[26576],"v":[{"k":[19968],"v":[{"k":[31867],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[30340],"v":[{"k":[25351],"v":[{"k":[26631],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[8220],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[8221],"v":[{"k":[21644],"v":[{"k":[8220],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[37329],"v":[{"k":[39069],"v":[{"k":[8221],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27700],"v":[{"k":[24179],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[65289],"v":[{"k":[36328],"v":[{"k":[24230],"v":[{"k":[24456],"v":[{"k":[22823],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[25165],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[32553],"v":[{"k":[25918],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[28789],"v":[{"k":[27963],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[49,1]]}},{"k":[34920],"v":[{"k":[19996],"v":[{"k":[20140],"v":[{"k":[26376],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[27668],"v":[{"k":[28201],"v":[{"k":[65292],"v":[{"k":[21491],"v":[{"k":[20391],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"k":[19996,26102],"v":[{"k":[20140],"v":[{"k":[38477],"v":[{"k":[27700],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[38388],"v":[{"k":[12290],"v":[{"k":[20004],"v":[{"k":[32452],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[36215],"v":[{"k":[65292],"v":[{"k":[21453],"v":[{"k":[26144],"v":[{"k":[20102],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[27668],"v":[{"k":[28201],"v":[{"k":[21644],"v":[{"k":[38477],"v":[{"k":[27700],"v":[{"k":[37327],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292,12290,30340],"v":[{"k":[21518],"v":[{"k":[38754],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[65307],"v":[{"k":[22312],"v":[{"k":[22320],"v":[{"k":[22270],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"k":[22320],"v":[{"k":[22270],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[65307],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[12289],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[31561],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[20197],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[39640],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[12289,65292,20043],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65288],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[31561],"v":[{"k":[65288],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20214],"v":[{"k":[20107],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21017],"v":[{"k":[27599],"v":[{"k":[20004],"v":[{"k":[21015],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[21015],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[19978],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38388],"v":[{"k":[22635,30340],"v":[{"k":[20805],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[32441],"v":[{"k":[29702],"v":[{"k":[65292],"v":[{"k":[24418],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38754],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20307],"v":[{"k":[31215],"v":[{"k":[12290],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[32780],"v":[{"k":[35328],"v":[{"k":[65292],"v":[{"k":[34987],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[24341],"v":[{"k":[36215],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[23545],"v":[{"k":[24635],"v":[{"k":[20540],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[30340],"v":[{"k":[27880],"v":[{"k":[24847],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[20256],"v":[{"k":[36798],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[30830],"v":[{"k":[20999],"v":[{"k":[30340],"v":[{"k":[21333],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20026],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[38598],"v":[{"k":[21512],"v":[{"k":[12290,65292],"v":[{"k":[19982],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22810],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[20102],"v":[{"k":[31532],"v":[{"k":[19977],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[21363],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[21644],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[27604],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[26469],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[35268],"v":[{"k":[24459],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[22312],"v":[{"k":[19981],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[35782],"v":[{"k":[21035],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[25110],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[35266],"v":[{"k":[23519],"v":[{"k":[20182],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[21457],"v":[{"k":[29616],"v":[{"k":[26576],"v":[{"k":[31181],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[26597],"v":[{"k":[25214],"v":[{"k":[24322],"v":[{"k":[24120],"v":[{"k":[20540],"v":[{"k":[25110],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[20063],"v":[{"k":[24456],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[29677],"v":[{"k":[32423],"v":[{"k":[23398],"v":[{"k":[29983],"v":[{"k":[36523],"v":[{"k":[39640],"v":[{"k":[21644],"v":[{"k":[20307],"v":[{"k":[37325],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[29366],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}},{"d":{"df":1,"dc":[[64,2]]}},{"k":[24230],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]},{"k":[25454],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[20174],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]},{"k":[24230],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]},{"k":[32463],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[32428],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[23450],"v":[{"k":[20301],"v":[{"k":[65292],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34920],"v":[{"k":[26126],"v":[{"k":[35813],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[22810],"v":[{"k":[23569],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36890],"v":[{"k":[30340,26679],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,3]]}}]}]}]}]},{"k":[38144,20135,111,110,25968,21517,32500,34920],"v":[{"k":[21806],"v":[{"k":[22320],"v":[{"k":[28857],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]},{"k":[21697],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[8221],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"k":[121],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]}]}]}]}]},{"k":[114],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[111],"v":[{"k":[116],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[25454],"v":[{"k":[21644],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,3]]}}]},{"k":[24230],"v":[{"d":{"df":1,"dc":[[64,2]]},"k":[50,51,49],"v":[{"k":[8221],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[8221],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[8221],"v":[{"k":[12289],"v":[{"k":[8220],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[53],"v":[{"k":[8221],"v":[{"k":[12289],"v":[{"k":[8220],"v":[{"k":[21517],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[183],"v":[{"k":[36798],"v":[{"k":[8221],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]},{"k":[24230],"v":[{"d":{"df":1,"dc":[[49,1]]},"k":[26631],"v":[{"k":[31614],"v":[{"d":{"df":1,"dc":[[49,1]]}}]}]}]},{"k":[39,32032],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[49,1]]}}]},{"k":[20043,30340],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65292],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[21644],"v":[{"k":[39640],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"d":{"df":1,"dc":[[49,1]]}}]},{"k":[20316],"v":[{"k":[39118,26102],"v":[{"k":[26684],"v":[{"k":[35268],"v":[{"k":[33539],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]},{"k":[65292],"v":[{"k":[24212],"v":[{"k":[23613],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27491],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[20070],"v":[{"k":[38754],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[65292],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[36739],"v":[{"k":[20026],"v":[{"k":[38543],"v":[{"k":[24847],"v":[{"k":[30340],"v":[{"k":[20010],"v":[{"k":[20154],"v":[{"k":[21338],"v":[{"k":[23458],"v":[{"k":[39118],"v":[{"k":[26684],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27861],"v":[{"k":[20027],"v":[{"k":[35201],"v":[{"k":[21442],"v":[{"k":[29031],"v":[{"k":[91],"v":[{"k":[20013],"v":[{"k":[25991],"v":[{"k":[25216],"v":[{"k":[26415],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[20316],"v":[{"k":[35268],"v":[{"k":[33539],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[103],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[98],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[114],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[121],"v":[{"k":[102],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[45],"v":[{"k":[103],"v":[{"k":[117],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[22312],"v":[{"k":[20889],"v":[{"k":[20316],"v":[{"k":[21069],"v":[{"k":[20808],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[19968],"v":[{"k":[36941],"v":[{"k":[35813],"v":[{"k":[35821],"v":[{"k":[27861],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857,22797,26500,20889],"v":[{"d":{"df":1,"dc":[[50,1]]}},{"k":[36755],"v":[{"k":[20837],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}},{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[33853],"v":[{"k":[30340],"v":[{"k":[21477],"v":[{"k":[23376],"v":[{"k":[35821],"v":[{"k":[27668],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[38472],"v":[{"k":[36848],"v":[{"k":[21644],"v":[{"k":[32943],"v":[{"k":[23450],"v":[{"k":[35821],"v":[{"k":[27668],"v":[{"k":[65292],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24863],"v":[{"k":[21497],"v":[{"k":[35821],"v":[{"k":[27668],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23376],"v":[{"k":[20869],"v":[{"k":[37096],"v":[{"k":[30340],"v":[{"k":[24182],"v":[{"k":[21015],"v":[{"k":[35789],"v":[{"k":[65292],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[29992],"v":[{"k":[20840],"v":[{"k":[35282],"v":[{"k":[39039],"v":[{"k":[21495],"v":[{"k":[40],"v":[{"k":[12289],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38548,27573,31163,21106,32452],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19981],"v":[{"k":[29992],"v":[{"k":[36887],"v":[{"k":[21495],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[20351],"v":[{"k":[24182],"v":[{"k":[21015],"v":[{"k":[35789],"v":[{"k":[26159],"v":[{"k":[33521],"v":[{"k":[35821],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[22914],"v":[{"k":[27492],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22411],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[32452],"v":[{"k":[20214],"v":[{"k":[26377],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[27169],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39118],"v":[{"k":[26684],"v":[{"k":[12290],"v":[{"k":[27605],"v":[{"k":[31455],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[36816],"v":[{"k":[34892],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[26368],"v":[{"k":[24120],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[22823],"v":[{"k":[22810],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]},{"k":[26609],"v":[{"k":[29366],"v":[{"d":{"df":1,"dc":[[121,1]]},"k":[22270],"v":[{"d":{"df":1,"dc":[[121,1]]},"k":[20063,36890],"v":[{"k":[34987],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[32858],"v":[{"k":[38598],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[24403],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24207],"v":[{"k":[21015],"v":[{"k":[24182],"v":[{"k":[25490],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[24182],"v":[{"k":[22312],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[36724],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[19979],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[30456],"v":[{"k":[24403],"v":[{"k":[20110],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[24102],"v":[{"k":[26377],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25110],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24120],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23558],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[25110],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[30340],"v":[{"k":[20960],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[32452],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[20687],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[30340],"v":[{"k":[38271],"v":[{"k":[24230],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[34987],"v":[{"k":[20998],"v":[{"k":[37197],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21333],"v":[{"k":[29420],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[33394],"v":[{"k":[31995],"v":[{"k":[30340],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[39281],"v":[{"k":[21644],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[32452],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30456],"v":[{"k":[20114],"v":[{"k":[38388],"v":[{"k":[38548],"v":[{"k":[24182],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[121,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35823],"v":[{"k":[65306],"v":[{"k":[25105],"v":[{"k":[26368],"v":[{"k":[27427],"v":[{"k":[36175],"v":[{"k":[30340],"v":[{"k":[31185],"v":[{"k":[25216],"v":[{"k":[20844],"v":[{"k":[21496],"v":[{"k":[26377],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35759],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]},{"k":[37324],"v":[{"k":[21644],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[50,1]]}}]}]}]}]}]}]},{"k":[21046],"v":[{"k":[21488,12290],"v":[{"k":[25171],"v":[{"k":[21360],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]},{"k":[23427],"v":[{"k":[26082],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26631],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[29702],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[36339],"v":[{"k":[36716],"v":[{"k":[21040],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[30334],"v":[{"k":[24230],"v":[{"k":[25628],"v":[{"k":[32034],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26377,20351,38656,24102,20197],"v":[{"k":[30340,25968],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[37117],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[26469],"v":[{"k":[30340],"v":[{"k":[24378],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[35753],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26356],"v":[{"k":[26377],"v":[{"k":[20449],"v":[{"k":[24515],"v":[{"k":[22320],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[25552],"v":[{"k":[39640],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[24615],"v":[{"k":[21644],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[24037],"v":[{"k":[20855],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20837],"v":[{"k":[30340],"v":[{"k":[21407,25968],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]},{"k":[25454],"v":[{"k":[20540],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]},{"k":[31181],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[20987,30340,38047],"v":[{"k":[21040,22312],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[51,4]]}}]},{"k":[20102],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[65292],"v":[{"k":[20570],"v":[{"k":[20123],"v":[{"k":[20160],"v":[{"k":[20040],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]}]},{"k":[24320,30340],"v":[{"k":[22987],"v":[{"k":[27839],"v":[{"k":[39034],"v":[{"k":[26102],"v":[{"k":[38024],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[24378],"v":[{"k":[35843],"v":[{"k":[20854],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24038],"v":[{"k":[36793],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20313],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[25353],"v":[{"k":[29031],"v":[{"k":[36870],"v":[{"k":[26102],"v":[{"k":[38024],"v":[{"k":[25490],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[25918],"v":[{"k":[22312],"v":[{"k":[24213],"v":[{"k":[37096],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[25152],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545,38656,26377],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[22238],"v":[{"k":[35843],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36755],"v":[{"k":[20986],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"d":{"df":1,"dc":[[75,1]]}}]},{"k":[31034,26126],"v":[{"d":{"df":3,"dc":[[64,1],[78,1],[81,2]]},"k":[32452,22312,36755,19981,26102,20351,24341,36825,23558,25226,31354],"v":[{"k":[20214],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[20869],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65307],"v":[{"k":[32780],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20837],"v":[{"k":[26469],"v":[{"k":[33258],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]}]}]},{"k":[24819,20351],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[29992],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[8221],"v":[{"k":[8220],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[8221],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38388],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[40664],"v":[{"k":[35748],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[20197],"v":[{"k":[21322],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[24819],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[114,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[24207],"v":[{"k":[21495],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[78,1]]}}]},{"k":[22278],"v":[{"k":[28857],"v":[{"k":[24179],"v":[{"k":[31227],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]},{"k":[24403],"v":[{"k":[21069],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[25104],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[23545],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[36866],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31532],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[65288],"v":[{"k":[21015],"v":[{"k":[65289],"v":[{"k":[24320],"v":[{"k":[22987],"v":[{"k":[23601],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450,28982],"v":[{"k":[20041],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013,21160,65288],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[30011],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[96],"v":[{"k":[99],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[109],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[23884],"v":[{"k":[22871],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[21457],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[32479],"v":[{"k":[19968],"v":[{"k":[31649],"v":[{"k":[29702],"v":[{"k":[20102],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[21160],"v":[{"k":[20316],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[21435],"v":[{"k":[35760],"v":[{"k":[24405],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[36335],"v":[{"k":[24452],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36718,38500],"v":[{"k":[27969],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,1]]},"k":[25110,20869],"v":[{"k":[30452],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[28040,31532,20540],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[39640],"v":[{"k":[20142],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[34892],"v":[{"k":[65289],"v":[{"k":[20026],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[65292],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[34892],"v":[{"k":[65289],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[21462],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[21644],"v":[{"k":[36830],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"d":{"df":1,"dc":[[51,1]]},"k":[22768,26631],"v":[{"k":[26126],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[65288],"v":[{"k":[21015],"v":[{"k":[65289],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[39064],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[21644],"v":[{"k":[31354],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30417],"v":[{"k":[21548],"v":[{"k":[22120],"v":[{"k":[27491],"v":[{"k":[22312],"v":[{"k":[30417],"v":[{"k":[21548],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[96],"v":[{"k":[122,101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]},{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26377],"v":[{"d":{"df":1,"dc":[[51,1]]}}]},{"k":[21619],"v":[{"k":[30528],"v":[{"k":[40736],"v":[{"k":[26631],"v":[{"k":[47],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[19981],"v":[{"k":[22312],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[26159],"v":[{"k":[20174],"v":[{"k":[8220],"v":[{"k":[31354],"v":[{"k":[30333],"v":[{"k":[22788],"v":[{"k":[8221],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[51,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23616],"v":[{"d":{"df":1,"dc":[[52,1]]}}]},{"k":[24335],"v":[{"d":{"df":1,"dc":[[52,1]]},"k":[65292],"v":[{"k":[21017],"v":[{"k":[20570],"v":[{"k":[19981],"v":[{"k":[21040],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[20114],"v":[{"d":{"df":1,"dc":[[52,1]]},"k":[33021],"v":[{"k":[21147],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[25454,12290],"v":[{"k":[22330,21517],"v":[{"k":[26223],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[20363],"v":[{"k":[21487],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[20132],"v":[{"k":[20114],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[65292],"v":[{"k":[28857],"v":[{"k":[20987],"v":[{"k":[25511],"v":[{"k":[21046],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25110],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21015],"v":[{"k":[65307],"v":[{"d":{"df":1,"dc":[[52,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23383],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[21040],"v":[{"k":[30456],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[22914],"v":[{"k":[26524],"v":[{"k":[30830],"v":[{"k":[23454],"v":[{"k":[26377],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[21487],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[79,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33394],"v":[{"k":[20027,65288,26126,30340,24863],"v":[{"k":[39064],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]}]}]}]}]}]}]},{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[36879],"v":[{"k":[26126],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[112],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26263],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[110],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[39281],"v":[{"k":[21644],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[33394],"v":[{"k":[35843],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[104],"v":[{"k":[117],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24773,35821],"v":[{"k":[24863],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]},{"k":[20041],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]},{"k":[30693],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[29289],"v":[{"k":[29702],"v":[{"k":[21644],"v":[{"k":[24515],"v":[{"k":[29702],"v":[{"k":[30456],"v":[{"k":[20114],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[35777],"v":[{"k":[26126],"v":[{"k":[20102],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[24863],"v":[{"k":[30693],"v":[{"k":[21040],"v":[{"k":[30340],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[26377],"v":[{"k":[20919],"v":[{"k":[19982],"v":[{"k":[26262],"v":[{"k":[20043],"v":[{"k":[20998],"v":[{"k":[65292],"v":[{"k":[26085],"v":[{"k":[26412],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[23398],"v":[{"k":[23478],"v":[{"k":[22823],"v":[{"k":[26234],"v":[{"k":[28009],"v":[{"k":[26366],"v":[{"k":[20570],"v":[{"k":[36807],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23454],"v":[{"k":[39564],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[22330],"v":[{"k":[22320],"v":[{"k":[28034],"v":[{"k":[28784],"v":[{"k":[38738],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[22330],"v":[{"k":[22320],"v":[{"k":[28034],"v":[{"k":[32418],"v":[{"k":[27225],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[22330],"v":[{"k":[22320],"v":[{"k":[30340],"v":[{"k":[23458],"v":[{"k":[35266],"v":[{"k":[28201],"v":[{"k":[24230],"v":[{"k":[21171],"v":[{"k":[21160],"v":[{"k":[24378],"v":[{"k":[24230],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[28784],"v":[{"k":[38738],"v":[{"k":[33394],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[22330],"v":[{"k":[22320],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[30340],"v":[{"k":[21592],"v":[{"k":[24037],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[24863],"v":[{"k":[35273],"v":[{"k":[21040],"v":[{"k":[20919],"v":[{"k":[12290],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[30740],"v":[{"k":[31350],"v":[{"k":[21457],"v":[{"k":[29616],"v":[{"k":[65292],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[20919],"v":[{"k":[19982],"v":[{"k":[26262],"v":[{"k":[30340],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[24863],"v":[{"k":[21463],"v":[{"k":[65292],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[36824],"v":[{"k":[26377],"v":[{"k":[36731],"v":[{"k":[19982],"v":[{"k":[37325],"v":[{"k":[12289],"v":[{"k":[36828],"v":[{"k":[19982],"v":[{"k":[36817],"v":[{"k":[12289],"v":[{"k":[27963],"v":[{"k":[27900],"v":[{"k":[19982],"v":[{"k":[24551],"v":[{"k":[37057],"v":[{"k":[31561],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[65292],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[20043],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[24378],"v":[{"k":[22823],"v":[{"k":[20043],"v":[{"k":[22788],"v":[{"k":[22312],"v":[{"k":[20110],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[33394],"v":[{"k":[24425],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[20154],"v":[{"k":[30340],"v":[{"k":[24515],"v":[{"k":[29702],"v":[{"k":[19982],"v":[{"k":[29983],"v":[{"k":[29702],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[24863],"v":[{"k":[21463],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[24341],"v":[{"k":[36215],"v":[{"k":[24773],"v":[{"k":[24863],"v":[{"k":[21453],"v":[{"k":[24212],"v":[{"k":[21644],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[20154],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[32490],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33394,25972],"v":[{"k":[30424],"v":[{"d":{"df":1,"dc":[[53,2]]},"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]},{"k":[20102,26631],"v":[{"d":{"df":1,"dc":[[81,1]]}},{"k":[31614],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[20197],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[38450],"v":[{"k":[27490],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[37325],"v":[{"k":[21472],"v":[{"k":[12290],"v":[{"k":[23427],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[20540],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35273],"v":[{"k":[26144,36890,35774,26679,25928],"v":[{"k":[23556],"v":[{"k":[65288],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36947],"v":[{"k":[65288],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35745],"v":[{"d":{"df":1,"dc":[[77,1]]},"k":[30340],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[20165],"v":[{"k":[26159],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[35753],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30475],"v":[{"k":[65292],"v":[{"k":[26356],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[31526],"v":[{"k":[21512],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[21407],"v":[{"k":[29702],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[26356],"v":[{"k":[24555],"v":[{"k":[36895],"v":[{"k":[22320],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[24819],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[23613],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[28040],"v":[{"k":[38500],"v":[{"k":[19981],"v":[{"k":[33391],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[35823],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[20808],"v":[{"k":[32423],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[26524],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[23613],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[22320],"v":[{"k":[35299],"v":[{"k":[37322],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[35831],"v":[{"k":[23581],"v":[{"k":[35797],"v":[{"k":[25214],"v":[{"k":[21040],"v":[{"k":[19982],"v":[{"k":[35266],"v":[{"k":[20247],"v":[{"k":[30340],"v":[{"k":[20808],"v":[{"k":[20837],"v":[{"k":[20026],"v":[{"k":[20027],"v":[{"k":[21644],"v":[{"k":[25991],"v":[{"k":[21270],"v":[{"k":[32852],"v":[{"k":[24819],"v":[{"k":[30456],"v":[{"k":[21305],"v":[{"k":[37197],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[33394],"v":[{"k":[26041],"v":[{"k":[26696],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[20013],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"k":[29461],"v":[{"k":[29492],"v":[{"k":[26691],"v":[{"k":[12289],"v":[{"k":[39321],"v":[{"k":[34121],"v":[{"k":[12289],"v":[{"k":[27225],"v":[{"k":[23376],"v":[{"k":[12289],"v":[{"k":[33609],"v":[{"k":[33683],"v":[{"k":[22235],"v":[{"k":[31181],"v":[{"k":[27700],"v":[{"k":[26524],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[20102],"v":[{"k":[19982],"v":[{"k":[27700],"v":[{"k":[26524],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[32511],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[27225],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[22312],"v":[{"k":[36776],"v":[{"k":[21035],"v":[{"k":[21644],"v":[{"k":[35760],"v":[{"k":[24518],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[25152],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[27700],"v":[{"k":[26524],"v":[{"k":[26102],"v":[{"k":[23601],"v":[{"k":[36731],"v":[{"k":[32780],"v":[{"k":[26131],"v":[{"k":[20030],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31616,24120,22823,21518,26032],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26356,26609,39292,25240,25955],"v":[{"k":[25913],"v":[{"k":[20840],"v":[{"k":[23616],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[110,1]]},"k":[21487],"v":[{"k":[20197],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"d":{"df":1,"dc":[[115,1]]}}]},{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]},{"k":[28857],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]},{"k":[35265],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[32447],"v":[{"k":[24615],"v":[{"k":[34920],"v":[{"k":[8220],"v":[{"k":[65292],"v":[{"k":[21363],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20540,30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[39,49],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[48],"v":[{"k":[48],"v":[{"k":[19978],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[20915],"v":[{"k":[23450],"v":[{"k":[12290],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[25105,32473,21097,20026],"v":[{"k":[20204],"v":[{"k":[32473],"v":[{"k":[20986],"v":[{"k":[65292,25968],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[20986],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[20313],"v":[{"k":[30340],"v":[{"k":[27809],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30418],"v":[{"k":[65292],"v":[{"k":[32039],"v":[{"k":[36148],"v":[{"k":[30528],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[21097],"v":[{"k":[20313],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[20013],"v":[{"k":[23621],"v":[{"k":[20013],"v":[{"k":[25918],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20102],"v":[{"k":[20351],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]},{"k":[29256],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]},{"k":[35775,12290,30340,25351,26159,65292],"v":[{"k":[38382],"v":[{"k":[21040],"v":[{"k":[12290],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[22120],"v":[{"k":[65292],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[32534],"v":[{"k":[36753],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[12290],"v":[{"k":[19979],"v":[{"k":[36733],"v":[{"k":[19979],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}},{"k":[20540],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20102],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[31649],"v":[{"k":[29992],"v":[{"k":[65311],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[24335],"v":[{"k":[30340,65289,65292],"v":[{"d":{"df":1,"dc":[[53,1]]},"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[25110],"v":[{"k":[32773],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[24207],"v":[{"k":[21495],"v":[{"k":[65288],"v":[{"k":[110],"v":[{"k":[117],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[101],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20174,36755],"v":[{"d":{"df":1,"dc":[[64,1]]}},{"k":[20837],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[23616,37096],"v":[{"k":[35843],"v":[{"k":[33394],"v":[{"k":[30424],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]},{"k":[20195],"v":[{"k":[30721],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[31995,22806,22278,20989],"v":[{"k":[21015],"v":[{"k":[33258],"v":[{"k":[24049],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[33394],"v":[{"k":[30424],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[101,36148],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[33457],"v":[{"k":[22270],"v":[{"k":[26696],"v":[{"k":[36824],"v":[{"k":[33021],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"k":[22312],"v":[{"k":[25253],"v":[{"k":[32440],"v":[{"k":[12289],"v":[{"k":[20070],"v":[{"k":[31821],"v":[{"k":[20043],"v":[{"k":[31867],"v":[{"k":[21482],"v":[{"k":[26377],"v":[{"k":[21333],"v":[{"k":[33394],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[23569],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[21360],"v":[{"k":[21047],"v":[{"k":[21697],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65307],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[23545],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[26356],"v":[{"k":[30452],"v":[{"k":[35266],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[30340],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[21709],"v":[{"k":[24212],"v":[{"k":[20107],"v":[{"k":[20214],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[20250],"v":[{"k":[19981],"v":[{"k":[26029],"v":[{"k":[34987],"v":[{"k":[35302],"v":[{"k":[21457],"v":[{"k":[12290],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20171],"v":[{"k":[32461],"v":[{"k":[35814],"v":[{"k":[24773],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[20013],"v":[{"k":[20250],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"k":[26032],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31614,35760,39064],"v":[{"d":{"df":1,"dc":[[77,1]]},"k":[30340,26159],"v":[{"k":[25991,20301,26059],"v":[{"k":[23383],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[53,2]]}}]}]},{"k":[32622],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"k":[36716],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]},{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[26680],"v":[{"k":[24515],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[20043],"v":[{"k":[19968],"v":[{"k":[65292],"v":[{"k":[28165],"v":[{"k":[26224],"v":[{"k":[32780],"v":[{"k":[26126],"v":[{"k":[30830],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[23545],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26377],"v":[{"k":[26356],"v":[{"k":[20934],"v":[{"k":[30830],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[12290],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26679],"v":[{"k":[24335],"v":[{"k":[21517],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]},{"k":[22359,25991],"v":[{"k":[26159],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]},{"k":[23383],"v":[{"k":[23621],"v":[{"k":[24038,20013],"v":[{"d":{"df":1,"dc":[[75,1]]}},{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[25351,29983,22815,21516,22312],"v":[{"k":[23450],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21040],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[12289],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[65292],"v":[{"k":[35814],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[53,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[8221],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[8221],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[24037],"v":[{"k":[20316],"v":[{"k":[37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[24335],"v":[{"k":[22320],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36941,36148],"v":[{"k":[21382],"v":[{"k":[24182],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"k":[28385],"v":[{"k":[36275],"v":[{"k":[26465],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36817],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[24605],"v":[{"k":[32500],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[65288],"v":[{"k":[105],"v":[{"k":[65289],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[65288],"v":[{"k":[105],"v":[{"k":[105],"v":[{"k":[65289],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21040],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[24418],"v":[{"k":[25104],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26102],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[21487,25903,26159,20250,33021],"v":[{"k":[20197],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[54,2]]}}]}]}]}]},{"k":[25345],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[31181],"v":[{"k":[20250],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[38750],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[26356],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[35802],"v":[{"k":[24847],"v":[{"k":[21644],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[35782],"v":[{"k":[21035],"v":[{"k":[20986],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[12290],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[35753],"v":[{"k":[22823],"v":[{"k":[23478],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[29305],"v":[{"k":[24847],"v":[{"k":[20889],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"d":{"df":2,"dc":[[54,2],[62,1]]},"k":[25991,25968],"v":[{"k":[26412],"v":[{"k":[21487,29255],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[20307],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27573],"v":[{"k":[30340],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[30418],"v":[{"k":[23610],"v":[{"k":[23544],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[29992],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[23601],"v":[{"k":[34892],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26159,27809,21487,19981],"v":[{"k":[8220],"v":[{"k":[19968,19977],"v":[{"k":[32500],"v":[{"k":[8220],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]},{"k":[32500],"v":[{"k":[8220],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[21015],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26377],"v":[{"k":[34987],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[33021],"v":[{"k":[26377],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[36755],"v":[{"k":[20837],"v":[{"k":[25110],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[36755],"v":[{"k":[20986],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[21462],"v":[{"k":[32780],"v":[{"k":[20195],"v":[{"k":[20043],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[26032],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20108,19977,19968],"v":[{"k":[32500,20010],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[121],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[54,1]]}}]},{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[121],"v":[{"k":[109],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010,21015],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[21442],"v":[{"k":[25968],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[20010],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[30340],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[22312],"v":[{"k":[25552,25105],"v":[{"k":[20379],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[24635],"v":[{"k":[32467],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[32493],"v":[{"k":[22411],"v":[{"k":[19982,30340,35270,25968],"v":[{"k":[20998],"v":[{"k":[27573],"v":[{"k":[22411],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[32452],"v":[{"k":[20214],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24847],"v":[{"k":[24605],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[26159],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65307],"v":[{"k":[32780],"v":[{"k":[20998],"v":[{"k":[27573],"v":[{"k":[22411],"v":[{"k":[21017],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[34987],"v":[{"k":[20998],"v":[{"k":[25104],"v":[{"k":[20102],"v":[{"k":[22810],"v":[{"k":[27573],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[26159],"v":[{"k":[31163],"v":[{"k":[25955],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"d":{"df":1,"dc":[[54,1]]},"k":[36890],"v":[{"k":[36807],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[20540],"v":[{"k":[12289],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30830],"v":[{"k":[23450],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[24179,33258],"v":[{"k":[22343],"v":[{"k":[20998],"v":[{"k":[27573],"v":[{"k":[65306],"v":[{"k":[20381],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[20998],"v":[{"k":[27573],"v":[{"k":[65306],"v":[{"k":[20381],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25351,33021],"v":[{"k":[23450],"v":[{"k":[20102],"v":[{"k":[36229,23558],"v":[{"k":[20986],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[33539],"v":[{"k":[22260],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21738],"v":[{"k":[20010],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[20570],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25903],"v":[{"k":[25345],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25104],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25139],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[35813],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25955,32676],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65288],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[24615],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[54,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"d":{"df":3,"dc":[[56,1],[62,8],[64,2]]},"k":[21448,20063,20294,36825],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[23601],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[24341],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[19978],"v":[{"k":[36848],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[26159],"v":[{"k":[20063],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36755],"v":[{"k":[20986],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[21482],"v":[{"k":[22312],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[29615],"v":[{"k":[22659],"v":[{"k":[20013],"v":[{"k":[29983],"v":[{"k":[25928],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[20363],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[108],"v":[{"k":[116],"v":[{"k":[59],"v":[{"k":[104],"v":[{"k":[114],"v":[{"k":[38],"v":[{"k":[103],"v":[{"k":[116],"v":[{"k":[59],"v":[{"d":{"df":1,"dc":[[59,1]]}}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[61,1]]},"k":[91],"v":[{"k":[51],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[120],"v":[{"k":[50],"v":[{"k":[52],"v":[{"k":[48],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[36],"v":[{"k":[123],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[108],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[121],"v":[{"k":[118],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[125],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[45],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[47],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[45],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[38],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[38],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[61],"v":[{"k":[49],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[62,1],[64,2]]},"k":[21151,39,20063,65306,65292,12290,26469,21518,20013,30340,23545,8221,21487],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[121],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[39],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[20250],"v":[{"k":[34987],"v":[{"k":[29983],"v":[{"k":[25104],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20986],"v":[{"k":[26469],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[91],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[120],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[63],"v":[{"k":[99],"v":[{"k":[61],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[120],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[41],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[62,1],[64,1]]},"k":[42],"v":[{"k":[42],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]},{"k":[20063,37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[31867],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[65288],"v":[{"k":[8220],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[20026],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25139],"v":[{"k":[65292],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26159],"v":[{"k":[20854],"v":[{"k":[20182],"v":[{"k":[19981],"v":[{"k":[21487],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[20026],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25139],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[20250],"v":[{"k":[34987],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[62,1],[64,1]]},"k":[21453],"v":[{"k":[20043],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[25226],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[20540],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[21518],"v":[{"k":[20877],"v":[{"k":[20570],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[29616],"v":[{"k":[22312],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[30340],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[22120],"v":[{"k":[26377],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20877],"v":[{"k":[20570],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[35299],"v":[{"k":[26512],"v":[{"k":[22120],"v":[{"k":[30340],"v":[{"k":[34892],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[21644],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25490],"v":[{"k":[36807],"v":[{"k":[24207],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34892],"v":[{"k":[25110],"v":[{"k":[21015],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[20026],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24212],"v":[{"k":[21040],"v":[{"k":[8220,34920],"v":[{"k":[21015],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[21015],"v":[{"k":[23601],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[8220],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34892],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[32780,27599],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[21015],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[22312,21462],"v":[{"k":[23450],"v":[{"k":[20041],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20540],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[35937],"v":[{"k":[22320],"v":[{"k":[26469],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[20844],"v":[{"k":[24335],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[116],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[64,1],[78,1]]},"k":[25968,8220],"v":[{"k":[25454],"v":[{"k":[20998,38598],"v":[{"k":[25104],"v":[{"k":[22810],"v":[{"k":[20221],"v":[{"k":[29992],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[32500],"v":[{"k":[24230],"v":[{"k":[48],"v":[{"k":[8221],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[64,1],[78,2]]},"k":[26576,20110,25143,26356,26469,39068],"v":[{"k":[20123],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[31639],"v":[{"k":[27861],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[32467],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25351],"v":[{"k":[23450],"v":[{"k":[31579],"v":[{"k":[36873],"v":[{"k":[26465],"v":[{"k":[20214],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[26032],"v":[{"k":[21518],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[21462],"v":[{"k":[20195],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[33394],"v":[{"k":[22686,26469],"v":[{"k":[24378],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]},{"k":[21306],"v":[{"k":[20998],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]},{"k":[30340,37027,20215,25910,20854],"v":[{"k":[25968,26102],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[38388],"v":[{"k":[37324],"v":[{"k":[65292],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[26684],"v":[{"k":[22823],"v":[{"k":[20110],"v":[{"k":[31561],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[20837],"v":[{"k":[26159,30340,30456],"v":[{"d":{"df":1,"dc":[[124,1]]}},{"k":[20116],"v":[{"k":[20493],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[23454],"v":[{"k":[38469],"v":[{"k":[19978],"v":[{"k":[22914],"v":[{"k":[21491],"v":[{"k":[20391],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23436],"v":[{"k":[25972],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[34920],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]},{"k":[23454],"v":[{"k":[21482],"v":[{"k":[25552],"v":[{"k":[21319],"v":[{"k":[20102],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]},{"k":[26679],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[20040,21516],"v":[{"k":[36755,23601],"v":[{"k":[20837],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[26469],"v":[{"k":[33258],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[20250],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[26679],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[25442],"v":[{"k":[25104],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[21017],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[22987,26377],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[62,2]]}}]}]},{"k":[30340],"v":[{"k":[22269],"v":[{"k":[38469],"v":[{"k":[21270],"v":[{"k":[26041],"v":[{"k":[26696],"v":[{"k":[65292],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[21442],"v":[{"k":[25968],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[20986],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[32626],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[8203],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[20182,27599,38656,34920,19979,25353],"v":[{"k":[20204],"v":[{"k":[26500],"v":[{"k":[25104],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38142],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[35201],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[31034],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[38754],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[25193],"v":[{"k":[23637],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[21319],"v":[{"k":[32423],"v":[{"k":[21040],"v":[{"k":[26368],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[29256],"v":[{"k":[26412],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27604],"v":[{"k":[20363],"v":[{"k":[20998],"v":[{"k":[37197],"v":[{"k":[23427],"v":[{"k":[20204],"v":[{"k":[22312],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[24359],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[26368,21363,105],"v":[{"k":[21518],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[31163],"v":[{"k":[32676],"v":[{"k":[28857],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]},{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"k":[20986],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[65292],"v":[{"k":[31163],"v":[{"k":[32676],"v":[{"k":[28857],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}},{"k":[22806],"v":[{"k":[65292],"v":[{"k":[91,36824],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[35],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[116],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[115],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[109],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[41],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]},{"k":[65292,24212,32493,20877,30340,21363],"v":[{"d":{"df":1,"dc":[[62,1]]},"k":[23601],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]},{"k":[35813],"v":[{"k":[36319],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]},{"k":[20250],"v":[{"k":[26377],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36827],"v":[{"k":[34892],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[39035],"v":[{"k":[22312],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[65288],"v":[{"k":[91],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[115],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"k":[46],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[103],"v":[{"k":[47],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[46],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[109],"v":[{"k":[108],"v":[{"k":[35],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[41],"v":[{"k":[65289],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[21518],"v":[{"k":[25165],"v":[{"k":[33021],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20307],"v":[{"k":[31215],"v":[{"k":[36275],"v":[{"k":[22815],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21435],"v":[{"k":[38500],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[20250],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[34987],"v":[{"k":[25171],"v":[{"k":[21253],"v":[{"k":[36827],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[20381],"v":[{"k":[36182],"v":[{"k":[12290],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[21069],"v":[{"k":[38754],"v":[{"k":[25552],"v":[{"k":[21040],"v":[{"k":[30340],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[25353],"v":[{"k":[38656],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[110],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[23558],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[34987],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[24341],"v":[{"k":[20837],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21487],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]},{"k":[34987,26356,33258,25214,26681],"v":[{"d":{"df":1,"dc":[[62,1]]}},{"k":[20248],"v":[{"k":[20808],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[21160],"v":[{"k":[23581,20351],"v":[{"k":[35797],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[36275],"v":[{"k":[22815],"v":[{"k":[20934],"v":[{"k":[30830],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[25163],"v":[{"k":[21160],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[20869],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[20173],"v":[{"k":[24212],"v":[{"k":[23567],"v":[{"k":[24515],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[20250],"v":[{"k":[23548],"v":[{"k":[33268],"v":[{"k":[30340],"v":[{"k":[38750],"v":[{"k":[39044],"v":[{"k":[26399],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[20004],"v":[{"k":[32452],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[24046],"v":[{"k":[24322],"v":[{"k":[28982],"v":[{"k":[21518],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[21512],"v":[{"k":[36866],"v":[{"k":[30340],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[21435],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]},{"k":[20174,24471,35774,65292,12290,30340,23601],"v":[{"d":{"df":1,"dc":[[62,1]]}},{"k":[19968],"v":[{"k":[25552],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]},{"k":[24471,32622,20026],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22823],"v":[{"k":[65292],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[22312],"v":[{"k":[26368],"v":[{"k":[19978],"v":[{"k":[26041],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[35206],"v":[{"k":[30422],"v":[{"k":[20303],"v":[{"k":[24050],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20540],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[35813],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[12290],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[35828],"v":[{"k":[65292],"v":[{"k":[25317],"v":[{"k":[26377],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[112,1]]}}]},{"k":[37325,19968],"v":[{"k":[32472],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[20351],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[21516],"v":[{"k":[27493],"v":[{"k":[20110],"v":[{"k":[34987],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[38544],"v":[{"k":[34255],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[65292],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[22686,20943],"v":[{"k":[21152],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]},{"k":[23569],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":2,"dc":[[78,1],[113,1]]}},{"k":[21464,31995,28857],"v":[{"k":[21270],"v":[{"k":[29366],"v":[{"k":[20917],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[23558],"v":[{"k":[22534],"v":[{"k":[31215],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[32452],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]}]},{"k":[21040],"v":[{"k":[39640,20302],"v":[{"d":{"df":1,"dc":[[130,1]]}},{"d":{"df":1,"dc":[[130,1]]}}]}]}]},{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[35774],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[111,1]]}}]}]}]}]}]}]}]},{"k":[20010,25968,31995,28155],"v":[{"d":{"df":1,"dc":[[64,1]]},"k":[20851],"v":[{"k":[31995],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[31526],"v":[{"k":[33021],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[24120],"v":[{"k":[35265],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36866],"v":[{"k":[20110],"v":[{"k":[29992],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[12290],"v":[{"k":[24191],"v":[{"k":[20026],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[34920],"v":[{"k":[26684],"v":[{"k":[36719],"v":[{"k":[20214],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]},{"k":[21152],"v":[{"k":[19968],"v":[{"k":[39033],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20102],"v":[{"k":[8212],"v":[{"k":[8212],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[38632,32467],"v":[{"d":{"df":1,"dc":[[62,1]]}},{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[65289],"v":[{"k":[12290],"v":[{"k":[8220],"v":[{"k":[31867],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[8221],"v":[{"k":[26412],"v":[{"k":[36523],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[20026],"v":[{"k":[23383],"v":[{"k":[38754],"v":[{"k":[25152],"v":[{"k":[25551],"v":[{"k":[36848],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23383],"v":[{"k":[31526],"v":[{"k":[20018],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[20063],"v":[{"k":[34987],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[29992],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20316],"v":[{"k":[31526],"v":[{"k":[33021,12290],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[27491],"v":[{"k":[21017],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[24335],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"k":[24230],"v":[{"k":[19978,65288,21487,30340,31867],"v":[{"k":[36873],"v":[{"k":[20986],"v":[{"k":[22995],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]},{"d":{"df":1,"dc":[[64,1]]}},{"k":[20197],"v":[{"k":[26377],"v":[{"k":[21333],"v":[{"k":[29420],"v":[{"k":[30340],"v":[{"k":[21517],"v":[{"k":[23383],"v":[{"k":[65292],"v":[{"k":[20415],"v":[{"k":[20110],"v":[{"k":[22312],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20013],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23450],"v":[{"k":[20041],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21333],"v":[{"k":[29420],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[22411],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[26159,23567],"v":[{"k":[27880,32570,19981],"v":[{"k":[24847],"v":[{"d":{"df":1,"dc":[[62,1]]}}]},{"k":[28857],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[24120],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[20808],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[25226],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[21040],"v":[{"k":[21508],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[65288],"v":[{"k":[21644],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[36724],"v":[{"k":[65289],"v":[{"k":[20013],"v":[{"k":[12290],"v":[{"k":[27492],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[21033],"v":[{"k":[20110],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20849],"v":[{"k":[20139],"v":[{"k":[19968],"v":[{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[19981],"v":[{"k":[21033],"v":[{"k":[20110],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[21407],"v":[{"k":[22987],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12289],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[23433],"v":[{"k":[25490],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21516],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[21152],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[21028],"v":[{"k":[26029],"v":[{"k":[20986],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[25152],"v":[{"k":[20197],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[32780],"v":[{"k":[35328],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[33324],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[22635],"v":[{"k":[20805],"v":[{"k":[33394],"v":[{"k":[20197],"v":[{"k":[34920],"v":[{"k":[26126],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[118,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20110],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[38750,20869,25968],"v":[{"d":{"df":2,"dc":[[62,1],[64,1]]}},{"k":[32622],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[25454],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]},{"k":[24207],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]},{"k":[28388],"v":[{"k":[22120],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]},{"k":[20808],"v":[{"k":[35201,65292,26159],"v":[{"k":[27880],"v":[{"k":[20876],"v":[{"k":[22806],"v":[{"k":[37096],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[22120],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[62,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[20174,26102,25105],"v":[{"k":[24038],"v":[{"k":[21521],"v":[{"k":[21491],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[32039],"v":[{"k":[38752],"v":[{"k":[25918],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]},{"k":[38388],"v":[{"k":[36724],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[22914],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[33324],"v":[{"k":[32477],"v":[{"k":[23545],"v":[{"k":[24179],"v":[{"k":[22343],"v":[{"k":[20998],"v":[{"k":[21106],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26159],"v":[{"k":[36873],"v":[{"k":[21462],"v":[{"k":[24180],"v":[{"k":[12289],"v":[{"k":[26376],"v":[{"k":[12289],"v":[{"k":[26085],"v":[{"k":[12289],"v":[{"k":[25972],"v":[{"k":[28857],"v":[{"k":[36825],"v":[{"k":[31867],"v":[{"k":[26356],"v":[{"k":[26377],"v":[{"k":[24847],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[33021],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[23618],"v":[{"k":[32423],"v":[{"k":[30340],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20204],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[29233],"v":[{"k":[24515],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]},{"k":[40664],"v":[{"k":[35748],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[30340],"v":[{"k":[25913],"v":[{"k":[21160],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26126],"v":[{"k":[19968,22810,30340],"v":[{"k":[20010],"v":[{"d":{"df":2,"dc":[[64,2],[78,1]]}}]},{"k":[20010],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[22522],"v":[{"k":[26412],"v":[{"k":[32467],"v":[{"k":[26500],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[20882],"v":[{"k":[21495],"v":[{"k":[24038],"v":[{"k":[36793],"v":[{"k":[26159],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[12289],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[31561],"v":[{"k":[29305],"v":[{"k":[23450],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32780,21333],"v":[{"k":[35328],"v":[{"k":[20043],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[26684],"v":[{"k":[30340],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[23454],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[32473],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[34892],"v":[{"k":[19978],"v":[{"k":[32437],"v":[{"k":[21521],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[26412],"v":[{"k":[29255],"v":[{"k":[27573],"v":[{"k":[35774],"v":[{"k":[23450],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[35265],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25353,26159,21487],"v":[{"k":[26368],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[65306],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32500,26412,34987,22278],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[12290],"v":[{"k":[20174],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[34892],"v":[{"k":[24320],"v":[{"k":[22987],"v":[{"k":[65292],"v":[{"k":[25165],"v":[{"k":[26159],"v":[{"k":[27491],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25991],"v":[{"k":[26368],"v":[{"k":[21021],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22359],"v":[{"k":[20013],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[46],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[24403],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[26159],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]},{"k":[36825,19979],"v":[{"k":[20010],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[38754],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]},{"k":[32435],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[22810,23478],"v":[{"k":[25968],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[21435],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22312],"v":[{"k":[26032],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[39029],"v":[{"k":[38754],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[24320],"v":[{"k":[21551],"v":[{"k":[33039],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[30475],"v":[{"k":[21040],"v":[{"k":[35813],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35299,65292],"v":[{"k":[20102,12290],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[27010],"v":[{"k":[24565],"v":[{"k":[21518],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36825],"v":[{"k":[37324],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[32447],"v":[{"k":[23485],"v":[{"k":[65288],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[20026],"v":[{"k":[20363],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22240,36825],"v":[{"k":[27492],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]},{"k":[26102],"v":[{"k":[20505],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[20250],"v":[{"k":[33258],"v":[{"k":[21160],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[26524],"v":[{"k":[26377],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[35805],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26144,21644,26174],"v":[{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,2]]}}]}]},{"k":[31532],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[31034],"v":[{"k":[22312],"v":[{"k":[25552],"v":[{"k":[31034],"v":[{"k":[26694],"v":[{"k":[65288],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[112],"v":[{"k":[65289],"v":[{"k":[20013],"v":[{"k":[65311],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24577,30011,20316],"v":[{"k":[26356,21465,25490],"v":[{"k":[26032],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26102],"v":[{"k":[26377],"v":[{"k":[29992],"v":[{"k":[22788],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[26032],"v":[{"k":[32769],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20107],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[24207],"v":[{"k":[22270,26609],"v":[{"d":{"df":1,"dc":[[77,1]]},"k":[23637],"v":[{"k":[29616],"v":[{"k":[20102],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[38543],"v":[{"k":[30528],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[22312],"v":[{"k":[25490],"v":[{"k":[21517],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[34893],"v":[{"k":[21464],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[20960],"v":[{"k":[34892],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[23601],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[109,1]]},"k":[26159],"v":[{"d":{"df":1,"dc":[[109,1]]}}]}]}]}]}]}]},{"d":{"df":1,"dc":[[71,1]]},"k":[23545],"v":[{"k":[20110],"v":[{"k":[20154],"v":[{"k":[31867],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[30340],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[24615],"v":[{"k":[19981],"v":[{"k":[35328],"v":[{"k":[32780],"v":[{"k":[21947],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[20043],"v":[{"k":[21069],"v":[{"k":[30340],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20250],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[21644],"v":[{"k":[36807],"v":[{"k":[28193],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21464],"v":[{"k":[25442],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[32852],"v":[{"k":[31995],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[20986],"v":[{"k":[29616],"v":[{"k":[21644],"v":[{"k":[21464],"v":[{"k":[25442],"v":[{"k":[26174],"v":[{"k":[24471],"v":[{"k":[19981],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[29983],"v":[{"k":[30828],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[27425],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[26356],"v":[{"k":[26159],"v":[{"k":[22823],"v":[{"k":[24133],"v":[{"k":[24230],"v":[{"k":[22686],"v":[{"k":[24378],"v":[{"k":[20102],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[30340],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[21465],"v":[{"k":[20107],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65292],"v":[{"k":[12290],"v":[{"k":[24076],"v":[{"k":[26395],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[21457],"v":[{"k":[25381],"v":[{"k":[21160],"v":[{"k":[30011],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[30340],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[20316],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[20511],"v":[{"k":[21161],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[21465],"v":[{"k":[20107],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[24110],"v":[{"k":[21161],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[26356],"v":[{"k":[23481],"v":[{"k":[26131],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[32972],"v":[{"k":[21518],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[30340],"v":[{"k":[25925],"v":[{"k":[20107],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31867],"v":[{"k":[22411],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]},{"k":[23556],"v":[{"k":[21040],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[36724,20010],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[97],"v":[{"k":[120],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[65289],"v":[{"k":[29305],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26609],"v":[{"k":[23376],"v":[{"k":[30340],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[19981],"v":[{"k":[23567],"v":[{"k":[20110],"v":[{"k":[26609],"v":[{"k":[38388],"v":[{"k":[38388],"v":[{"k":[38553],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20493],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[65288,26609],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[29305],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[23646],"v":[{"k":[24615],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29366],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[108,1]]}}]}]}]}]}]}]},{"k":[23545],"v":[{"k":[26368,36825],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65288],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[107],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20221],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[37197],"v":[{"k":[33394],"v":[{"k":[26041],"v":[{"k":[26696],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[26469],"v":[{"k":[30475],"v":[{"k":[24456],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[65292],"v":[{"k":[21491],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[37197],"v":[{"k":[33394],"v":[{"k":[26356],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[29980],"v":[{"k":[21697],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[31561],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[20250],"v":[{"k":[37319],"v":[{"k":[29992],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[12290],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[30340],"v":[{"k":[26144],"v":[{"k":[23556],"v":[{"k":[35268],"v":[{"k":[21017],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[65292],"v":[{"k":[22823],"v":[{"k":[20307],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65306],"v":[{"k":[22914,25968,101],"v":[{"k":[20309],"v":[{"k":[25226,35753],"v":[{"k":[31532],"v":[{"k":[19977,20108],"v":[{"k":[21015,34892],"v":[{"k":[35774,26144],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[23556],"v":[{"k":[20026],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65311],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]},{"k":[21015],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[20026],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65311],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]},{"k":[31532],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"k":[25454],"v":[{"k":[37324],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65292],"v":[{"k":[37027],"v":[{"k":[20040],"v":[{"k":[24590],"v":[{"k":[20040],"v":[{"k":[32473],"v":[{"k":[20986],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[65311],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[110],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[100],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]},{"k":[65306],"v":[{"d":{"df":1,"dc":[[64,6]]},"k":[21487],"v":[{"k":[20197],"v":[{"k":[26597],"v":[{"k":[26597],"v":[{"k":[26377],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[25340],"v":[{"k":[38169],"v":[{"k":[65292],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[65292],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[21517],"v":[{"k":[26159],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[39],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[102],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[27873],"v":[{"k":[23610,22270],"v":[{"k":[23544],"v":[{"k":[65306],"v":[{"k":[53],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]},{"d":{"df":1,"dc":[[127,1]]},"k":[26159,30340],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[19982],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[31867],"v":[{"k":[20284],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[65288],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]},{"k":[32032],"v":[{"k":[21040,12290],"v":[{"d":{"df":1,"dc":[[64,1]]}},{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[20855],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[25104],"v":[{"d":{"df":1,"dc":[[64,1]]}}]},{"k":[24335],"v":[{"k":[65288,12290],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"k":[25968],"v":[{"k":[32452],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[26159],"v":[{"k":[20010],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[26684],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[64,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[64,1]]}}]}]},{"k":[21495],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[64,3]]}}]}]},{"k":[27493],"v":[{"k":[25968,21152],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21152],"v":[{"k":[36733],"v":[{"k":[19982],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]},{"k":[36733],"v":[{"d":{"df":1,"dc":[[71,1]]},"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]},{"k":[20837],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[71,1]]},"k":[21644,65292],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[39033],"v":[{"k":[23601],"v":[{"k":[34892],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]},{"k":[32780],"v":[{"k":[19981],"v":[{"k":[29992],"v":[{"k":[32771],"v":[{"k":[34385],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21040],"v":[{"k":[24213],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[20102],"v":[{"k":[37027],"v":[{"k":[20123],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39537],"v":[{"k":[21160],"v":[{"k":[65292],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[39537],"v":[{"k":[21160],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23637],"v":[{"k":[29616],"v":[{"k":[30340],"v":[{"k":[25913],"v":[{"k":[21464],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[20063],"v":[{"k":[21464],"v":[{"k":[24471],"v":[{"k":[24322],"v":[{"k":[24120],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[71,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[26234],"v":[{"k":[33021],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]},{"k":[21153,27880],"v":[{"k":[24517],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[91],"v":[{"k":[25991],"v":[{"k":[26723],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[58],"v":[{"k":[47],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[109],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[112],"v":[{"k":[114],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[46],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[117],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[109],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[99],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[47],"v":[{"k":[102],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[101],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[107],"v":[{"k":[47],"v":[{"k":[101],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[41],"v":[{"k":[30340],"v":[{"k":[12300],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[24615],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[12301],"v":[{"k":[20197],"v":[{"k":[20102],"v":[{"k":[35299],"v":[{"k":[21508],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[30340],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[72,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24847],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[25442],"v":[{"k":[20026],"v":[{"k":[26368],"v":[{"k":[26032],"v":[{"k":[29256],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]},{"k":[20449],"v":[{"k":[23567],"v":[{"k":[31243],"v":[{"k":[24207],"v":[{"k":[25903],"v":[{"k":[25345],"v":[{"k":[24494],"v":[{"k":[20449],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,2]]},"k":[27809],"v":[{"k":[26377],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[73,1]]}}]}]}]}]},{"k":[21153],"v":[{"k":[31471],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"d":{"df":1,"dc":[[74,1]]},"k":[21487,26041],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27969],"v":[{"k":[34892],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]},{"k":[26696],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]}]}]}]},{"k":[22659],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"d":{"df":1,"dc":[[74,1]]}}]}]}]}]},{"k":[25991],"v":[{"k":[26412],"v":[{"k":[26631,30340],"v":[{"k":[31614],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[20307],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[65306],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[108],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[119],"v":[{"k":[101],"v":[{"k":[105],"v":[{"k":[103],"v":[{"k":[104],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[122],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[102],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[116],"v":[{"k":[102],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35797],"v":[{"k":[22312],"v":[{"k":[19979],"v":[{"k":[38754],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[20013],"v":[{"k":[20462],"v":[{"k":[25913],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[111],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[96],"v":[{"k":[21644],"v":[{"k":[96],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[110],"v":[{"k":[99],"v":[{"k":[101],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25913],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"k":[20123],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[33021],"v":[{"k":[26377],"v":[{"k":[36275],"v":[{"k":[22815],"v":[{"k":[38271],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23545],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[26059],"v":[{"k":[36716],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[75,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28982],"v":[{"k":[36825,39292],"v":[{"k":[21644],"v":[{"d":{"df":1,"dc":[[75,1]]}}]},{"k":[22270],"v":[{"k":[33021],"v":[{"k":[24555],"v":[{"k":[36895],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[22320],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[20363],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[34987],"v":[{"k":[24191],"v":[{"k":[27867],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[21508],"v":[{"k":[20010],"v":[{"k":[39046],"v":[{"k":[22495],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[21450],"v":[{"k":[20854],"v":[{"k":[21464],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[19968],"v":[{"k":[30452],"v":[{"k":[26159],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[21463],"v":[{"k":[20105],"v":[{"k":[35758],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[22312],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[21450],"v":[{"k":[20854],"v":[{"k":[21464],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[26102],"v":[{"k":[19968],"v":[{"k":[23450],"v":[{"k":[35201],"v":[{"k":[35880],"v":[{"k":[24910],"v":[{"k":[24182],"v":[{"k":[36991],"v":[{"k":[20813],"v":[{"k":[36208],"v":[{"k":[36827],"v":[{"k":[35823],"v":[{"k":[21306],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32456],"v":[{"k":[33268],"v":[{"k":[21147],"v":[{"k":[20110],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[21019],"v":[{"k":[36896],"v":[{"k":[28789],"v":[{"k":[27963],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"k":[26368],"v":[{"k":[26032],"v":[{"k":[25512],"v":[{"k":[20986],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35937],"v":[{"k":[19968],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[21160],"v":[{"k":[24577],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[21019],"v":[{"k":[36896],"v":[{"k":[20986],"v":[{"k":[22810],"v":[{"k":[20040],"v":[{"k":[20196],"v":[{"k":[20154],"v":[{"k":[31216],"v":[{"k":[22855],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[20316],"v":[{"k":[21697],"v":[{"k":[65281],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26469],"v":[{"k":[20102],"v":[{"k":[36866],"v":[{"k":[20110],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36724],"v":[{"k":[12290],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[40664],"v":[{"k":[35748],"v":[{"k":[35774],"v":[{"k":[35745],"v":[{"k":[26356],"v":[{"k":[31361],"v":[{"k":[20986],"v":[{"k":[37325],"v":[{"k":[35201],"v":[{"k":[30340],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[25552],"v":[{"k":[20379],"v":[{"k":[20102],"v":[{"k":[26356],"v":[{"k":[28789],"v":[{"k":[27963],"v":[{"k":[30340],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[21270],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[26681],"v":[{"k":[25454],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[38656],"v":[{"k":[27714],"v":[{"k":[23450],"v":[{"k":[21046],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[20869],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[19979],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[34920],"v":[{"k":[30424],"v":[{"d":{"df":2,"dc":[[77,1],[79,1]]},"k":[20063,30340,65288],"v":[{"k":[34987],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[25320],"v":[{"k":[21495],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[25110],"v":[{"k":[36895],"v":[{"k":[24230],"v":[{"k":[34920],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[31867],"v":[{"k":[20284],"v":[{"k":[20110],"v":[{"k":[25320],"v":[{"k":[21495],"v":[{"k":[47],"v":[{"k":[36895],"v":[{"k":[24230],"v":[{"k":[35745],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[35835],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[25311],"v":[{"k":[29289],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[12290],"v":[{"k":[20202],"v":[{"k":[34920],"v":[{"k":[30424],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[21010],"v":[{"k":[20998],"v":[{"k":[25351],"v":[{"k":[31034],"v":[{"k":[20540],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[26631],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[25351],"v":[{"k":[31034],"v":[{"k":[32500],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[25351],"v":[{"k":[38024],"v":[{"k":[35282],"v":[{"k":[24230],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[79,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[79,1]]}}]}]}]}]},{"k":[96],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[117],"v":[{"k":[103],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]},{"k":[24418],"v":[{"k":[22278],"v":[{"k":[35282],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[35282,28857,29615],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24102],"v":[{"k":[26469],"v":[{"k":[26356],"v":[{"k":[32654],"v":[{"k":[35266],"v":[{"k":[32780],"v":[{"k":[26580],"v":[{"k":[21644],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[36171],"v":[{"k":[20104],"v":[{"k":[26356],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[21019],"v":[{"k":[36896],"v":[{"k":[21147],"v":[{"k":[12290],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]},{"k":[22270],"v":[{"d":{"df":1,"dc":[[113,1]]},"k":[21516],"v":[{"k":[26679],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21344],"v":[{"k":[24635],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[30456],"v":[{"k":[27604],"v":[{"k":[20110],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[31354],"v":[{"k":[20313],"v":[{"k":[30340],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[39069],"v":[{"k":[22806],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[31561],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[32780],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[113,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24577],"v":[{"k":[31649],"v":[{"k":[29702],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[33021],"v":[{"k":[25552],"v":[{"k":[21319],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[30697],"v":[{"k":[24418],"v":[{"k":[28210,30340],"v":[{"k":[26579],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[28436],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[26694],"v":[{"k":[36873],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[20026],"v":[{"k":[35813],"v":[{"k":[24103],"v":[{"k":[37325],"v":[{"k":[32472],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[19981],"v":[{"k":[26159],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[37117],"v":[{"k":[36890],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[19988],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[29702],"v":[{"k":[24819],"v":[{"k":[12290],"v":[{"k":[33039],"v":[{"k":[30697],"v":[{"k":[24418],"v":[{"k":[28210],"v":[{"k":[26579],"v":[{"k":[24456],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[28385],"v":[{"k":[36275],"v":[{"k":[20102],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[21644],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[27491],"v":[{"k":[30830],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32791],"v":[{"k":[12289],"v":[{"k":[20869],"v":[{"k":[23384],"v":[{"k":[21344],"v":[{"k":[29992],"v":[{"k":[12289],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[37117],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[20102],"v":[{"k":[28145],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[20248],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[24471],"v":[{"k":[30334],"v":[{"k":[19975],"v":[{"k":[37327],"v":[{"k":[32423],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20063],"v":[{"k":[33021],"v":[{"k":[20570],"v":[{"k":[21040],"v":[{"k":[23454],"v":[{"k":[26102],"v":[{"k":[30340],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[65288],"v":[{"k":[27599],"v":[{"k":[27425],"v":[{"k":[26356],"v":[{"k":[26032],"v":[{"k":[32791],"v":[{"k":[26102],"v":[{"k":[23569],"v":[{"k":[20110],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24378],"v":[{"k":[20102],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[33021],"v":[{"k":[21147],"v":[{"k":[65292],"v":[{"k":[35753],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[65306],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[36807],"v":[{"k":[28388],"v":[{"k":[65288],"v":[{"k":[102],"v":[{"k":[105],"v":[{"k":[108],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[25490],"v":[{"k":[24207],"v":[{"k":[65288],"v":[{"k":[115],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[32858],"v":[{"k":[21512],"v":[{"k":[65288],"v":[{"k":[97],"v":[{"k":[103],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[30452],"v":[{"k":[26041],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[104],"v":[{"k":[105],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[109],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[32858],"v":[{"k":[31867],"v":[{"k":[65288],"v":[{"k":[99],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[103],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[22238],"v":[{"k":[24402],"v":[{"k":[32447],"v":[{"k":[35745],"v":[{"k":[31639],"v":[{"k":[65288],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[115],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[65289],"v":[{"k":[31561],"v":[{"k":[12290],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[32773],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[32479],"v":[{"k":[19968],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[24335],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[26469],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26041],"v":[{"k":[20415],"v":[{"k":[22320],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25805],"v":[{"k":[20316],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[38469],"v":[{"k":[21270],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]},{"k":[65292,12290,8203],"v":[{"k":[36890,37325],"v":[{"k":[36807],"v":[{"k":[31867],"v":[{"k":[20284],"v":[{"k":[25346],"v":[{"k":[36733],"v":[{"k":[20027],"v":[{"k":[39064],"v":[{"k":[30340],"v":[{"k":[26041],"v":[{"k":[24335],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26032],"v":[{"k":[21021],"v":[{"k":[22987],"v":[{"k":[21270],"v":[{"k":[21518],"v":[{"k":[23601],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[20102],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[30340],"v":[{"k":[20999],"v":[{"k":[25442],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[77,1]]}},{"d":{"df":1,"dc":[[126,1]]}}]},{"k":[25968],"v":[{"k":[25346],"v":[{"k":[36733],"v":[{"k":[35821],"v":[{"k":[35328],"v":[{"k":[21253],"v":[{"k":[23545],"v":[{"k":[35937],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]},{"k":[32463,19981,34987],"v":[{"k":[21457,19981],"v":[{"k":[23637],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[21487],"v":[{"k":[35270],"v":[{"k":[21270],"v":[{"k":[24211],"v":[{"k":[20102],"v":[{"k":[65292],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[32493],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[23433],"v":[{"k":[20840],"v":[{"k":[39640],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[37325],"v":[{"k":[26500],"v":[{"k":[21644],"v":[{"k":[26032],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,2]]},"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,11]]}}]}]}]}]}]}]}]}]},{"k":[25512,36866],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290,65292],"v":[{"d":{"df":1,"dc":[[81,1]]},"k":[22240],"v":[{"k":[20026],"v":[{"k":[36825],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25509],"v":[{"k":[21475],"v":[{"k":[20854],"v":[{"k":[23454],"v":[{"k":[24182],"v":[{"k":[19981],"v":[{"k":[30495],"v":[{"k":[27491],"v":[{"k":[24517],"v":[{"k":[35201],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[24456],"v":[{"k":[38590],"v":[{"k":[20445],"v":[{"k":[35777],"v":[{"k":[21521],"v":[{"k":[21518],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[12290],"v":[{"k":[29992],"v":[{"k":[25143],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32780,20351],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]},{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]},{"k":[24323],"v":[{"k":[29992],"v":[{"k":[65292],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[81,3]]}}]}]}]}]}]}]}]},{"k":[36848],"v":[{"k":[20449],"v":[{"k":[24687],"v":[{"k":[12290],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]},{"k":[39064],"v":[{"k":[37197,65306],"v":[{"k":[33394],"v":[{"d":{"df":1,"dc":[[77,1]]}}]},{"d":{"df":1,"dc":[[81,1]]}}]}]},{"k":[33457],"v":[{"k":[22270],"v":[{"k":[26696],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]},{"k":[35874],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]},{"k":[20026],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20250],"v":[{"k":[20197],"v":[{"k":[26356],"v":[{"k":[22823],"v":[{"k":[30340],"v":[{"k":[28909],"v":[{"k":[24773],"v":[{"k":[25237],"v":[{"k":[20837],"v":[{"k":[21040],"v":[{"k":[26410],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[24320],"v":[{"k":[21457],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[77,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25341],"v":[{"k":[30340,26576],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"k":[20010],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[20250],"v":[{"k":[19981],"v":[{"k":[26029],"v":[{"k":[35843],"v":[{"k":[29992],"v":[{"k":[27492],"v":[{"k":[20989],"v":[{"k":[25968],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23637],"v":[{"k":[23454],"v":[{"k":[29616],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]},{"k":[37327,26356],"v":[{"k":[22312],"v":[{"k":[36825],"v":[{"k":[37324],"v":[{"k":[21333],"v":[{"k":[29420],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[21518],"v":[{"k":[38754],"v":[{"k":[20063],"v":[{"k":[20250],"v":[{"k":[29992],"v":[{"k":[21040],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]},{"k":[23544],"v":[{"k":[35774,25913],"v":[{"k":[22823],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]},{"k":[21464],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[33021],"v":[{"k":[33258],"v":[{"k":[36866],"v":[{"k":[24212],"v":[{"k":[24471],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28982],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[20013],"v":[{"k":[21407],"v":[{"k":[29983],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23601],"v":[{"k":[20026],"v":[{"k":[23427],"v":[{"k":[21152],"v":[{"k":[19978],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[65306],"v":[{"k":[29992],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32622],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]},{"d":{"df":2,"dc":[[81,1],[82,1]]},"k":[8220,27492],"v":[{"k":[20687],"v":[{"k":[32032],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[8221],"v":[{"k":[30340],"v":[{"k":[36716],"v":[{"k":[25442],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[24471],"v":[{"k":[21040],"v":[{"k":[20102],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[24212],"v":[{"k":[35813],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[32780],"v":[{"k":[33021],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[22278],"v":[{"k":[28857],"v":[{"k":[12290],"v":[{"k":[96],"v":[{"k":[109],"v":[{"k":[121],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[46],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[118],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[116],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[120],"v":[{"k":[101],"v":[{"k":[108],"v":[{"k":[40],"v":[{"k":[39],"v":[{"k":[103],"v":[{"k":[114],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[39],"v":[{"k":[44],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[65292],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[22522],"v":[{"k":[26412],"v":[{"k":[21151],"v":[{"k":[33021],"v":[{"k":[23601],"v":[{"k":[23436],"v":[{"k":[25104],"v":[{"k":[20102],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[24819],"v":[{"k":[35201],"v":[{"k":[26356],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[24471],"v":[{"k":[23454],"v":[{"k":[26102],"v":[{"k":[30475],"v":[{"k":[21040],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[34987],"v":[{"k":[25302],"v":[{"k":[25341],"v":[{"k":[30340],"v":[{"k":[28857],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32467],"v":[{"k":[19968],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[20840],"v":[{"k":[37096],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[78,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26007],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[80,1]]},"k":[21448,22810,30340],"v":[{"k":[21483],"v":[{"k":[20498],"v":[{"k":[19977],"v":[{"k":[35282],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[23558],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21576],"v":[{"k":[29616],"v":[{"k":[20026],"v":[{"k":[20960],"v":[{"k":[20010],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[65292],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[65292],"v":[{"k":[20174],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[21040],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[33258],"v":[{"k":[19978],"v":[{"k":[32780],"v":[{"k":[19979],"v":[{"k":[36880],"v":[{"k":[28176],"v":[{"k":[19979],"v":[{"k":[38477],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[38454],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[24635],"v":[{"k":[35745],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[20110],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[31616],"v":[{"k":[21270],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[21333],"v":[{"k":[21521],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[19994],"v":[{"k":[21153],"v":[{"k":[21508],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[20002],"v":[{"k":[22833],"v":[{"k":[25110],"v":[{"k":[22686],"v":[{"k":[21152],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[19982],"v":[{"k":[19978],"v":[{"k":[19968],"v":[{"k":[29615],"v":[{"k":[33410],"v":[{"k":[30340],"v":[{"k":[24046],"v":[{"k":[24322],"v":[{"k":[12290],"v":[{"k":[28431],"v":[{"k":[26007],"v":[{"k":[22270],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[30830],"v":[{"k":[23450],"v":[{"k":[32452],"v":[{"k":[32455],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[21806],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[23384],"v":[{"k":[22312],"v":[{"k":[30340],"v":[{"k":[38382],"v":[{"k":[39064],"v":[{"k":[21644],"v":[{"k":[29942],"v":[{"k":[39048],"v":[{"k":[20063],"v":[{"k":[24456],"v":[{"k":[26377],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[80,1]]}}]}]}]}]}]}]}]},{"k":[32423],"v":[{"k":[25351],"v":[{"k":[21335],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[28982],"v":[{"k":[24102,25903],"v":[{"k":[26469],"v":[{"k":[20102],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[38750],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[25913],"v":[{"k":[21160],"v":[{"k":[65292],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[29305],"v":[{"k":[21035],"v":[{"k":[20851],"v":[{"k":[27880],"v":[{"k":[12290],"v":[{"k":[27492],"v":[{"k":[22806],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[96],"v":[{"k":[118],"v":[{"k":[53],"v":[{"k":[96],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25345],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[24050],"v":[{"k":[19981],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[36182],"v":[{"k":[35843],"v":[{"k":[25972],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]},{"k":[38500],"v":[{"k":[20102],"v":[{"k":[20869],"v":[{"k":[32622],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[24433],"v":[{"k":[21709],"v":[{"k":[21040],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[22320],"v":[{"k":[26041],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]},{"k":[22238],"v":[{"k":[30340,20013],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[30340],"v":[{"k":[22768],"v":[{"k":[26126],"v":[{"k":[12290],"v":[{"k":[65288],"v":[{"k":[21407],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[20889],"v":[{"k":[27861],"v":[{"k":[20173],"v":[{"k":[20860],"v":[{"k":[23481],"v":[{"k":[65292],"v":[{"k":[20294],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[24456],"v":[{"k":[22797],"v":[{"k":[26434],"v":[{"k":[30340],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[19981],"v":[{"k":[23436],"v":[{"k":[20840],"v":[{"k":[19968],"v":[{"k":[33268],"v":[{"k":[12290],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270,30340],"v":[{"k":[65288,26679,20013,20027,38500,26159,30340],"v":[{"k":[96],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[110],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]},{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]},{"k":[25240],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30456],"v":[{"k":[38543],"v":[{"k":[30528],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[25512],"v":[{"k":[31227],"v":[{"k":[30340],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[25110],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[12290],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[30340],"v":[{"k":[20108],"v":[{"k":[32500],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[26576],"v":[{"k":[32593],"v":[{"k":[31449],"v":[{"k":[35775],"v":[{"k":[38382],"v":[{"k":[20154],"v":[{"k":[25968],"v":[{"k":[25110],"v":[{"k":[21830],"v":[{"k":[21697],"v":[{"k":[38144],"v":[{"k":[37327],"v":[{"k":[20215],"v":[{"k":[26684],"v":[{"k":[30340],"v":[{"k":[27874],"v":[{"k":[21160],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20102],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[26576],"v":[{"k":[20010],"v":[{"k":[20107],"v":[{"k":[24773],"v":[{"k":[21457],"v":[{"k":[23637],"v":[{"k":[30340],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24207],"v":[{"k":[21015],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[27573],"v":[{"k":[30340],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[21830],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[21738],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[21830],"v":[{"k":[21697],"v":[{"k":[30340],"v":[{"k":[38144],"v":[{"k":[37327],"v":[{"k":[26368],"v":[{"k":[22909],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[23558],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[29992],"v":[{"k":[32447],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[36215],"v":[{"k":[26469],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[25104],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[12290],"v":[{"k":[20026],"v":[{"k":[20102],"v":[{"k":[36861],"v":[{"k":[27714],"v":[{"k":[32654],"v":[{"k":[35266],"v":[{"k":[25110],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[22914],"v":[{"k":[19978],"v":[{"k":[22270],"v":[{"k":[23558],"v":[{"k":[28857],"v":[{"k":[19982],"v":[{"k":[28857],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[29992],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[22270],"v":[{"k":[21448],"v":[{"k":[21483],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[26679],"v":[{"k":[26465],"v":[{"k":[22270],"v":[{"k":[26679],"v":[{"k":[26465],"v":[{"k":[12290],"v":[{"k":[26679],"v":[{"k":[26465],"v":[{"k":[22270],"v":[{"k":[19982],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[29992],"v":[{"k":[27861],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[26159],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[36830],"v":[{"k":[32447],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]},{"k":[26679],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]},{"k":[26085],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[117],"v":[{"k":[110],"v":[{"k":[98],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"d":{"df":1,"dc":[[129,1]]},"k":[65288,20027,30340,26679,12290],"v":[{"k":[96],"v":[{"k":[112],"v":[{"k":[105],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]},{"k":[35201],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[34920,23637],"v":[{"k":[29616],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"k":[24635],"v":[{"k":[21644],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[30340],"v":[{"k":[24359],"v":[{"k":[24230],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[25968],"v":[{"k":[37327],"v":[{"k":[30340],"v":[{"k":[27604],"v":[{"k":[20363],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29616],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[30456],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[24635],"v":[{"k":[25968],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[24773],"v":[{"k":[20917],"v":[{"k":[12290],"v":[{"k":[22270],"v":[{"k":[20013],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[65288],"v":[{"k":[25159],"v":[{"k":[21306],"v":[{"k":[65289],"v":[{"k":[30340],"v":[{"k":[24359],"v":[{"k":[38271],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[35813],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[30340],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[20998],"v":[{"k":[22359],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[24635],"v":[{"k":[21644],"v":[{"k":[20026],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[37197,21322,20351],"v":[{"k":[32622],"v":[{"k":[21644],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[12289],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30053],"v":[{"k":[26377],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20877],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[37197],"v":[{"k":[32622],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26159],"v":[{"k":[25226],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[21517],"v":[{"k":[31216],"v":[{"k":[21644],"v":[{"k":[20540],"v":[{"k":[37117],"v":[{"k":[20889],"v":[{"k":[22312],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013],"v":[{"k":[12290],"v":[{"k":[20197],"v":[{"k":[19979],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[26368],"v":[{"k":[31616],"v":[{"k":[21333],"v":[{"k":[30340],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[20363],"v":[{"k":[23376],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24452],"v":[{"d":{"df":1,"dc":[[115,1]]},"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]},{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[129,1]]}}]}]}]}]},{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]},{"d":{"df":1,"dc":[[129,1]]}}]}]},{"k":[24050,12290],"v":[{"k":[32463],"v":[{"k":[19981],"v":[{"k":[25512],"v":[{"k":[33616],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"k":[35831],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21491],"v":[{"k":[36793],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[81,2]]}}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[81,2]]}}]},{"k":[36798],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[82,1]]},"k":[65288,30340,23545],"v":[{"k":[96,114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65306],"v":[{"d":{"df":1,"dc":[[81,1]]}}]}]}]}]}]}]}]}]},{"k":[97],"v":[{"k":[100],"v":[{"k":[97],"v":[{"k":[114],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]},{"k":[27599,20351],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[37117],"v":[{"k":[26377],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20174],"v":[{"k":[20013],"v":[{"k":[24515],"v":[{"k":[21521],"v":[{"k":[22806],"v":[{"k":[21457],"v":[{"k":[23556],"v":[{"k":[30340],"v":[{"k":[36724],"v":[{"k":[32447],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[30340],"v":[{"k":[36724],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[22841],"v":[{"k":[35282],"v":[{"k":[30456],"v":[{"k":[31561],"v":[{"k":[65292],"v":[{"k":[21516],"v":[{"k":[26102],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[26377],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[65292],"v":[{"k":[23558],"v":[{"k":[36724],"v":[{"k":[21040],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[29992],"v":[{"k":[32593],"v":[{"k":[26684],"v":[{"k":[32447],"v":[{"k":[38142],"v":[{"k":[25509],"v":[{"k":[20316],"v":[{"k":[20026],"v":[{"k":[36741],"v":[{"k":[21161],"v":[{"k":[20803],"v":[{"k":[32032],"v":[{"k":[65292],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[22312],"v":[{"k":[20854],"v":[{"k":[21508],"v":[{"k":[33258],"v":[{"k":[30340],"v":[{"k":[36724],"v":[{"k":[32447],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[25104],"v":[{"k":[19968],"v":[{"k":[26465],"v":[{"k":[22810],"v":[{"k":[36793],"v":[{"k":[24418],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]},{"k":[20110],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[30456],"v":[{"k":[20284],"v":[{"k":[30340],"v":[{"k":[20540],"v":[{"k":[12289],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[26159],"v":[{"k":[21542],"v":[{"k":[26377],"v":[{"k":[24322],"v":[{"k":[24120],"v":[{"k":[20540],"v":[{"k":[37117],"v":[{"k":[24456],"v":[{"k":[26377],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[21738],"v":[{"k":[20123],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[22312],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38598],"v":[{"k":[20869],"v":[{"k":[24471],"v":[{"k":[20998],"v":[{"k":[36739],"v":[{"k":[39640],"v":[{"k":[25110],"v":[{"k":[36739],"v":[{"k":[20302],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[24615],"v":[{"k":[33021],"v":[{"k":[65288],"v":[{"k":[35265],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"k":[21516],"v":[{"k":[26679],"v":[{"k":[65292],"v":[{"k":[38647],"v":[{"k":[36798],"v":[{"k":[22270],"v":[{"k":[20063],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[25490],"v":[{"k":[21517],"v":[{"k":[12289],"v":[{"k":[35780],"v":[{"k":[20272],"v":[{"k":[12289],"v":[{"k":[35780],"v":[{"k":[35770],"v":[{"k":[31561],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[82,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31350],"v":[{"k":[34920],"v":[{"k":[26126],"v":[{"k":[65292],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[26377],"v":[{"k":[22266],"v":[{"k":[23450],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[30340],"v":[{"k":[35789],"v":[{"k":[65292],"v":[{"k":[21305],"v":[{"k":[37197],"v":[{"k":[20854],"v":[{"k":[20855],"v":[{"k":[26377],"v":[{"k":[35821],"v":[{"k":[20041],"v":[{"k":[20849],"v":[{"k":[40483],"v":[{"k":[30340],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[33021],"v":[{"k":[26377],"v":[{"k":[25928],"v":[{"k":[30340],"v":[{"k":[21152],"v":[{"k":[36895],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[65292],"v":[{"k":[21453],"v":[{"k":[20043],"v":[{"k":[21017],"v":[{"k":[20250],"v":[{"k":[38459],"v":[{"k":[30861],"v":[{"k":[35748],"v":[{"k":[30693],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26377],"v":[{"k":[36259],"v":[{"k":[30340],"v":[{"k":[29616],"v":[{"k":[35937],"v":[{"k":[31216],"v":[{"k":[20026],"v":[{"k":[34],"v":[{"k":[26031],"v":[{"k":[29305],"v":[{"k":[40065],"v":[{"k":[26222],"v":[{"k":[25928],"v":[{"k":[24212],"v":[{"k":[34],"v":[{"k":[12290],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20570],"v":[{"k":[20010],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[35797],"v":[{"k":[39564],"v":[{"k":[65292],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[22312],"v":[{"k":[19978],"v":[{"k":[22270],"v":[{"k":[20004],"v":[{"k":[34892],"v":[{"k":[25991],"v":[{"k":[23383],"v":[{"k":[20013],"v":[{"k":[25214],"v":[{"k":[21040],"v":[{"k":[8220],"v":[{"k":[40644],"v":[{"k":[8221],"v":[{"k":[23383],"v":[{"k":[12290],"v":[{"k":[36825],"v":[{"k":[20010],"v":[{"k":[36807],"v":[{"k":[31243],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[31532],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[30340],"v":[{"k":[8220],"v":[{"k":[40644],"v":[{"k":[8221],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[34987],"v":[{"k":[24555],"v":[{"k":[36895],"v":[{"k":[23450],"v":[{"k":[20301],"v":[{"k":[21040],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[12290],"v":[{"k":[32780],"v":[{"k":[22312],"v":[{"k":[31532],"v":[{"k":[20108],"v":[{"k":[34892],"v":[{"k":[23547],"v":[{"k":[25214],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[20505],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[33021],"v":[{"k":[26377],"v":[{"k":[20154],"v":[{"k":[26368],"v":[{"k":[26089],"v":[{"k":[23450],"v":[{"k":[20301],"v":[{"k":[21040],"v":[{"k":[30340],"v":[{"k":[20250],"v":[{"k":[26159],"v":[{"k":[8220],"v":[{"k":[32043],"v":[{"k":[8221],"v":[{"k":[23383],"v":[{"k":[65292],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[27492],"v":[{"k":[22788],"v":[{"k":[8220],"v":[{"k":[32043],"v":[{"k":[8221],"v":[{"k":[23383],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[20102],"v":[{"k":[40644],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[23601],"v":[{"k":[38459],"v":[{"k":[30861],"v":[{"k":[20102],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[23547],"v":[{"k":[25214],"v":[{"k":[30340],"v":[{"k":[36895],"v":[{"k":[24230],"v":[{"k":[21644],"v":[{"k":[20934],"v":[{"k":[30830],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20363],"v":[{"k":[22914],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[22825],"v":[{"k":[27668],"v":[{"k":[28201],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"k":[34013],"v":[{"k":[33394],"v":[{"k":[21644],"v":[{"k":[32418],"v":[{"k":[33394],"v":[{"k":[26131],"v":[{"k":[20110],"v":[{"k":[29702],"v":[{"k":[35299],"v":[{"k":[65292],"v":[{"k":[26080],"v":[{"k":[38656],"v":[{"k":[20219],"v":[{"k":[20309],"v":[{"k":[35299],"v":[{"k":[37322],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[26131],"v":[{"k":[20110],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[83,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":6,"dc":[[121,1],[122,1],[123,2],[124,2],[128,1],[130,1]]},"k":[116],"v":[{"k":[104],"v":[{"k":[101],"v":[{"d":{"df":1,"dc":[[100,1]]}}]}]}]},{"k":[29366,26465,23376],"v":[{"k":[22270],"v":[{"k":[65288,26679,26159,30340],"v":[{"k":[25110],"v":[{"k":[31216],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[26609],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[38271],"v":[{"k":[24230],"v":[{"k":[26469],"v":[{"k":[34920],"v":[{"k":[29616],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"d":{"df":2,"dc":[[110,1],[116,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]},{"k":[26368],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[65292],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[25110],"v":[{"k":[22402],"v":[{"k":[30452],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]},{"k":[26679,30340,22278,36879,23485,38388],"v":[{"k":[24335],"v":[{"d":{"df":1,"dc":[[110,1]]}}]},{"k":[26679,39068,25551],"v":[{"k":[24335],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]},{"k":[33394],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65307],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]},{"k":[36793],"v":[{"k":[39068],"v":[{"k":[33394],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[119],"v":[{"k":[105],"v":[{"k":[100],"v":[{"k":[116],"v":[{"k":[104],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12289],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65307],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[35282],"v":[{"k":[30340],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[98],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[100],"v":[{"k":[101],"v":[{"k":[114],"v":[{"k":[114],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[105],"v":[{"k":[117],"v":[{"k":[115],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65307],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26126],"v":[{"k":[24230],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[111],"v":[{"k":[112],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[105],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[65307],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24230],"v":[{"k":[21644,21487],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]},{"k":[20197],"v":[{"k":[36890],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]},{"k":[36317],"v":[{"d":{"df":1,"dc":[[110,1]]},"k":[20998],"v":[{"k":[20026],"v":[{"k":[20004],"v":[{"k":[31181],"v":[{"k":[65292],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[26159],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[22312],"v":[{"k":[21516],"v":[{"k":[19968],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[19979],"v":[{"k":[30340],"v":[{"k":[36317],"v":[{"k":[31163],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30340],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"k":[26469],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24433],"v":[{"k":[65288],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[98],"v":[{"k":[108],"v":[{"k":[117],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[99],"v":[{"k":[111],"v":[{"k":[108],"v":[{"k":[111],"v":[{"k":[114],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[120],"v":[{"k":[96],"v":[{"k":[12289],"v":[{"k":[96],"v":[{"k":[115],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[100],"v":[{"k":[111],"v":[{"k":[119],"v":[{"k":[111],"v":[{"k":[102],"v":[{"k":[102],"v":[{"k":[115],"v":[{"k":[101],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[96],"v":[{"k":[65289],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[25968,65292,39033,24207],"v":[{"k":[25454],"v":[{"k":[65292,39033],"v":[{"k":[50],"v":[{"k":[48],"v":[{"k":[37],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]},{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[39033],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"d":{"df":1,"dc":[[115,1]]}}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22240,20197],"v":[{"k":[20026],"v":[{"k":[22826],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20250],"v":[{"k":[20351],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[21644],"v":[{"k":[20998],"v":[{"k":[36776],"v":[{"k":[21464],"v":[{"k":[24471],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[22256],"v":[{"k":[38590],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20813],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[38590],"v":[{"k":[20197],"v":[{"k":[36776],"v":[{"k":[35782],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]},{"k":[30446],"v":[{"k":[36827],"v":[{"k":[34892],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[27178],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[20250],"v":[{"k":[26080],"v":[{"k":[27861],"v":[{"k":[23436],"v":[{"k":[20840],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[23436],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[65292],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[21482],"v":[{"k":[33021],"v":[{"k":[20542],"v":[{"k":[26012],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[65292],"v":[{"k":[24433],"v":[{"k":[21709],"v":[{"k":[32654],"v":[{"k":[35266],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[24403],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[36807],"v":[{"k":[38271],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[29992],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[33719],"v":[{"k":[24471],"v":[{"k":[26356],"v":[{"k":[22909],"v":[{"k":[30340],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21015],"v":[{"k":[12289],"v":[{"k":[29305],"v":[{"k":[24449],"v":[{"k":[21450],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[20540],"v":[{"k":[65292],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[19981],"v":[{"k":[38169],"v":[{"k":[30340],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[20102],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[25552],"v":[{"k":[20132],"v":[{"k":[30340],"v":[{"k":[26085],"v":[{"k":[26399],"v":[{"k":[12289],"v":[{"k":[20855],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[27668],"v":[{"k":[27873],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[35828],"v":[{"k":[26126],"v":[{"k":[20102],"v":[{"k":[25552],"v":[{"k":[20132],"v":[{"k":[30340],"v":[{"k":[20195],"v":[{"k":[30721],"v":[{"k":[37327],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[127,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21046],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[30340],"v":[{"k":[26368],"v":[{"k":[22823],"v":[{"k":[23485],"v":[{"k":[24230],"v":[{"k":[12290],"v":[{"k":[23545],"v":[{"k":[20110],"v":[{"k":[19968],"v":[{"k":[20123],"v":[{"k":[29305],"v":[{"k":[21035],"v":[{"k":[23567],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[65292],"v":[{"k":[25105],"v":[{"k":[20204],"v":[{"k":[20063],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[20026],"v":[{"k":[26609],"v":[{"k":[26465],"v":[{"k":[25351],"v":[{"k":[23450],"v":[{"k":[26368],"v":[{"k":[23567],"v":[{"k":[39640],"v":[{"k":[24230],"v":[{"d":{"df":1,"dc":[[110,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"d":{"df":1,"dc":[[110,1]]}},{"k":[21472,31215],"v":[{"k":[26609,25240,38754],"v":[{"k":[29366],"v":[{"d":{"df":1,"dc":[[122,1]]},"k":[22270],"v":[{"d":{"df":2,"dc":[[111,1],[122,1]]},"k":[26159],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25193],"v":[{"k":[23637],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[22312],"v":[{"k":[20110],"v":[{"k":[65292],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20540],"v":[{"k":[20026],"v":[{"k":[24182],"v":[{"k":[34892],"v":[{"k":[25490],"v":[{"k":[21015],"v":[{"k":[65292],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[22270],"v":[{"k":[21017],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20010],"v":[{"k":[21472],"v":[{"k":[21152],"v":[{"k":[36215],"v":[{"k":[26469],"v":[{"k":[30340],"v":[{"k":[12290],"v":[{"k":[23427],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[27599],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[30340],"v":[{"k":[24635],"v":[{"k":[37327],"v":[{"k":[65292],"v":[{"k":[20197],"v":[{"k":[21450],"v":[{"k":[35813],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[30340],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[23567],"v":[{"k":[20998],"v":[{"k":[31867],"v":[{"k":[30340],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[21450],"v":[{"k":[21344],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[22240],"v":[{"k":[27492],"v":[{"k":[65292],"v":[{"k":[38750],"v":[{"k":[24120],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[22788],"v":[{"k":[29702],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[19982],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[118,1]]}}]}]},{"k":[31215],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[126,1]]},"k":[30340],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]},{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[29305],"v":[{"k":[27530],"v":[{"k":[30340],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[21306],"v":[{"k":[38388],"v":[{"k":[20869],"v":[{"k":[30340],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[12290],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[21644],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[22312],"v":[{"k":[20110],"v":[{"k":[65292],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"k":[36215],"v":[{"k":[28857],"v":[{"k":[37117],"v":[{"k":[26159],"v":[{"k":[22522],"v":[{"k":[20110],"v":[{"k":[21069],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[32472],"v":[{"k":[21046],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[20063],"v":[{"k":[23601],"v":[{"k":[26159],"v":[{"k":[27599],"v":[{"k":[24230],"v":[{"k":[37327],"v":[{"k":[19968],"v":[{"k":[34892],"v":[{"k":[23601],"v":[{"k":[35201],"v":[{"k":[22635],"v":[{"k":[28385],"v":[{"k":[34892],"v":[{"k":[19982],"v":[{"k":[34892],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[126,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[19969],"v":[{"k":[26684],"v":[{"k":[23572],"v":[{"k":[22270],"v":[{"k":[65288,21448],"v":[{"k":[29611],"v":[{"k":[29808],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"d":{"df":1,"dc":[[112,1]]}}]}]}]}]},{"k":[31216],"v":[{"k":[29611],"v":[{"k":[29808],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[29992],"v":[{"k":[24359],"v":[{"k":[24230],"v":[{"k":[30456],"v":[{"k":[21516],"v":[{"k":[20294],"v":[{"k":[21322],"v":[{"k":[24452],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[25159],"v":[{"k":[24418],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[21508],"v":[{"k":[20010],"v":[{"k":[31867],"v":[{"k":[30446],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[112,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22495],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270,25240],"v":[{"d":{"df":1,"dc":[[114,1]]},"k":[23558],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[21040],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[36724],"v":[{"k":[30340],"v":[{"k":[31354],"v":[{"k":[38388],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"k":[32972],"v":[{"k":[26223],"v":[{"k":[33394],"v":[{"k":[65292],"v":[{"k":[29992],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[12290],"v":[{"k":[30456],"v":[{"k":[27604],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[25928],"v":[{"k":[26524],"v":[{"k":[26356],"v":[{"k":[21152],"v":[{"k":[39281],"v":[{"k":[28385],"v":[{"k":[20016],"v":[{"k":[23500],"v":[{"k":[65292],"v":[{"k":[22312],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[19981],"v":[{"k":[22810],"v":[{"k":[30340],"v":[{"k":[22330],"v":[{"k":[26223],"v":[{"k":[19979],"v":[{"k":[23588],"v":[{"k":[20854],"v":[{"k":[36866],"v":[{"k":[29992],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[114,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]},{"k":[21345],"v":[{"k":[23572],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013,19979],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]}]}]},{"k":[30340],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]},{"k":[25968],"v":[{"k":[25454],"v":[{"d":{"df":1,"dc":[[116,1]]}}]}]},{"k":[26799],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[117,1]]},"k":[21448],"v":[{"k":[31216],"v":[{"k":[26041],"v":[{"k":[27874],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[23427],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[21644],"v":[{"k":[22402],"v":[{"k":[30452],"v":[{"k":[30340],"v":[{"k":[32447],"v":[{"k":[26469],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[26222],"v":[{"k":[36890],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[21017],"v":[{"k":[30452],"v":[{"k":[25509],"v":[{"k":[23558],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[28857],"v":[{"k":[36830],"v":[{"k":[25509],"v":[{"k":[36215],"v":[{"k":[26469],"v":[{"k":[12290],"v":[{"k":[38454],"v":[{"k":[26799],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[33021],"v":[{"k":[22815],"v":[{"k":[24456],"v":[{"k":[22909],"v":[{"k":[22320],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[31361],"v":[{"k":[21464],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[117,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[91,39292],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[93],"v":[{"k":[40],"v":[{"k":[46],"v":[{"k":[47],"v":[{"k":[122],"v":[{"k":[104],"v":[{"k":[47],"v":[{"k":[97],"v":[{"k":[112],"v":[{"k":[112],"v":[{"k":[108],"v":[{"k":[105],"v":[{"k":[99],"v":[{"k":[97],"v":[{"k":[116],"v":[{"k":[105],"v":[{"k":[111],"v":[{"k":[110],"v":[{"k":[47],"v":[{"k":[99],"v":[{"k":[104],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[116],"v":[{"k":[45],"v":[{"k":[116],"v":[{"k":[121],"v":[{"k":[112],"v":[{"k":[101],"v":[{"k":[115],"v":[{"k":[47],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[47],"v":[{"k":[115],"v":[{"k":[116],"v":[{"k":[97],"v":[{"k":[99],"v":[{"k":[107],"v":[{"k":[101],"v":[{"k":[100],"v":[{"k":[45],"v":[{"k":[98],"v":[{"k":[97],"v":[{"k":[114],"v":[{"k":[41],"v":[{"k":[31867],"v":[{"k":[20284],"v":[{"k":[65292],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[29992],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[118,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[22270],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[21333],"v":[{"k":[20010],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21040],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[30340],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[22810],"v":[{"k":[20010],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[21040],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[29677],"v":[{"k":[32423],"v":[{"k":[20307],"v":[{"k":[32946],"v":[{"k":[35838],"v":[{"k":[36873],"v":[{"k":[35838],"v":[{"k":[30340],"v":[{"k":[21508],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20154],"v":[{"k":[25968],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[65292],"v":[{"k":[20320],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[25110],"v":[{"k":[39292],"v":[{"k":[22270],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[12290],"v":[{"k":[20294],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[36827],"v":[{"k":[19968],"v":[{"k":[27493],"v":[{"k":[21306],"v":[{"k":[20998],"v":[{"k":[30007],"v":[{"k":[29983],"v":[{"k":[21644],"v":[{"k":[22899],"v":[{"k":[29983],"v":[{"k":[21442],"v":[{"k":[19982],"v":[{"k":[21040],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20154],"v":[{"k":[25968],"v":[{"k":[20998],"v":[{"k":[21035],"v":[{"k":[26159],"v":[{"k":[22810],"v":[{"k":[23569],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[23601],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[25226],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[30340],"v":[{"k":[30007],"v":[{"k":[29983],"v":[{"k":[25968],"v":[{"k":[21644],"v":[{"k":[22899],"v":[{"k":[29983],"v":[{"k":[25968],"v":[{"k":[37117],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20986],"v":[{"k":[26469],"v":[{"k":[12290],"v":[{"k":[22914],"v":[{"k":[22270],"v":[{"k":[36873],"v":[{"k":[29992],"v":[{"k":[22534],"v":[{"k":[21472],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[20165],"v":[{"k":[33021],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[30340],"v":[{"k":[24635],"v":[{"k":[20154],"v":[{"k":[25968],"v":[{"k":[65292],"v":[{"k":[36824],"v":[{"k":[33021],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[20986],"v":[{"k":[27599],"v":[{"k":[20010],"v":[{"k":[39033],"v":[{"k":[30446],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[37096],"v":[{"k":[20998],"v":[{"k":[19982],"v":[{"k":[25972],"v":[{"k":[20307],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[122,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28857],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[130,1]]},"k":[65292,26679,22312,20250,30340],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[24120],"v":[{"k":[35265],"v":[{"k":[30340],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[12290],"v":[{"k":[25955],"v":[{"k":[28857],"v":[{"k":[22270],"v":[{"k":[30001],"v":[{"k":[35768],"v":[{"k":[22810],"v":[{"k":[8220],"v":[{"k":[28857],"v":[{"k":[8221],"v":[{"k":[32452],"v":[{"k":[25104],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[20123],"v":[{"k":[28857],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[20013],"v":[{"k":[30340],"v":[{"k":[20301],"v":[{"k":[32622],"v":[{"k":[65288],"v":[{"k":[27604],"v":[{"k":[22914],"v":[{"k":[22312],"v":[{"k":[31515],"v":[{"k":[21345],"v":[{"k":[23572],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[19979],"v":[{"k":[65292],"v":[{"k":[34920],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[24335],"v":[{"k":[35774],"v":[{"k":[32622],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]},{"k":[30452],"v":[{"k":[35282],"v":[{"k":[22352],"v":[{"k":[26631],"v":[{"k":[31995],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[20004],"v":[{"k":[20010],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[65288],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[26174],"v":[{"k":[31034],"v":[{"k":[19981],"v":[{"k":[21516],"v":[{"k":[31867],"v":[{"k":[22411],"v":[{"k":[30340],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[65292],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[21363],"v":[{"k":[21464],"v":[{"k":[37327],"v":[{"k":[20043],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[20851],"v":[{"k":[31995],"v":[{"k":[12290],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[26377],"v":[{"k":[27491],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[12289],"v":[{"k":[36127],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[12289],"v":[{"k":[19981],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[19977],"v":[{"k":[31181],"v":[{"k":[30456],"v":[{"k":[20851],"v":[{"k":[24615],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]},{"k":[24452],"v":[{"k":[21363],"v":[{"k":[21487],"v":[{"k":[12290],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[30690],"v":[{"k":[37327],"v":[{"k":[22270],"v":[{"k":[24418],"v":[{"k":[30340],"v":[{"k":[22909],"v":[{"k":[22788],"v":[{"k":[26159],"v":[{"k":[65292],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[19981],"v":[{"k":[20250],"v":[{"k":[22240],"v":[{"k":[20026],"v":[{"k":[32553],"v":[{"k":[25918],"v":[{"k":[32780],"v":[{"k":[20135],"v":[{"k":[29983],"v":[{"k":[38191],"v":[{"k":[40831],"v":[{"k":[25110],"v":[{"k":[27169],"v":[{"k":[31946],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[36890],"v":[{"k":[24120],"v":[{"k":[32780],"v":[{"k":[35328],"v":[{"k":[27604],"v":[{"k":[22270],"v":[{"k":[29255],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[30340],"v":[{"k":[25991],"v":[{"k":[20214],"v":[{"k":[22823],"v":[{"k":[23567],"v":[{"k":[26356],"v":[{"k":[23567],"v":[{"k":[12290],"v":[{"k":[36335],"v":[{"k":[24452],"v":[{"k":[30340],"v":[{"k":[26597],"v":[{"k":[30475],"v":[{"k":[26041],"v":[{"k":[27861],"v":[{"k":[20026],"v":[{"k":[65292],"v":[{"k":[25171],"v":[{"k":[24320],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"d":{"df":1,"dc":[[119,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[28369],"v":[{"k":[26354],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"d":{"df":1,"dc":[[120,1]]},"k":[20063],"v":[{"k":[26159],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[21464],"v":[{"k":[24418],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[31181],"v":[{"k":[26356],"v":[{"k":[26580],"v":[{"k":[21644],"v":[{"k":[30340],"v":[{"k":[26679],"v":[{"k":[24335],"v":[{"k":[20063],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[31181],"v":[{"k":[19981],"v":[{"k":[38169],"v":[{"k":[30340],"v":[{"k":[35270],"v":[{"k":[35273],"v":[{"k":[36873],"v":[{"k":[25321],"v":[{"k":[12290],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[26102],"v":[{"k":[65292],"v":[{"k":[21482],"v":[{"k":[38656],"v":[{"k":[35201],"v":[{"k":[23558],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[30340],"v":[{"d":{"df":1,"dc":[[120,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[31215],"v":[{"k":[22270],"v":[{"k":[21448,30340],"v":[{"k":[21483],"v":[{"k":[21306],"v":[{"k":[22495],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[19982],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[22270],"v":[{"k":[24456],"v":[{"k":[30456],"v":[{"k":[36817],"v":[{"k":[65292],"v":[{"k":[37117],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[29992],"v":[{"k":[26469],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[38543],"v":[{"k":[30528],"v":[{"k":[36830],"v":[{"k":[32493],"v":[{"k":[26102],"v":[{"k":[38388],"v":[{"k":[30340],"v":[{"k":[25512],"v":[{"k":[31227],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[21464],"v":[{"k":[21270],"v":[{"k":[36235],"v":[{"k":[21183],"v":[{"k":[12290],"v":[{"k":[21306],"v":[{"k":[21035],"v":[{"k":[22312],"v":[{"k":[20110],"v":[{"k":[65292],"v":[{"k":[38754],"v":[{"k":[31215],"v":[{"k":[22270],"v":[{"k":[22312],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[19982],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[36724],"v":[{"k":[65288],"v":[{"k":[120],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20351],"v":[{"k":[29992],"v":[{"k":[24314],"v":[{"k":[35758],"v":[{"d":{"df":1,"dc":[[123,1]]}}]}]}]}]}]}]}]},{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[26159],"v":[{"k":[22402],"v":[{"k":[30452],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[27178],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[30340],"v":[{"k":[26609],"v":[{"k":[26159],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[21448],"v":[{"k":[31216],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[12290],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[19982],"v":[{"k":[27178],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[36798],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[24418],"v":[{"k":[24335],"v":[{"k":[26159],"v":[{"k":[19968],"v":[{"k":[26679],"v":[{"k":[30340],"v":[{"k":[65292],"v":[{"k":[19981],"v":[{"k":[36807],"v":[{"k":[65292],"v":[{"k":[24403],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[26631],"v":[{"k":[31614],"v":[{"k":[24456],"v":[{"k":[38271],"v":[{"k":[25110],"v":[{"k":[32773],"v":[{"k":[26377],"v":[{"k":[36229],"v":[{"k":[36807],"v":[{"d":{"df":1,"dc":[[124,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20197],"v":[{"k":[19978],"v":[{"k":[30340],"v":[{"k":[25240],"v":[{"k":[32447],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[38169],"v":[{"k":[35823],"v":[{"k":[30340],"v":[{"k":[31034],"v":[{"k":[20363],"v":[{"k":[65292],"v":[{"k":[32447],"v":[{"k":[37117],"v":[{"k":[25240],"v":[{"k":[21472],"v":[{"k":[22312],"v":[{"k":[19968],"v":[{"k":[36215],"v":[{"k":[24182],"v":[{"k":[19988],"v":[{"k":[21448],"v":[{"k":[27809],"v":[{"k":[26377],"v":[{"k":[26126],"v":[{"k":[26174],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[25972],"v":[{"k":[24352],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[23601],"v":[{"k":[20250],"v":[{"k":[28151],"v":[{"k":[20081],"v":[{"k":[24182],"v":[{"k":[38590],"v":[{"k":[20197],"v":[{"k":[38405],"v":[{"k":[35835],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[125,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"d":{"df":1,"dc":[[128,1]]},"k":[22270],"v":[{"d":{"df":1,"dc":[[128,1]]},"k":[22810,19968,21487],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[23637],"v":[{"k":[31034],"v":[{"k":[21253],"v":[{"k":[21547],"v":[{"k":[30456],"v":[{"k":[21453],"v":[{"k":[21547],"v":[{"k":[20041],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[22270],"v":[{"k":[34920],"v":[{"k":[30340],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[36724],"v":[{"k":[26174],"v":[{"k":[31034],"v":[{"k":[27491],"v":[{"k":[22312],"v":[{"k":[27604],"v":[{"k":[36739],"v":[{"k":[30340],"v":[{"k":[31867],"v":[{"k":[21035],"v":[{"k":[65292],"v":[{"k":[32780],"v":[{"k":[21478],"v":[{"k":[19968],"v":[{"k":[36724],"v":[{"k":[20195],"v":[{"k":[34920],"v":[{"k":[23545],"v":[{"k":[24212],"v":[{"k":[30340],"v":[{"k":[21051],"v":[{"k":[24230],"v":[{"k":[20540],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[33324],"v":[{"k":[29992],"v":[{"k":[20110],"v":[{"k":[27491],"v":[{"k":[36127],"v":[{"k":[20004],"v":[{"k":[20221],"v":[{"k":[30456],"v":[{"k":[21453],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[12290],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19968],"v":[{"k":[21608],"v":[{"k":[20869],"v":[{"k":[20010],"v":[{"k":[20154],"v":[{"k":[25910],"v":[{"k":[20837],"v":[{"k":[21644],"v":[{"k":[25903],"v":[{"k":[20986],"v":[{"k":[30340],"v":[{"k":[32479],"v":[{"k":[35745],"v":[{"k":[65292],"v":[{"k":[20854],"v":[{"k":[20013],"v":[{"k":[25910],"v":[{"k":[20837],"v":[{"k":[20026],"v":[{"k":[27491],"v":[{"k":[25968],"v":[{"k":[65292],"v":[{"k":[25903],"v":[{"k":[20986],"v":[{"k":[20026],"v":[{"k":[36127],"v":[{"k":[25968],"v":[{"k":[12290],"v":[{"k":[20351],"v":[{"k":[29992],"v":[{"k":[21452],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[21487],"v":[{"k":[20197],"v":[{"k":[24456],"v":[{"k":[26126],"v":[{"k":[30830],"v":[{"k":[30340],"v":[{"k":[23545],"v":[{"k":[25910],"v":[{"k":[20837],"v":[{"k":[21644],"v":[{"k":[25903],"v":[{"k":[20986],"v":[{"k":[20570],"v":[{"k":[20986],"v":[{"k":[23545],"v":[{"k":[27604],"v":[{"k":[65292],"v":[{"k":[24182],"v":[{"k":[33021],"v":[{"k":[20174],"v":[{"k":[21333],"v":[{"k":[20010],"v":[{"k":[31995],"v":[{"k":[21015],"v":[{"k":[20013],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[25910],"v":[{"k":[20837],"v":[{"k":[21644],"v":[{"k":[25903],"v":[{"k":[20986],"v":[{"k":[30340],"v":[{"k":[25968],"v":[{"k":[20540],"v":[{"k":[21450],"v":[{"k":[27874],"v":[{"k":[21160],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[20998],"v":[{"k":[20026],"v":[{"k":[22402],"v":[{"k":[30452],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"k":[30340],"v":[{"k":[21452],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[22914],"v":[{"k":[19978],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[21644],"v":[{"k":[27700],"v":[{"k":[24179],"v":[{"k":[26041],"v":[{"k":[21521],"v":[{"k":[30340],"v":[{"k":[21452],"v":[{"k":[21521],"v":[{"k":[26609],"v":[{"k":[29366],"v":[{"k":[22270],"v":[{"k":[65288],"v":[{"k":[21448],"v":[{"k":[21483],"v":[{"k":[27491],"v":[{"k":[36127],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[22914],"v":[{"k":[19979],"v":[{"k":[22270],"v":[{"k":[65289],"v":[{"k":[65292],"v":[{"k":[20363],"v":[{"k":[22914],"v":[{"k":[19968],"v":[{"k":[20010],"v":[{"k":[23458],"v":[{"k":[25143],"v":[{"k":[28385],"v":[{"k":[24847],"v":[{"k":[24230],"v":[{"k":[30340],"v":[{"k":[35843],"v":[{"k":[26597],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[26512],"v":[{"k":[20013],"v":[{"k":[65292],"v":[{"k":[26377],"v":[{"k":[27491],"v":[{"k":[38754],"v":[{"k":[35780],"v":[{"k":[20215],"v":[{"k":[21644],"v":[{"k":[36127],"v":[{"k":[38754],"v":[{"k":[35780],"v":[{"k":[20215],"v":[{"k":[65292],"v":[{"k":[36825],"v":[{"k":[24456],"v":[{"k":[36866],"v":[{"k":[21512],"v":[{"k":[29992],"v":[{"k":[27491],"v":[{"k":[36127],"v":[{"k":[26465],"v":[{"k":[24418],"v":[{"k":[22270],"v":[{"k":[65292],"v":[{"k":[25152],"v":[{"k":[26377],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[22312],"v":[{"k":[20013],"v":[{"k":[38388],"v":[{"k":[23545],"v":[{"k":[40784],"v":[{"k":[65292],"v":[{"k":[27491],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[35780],"v":[{"k":[20215],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[22312],"v":[{"k":[21491],"v":[{"k":[20391],"v":[{"k":[65292],"v":[{"k":[36127],"v":[{"k":[38754],"v":[{"k":[30340],"v":[{"k":[35780],"v":[{"k":[20215],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[20998],"v":[{"k":[24067],"v":[{"k":[22312],"v":[{"k":[24038],"v":[{"k":[20391],"v":[{"k":[12290],"v":[{"d":{"df":1,"dc":[[128,1]]}}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]}]},{"k":[30456],"v":[{"k":[20851],"v":[{"k":[65306],"v":[{"k":[25968],"v":[{"k":[25454],"v":[{"k":[28857],"v":[{"k":[20174],"v":[{"k":[39640],"v":[{"d":{"df":1,"dc":[[130,1]]}}]}]}]}]}]}]}]}]}]}}}}}],"databaseVersion":1.5,"engineVersion":1.5,"filename":"content.db","_persistenceAdapter":null,"_persistenceMethod":null,"_throttledSaves":true}