commit 76b363eb67b75f71533a4ab7af8f9fd38be791b0 Author: YuxinLi1 Date: Thu Jan 28 15:02:46 2021 +0800 1st cmt diff --git a/README.md b/README.md new file mode 100644 index 0000000..1e0b224 --- /dev/null +++ b/README.md @@ -0,0 +1,316 @@ +# vscode-oj + +# 部署 + +## 一、基础配置 + +Ubuntu 20.04 + +由于前端中安装了自己编写的VScode插件,其中的后端服务器IP是直接写在插件的代码中的,所以如果后端IP地址发生了变化的话需要重新编译打包插件,因此对于前端和后端可以单独验证。 + +从前端镜像创建好云主机后可以从浏览器打开 `http://:8080` 访问code-server和使用我们开发的插件,此时插件访问的还是我们自己配置的后端。 + +对于后端的话,根据后端镜像创建好云主机后需要修改 `/etc/nginx/sites-available/be` 中的 `server_name` 为后端云主机的IP地址,然后可以在浏览器中输入 `http:///get-problem-items/` 或者 `http:///get-problem-description/<题目id: 1~400>/` 进行测试,只有这两个是GET请求,其他的接口是 POST 请求。 + +POST请求接口 + +1.`http:///case_test/` + +|变量|值| +|:---:|:---:| +|pid|1到400的数字字符串| +|code|string| + +2.`http:///check-logic-error/` + +|变量|值| +|:---:|:---:| +|pid|1到400的数字字符串| +|code|string| + +3.`http:///submit/` + +|变量|值| +|:---:|:---:| +|pid|1到400的数字字符串| +|code|string| + + +## 二、数据库配置 + +创建 Mysql 云数据库,执行 `be/SQL/problem.sql` 中的sql语句,并修改 `be/app.py` 中的配置为相应的数据库信息。 + + + +## 三、服务端配置 + +### 2.1 安装Python3.7 + +```shell +# 升级包索引和软件 +sudo apt update +sudo apt upgrade -y + +# 安装编译所需包 +sudo apt install -y build-essential zlib1g-dev libbz2-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget + +# 官网下载 Python3.7 +wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz + +# 解压 +tar -xzvf Python-3.7.4.tgz + +# 编译安装 +cd Python-3.7.4 +./configure --prefix=/usr/lib/python3.7 # 配置安装位置 +sudo make +sudo make install + +# 建立软链接 +sudo ln -s /usr/lib/python3.7/bin/python3.7 /usr/bin/python3.7 +sudo ln -s /usr/lib/python3.7/bin/pip3.7 /usr/bin/pip3.7 +``` + + + +### 2.2 安装JDK-11 + +```shell +sudo apt update +# 安装 JDK-11 +sudo apt install -y openjdk-11-jdk + +# 查看是否安装成功 +java -version + +# 配置环境变量 +sudo nano /etc/environment + +# 写入: +JAVA_HOME="/usr/lib/jvm/java-11-openjdk-amd64" + +# 更新 +source /etc/environment + +# 查看 +echo $JAVA_HOME +``` + + + +### 2.3 安装Nginx + +```shell +sudo apt-get install -y nginx + +# 启动 +sudo /etc/init.d/nginx start + +# 使用以下命令重启、停止、查看Nginx状态 +sudo systemctl restart nginx +sudo systemctl start nginx +sudo systemctl stop nginx +sudo systemctl status nginx +``` + + + +### 2.4 创建Python虚拟环境 + +```shell +# 更新并安装组件 +sudo apt update +sudo apt install -y python3-pip python3-dev build-essential libssl-dev libffi-dev python3-setuptools + +# 安装 python3-venv 软件包 +sudo apt install -y python3-venv + +# 创建虚拟环境 +cd ~ +python3.7 -m venv be + +# 将 be 文件夹中的文件上传至云主机 ~/be 下 + +# 激活虚拟环境 +source ~/be/bin/activate + +# 安装依赖(注意使用pip而不是pip3) +cd ~/be +pip install -r requirements.txt + +# 安装 uWSGI +pip install uwsgi +``` + + + +### 2.5 配置 uWSGI + +```shell +# 启用 UFW 防火墙,允许访问端口5000 +sudo ufw allow 5000 + +# 测试 uWSGI 服务(若本地开启了代理请关闭) +uwsgi --socket 0.0.0.0:5000 --protocol=http -w wsgi:app + +# 从本地浏览器输入 http://:5000/get-problem-items/ 能够返回数据即表示成功 + +# 现在可以关闭虚拟环境 +deactivate + +# 创建 uWSGI 配置文件 +nano ~be/be.ini + +# 写入如下内容 +[uwsgi] +module = wsgi:app + +master = true +processes = 5 + +socket = be.sock +chmod-socket = 660 +vacuum = true + +die-on-term = true +# 保存并关闭 +``` + + + +### 2.6 创建 systemd 单元文件 + +```shell +sudo nano /etc/systemd/system/be.service + +# 写入如下内容 +[Unit] +Description=uWSGI instance to serve be +After=network.target + +[Service] +User=ubuntu +Group=www-data +WorkingDirectory=/home/ubuntu/be +Environment="PATH=/home/ubuntu/be/bin" +ExecStart=/home/ubuntu/be/bin/uwsgi --ini be.ini + +[Install] +WantedBy=multi-user.target +# 保存并关闭 + +# 现在可以启动创建的 uWSGI 服务并启用,以便在启动时启动 +sudo systemctl start be +sudo systemctl enable be + +# 查看状态 +sudo systemctl status be +``` + + + +### 2.7 将 Nginx 配置为代理请求 + +```shell +sudo nano /etc/nginx/sites-available/be + +# 写入 +server { + listen 80; + server_name <公网IP,服务端外网IP或者负载均衡外网IP>; + + location / { + include uwsgi_params; + uwsgi_pass unix:/home/ubuntu/be/be.sock; + } +} +# 保存并关闭 + +# 若要启用该配置,需将文件链接至 sites-enabled 目录 +sudo ln -s /etc/nginx/sites-available/be /etc/nginx/sites-enabled + +# 通过如下命令测试语法错误 +sudo nginx -t + +# 返回成功则重启 Nginx 进程以读取新配置 +sudo systemctl restart nginx + +# 再次调整防火墙,不再需要通过5000端口访问,可以删除该规则,最后可以允许访问Nginx服务器 +sudo ufw delete allow 5000 +sudo ufw allow 'Nginx Full' + +# 现在可以直接通过 IP 地址访问 +# 尝试 http:///get-problem-items/ + +# 遇到错误使用如下方式检查 +sudo less /var/log/nginx/error.log # 检查Nginx错误日志 +sudo less /var/log/nginx/access.log # 检查Nginx访问日志 +sudo journalctl -u nginx # 检查Nginx进程日志 +sudo journalctl -u be # 检查你的Flask应用程序的uWSGI日志 +``` + + + +## 四、前端配置 + +> 新建一台云主机 + +### 4.1 code-server 安装配置 + +```shell +curl -fOL https://github.com/cdr/code-server/releases/download/v3.8.0/code-server_3.8.0_amd64.deb +sudo dpkg -i code-server_3.8.0_amd64.deb + +# 启动服务 +sudo systemctl enable --now code-server@$USER +``` + +打开~/.config/code-server/config.yaml + +修改bind-addr: 0.0.0.0:8080,以便在浏览器中访问云主机的8080端口来访问code-server。也可以指定其他的端口。同时修改password为可记忆的密码方便后续访问。随后重启服务。 + +```shell +sudo systemctl restart --now code-server@$USER +``` + +浏览器访问云主机ip:8080,并输入密码,即可使用在线VSCode编辑器。 + + + +### 4.2 插件的编译安装(可在本地安装编译并上传到云主机) + +```shell +# 安装 node.js、npm +sudo apt update +sudo apt install nodejs npm + +# 查看是否成功 +nodejs --version +npm --version + +# 安装 typescript +npm install -g typescript + +# 查看是否成功 +tsc -v + +# 安装脚手架 +npm install -g yo generator-code + +# 进入 ShuiShan 目录 +cd ShuiShan + +# 修改 ShuiShan/src/service.ts 第七行 domain 变量为后端服务器地址**** + +# 安装依赖 +npm install + +# 打包 +vsce package + +# 上传到前端服务器,将生成的 .vsix 文件上传至前端服务器 +# 在 code-server 中安装该插件包 +# 如果不想上传至云端可在本地使用 VScode 打开 ShuiShan 目录然后按 F5 运行 +``` + + diff --git a/README1.md b/README1.md new file mode 100644 index 0000000..edc994b --- /dev/null +++ b/README1.md @@ -0,0 +1,68 @@ +# ShuiShan README + +This is the README for your extension "ShuiShan". After writing up a brief description, we recommend including the following sections. + +## Features + +Describe specific features of your extension including screenshots of your extension in action. Image paths are relative to this README file. + +For example if there is an image subfolder under your extension project workspace: + +\!\[feature X\]\(images/feature-x.png\) + +> Tip: Many popular extensions utilize animations. This is an excellent way to show off your extension! We recommend short, focused animations that are easy to follow. + +## Requirements + +If you have any requirements or dependencies, add a section describing those and how to install and configure them. + +## Extension Settings + +Include if your extension adds any VS Code settings through the `contributes.configuration` extension point. + +For example: + +This extension contributes the following settings: + +* `myExtension.enable`: enable/disable this extension +* `myExtension.thing`: set to `blah` to do something + +## Known Issues + +Calling out known issues can help limit users opening duplicate issues against your extension. + +## Release Notes + +Users appreciate release notes as you update your extension. + +### 1.0.0 + +Initial release of ... + +### 1.0.1 + +Fixed issue #. + +### 1.1.0 + +Added features X, Y, and Z. + +----------------------------------------------------------------------------------------------------------- + +## Working with Markdown + +**Note:** You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts: + +* Split the editor (`Cmd+\` on macOS or `Ctrl+\` on Windows and Linux) +* Toggle preview (`Shift+CMD+V` on macOS or `Shift+Ctrl+V` on Windows and Linux) +* Press `Ctrl+Space` (Windows, Linux) or `Cmd+Space` (macOS) to see a list of Markdown snippets + +### For more information + +* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown) +* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/) + +**Enjoy!** + +## 水杉编程 + diff --git a/ShuiShan/.eslintrc.json b/ShuiShan/.eslintrc.json new file mode 100644 index 0000000..4d54b63 --- /dev/null +++ b/ShuiShan/.eslintrc.json @@ -0,0 +1,19 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 6, + "sourceType": "module" + }, + "plugins": [ + "@typescript-eslint" + ], + "rules": { + "@typescript-eslint/naming-convention": "warn", + "@typescript-eslint/semi": "warn", + "curly": "warn", + "eqeqeq": "warn", + "no-throw-literal": "warn", + "semi": "off" + } +} diff --git a/ShuiShan/.gitignore b/ShuiShan/.gitignore new file mode 100644 index 0000000..0b60dfa --- /dev/null +++ b/ShuiShan/.gitignore @@ -0,0 +1,5 @@ +out +dist +node_modules +.vscode-test/ +*.vsix diff --git a/ShuiShan/.vscode/extensions.json b/ShuiShan/.vscode/extensions.json new file mode 100644 index 0000000..f67441f --- /dev/null +++ b/ShuiShan/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "dbaeumer.vscode-eslint", + "eamodio.tsl-problem-matcher", + "yuxinli.shuishan" + ] +} diff --git a/ShuiShan/.vscode/launch.json b/ShuiShan/.vscode/launch.json new file mode 100644 index 0000000..3bb6aee --- /dev/null +++ b/ShuiShan/.vscode/launch.json @@ -0,0 +1,34 @@ +// A launch configuration that compiles the extension and then opens it inside a new window +// Use IntelliSense to learn about possible attributes. +// Hover to view descriptions of existing attributes. +// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Run Extension", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/dist/**/*.js" + ], + "preLaunchTask": "${defaultBuildTask}" + }, + { + "name": "Extension Tests", + "type": "extensionHost", + "request": "launch", + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}", + "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" + ], + "outFiles": [ + "${workspaceFolder}/out/test/**/*.js" + ], + "preLaunchTask": "npm: test-watch" + } + ] +} diff --git a/ShuiShan/.vscode/settings.json b/ShuiShan/.vscode/settings.json new file mode 100644 index 0000000..30bf8c2 --- /dev/null +++ b/ShuiShan/.vscode/settings.json @@ -0,0 +1,11 @@ +// Place your settings in this file to overwrite default and user settings. +{ + "files.exclude": { + "out": false // set this to true to hide the "out" folder with the compiled JS files + }, + "search.exclude": { + "out": true // set this to false to include "out" folder in search results + }, + // Turn off tsc task auto detection since we have the necessary tasks as npm scripts + "typescript.tsc.autoDetect": "off" +} \ No newline at end of file diff --git a/ShuiShan/.vscode/tasks.json b/ShuiShan/.vscode/tasks.json new file mode 100644 index 0000000..136cbbc --- /dev/null +++ b/ShuiShan/.vscode/tasks.json @@ -0,0 +1,33 @@ +// See https://go.microsoft.com/fwlink/?LinkId=733558 +// for the documentation about the tasks.json format +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "watch", + "problemMatcher": [ + "$ts-webpack-watch", + "$tslint-webpack-watch" + ], + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "group": { + "kind": "build", + "isDefault": true + } + }, + { + "type": "npm", + "script": "test-watch", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "group": "build" + } + ] +} \ No newline at end of file diff --git a/ShuiShan/.vscodeignore b/ShuiShan/.vscodeignore new file mode 100644 index 0000000..12ce460 --- /dev/null +++ b/ShuiShan/.vscodeignore @@ -0,0 +1,11 @@ +.vscode/** +.vscode-test/** +out/** +src/** +.gitignore +.yarnrc +vsc-extension-quickstart.md +**/tsconfig.json +**/.eslintrc.json +**/*.map +**/*.ts diff --git a/ShuiShan/CHANGELOG.md b/ShuiShan/CHANGELOG.md new file mode 100644 index 0000000..96ad8c2 --- /dev/null +++ b/ShuiShan/CHANGELOG.md @@ -0,0 +1,9 @@ +# Change Log + +All notable changes to the "ShuiShan" extension will be documented in this file. + +Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. + +## [Unreleased] + +- Initial release \ No newline at end of file diff --git a/ShuiShan/README.md b/ShuiShan/README.md new file mode 100644 index 0000000..a21b2bf --- /dev/null +++ b/ShuiShan/README.md @@ -0,0 +1 @@ +# 水杉编程 v1.0 diff --git a/ShuiShan/build/node-extension.webpack.config.js b/ShuiShan/build/node-extension.webpack.config.js new file mode 100644 index 0000000..d1b2236 --- /dev/null +++ b/ShuiShan/build/node-extension.webpack.config.js @@ -0,0 +1,42 @@ +//@ts-check + +'use strict'; + +const path = require('path'); + +/**@type {import('webpack').Configuration}*/ +const config = { + target: 'node', // vscode extensions run in a Node.js-context 📖 -> https://webpack.js.org/configuration/node/ + mode: 'none', // this leaves the source code as close as possible to the original (when packaging we set this to 'production') + + entry: './src/extension.ts', // the entry point of this extension, 📖 -> https://webpack.js.org/configuration/entry-context/ + output: { + // the bundle is stored in the 'dist' folder (check package.json), 📖 -> https://webpack.js.org/configuration/output/ + path: path.resolve(__dirname, '..', 'dist'), + filename: 'extension.js', + libraryTarget: 'commonjs2', + devtoolModuleFilenameTemplate: '../[resource-path]' + }, + devtool: 'source-map', + externals: { + vscode: 'commonjs vscode' // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/ + }, + resolve: { + // support reading TypeScript and JavaScript files, 📖 -> https://github.com/TypeStrong/ts-loader + extensions: ['.ts', '.js'] + }, + module: { + rules: [ + { + test: /\.ts$/, + exclude: /node_modules/, + use: [ + { + loader: 'ts-loader' + } + ] + } + ] + } +}; +module.exports = config; \ No newline at end of file diff --git a/ShuiShan/images/shuishan.png b/ShuiShan/images/shuishan.png new file mode 100644 index 0000000..b0f487c Binary files /dev/null and b/ShuiShan/images/shuishan.png differ diff --git a/ShuiShan/package-lock.json b/ShuiShan/package-lock.json new file mode 100644 index 0000000..8626e10 --- /dev/null +++ b/ShuiShan/package-lock.json @@ -0,0 +1,5438 @@ +{ + "name": "ShuiShan", + "version": "0.0.1", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "@eslint/eslintrc": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "dev": true + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "dev": true, + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "dev": true, + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "@types/json-schema": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz", + "integrity": "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==", + "dev": true + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true + }, + "@types/mocha": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.0.tgz", + "integrity": "sha512-/Sge3BymXo4lKc31C8OINJgXLaw+7vL1/L1pGiBNpGrBiT8FQiaFpSYV0uhTaG4y78vcMBTMFsWaHDvuD+xGzQ==", + "dev": true + }, + "@types/node": { + "version": "12.19.12", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.19.12.tgz", + "integrity": "sha512-UwfL2uIU9arX/+/PRcIkT08/iBadGN2z6ExOROA2Dh5mAuWTBj6iJbQX4nekiV5H8cTrEG569LeX+HRco9Cbxw==", + "dev": true + }, + "@types/vscode": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.52.0.tgz", + "integrity": "sha512-Kt3bvWzAvvF/WH9YEcrCICDp0Z7aHhJGhLJ1BxeyNP6yRjonWqWnAIh35/pXAjswAnWOABrYlF7SwXR9+1nnLA==", + "dev": true + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.12.0.tgz", + "integrity": "sha512-wHKj6q8s70sO5i39H2g1gtpCXCvjVszzj6FFygneNFyIAxRvNSVz9GML7XpqrB9t7hNutXw+MHnLN/Ih6uyB8Q==", + "dev": true, + "requires": { + "@typescript-eslint/experimental-utils": "4.12.0", + "@typescript-eslint/scope-manager": "4.12.0", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.12.0.tgz", + "integrity": "sha512-MpXZXUAvHt99c9ScXijx7i061o5HEjXltO+sbYfZAAHxv3XankQkPaNi5myy0Yh0Tyea3Hdq1pi7Vsh0GJb0fA==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.12.0", + "@typescript-eslint/types": "4.12.0", + "@typescript-eslint/typescript-estree": "4.12.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.12.0.tgz", + "integrity": "sha512-9XxVADAo9vlfjfoxnjboBTxYOiNY93/QuvcPgsiKvHxW6tOZx1W4TvkIQ2jB3k5M0pbFP5FlXihLK49TjZXhuQ==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "4.12.0", + "@typescript-eslint/types": "4.12.0", + "@typescript-eslint/typescript-estree": "4.12.0", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.12.0.tgz", + "integrity": "sha512-QVf9oCSVLte/8jvOsxmgBdOaoe2J0wtEmBr13Yz0rkBNkl5D8bfnf6G4Vhox9qqMIoG7QQoVwd2eG9DM/ge4Qg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.12.0", + "@typescript-eslint/visitor-keys": "4.12.0" + } + }, + "@typescript-eslint/types": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.12.0.tgz", + "integrity": "sha512-N2RhGeheVLGtyy+CxRmxdsniB7sMSCfsnbh8K/+RUIXYYq3Ub5+sukRCjVE80QerrUBvuEvs4fDhz5AW/pcL6g==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.12.0.tgz", + "integrity": "sha512-gZkFcmmp/CnzqD2RKMich2/FjBTsYopjiwJCroxqHZIY11IIoN0l5lKqcgoAPKHt33H2mAkSfvzj8i44Jm7F4w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.12.0", + "@typescript-eslint/visitor-keys": "4.12.0", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.12.0.tgz", + "integrity": "sha512-hVpsLARbDh4B9TKYz5cLbcdMIOAoBYgFPCSP9FFS/liSF+b33gVNq8JHY3QGhHNVz85hObvL7BEYLlgx553WCw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "4.12.0", + "eslint-visitor-keys": "^2.0.0" + } + }, + "@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dev": true, + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "dev": true + }, + "agent-base": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz", + "integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==", + "dev": true, + "requires": { + "es6-promisify": "^5.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true, + "optional": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "axios": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz", + "integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==", + "requires": { + "follow-redirects": "^1.10.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz", + "integrity": "sha512-1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==", + "dev": true + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "dev": true + }, + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dev": true, + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "dev": true, + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "~1.0.5" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dev": true, + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dev": true, + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "chokidar": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz", + "integrity": "sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==", + "dev": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.1.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, + "requires": { + "tslib": "^1.9.0" + } + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "dev": true, + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==", + "dev": true + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "dev": true + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "requires": { + "path-type": "^4.0.0" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "elliptic": { + "version": "6.5.3", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz", + "integrity": "sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==", + "dev": true, + "requires": { + "bn.js": "^4.4.0", + "brorand": "^1.0.1", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.0" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "dev": true + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz", + "integrity": "sha512-3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "requires": { + "prr": "~1.0.1" + } + }, + "es6-promise": { + "version": "4.2.8", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz", + "integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==", + "dev": true + }, + "es6-promisify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz", + "integrity": "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM=", + "dev": true, + "requires": { + "es6-promise": "^4.0.3" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.17.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz", + "integrity": "sha512-zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.2.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", + "dev": true + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-glob": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz", + "integrity": "sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==", + "dev": true, + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "fastq": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz", + "integrity": "sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA==", + "dev": true, + "requires": { + "reusify": "^1.0.4" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "dev": true + }, + "file-entry-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "dependencies": { + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + } + }, + "flatted": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz", + "integrity": "sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz", + "integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==", + "dev": true, + "optional": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + }, + "dependencies": { + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "dependencies": { + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "dev": true, + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "growl": { + "version": "1.10.5", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz", + "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dev": true, + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "http-proxy-agent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.1.0.tgz", + "integrity": "sha512-qwHbBLV7WviBl0rQsOzH6o5lwyOIvwp/BdFnvVxXORldu5TmjFfjzBcWUWS5kWAZhmv+JtiDhSuQCp4sBfbIgg==", + "dev": true, + "requires": { + "agent-base": "4", + "debug": "3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "https-proxy-agent": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.4.tgz", + "integrity": "sha512-OmvfoQ53WLjtA9HeYP9RNrWMJzzAz1JGaSFr1nijg0PVR1JaD/xbJq1mdEIIlxGpXp9eSe/O2LgU9DJmTPd0Eg==", + "dev": true, + "requires": { + "agent-base": "^4.3.0", + "debug": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "dev": true + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + } + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "log-symbols": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.0.0.tgz", + "integrity": "sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA==", + "dev": true, + "requires": { + "chalk": "^4.0.0" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "dev": true + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "mocha": { + "version": "8.2.1", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-8.2.1.tgz", + "integrity": "sha512-cuLBVfyFfFqbNR0uUKbDGXKGk+UDFe6aR4os78XIrMQpZl/nv7JYHcvP5MFIAb374b2zFXsdgEGwmzMtP0Xg8w==", + "dev": true, + "requires": { + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.4.3", + "debug": "4.2.0", + "diff": "4.0.2", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.1.6", + "growl": "1.10.5", + "he": "1.2.0", + "js-yaml": "3.14.0", + "log-symbols": "4.0.0", + "minimatch": "3.0.4", + "ms": "2.1.2", + "nanoid": "3.1.12", + "serialize-javascript": "5.0.1", + "strip-json-comments": "3.1.1", + "supports-color": "7.2.0", + "which": "2.0.2", + "wide-align": "1.1.3", + "workerpool": "6.0.2", + "yargs": "13.3.2", + "yargs-parser": "13.1.2", + "yargs-unparser": "2.0.0" + }, + "dependencies": { + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nanoid": { + "version": "3.1.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.12.tgz", + "integrity": "sha512-1qstj9z5+x491jfiC4Nelk+f8XBad7LN20PmyWINJEMRSf3wcAjAWysw1qaA8z6NSKe2sjq1hRSDpBH5paCb6A==", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "dev": true + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dev": true, + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dev": true, + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true, + "optional": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "dev": true, + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + }, + "dependencies": { + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "dev": true + } + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true, + "optional": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "^3.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + } + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "dependencies": { + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + } + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "run-parallel": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==", + "dev": true + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "^1.1.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "^6.0.0" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + } + } + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "table": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", + "dev": true, + "requires": { + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ajv": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz", + "integrity": "sha512-R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "dev": true, + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dev": true, + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "dependencies": { + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dev": true, + "requires": { + "setimmediate": "^1.0.4" + } + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "ts-loader": { + "version": "8.0.14", + "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-8.0.14.tgz", + "integrity": "sha512-Jt/hHlUnApOZjnSjTmZ+AbD5BGlQFx3f1D0nYuNKwz0JJnuDGHJas6az+FlWKwwRTu+26GXpv249A8UAnYUpqA==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "enhanced-resolve": "^4.0.0", + "loader-utils": "^2.0.0", + "micromatch": "^4.0.0", + "semver": "^7.3.4" + } + }, + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "tsutils": { + "version": "3.19.1", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.19.1.tgz", + "integrity": "sha512-GEdoBf5XI324lu7ycad7s6laADfnAqCw6wLGI+knxvw9vsIYBaJfYdmeCEG3FMMUiSm3OGgNb+m6utsWf5h9Vw==", + "dev": true, + "requires": { + "tslib": "^1.8.1" + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "typescript": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz", + "integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "optional": true + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", + "dev": true + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "dev": true + }, + "vscode-test": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/vscode-test/-/vscode-test-1.4.1.tgz", + "integrity": "sha512-Ls7+JyC06cUCuomlTYk4aNJI00Rri09hgtkNl3zfQ1bj6meXglpSPpuzJ/RPNetlUHFMm4eGs0Xr/H5pFPVwfQ==", + "dev": true, + "requires": { + "http-proxy-agent": "^2.1.0", + "https-proxy-agent": "^2.2.4", + "rimraf": "^2.6.3" + }, + "dependencies": { + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dev": true, + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "dev": true, + "optional": true, + "requires": { + "chokidar": "^2.1.8" + }, + "dependencies": { + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "optional": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "optional": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "optional": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "optional": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "optional": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "optional": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "optional": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "optional": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "optional": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "optional": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "optional": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "optional": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "optional": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "optional": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "optional": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack": { + "version": "4.45.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.45.0.tgz", + "integrity": "sha512-JhDaVi4CbRcwLLAoqC7eugMSMJnZbIfE2AyjaZ19pnOIh/R2O/lXOiXA2tQFN0iXEcxgpPJsPJHW2wOWqiTLcw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "dev": true + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + } + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + } + } + }, + "webpack-cli": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.12.tgz", + "integrity": "sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag==", + "dev": true, + "requires": { + "chalk": "^2.4.2", + "cross-spawn": "^6.0.5", + "enhanced-resolve": "^4.1.1", + "findup-sync": "^3.0.0", + "global-modules": "^2.0.0", + "import-local": "^2.0.0", + "interpret": "^1.4.0", + "loader-utils": "^1.4.0", + "supports-color": "^6.1.0", + "v8-compile-cache": "^2.1.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "dev": true, + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dev": true, + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "wide-align": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", + "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", + "dev": true, + "requires": { + "string-width": "^1.0.2 || 2" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "~0.1.7" + } + }, + "workerpool": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.0.2.tgz", + "integrity": "sha512-DSNyvOpFKrNusaaUwk+ej6cBj1bmhLcBfj80elGk+ZIo5JSkq+unB1dLKEOcNfJDZgjGICfhQ0Q5TbP0PvF4+Q==", + "dev": true + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "dev": true, + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "dev": true + }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true + } + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/ShuiShan/package.json b/ShuiShan/package.json new file mode 100644 index 0000000..e5a7374 --- /dev/null +++ b/ShuiShan/package.json @@ -0,0 +1,104 @@ +{ + "name": "ShuiShan", + "publisher": "yuxinli", + "displayName": "ShuiShan", + "description": "online code", + "version": "0.0.1", + "icon": "images/shuishan.png", + "engines": { + "vscode": "^1.51.1" + }, + "categories": [ + "Other" + ], + "activationEvents": [ + "onView:view.shuishan", + "onCommand:ShuiShan.click", + "onCommand:ShuiShan.helloWorld", + "onCommand:ShuiShan.solveProblem", + "onCommand:ShuiShan.compileSolution", + "onCommand:ShuiShan.testSolution", + "onCommand:ShuiShan.checkSolution", + "onCommand:ShuiShan.submitSolution" + ], + "main": "./dist/extension.js", + "contributes": { + "viewsContainers": { + "activitybar": [ + { + "id":"shuishanView", + "title":"水杉编程", + "icon":"images/shuishan.png" + } + ] + }, + "views": { + "shuishanView":[ + { + "id":"view.shuishan", + "name":"Shuishan" + } + ] + }, + "commands": [ + { + "command": "ShuiShan.helloWorld", + "title": "Hello World" + }, + { + "command": "ShuiShan.click", + "title": "Show Problem" + }, + { + "command": "ShuiShan.solveProblem", + "title": "Solve Problem" + }, + { + "command": "ShuiShan.compileSolution", + "title": "Compile Solution" + }, + { + "command": "ShuiShan.testSolution", + "title": "Test Solution" + }, + { + "command": "ShuiShan.checkSolution", + "title": "Check Solution" + }, + { + "command": "ShuiShan.submitSolution", + "title": "Submit Solution" + } + ] + }, + "scripts": { + "vscode:prepublish": "npm run package", + "compile": "webpack --devtool nosources-source-map --config ./build/node-extension.webpack.config.js", + "watch": "webpack --watch --devtool nosources-source-map --info-verbosity verbose --config ./build/node-extension.webpack.config.js", + "package": "webpack --mode production --config ./build/node-extension.webpack.config.js", + "test-compile": "tsc -p ./", + "test-watch": "tsc -watch -p ./", + "pretest": "npm run test-compile && npm run lint", + "lint": "eslint src --ext ts", + "test": "node ./out/test/runTest.js" + }, + "devDependencies": { + "@types/vscode": "^1.51.0", + "@types/glob": "^7.1.3", + "@types/mocha": "^8.0.0", + "@types/node": "^12.11.7", + "eslint": "^7.9.0", + "@typescript-eslint/eslint-plugin": "^4.1.1", + "@typescript-eslint/parser": "^4.1.1", + "glob": "^7.1.6", + "mocha": "^8.1.3", + "typescript": "^4.0.2", + "vscode-test": "^1.4.0", + "ts-loader": "^8.0.3", + "webpack": "^4.44.1", + "webpack-cli": "^3.3.12" + }, + "dependencies": { + "axios": "^0.21.1" + } +} diff --git a/ShuiShan/src/codelens/CodeLensController.ts b/ShuiShan/src/codelens/CodeLensController.ts new file mode 100644 index 0000000..d4d5e39 --- /dev/null +++ b/ShuiShan/src/codelens/CodeLensController.ts @@ -0,0 +1,24 @@ +// Copyright (c) jdneo. All rights reserved. +// Licensed under the MIT license. + +import { ConfigurationChangeEvent, Disposable, languages, workspace } from "vscode"; +import { customCodeLensProvider, CustomCodeLensProvider } from "./CustomCodeLensProvider"; + +class CodeLensController implements Disposable { + private internalProvider: CustomCodeLensProvider; + private registeredProvider: Disposable | undefined; + + constructor() { + this.internalProvider = customCodeLensProvider + + this.registeredProvider = languages.registerCodeLensProvider({ scheme: "file" }, this.internalProvider); + } + + public dispose(): void { + if (this.registeredProvider) { + this.registeredProvider.dispose(); + } + } +} + +export const codeLensController: CodeLensController = new CodeLensController(); diff --git a/ShuiShan/src/codelens/CustomCodeLensProvider.ts b/ShuiShan/src/codelens/CustomCodeLensProvider.ts new file mode 100644 index 0000000..09e7eba --- /dev/null +++ b/ShuiShan/src/codelens/CustomCodeLensProvider.ts @@ -0,0 +1,94 @@ +// Copyright (c) jdneo. All rights reserved. +// Licensed under the MIT license. + +import * as vscode from "vscode"; +// import { explorerNodeManager } from "../explorer/explorerNodeManager"; +// import { LeetCodeNode } from "../explorer/LeetCodeNode"; +// import { getEditorShortcuts } from "../utils/settingUtils"; + +export class CustomCodeLensProvider implements vscode.CodeLensProvider { + + private onDidChangeCodeLensesEmitter: vscode.EventEmitter = new vscode.EventEmitter(); + + get onDidChangeCodeLenses(): vscode.Event { + return this.onDidChangeCodeLensesEmitter.event; + } + + public refresh(): void { + this.onDidChangeCodeLensesEmitter.fire(); + } + + public provideCodeLenses(document: vscode.TextDocument): vscode.ProviderResult { + // const shortcuts: string[] = getEditorShortcuts(); + // if (!shortcuts) { + // return; + // } + + // const content: string = document.getText(); + // const matchResult: RegExpMatchArray | null = content.match(/@lc app=.* id=(.*) lang=.*/); + // if (!matchResult) { + // return undefined; + // } + // const nodeId: string | undefined = matchResult[1]; + // let node: LeetCodeNode | undefined; + // if (nodeId) { + // node = explorerNodeManager.getNodeById(nodeId); + // } + + let codeLensLine: number = document.lineCount - 1; + // for (let i: number = document.lineCount - 1; i >= 0; i--) { + // const lineContent: string = document.lineAt(i).text; + // if (lineContent.indexOf("@lc code=end") >= 0) { + // codeLensLine = i; + // break; + // } + // } + + const range: vscode.Range = new vscode.Range(codeLensLine, 0, codeLensLine, 0); + const codeLens: vscode.CodeLens[] = []; + + // if (shortcuts.indexOf("submit") >= 0) { + codeLens.push(new vscode.CodeLens(range, { + title: "编译", + command: "ShuiShan.compileSolution", + arguments: [document.uri], + })); + // } + + // if (shortcuts.indexOf("test") >= 0) { + codeLens.push(new vscode.CodeLens(range, { + title: "执行", + command: "ShuiShan.testSolution", + arguments: [document.uri], + })); + // } + + // if (shortcuts.indexOf("star") >= 0 && node) { + codeLens.push(new vscode.CodeLens(range, { + title: "错误预测", + command: "ShuiShan.checkSolution", + arguments: [document.uri], + })); + // } + + // if (shortcuts.indexOf("solution") >= 0) { + codeLens.push(new vscode.CodeLens(range, { + title: "提交", + command: "ShuiShan.submitSolution", + arguments: [document.uri], + })); + // } + + // if (shortcuts.indexOf("description") >= 0) { + // codeLens.push(new vscode.CodeLens(range, { + // title: "Description", + // command: "leetcode.previewProblem", + // arguments: [document.uri], + // })); + // } + + return codeLens; + } +} + +export const customCodeLensProvider: CustomCodeLensProvider = new CustomCodeLensProvider(); diff --git a/ShuiShan/src/extension.ts b/ShuiShan/src/extension.ts new file mode 100644 index 0000000..84d0737 --- /dev/null +++ b/ShuiShan/src/extension.ts @@ -0,0 +1,203 @@ +// The module 'vscode' contains the VS Code extensibility API +// Import the module and reference it with the alias vscode in your code below +import * as vscode from 'vscode'; +import * as os from "os"; +import * as path from "path"; +import { commands, Disposable } from "vscode"; +import { writeFileSync } from 'fs'; +import * as fs from 'fs'; +import { APIService } from './service'; +import { ShuishanDataProvider } from './shuishanDataProvider'; +import { codeLensController } from './codelens/CodeLensController'; +import { exec } from 'child_process'; + +// this method is called when your extension is activated +// your extension is activated the very first time the command is executed +export function activate(context: vscode.ExtensionContext) { + + // Use the console to output diagnostic information (console.log) and errors (console.error) + // This line of code will only be executed once when your extension is activated + console.log('Congratulations, your extension "ShuiShan" is now active!'); + + const service = new APIService(); + + // 绑定视图 + vscode.window.registerTreeDataProvider('view.shuishan', new ShuishanDataProvider(service)); + + // 输出窗口 + let outputChannel = vscode.window.createOutputChannel("ShuiShan Msg"); + outputChannel.show(); + + // 打开编辑器 + let openEditor = vscode.commands.registerCommand("ShuiShan.solveProblem", (pid) =>{ + // let path: string = ''; + // console.log(path); + let file_path = path.join(os.homedir(), ".shuishan"); + fs.mkdir(file_path, (err)=>{}); + let data: string = "#include " + "\n\n" + "int main()" + "\n" + "{" + "\n" + "\treturn 0;" + "\n" + "}\n\n"; + + let i = 1; + while(true){ + // path = '/home/liyuxin/.shuishan/' + pid + '-' + (i) + '.c'; + file_path = file_path + '/' + pid + '-' + (i) + '.c'; + console.log(file_path); + let stat:any = null; + try{ + stat = fs.statSync(file_path); + i++; + }catch(e){ + writeFileSync(file_path, data); + break; + } + } + let textEditor: vscode.TextEditor | undefined; + textEditor = vscode.window.activeTextEditor; + vscode.window.showTextDocument(vscode.Uri.file(file_path), { preview: false, viewColumn: vscode.ViewColumn.Two }); + }); + + // 显示题目详情 + let showProDes = vscode.commands.registerCommand('ShuiShan.click',(pid, title)=>{ + + let panel = vscode.window.createWebviewPanel( + "viewType", + "题目详情", + vscode.ViewColumn.One, + { + enableScripts: true + } + ); + + panel.webview.onDidReceiveMessage( + message => { + // console.log('a'); + switch (message.command) { + case "solveProblem": { + commands.executeCommand("ShuiShan.solveProblem", message.id); + break; + } + } + }, + undefined, + context.subscriptions + ); + + let body = service.getDes(pid); + body.then(result => { + + panel.title = pid + '. ' + title; + panel.webview.html = ` + + + + + + + + +
${String(result)}
+ + + `; + + // console.log(String(result)); + }); + + }); + + + let compile = vscode.commands.registerCommand('ShuiShan.compileSolution', (uri) =>{ + // console.log('compile' + uri); + let _input: string = uri.toString().substring(7); // remove file:// + let _output: string = _input.replace(".c", ""); + let cmd: string = "gcc -o " + _output + " " + _input; + exec(cmd, (error, stdout, stderr) => { + outputChannel.appendLine('Compile Message:'); + if (error) { + outputChannel.appendLine(`error: ${error.message}`); + return; + } + if (stderr) { + outputChannel.appendLine(`stderr: ${stderr}`); + return; + } + outputChannel.appendLine("Done!"); + }); + }); + + let test = vscode.commands.registerCommand('ShuiShan.testSolution', (uri) => { + // console.log('test' + uri); + let msg = service.testSolution(uri); + msg.then(result => { + outputChannel.appendLine(String(result)); + }); + }); + + let check = vscode.commands.registerCommand('ShuiShan.checkSolution', (uri) => { + // console.log('check' + uri); + let msg = service.checkSolution(uri); + msg.then(result => { + outputChannel.appendLine(String(result)); + }); + }); + + let submit = vscode.commands.registerCommand('ShuiShan.submitSolution', (uri) => { + // console.log('submit' + uri); + let msg = service.submitSolution(uri); + msg.then(result => { + outputChannel.appendLine(String(result)); + }); + }); + + + // The command has been defined in the package.json file + // Now provide the implementation of the command with registerCommand + // The commandId parameter must match the command field in package.json + let disposable = vscode.commands.registerCommand('ShuiShan.helloWorld', () => { + // The code you place here will be executed every time your command is executed + + // Display a message box to the user + vscode.window.showInformationMessage('Hello World from ShuiShan!'); + }); + + context.subscriptions.push( + disposable, + showProDes, + openEditor, + codeLensController, + compile, + test, + check, + submit + ); +} + +// this method is called when your extension is deactivated +export function deactivate() {} diff --git a/ShuiShan/src/resource/shuishan.svg b/ShuiShan/src/resource/shuishan.svg new file mode 100644 index 0000000..41850bc --- /dev/null +++ b/ShuiShan/src/resource/shuishan.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/ShuiShan/src/resource/shuishan1.svg b/ShuiShan/src/resource/shuishan1.svg new file mode 100644 index 0000000..b575dbc --- /dev/null +++ b/ShuiShan/src/resource/shuishan1.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/ShuiShan/src/resource/shuishan2.svg b/ShuiShan/src/resource/shuishan2.svg new file mode 100644 index 0000000..7b44c54 --- /dev/null +++ b/ShuiShan/src/resource/shuishan2.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/ShuiShan/src/resource/shuishan3.svg b/ShuiShan/src/resource/shuishan3.svg new file mode 100644 index 0000000..93b5f28 --- /dev/null +++ b/ShuiShan/src/resource/shuishan3.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShuiShan/src/service.ts b/ShuiShan/src/service.ts new file mode 100644 index 0000000..5f04edc --- /dev/null +++ b/ShuiShan/src/service.ts @@ -0,0 +1,93 @@ +import axios from "axios"; +import { readFileSync } from 'fs'; +import { ShuishanTreeItem } from "./shuishan"; + +export class APIService{ + private items:Array = [] + // private domain: string = "http://113.31.111.149"; + private domain: string = "http://127.0.0.1:5000"; + + async getPids():Promise>{ + const url = this.domain + "/get-problem-items/"; + const response = await axios.get(url,{ + headers:{ + 'content-type':"application/json" + } + }) + + for(let i=0; i < response.data.length; i++){ + const pid = { + pid:response.data[i].id, + title:response.data[i].title + } + // console.log(response.data.pids[i]) + this.items.push(new ShuishanTreeItem(pid)) + } + + return this.items; + } + + + async getDes(pid:string):Promise{ + const url = this.domain + `/get-problem-description/${pid}/`; + const response = await axios.get(url,{ + headers:{ + 'content-type':"text/plain" + } + }) + // console.log(response.data); + return response.data; + } + + async testSolution(filePath: string):Promise{ + filePath = filePath.toString().substring(7); + let code = readFileSync(filePath).toString(); + let pid:any = filePath.split('/'); + pid = pid[pid.length-1].split('.')[0]; + pid = pid.split('-')[0]; + const url = this.domain + "/case_test/" + const response = await axios.post(url,{ + headers:{ + 'content-type':"application/json" + }, + pid: pid, + code: code + }) + return response.data; + } + + async checkSolution(filePath: string):Promise{ + filePath = filePath.toString().substring(7); + let code = readFileSync(filePath).toString(); + let pid:any = filePath.split('/'); + pid = pid[pid.length-1].split('.')[0]; + pid = pid.split('-')[0]; + const url = this.domain + "/check-logic-error/" + const response = await axios.post(url,{ + headers:{ + 'content-type':"application/json" + }, + pid: pid, + code: code + }) + return response.data; + } + + async submitSolution(filePath: string):Promise{ + filePath = filePath.toString().substring(7); + let code = readFileSync(filePath).toString(); + let pid:any = filePath.split('/'); + pid = pid[pid.length-1].split('.')[0]; + pid = pid.split('-')[0]; + const url = this.domain + "/submit/" + const response = await axios.post(url,{ + headers:{ + 'content-type':"application/json" + }, + pid: pid, + code: code + }) + return response.data; + } + +} \ No newline at end of file diff --git a/ShuiShan/src/shuishan.ts b/ShuiShan/src/shuishan.ts new file mode 100644 index 0000000..be10049 --- /dev/null +++ b/ShuiShan/src/shuishan.ts @@ -0,0 +1,21 @@ +import { TreeItem, TreeItemCollapsibleState } from "vscode"; + +export interface Shuishan{ + pid:string; + title:string; +} + +export class ShuishanTreeItem extends TreeItem{ + constructor(info:Shuishan){ + super("",TreeItemCollapsibleState.None); + this.label = info.pid + ". " + info.title; + this.id = info.pid; + // this.description = ''; + // this.tooltip = ''; + this.command = { + title:"查看题目描述", + command:"ShuiShan.click", + arguments:[info.pid, info.title] + } + } +} \ No newline at end of file diff --git a/ShuiShan/src/shuishanDataProvider.ts b/ShuiShan/src/shuishanDataProvider.ts new file mode 100644 index 0000000..30e8b48 --- /dev/null +++ b/ShuiShan/src/shuishanDataProvider.ts @@ -0,0 +1,23 @@ +import { TreeView, TreeDataProvider } from "vscode"; +import { APIService } from "./service"; +import { Shuishan, ShuishanTreeItem } from "./shuishan"; + +export class ShuishanDataProvider implements TreeDataProvider { + private service: APIService; + + constructor(service:APIService){ + this.service = service + } + + getTreeItem(element: ShuishanTreeItem){ + return element; + } + + getChildren(element: ShuishanTreeItem){ + return this.service.getPids() + } + + getParent(element: ShuishanTreeItem){ + return null; + } +} \ No newline at end of file diff --git a/ShuiShan/src/test/runTest.ts b/ShuiShan/src/test/runTest.ts new file mode 100644 index 0000000..1eabfa3 --- /dev/null +++ b/ShuiShan/src/test/runTest.ts @@ -0,0 +1,23 @@ +import * as path from 'path'; + +import { runTests } from 'vscode-test'; + +async function main() { + try { + // The folder containing the Extension Manifest package.json + // Passed to `--extensionDevelopmentPath` + const extensionDevelopmentPath = path.resolve(__dirname, '../../'); + + // The path to test runner + // Passed to --extensionTestsPath + const extensionTestsPath = path.resolve(__dirname, './suite/index'); + + // Download VS Code, unzip it and run the integration test + await runTests({ extensionDevelopmentPath, extensionTestsPath }); + } catch (err) { + console.error('Failed to run tests'); + process.exit(1); + } +} + +main(); diff --git a/ShuiShan/src/test/suite/extension.test.ts b/ShuiShan/src/test/suite/extension.test.ts new file mode 100644 index 0000000..08a6f78 --- /dev/null +++ b/ShuiShan/src/test/suite/extension.test.ts @@ -0,0 +1,15 @@ +import * as assert from 'assert'; + +// You can import and use all API from the 'vscode' module +// as well as import your extension to test it +import * as vscode from 'vscode'; +// import * as myExtension from '../../extension'; + +suite('Extension Test Suite', () => { + vscode.window.showInformationMessage('Start all tests.'); + + test('Sample test', () => { + assert.equal(-1, [1, 2, 3].indexOf(5)); + assert.equal(-1, [1, 2, 3].indexOf(0)); + }); +}); diff --git a/ShuiShan/src/test/suite/index.ts b/ShuiShan/src/test/suite/index.ts new file mode 100644 index 0000000..7029e38 --- /dev/null +++ b/ShuiShan/src/test/suite/index.ts @@ -0,0 +1,38 @@ +import * as path from 'path'; +import * as Mocha from 'mocha'; +import * as glob from 'glob'; + +export function run(): Promise { + // Create the mocha test + const mocha = new Mocha({ + ui: 'tdd', + color: true + }); + + const testsRoot = path.resolve(__dirname, '..'); + + return new Promise((c, e) => { + glob('**/**.test.js', { cwd: testsRoot }, (err, files) => { + if (err) { + return e(err); + } + + // Add files to the test suite + files.forEach(f => mocha.addFile(path.resolve(testsRoot, f))); + + try { + // Run the mocha test + mocha.run(failures => { + if (failures > 0) { + e(new Error(`${failures} tests failed.`)); + } else { + c(); + } + }); + } catch (err) { + console.error(err); + e(err); + } + }); + }); +} diff --git a/ShuiShan/tsconfig.json b/ShuiShan/tsconfig.json new file mode 100644 index 0000000..b65c745 --- /dev/null +++ b/ShuiShan/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "outDir": "out", + "lib": [ + "es6" + ], + "sourceMap": true, + "rootDir": "src", + "strict": true /* enable all strict type-checking options */ + /* Additional Checks */ + // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ + // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ + // "noUnusedParameters": true, /* Report errors on unused parameters. */ + }, + "exclude": [ + "node_modules", + ".vscode-test" + ] +} diff --git a/be/PIPE/__init__.py b/be/PIPE/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/be/PIPE/__pycache__/__init__.cpython-37.pyc b/be/PIPE/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..c954a05 Binary files /dev/null and b/be/PIPE/__pycache__/__init__.cpython-37.pyc differ diff --git a/be/PIPE/__pycache__/config.cpython-37.pyc b/be/PIPE/__pycache__/config.cpython-37.pyc new file mode 100644 index 0000000..2116cdd Binary files /dev/null and b/be/PIPE/__pycache__/config.cpython-37.pyc differ diff --git a/be/PIPE/__pycache__/keras_attention_layer.cpython-37.pyc b/be/PIPE/__pycache__/keras_attention_layer.cpython-37.pyc new file mode 100644 index 0000000..de5b512 Binary files /dev/null and b/be/PIPE/__pycache__/keras_attention_layer.cpython-37.pyc differ diff --git a/be/PIPE/__pycache__/keras_model.cpython-37.pyc b/be/PIPE/__pycache__/keras_model.cpython-37.pyc new file mode 100644 index 0000000..bc1e67c Binary files /dev/null and b/be/PIPE/__pycache__/keras_model.cpython-37.pyc differ diff --git a/be/PIPE/__pycache__/main.cpython-37.pyc b/be/PIPE/__pycache__/main.cpython-37.pyc new file mode 100644 index 0000000..ef0535a Binary files /dev/null and b/be/PIPE/__pycache__/main.cpython-37.pyc differ diff --git a/be/PIPE/cli.jar b/be/PIPE/cli.jar new file mode 100644 index 0000000..cf0ef71 Binary files /dev/null and b/be/PIPE/cli.jar differ diff --git a/be/PIPE/codeData/outData/dict.npy b/be/PIPE/codeData/outData/dict.npy new file mode 100644 index 0000000..e6009bb Binary files /dev/null and b/be/PIPE/codeData/outData/dict.npy differ diff --git a/be/PIPE/codeData/outData/node_types.csv b/be/PIPE/codeData/outData/node_types.csv new file mode 100644 index 0000000..44c9599 --- /dev/null +++ b/be/PIPE/codeData/outData/node_types.csv @@ -0,0 +1,133 @@ +id,node_type +3,LOCAL DOWN +9,.assignment UP +52,.lessThan DOWN +61,ForStatement UP +128,.preDecrement DOWN +53,.computedMemberAccess UP +4,TYPE_FULL_NAME DOWN +60,GotoStatement UP +103,COMMENT DOWN +34,.equals UP +67,.lessEqualsThan UP +46,METHOD_PARAMETER_IN DOWN +94,ContinueStatement DOWN +16,BLOCK UP +72,.greaterEqualsThan DOWN +120,.assignmentDivision DOWN +132,TryStatement UP +43,WhileStatement DOWN +109,ConditionalExpression UP +69,BreakStatement DOWN +78,NAMESPACE_BLOCK DOWN +108,.logicalOr DOWN +82,TYPE_DECL DOWN +102,FILE DOWN +66,.division DOWN +114,.and UP +14,.addressOf DOWN +106,.assignmentMultiplication DOWN +26,.cast UP +80,MEMBER UP +21,METHOD UP +49,.greaterThan UP +96,RETURN UP +112,.preIncrement DOWN +110,ConditionalExpression DOWN +111,ALIAS_TYPE_FULL_NAME DOWN +12,CALL UP +23,.sizeOf DOWN +44,.minus UP +100,SwitchStatement DOWN +92,.indirection UP +124,.logicalNot UP +71,.greaterEqualsThan UP +17,BLOCK DOWN +105,.assignmentMultiplication UP +6,IDENTIFIER UP +15,LITERAL UP +33,.minus DOWN +11,CALL DOWN +28,CastTarget DOWN +122,.or DOWN +99,SwitchStatement UP +123,.logicalNot DOWN +41,.sizeOf UP +50,.greaterThan DOWN +37,IfStatement DOWN +116,ALIAS_TYPE_FULL_NAME UP +32,.notEquals DOWN +121,.or UP +25,CastTarget UP +119,.assignmentDivision UP +64,.postIncrement UP +63,.postIncrement DOWN +85,.memberAccess DOWN +31,.notEquals UP +58,.addition DOWN +7,IDENTIFIER DOWN +57,.addition UP +95,ContinueStatement UP +1,NAME UP +2,LOCAL UP +59,GotoStatement DOWN +56,.subtraction DOWN +75,.postDecrement DOWN +42,WhileStatement UP +36,IfStatement UP +84,.memberAccess UP +98,Label DOWN +125,.plus DOWN +8,NAME DOWN +77,NAMESPACE_BLOCK UP +10,.assignment DOWN +70,BreakStatement UP +87,.modulo DOWN +127,.preDecrement UP +54,.computedMemberAccess DOWN +104,COMMENT UP +73,.assignmentMinus UP +83,MEMBER DOWN +19,RETURN DOWN +113,.preIncrement UP +13,LITERAL DOWN +22,METHOD DOWN +18,.addressOf UP +65,.division UP +45,METHOD_PARAMETER_IN UP +90,.assignmentPlus UP +101,FILE UP +107,.logicalOr UP +93,.indirection DOWN +74,.assignmentMinus DOWN +27,.cast DOWN +30,.indirectMemberAccess DOWN +79,METHOD_RETURN DOWN +86,.modulo UP +129,.arithmeticShiftRight UP +131,TryStatement DOWN +47,.logicalAnd UP +91,.assignmentPlus DOWN +29,.indirectMemberAccess UP +48,.logicalAnd DOWN +117,DoStatement UP +81,TYPE_DECL UP +97,Label UP +5,TYPE_FULL_NAME UP +40,SizeofOperand UP +62,ForStatement DOWN +115,.and DOWN +89,.multiplication DOWN +130,.arithmeticShiftRight DOWN +55,.subtraction UP +76,.postDecrement UP +24,SizeofOperand DOWN +35,.equals DOWN +38,ElseStatement DOWN +88,.multiplication UP +68,.lessEqualsThan DOWN +51,.lessThan UP +118,DoStatement DOWN +20,METHOD_RETURN UP +39,ElseStatement UP +126,.plus UP diff --git a/be/PIPE/codeData/outData/paths.csv b/be/PIPE/codeData/outData/paths.csv new file mode 100644 index 0000000..5ac0277 --- /dev/null +++ b/be/PIPE/codeData/outData/paths.csv @@ -0,0 +1,26864 @@ +id,path +7890,1 6 90 16 42 16 17 11 8 +12530,5 6 65 49 61 62 75 7 4 +6136,15 12 36 16 17 37 48 50 7 4 +24481,1 6 53 71 47 36 37 10 7 4 +24482,1 6 53 71 47 36 37 10 7 8 +2964,15 53 16 17 11 8 +3127,5 6 12 16 17 37 35 7 8 +10036,5 6 64 61 62 17 11 85 54 7 8 +16847,5 6 9 9 9 9 9 16 17 10 7 8 +3128,5 6 12 16 17 37 35 7 4 +2965,15 53 16 17 11 13 +3848,5 6 64 61 62 17 11 85 54 7 4 +22463,1 6 90 16 42 16 17 11 13 +25177,1 2 16 17 37 35 11 8 +5103,15 96 36 37 38 37 48 35 87 7 8 +976,5 6 84 12 16 17 19 13 +26336,15 12 16 117 118 35 7 8 +12579,1 6 26 57 58 56 13 +20703,5 6 64 61 62 17 62 52 7 8 +17194,1 6 55 53 9 10 58 54 7 4 +12782,1 6 9 10 58 89 56 54 7 4 +12779,1 6 9 10 58 89 56 54 7 8 +13936,15 55 9 16 36 16 17 37 52 54 7 8 +3852,5 6 49 50 85 54 7 8 +9519,15 57 53 12 16 17 11 54 7 4 +17626,1 6 55 9 16 17 63 7 4 +13935,15 55 9 16 36 16 17 37 52 54 7 4 +3864,5 6 49 50 85 54 7 4 +15819,15 57 53 12 16 17 11 54 7 8 +2468,25 26 27 11 89 7 8 +6137,15 12 36 16 17 37 48 50 7 8 +9164,1 6 55 9 16 17 63 7 8 +12756,15 67 36 37 37 11 54 7 8 +26335,15 12 16 117 118 35 7 4 +6078,25 26 27 11 89 7 4 +7420,1 6 9 36 16 61 16 17 10 7 8 +20207,5 6 57 55 9 61 62 52 7 4 +5104,15 96 36 37 38 37 48 35 87 7 4 +7419,1 6 9 36 16 61 16 17 10 7 4 +11519,1 6 12 16 61 16 36 16 17 19 13 +26153,1 6 53 55 53 12 16 17 10 7 8 +15184,5 6 41 9 16 17 37 50 7 4 +15183,5 6 41 9 16 17 37 50 7 8 +25768,5 6 55 34 107 36 37 11 13 +25543,15 9 36 37 38 62 10 7 8 +9486,1 6 64 16 42 16 61 16 17 37 35 7 4 +25542,15 9 36 37 38 62 10 7 4 +14968,5 6 31 47 48 68 7 4 +14974,5 6 31 47 48 68 7 8 +9487,1 6 64 16 42 16 61 16 17 37 35 7 8 +6680,5 6 12 51 52 13 +12818,1 6 90 91 58 66 7 8 +1525,5 6 31 42 43 17 63 7 4 +12819,1 6 90 91 58 66 7 4 +22742,1 6 90 16 61 16 36 16 17 19 7 8 +601,5 6 31 42 43 17 63 7 8 +13156,5 6 88 49 50 7 8 +9557,1 6 34 107 36 37 17 11 8 +2429,5 6 88 49 50 7 4 +1693,1 6 88 9 16 17 11 13 +5361,1 6 26 55 9 16 17 10 7 4 +21158,15 86 34 36 37 17 91 7 8 +5360,1 6 26 55 9 16 17 10 7 8 +19479,15 57 51 36 37 17 11 13 +19478,15 57 51 36 37 17 11 8 +1692,1 6 88 9 16 17 11 8 +20345,15 86 34 107 36 37 17 63 7 4 +22261,5 6 55 88 34 36 37 10 7 8 +8391,5 6 107 108 7 8 +2162,5 6 12 34 35 7 8 +11286,1 6 53 9 10 89 54 7 4 +2161,5 6 12 34 35 7 4 +11287,1 6 53 9 10 89 54 7 8 +8142,1 6 86 34 36 37 17 98 +11027,1 6 57 51 52 7 8 +8809,1 6 86 9 16 17 37 72 7 4 +11028,1 6 57 51 52 7 4 +3515,1 6 53 12 61 16 61 16 17 62 10 7 8 +12750,1 6 86 34 36 37 19 13 +4873,1 6 86 34 36 37 17 69 +15812,1 6 53 12 61 16 61 16 17 62 10 7 4 +9241,15 49 36 37 17 19 58 11 56 7 8 +22464,5 6 12 57 9 61 16 17 11 8 +9091,1 6 84 18 12 16 17 10 85 54 7 8 +1928,15 55 53 57 9 16 61 16 17 62 10 7 4 +20127,1 6 53 49 36 37 17 63 7 8 +1929,15 55 53 57 9 16 61 16 17 62 10 7 8 +12421,1 6 51 36 37 19 33 13 +26322,1 6 53 9 10 122 54 7 8 +8207,5 6 49 50 58 7 4 +15413,5 6 9 16 17 37 48 35 7 4 +19293,15 57 58 54 7 8 +21984,1 6 53 49 36 37 17 63 7 4 +26323,1 6 53 9 10 122 54 7 4 +19294,15 57 58 54 7 4 +20790,5 6 53 105 106 58 7 4 +22164,5 6 55 12 57 55 9 16 36 37 38 17 37 50 7 4 +20789,5 6 53 105 106 58 7 8 +8206,5 6 49 50 58 7 8 +16136,15 12 16 36 39 36 16 61 16 17 37 48 35 54 7 8 +11825,5 6 53 18 12 16 17 37 108 35 7 4 +16041,15 34 42 43 17 37 108 35 54 7 8 +3953,15 51 36 37 63 7 4 +18359,5 6 9 9 9 9 9 16 17 10 7 4 +25732,15 12 16 36 39 36 16 61 16 17 37 48 35 54 7 4 +11826,5 6 53 18 12 16 17 37 108 35 7 8 +16040,15 34 42 43 17 37 108 35 54 7 4 +22688,15 55 71 36 37 17 10 54 54 7 4 +3952,15 51 36 37 63 7 8 +22689,15 55 71 36 37 17 10 54 54 7 8 +15324,1 6 53 31 47 48 48 32 54 7 4 +16579,15 31 42 43 17 37 32 93 58 7 4 +506,1 6 53 31 61 62 63 7 8 +907,5 6 99 100 17 10 7 4 +16696,1 6 51 107 108 35 7 8 +2232,1 6 53 31 61 62 63 7 4 +8808,5 6 99 100 17 10 7 8 +12565,15 86 57 9 16 61 16 17 62 10 7 8 +16578,15 31 42 43 17 37 32 93 58 7 8 +11998,1 6 84 18 12 16 17 10 85 54 7 4 +15774,1 6 34 36 37 38 19 13 +1924,1 2 16 17 10 54 7 8 +5118,15 12 11 87 7 8 +19185,1 6 92 12 36 37 38 11 13 +5119,15 12 11 87 7 4 +21600,15 67 47 48 48 115 68 7 4 +6665,1 6 53 9 10 93 7 4 +21599,15 67 47 48 48 115 68 7 8 +5221,1 6 53 9 10 93 7 8 +4408,5 6 9 10 58 89 7 8 +7514,5 6 57 57 9 16 17 11 8 +2314,1 6 57 88 89 58 7 4 +11038,1 6 51 61 62 112 7 4 +12876,5 6 12 16 36 37 38 17 10 7 8 +18085,1 6 92 12 36 37 38 11 8 +24330,5 6 64 61 62 17 37 115 35 11 7 8 +16492,15 49 114 115 68 7 8 +12052,1 6 57 88 89 58 7 8 +1923,1 2 16 17 10 54 7 4 +12875,5 6 12 16 36 37 38 17 10 7 4 +25585,5 6 64 61 62 17 37 115 35 11 7 4 +14008,1 6 51 52 58 11 8 +22491,5 6 57 57 9 16 17 11 13 +4310,5 6 41 88 89 7 8 +7330,5 6 92 31 36 37 69 +526,1 6 9 10 54 7 4 +6655,1 6 49 47 36 37 17 11 13 +11037,1 6 51 61 62 112 7 8 +11335,5 6 18 12 16 17 62 68 7 4 +12261,5 2 16 17 43 48 11 8 +22920,5 6 55 53 9 16 17 63 7 8 +3847,5 6 84 12 16 17 11 13 +16491,15 49 114 115 68 7 4 +10086,5 6 18 12 16 17 62 68 7 8 +4311,5 6 41 88 89 7 4 +25289,5 6 55 53 9 16 17 63 7 4 +3846,5 6 84 12 16 17 11 8 +6654,1 6 49 47 36 37 17 11 8 +23198,15 88 57 58 58 58 89 13 +18878,1 6 57 49 47 48 32 54 7 4 +525,1 6 9 10 54 7 8 +6608,1 12 11 93 58 7 8 +19247,1 12 36 16 17 37 115 68 13 +2710,1 12 11 93 58 7 4 +20279,15 34 36 37 38 37 108 35 7 8 +2408,15 34 36 37 38 37 108 35 7 4 +4491,5 6 67 47 107 108 48 72 7 4 +10633,5 6 67 47 107 108 48 72 7 8 +1894,1 6 53 9 10 56 54 7 4 +10181,15 12 16 99 16 61 16 17 19 13 +2850,1 6 53 9 10 56 54 7 8 +11551,1 6 12 16 36 37 38 37 35 7 4 +21651,5 6 29 9 16 17 10 7 4 +11552,1 6 12 16 36 37 38 37 35 7 8 +15699,15 57 53 49 36 37 17 10 54 7 8 +15738,1 6 55 57 67 47 36 37 17 11 13 +4987,15 109 110 58 89 56 54 7 4 +10700,15 109 88 55 57 96 16 21 77 78 22 79 4 +14129,5 6 88 9 16 36 16 17 62 10 7 4 +13460,5 6 29 9 16 17 10 7 8 +15700,15 57 53 49 36 37 17 10 54 7 4 +2813,1 6 55 57 67 47 36 37 17 11 8 +4986,15 109 110 58 89 56 54 7 8 +15887,5 6 88 9 16 36 16 17 62 10 7 8 +21926,15 86 12 16 36 37 38 19 +26161,15 55 57 9 16 36 16 17 37 32 54 7 8 +25624,1 6 12 16 36 16 21 77 101 102 103 +16311,5 6 9 10 58 89 11 8 +26162,15 55 57 9 16 36 16 17 37 32 54 7 4 +25854,5 6 53 71 36 37 17 37 32 54 7 4 +20067,5 6 76 16 17 10 7 4 +21126,1 6 34 47 48 32 54 7 4 +9538,15 57 58 58 13 +24502,1 6 88 12 16 36 16 17 19 13 +21125,1 6 34 47 48 32 54 7 8 +12850,1 6 9 16 17 32 7 4 +18252,15 57 53 51 61 62 63 7 4 +16140,5 6 90 91 89 54 7 8 +18251,15 57 53 51 61 62 63 7 8 +5756,15 57 57 12 16 21 77 78 22 79 4 +9492,15 53 16 17 7 4 +9491,15 53 16 17 7 8 +6522,1 6 84 12 34 36 37 17 10 7 8 +5040,1 6 51 52 58 7 4 +16527,1 6 84 12 34 36 37 17 10 7 4 +5025,1 6 51 52 58 7 8 +10763,5 6 12 57 9 16 17 63 7 8 +10381,5 6 9 16 17 37 32 54 7 8 +25013,5 6 12 57 9 16 17 63 7 4 +8644,15 9 36 37 38 37 35 7 4 +9128,5 6 9 16 17 37 32 54 7 4 +2013,15 9 16 17 75 7 4 +8643,15 9 36 37 38 37 35 7 8 +2012,15 9 16 17 75 7 8 +13311,5 6 53 65 90 16 17 120 54 7 4 +18057,1 6 53 9 16 17 37 35 11 7 8 +22686,15 55 55 53 57 86 87 13 +24387,1 6 64 16 61 16 117 118 10 54 7 4 +19705,5 6 53 67 42 43 17 10 54 7 8 +17056,5 6 31 42 43 17 37 32 54 7 4 +1857,1 2 16 17 54 54 7 4 +19235,5 6 84 73 74 89 7 8 +10118,5 6 31 42 43 17 37 32 54 7 8 +1858,1 2 16 17 54 54 7 8 +7953,15 12 26 57 58 58 89 13 +20017,5 6 84 73 74 89 7 4 +24898,5 6 64 61 62 17 37 108 35 54 7 4 +4024,15 57 9 16 61 16 17 62 10 7 4 +24897,5 6 64 61 62 17 37 108 35 54 7 8 +25933,1 6 67 47 48 50 54 7 4 +4025,15 57 9 16 61 16 17 62 10 7 8 +24202,1 6 64 16 39 36 16 61 16 17 37 52 7 8 +8343,1 6 53 55 53 12 16 17 11 8 +19650,15 49 47 47 36 37 17 3 4 +21874,1 6 67 47 48 50 54 7 8 +17040,5 6 64 53 31 32 7 8 +17039,5 6 64 53 31 32 7 4 +3140,1 6 90 91 54 54 7 8 +5905,5 6 90 91 89 54 7 4 +19649,15 49 47 47 36 37 17 3 8 +3141,1 6 90 91 54 54 7 4 +20432,5 6 55 12 55 88 57 58 56 11 8 +4822,1 6 88 51 67 36 37 11 8 +6151,5 6 71 42 43 17 63 7 4 +6022,1 6 57 67 36 37 17 11 8 +19292,1 6 88 51 67 36 37 11 13 +3620,5 6 71 42 43 17 63 7 8 +20456,1 6 64 16 117 118 48 52 7 8 +20455,1 6 64 16 117 118 48 52 7 4 +25506,15 12 11 14 54 85 7 4 +20492,1 6 57 49 107 36 37 17 11 13 +20491,1 6 57 49 107 36 37 17 11 8 +7793,5 6 64 36 16 61 16 17 37 35 7 8 +22916,1 6 86 9 16 17 11 7 8 +6116,15 44 31 42 43 17 10 7 4 +12023,5 6 64 39 36 16 42 16 17 37 35 7 4 +6115,15 44 31 42 43 17 10 7 8 +7744,5 6 64 39 36 16 42 16 17 37 35 7 8 +4308,25 26 27 11 89 23 24 +21578,1 6 34 36 37 17 37 52 7 4 +8565,5 6 88 34 36 37 69 +23083,1 6 31 42 43 17 63 85 54 7 8 +3042,5 6 90 91 56 54 7 4 +26734,1 6 86 9 16 17 11 7 4 +992,15 9 36 37 38 10 54 7 8 +6619,15 55 26 88 89 7 8 +11505,5 6 9 16 17 43 115 32 87 7 8 +16028,5 6 55 9 16 36 37 38 17 10 7 4 +991,15 9 36 37 38 10 54 7 4 +6960,15 119 16 42 16 17 37 50 7 4 +9289,1 6 9 10 56 89 7 8 +18059,1 6 9 10 58 27 7 8 +16004,5 6 76 16 42 16 17 37 52 7 4 +4068,1 6 9 10 56 89 7 4 +9874,1 6 9 10 58 27 7 4 +16480,5 6 76 16 42 16 17 37 52 7 8 +11501,5 6 9 16 17 43 115 32 87 7 4 +1589,1 6 88 26 9 16 17 10 7 4 +24487,5 6 88 65 66 89 7 4 +4261,1 6 57 9 16 17 93 63 7 8 +18611,15 49 107 36 37 11 8 +5846,15 57 53 57 9 16 17 63 7 4 +13999,1 6 57 9 16 17 93 63 7 4 +6959,15 119 16 42 16 17 37 50 7 8 +17054,1 6 64 16 42 16 17 11 7 8 +18612,15 49 107 36 37 11 13 +25895,1 6 88 26 9 16 17 10 7 8 +6620,15 55 26 88 89 7 4 +20826,1 6 64 16 42 16 17 11 7 4 +22901,15 119 16 42 16 17 19 7 8 +17351,5 6 49 50 56 66 7 4 +4934,5 6 53 12 31 32 7 8 +15614,1 6 86 34 36 37 17 11 8 +16265,5 6 49 50 56 66 7 8 +17751,1 6 51 42 43 17 62 10 7 8 +1739,15 34 107 36 16 17 37 48 72 7 4 +24599,15 9 36 16 17 37 72 7 8 +6105,1 6 31 32 33 13 +4962,5 6 53 12 31 32 7 4 +24598,15 9 36 16 17 37 72 7 4 +24835,1 6 53 49 47 48 32 7 4 +19226,1 6 53 49 47 48 32 7 8 +6399,15 44 96 16 36 16 17 19 7 4 +10514,1 6 55 57 9 16 36 37 38 17 10 85 7 4 +7537,1 6 9 10 122 7 4 +17752,1 6 51 42 43 17 62 10 7 4 +482,1 6 55 57 9 16 36 37 38 17 10 85 7 8 +6400,15 44 96 16 36 16 17 19 7 8 +22902,15 119 16 42 16 17 19 7 4 +7538,1 6 9 10 122 7 8 +20804,15 34 42 43 63 7 4 +8215,5 6 64 16 36 16 17 37 48 35 54 7 4 +16945,1 6 34 47 48 35 30 7 4 +16944,1 6 34 47 48 35 30 7 8 +20805,15 34 42 43 63 7 8 +25698,5 6 47 61 62 63 7 8 +8190,5 6 96 16 36 16 61 16 17 10 7 4 +21211,5 6 47 61 62 63 7 4 +23966,5 6 53 71 36 37 17 37 32 54 7 8 +7363,5 6 96 16 39 36 16 21 77 78 22 79 4 +11596,5 6 88 9 16 36 16 17 37 35 7 8 +9388,1 6 9 9 16 17 69 +25874,1 6 12 12 36 37 38 11 8 +8216,5 6 64 16 36 16 17 37 48 35 54 7 8 +14458,1 6 67 47 107 36 37 17 63 7 8 +8291,5 6 12 57 9 16 61 16 17 11 8 +22206,1 6 55 53 9 16 17 10 54 7 8 +23961,5 6 12 57 9 16 61 16 17 11 13 +8971,1 6 55 53 18 12 16 17 10 54 7 8 +8972,1 6 55 53 18 12 16 17 10 54 7 4 +18653,1 6 88 55 57 65 67 47 36 37 17 11 8 +10634,1 6 67 47 107 36 37 17 63 7 4 +21323,1 6 84 51 47 36 37 10 85 93 7 8 +21957,1 6 55 53 9 16 17 10 54 7 4 +21237,1 6 73 16 39 36 16 17 19 7 4 +23076,1 6 65 12 16 17 10 7 4 +21236,1 6 73 16 39 36 16 17 19 7 8 +11872,5 6 55 9 16 36 37 38 17 10 7 8 +1597,15 57 26 9 16 17 11 13 +1596,15 57 26 9 16 17 11 8 +12580,1 6 26 57 58 56 7 4 +1832,15 88 89 66 56 27 28 +15873,1 6 53 12 42 43 17 3 4 +8840,1 6 53 71 47 107 107 36 37 17 10 54 7 8 +2403,15 55 12 55 56 56 11 56 7 4 +1426,1 6 31 36 37 17 63 7 4 +13489,1 6 55 67 36 37 11 8 +8491,5 6 53 9 16 61 16 17 37 32 10 7 4 +8492,5 6 53 9 16 61 16 17 37 32 10 7 8 +6516,1 6 31 36 37 17 63 7 8 +21524,1 6 53 53 9 10 58 7 8 +8544,1 6 53 53 9 10 58 7 4 +25875,1 6 12 12 36 37 38 11 13 +4300,1 12 16 61 16 17 62 10 7 4 +10782,1 12 16 61 16 17 62 10 7 8 +13849,5 6 53 34 47 36 37 17 63 7 4 +21413,15 55 12 55 56 56 11 56 7 8 +15930,15 55 34 36 37 38 19 13 +5836,15 57 53 71 72 13 +8661,97 16 17 91 7 4 +12232,5 6 57 57 92 9 16 17 19 7 4 +13798,70 16 36 16 61 16 17 19 14 7 8 +507,1 2 16 17 62 10 7 4 +26510,1 6 86 34 47 36 37 69 +24092,15 88 89 58 7 4 +18561,5 6 64 61 16 17 37 50 7 8 +24091,15 88 89 58 7 8 +8662,97 16 17 91 7 8 +1091,1 6 51 52 56 89 13 +18560,5 6 64 61 16 17 37 50 7 4 +24751,1 6 31 42 43 17 37 32 30 30 7 4 +23957,5 6 53 53 34 36 37 17 62 10 7 4 +17126,15 44 12 11 56 7 4 +1080,1 2 16 17 62 10 7 8 +17127,15 44 12 11 56 7 8 +9108,5 6 55 12 55 56 89 13 +14450,5 6 9 36 37 38 37 10 7 8 +5437,1 6 71 36 37 17 63 7 4 +9150,1 6 31 32 54 7 4 +6935,1 6 53 88 89 7 8 +18410,15 57 58 58 89 56 13 +9547,5 6 88 57 9 16 17 43 72 7 8 +10038,5 6 84 51 36 37 17 10 54 7 4 +24345,15 34 47 48 50 11 7 4 +20437,1 6 55 9 16 36 37 38 37 35 7 8 +4787,1 6 53 88 89 7 4 +14669,5 6 88 57 9 16 17 43 72 7 4 +10039,5 6 84 51 36 37 17 10 54 7 8 +15407,15 34 47 48 50 11 7 8 +13888,1 6 55 9 16 36 37 38 37 35 7 4 +18577,1 6 31 32 54 7 8 +13797,70 16 36 16 61 16 17 19 14 7 4 +15048,1 6 53 57 51 36 37 10 7 8 +4230,1 6 71 36 37 17 63 7 8 +13157,5 6 88 71 47 36 37 17 11 8 +4981,15 88 57 58 56 54 7 8 +20898,1 6 12 65 88 88 57 9 16 17 10 7 8 +25997,1 6 12 65 88 88 57 9 16 17 10 7 4 +4982,15 88 57 58 56 54 7 4 +2205,1 6 9 10 27 33 7 8 +300,5 6 57 57 57 9 16 17 10 7 8 +7788,15 31 36 37 17 62 10 7 8 +17422,5 6 49 50 58 11 8 +16786,1 6 64 61 62 17 10 93 7 4 +7787,15 31 36 37 17 62 10 7 4 +16785,1 6 64 61 62 17 10 93 7 8 +299,5 6 57 57 57 9 16 17 10 7 4 +14266,15 55 53 55 57 58 56 54 7 8 +23486,15 12 11 56 89 27 28 +25531,1 6 57 65 57 12 11 58 7 8 +16396,15 49 107 36 37 17 59 +20033,15 55 53 55 57 58 56 54 7 4 +25920,15 55 53 55 56 89 56 54 7 4 +3165,5 6 34 107 36 37 17 10 7 4 +9522,1 6 51 42 43 17 37 35 11 8 +24954,5 6 34 107 36 37 17 10 7 8 +12541,15 9 16 16 16 16 16 16 16 17 11 8 +26121,15 88 57 58 58 89 85 85 54 7 8 +26122,15 88 57 58 58 89 85 85 54 7 4 +26559,5 6 9 61 62 50 54 7 4 +12542,15 9 16 16 16 16 16 16 16 17 11 13 +23872,15 12 51 114 36 37 17 37 115 50 54 7 8 +3759,5 6 53 31 32 54 54 7 4 +11331,1 6 84 49 36 37 17 10 54 7 4 +23873,15 12 51 114 36 37 17 37 115 50 54 7 4 +16349,5 6 53 31 32 54 54 7 8 +13923,15 9 16 17 43 32 93 58 7 8 +13922,15 9 16 17 43 32 93 58 7 4 +24926,5 6 53 18 9 16 17 91 7 4 +6561,5 6 9 10 58 89 27 28 +16744,15 96 36 16 17 19 89 11 8 +26585,1 12 39 36 16 61 16 17 37 32 7 4 +12129,15 55 12 55 56 89 11 56 7 4 +1733,1 2 16 17 37 35 7 4 +3200,1 2 16 17 37 35 7 8 +15710,15 57 53 12 34 36 37 17 10 7 8 +5904,1 6 53 88 89 11 13 +25767,5 6 55 34 107 36 37 11 8 +5903,1 6 53 88 89 11 8 +15047,1 6 53 57 51 36 37 10 7 4 +328,5 6 53 9 10 13 +23100,1 6 9 36 16 36 16 61 16 17 37 35 7 8 +11210,1 6 9 16 17 37 35 93 7 8 +21286,15 31 36 37 17 37 35 7 8 +11209,1 6 9 16 17 37 35 93 7 4 +21285,15 31 36 37 17 37 35 7 4 +22048,15 44 26 88 89 66 11 7 4 +3685,5 6 9 16 36 16 17 37 52 13 +21816,15 44 26 88 89 66 11 7 8 +6389,15 55 57 9 16 36 37 38 17 19 33 13 +6768,5 6 64 36 37 38 10 7 8 +11938,5 6 64 36 37 38 10 7 4 +19887,15 55 57 57 9 36 37 38 10 7 4 +20174,1 6 55 88 88 57 58 89 56 7 4 +25507,15 12 11 14 54 85 7 8 +19886,15 55 57 57 9 36 37 38 10 7 8 +3622,15 71 42 43 17 63 7 4 +3621,15 71 42 43 17 63 7 8 +23250,1 6 84 9 10 58 89 85 7 4 +23099,1 6 9 36 16 36 16 61 16 17 37 35 7 4 +25232,1 6 57 67 36 37 17 3 8 +20619,15 57 53 49 36 37 17 3 4 +20620,15 57 53 49 36 37 17 3 8 +4084,5 6 57 9 16 36 37 38 17 10 7 8 +5698,5 6 18 12 16 17 37 68 89 7 8 +9071,5 6 9 16 36 16 17 37 48 32 7 4 +16789,5 6 18 12 16 17 37 68 89 7 4 +21840,5 6 9 16 36 16 17 37 48 32 7 8 +7515,15 57 57 9 16 17 11 8 +5927,15 9 16 17 43 13 +7516,15 57 57 9 16 17 11 13 +17470,15 12 39 36 39 36 39 36 16 17 19 13 +15799,15 57 65 65 88 88 9 16 17 10 7 8 +17304,1 6 119 16 42 16 17 37 35 7 4 +22433,1 6 96 16 39 36 16 42 16 17 37 35 7 4 +23680,15 55 12 26 57 58 11 8 +25242,15 67 47 36 37 38 37 48 72 7 4 +15798,15 57 65 65 88 88 9 16 17 10 7 4 +22434,1 6 96 16 39 36 16 42 16 17 37 35 7 8 +12331,1 6 71 42 43 17 91 7 4 +8383,5 6 53 16 17 62 10 7 8 +9778,5 6 57 86 87 13 +20631,1 6 71 42 43 17 91 7 8 +16023,1 6 12 16 36 16 17 37 48 32 7 4 +18068,1 6 119 16 42 16 17 37 35 7 8 +26000,15 86 34 107 108 48 35 87 7 4 +16874,15 86 49 47 107 36 37 17 11 8 +22597,15 86 34 107 108 48 35 87 7 8 +25239,15 67 47 36 37 38 37 48 72 7 8 +5052,5 6 53 67 47 36 37 17 10 54 7 8 +16446,1 6 55 53 12 16 17 37 32 7 4 +5898,5 6 53 67 47 36 37 17 10 54 7 4 +24503,1 6 55 53 12 16 17 37 32 7 8 +744,15 57 58 89 13 +19069,116 81 77 78 22 8 +22273,15 55 53 9 16 61 16 17 19 13 +9209,1 12 36 16 17 37 50 7 4 +10651,1 12 36 16 17 37 50 7 8 +14770,1 6 12 16 17 10 85 54 7 4 +14769,1 6 12 16 17 10 85 54 7 8 +8382,5 6 53 16 17 62 10 7 4 +6939,5 6 53 65 9 16 17 120 54 7 8 +9634,5 6 96 36 16 42 16 17 19 7 4 +6366,5 6 67 36 37 19 13 +2599,1 6 53 51 107 36 37 17 19 13 +24765,5 6 67 36 37 17 69 +4083,5 6 57 9 16 36 37 38 17 10 7 4 +23435,1 6 86 31 47 42 43 17 63 7 8 +8379,15 55 9 61 62 63 7 4 +11315,5 6 9 10 58 89 85 7 4 +26114,5 6 18 9 16 17 62 17 37 35 7 4 +15126,5 6 96 36 16 42 16 17 19 7 8 +2672,5 6 9 10 58 89 85 7 8 +8378,15 55 9 61 62 63 7 8 +17345,5 6 76 36 16 61 16 61 16 17 37 72 66 11 8 +2796,15 12 16 36 37 38 37 52 7 8 +8080,5 6 53 55 57 9 36 37 38 17 10 7 4 +9322,1 6 113 61 62 62 10 7 4 +9321,1 6 113 61 62 62 10 7 8 +24650,15 67 47 48 32 7 8 +24651,15 67 47 48 32 7 4 +4975,5 6 53 12 49 50 13 +3049,15 49 36 37 11 8 +3050,15 49 36 37 11 13 +19252,15 12 36 16 117 118 52 7 8 +19317,1 6 90 39 36 16 61 16 17 19 13 +19253,15 12 36 16 117 118 52 7 4 +7760,5 6 9 16 36 16 36 37 38 37 52 7 4 +1059,5 6 53 57 58 58 54 7 4 +25802,5 6 9 16 17 37 35 30 7 4 +15408,1 6 12 49 47 36 37 17 19 13 +7962,5 6 53 57 58 58 54 7 8 +11495,15 31 114 42 43 17 75 7 4 +22435,5 6 88 9 36 37 38 37 35 7 4 +11496,15 31 114 42 43 17 75 7 8 +1420,15 12 16 36 37 38 37 52 7 4 +2932,1 6 53 18 12 16 17 11 8 +9080,5 6 86 53 9 10 54 54 7 4 +4398,15 55 12 9 61 62 52 7 4 +11187,5 6 92 29 30 7 4 +13115,15 55 53 12 124 107 36 37 17 11 13 +4397,15 55 12 9 61 62 52 7 8 +11186,5 6 92 29 30 7 8 +4287,1 12 61 16 17 11 8 +9797,1 6 53 18 12 16 17 11 13 +12523,1 6 9 10 110 52 11 8 +8518,5 6 53 12 34 36 37 17 10 54 7 4 +8420,5 6 53 12 34 36 37 17 10 54 7 8 +7761,5 6 9 16 36 16 36 37 38 37 52 7 8 +23206,15 65 34 36 37 17 37 35 7 8 +11293,5 6 9 10 66 27 89 54 7 4 +19775,1 6 51 36 16 61 16 17 19 7 8 +9857,5 6 53 53 12 36 37 17 10 7 8 +19288,5 6 71 36 16 42 16 17 11 8 +23410,5 6 55 16 17 43 50 7 8 +20726,5 6 88 57 57 9 16 17 11 8 +20727,5 6 88 57 57 9 16 17 11 13 +14771,5 6 36 37 17 11 85 54 7 8 +11438,5 6 36 37 17 11 85 54 7 4 +3337,1 6 53 71 72 7 8 +9229,5 6 67 47 48 52 7 8 +21414,1 6 51 36 37 17 19 58 11 8 +14521,5 6 53 9 16 36 37 38 +3787,15 88 55 88 89 13 +12838,15 88 71 72 7 4 +25414,15 12 16 36 37 38 37 35 87 7 4 +18438,5 6 26 88 89 56 7 4 +12839,15 88 71 72 7 8 +25413,15 12 16 36 37 38 37 35 87 7 8 +3451,15 53 9 16 17 11 8 +17442,1 6 31 32 27 28 +21744,5 6 12 34 35 27 28 +3338,1 6 53 71 72 7 4 +24398,5 6 49 107 9 117 16 17 37 10 7 8 +9230,5 6 67 47 48 52 7 4 +6495,15 31 36 37 17 10 54 7 4 +23196,15 57 58 58 89 7 8 +8900,15 12 39 36 39 36 39 36 16 17 11 8 +10712,1 6 12 65 88 9 16 17 10 7 4 +21540,1 6 53 51 47 48 52 7 8 +6494,15 31 36 37 17 10 54 7 8 +10711,1 6 12 65 88 9 16 17 10 7 8 +18712,1 6 86 57 9 16 17 37 72 85 7 8 +10254,1 6 9 16 17 118 17 10 7 4 +12531,15 65 49 61 62 75 7 4 +8901,15 12 39 36 39 36 39 36 16 17 11 13 +24423,1 6 31 114 115 32 7 8 +12532,15 65 49 61 62 75 7 8 +16757,1 6 9 16 17 118 17 10 7 8 +24950,1 6 51 42 43 17 37 68 54 7 8 +8923,1 6 57 9 36 16 42 16 17 11 13 +23414,1 6 12 51 42 43 17 56 7 8 +16672,5 6 64 16 61 16 17 19 7 8 +26193,15 12 16 36 37 38 37 52 11 8 +16673,5 6 64 16 61 16 17 19 7 4 +17854,1 6 86 57 9 16 17 37 72 85 7 4 +2566,1 6 57 9 36 16 42 16 17 11 8 +13114,15 55 53 12 124 107 36 37 17 11 8 +11543,1 6 53 51 47 48 52 7 4 +19520,15 55 12 96 36 16 17 19 58 11 56 7 4 +17990,5 6 127 42 43 17 106 7 4 +21170,15 55 12 96 36 16 17 19 58 11 56 7 8 +15810,5 6 53 53 18 12 11 14 54 54 7 4 +12046,1 6 9 10 110 52 7 8 +7679,1 6 34 47 9 36 37 17 11 8 +12047,1 6 9 10 110 52 7 4 +19569,5 6 55 55 9 16 17 62 10 7 8 +25337,5 6 57 57 57 9 16 36 37 38 17 10 7 8 +8051,5 6 109 9 16 17 10 7 8 +21976,5 6 53 51 36 37 17 37 68 7 4 +9577,1 6 86 34 36 37 17 19 13 +21610,1 6 71 47 36 37 17 10 7 4 +21611,1 6 71 47 36 37 17 10 7 8 +23200,5 6 57 57 57 9 16 36 37 38 17 10 7 4 +23059,1 6 88 9 16 39 36 16 17 19 7 4 +4764,5 6 65 57 9 16 17 10 7 4 +9827,5 6 88 55 12 16 39 36 16 17 19 13 +4765,5 6 65 57 9 16 17 10 7 8 +6558,1 6 55 26 88 89 13 +11239,5 6 53 51 36 37 17 37 68 7 8 +6041,5 6 55 57 57 67 36 37 17 11 8 +7519,1 6 51 42 43 17 43 52 7 8 +24350,1 6 34 47 48 7 4 +15218,1 6 51 42 43 17 43 52 7 4 +21382,1 6 51 47 48 35 54 54 7 4 +26504,1 6 65 9 16 42 16 17 37 72 7 4 +20706,1 6 51 47 48 35 54 54 7 8 +15228,15 65 9 16 36 16 17 19 7 8 +293,5 6 65 66 13 +5071,5 6 57 9 16 36 16 61 16 17 62 10 7 8 +12671,1 6 9 10 89 89 7 4 +15975,5 6 124 47 48 35 54 7 8 +15229,15 65 9 16 36 16 17 19 7 4 +15978,5 6 67 47 48 52 11 8 +14504,5 6 124 47 48 35 54 7 4 +6412,5 6 12 34 35 33 13 +10910,1 6 64 16 36 16 17 10 85 54 7 4 +10909,1 6 64 16 36 16 17 10 85 54 7 8 +12218,5 6 53 64 36 37 38 37 35 54 7 8 +25992,15 34 107 107 36 37 38 37 72 7 8 +14125,1 6 49 61 62 91 7 4 +6448,1 6 49 61 62 91 7 8 +20868,1 6 113 61 62 17 37 52 85 54 7 4 +16217,5 6 57 53 9 16 61 16 36 37 38 17 11 8 +26003,15 31 47 107 36 16 17 19 13 +3766,1 6 53 64 16 17 69 +16441,1 6 9 10 58 27 11 8 +2521,5 6 55 88 57 9 36 37 38 37 50 7 4 +6971,5 6 71 72 56 7 8 +7706,1 6 90 16 42 16 17 10 7 4 +22072,1 6 53 12 12 11 11 8 +1883,5 6 71 72 56 7 4 +20153,1 6 90 16 42 16 17 10 7 8 +9825,15 12 11 56 89 7 8 +12589,15 12 11 58 27 7 8 +20963,1 6 31 47 36 37 11 13 +20934,5 6 57 9 16 36 16 61 16 17 62 10 7 4 +12938,15 12 11 58 27 7 4 +21152,15 12 11 56 89 7 4 +26093,1 6 64 61 62 37 123 11 7 8 +13371,1 45 21 22 17 37 48 50 58 7 8 +9279,1 6 31 47 36 37 11 8 +9818,1 45 21 22 17 37 48 50 58 7 4 +21902,5 6 55 49 50 7 8 +7401,1 6 57 55 86 57 9 16 17 11 8 +18437,5 6 26 88 89 56 7 8 +15892,15 88 88 57 58 66 7 4 +23084,15 88 88 57 58 66 7 8 +22639,1 6 51 42 43 17 37 35 54 7 4 +22685,5 6 55 55 53 57 86 87 13 +19465,1 6 51 42 43 17 37 35 54 7 8 +9900,5 6 57 9 16 36 16 61 16 17 37 35 7 4 +25897,1 12 36 16 117 118 52 7 4 +22608,5 6 55 55 26 57 34 36 37 17 11 8 +5830,1 6 57 53 57 58 13 +6883,1 6 86 31 32 13 +7678,5 6 9 10 48 7 4 +19251,1 12 36 16 117 118 52 7 8 +7677,5 6 9 10 48 7 8 +17332,5 6 12 36 16 21 77 78 22 79 4 +8186,1 6 53 18 9 16 17 19 7 8 +17675,15 51 36 37 17 19 58 11 56 7 8 +10941,5 6 53 16 17 54 54 7 8 +15501,5 6 65 88 12 49 50 7 8 +25791,5 6 55 55 26 57 34 36 37 17 11 13 +8185,1 6 53 18 9 16 17 19 7 4 +10766,5 6 53 16 17 54 54 7 4 +15502,5 6 65 88 12 49 50 7 4 +9210,15 12 36 16 17 37 50 7 4 +9211,15 12 36 16 17 37 50 7 8 +5921,15 67 36 16 17 37 11 8 +6880,5 6 57 9 16 36 16 61 16 17 37 35 7 8 +23710,1 6 49 47 36 37 17 19 13 +26493,1 6 9 36 37 38 11 8 +24946,5 6 64 16 42 16 17 37 50 11 7 4 +9696,15 57 57 92 9 16 17 10 93 58 7 4 +9695,15 57 57 92 9 16 17 10 93 58 7 8 +100,5 6 34 47 48 32 7 8 +19468,5 6 9 16 17 63 54 7 4 +6526,5 6 57 53 84 85 7 8 +19266,1 6 53 54 56 89 7 8 +15096,1 6 53 54 56 89 7 4 +8131,1 6 51 47 42 43 17 37 72 54 7 4 +22673,1 6 113 61 62 17 37 35 87 30 7 4 +24226,1 2 16 17 11 85 54 7 8 +12823,5 6 67 51 36 37 17 10 7 4 +20820,1 12 16 36 37 38 37 48 52 54 7 8 +4067,5 6 67 51 36 37 17 10 7 8 +20823,1 12 16 36 37 38 37 48 52 54 7 4 +22125,5 6 9 9 9 9 9 9 16 17 11 8 +6233,5 6 55 12 11 58 7 4 +5799,5 6 55 12 11 58 7 8 +8447,1 6 64 16 42 16 17 37 32 7 8 +15300,1 12 39 36 16 36 16 61 16 17 62 10 7 4 +15280,5 6 12 9 16 17 37 72 7 4 +15242,5 6 92 12 11 7 4 +15281,5 6 12 9 16 17 37 72 7 8 +4133,5 6 12 57 58 56 11 56 7 8 +21415,15 51 36 37 17 19 58 11 56 7 4 +15648,5 6 18 12 34 42 43 17 11 8 +21098,15 49 47 48 50 54 7 4 +24103,1 6 53 12 9 16 17 37 52 7 8 +24102,1 6 53 12 9 16 17 37 52 7 4 +16626,5 6 9 16 17 63 54 7 8 +5638,5 6 57 53 84 85 7 4 +8448,1 6 64 16 42 16 17 37 32 7 4 +6476,1 6 9 31 32 13 +21099,15 49 47 48 50 54 7 8 +1827,1 6 90 91 13 +2337,5 6 53 9 10 87 7 8 +8740,15 51 47 48 52 56 7 4 +2336,5 6 53 9 10 87 7 4 +16577,1 6 57 92 31 42 43 17 37 32 93 58 7 8 +18866,1 6 55 31 47 48 35 7 8 +13113,1 6 55 53 12 124 107 36 37 17 11 8 +12341,1 6 55 31 47 48 35 7 4 +13232,15 51 47 48 52 56 7 8 +16452,5 6 29 9 10 30 7 4 +3584,15 55 34 47 36 37 17 63 7 4 +4907,5 6 12 16 36 16 21 77 78 22 79 4 +20300,5 6 67 68 68 7 4 +13892,1 6 57 9 16 36 37 38 37 35 7 4 +26714,5 6 92 31 42 43 63 7 8 +3585,15 55 34 47 36 37 17 63 7 8 +13893,1 6 57 9 16 36 37 38 37 35 7 8 +16241,15 57 55 12 11 13 +22377,1 6 57 92 31 42 43 17 37 32 93 58 7 4 +7625,15 31 47 36 37 17 3 8 +11739,5 6 88 57 58 56 54 54 7 8 +7624,15 31 47 36 37 17 3 4 +10481,1 6 57 57 9 16 61 16 17 11 13 +11622,1 6 64 61 62 17 17 10 54 7 8 +25885,5 6 34 107 108 50 7 4 +11621,1 6 64 61 62 17 17 10 54 7 4 +19613,1 45 21 22 17 19 56 85 93 27 7 4 +5019,5 6 29 9 10 30 7 8 +20188,1 6 34 36 37 106 7 8 +7531,15 57 58 66 13 +10480,1 6 57 57 9 16 61 16 17 11 8 +10534,1 6 53 9 16 17 69 +99,5 6 34 47 48 32 7 4 +2443,5 6 51 52 27 89 7 4 +4853,15 51 36 16 61 16 17 19 13 +18837,1 6 9 10 89 89 56 7 4 +18303,5 6 51 52 27 89 7 8 +21537,1 6 57 86 57 58 13 +5804,1 6 88 12 96 16 21 77 78 22 8 +7107,5 6 84 49 36 37 17 10 7 4 +24195,1 6 34 35 11 7 8 +3874,1 6 84 109 9 16 17 10 7 8 +8810,5 6 84 49 36 37 17 10 7 8 +17661,5 6 53 9 16 17 37 11 8 +16813,1 6 9 10 89 89 56 7 8 +2338,1 6 86 9 16 17 10 7 8 +17150,1 6 92 34 36 37 17 19 7 4 +26549,5 6 12 34 47 36 37 17 63 7 4 +3875,1 6 84 109 9 16 17 10 7 4 +20138,5 6 53 67 47 107 36 37 63 7 4 +12509,1 6 64 61 62 17 37 52 58 7 8 +15532,5 6 53 67 47 107 36 37 63 7 8 +21844,1 6 88 89 35 87 7 8 +21187,1 6 88 89 35 87 7 4 +10674,1 6 86 9 16 17 10 7 4 +20162,5 6 92 12 11 54 7 8 +25999,15 86 34 47 48 32 87 7 4 +9481,1 6 67 42 43 17 37 35 11 7 4 +20163,5 6 92 12 11 54 7 4 +17233,1 6 67 42 43 17 37 35 11 7 8 +18448,15 12 16 17 37 35 7 8 +20737,15 67 107 108 50 7 4 +10743,5 6 9 16 61 16 39 36 16 17 19 7 4 +265,15 31 36 37 17 37 48 68 7 8 +18449,15 12 16 17 37 35 7 4 +20738,15 67 107 108 50 7 8 +6578,15 65 9 16 42 16 17 19 7 8 +264,15 31 36 37 17 37 48 68 7 4 +3915,15 9 61 62 108 72 66 11 7 4 +7211,5 6 67 36 37 11 13 +10744,5 6 9 16 61 16 39 36 16 17 19 7 8 +22594,15 86 34 47 48 32 87 7 8 +11031,5 6 51 47 48 52 58 7 4 +16106,5 6 92 57 53 9 16 61 16 17 19 13 +5716,15 88 89 11 56 7 8 +6577,15 65 9 16 42 16 17 19 7 4 +1709,15 88 89 11 56 7 4 +11030,5 6 51 47 48 52 58 7 8 +16190,40 41 12 26 9 16 17 43 48 11 13 +10849,5 6 73 16 42 16 17 11 8 +3183,15 9 16 17 19 13 +9079,5 6 86 53 9 10 54 54 7 8 +22891,1 6 34 107 108 123 11 8 +20054,1 6 55 12 51 47 48 50 7 4 +26233,5 6 53 12 16 42 16 21 77 78 22 79 4 +22473,5 6 113 61 62 17 37 35 87 7 8 +5635,5 6 84 18 12 11 14 85 54 7 4 +3601,15 88 89 66 56 7 8 +22472,5 6 113 61 62 17 37 35 87 7 4 +26857,1 6 51 47 42 43 17 63 7 8 +3602,15 88 89 66 56 7 4 +20158,5 6 57 9 61 62 32 54 7 8 +6063,1 6 51 47 42 43 17 63 7 4 +5960,1 6 51 52 58 66 54 7 8 +5636,5 6 84 18 12 11 14 85 54 7 8 +5959,1 6 51 52 58 66 54 7 4 +1402,5 6 67 36 37 11 8 +15079,5 6 57 88 55 56 13 +6799,5 6 64 61 62 17 37 48 35 87 7 4 +11738,15 71 47 48 68 54 54 7 4 +25158,15 86 34 47 48 54 7 8 +8786,15 86 34 47 48 54 7 4 +7831,5 6 49 47 48 48 50 7 4 +10245,1 6 12 65 57 9 16 17 63 7 4 +10827,5 6 12 16 36 16 61 16 17 19 +21463,5 6 57 92 67 68 13 +10562,1 6 12 65 57 9 16 17 63 7 8 +11737,15 71 47 48 68 54 54 7 8 +24992,5 6 67 68 68 7 8 +2298,1 6 49 50 66 7 8 +21970,15 51 51 36 37 69 +259,15 67 47 48 68 11 7 4 +7834,5 6 49 47 48 48 50 7 8 +2299,1 6 49 50 66 7 4 +2309,5 6 57 57 9 36 16 61 16 17 19 7 4 +6798,5 6 64 61 62 17 37 48 35 87 7 8 +24333,1 6 26 55 34 36 37 17 19 13 +21655,1 6 119 16 42 16 17 62 10 7 4 +15185,5 6 57 12 16 17 63 7 4 +13837,1 6 119 16 42 16 17 62 10 7 8 +16274,5 6 57 55 67 117 16 17 118 17 11 8 +3843,15 12 16 17 62 10 7 4 +14945,1 6 84 18 12 16 17 17 10 85 7 4 +17376,1 6 53 34 107 36 37 17 63 7 8 +97,1 6 31 32 7 8 +3844,15 12 16 17 62 10 7 8 +22538,1 6 55 88 88 88 12 12 16 17 19 13 +14944,1 6 84 18 12 16 17 17 10 85 7 8 +12974,1 6 53 34 107 36 37 17 63 7 4 +96,1 6 31 32 7 4 +1973,5 6 55 9 61 62 17 10 7 4 +1871,15 49 36 37 19 13 +21031,5 6 55 9 61 62 17 10 7 8 +21012,15 31 47 36 37 17 11 13 +24230,1 6 55 55 53 34 36 37 38 19 7 8 +18441,1 6 57 55 88 89 33 13 +11587,1 6 31 114 114 114 36 37 17 10 7 8 +3089,15 51 36 16 61 16 17 11 8 +24140,5 6 12 34 36 37 17 63 7 4 +21011,15 31 47 36 37 17 11 8 +15633,15 9 16 36 16 17 63 7 8 +18774,1 6 86 9 16 17 43 32 54 7 8 +18773,1 6 86 9 16 17 43 32 54 7 4 +16189,40 41 12 26 9 16 17 43 48 11 8 +486,1 6 53 31 32 13 +17756,70 16 42 16 17 62 10 7 4 +17757,70 16 42 16 17 62 10 7 8 +10117,15 9 16 36 16 17 63 7 4 +626,5 6 9 16 17 43 32 10 93 58 7 4 +11836,5 6 53 90 16 61 16 61 16 17 11 8 +23016,15 9 61 62 108 72 66 11 7 8 +21576,5 6 92 9 16 17 62 10 7 8 +12521,1 6 12 109 110 11 7 8 +7948,1 6 64 61 62 37 50 7 4 +13993,5 6 92 9 16 17 62 10 7 4 +25642,1 6 64 61 62 37 50 7 8 +25443,15 9 16 36 37 38 37 35 54 54 7 8 +18376,5 6 12 36 37 63 7 8 +25442,15 9 16 36 37 38 37 35 54 54 7 4 +18375,5 6 12 36 37 63 7 4 +21760,15 86 9 16 17 37 35 11 8 +16762,5 6 76 61 62 17 74 7 4 +5260,5 6 29 9 16 42 16 17 19 13 +16763,5 6 76 61 62 17 74 7 8 +11231,1 6 88 57 58 54 7 4 +2864,15 55 51 42 43 17 10 7 4 +2863,15 55 51 42 43 17 10 7 8 +47,15 12 11 14 30 7 4 +3443,5 6 53 49 36 37 17 10 54 7 8 +4905,15 55 12 16 36 16 17 37 35 7 8 +25223,15 55 53 12 39 36 16 17 37 32 7 4 +48,15 12 11 14 30 7 8 +3131,5 6 53 49 36 37 17 10 54 7 4 +4904,15 55 12 16 36 16 17 37 35 7 4 +4843,5 6 12 49 50 13 +25222,15 55 53 12 39 36 16 17 37 32 7 8 +21961,15 67 107 108 35 87 7 4 +2084,15 34 36 37 38 17 37 35 87 7 4 +8189,5 6 64 16 42 16 17 37 72 7 8 +18614,5 6 86 34 36 37 17 63 7 8 +21960,15 67 107 108 35 87 7 8 +215,15 9 16 17 11 13 +214,15 9 16 17 11 8 +8188,5 6 64 16 42 16 17 37 72 7 4 +25715,5 6 86 34 36 37 17 63 7 4 +1263,15 57 53 31 47 9 36 37 17 63 7 4 +25939,5 6 9 36 16 61 16 61 16 17 37 35 7 4 +13422,5 6 26 9 16 17 11 13 +17143,1 6 57 55 12 16 36 37 38 17 11 8 +20960,1 6 47 48 32 54 7 8 +10556,15 67 47 48 35 7 8 +18082,5 6 34 36 37 17 19 14 54 7 8 +10557,15 67 47 48 35 7 4 +19184,5 6 34 36 37 17 19 14 54 7 4 +19791,1 6 64 16 17 91 7 4 +14784,5 6 44 96 36 16 17 37 50 7 8 +7204,5 6 26 9 16 17 11 8 +14785,5 6 44 96 36 16 17 37 50 7 4 +13642,15 67 114 36 37 10 7 8 +13643,15 67 114 36 37 10 7 4 +14387,15 86 57 9 16 17 37 72 85 7 8 +14388,15 86 57 9 16 17 37 72 85 7 4 +10565,1 6 12 16 17 63 7 8 +2140,25 26 27 11 23 7 8 +6527,1 6 12 16 17 63 7 4 +2124,25 26 27 11 23 7 4 +8423,5 6 53 12 16 36 16 17 37 52 54 7 8 +9727,1 6 12 57 88 89 23 7 8 +11381,15 49 47 42 43 17 63 7 8 +2529,1 6 9 36 37 38 37 72 7 4 +26744,5 6 51 36 37 17 3 4 +4523,15 71 36 37 11 13 +7460,1 6 12 57 88 89 23 7 4 +11380,15 49 47 42 43 17 63 7 4 +3208,1 6 51 52 56 11 8 +16895,5 6 53 12 36 37 10 7 8 +3117,5 6 51 36 37 17 3 8 +24070,5 2 16 17 82 8 +26561,15 9 61 62 50 54 7 8 +6145,15 12 36 16 17 37 48 52 7 4 +5631,5 6 53 12 16 36 16 17 37 52 54 7 4 +4522,15 71 36 37 11 8 +23962,1 6 12 12 16 36 37 38 17 62 10 7 8 +22766,15 65 57 88 57 109 12 16 17 19 13 +19130,5 6 53 12 36 37 10 7 4 +25010,15 96 36 37 38 17 19 58 11 8 +3534,1 6 18 12 16 17 37 48 32 58 7 4 +26091,15 55 57 9 16 17 11 8 +11352,15 57 9 16 36 37 38 17 10 93 7 8 +3535,1 6 18 12 16 17 37 48 32 58 7 8 +20097,1 6 9 16 42 16 17 37 35 11 8 +3692,5 6 57 26 9 16 17 11 8 +6146,15 12 36 16 17 37 48 52 7 8 +24443,5 6 55 88 55 56 58 7 4 +25295,1 6 57 53 9 16 61 16 17 10 54 7 4 +5750,1 6 12 88 65 88 9 16 17 37 50 7 4 +10575,5 6 12 16 36 16 17 37 48 72 7 4 +26560,15 9 61 62 50 54 7 4 +24449,5 6 55 88 55 56 58 7 8 +5749,1 6 12 88 65 88 9 16 17 37 50 7 8 +11351,15 57 9 16 36 37 38 17 10 93 7 4 +6579,1 6 49 42 43 17 63 7 8 +16224,5 6 57 55 53 9 10 13 +21609,5 6 71 47 36 37 17 10 7 4 +5313,5 6 64 16 42 16 21 77 78 22 79 4 +13071,5 6 53 49 47 48 52 54 7 8 +11455,1 6 49 42 43 17 63 7 4 +13579,15 12 16 99 16 17 37 52 7 8 +26705,15 96 16 99 16 17 10 7 4 +26706,15 96 16 99 16 17 10 7 8 +5586,5 6 64 61 62 17 37 35 85 54 7 4 +13497,5 6 44 9 16 36 16 42 16 17 11 13 +19310,1 6 12 34 36 37 38 91 7 8 +8590,1 6 53 55 51 36 37 94 +3330,5 6 51 42 43 17 10 54 7 8 +25094,1 6 9 36 37 38 17 10 7 8 +21075,5 6 51 42 43 17 10 54 7 4 +3054,70 16 36 16 61 16 17 37 7 8 +19375,5 6 53 51 36 37 38 17 10 7 4 +22199,15 88 89 89 23 7 4 +1202,1 12 16 36 37 38 11 8 +3053,70 16 36 16 61 16 17 37 7 4 +1150,5 6 53 31 47 47 36 37 17 10 7 8 +22200,15 88 89 89 23 7 8 +23956,15 53 55 51 61 62 63 7 8 +13496,5 6 44 9 16 36 16 42 16 17 11 8 +5587,5 6 64 61 62 17 37 35 85 54 7 8 +7033,5 6 84 64 16 17 10 54 85 54 7 4 +17531,5 6 64 16 17 17 11 8 +5876,5 6 49 107 108 108 52 54 7 4 +22988,15 9 61 62 108 32 54 7 4 +7032,5 6 84 64 16 17 10 54 85 54 7 8 +519,1 6 51 52 56 7 4 +9021,15 55 86 87 7 8 +12747,5 6 64 16 61 62 17 37 52 30 7 4 +10697,5 6 49 107 108 108 52 54 7 8 +22987,15 9 61 62 108 32 54 7 8 +9020,15 55 86 87 7 4 +13189,15 31 47 42 43 17 37 35 93 7 8 +3928,15 51 47 36 37 17 10 54 7 4 +17799,1 6 53 12 61 16 17 37 32 7 4 +13188,15 31 47 42 43 17 37 35 93 7 4 +17798,1 6 53 12 61 16 17 37 32 7 8 +6000,5 6 57 12 16 61 16 17 11 7 4 +3929,15 51 47 36 37 17 10 54 7 8 +518,1 6 51 52 56 7 8 +12748,5 6 64 16 61 62 17 37 52 30 7 8 +13650,5 6 9 36 16 17 37 115 68 13 +6318,1 6 9 10 56 11 8 +14628,15 65 9 16 17 37 35 89 56 7 8 +7566,15 88 12 11 58 7 8 +14627,15 65 9 16 17 37 35 89 56 7 4 +7884,5 6 12 12 51 52 7 8 +12929,15 12 39 36 39 36 16 61 16 17 19 13 +12920,15 71 47 36 37 11 13 +7567,15 88 12 11 58 7 4 +12919,15 71 47 36 37 11 8 +19113,15 55 53 55 56 89 13 +9393,5 6 9 9 16 36 61 16 17 43 75 7 4 +12170,1 6 64 36 16 17 37 108 48 72 54 7 8 +2825,15 57 58 56 7 8 +12169,1 6 64 36 16 17 37 108 48 72 54 7 4 +2826,15 57 58 56 7 4 +15973,5 6 9 9 16 36 61 16 17 43 75 7 8 +8682,15 86 9 16 17 10 54 7 4 +24810,1 6 57 96 16 36 16 17 63 7 4 +8681,15 86 9 16 17 10 54 7 8 +24725,1 6 57 96 16 36 16 17 63 7 8 +12705,1 6 53 105 106 7 4 +13309,1 6 53 105 106 7 8 +14371,15 67 47 36 37 37 35 7 8 +13,1 6 12 11 7 8 +12,1 6 12 11 7 4 +26391,1 6 12 61 16 17 37 48 32 58 7 8 +14372,15 67 47 36 37 37 35 7 4 +26390,1 6 12 61 16 17 37 48 32 58 7 4 +4251,5 6 51 36 37 17 11 13 +9832,1 6 55 12 109 110 13 +949,15 12 11 85 7 8 +10791,5 6 53 51 107 108 50 54 7 4 +16956,1 6 9 16 36 37 38 37 72 7 8 +948,15 12 11 85 7 4 +15814,15 67 42 43 17 11 13 +3945,15 71 36 37 19 13 +15813,15 67 42 43 17 11 8 +26784,1 6 90 36 16 61 16 17 37 108 35 7 4 +4065,15 57 12 39 36 16 17 19 13 +26447,1 6 9 16 42 16 17 10 54 7 4 +9980,1 12 16 36 37 38 17 98 +26448,1 6 9 16 42 16 17 10 54 7 8 +1460,1 6 71 47 48 35 27 28 +322,1 6 9 16 36 37 38 17 10 7 4 +18180,1 6 53 12 36 37 17 37 35 7 4 +372,1 6 9 10 56 7 4 +3136,5 6 53 57 9 16 36 16 17 37 35 54 7 4 +11697,1 6 9 16 36 16 17 37 52 13 +26134,1 6 65 57 92 12 16 17 11 8 +18313,15 55 65 57 58 7 4 +21761,15 86 9 16 17 37 35 11 7 4 +373,1 6 9 10 56 7 8 +26682,15 57 9 16 17 37 52 7 8 +11529,15 34 36 37 11 7 4 +16987,15 55 65 57 58 7 8 +6872,1 6 9 16 36 37 38 17 10 7 8 +18181,1 6 53 12 36 37 17 37 35 7 8 +26683,15 57 9 16 17 37 52 7 4 +1415,5 6 51 36 37 17 11 8 +8122,25 26 27 11 89 89 13 +5120,1 6 65 12 16 17 11 8 +3267,15 65 55 56 56 7 4 +15821,5 6 51 42 43 17 37 35 11 8 +16799,1 6 31 42 43 17 37 35 87 30 30 7 4 +26408,1 6 64 61 16 17 37 50 7 8 +3268,15 65 55 56 56 7 8 +18559,1 6 64 61 16 17 37 50 7 4 +7191,1 6 65 12 16 17 11 13 +7526,5 6 71 42 43 17 37 35 87 7 8 +16909,1 6 113 61 62 17 37 48 123 7 4 +26369,5 6 64 16 42 16 36 16 17 10 7 8 +7256,1 6 57 9 16 36 16 17 37 72 7 8 +4099,5 6 71 42 43 17 37 35 87 7 4 +16908,1 6 113 61 62 17 37 48 123 7 8 +26368,5 6 64 16 42 16 36 16 17 10 7 4 +7255,1 6 57 9 16 36 16 17 37 72 7 4 +22088,15 49 36 37 69 +11107,1 6 88 57 57 65 67 47 36 37 17 11 8 +20015,15 55 9 16 17 43 68 11 7 8 +9608,1 6 12 57 9 16 61 16 17 19 7 4 +8881,1 12 36 16 17 37 48 52 54 7 8 +9923,1 6 88 26 71 47 107 108 68 7 8 +18196,1 6 84 88 57 9 16 17 37 35 7 8 +3638,1 12 36 16 17 37 48 52 54 7 4 +25638,5 2 16 17 37 48 50 58 7 8 +25348,1 6 84 88 57 9 16 17 37 35 7 4 +22580,1 6 31 42 43 17 37 35 87 30 30 7 8 +12425,15 96 36 16 17 37 10 7 8 +22779,5 2 16 17 37 48 50 58 7 4 +12184,15 55 9 16 17 43 68 11 7 4 +2507,1 6 12 57 9 16 61 16 17 19 7 8 +12424,15 96 36 16 17 37 10 7 4 +23819,1 12 16 36 37 38 17 69 +14022,5 6 51 36 37 17 37 52 7 8 +21182,5 6 51 36 37 17 37 52 7 4 +17027,1 6 57 34 36 37 63 7 4 +26699,15 34 47 48 35 11 56 7 8 +4941,5 6 84 64 16 17 69 +17477,5 6 90 91 89 56 7 8 +23671,15 34 47 48 35 11 56 7 4 +18445,1 6 49 47 47 36 37 19 58 7 8 +16096,5 6 53 54 58 93 7 8 +3586,1 6 55 34 36 37 17 69 +18444,1 6 49 47 47 36 37 19 58 7 4 +16095,5 6 53 54 58 93 7 4 +24504,15 55 53 9 16 36 16 61 16 17 19 13 +9810,1 6 55 34 36 37 19 13 +17030,1 6 57 34 36 37 63 7 8 +25565,1 6 51 52 125 7 8 +21873,5 6 53 71 47 47 36 37 17 11 8 +26575,1 6 51 52 125 7 4 +12784,15 53 9 10 66 7 4 +10795,5 6 88 57 58 56 54 7 4 +12783,15 53 9 10 66 7 8 +26065,5 6 34 42 43 17 3 4 +17770,5 6 88 57 58 56 54 7 8 +343,5 6 34 42 43 17 3 8 +22888,5 6 53 53 88 90 61 16 17 10 54 54 54 7 4 +13976,5 6 29 71 36 37 17 10 30 7 8 +7156,5 6 53 53 88 90 61 16 17 10 54 54 54 7 8 +6205,1 6 53 9 10 27 11 8 +13980,5 6 29 71 36 37 17 10 30 7 4 +8266,1 6 26 57 58 7 8 +8265,1 6 26 57 58 7 4 +17008,1 6 29 64 16 17 35 30 7 8 +4614,1 6 29 64 16 17 35 30 7 4 +18956,5 6 53 57 67 68 7 4 +2347,15 49 61 62 63 7 8 +20442,5 6 53 54 112 7 4 +9432,5 6 53 57 67 68 7 8 +16178,1 6 34 36 37 17 37 50 7 4 +2348,15 49 61 62 63 7 4 +20443,5 6 53 54 112 7 8 +10453,1 6 51 52 58 89 7 8 +707,5 6 84 12 11 85 54 7 4 +6851,5 6 57 34 47 48 35 7 8 +21743,1 6 53 57 58 89 56 54 7 4 +15880,1 6 57 12 16 17 37 50 93 58 7 8 +10281,5 6 53 49 36 37 17 62 10 7 8 +16541,5 6 57 9 16 42 16 17 43 52 58 13 +21069,1 6 53 57 58 89 56 54 7 8 +15881,1 6 57 12 16 17 37 50 93 58 7 4 +10282,5 6 53 49 36 37 17 62 10 7 4 +6850,5 6 57 34 47 48 35 7 4 +7812,15 96 39 36 16 36 16 21 77 78 22 8 +17476,5 6 90 91 89 56 7 4 +20219,5 6 57 58 89 54 54 7 4 +10942,5 6 57 58 89 54 54 7 8 +19271,15 86 9 61 16 61 16 17 62 10 7 4 +19272,15 86 9 61 16 61 16 17 62 10 7 8 +792,5 6 84 12 11 85 54 7 8 +23080,1 6 9 9 9 9 16 17 62 10 7 8 +20998,5 6 90 91 11 87 7 4 +20473,5 6 65 88 57 51 52 7 8 +20383,1 6 84 84 85 7 4 +7954,15 12 26 57 58 58 89 7 8 +26591,1 6 88 88 88 88 9 16 17 11 8 +13319,1 6 53 90 91 66 54 7 8 +16421,15 55 53 71 36 37 17 10 54 7 8 +18704,15 12 26 57 58 58 89 7 4 +12734,1 6 29 9 16 36 37 38 37 48 52 30 7 8 +13775,1 6 67 47 36 37 10 93 7 4 +20384,1 6 84 84 85 7 8 +4383,5 6 90 91 11 87 7 8 +13769,1 6 67 47 36 37 10 93 7 8 +16666,1 6 29 9 16 36 37 38 37 48 52 30 7 4 +12033,5 6 9 39 36 16 17 62 10 7 8 +11213,5 6 65 9 16 17 19 7 4 +25686,1 6 9 10 89 27 66 7 4 +16420,15 55 53 71 36 37 17 10 54 7 4 +11214,5 6 65 9 16 17 19 7 8 +16682,15 57 12 16 21 77 78 22 8 +19589,5 6 57 51 36 37 17 11 8 +24357,5 6 36 37 63 7 4 +16177,1 6 34 36 37 17 37 50 7 8 +24356,5 6 36 37 63 7 8 +12034,5 6 9 39 36 16 17 62 10 7 4 +25292,5 6 64 16 39 36 16 17 62 10 7 8 +23355,5 6 64 16 42 43 17 3 8 +20464,5 6 65 88 71 72 13 +13442,1 12 11 58 54 7 8 +19643,1 6 53 12 16 36 16 17 37 35 7 8 +26097,5 6 49 42 43 17 37 72 7 4 +11886,1 12 11 58 54 7 4 +24422,1 6 9 34 35 13 +18899,5 6 92 31 36 37 17 43 48 32 93 7 4 +24249,1 6 53 31 47 36 37 75 7 4 +20257,5 6 34 47 48 35 11 8 +5536,5 6 34 47 48 35 7 8 +17173,5 6 57 92 12 16 17 43 48 32 93 58 7 4 +15531,1 6 64 36 37 38 37 48 68 54 7 8 +6096,5 6 29 9 16 42 16 17 11 13 +520,1 12 11 14 54 7 4 +15530,1 6 64 36 37 38 37 48 68 54 7 4 +184,1 12 11 14 54 7 8 +6095,5 6 29 9 16 42 16 17 11 8 +21939,1 45 21 22 17 19 56 11 8 +16864,1 6 53 31 36 37 37 35 87 54 7 4 +7597,5 6 84 51 36 37 19 13 +16888,1 6 55 34 36 37 11 8 +17172,5 6 57 92 12 16 17 43 48 32 93 58 7 8 +4579,1 6 53 12 36 37 38 11 8 +6947,15 86 9 16 17 120 7 8 +22242,5 6 84 12 12 16 61 16 17 19 13 +6946,15 86 9 16 17 120 7 4 +20409,5 6 86 88 88 90 16 17 120 7 4 +14684,15 55 53 9 16 17 19 7 4 +1039,15 55 88 57 9 39 36 16 17 11 8 +7072,1 6 53 12 36 37 38 11 13 +14685,15 55 53 9 16 17 19 7 8 +1040,15 55 88 57 9 39 36 16 17 11 13 +21022,15 12 16 36 37 38 37 48 52 13 +15786,5 6 86 88 88 90 16 17 120 7 8 +20616,15 12 16 39 36 16 36 16 17 37 48 72 7 8 +25228,15 55 53 9 16 61 16 17 11 8 +20615,15 12 16 39 36 16 36 16 17 37 48 72 7 4 +21131,5 6 53 31 47 36 37 10 7 4 +9104,1 6 53 55 49 36 37 17 10 7 8 +2776,5 6 49 50 56 7 8 +13894,1 6 31 117 16 17 11 8 +2777,5 6 49 50 56 7 4 +17524,5 6 12 16 17 37 32 7 8 +24215,1 6 76 61 62 17 106 7 8 +17525,5 6 12 16 17 37 32 7 4 +23377,1 6 57 92 51 36 37 10 7 8 +24216,1 6 76 61 62 17 106 7 4 +876,15 88 9 16 36 16 42 16 17 11 13 +26813,1 12 11 14 54 85 54 7 8 +19248,15 12 36 16 17 37 115 68 13 +242,1 6 53 34 35 13 +14007,5 6 64 61 62 17 37 11 7 4 +10019,5 6 64 61 62 17 37 11 7 8 +875,15 88 9 16 36 16 42 16 17 11 8 +6133,5 6 34 47 48 35 7 4 +21740,1 12 16 36 16 17 37 10 7 8 +19721,5 6 105 106 89 7 4 +26376,5 6 92 9 10 56 93 7 8 +13341,1 12 16 36 16 17 37 10 7 4 +8914,1 6 53 65 66 54 7 8 +10286,15 86 9 16 17 37 35 7 4 +9055,1 6 53 65 66 54 7 4 +23456,5 6 57 67 36 37 91 54 7 4 +9033,15 65 88 9 16 17 120 7 4 +12882,5 6 55 67 36 37 69 +9032,15 65 88 9 16 17 120 7 8 +23988,5 6 64 61 62 17 106 54 7 4 +6268,15 57 9 36 16 17 10 7 8 +18134,5 6 64 61 62 17 106 54 7 8 +6269,15 57 9 36 16 17 10 7 4 +14020,1 6 53 9 16 36 16 17 37 72 7 4 +14350,5 6 53 16 17 17 54 54 7 4 +1296,5 6 55 34 36 37 69 +10768,5 6 53 16 17 17 54 54 7 8 +22842,5 6 57 9 16 42 16 17 37 35 7 4 +2075,1 6 86 34 35 13 +5174,1 6 64 16 17 63 54 7 8 +9459,5 6 84 67 68 13 +25849,1 6 64 16 17 63 54 7 4 +10287,15 86 9 16 17 37 35 7 8 +26375,5 6 92 9 10 56 93 7 4 +14021,1 6 53 9 16 36 16 17 37 72 7 8 +25162,5 6 9 16 39 36 16 36 37 38 17 10 7 4 +25165,5 6 9 16 39 36 16 36 37 38 17 10 7 8 +2049,5 6 84 64 16 17 63 85 54 7 4 +20669,1 6 9 16 36 37 38 37 52 85 54 7 4 +2048,5 6 84 64 16 17 63 85 54 7 8 +10051,5 6 49 50 56 11 8 +12538,15 53 16 17 10 7 8 +7688,5 6 9 16 36 16 17 37 48 35 7 8 +7019,5 6 53 9 16 17 37 32 7 8 +577,1 6 64 36 37 38 37 35 54 7 8 +1337,1 6 64 36 37 38 37 35 54 7 4 +12539,15 53 16 17 10 7 4 +240,5 45 46 8 +7020,5 6 53 9 16 17 37 32 7 4 +26023,25 26 27 58 89 58 85 7 4 +14049,5 6 41 88 89 58 11 7 8 +17246,1 6 64 16 36 37 38 17 37 52 7 8 +26022,25 26 27 58 89 58 85 7 8 +17247,1 6 64 16 36 37 38 17 37 52 7 4 +17433,1 6 18 12 16 36 37 38 37 48 68 7 4 +16905,5 6 9 36 16 17 37 48 7 8 +14476,15 9 16 36 16 17 37 108 50 7 8 +3233,1 6 18 12 16 36 37 38 37 48 68 7 8 +21471,15 67 47 48 72 93 58 7 4 +14477,15 9 16 36 16 17 37 108 50 7 4 +16906,5 6 9 36 16 17 37 48 7 4 +25727,15 12 36 39 36 16 42 16 17 37 108 52 7 8 +23557,15 12 36 39 36 16 42 16 17 37 108 52 7 4 +4442,5 6 57 86 87 56 7 8 +21472,15 67 47 48 72 93 58 7 8 +16594,1 6 64 16 42 16 36 16 17 37 48 35 93 58 7 4 +10570,15 57 34 47 48 32 7 8 +16593,1 6 64 16 42 16 36 16 17 37 48 35 93 58 7 8 +21096,15 53 49 50 13 +4466,5 6 88 55 56 56 7 4 +10569,15 57 34 47 48 32 7 4 +12842,1 2 16 17 37 72 89 58 7 4 +9240,15 49 36 37 17 19 58 11 8 +1846,15 96 16 36 16 17 62 10 7 4 +1847,15 96 16 36 16 17 62 10 7 8 +12841,1 2 16 17 37 72 89 58 7 8 +7009,5 6 53 65 9 16 117 118 32 54 7 4 +19099,5 6 53 18 12 34 36 37 17 69 +15999,5 6 12 34 36 37 11 8 +2422,15 34 36 37 10 7 8 +18747,5 6 88 55 56 56 7 8 +2421,15 34 36 37 10 7 4 +21392,5 6 53 18 12 61 16 61 16 17 62 10 7 4 +12643,5 6 53 53 90 91 54 54 7 8 +16739,15 57 9 16 17 10 54 54 7 8 +18357,1 12 39 36 16 17 69 +16738,15 57 9 16 17 10 54 54 7 4 +21391,5 6 53 18 12 61 16 61 16 17 62 10 7 8 +22385,5 6 12 34 36 37 38 91 7 4 +13096,15 34 107 47 36 37 17 11 13 +19844,5 6 53 12 34 36 37 17 37 108 35 7 4 +13095,15 34 107 47 36 37 17 11 8 +9087,15 44 9 16 39 36 39 36 16 17 19 7 8 +16039,1 6 34 42 43 17 37 108 35 54 7 4 +9086,15 44 9 16 39 36 39 36 16 17 19 7 4 +20321,15 49 47 36 37 19 11 56 7 4 +6383,1 6 53 49 47 48 52 54 7 4 +3448,15 9 9 16 17 11 8 +23326,15 49 47 36 37 19 11 56 7 8 +15849,5 6 73 16 42 16 17 19 7 8 +19545,1 6 57 9 16 61 16 17 37 35 7 4 +20112,1 12 36 16 61 16 17 11 8 +3449,15 9 9 16 17 11 13 +26856,1 6 26 88 9 16 36 37 38 17 10 7 4 +7881,5 6 73 16 42 16 17 19 7 4 +21064,5 6 55 55 53 55 56 13 +13587,5 6 51 52 56 11 7 8 +21987,1 6 55 88 51 52 7 8 +19753,5 6 51 52 56 11 7 4 +22244,1 12 39 36 16 17 19 +11356,5 6 12 61 16 17 19 13 +13910,1 12 36 16 17 37 52 7 8 +26110,1 6 55 49 50 56 7 8 +3863,1 6 9 10 110 50 7 8 +3862,1 6 9 10 110 50 7 4 +12117,1 12 36 16 17 37 52 7 4 +2688,116 81 82 8 +21076,1 6 55 53 53 54 56 7 4 +13665,1 6 53 9 16 42 16 17 37 35 54 7 4 +19546,1 6 57 9 16 61 16 17 37 35 7 8 +6972,1 6 55 53 53 54 56 7 8 +17418,5 6 26 55 9 16 17 10 7 4 +979,15 96 16 21 77 78 82 83 8 +19874,15 55 88 57 9 16 17 11 8 +5359,5 6 26 55 9 16 17 10 7 8 +19041,5 6 105 16 17 120 7 4 +4336,1 6 9 16 17 17 10 7 4 +11615,1 6 9 16 17 17 10 7 8 +19042,5 6 105 16 17 120 7 8 +18671,5 6 34 47 36 37 17 3 4 +25514,15 9 16 36 37 38 37 52 54 85 7 8 +25515,15 9 16 36 37 38 37 52 54 85 7 4 +2782,15 12 16 36 37 38 37 50 7 8 +19427,5 6 53 90 16 61 16 17 37 50 7 4 +4471,1 6 9 10 56 89 56 7 8 +17536,40 41 12 11 7 8 +1164,5 6 34 36 37 11 8 +4470,1 6 9 10 56 89 56 7 4 +23224,5 6 64 61 62 17 37 108 115 72 54 7 4 +22919,1 6 88 49 36 37 11 13 +10957,15 12 11 11 54 7 8 +19895,15 12 11 54 85 7 8 +24673,15 57 9 16 117 118 52 11 10 7 8 +19896,15 12 11 54 85 7 4 +1315,1 6 88 49 36 37 11 8 +24956,15 12 11 11 54 7 4 +5950,5 6 34 36 37 11 13 +8848,15 31 42 43 17 37 48 35 54 7 4 +17537,40 41 12 11 7 4 +16231,1 12 11 66 11 7 8 +17500,15 67 47 36 37 10 54 7 8 +8849,15 31 42 43 17 37 48 35 54 7 8 +4023,1 6 57 9 16 61 16 17 62 10 7 4 +12513,5 6 12 51 52 11 8 +17501,15 67 47 36 37 10 54 7 4 +2783,15 12 16 36 37 38 37 50 7 4 +18178,15 9 39 36 16 36 37 38 17 37 35 7 4 +22643,5 6 64 39 36 16 42 16 17 62 10 7 4 +19426,5 6 53 90 16 61 16 17 37 50 7 8 +1900,1 6 9 61 62 48 72 7 4 +14439,1 12 11 66 11 7 4 +16207,1 6 9 16 17 37 72 7 4 +4406,1 6 88 57 58 58 89 7 4 +16384,15 9 61 62 108 50 66 11 7 4 +18177,15 9 39 36 16 36 37 38 17 37 35 7 8 +5573,1 6 44 9 16 17 10 7 8 +20510,5 6 9 16 16 17 43 32 7 8 +13138,1 6 44 9 16 17 10 7 4 +11757,1 6 18 12 16 17 91 7 8 +7103,5 6 71 72 54 7 8 +7102,5 6 71 72 54 7 4 +7241,5 6 18 12 16 17 63 7 8 +4407,1 6 88 57 58 58 89 7 8 +23564,5 6 55 88 9 36 37 10 7 4 +11758,1 6 18 12 16 17 91 7 4 +21626,5 6 55 88 9 36 37 10 7 8 +20507,1 6 9 16 61 16 17 17 10 7 8 +7240,5 6 18 12 16 17 63 7 4 +25690,15 88 9 16 17 37 68 7 4 +26584,5 6 9 10 56 66 58 7 4 +20508,1 6 9 16 61 16 17 17 10 7 4 +23737,5 6 9 10 56 66 58 7 8 +23275,5 6 53 109 110 7 8 +7590,15 57 53 31 42 43 10 7 4 +15627,1 6 55 53 9 16 17 62 10 7 4 +9406,5 6 67 47 48 50 7 8 +20705,1 6 64 61 62 17 62 52 7 4 +20704,1 6 64 61 62 17 62 52 7 8 +3361,5 6 12 65 66 11 7 4 +21340,5 6 84 34 36 37 63 7 4 +7801,5 6 57 9 36 16 61 16 17 37 35 7 8 +12830,5 6 84 34 36 37 63 7 8 +20215,5 6 9 10 58 89 54 54 7 8 +7800,5 6 57 9 36 16 61 16 17 37 35 7 4 +20026,5 6 55 12 88 55 56 89 11 8 +3786,15 88 55 56 13 +13032,1 6 53 12 39 36 16 61 16 17 11 13 +16869,15 86 49 50 13 +22936,1 6 53 55 9 16 42 16 17 63 7 8 +4370,15 71 42 43 17 10 54 7 4 +25689,15 88 9 16 17 37 68 7 8 +9405,5 6 67 47 48 50 7 4 +13031,1 6 53 12 39 36 16 61 16 17 11 8 +23895,15 55 88 57 57 9 36 16 17 10 7 8 +4369,15 71 42 43 17 10 54 7 8 +13450,5 6 84 88 57 12 16 17 19 13 +8675,1 6 55 9 16 36 37 38 10 7 4 +25662,5 6 124 36 37 17 37 48 123 7 8 +14176,5 6 53 51 52 93 7 8 +8676,1 6 55 9 16 36 37 38 10 7 8 +4139,1 6 31 32 89 13 +336,15 9 16 17 10 7 4 +237,1 12 36 16 61 16 17 19 13 +335,15 9 16 17 10 7 8 +14532,5 6 124 36 37 17 37 48 123 7 4 +10303,5 6 57 9 16 36 37 38 37 108 35 54 7 8 +14175,5 6 53 51 52 93 7 4 +17987,15 34 36 16 17 19 33 13 +12288,1 6 34 36 37 38 17 19 13 +17901,1 6 53 51 52 58 54 7 8 +24692,70 16 99 16 39 36 16 17 10 7 8 +26725,1 6 41 88 89 89 7 8 +6493,1 12 9 31 36 37 17 10 54 7 8 +17900,1 6 53 51 52 58 54 7 4 +24691,70 16 99 16 39 36 16 17 10 7 4 +20193,5 6 53 12 36 37 38 17 10 7 8 +20811,1 12 9 31 36 37 17 10 54 7 4 +10750,5 6 53 12 31 32 33 13 +20192,5 6 53 12 36 37 38 17 10 7 4 +8946,5 2 16 17 17 7 8 +13641,5 6 67 114 36 37 10 7 8 +800,15 71 47 36 37 17 11 8 +13932,5 6 34 47 36 37 69 +13645,5 6 67 114 36 37 10 7 4 +17077,5 6 51 114 36 37 11 13 +801,15 71 47 36 37 17 11 13 +15692,1 6 76 61 62 17 37 52 85 54 7 4 +22680,5 6 57 9 16 36 37 38 37 108 35 54 7 4 +26644,15 9 16 36 37 38 37 108 35 7 4 +252,5 6 67 68 13 +26643,15 9 16 36 37 38 37 108 35 7 8 +14843,15 105 61 62 17 37 52 66 93 7 8 +20057,5 6 55 12 51 47 48 50 7 8 +23471,96 16 39 36 16 21 77 78 22 8 +8945,5 2 16 17 17 7 4 +10040,1 6 76 61 62 17 37 52 85 54 7 8 +23488,15 88 55 12 16 36 37 38 17 11 8 +16953,5 6 9 16 39 36 16 42 16 17 62 10 7 8 +25283,1 6 88 65 88 9 16 17 10 7 8 +25591,15 55 53 9 16 17 37 50 7 4 +14844,15 105 61 62 17 37 52 66 93 7 4 +16416,5 6 9 16 39 36 16 42 16 17 62 10 7 4 +7270,15 55 53 9 16 17 37 50 7 8 +26667,1 6 57 9 16 39 36 16 117 118 115 52 7 4 +24631,1 6 88 65 88 9 16 17 10 7 4 +26666,1 6 57 9 16 39 36 16 117 118 115 52 7 8 +20214,5 6 9 10 58 89 54 54 7 4 +17076,5 6 51 114 36 37 11 8 +2293,15 65 67 61 62 63 7 4 +6550,5 6 57 53 51 36 37 17 3 4 +2292,15 65 67 61 62 63 7 8 +3899,5 6 12 65 66 11 7 8 +1554,15 57 9 16 36 16 17 74 7 4 +12407,5 6 53 9 10 89 7 8 +8137,5 6 34 36 37 17 59 +16674,5 6 53 9 10 89 7 4 +15441,1 6 71 42 43 17 10 93 7 4 +1555,15 57 9 16 36 16 17 74 7 8 +3143,15 55 56 7 4 +7214,5 6 53 9 10 66 54 7 8 +3142,15 55 56 7 8 +13126,5 6 53 18 12 16 17 37 48 50 7 8 +15601,5 6 9 10 58 89 56 54 85 54 7 8 +16573,1 6 57 92 31 32 93 58 7 8 +1679,5 6 34 36 37 19 13 +358,15 55 12 16 17 19 13 +2770,5 6 34 36 37 17 69 +12131,15 55 12 55 55 57 12 16 36 37 38 37 35 87 7 8 +16108,1 6 65 71 47 48 50 7 8 +13134,5 6 53 18 12 16 17 37 48 50 7 4 +16572,1 6 57 92 31 32 93 58 7 4 +23858,5 6 65 57 58 66 7 8 +12130,15 55 12 55 55 57 12 16 36 37 38 37 35 87 7 4 +6997,5 6 53 9 10 66 54 7 4 +2536,1 6 57 9 16 17 11 8 +23675,5 6 65 57 58 66 7 4 +2537,1 6 57 9 16 17 11 13 +13760,5 6 49 47 47 36 37 17 10 54 7 4 +19557,1 6 55 71 47 48 68 7 8 +7542,1 6 65 57 121 9 16 17 10 7 4 +15438,1 6 71 42 43 17 10 93 7 8 +7543,1 6 65 57 121 9 16 17 10 7 8 +9400,1 6 9 10 123 7 4 +9401,1 6 9 10 123 7 8 +18268,1 6 90 61 62 17 10 7 8 +16858,1 6 53 31 36 37 17 69 +1841,1 6 90 61 62 17 10 7 4 +1879,1 6 53 31 36 37 19 13 +20256,5 6 51 42 43 17 37 35 7 4 +10174,1 6 9 16 17 100 7 4 +9528,5 6 51 42 43 17 37 35 7 8 +6826,15 86 65 9 16 17 10 7 8 +6825,15 86 65 9 16 17 10 7 4 +14313,5 6 53 9 10 11 54 7 8 +25114,1 6 53 57 34 35 54 7 8 +12692,5 6 53 9 10 11 54 7 4 +21431,1 12 16 39 36 16 36 16 36 37 38 17 11 8 +11173,5 6 55 56 11 56 7 4 +15604,5 6 9 10 58 89 56 54 85 54 7 4 +4423,1 6 64 16 61 16 17 37 35 54 7 8 +16044,15 9 16 17 37 35 54 7 8 +331,15 9 16 17 11 7 4 +16045,15 9 16 17 37 35 54 7 4 +10173,1 6 9 16 17 100 7 8 +7604,15 96 36 39 36 16 17 37 52 85 7 4 +12936,1 6 88 57 9 16 36 37 38 17 74 7 8 +21283,15 34 36 37 17 37 17 35 7 8 +10194,15 42 43 17 37 35 54 7 8 +1329,15 9 16 17 11 7 8 +3728,15 96 36 16 21 77 78 22 79 4 +7605,15 96 36 39 36 16 17 37 52 85 7 8 +21282,15 34 36 37 17 37 17 35 7 4 +4424,1 6 64 16 61 16 17 37 35 54 7 4 +9181,15 12 16 36 16 39 36 16 17 37 35 7 4 +10195,15 42 43 17 37 35 54 7 4 +22588,1 6 57 53 12 16 36 37 38 17 37 52 7 8 +6118,5 6 12 65 66 11 27 28 +9180,15 12 16 36 16 39 36 16 17 37 35 7 8 +25688,15 65 26 88 9 16 17 37 68 7 8 +3035,5 6 67 68 56 11 7 8 +3039,5 6 67 68 56 11 7 4 +23783,1 6 84 18 12 16 17 37 72 85 7 8 +3098,5 6 9 16 36 16 17 37 10 7 4 +14900,5 6 29 9 16 17 11 7 4 +18304,5 6 88 26 51 47 48 72 7 4 +26602,1 6 55 57 53 31 36 37 17 10 7 8 +16795,5 6 29 9 16 17 11 7 8 +20784,1 6 55 57 53 31 36 37 17 10 7 4 +25617,1 6 55 53 88 9 16 61 16 17 10 7 8 +16766,15 55 12 73 16 61 16 36 16 17 11 8 +1110,1 6 64 61 62 17 37 50 54 7 4 +9566,5 6 9 16 36 16 17 37 10 7 8 +16767,15 55 12 73 16 61 16 36 16 17 11 13 +1254,1 6 64 61 62 17 37 50 54 7 8 +10483,5 6 12 51 52 7 8 +12074,5 6 12 51 52 7 4 +15494,1 6 90 16 17 37 72 85 7 4 +12247,5 6 51 36 37 17 19 13 +964,1 6 90 16 17 37 72 85 7 8 +21869,5 6 51 47 48 72 54 7 8 +23831,15 49 114 115 35 87 7 4 +24600,1 6 53 9 16 36 16 17 19 7 4 +13011,5 6 53 9 10 33 54 7 8 +18647,5 6 55 56 66 56 7 8 +5530,1 6 51 47 42 43 17 37 72 56 7 8 +15384,5 6 34 36 37 10 54 54 7 4 +11115,5 6 55 56 66 56 7 4 +5949,1 6 51 47 42 43 17 37 72 56 7 4 +5837,1 6 57 53 55 56 13 +6210,5 6 34 36 37 10 54 54 7 8 +16302,5 6 55 53 12 16 39 36 16 17 62 10 7 8 +11606,70 16 36 16 42 16 17 37 35 7 8 +23830,15 49 114 115 35 87 7 8 +26799,1 6 88 55 56 58 89 13 +2393,5 6 55 53 12 16 39 36 16 17 62 10 7 4 +19987,5 6 53 9 10 33 54 7 4 +2918,15 55 9 16 36 16 17 37 72 7 8 +17750,5 6 51 42 43 17 62 10 7 8 +22167,5 6 51 42 43 17 62 10 7 4 +11607,70 16 36 16 42 16 17 37 35 7 4 +5786,1 6 71 42 43 17 11 8 +18622,15 57 55 55 9 16 17 11 8 +12975,5 6 53 67 47 107 36 37 17 63 7 8 +2919,15 55 9 16 36 16 17 37 72 7 4 +23078,5 6 53 67 47 107 36 37 17 63 7 4 +2644,1 12 9 16 17 37 48 72 54 7 4 +22120,5 6 53 9 10 54 85 7 4 +13835,15 9 16 17 37 72 66 11 8 +18623,15 57 55 55 9 16 17 11 13 +19910,5 6 53 9 10 54 85 7 8 +24695,5 6 18 12 16 17 43 32 10 7 4 +6595,15 55 12 16 17 11 8 +16235,15 55 53 55 51 36 37 94 +15283,15 34 107 107 36 37 17 10 7 4 +24694,5 6 18 12 16 17 43 32 10 7 8 +4066,5 6 9 10 58 89 7 4 +12336,5 6 34 36 37 17 17 +19019,5 6 53 9 61 62 63 7 8 +2645,1 12 9 16 17 37 48 72 54 7 8 +6933,5 6 34 36 37 17 19 +15282,15 34 107 107 36 37 17 10 7 8 +6596,15 55 12 16 17 11 13 +23763,15 53 57 58 58 54 7 4 +26292,1 6 53 55 12 49 50 56 7 4 +23762,15 53 57 58 58 54 7 8 +590,5 20 21 22 46 4 +16525,1 6 53 12 9 16 17 37 50 7 8 +26291,1 6 53 55 12 49 50 56 7 8 +12967,5 6 113 61 62 17 10 7 4 +2726,1 6 57 92 12 16 61 16 17 19 13 +14841,15 9 61 62 106 7 4 +412,5 20 21 22 46 8 +16526,1 6 53 12 9 16 17 37 50 7 4 +12968,5 6 113 61 62 17 10 7 8 +12284,15 65 49 36 37 17 10 7 4 +14840,15 9 61 62 106 7 8 +21325,15 51 47 36 37 10 85 93 7 4 +15114,1 6 53 9 61 16 17 19 13 +25899,15 73 16 42 16 17 37 72 7 8 +25900,15 73 16 42 16 17 37 72 7 4 +21324,15 51 47 36 37 10 85 93 7 8 +5785,15 71 42 43 17 37 35 7 8 +2285,5 6 67 68 66 7 4 +5784,15 71 42 43 17 37 35 7 4 +11772,15 96 16 36 16 17 37 35 7 8 +25142,1 6 71 47 48 35 7 8 +8146,15 96 16 36 16 17 37 35 7 4 +22160,1 6 9 16 42 16 17 37 35 7 8 +14483,5 6 57 9 16 17 93 63 7 4 +22159,1 6 9 16 42 16 17 37 35 7 4 +25870,5 6 57 9 16 17 93 63 7 8 +2090,5 45 21 22 17 37 108 35 7 4 +1668,5 45 21 22 17 37 108 35 7 8 +16628,15 9 16 17 63 54 7 4 +18076,1 6 9 10 11 85 54 7 8 +20490,5 6 57 49 107 36 37 17 11 8 +16627,15 9 16 17 63 54 7 8 +14317,1 6 9 10 11 85 54 7 4 +23679,5 6 55 12 26 57 58 11 8 +25308,15 57 55 67 36 37 11 8 +21868,5 6 51 47 48 72 54 7 4 +15339,1 6 57 53 9 16 61 16 17 62 10 7 4 +10707,15 55 57 12 16 21 77 78 22 79 4 +25309,15 57 55 67 36 37 11 13 +11870,15 55 88 57 58 56 7 4 +13193,5 6 9 16 17 43 48 32 93 7 8 +6481,1 6 53 73 74 56 13 +8519,5 6 9 10 89 66 56 7 8 +11869,15 55 88 57 58 56 7 8 +11939,5 6 9 10 89 66 56 7 4 +8182,5 6 55 88 89 89 56 7 8 +22960,1 6 71 47 48 35 7 4 +6689,5 6 55 88 89 89 56 7 4 +22076,1 6 53 12 12 61 16 17 19 13 +19652,5 6 51 47 48 50 54 7 4 +1695,1 6 34 107 36 37 17 19 13 +21845,15 86 34 88 90 16 17 11 8 +3942,1 6 64 61 62 17 37 72 54 7 4 +10607,1 6 57 53 9 16 61 16 17 62 10 7 8 +8520,1 6 67 61 62 10 7 8 +3943,1 6 64 61 62 17 37 72 54 7 8 +25582,1 6 12 34 114 115 35 11 8 +10077,1 6 67 61 62 10 7 4 +6431,5 6 34 47 36 37 17 11 8 +2256,5 6 86 57 58 89 7 8 +17224,1 6 64 61 62 37 48 123 54 7 4 +2257,5 6 86 57 58 89 7 4 +22903,15 55 56 11 8 +25357,1 6 9 16 42 16 17 62 10 7 4 +9035,1 6 119 16 17 10 7 4 +22359,15 53 9 16 17 43 32 54 54 7 8 +16838,15 96 16 36 16 17 37 48 35 54 7 4 +9036,1 6 119 16 17 10 7 8 +16837,15 96 16 36 16 17 37 48 35 54 7 8 +10790,5 6 55 9 16 42 16 17 10 7 4 +10789,5 6 55 9 16 42 16 17 10 7 8 +147,60 16 36 16 17 10 7 4 +17071,5 6 88 51 52 7 8 +17225,1 6 64 61 62 37 48 123 54 7 8 +17067,5 6 88 51 52 7 4 +20678,5 6 9 36 16 17 37 52 85 54 7 4 +12188,5 6 53 55 53 12 16 17 11 8 +146,60 16 36 16 17 10 7 8 +9263,5 6 55 55 57 65 66 56 7 8 +25211,1 12 16 39 36 16 61 16 17 37 48 35 7 8 +20679,5 6 9 36 16 17 37 52 85 54 7 8 +12319,5 6 9 16 17 118 17 10 7 4 +1723,15 55 12 55 56 11 56 7 4 +22828,95 36 16 17 37 35 11 54 7 8 +1502,5 6 57 57 57 65 9 16 17 11 8 +9997,5 6 9 16 17 118 17 10 7 8 +10836,5 6 53 12 36 61 16 17 11 54 7 4 +25184,15 12 16 61 16 61 16 17 19 13 +9846,95 36 16 17 37 35 11 54 7 4 +22289,5 6 67 107 108 72 7 4 +1719,15 55 12 55 56 11 56 7 8 +4692,1 6 53 34 107 108 35 54 54 7 8 +12951,1 6 57 92 12 16 61 16 17 11 13 +2039,15 57 9 16 61 16 17 10 7 8 +18676,15 12 39 36 16 61 16 36 37 38 62 10 7 4 +14955,1 6 57 92 12 16 61 16 17 11 7 4 +16017,1 6 12 16 36 16 17 37 48 35 7 4 +2038,15 57 9 16 61 16 17 10 7 4 +3657,5 6 55 12 11 13 +25041,1 6 12 16 36 16 17 37 48 35 7 8 +24634,15 12 9 34 35 7 8 +8452,1 6 9 16 17 37 48 32 7 8 +6787,5 6 67 68 66 7 8 +18675,15 12 39 36 16 61 16 36 37 38 62 10 7 8 +24633,15 12 9 34 35 7 4 +277,15 9 16 36 16 61 16 17 37 32 7 8 +20612,15 12 16 39 36 16 36 16 17 37 108 52 7 4 +20355,1 6 84 57 9 16 17 37 72 85 7 4 +7141,1 6 84 57 9 16 17 37 72 85 7 8 +1216,15 49 36 37 17 37 52 54 7 4 +25288,1 6 9 16 17 37 48 32 7 4 +6182,15 55 67 42 43 17 37 50 54 7 4 +6432,5 6 34 47 36 37 17 11 13 +1215,15 49 36 37 17 37 52 54 7 8 +278,15 9 16 36 16 61 16 17 37 32 7 4 +20613,15 12 16 39 36 16 36 16 17 37 108 52 7 8 +6181,15 55 67 42 43 17 37 50 54 7 8 +12950,1 6 57 92 12 16 61 16 17 11 8 +22845,1 6 67 47 42 43 17 106 7 8 +18317,1 6 67 47 42 43 17 106 7 4 +25190,15 55 56 56 11 8 +644,95 16 36 37 38 17 63 7 8 +17791,15 88 57 58 89 58 13 +5938,5 6 90 16 17 91 7 4 +8843,1 6 9 36 16 17 37 108 48 68 13 +13077,1 6 64 36 16 17 10 85 54 7 4 +11602,1 6 12 16 36 16 17 43 32 10 7 8 +8386,15 65 86 87 13 +26310,5 6 26 29 30 7 8 +12219,15 53 64 36 37 38 37 48 68 54 7 4 +8869,15 53 64 36 37 38 37 48 68 54 7 8 +20924,5 6 12 12 16 36 37 38 37 35 7 8 +5937,5 6 90 16 17 91 7 8 +20925,5 6 12 12 16 36 37 38 37 35 7 4 +26311,5 6 26 29 30 7 4 +21527,5 6 64 16 117 118 35 54 7 4 +9526,5 6 51 42 43 17 43 52 7 4 +21528,5 6 64 16 117 118 35 54 7 8 +13603,5 6 55 88 55 56 56 7 4 +643,95 16 36 37 38 17 63 7 4 +2900,5 6 51 42 43 17 43 52 7 8 +24913,5 6 92 49 36 37 10 7 8 +6480,15 55 56 58 13 +13008,5 6 53 31 47 36 37 19 13 +25362,1 6 44 9 16 17 11 13 +11703,1 6 55 51 42 43 17 10 54 7 8 +25361,1 6 44 9 16 17 11 8 +12652,15 53 12 16 61 16 17 19 13 +21581,15 12 16 39 36 16 36 37 38 17 37 52 7 8 +21582,15 12 16 39 36 16 36 37 38 17 37 52 7 4 +16125,5 6 109 110 7 8 +14155,5 6 109 110 7 4 +15808,15 12 16 36 37 38 17 11 66 7 4 +23669,5 6 55 12 34 35 13 +18584,5 6 88 51 42 43 17 10 93 58 7 4 +15258,5 6 84 67 47 36 37 17 10 85 54 7 4 +11959,5 6 84 67 47 36 37 17 10 85 54 7 8 +14960,5 6 65 9 16 42 16 17 37 35 7 8 +19026,15 34 117 16 17 19 7 8 +14438,1 12 11 66 11 8 +2608,1 6 57 49 50 7 8 +23413,5 6 65 9 16 42 16 17 37 35 7 4 +3960,1 6 64 36 16 17 10 85 54 7 8 +2605,1 6 57 49 50 7 4 +19025,15 34 117 16 17 19 7 4 +24477,5 6 31 47 48 72 54 54 7 4 +12843,1 6 71 36 16 17 63 7 8 +24025,1 6 71 36 16 17 63 7 4 +25193,5 6 12 57 55 55 67 61 62 63 7 8 +17943,5 6 34 36 16 17 62 10 7 8 +4124,15 55 12 57 96 36 16 17 37 72 7 8 +10290,5 6 57 9 39 36 16 17 63 7 8 +4123,15 55 12 57 96 36 16 17 37 72 7 4 +10993,1 6 31 47 48 35 30 7 8 +25708,5 6 55 53 92 12 36 37 38 11 8 +10992,1 6 31 47 48 35 30 7 4 +16963,5 6 26 9 16 17 11 7 8 +19423,5 6 9 9 61 62 32 54 7 4 +10289,5 6 57 9 39 36 16 17 63 7 4 +14992,5 6 9 9 61 62 32 54 7 8 +25780,1 6 36 37 17 11 85 54 7 8 +16946,5 6 34 47 48 32 30 7 8 +19331,1 6 36 37 17 11 85 54 7 4 +24776,15 34 36 16 17 37 52 7 8 +12674,1 6 9 16 36 16 17 37 68 54 7 8 +24161,5 6 64 61 62 17 118 17 3 4 +17561,1 6 53 18 12 16 61 16 17 10 54 7 8 +17562,1 6 53 18 12 16 61 16 17 10 54 7 4 +24162,5 6 64 61 62 17 118 17 3 8 +18720,1 6 53 90 16 36 16 17 63 7 8 +15009,1 6 53 71 47 48 72 7 8 +23527,15 53 51 36 37 17 10 54 54 7 4 +16755,5 6 64 16 117 118 72 66 11 8 +23528,15 53 51 36 37 17 10 54 54 7 8 +26313,1 6 29 55 56 30 27 28 +11946,1 6 76 16 36 37 38 17 10 54 54 7 8 +11947,1 6 76 16 36 37 38 17 10 54 54 7 4 +7162,1 6 53 71 47 48 72 7 4 +18769,1 6 86 9 16 42 16 17 10 7 8 +17342,5 6 53 31 36 37 75 7 8 +18775,1 6 86 9 16 42 16 17 10 7 4 +13817,5 6 53 31 36 37 75 7 4 +18149,15 34 36 16 17 37 52 7 4 +7045,1 6 86 53 9 16 17 11 13 +7044,1 6 86 53 9 16 17 11 8 +12394,1 6 55 51 61 62 10 7 4 +22726,5 6 64 16 42 16 17 10 93 7 4 +23479,1 6 26 57 58 66 11 7 4 +22725,5 6 64 16 42 16 17 10 93 7 8 +9873,1 6 26 57 58 66 11 7 8 +2659,1 6 84 88 89 85 7 4 +12380,1 12 16 36 16 17 19 +2662,1 6 84 88 89 85 7 8 +26709,15 53 88 9 16 17 11 8 +280,5 2 16 17 11 13 +12060,15 57 88 88 9 16 17 10 7 8 +24283,15 57 53 71 36 37 17 10 54 7 4 +12061,15 57 88 88 9 16 17 10 7 4 +21072,1 6 12 88 57 9 16 17 10 7 4 +8362,5 6 26 88 51 36 37 17 11 8 +16983,15 96 16 36 37 38 17 19 89 11 56 7 4 +14756,5 6 34 36 37 17 37 52 7 4 +17774,1 6 65 66 11 13 +5849,15 57 53 71 36 37 17 10 54 7 8 +24439,1 6 12 16 17 37 68 7 8 +17249,1 6 65 66 11 8 +18487,15 71 36 37 17 91 85 7 8 +14777,15 9 61 62 32 7 4 +18486,15 71 36 37 17 91 85 7 4 +14776,15 9 61 62 32 7 8 +5671,15 57 9 16 17 37 50 7 8 +15854,5 6 53 12 11 14 54 7 4 +26073,1 6 51 52 27 89 7 8 +5672,15 57 9 16 17 37 50 7 4 +9916,1 6 51 52 27 89 7 4 +3521,5 6 57 31 32 58 7 4 +8184,5 6 53 18 9 16 17 19 7 4 +9362,5 6 57 57 49 50 7 8 +20635,5 6 53 18 9 16 17 19 7 8 +21242,5 6 31 32 56 54 7 4 +9363,5 6 57 57 49 50 7 4 +25712,5 6 53 57 58 89 54 54 7 8 +5777,1 12 16 36 16 17 69 +12675,1 6 9 16 36 16 17 37 68 54 7 4 +19831,1 6 71 36 16 42 16 17 11 8 +19510,1 6 12 57 58 89 58 66 56 7 4 +14734,15 57 53 31 36 37 11 8 +15105,15 9 36 16 17 37 68 7 4 +18891,15 9 36 16 17 37 48 72 85 54 7 4 +25191,15 55 56 56 11 7 8 +10589,15 55 12 55 88 57 58 11 56 7 8 +14746,1 6 55 34 107 107 47 48 35 7 4 +18892,15 9 36 16 17 37 48 72 85 54 7 8 +19689,5 6 53 9 36 16 61 16 17 10 7 4 +14087,5 6 53 9 36 16 61 16 17 10 7 8 +22501,15 9 36 16 17 37 68 7 8 +21243,5 6 31 32 56 54 7 8 +10124,1 6 53 18 12 16 61 16 17 37 35 11 8 +25855,5 6 57 9 36 16 36 16 17 37 72 7 8 +10439,1 6 16 17 7 4 +10458,1 6 88 57 51 36 37 10 7 8 +10613,5 6 71 16 36 37 17 11 8 +6316,15 55 12 55 88 57 58 11 56 7 4 +7997,5 6 84 57 58 85 54 7 8 +16344,5 6 41 12 26 9 16 17 10 7 8 +24871,1 6 12 34 36 37 10 7 4 +26386,5 6 57 31 32 58 7 8 +7998,5 6 84 57 58 85 54 7 4 +17419,5 6 41 12 26 9 16 17 10 7 4 +26181,5 6 57 9 36 16 36 16 17 37 72 7 4 +10438,1 6 16 17 7 8 +25448,1 6 57 55 67 68 13 +50,1 6 29 31 32 33 13 +9990,1 6 90 91 11 87 7 8 +17253,5 6 71 114 115 52 7 4 +26613,1 6 67 47 48 48 52 7 4 +23627,5 6 71 114 115 52 7 8 +11752,1 6 53 9 16 36 16 61 16 17 10 54 7 4 +21059,1 6 105 61 62 17 37 52 66 93 7 4 +26579,1 6 67 47 48 48 52 7 8 +26297,1 6 55 49 47 48 32 7 4 +14993,1 6 53 9 16 36 16 61 16 17 10 54 7 8 +23066,5 6 12 57 9 16 39 36 16 17 19 7 8 +13683,5 6 9 16 36 16 61 16 17 19 11 54 7 8 +14638,15 9 61 62 32 11 8 +14639,15 9 61 62 32 11 13 +7201,5 6 65 57 26 9 16 17 10 7 4 +1702,1 6 9 10 58 11 8 +15483,5 6 84 73 74 89 13 +19348,1 6 64 16 36 16 42 16 17 37 72 7 8 +23828,1 6 64 16 36 16 42 16 17 37 72 7 4 +3869,5 6 9 10 110 50 7 8 +7200,5 6 65 57 26 9 16 17 10 7 8 +3861,5 6 9 10 110 50 7 4 +13791,1 6 53 12 16 17 37 35 54 7 8 +21317,1 6 84 71 36 37 10 85 93 7 8 +21579,5 6 34 36 37 17 37 52 7 8 +21762,5 6 76 36 16 36 16 61 16 17 19 7 8 +13792,1 6 53 12 16 17 37 35 54 7 4 +6542,5 6 64 16 42 16 17 19 7 4 +892,5 6 64 16 42 16 17 19 7 8 +5117,1 12 11 66 7 4 +227,5 2 16 17 11 8 +2480,1 12 11 66 7 8 +14671,5 6 64 61 62 17 37 72 11 8 +14698,1 6 55 53 12 16 17 62 10 7 8 +10604,1 6 55 53 12 16 17 62 10 7 4 +25474,5 6 57 9 36 37 38 37 108 35 54 7 4 +19701,1 6 55 53 57 9 16 17 10 54 7 8 +19110,15 88 89 54 7 4 +12409,1 6 53 9 10 89 7 4 +7641,1 6 9 10 66 56 7 4 +19111,15 88 89 54 7 8 +17475,1 6 90 91 89 56 7 4 +12408,1 6 53 9 10 89 7 8 +7640,1 6 9 10 66 56 7 8 +7741,1 6 64 16 61 16 17 10 7 8 +6379,15 55 12 57 96 16 21 77 78 22 79 4 +12022,1 6 64 16 61 16 17 10 7 4 +24645,15 55 53 12 16 61 16 36 16 17 11 8 +15673,1 6 84 88 89 13 +9195,15 96 16 36 16 39 36 16 17 19 7 4 +9196,15 96 16 36 16 39 36 16 17 19 7 8 +22508,70 16 17 63 54 7 8 +14738,1 6 55 34 35 13 +15261,15 49 36 37 17 75 7 4 +12645,15 53 90 91 54 54 7 4 +22507,70 16 17 63 54 7 4 +15260,15 49 36 37 17 75 7 8 +291,1 6 9 10 58 7 4 +25964,1 6 31 32 58 7 4 +12644,15 53 90 91 54 54 7 8 +142,1 6 9 10 58 7 8 +25965,1 6 31 32 58 7 8 +1905,15 55 71 47 61 62 17 75 7 4 +24912,5 6 53 49 50 93 7 8 +1904,15 55 71 47 61 62 17 75 7 8 +6831,1 6 9 10 11 56 7 4 +10172,5 6 9 16 17 100 7 8 +18516,5 6 55 53 34 35 54 7 8 +3659,1 6 9 10 11 56 7 8 +15157,5 6 9 16 17 100 7 4 +14181,5 6 53 49 50 93 7 4 +14551,5 6 96 36 37 38 19 11 8 +26042,5 6 92 9 16 36 37 38 17 63 93 7 8 +10906,15 51 36 37 17 63 7 8 +17740,1 6 12 16 39 36 16 42 16 17 19 7 4 +10905,15 51 36 37 17 63 7 4 +2757,1 6 53 18 12 16 61 16 17 62 10 7 4 +4022,1 6 53 18 12 16 61 16 17 62 10 7 8 +7862,5 6 64 61 62 37 108 35 54 7 8 +10443,5 6 16 17 17 54 54 7 8 +16390,15 57 53 67 36 37 17 10 7 8 +1038,1 6 55 88 57 9 39 36 16 17 11 8 +7574,5 6 53 51 36 37 11 8 +7616,5 6 16 17 17 54 54 7 4 +16391,15 57 53 67 36 37 17 10 7 4 +8583,5 6 55 51 36 37 17 11 8 +11469,5 6 9 16 17 32 7 4 +18019,70 16 17 74 7 4 +8976,5 6 55 53 9 16 39 36 16 17 91 7 8 +2974,15 55 12 55 56 13 +10088,1 6 18 12 16 17 62 68 7 4 +18322,70 16 17 74 7 8 +13589,5 6 55 53 9 16 39 36 16 17 91 7 4 +10087,1 6 18 12 16 17 62 68 7 8 +20095,5 6 9 16 17 32 7 8 +21185,1 6 64 16 42 16 17 75 7 8 +14113,1 6 64 16 42 16 17 75 7 4 +169,1 6 65 66 7 8 +993,1 6 53 54 56 7 4 +24754,1 6 9 16 17 43 48 35 30 7 4 +3397,1 6 65 66 7 4 +22536,1 6 57 57 65 9 16 17 11 8 +20128,5 6 53 49 36 37 17 63 7 8 +16379,5 6 12 65 49 107 108 52 66 11 8 +20129,5 6 53 49 36 37 17 63 7 4 +24825,5 6 71 36 37 17 100 7 4 +11876,15 55 57 57 9 16 36 37 38 37 72 7 4 +25548,1 6 34 36 37 38 17 11 8 +10749,1 6 53 12 31 32 33 13 +1239,1 6 53 54 56 7 8 +11877,15 55 57 57 9 16 36 37 38 37 72 7 8 +24020,1 6 88 12 26 9 16 17 19 13 +3752,15 12 11 23 7 8 +3753,15 12 11 23 7 4 +12661,5 6 96 36 37 38 19 7 8 +12662,5 6 96 36 37 38 19 7 4 +19092,1 6 31 117 16 17 63 7 4 +23973,1 6 71 36 37 17 37 32 54 7 8 +23974,1 6 71 36 37 17 37 32 54 7 4 +9589,1 6 86 87 54 7 4 +17673,5 6 51 36 37 17 19 58 11 8 +19093,1 6 31 117 16 17 63 7 8 +9223,1 6 53 86 87 7 8 +14024,1 6 51 36 37 17 37 52 7 4 +17796,15 55 31 36 37 11 13 +20072,5 6 12 65 9 16 17 37 35 7 4 +17795,15 55 31 36 37 11 8 +22717,15 44 9 16 17 37 50 7 4 +3156,15 55 53 53 54 7 8 +13621,1 6 12 49 36 37 38 11 13 +534,5 6 51 36 37 10 7 4 +3157,15 55 53 53 54 7 4 +9590,1 6 86 87 54 7 8 +24004,5 6 88 26 9 16 17 10 7 8 +1213,5 6 51 36 37 10 7 8 +5961,1 6 53 86 87 7 4 +10517,15 71 109 110 56 11 56 7 8 +14023,1 6 51 36 37 17 37 52 7 8 +20071,5 6 12 65 9 16 17 37 35 7 8 +22716,15 44 9 16 17 37 50 7 8 +4810,5 6 86 88 9 16 17 10 7 4 +24569,5 6 88 26 9 16 17 10 7 4 +9729,1 6 12 49 36 37 38 11 8 +20325,15 55 12 96 36 16 17 37 48 50 7 4 +26574,5 6 12 16 39 36 16 21 77 78 82 83 8 +24975,1 6 64 16 36 16 61 16 17 10 7 4 +17530,5 6 12 16 17 10 85 54 7 4 +24974,1 6 64 16 36 16 61 16 17 10 7 8 +6109,1 12 26 9 16 17 10 30 7 8 +21781,1 6 12 36 37 17 91 7 4 +11960,1 12 26 9 16 17 10 30 7 4 +24583,5 6 57 9 16 17 43 35 54 7 8 +26007,1 6 12 36 37 17 91 7 8 +19462,5 6 57 9 16 17 43 35 54 7 4 +12741,5 6 64 16 36 37 38 37 48 52 30 7 4 +12742,5 6 64 16 36 37 38 37 48 52 30 7 8 +7645,5 6 86 9 39 36 16 17 10 7 4 +5404,70 16 36 37 38 17 37 50 54 7 4 +20725,1 6 88 57 57 9 16 17 11 8 +20157,1 6 53 12 34 36 37 63 54 7 4 +23104,5 6 86 9 39 36 16 17 10 7 8 +26040,1 6 53 12 34 36 37 63 54 7 8 +2564,15 49 42 43 17 11 13 +15373,15 88 9 16 17 37 48 35 7 8 +3838,1 6 53 16 16 17 10 7 4 +2563,15 49 42 43 17 11 8 +14768,5 6 12 16 17 10 85 54 7 8 +19201,1 6 88 65 9 16 42 16 17 37 35 87 7 4 +11354,1 45 21 22 17 37 50 11 8 +15374,15 88 9 16 17 37 48 35 7 4 +7528,1 6 88 65 9 16 42 16 17 37 35 87 7 8 +3837,1 6 53 16 16 17 10 7 8 +5403,70 16 36 37 38 17 37 50 54 7 8 +11065,15 57 53 9 10 27 7 4 +9039,5 6 88 9 16 17 120 7 4 +9038,5 6 88 9 16 17 120 7 8 +20559,5 6 34 35 54 54 7 4 +16962,15 57 53 9 10 27 7 8 +20560,5 6 34 35 54 54 7 8 +12354,5 6 53 9 16 36 16 17 37 50 85 7 8 +8580,15 44 34 47 48 48 35 54 54 7 8 +2258,5 6 53 54 58 87 7 4 +8581,15 44 34 47 48 48 35 54 54 7 4 +10842,5 6 53 51 36 37 17 59 +443,5 6 84 65 66 13 +6976,5 6 53 90 91 54 54 7 4 +5476,1 6 57 9 16 17 63 7 8 +6977,5 6 53 90 91 54 54 7 8 +11638,5 6 53 51 36 37 17 69 +7202,1 6 57 9 16 17 63 7 4 +20910,1 6 55 57 9 16 17 62 10 7 8 +13541,5 6 53 51 36 37 19 13 +20911,1 6 55 57 9 16 17 62 10 7 4 +14823,5 6 65 71 61 62 106 7 8 +21196,1 6 55 12 57 58 56 11 56 7 8 +360,5 6 53 71 72 13 +19807,1 6 55 12 57 58 56 11 56 7 4 +14344,5 6 90 16 17 37 35 7 4 +20791,1 6 55 53 90 91 66 54 7 8 +14345,5 6 90 16 17 37 35 7 8 +25499,1 6 55 53 90 91 66 54 7 4 +1876,1 45 21 22 17 37 50 7 8 +15439,5 6 71 42 43 17 10 93 7 8 +15755,1 6 9 16 36 37 38 37 48 50 7 8 +21556,1 6 12 9 16 36 16 61 16 17 37 35 54 7 8 +14444,1 6 12 65 12 71 117 16 17 11 8 +15440,5 6 71 42 43 17 10 93 7 4 +11441,15 53 53 16 17 17 54 54 7 8 +10638,1 6 64 16 36 16 17 37 48 72 7 8 +11937,1 6 67 36 37 63 7 8 +20978,5 6 53 12 36 16 17 37 48 7 8 +8162,1 6 84 18 12 16 61 16 17 10 7 8 +10969,1 6 9 16 36 37 38 37 48 50 7 4 +1877,1 45 21 22 17 37 50 7 4 +8163,1 6 84 18 12 16 61 16 17 10 7 4 +2899,15 57 9 16 42 16 17 10 7 8 +17581,96 36 16 17 62 10 7 4 +8247,5 6 55 34 35 7 8 +21639,5 6 55 34 35 7 4 +6765,1 6 67 36 37 63 7 4 +25455,1 6 53 9 16 36 16 61 16 17 62 10 7 8 +6220,5 6 49 50 54 7 8 +12540,15 53 53 16 17 17 54 54 7 4 +5258,1 6 29 9 16 17 43 7 8 +7490,5 6 49 50 54 7 4 +5257,1 6 29 9 16 17 43 7 4 +2898,15 57 9 16 42 16 17 10 7 4 +17580,96 36 16 17 62 10 7 8 +940,1 6 84 73 16 17 63 85 7 8 +14197,1 6 53 9 16 36 16 61 16 17 62 10 7 4 +23563,1 6 55 57 57 9 36 37 38 10 7 4 +23943,5 6 84 64 16 36 16 61 16 17 37 35 7 4 +18517,15 55 53 34 35 54 7 8 +19885,1 6 55 57 57 9 36 37 38 10 7 8 +25755,1 6 53 90 36 16 61 16 17 19 7 4 +4419,1 6 53 18 96 16 36 37 38 10 7 8 +18518,15 55 53 34 35 54 7 4 +13359,1 6 53 90 36 16 61 16 17 19 7 8 +10593,15 55 12 57 9 16 39 36 16 17 19 7 8 +10594,15 55 12 57 9 16 39 36 16 17 19 7 4 +13174,5 6 92 31 32 7 8 +719,15 55 56 89 13 +13173,5 6 92 31 32 7 4 +17886,15 53 51 52 13 +8699,70 16 36 16 17 37 52 7 4 +8700,70 16 36 16 17 37 52 7 8 +21675,1 6 76 42 43 17 10 7 8 +25178,5 2 16 17 37 35 11 8 +21676,1 6 76 42 43 17 10 7 4 +21444,5 6 53 55 57 9 16 17 10 7 4 +8679,15 49 42 43 17 3 8 +8678,15 49 42 43 17 3 4 +16828,1 12 16 36 37 38 37 17 72 7 4 +23775,1 6 12 16 36 37 38 17 37 35 87 7 8 +3783,15 88 57 58 13 +9191,15 55 12 57 55 9 16 36 37 38 17 37 50 7 4 +19402,15 53 18 12 16 17 10 7 8 +19403,15 53 18 12 16 17 10 7 4 +18875,5 6 65 57 57 9 39 36 16 17 11 8 +6528,5 6 12 16 17 63 7 4 +23947,1 6 53 12 16 36 37 38 11 8 +26305,5 6 31 47 107 36 16 17 37 50 7 8 +6529,5 6 12 16 17 63 7 8 +9192,15 55 12 57 55 9 16 36 37 38 17 37 50 7 8 +8194,1 6 55 12 36 37 38 11 8 +12266,5 45 21 22 17 43 32 7 8 +23948,1 6 53 12 16 36 37 38 11 13 +12077,1 6 51 42 43 17 63 7 8 +12265,5 45 21 22 17 43 32 7 4 +12076,1 6 51 42 43 17 63 7 4 +8195,1 6 55 12 36 37 38 11 13 +8369,1 6 18 12 16 17 37 48 50 89 27 7 4 +3446,15 55 9 16 36 16 61 16 17 10 54 7 4 +19897,5 6 53 12 11 14 54 85 7 4 +3445,15 55 9 16 36 16 61 16 17 10 54 7 8 +22114,5 6 53 12 11 14 54 85 7 8 +13796,15 12 16 36 16 61 16 17 19 14 7 4 +15613,5 6 119 16 17 75 7 4 +2641,1 6 64 36 37 38 37 108 48 72 54 7 4 +4884,15 34 36 16 61 16 17 37 50 7 8 +1735,5 2 16 17 37 35 7 8 +15612,5 6 119 16 17 75 7 8 +2642,1 6 64 36 37 38 37 108 48 72 54 7 8 +20344,15 34 36 16 61 16 17 37 50 7 4 +1734,5 2 16 17 37 35 7 4 +5259,1 6 29 9 16 42 16 17 19 13 +23845,5 6 9 36 16 17 37 50 7 4 +22687,1 6 55 71 36 37 17 10 54 54 7 4 +26191,15 57 53 9 16 36 37 38 17 10 54 7 8 +24895,15 34 107 36 37 10 54 7 4 +24480,5 6 53 71 47 36 37 10 7 4 +26192,15 57 53 9 16 36 37 38 17 10 54 7 4 +24894,15 34 107 36 37 10 54 7 8 +8221,15 12 16 36 16 17 37 52 54 7 4 +23662,1 6 57 9 61 62 17 3 8 +10138,15 12 16 36 16 17 37 52 54 7 8 +25694,1 6 57 53 9 16 61 16 17 19 13 +12780,5 6 9 10 58 89 56 54 7 8 +10920,15 9 36 16 17 69 +3529,15 57 31 47 48 48 32 7 8 +16842,15 57 53 12 49 50 13 +3528,15 57 31 47 48 48 32 7 4 +4551,1 6 53 9 16 17 63 7 8 +5302,1 6 53 9 16 17 63 7 4 +26271,1 6 65 34 36 37 17 10 7 8 +25066,5 6 12 34 47 48 50 7 4 +21308,5 6 88 55 9 16 17 37 35 87 7 4 +26632,5 6 57 9 16 17 37 32 7 4 +16279,1 6 57 67 47 117 16 17 11 13 +24826,5 6 86 9 16 17 37 72 7 8 +917,5 6 86 9 16 17 37 72 7 4 +16278,1 6 57 67 47 117 16 17 11 8 +20541,1 6 84 71 107 108 68 85 54 7 8 +23252,5 6 84 9 10 58 89 85 7 8 +23251,5 6 84 9 10 58 89 85 7 4 +656,5 6 64 16 36 37 38 17 37 48 72 7 8 +6320,5 6 9 10 56 11 56 7 4 +508,5 2 16 17 62 10 7 4 +509,5 2 16 17 62 10 7 8 +12738,15 51 36 37 17 10 30 7 8 +21644,5 6 55 51 52 7 8 +12781,5 6 9 10 58 89 56 54 7 4 +21645,5 6 55 51 52 7 4 +16327,5 6 64 16 61 16 17 62 10 7 4 +20227,5 6 55 9 16 117 118 72 7 8 +16283,5 6 55 9 16 117 118 72 7 4 +11403,1 6 51 47 36 37 10 7 4 +11402,1 6 51 47 36 37 10 7 8 +8578,15 44 34 47 48 32 54 54 7 8 +17648,5 6 64 16 61 16 17 62 10 7 8 +8577,15 44 34 47 48 32 54 54 7 4 +18340,15 65 34 36 37 17 11 8 +20413,1 12 16 36 37 38 17 37 52 7 4 +13447,15 12 11 58 89 85 7 4 +19178,1 6 53 34 47 48 35 54 7 4 +10560,15 49 47 48 35 7 8 +998,1 6 53 34 47 48 35 54 7 8 +1890,5 6 76 16 17 75 7 8 +13448,15 12 11 58 89 85 7 8 +17772,1 6 53 55 57 9 16 17 37 123 11 8 +11490,1 6 67 68 11 54 7 8 +10447,5 6 53 34 36 37 17 10 54 54 7 8 +10145,1 6 34 47 61 62 63 7 8 +18416,5 6 53 34 36 37 17 10 54 54 7 4 +23755,15 53 55 56 54 7 4 +10555,1 6 34 47 61 62 63 7 4 +23754,15 53 55 56 54 7 8 +10951,5 6 65 57 57 9 39 36 16 17 19 13 +7258,70 16 36 16 61 16 17 11 8 +6235,5 6 64 16 36 37 38 17 37 48 72 7 4 +9186,5 6 9 10 56 11 56 7 8 +7259,70 16 36 16 61 16 17 11 13 +20814,1 6 53 12 16 36 37 38 17 69 +25640,1 6 92 9 61 62 32 7 8 +20462,5 6 113 53 34 47 47 117 16 17 10 7 4 +25641,1 6 92 9 61 62 32 7 4 +20463,5 6 113 53 34 47 47 117 16 17 10 7 8 +10561,15 49 47 48 35 7 4 +1891,5 6 76 16 17 75 7 4 +17573,15 55 53 57 9 61 62 68 7 4 +14978,1 6 34 47 48 48 32 7 8 +22832,1 6 9 16 16 17 10 7 4 +14103,1 6 34 47 48 48 32 7 4 +22833,1 6 9 16 16 17 10 7 8 +20745,15 44 9 36 16 17 10 7 4 +26556,5 6 64 16 17 37 10 7 8 +17578,96 16 36 16 17 37 48 50 7 8 +17577,96 16 36 16 17 37 48 50 7 4 +17698,15 34 36 16 21 77 78 22 79 4 +20746,15 44 9 36 16 17 10 7 8 +5349,1 6 12 16 39 36 16 17 11 13 +4874,1 6 65 67 61 62 91 7 8 +6922,1 6 29 9 16 42 16 17 11 13 +11789,15 67 47 107 36 37 17 63 93 7 4 +6094,1 6 29 9 16 42 16 17 11 8 +11790,15 67 47 107 36 37 17 63 93 7 8 +5348,1 6 12 16 39 36 16 17 11 8 +19838,1 6 34 107 108 50 7 8 +26743,1 6 51 36 37 17 3 8 +23595,1 6 65 67 61 62 91 7 4 +4256,1 6 53 9 10 93 63 7 8 +6372,15 67 36 16 17 37 35 7 4 +18136,1 6 64 61 62 17 106 54 7 4 +24005,15 67 36 16 17 37 35 7 8 +9305,97 16 17 17 10 7 4 +9306,97 16 17 17 10 7 8 +12739,15 51 36 37 17 10 30 7 4 +13022,1 6 53 9 10 93 63 7 4 +24279,5 6 64 36 16 61 16 17 37 32 7 8 +23483,1 6 53 54 56 54 54 7 8 +1474,15 88 55 9 16 17 37 48 68 7 4 +1473,15 88 55 9 16 17 37 48 68 7 8 +5627,15 53 53 16 17 17 54 7 4 +8422,15 53 53 16 17 17 54 7 8 +21482,15 34 36 16 17 37 108 48 72 93 58 7 4 +109,5 6 49 36 37 17 10 7 4 +13185,5 6 92 12 16 17 10 7 4 +15152,5 6 64 36 16 61 16 36 16 17 11 8 +21993,1 6 105 16 17 63 7 4 +20170,5 6 64 36 16 61 16 17 37 32 7 4 +110,5 6 49 36 37 17 10 7 8 +14588,1 6 105 16 17 63 7 8 +23482,1 6 53 54 56 54 54 7 4 +18135,1 6 64 61 62 17 106 54 7 8 +13186,5 6 92 12 16 17 10 7 8 +14990,5 6 64 16 42 16 39 36 16 17 19 13 +17499,5 6 53 67 47 36 37 10 54 7 8 +19254,5 6 51 117 16 17 19 13 +81,5 2 16 17 3 4 +19713,5 6 53 67 47 36 37 10 54 7 4 +80,5 2 16 17 3 8 +19484,5 6 53 18 12 16 17 37 72 54 7 4 +8213,5 6 64 16 36 16 17 37 52 54 7 8 +16931,5 6 53 18 12 16 17 37 72 54 7 8 +8212,5 6 64 16 36 16 17 37 52 54 7 4 +17903,1 6 53 57 51 36 37 17 10 54 7 8 +25467,1 6 53 57 51 36 37 17 10 54 7 4 +14584,1 12 16 61 16 36 16 17 19 13 +8933,5 6 64 16 61 16 17 37 35 7 8 +19361,15 53 12 16 17 37 50 7 4 +8695,15 44 31 42 43 17 37 48 72 54 7 8 +19362,15 53 12 16 17 37 50 7 8 +7622,1 6 34 47 48 32 7 8 +13324,15 55 53 65 90 16 17 120 54 7 8 +8696,15 44 31 42 43 17 37 48 72 54 7 4 +98,1 6 34 47 48 32 7 4 +8711,5 6 64 16 61 16 17 37 35 7 4 +25705,1 12 11 93 54 7 8 +19131,1 6 113 61 62 17 37 11 8 +15513,5 6 88 51 51 36 37 11 8 +542,5 6 53 18 12 16 17 37 50 54 7 4 +19682,1 6 55 53 9 16 36 37 38 17 10 54 7 4 +19199,15 9 16 16 17 43 52 7 8 +541,5 6 53 18 12 16 17 37 50 54 7 8 +19681,1 6 55 53 9 16 36 37 38 17 10 54 7 8 +2211,5 6 9 10 58 27 7 4 +3680,5 6 9 10 56 89 7 4 +730,5 6 9 10 56 89 7 8 +10709,5 6 9 10 58 27 7 8 +1887,15 71 47 48 72 7 4 +2624,5 2 16 17 11 7 4 +1888,15 71 47 48 72 7 8 +2164,5 2 16 17 11 7 8 +6871,70 16 36 16 61 16 17 19 13 +8865,15 67 47 36 37 63 54 7 8 +4936,1 6 53 12 31 32 7 4 +11941,15 55 67 61 62 10 7 8 +12659,1 6 65 51 61 62 63 7 4 +4935,1 6 53 12 31 32 7 8 +14924,1 6 65 51 61 62 63 7 8 +11942,15 55 67 61 62 10 7 4 +18786,5 45 21 22 17 +19200,15 9 16 16 17 43 52 7 4 +8864,15 67 47 36 37 63 54 7 4 +19492,1 6 18 12 16 17 37 32 11 7 4 +3316,5 6 9 36 37 38 37 52 13 +8279,1 6 12 88 26 65 66 89 13 +10020,1 6 64 61 62 17 120 7 8 +20278,5 6 34 36 37 17 43 72 7 8 +24580,1 6 67 47 107 108 48 72 7 4 +15170,5 6 34 36 37 17 43 72 7 4 +15998,1 6 64 61 62 17 37 11 7 8 +20890,5 6 9 10 89 89 7 4 +16617,1 6 64 61 62 17 37 11 7 4 +9059,5 6 9 10 89 89 7 8 +24836,5 6 90 16 17 98 +9905,1 6 12 16 39 36 16 17 19 13 +5942,5 6 90 16 17 94 +5703,1 6 64 61 62 17 120 7 4 +21954,5 6 64 16 61 16 17 37 35 11 8 +13065,5 6 12 57 12 16 36 37 38 37 48 35 11 8 +18017,5 6 90 16 17 69 +10523,15 96 16 17 19 13 +1941,1 6 84 51 52 85 54 7 4 +15901,60 16 36 37 38 37 50 7 4 +6929,1 2 16 17 17 +15900,60 16 36 37 38 37 50 7 8 +2962,5 2 16 17 54 54 7 8 +22327,15 65 9 16 117 118 50 7 4 +7955,5 6 9 10 58 27 11 8 +19498,1 6 90 16 36 16 17 37 35 7 8 +4813,5 6 65 88 9 16 17 10 54 7 4 +24625,15 31 47 36 37 17 62 10 7 4 +1938,1 6 84 51 52 85 54 7 8 +24139,1 6 90 16 36 16 17 37 35 7 4 +22326,15 65 9 16 117 118 50 7 8 +24624,15 31 47 36 37 17 62 10 7 8 +6354,1 6 34 36 37 17 11 85 54 7 8 +23624,15 12 36 37 38 37 48 35 7 8 +14905,1 6 29 61 62 10 7 8 +17947,1 6 34 36 37 17 11 85 54 7 4 +14906,1 6 29 61 62 10 7 4 +409,15 55 9 16 36 16 61 16 17 62 10 7 4 +19216,15 51 47 48 72 54 7 8 +19217,15 51 47 48 72 54 7 4 +23623,15 12 36 37 38 37 48 35 7 4 +17739,5 6 64 16 42 16 17 43 93 7 4 +26262,1 6 65 9 39 36 16 36 16 17 11 8 +5234,5 6 51 42 43 17 37 32 54 7 8 +17753,1 6 53 18 12 16 61 16 17 43 52 7 8 +10023,15 12 11 89 27 28 +17738,5 6 64 16 42 16 17 43 93 7 8 +5235,5 6 51 42 43 17 37 32 54 7 4 +16806,1 6 12 16 42 16 17 10 7 8 +9216,15 31 47 36 37 17 37 35 7 8 +16807,1 6 12 16 42 16 17 10 7 4 +1500,1 6 57 57 57 12 11 7 4 +18841,1 6 34 107 36 37 10 93 7 8 +25511,1 6 53 51 47 48 72 54 85 7 8 +1922,5 2 16 17 10 54 7 4 +24839,5 6 18 12 16 42 16 17 100 7 4 +7275,1 6 18 12 16 17 37 35 54 7 8 +10339,5 2 16 17 10 54 7 8 +1501,1 6 57 57 57 12 11 7 8 +18330,5 6 18 12 16 42 16 17 100 7 8 +14730,1 6 18 12 16 17 37 35 54 7 4 +9217,15 31 47 36 37 17 37 35 7 4 +7310,15 53 64 36 37 38 37 35 93 7 4 +7309,15 53 64 36 37 38 37 35 93 7 8 +22798,5 6 55 65 34 35 7 8 +9266,5 6 55 65 34 35 7 4 +16975,15 34 36 37 38 37 48 50 7 8 +22578,1 12 11 30 30 7 8 +8092,1 6 57 92 51 36 37 17 10 7 8 +1856,5 2 16 17 54 54 7 4 +4921,1 6 57 9 16 17 37 35 54 7 8 +16471,5 6 53 18 12 61 61 16 17 62 10 7 8 +25836,1 6 9 10 56 27 28 +16472,5 6 53 18 12 61 61 16 17 62 10 7 4 +26263,1 6 65 9 39 36 16 36 16 17 11 13 +8310,1 6 64 61 62 17 37 48 68 54 7 8 +19449,5 6 53 12 16 36 16 17 37 50 54 7 4 +3293,15 65 49 36 37 17 37 48 72 7 4 +8738,1 6 55 51 47 48 52 33 13 +14580,1 6 65 9 61 62 72 7 8 +8311,1 6 64 61 62 17 37 48 68 54 7 4 +19448,5 6 53 12 16 36 16 17 37 50 54 7 8 +3292,15 65 49 36 37 17 37 48 72 7 8 +4920,1 6 57 9 16 17 37 35 54 7 4 +9407,15 44 88 89 7 4 +21962,1 6 65 9 61 62 72 7 4 +12091,5 6 9 10 27 33 7 8 +16047,5 6 18 12 16 17 37 72 58 85 7 4 +11710,15 55 9 16 17 37 50 54 7 4 +22394,15 55 9 42 16 61 16 17 11 8 +13596,1 6 55 88 34 35 56 7 8 +18735,5 6 18 12 16 17 37 72 58 85 7 8 +16792,1 12 11 30 30 7 4 +19612,1 45 21 22 17 19 56 85 93 27 28 +22395,15 55 9 42 16 61 16 17 11 13 +11709,15 55 9 16 17 37 50 54 7 8 +9700,5 6 55 51 42 43 17 37 52 30 58 7 8 +19223,15 12 16 36 16 17 37 48 52 54 7 4 +10817,70 36 16 61 16 17 10 7 8 +15370,15 71 47 47 36 37 17 11 8 +9408,15 44 88 89 7 8 +10816,70 36 16 61 16 17 10 7 4 +18279,5 6 64 16 61 16 17 10 54 7 8 +18278,5 6 64 16 61 16 17 10 54 7 4 +15371,15 71 47 47 36 37 17 11 13 +21280,15 31 16 36 37 17 10 7 4 +849,5 6 90 91 66 11 7 8 +21279,15 31 16 36 37 17 10 7 8 +14109,5 6 90 91 66 11 7 4 +22172,1 6 92 61 62 32 93 7 4 +1005,1 6 64 61 62 17 37 48 35 54 7 8 +2991,15 12 11 13 +19224,15 12 16 36 16 17 37 48 52 54 7 8 +1006,1 6 64 61 62 17 37 48 35 54 7 4 +3648,1 6 49 47 48 68 7 4 +18854,5 6 64 53 31 42 43 17 37 108 35 54 7 8 +19792,1 6 64 16 17 91 7 8 +356,1 6 12 16 36 16 42 16 17 11 13 +3644,1 6 49 47 48 68 7 8 +355,1 6 12 16 36 16 42 16 17 11 8 +2511,5 6 88 96 39 36 16 21 77 78 22 79 4 +6584,15 34 47 36 37 17 11 8 +6585,15 34 47 36 37 17 11 13 +20198,1 6 53 12 36 16 17 37 72 7 4 +21254,5 6 55 90 16 36 39 36 16 17 63 7 4 +26429,5 6 71 36 16 42 16 17 37 35 7 8 +21455,5 6 57 57 57 26 65 12 16 17 19 13 +14847,15 49 42 43 17 11 14 7 4 +21255,5 6 55 90 16 36 39 36 16 17 63 7 8 +23918,15 96 36 37 38 19 56 11 8 +11012,5 6 64 53 31 42 43 17 37 108 35 54 7 4 +10018,5 6 12 36 37 11 13 +10017,5 6 12 36 37 11 8 +6554,5 6 26 88 89 13 +2998,1 6 64 61 62 17 37 52 54 7 8 +19657,5 6 55 53 57 58 13 +10188,1 6 9 16 17 106 7 4 +10189,1 6 9 16 17 106 7 8 +2544,1 6 64 61 62 17 37 52 54 7 4 +3380,5 6 53 57 9 16 17 37 50 54 7 4 +21534,1 6 53 34 117 16 17 11 13 +13701,1 12 36 16 17 37 52 54 7 8 +7772,15 34 36 16 61 16 17 19 13 +21533,1 6 53 34 117 16 17 11 8 +10647,1 12 36 16 17 37 52 54 7 4 +23441,1 6 9 16 17 11 54 7 8 +6129,5 6 18 12 16 17 118 17 10 7 4 +5180,1 6 53 64 16 42 16 17 63 7 8 +1064,1 6 53 9 10 58 54 7 4 +25851,1 6 53 64 16 42 16 17 63 7 4 +1063,1 6 53 9 10 58 54 7 8 +25338,5 6 57 9 16 36 16 17 37 48 50 7 8 +3249,1 6 57 57 9 16 17 10 7 4 +1648,1 6 9 16 17 43 35 54 7 8 +3248,1 6 57 57 9 16 17 10 7 8 +8548,15 34 47 36 37 17 69 +7621,15 34 47 36 37 19 13 +1186,1 6 9 16 17 43 35 54 7 4 +6130,5 6 18 12 16 17 118 17 10 7 8 +26388,1 6 31 47 47 36 37 17 10 7 8 +22257,1 6 31 47 47 36 37 17 10 7 4 +5851,1 6 64 16 36 37 38 17 10 7 4 +5852,1 6 64 16 36 37 38 17 10 7 8 +1028,1 6 9 10 58 89 13 +11144,1 6 64 92 9 42 16 17 19 7 4 +13728,1 6 65 26 51 61 62 63 7 4 +8919,1 6 34 47 48 35 87 54 7 4 +20335,1 6 64 92 9 42 16 17 19 7 8 +5166,1 6 34 47 48 35 87 54 7 8 +4167,15 31 53 36 37 17 11 13 +14607,1 6 53 9 10 89 58 13 +4166,15 31 53 36 37 17 11 8 +5317,15 55 57 92 12 16 17 19 13 +25518,15 9 16 36 37 38 37 48 52 54 85 7 8 +8529,97 16 17 17 11 13 +2230,5 6 76 61 62 17 10 7 4 +25519,15 9 16 36 37 38 37 48 52 54 85 7 4 +12440,1 6 34 36 37 17 120 7 4 +12097,5 6 76 61 62 17 10 7 8 +10162,1 6 9 16 17 43 68 54 7 8 +24677,1 6 34 36 37 19 58 7 8 +6809,1 6 65 66 87 13 +8528,97 16 17 17 11 8 +7804,15 34 36 16 17 37 50 7 4 +25926,1 6 53 12 16 61 16 17 63 7 4 +25824,15 34 36 16 17 37 50 7 8 +7648,5 6 76 61 62 17 37 35 54 7 8 +4468,1 6 88 55 56 56 7 8 +7479,1 6 55 51 47 48 52 7 4 +4467,1 6 88 55 56 56 7 4 +13026,5 6 76 61 62 17 37 35 54 7 4 +25328,5 6 53 18 12 16 36 37 38 17 10 7 8 +910,15 71 36 37 17 100 7 4 +19629,1 6 53 34 47 47 36 37 17 63 7 8 +20693,5 6 53 18 12 16 36 37 38 17 10 7 4 +909,15 71 36 37 17 100 7 8 +26265,1 6 53 34 47 47 36 37 17 63 7 4 +26174,15 86 12 16 17 11 8 +3596,5 6 65 71 36 37 17 11 8 +6803,1 6 65 66 89 13 +11773,5 6 65 57 57 9 16 61 16 17 19 13 +26175,15 86 12 16 17 11 13 +9034,5 6 119 16 17 10 7 4 +10169,5 6 119 16 17 10 7 8 +26727,5 6 41 88 89 89 7 4 +20319,1 6 49 47 36 37 19 11 8 +19818,5 6 55 12 55 57 9 16 17 37 108 68 7 8 +6886,15 49 107 108 50 7 4 +26726,5 6 41 88 89 89 7 8 +21199,5 6 55 12 55 57 9 16 17 37 108 68 7 4 +6885,15 49 107 108 50 7 8 +1670,1 45 21 22 17 37 108 35 7 4 +21068,15 55 88 89 11 13 +3415,5 6 53 12 16 17 11 8 +23363,5 6 53 34 47 36 37 10 7 4 +21067,15 55 88 89 11 8 +12260,5 6 9 36 37 38 10 30 7 8 +25660,5 6 53 34 47 36 37 10 7 8 +15455,5 6 53 31 117 16 17 19 13 +3416,5 6 53 12 16 17 11 13 +1669,1 45 21 22 17 37 108 35 7 8 +16973,15 55 12 57 96 16 36 37 38 37 72 7 4 +24768,1 6 57 9 16 36 16 17 37 68 7 4 +13882,15 12 16 39 36 16 36 37 38 17 11 8 +61,5 6 9 36 37 38 10 30 7 4 +16083,15 34 107 36 16 17 62 10 7 8 +24767,1 6 57 9 16 36 16 17 37 68 7 8 +25527,15 65 88 89 13 +19284,5 6 88 55 57 12 9 16 17 19 7 8 +23106,1 6 92 31 61 62 63 7 4 +12014,1 6 53 67 68 54 54 7 4 +26332,5 6 88 55 57 12 9 16 17 19 7 4 +26417,5 6 53 90 16 17 10 54 7 4 +846,1 6 12 65 66 11 7 8 +12150,1 6 71 72 66 7 8 +23203,5 6 57 9 16 36 16 17 37 48 50 7 4 +18127,5 6 53 90 16 17 10 54 7 8 +850,1 6 12 65 66 11 7 4 +16107,1 6 71 72 66 7 4 +8398,5 6 107 107 36 37 63 7 8 +12015,1 6 53 67 68 54 54 7 8 +2221,1 6 88 57 9 16 61 16 17 19 7 4 +8399,5 6 107 107 36 37 63 7 4 +18788,1 45 21 77 101 102 103 +12094,1 6 88 57 9 16 61 16 17 19 7 8 +4599,1 6 64 61 62 120 7 4 +4154,1 6 64 61 62 120 7 8 +11640,15 51 107 108 72 7 4 +754,15 12 11 89 11 8 +1272,1 6 64 16 42 16 17 10 54 7 8 +21693,15 55 56 58 7 4 +23761,15 53 9 10 11 56 54 7 8 +23861,1 6 53 49 50 33 11 8 +21694,15 55 56 58 7 8 +11308,15 67 51 36 37 11 8 +23862,1 6 53 49 50 33 11 13 +2884,15 57 53 9 10 7 4 +13958,5 6 57 96 16 36 37 38 17 63 7 8 +2883,15 57 53 9 10 7 8 +20190,1 6 34 42 43 17 11 8 +21163,1 6 57 9 16 36 16 17 63 7 4 +12921,5 6 53 26 34 47 36 37 17 11 8 +7995,15 55 26 88 34 35 58 7 4 +26676,5 6 51 114 117 16 17 37 52 7 4 +25579,15 88 55 57 96 16 21 77 78 22 8 +11309,15 67 51 36 37 11 13 +26675,5 6 51 114 117 16 17 37 52 7 8 +14190,1 6 53 57 9 16 61 16 17 10 93 7 8 +1710,1 6 55 12 55 56 89 13 +7994,15 55 26 88 34 35 58 7 8 +17773,15 55 57 9 16 17 37 123 11 54 7 4 +4086,15 55 88 89 7 8 +17769,15 55 57 9 16 17 37 123 11 54 7 8 +4087,15 55 88 89 7 4 +22881,5 6 9 16 61 16 17 37 35 7 8 +13507,1 6 84 86 9 16 36 16 17 37 72 85 7 4 +23885,15 67 47 36 37 91 7 8 +9420,5 6 55 9 16 36 37 38 17 10 54 7 4 +20406,1 6 76 16 61 16 61 16 17 19 13 +13325,15 55 53 119 16 17 63 7 8 +23886,15 67 47 36 37 91 7 4 +9421,5 6 55 9 16 36 37 38 17 10 54 7 8 +23759,15 53 9 10 11 56 54 7 4 +2979,5 2 16 17 37 108 35 7 4 +13793,1 6 64 61 16 17 62 32 54 7 4 +11672,5 2 16 17 37 108 35 7 8 +9629,1 6 92 42 43 17 63 7 8 +8141,15 96 16 17 69 +9630,1 6 92 42 43 17 63 7 4 +26108,1 6 41 12 16 17 10 54 7 8 +2625,1 6 53 67 47 107 108 48 72 54 7 8 +5553,1 6 41 12 16 17 10 54 7 4 +19047,15 34 107 36 16 17 37 35 7 8 +20243,1 6 86 53 9 10 54 54 7 4 +15363,15 34 107 36 16 17 37 35 7 4 +9078,1 6 86 53 9 10 54 54 7 8 +14484,5 6 57 9 16 17 37 35 93 7 4 +14530,5 6 124 9 36 37 38 37 48 7 4 +12469,1 6 64 61 62 17 37 52 54 54 7 8 +14002,5 6 57 9 16 17 37 35 93 7 8 +10844,1 6 64 61 62 17 37 52 54 54 7 4 +10918,1 6 86 34 36 37 10 7 4 +25761,5 6 55 34 107 108 35 89 56 7 4 +5503,5 6 9 16 61 16 17 62 10 7 4 +14261,1 6 55 53 71 72 13 +10615,15 71 16 36 37 17 11 13 +16784,5 6 64 61 62 17 10 93 7 8 +8402,15 86 9 16 17 37 108 7 8 +14826,5 6 105 61 62 17 11 8 +21065,1 6 55 55 53 55 56 13 +21515,1 6 12 16 17 19 10 7 8 +10614,15 71 16 36 37 17 11 8 +22233,5 6 51 36 37 37 32 10 7 4 +8403,15 86 9 16 17 37 108 7 4 +21514,1 6 12 16 17 19 10 7 4 +5558,5 6 53 12 16 17 19 13 +17219,1 6 53 124 47 48 50 54 7 8 +621,5 6 64 57 92 9 31 32 7 4 +5504,5 6 9 16 61 16 17 62 10 7 8 +5396,1 12 36 37 38 17 37 10 7 8 +18802,1 6 64 36 16 17 37 48 72 54 7 4 +17218,1 6 53 124 47 48 50 54 7 4 +10928,1 12 36 37 38 17 37 10 7 4 +14652,1 6 64 36 16 17 37 48 72 54 7 8 +15761,5 6 57 9 16 42 16 36 16 17 19 13 +11357,1 6 12 61 16 17 19 13 +14531,5 6 124 9 36 37 38 37 48 7 8 +20103,15 12 36 16 17 43 72 7 8 +20102,15 12 36 16 17 43 72 7 4 +11005,1 6 53 67 47 107 108 48 72 54 7 4 +23345,15 55 65 55 56 7 4 +16131,5 6 109 9 16 61 16 61 16 17 11 8 +9971,15 55 57 53 31 32 13 +15259,5 6 49 36 37 17 75 7 8 +26349,15 67 16 36 37 17 37 52 7 4 +26350,15 67 16 36 37 17 37 52 7 8 +11641,15 51 107 108 72 7 8 +9626,5 6 64 16 17 37 32 93 7 4 +1271,1 6 64 16 42 16 17 10 54 7 4 +8526,15 96 16 17 98 +23346,15 55 65 55 56 7 8 +9627,5 6 64 16 17 37 32 93 7 8 +16132,5 6 109 9 16 61 16 61 16 17 11 13 +26245,15 12 16 36 37 38 10 7 8 +12111,15 71 114 36 37 11 13 +12735,15 9 16 36 37 38 37 48 52 30 7 8 +11273,1 6 9 9 9 9 9 16 17 43 32 10 54 7 4 +1720,15 88 89 56 11 8 +12736,15 9 16 36 37 38 37 48 52 30 7 4 +6845,5 6 9 16 36 37 38 10 7 8 +12110,15 71 114 36 37 11 8 +8366,1 6 26 88 71 36 37 17 11 8 +20489,1 6 55 57 51 107 108 50 7 4 +6844,5 6 9 16 36 37 38 10 7 4 +20488,1 6 55 57 51 107 108 50 7 8 +8127,5 6 53 71 36 37 17 10 54 7 8 +21371,5 6 64 36 37 38 17 3 8 +26383,5 6 55 9 36 37 17 10 54 7 8 +13245,5 6 88 57 53 49 36 37 17 10 7 4 +13246,5 6 88 57 53 49 36 37 17 10 7 8 +8126,5 6 53 71 36 37 17 10 54 7 4 +11449,15 55 12 55 88 57 58 89 13 +14305,5 6 57 9 16 17 43 50 7 8 +10471,1 6 96 36 16 17 19 7 4 +17596,15 57 53 9 10 33 13 +10472,1 6 96 36 16 17 19 7 8 +14304,5 6 57 9 16 17 43 50 7 4 +10203,15 42 43 17 43 17 37 35 54 7 8 +13004,15 42 43 17 43 17 37 35 54 7 4 +4528,5 6 41 12 16 17 11 8 +4529,5 6 41 12 16 17 11 13 +9567,1 6 57 53 84 85 7 4 +8026,1 6 57 34 35 7 8 +3995,1 6 57 53 84 85 7 8 +13468,5 6 31 61 62 17 10 7 4 +8025,1 6 57 34 35 7 4 +13467,5 6 31 61 62 17 10 7 8 +14154,5 6 84 49 109 110 7 8 +22669,5 6 29 12 16 36 16 17 10 7 8 +22607,5 6 88 89 27 56 7 4 +383,5 6 71 72 13 +1293,5 6 53 31 42 43 17 63 7 4 +23808,1 6 92 9 16 36 37 38 17 62 10 7 4 +1294,5 6 53 31 42 43 17 63 7 8 +26551,5 6 65 51 42 43 17 10 7 8 +22448,1 6 55 56 11 56 7 4 +25033,5 6 57 9 16 17 37 48 32 7 4 +10721,1 6 12 65 66 11 27 28 +3190,1 6 55 56 11 56 7 8 +16656,15 34 47 48 32 30 7 4 +24876,5 6 64 61 62 17 43 50 54 7 8 +9542,1 6 9 16 36 37 38 37 68 7 4 +24929,5 6 53 90 16 17 62 10 7 8 +3707,15 12 11 89 7 8 +16657,15 34 47 48 32 30 7 8 +25504,5 6 64 61 62 17 43 50 54 7 4 +717,15 88 89 56 7 4 +9822,15 12 11 89 7 4 +14099,15 65 9 16 17 19 7 4 +718,15 88 89 56 7 8 +5906,1 6 90 91 89 54 7 4 +14098,15 65 9 16 17 19 7 8 +14601,1 6 9 16 36 37 38 37 68 7 8 +5907,1 6 90 91 89 54 7 8 +6214,15 9 36 37 38 10 54 54 7 4 +22443,1 6 57 57 9 16 61 16 17 19 7 8 +20625,5 6 57 53 31 36 37 17 69 +9624,5 6 92 31 36 37 19 7 8 +12373,1 6 55 12 12 16 17 11 8 +10048,5 6 57 9 36 37 38 37 35 54 7 8 +9623,5 6 92 31 36 37 19 7 4 +11064,15 57 53 9 10 27 28 +21312,5 6 57 9 36 37 38 37 35 54 7 4 +1191,1 6 64 16 42 16 17 37 35 7 4 +26564,5 6 88 65 9 16 17 19 7 4 +17414,1 6 53 34 36 37 10 7 4 +1190,1 6 64 16 42 16 17 37 35 7 8 +19168,5 6 88 65 9 16 17 19 7 8 +18041,15 12 16 16 99 16 17 11 8 +21039,5 6 12 16 36 37 38 37 48 35 11 7 8 +12256,1 6 53 34 36 37 10 7 8 +6215,15 9 36 37 38 10 54 54 7 8 +22444,1 6 57 57 9 16 61 16 17 19 7 4 +20599,5 6 88 89 27 56 7 8 +23568,1 6 67 47 48 48 68 58 7 4 +23622,1 12 36 37 38 37 48 35 7 4 +3043,1 6 90 91 56 54 7 4 +20778,5 6 92 9 10 56 89 7 8 +24922,5 6 53 18 9 36 16 17 37 52 54 7 4 +1416,1 6 51 36 37 17 11 13 +3044,1 6 90 91 56 54 7 8 +779,1 6 51 36 37 17 11 8 +20779,5 6 92 9 10 56 89 7 4 +24921,5 6 53 18 9 36 16 17 37 52 54 7 8 +13945,1 6 18 12 16 17 37 32 10 7 4 +13944,1 6 18 12 16 17 37 32 10 7 8 +20288,1 6 9 16 17 43 32 10 7 4 +8508,1 6 9 10 11 54 7 8 +20864,1 6 64 16 17 11 85 54 7 4 +2579,1 6 9 16 17 43 32 10 7 8 +6288,1 6 9 10 11 54 7 4 +6523,5 6 64 61 62 17 37 35 11 7 4 +23026,5 6 64 61 62 37 68 56 66 58 7 8 +10914,5 6 64 61 62 17 37 35 11 7 8 +26169,1 6 53 9 16 36 37 38 37 48 52 54 85 7 4 +2426,1 6 9 36 16 17 10 54 54 7 8 +10359,5 6 53 65 9 16 17 37 35 7 8 +19547,5 6 12 67 36 37 17 69 +17510,1 6 64 16 42 16 17 43 52 58 13 +2620,15 9 16 17 37 48 50 58 7 8 +11966,5 6 53 65 9 16 17 37 35 7 4 +15012,1 6 9 36 16 17 10 54 54 7 4 +5621,5 6 53 18 12 61 16 17 11 13 +17295,15 53 41 65 9 16 17 11 8 +5620,5 6 53 18 12 61 16 17 11 8 +11884,1 6 57 51 52 58 13 +20387,1 6 84 12 11 14 85 85 54 7 8 +2619,15 9 16 17 37 48 50 58 7 4 +25833,1 6 26 55 56 7 8 +9046,5 6 57 9 16 36 16 17 11 8 +20388,1 6 84 12 11 14 85 85 54 7 4 +25834,1 6 26 55 56 7 4 +1013,1 6 64 16 42 16 17 62 10 7 4 +14789,1 6 53 34 107 108 108 35 54 7 4 +3627,15 34 47 36 37 11 8 +3628,15 34 47 36 37 11 13 +9329,5 6 53 54 58 89 7 8 +25172,1 6 64 36 37 38 37 11 8 +2966,5 6 53 9 16 61 16 61 16 17 62 10 7 4 +4185,5 6 57 92 57 58 7 4 +11970,5 6 53 9 16 61 16 61 16 17 62 10 7 8 +9853,1 6 53 54 54 7 4 +20715,1 6 64 36 16 17 37 48 72 7 8 +20714,1 6 64 36 16 17 37 48 72 7 4 +8541,1 6 53 54 54 7 8 +13449,1 6 84 88 57 12 16 17 19 13 +18580,1 6 53 12 61 16 36 16 17 37 48 32 7 4 +1014,1 6 64 16 42 16 17 62 10 7 8 +5718,5 6 12 55 56 89 13 +20069,1 6 76 16 17 10 7 8 +20068,1 6 76 16 17 10 7 4 +17666,15 55 12 57 58 13 +3093,15 9 36 37 10 7 8 +3094,15 9 36 37 10 7 4 +18634,1 12 11 58 89 89 56 7 4 +4807,5 6 53 65 9 16 17 10 54 7 4 +11919,1 6 9 10 58 66 13 +18632,1 12 11 58 89 89 56 7 8 +12759,15 96 39 36 36 16 17 19 58 11 54 7 8 +14244,5 6 53 65 9 16 17 10 54 7 8 +11148,1 12 36 16 36 37 38 17 11 8 +23368,1 6 57 12 16 17 91 7 8 +19324,5 6 53 18 12 16 17 37 50 7 4 +19658,1 6 88 9 36 37 38 17 10 7 4 +18394,5 6 53 18 12 16 17 37 50 7 8 +20213,1 6 9 10 58 89 54 54 7 4 +17717,1 6 88 9 36 37 38 17 10 7 8 +21241,1 6 31 32 56 54 7 4 +26604,1 6 9 10 58 89 54 54 7 8 +12525,5 6 57 53 31 36 37 17 94 +1656,15 34 107 108 35 7 4 +4146,5 6 53 12 16 17 37 32 7 8 +16668,5 6 64 61 62 17 37 52 30 7 8 +1657,15 34 107 108 35 7 8 +4145,5 6 53 12 16 17 37 32 7 4 +13610,1 6 18 31 32 7 4 +14010,5 6 51 52 58 11 7 8 +13609,1 6 18 31 32 7 8 +3729,15 96 39 36 16 21 77 78 22 79 4 +8602,1 6 51 36 37 17 19 13 +10054,5 6 12 55 49 36 37 38 11 8 +20535,5 6 84 71 72 85 54 7 4 +15117,15 12 36 16 61 16 17 37 32 7 4 +10452,1 6 51 52 58 89 13 +20534,5 6 84 71 72 85 54 7 8 +18393,5 6 53 55 53 12 16 36 37 38 11 8 +8747,5 6 26 9 16 17 37 48 52 56 7 8 +20801,15 57 105 16 61 16 17 62 10 7 8 +15118,15 12 36 16 61 16 17 37 32 7 8 +20802,15 57 105 16 61 16 17 62 10 7 4 +21275,1 6 34 16 17 32 7 4 +25334,15 12 16 36 37 38 17 37 48 52 7 8 +26756,1 6 53 67 36 37 17 11 8 +25335,15 12 16 36 37 38 17 37 48 52 7 4 +17864,1 6 53 109 110 58 54 7 4 +17863,1 6 53 109 110 58 54 7 8 +3579,1 6 31 32 56 7 4 +4741,1 6 96 36 16 17 19 11 8 +9484,15 9 16 17 43 68 11 7 4 +12956,15 9 16 17 43 68 11 7 8 +17314,1 6 53 64 16 42 16 61 16 17 10 7 8 +13233,5 6 26 9 16 17 37 48 52 56 7 4 +25841,5 6 18 12 16 17 37 48 32 7 4 +3855,5 6 84 49 109 110 7 4 +11644,1 6 71 107 36 37 17 11 8 +17313,1 6 53 64 16 42 16 61 16 17 10 7 4 +22955,5 6 64 61 62 37 123 11 7 8 +3578,1 6 31 32 56 7 8 +25842,5 6 18 12 16 17 37 48 32 7 8 +18579,1 6 53 12 61 16 36 16 17 37 48 32 7 8 +24293,5 6 96 36 37 38 17 11 8 +11116,1 6 55 56 66 56 7 4 +11117,1 6 55 56 66 56 7 8 +3296,15 12 16 39 36 16 36 16 17 37 50 7 8 +24294,5 6 96 36 37 38 17 11 13 +3295,15 12 16 39 36 16 36 16 17 37 50 7 4 +13328,15 55 53 49 42 43 17 91 54 7 4 +25825,1 6 53 51 107 108 50 54 7 4 +10971,15 9 16 36 37 38 37 48 50 7 8 +8636,5 6 90 16 61 16 36 16 17 11 8 +17160,1 6 9 16 17 62 32 93 7 4 +6525,1 6 84 90 91 13 +10970,15 9 16 36 37 38 37 48 50 7 4 +11791,5 6 92 64 16 36 37 38 37 108 35 54 7 4 +7586,5 6 53 54 58 89 7 4 +16778,1 6 9 16 17 62 32 93 7 8 +8637,5 6 90 16 61 16 36 16 17 11 13 +19967,5 6 92 64 16 36 37 38 37 108 35 54 7 8 +10805,1 6 53 51 107 108 50 54 7 8 +21738,1 6 92 57 9 16 36 37 38 17 10 93 7 4 +23949,1 6 34 36 37 17 19 58 7 8 +13955,1 6 34 36 37 17 19 58 7 4 +7316,1 6 53 64 36 37 38 37 35 11 8 +4342,5 6 51 114 115 115 52 7 8 +8762,70 16 36 37 38 37 10 7 4 +22898,15 96 36 16 17 43 32 7 8 +20648,5 6 84 18 12 16 61 16 17 62 10 7 4 +22899,15 96 36 16 17 43 32 7 4 +25006,5 6 84 18 12 16 61 16 17 62 10 7 8 +18646,5 6 88 55 57 65 71 47 48 68 7 4 +8107,5 6 53 9 16 17 37 35 11 8 +12433,15 34 36 37 74 7 4 +19700,15 57 53 53 9 10 13 +12432,15 34 36 37 74 7 8 +5064,1 6 53 12 16 36 37 38 37 68 54 7 8 +17946,1 6 55 67 42 43 17 37 50 54 7 4 +24822,5 6 84 57 57 9 16 17 10 54 7 4 +18858,1 6 53 12 16 36 37 38 37 68 54 7 4 +6180,1 6 55 67 42 43 17 37 50 54 7 8 +12685,1 6 51 42 43 17 10 54 7 8 +13702,1 6 9 61 62 48 68 7 4 +10157,1 6 51 42 43 17 10 54 7 4 +24146,5 6 64 61 62 91 54 7 4 +4538,15 55 55 12 90 16 61 16 17 37 72 7 8 +23743,5 6 64 61 62 91 54 7 8 +4537,15 55 55 12 90 16 61 16 17 37 72 7 4 +11147,1 6 9 61 62 48 68 7 8 +20962,5 6 47 48 32 54 7 4 +23152,5 6 55 53 67 68 54 7 8 +20961,5 6 47 48 32 54 7 8 +16462,1 6 55 53 9 10 54 7 4 +8484,1 6 55 53 9 10 54 7 8 +14135,1 6 67 68 11 11 8 +19963,1 6 92 64 16 36 37 38 37 35 54 7 4 +19962,1 6 92 64 16 36 37 38 37 35 54 7 8 +20182,15 12 16 99 16 17 37 108 52 7 4 +238,15 12 36 16 61 16 17 19 13 +17333,5 6 57 57 57 12 11 66 27 28 +12153,1 6 65 49 47 48 72 7 8 +10715,1 6 9 10 58 58 13 +23484,1 6 26 88 55 56 13 +8763,70 16 36 37 38 37 10 7 8 +23157,1 6 57 9 16 36 16 117 118 68 7 4 +15135,1 6 9 10 56 54 54 7 4 +23158,1 6 57 9 16 36 16 117 118 68 7 8 +16600,5 6 57 96 16 36 16 61 16 17 19 7 4 +20373,1 6 88 34 35 89 7 4 +16599,5 6 57 96 16 36 16 61 16 17 19 7 8 +7228,70 16 36 16 17 37 48 35 7 4 +7227,70 16 36 16 17 37 48 35 7 8 +10794,15 44 9 16 17 69 +12364,15 57 9 16 42 16 17 10 93 7 8 +15136,1 6 9 10 56 54 54 7 8 +13048,1 6 12 34 47 36 37 11 8 +12365,15 57 9 16 42 16 17 10 93 7 4 +15709,15 57 53 57 57 9 16 17 69 +25219,5 6 53 9 16 17 37 35 7 4 +1965,1 45 21 22 17 37 50 85 54 7 4 +25220,5 6 53 9 16 17 37 35 7 8 +12512,5 6 53 88 57 58 54 7 8 +4290,1 6 67 68 56 89 7 8 +23073,1 6 9 36 61 16 17 37 35 7 4 +5145,5 6 53 88 57 58 54 7 4 +1717,5 6 55 12 55 56 11 8 +1966,1 45 21 22 17 37 50 85 54 7 8 +8777,1 6 67 68 56 89 7 4 +7190,5 6 65 12 16 17 11 8 +713,15 57 65 66 13 +1477,15 53 53 54 13 +17676,5 6 55 12 57 96 16 36 37 38 17 19 58 11 8 +18937,5 6 53 18 12 16 61 16 17 19 13 +16272,15 57 9 16 117 118 48 50 7 4 +12582,1 6 26 55 51 52 58 27 28 +16273,15 57 9 16 117 118 48 50 7 8 +5356,5 6 26 9 16 17 10 7 8 +18130,1 6 53 9 16 17 91 54 7 4 +26057,1 6 67 68 11 7 8 +6835,5 6 26 9 16 17 10 7 4 +3762,5 6 53 31 36 37 10 7 4 +16400,5 6 65 12 16 17 11 13 +23221,5 6 64 16 36 16 17 37 115 72 54 7 4 +1385,5 6 53 31 36 37 10 7 8 +13241,5 6 65 57 57 12 16 36 37 38 17 11 13 +23348,5 6 65 9 16 17 91 7 4 +14424,1 6 65 88 57 58 58 7 8 +22812,5 6 65 9 16 17 91 7 8 +13240,5 6 65 57 57 12 16 36 37 38 17 11 8 +23604,1 6 57 9 61 62 32 54 7 4 +683,1 6 64 16 61 62 17 10 54 85 54 7 4 +18869,15 9 16 36 16 17 11 52 7 4 +2935,5 6 12 16 17 37 32 93 7 4 +9171,1 6 64 16 61 62 17 10 54 85 54 7 8 +11136,5 6 64 92 9 10 93 63 7 8 +13884,15 96 16 39 36 16 36 37 38 17 11 13 +13423,15 12 16 36 16 36 16 17 37 52 7 8 +9175,15 12 16 36 16 36 16 17 37 52 7 4 +6442,5 6 55 88 88 9 16 17 10 7 8 +20063,15 49 47 42 43 17 37 48 52 7 8 +20062,15 49 47 42 43 17 37 48 52 7 4 +21134,5 6 9 36 16 17 37 52 7 4 +3101,5 6 9 36 16 17 37 52 7 8 +21055,1 6 86 9 16 17 69 +20411,1 6 9 9 16 17 10 7 8 +9291,5 6 53 9 16 17 62 10 7 8 +21943,1 6 51 36 37 19 11 8 +5615,5 6 53 9 16 17 62 10 7 4 +17420,5 6 41 12 26 9 16 17 11 7 4 +11663,15 44 34 36 37 17 62 68 7 4 +12634,5 6 47 107 36 37 10 30 7 8 +12635,5 6 47 107 36 37 10 30 7 4 +25386,5 6 57 92 57 9 16 17 37 50 93 58 7 8 +6090,1 6 29 31 32 7 8 +13409,5 6 16 53 12 36 16 17 37 72 7 8 +10248,5 6 12 65 71 47 48 68 66 11 8 +5008,1 6 29 31 32 7 4 +11664,15 44 34 36 37 17 62 68 7 8 +17678,15 55 12 57 96 16 36 37 38 17 19 58 11 56 7 8 +1395,1 12 16 17 63 7 4 +1523,1 6 53 18 12 31 32 7 8 +20581,15 55 12 57 96 16 36 37 38 17 19 58 11 56 7 4 +15533,15 96 16 36 37 38 19 13 +1524,1 6 53 18 12 31 32 7 4 +22024,1 6 67 47 36 37 17 19 58 7 4 +16586,1 6 67 47 36 37 17 19 58 7 8 +6394,15 44 96 36 16 17 62 10 7 8 +10539,5 6 53 18 12 16 17 63 7 4 +14207,15 71 47 42 43 17 63 7 8 +10487,5 6 51 42 43 63 7 4 +6393,15 44 96 36 16 17 62 10 7 4 +10536,5 6 53 18 12 16 17 63 7 8 +13883,15 96 16 39 36 16 36 37 38 17 11 8 +14206,15 71 47 42 43 17 63 7 4 +8521,5 6 67 61 62 10 7 8 +10488,5 6 51 42 43 63 7 8 +4549,97 16 42 16 17 19 13 +6830,5 6 49 47 36 37 17 10 7 8 +1398,1 12 16 17 63 7 8 +8522,5 6 67 61 62 10 7 4 +20113,15 12 36 16 61 16 17 11 8 +3670,5 6 49 47 36 37 17 10 7 4 +5441,1 6 34 47 48 35 7 8 +20938,15 12 36 16 61 16 17 11 13 +5537,1 6 34 47 48 35 7 4 +14240,1 6 9 10 66 54 7 4 +19906,1 6 9 10 54 85 7 8 +19440,15 53 9 16 17 43 32 10 54 85 54 7 4 +24047,5 6 57 9 16 17 37 48 32 7 8 +26637,1 6 12 16 36 16 61 16 17 19 +4803,1 6 9 10 66 54 7 8 +19903,1 6 9 10 54 85 7 4 +7113,15 53 9 16 17 43 32 10 54 85 54 7 8 +25570,5 6 126 51 61 62 63 7 4 +20347,1 6 9 16 36 37 38 37 108 35 7 8 +24372,1 6 12 57 58 58 11 7 8 +22799,5 6 12 12 36 16 17 37 50 11 8 +25699,1 6 12 57 58 58 11 7 4 +25569,5 6 126 51 61 62 63 7 8 +23257,1 6 84 88 55 9 16 17 10 85 7 8 +22738,15 90 61 62 17 62 10 7 4 +3457,5 6 12 9 16 36 37 38 17 10 7 8 +5494,5 6 12 9 16 36 37 38 17 10 7 4 +23258,1 6 84 88 55 9 16 17 10 85 7 4 +16053,5 6 84 55 9 16 36 16 17 37 72 85 7 4 +6066,1 6 51 36 37 19 7 8 +18855,5 6 53 57 9 16 17 11 8 +22739,15 90 61 62 17 62 10 7 8 +9756,5 6 84 55 9 16 36 16 17 37 72 85 7 8 +19213,1 6 51 36 37 19 7 4 +3727,5 6 53 18 12 16 61 16 17 11 13 +14710,5 6 65 12 16 17 19 13 +19493,1 6 12 34 36 37 17 63 7 4 +231,5 6 53 18 12 16 61 16 17 11 8 +18297,1 6 12 34 36 37 17 63 7 8 +25056,15 88 57 58 89 27 28 +17163,1 6 31 47 48 32 93 58 7 4 +6907,1 6 18 12 47 48 32 7 8 +16101,5 6 57 58 93 7 4 +17164,1 6 31 47 48 32 93 58 7 8 +1556,1 6 73 16 17 11 8 +9443,5 6 34 47 48 50 58 54 7 8 +9442,5 6 34 47 48 50 58 54 7 4 +16092,1 6 92 57 58 7 8 +21500,5 6 55 12 11 56 7 4 +1724,5 6 55 12 55 88 55 56 56 11 8 +20040,1 6 18 12 34 42 43 17 11 8 +16093,1 6 92 57 58 7 4 +6756,5 6 55 12 11 56 7 8 +16871,15 34 47 48 50 87 7 8 +8783,5 6 86 53 36 37 63 7 8 +20351,1 6 55 12 16 36 16 17 37 35 7 4 +22400,15 9 16 61 62 17 62 10 7 4 +25157,5 6 86 53 36 37 63 7 4 +15514,15 88 51 51 36 37 11 8 +22401,15 9 16 61 62 17 62 10 7 8 +15515,15 88 51 51 36 37 11 13 +1409,1 12 39 36 39 36 16 17 69 +16872,15 34 47 48 50 87 7 4 +6193,15 55 57 67 61 62 63 7 8 +17659,5 6 119 36 16 17 10 7 4 +6194,15 55 57 67 61 62 63 7 4 +6908,1 6 18 12 47 48 32 7 4 +17658,5 6 119 36 16 17 10 7 8 +20258,1 6 34 47 48 35 11 8 +10738,1 6 34 107 36 37 17 10 7 8 +20467,1 12 11 110 72 89 13 +9354,5 6 53 12 16 36 37 38 37 35 7 4 +18187,1 6 57 12 16 17 37 52 54 7 4 +11643,5 6 53 12 16 36 37 38 37 35 7 8 +24304,1 6 34 107 36 37 17 10 7 4 +2920,1 6 55 9 16 36 16 17 37 72 7 4 +4130,15 67 36 37 19 58 11 7 4 +18186,1 6 57 12 16 17 37 52 54 7 8 +20583,5 6 86 31 36 37 17 10 7 8 +2917,1 6 55 9 16 36 16 17 37 72 7 8 +16094,1 6 53 54 58 93 7 4 +15046,5 6 53 57 51 36 37 10 7 4 +25877,5 6 12 12 39 36 16 36 16 17 63 7 4 +23339,5 6 53 57 51 36 37 10 7 8 +25878,5 6 12 12 39 36 16 36 16 17 63 7 8 +12614,15 42 43 17 37 48 35 54 7 8 +11628,15 65 49 47 48 50 7 8 +11627,15 65 49 47 48 50 7 4 +11574,1 6 34 42 43 17 3 8 +23487,15 12 11 56 89 27 7 4 +9433,1 6 53 57 67 68 7 8 +9434,1 6 53 57 67 68 7 4 +23892,15 55 88 90 36 16 17 37 50 7 4 +3030,1 6 9 16 17 37 68 7 4 +7511,1 6 9 16 17 37 68 7 8 +5983,15 88 57 58 89 7 4 +9115,15 55 12 55 56 56 89 11 8 +22189,1 6 34 36 16 17 37 72 54 7 4 +5984,15 88 57 58 89 7 8 +11431,1 6 84 64 16 17 10 7 8 +24143,5 6 55 9 16 42 16 17 43 72 58 7 4 +23476,1 6 9 16 42 16 17 19 13 +14763,1 6 84 64 16 17 10 7 4 +15416,15 49 47 36 16 17 19 13 +13092,60 16 36 37 38 37 52 7 4 +2939,5 6 92 12 36 16 17 63 7 8 +3477,1 6 12 71 72 13 +2940,5 6 92 12 36 16 17 63 7 4 +25949,5 6 53 57 57 9 16 17 37 48 35 7 8 +17625,5 6 53 53 49 36 37 17 10 7 8 +11330,15 9 16 17 43 48 35 54 7 8 +12613,15 42 43 17 37 48 35 54 7 4 +24066,1 6 53 12 51 107 108 108 52 11 8 +11329,15 9 16 17 43 48 35 54 7 4 +8097,1 6 88 9 16 17 62 10 7 4 +18316,15 55 90 16 17 11 13 +24714,1 6 12 16 61 16 17 11 7 8 +8096,1 6 88 9 16 17 62 10 7 8 +19435,5 6 84 18 12 16 17 37 35 58 89 85 7 8 +2489,5 6 92 9 16 17 37 72 93 58 7 4 +13807,1 6 64 61 62 17 37 52 56 7 4 +25948,5 6 53 57 57 9 16 17 37 48 35 7 4 +73,1 12 26 9 16 17 11 8 +25267,1 6 64 61 62 17 37 52 56 7 8 +2971,1 6 12 16 61 16 17 11 7 4 +13093,60 16 36 37 38 37 52 7 8 +13552,5 6 92 9 16 17 37 72 93 58 7 8 +5336,15 55 90 16 17 11 8 +22977,1 6 84 57 58 56 87 7 4 +22978,1 6 84 57 58 56 87 7 8 +12081,15 57 12 49 50 7 8 +4222,15 55 55 9 61 62 52 7 4 +14474,15 67 107 36 37 17 10 7 8 +13334,5 6 53 119 16 61 16 17 43 50 54 7 4 +13911,1 6 88 12 36 37 38 11 8 +17792,1 6 88 12 36 37 38 11 13 +375,15 55 9 16 17 69 +4223,15 55 55 9 61 62 52 7 8 +21892,1 6 44 88 89 56 7 4 +20913,5 6 71 47 48 68 11 7 4 +21891,1 6 44 88 89 56 7 8 +22079,5 6 71 47 48 68 11 7 8 +14473,15 67 107 36 37 17 10 7 4 +4653,1 6 64 16 42 16 17 10 7 8 +5039,1 6 9 36 61 16 17 10 7 8 +12118,15 12 36 16 17 37 52 7 4 +4654,1 6 64 16 42 16 17 10 7 4 +5038,1 6 9 36 61 16 17 10 7 4 +12119,15 12 36 16 17 37 52 7 8 +3317,15 9 36 37 38 37 52 13 +20356,5 6 84 9 36 16 36 16 17 10 85 7 4 +1068,1 6 53 57 57 9 16 17 10 7 4 +14174,1 6 53 51 52 93 7 4 +24916,1 6 53 51 52 93 7 8 +10666,15 57 9 16 42 16 36 37 38 17 11 8 +10667,15 57 9 16 42 16 36 37 38 17 11 13 +18857,1 6 53 67 47 36 37 17 11 8 +6384,15 49 47 48 52 54 7 4 +12080,15 57 12 49 50 7 4 +6385,15 49 47 48 52 54 7 8 +15540,5 6 67 47 36 37 10 93 7 4 +26199,15 12 16 36 39 36 16 61 16 17 37 35 54 7 4 +23628,1 6 51 114 36 37 11 13 +11447,25 26 27 89 66 7 8 +13500,15 12 16 36 39 36 16 61 16 17 37 35 54 7 8 +8222,15 96 16 36 16 17 37 52 54 7 4 +17075,1 6 51 114 36 37 11 8 +18114,5 6 55 57 9 36 16 17 37 72 7 8 +18115,5 6 55 57 9 36 16 17 37 72 7 4 +19810,5 6 67 107 108 68 7 8 +17161,1 6 57 55 9 16 17 11 8 +8341,5 6 53 55 53 31 32 13 +8203,15 49 47 47 36 37 17 11 8 +8204,15 49 47 47 36 37 17 11 13 +22516,1 6 18 12 34 36 37 10 54 7 8 +22529,1 6 9 10 58 66 11 7 8 +5454,5 6 53 51 107 36 37 17 19 13 +22017,1 6 16 17 11 8 +11137,5 6 64 92 9 10 93 63 7 4 +23207,1 6 9 10 58 66 11 7 4 +8223,15 96 16 36 16 17 37 52 54 7 8 +18845,5 6 67 47 36 37 10 93 7 8 +22018,1 6 16 17 11 13 +5914,25 26 27 89 66 7 4 +13211,1 6 65 88 88 9 16 17 10 7 8 +19729,5 6 119 120 89 56 89 7 4 +13210,1 6 65 88 88 9 16 17 10 7 4 +10091,5 6 53 49 47 48 50 54 7 8 +22007,15 55 12 88 55 9 39 36 16 17 11 13 +11143,1 6 64 92 42 16 17 43 32 93 7 8 +19728,5 6 119 120 89 56 89 7 8 +22006,15 55 12 88 55 9 39 36 16 17 11 8 +7491,5 6 53 49 47 48 50 54 7 4 +6097,5 45 21 22 17 43 32 30 7 8 +12943,15 55 9 16 17 37 48 50 7 8 +12942,15 55 9 16 17 37 48 50 7 4 +15716,5 6 57 57 121 122 13 +22884,5 6 55 56 56 89 7 4 +9455,5 6 9 36 37 17 10 7 8 +22705,5 6 55 56 56 89 7 8 +1538,5 6 9 36 37 17 10 7 4 +20451,5 6 51 47 48 48 52 7 8 +21025,15 9 16 17 43 17 37 50 7 8 +21519,1 6 55 12 9 16 36 37 38 17 3 4 +5989,5 6 12 16 36 16 17 10 7 4 +14263,5 6 55 53 55 56 13 +16974,15 55 12 57 96 16 36 37 38 37 72 7 8 +5990,5 6 12 16 36 16 17 10 7 8 +2750,5 6 55 88 55 56 7 4 +13829,15 9 16 17 62 32 54 7 4 +25069,5 6 9 36 16 36 37 38 17 3 4 +1247,5 6 53 9 16 17 10 54 7 8 +18069,1 6 9 61 62 63 7 8 +6270,5 6 26 65 9 16 17 11 8 +25068,5 6 9 36 16 36 37 38 17 3 8 +24496,1 12 16 36 16 17 37 48 72 7 4 +377,1 6 9 61 62 63 7 4 +1244,5 6 53 9 16 17 10 54 7 4 +2582,1 6 9 16 42 16 17 11 8 +15694,5 6 9 16 17 17 54 7 8 +13830,15 9 16 17 62 32 54 7 8 +23002,5 6 9 16 17 17 54 7 4 +14713,15 53 34 36 37 17 120 7 8 +20398,15 55 71 72 7 4 +16167,5 6 57 57 34 35 7 8 +16168,5 6 57 57 34 35 7 4 +24446,5 6 9 10 89 56 89 7 8 +14287,15 57 53 9 10 56 56 54 7 8 +20399,15 55 71 72 7 8 +14288,15 57 53 9 10 56 56 54 7 4 +14699,1 6 41 12 16 17 62 10 7 4 +12849,1 6 9 16 42 16 17 11 13 +20096,5 6 31 16 42 43 17 10 54 7 8 +11142,1 6 64 92 42 16 17 43 32 93 7 4 +11472,5 6 31 16 42 43 17 10 54 7 4 +2798,70 16 36 16 17 37 50 7 4 +2799,70 16 36 16 17 37 50 7 8 +15269,5 6 55 56 56 89 11 8 +15981,5 6 12 51 47 36 37 17 11 8 +6455,5 6 26 86 87 13 +11291,15 88 26 65 66 27 28 +8276,5 6 12 65 57 26 9 16 17 11 8 +12372,5 6 9 16 21 77 78 22 8 +729,1 6 9 10 56 89 13 +3209,1 6 51 52 56 11 7 8 +4353,1 6 53 51 36 37 17 10 54 7 8 +14489,5 6 55 88 9 16 17 10 7 4 +10780,70 16 36 16 17 37 48 32 54 7 8 +4352,1 6 53 51 36 37 17 10 54 7 4 +2209,1 6 9 10 58 27 28 +10779,70 16 36 16 17 37 48 32 54 7 4 +8277,5 6 12 65 57 26 9 16 17 11 13 +11536,1 6 51 52 56 11 7 4 +11765,5 6 9 36 16 61 16 17 11 8 +24307,15 88 57 58 89 11 8 +11766,5 6 9 36 16 61 16 17 11 13 +21349,1 6 18 12 16 17 37 68 52 7 8 +23046,1 6 57 65 9 16 17 10 7 8 +13742,1 6 57 65 9 16 17 10 7 4 +18089,5 6 12 9 16 17 37 7 8 +13047,15 44 34 47 48 35 11 7 4 +22540,5 6 96 36 16 61 16 17 19 33 13 +18306,1 6 57 26 9 16 17 37 108 48 52 7 8 +22542,1 6 65 88 88 9 16 117 118 72 11 8 +23987,1 6 53 105 106 58 7 4 +18090,5 6 12 9 16 17 37 7 4 +19925,1 6 57 55 53 9 10 13 +25367,15 44 34 47 48 35 11 7 8 +11194,5 6 9 16 36 37 38 17 10 30 7 4 +19218,1 6 53 71 47 36 37 17 11 8 +18509,5 6 53 31 36 37 17 10 54 7 8 +6106,5 6 9 16 36 37 38 17 10 30 7 8 +20788,1 6 53 105 106 58 7 8 +14788,5 6 96 36 16 21 77 78 22 8 +13618,5 6 18 12 16 17 43 32 14 7 4 +25453,5 6 64 61 62 17 37 68 56 54 7 8 +26555,15 57 9 61 16 61 16 17 19 13 +11424,1 6 9 36 16 17 37 35 7 8 +24355,1 6 36 37 63 7 8 +25452,5 6 64 61 62 17 37 68 56 54 7 4 +7583,1 45 21 22 17 37 35 54 7 4 +13941,15 42 43 17 37 72 54 7 8 +26384,5 6 57 53 9 16 39 36 16 17 63 7 4 +7584,1 45 21 22 17 37 35 54 7 8 +24547,1 6 12 16 17 37 72 7 8 +22478,1 6 64 16 61 16 21 77 78 22 79 4 +23306,5 6 53 9 16 17 37 48 72 54 7 8 +18638,1 6 12 16 17 37 72 7 4 +19898,1 6 53 12 11 14 54 85 7 4 +14801,5 6 92 65 66 7 8 +9646,15 57 53 34 35 54 7 4 +4808,15 65 9 16 17 10 54 7 4 +14802,5 6 92 65 66 7 4 +20668,5 6 53 9 16 17 37 48 72 54 7 4 +9647,15 57 53 34 35 54 7 8 +4809,15 65 9 16 17 10 54 7 8 +25107,5 6 67 42 43 17 37 68 54 7 4 +13940,15 42 43 17 37 72 54 7 4 +15860,5 6 67 42 43 17 37 68 54 7 8 +18056,5 6 53 12 16 17 11 7 4 +8172,1 6 9 36 16 17 37 35 7 4 +22917,15 9 16 17 43 17 43 32 54 7 4 +4954,5 6 57 34 36 37 17 10 7 8 +12323,15 9 16 17 43 17 43 32 54 7 8 +17187,5 6 57 34 36 37 17 10 7 4 +18080,5 6 53 18 96 16 17 69 +13878,5 6 65 9 16 36 37 38 17 11 13 +12933,5 6 92 55 56 10 93 7 4 +12599,5 6 92 55 56 10 93 7 8 +13877,5 6 65 9 16 36 37 38 17 11 8 +23635,1 6 18 12 42 43 17 3 8 +20953,5 6 31 117 16 17 19 13 +10052,1 6 49 50 56 11 8 +16982,15 96 16 36 37 38 17 19 89 11 8 +15315,5 6 31 47 36 37 17 37 52 7 8 +19409,95 36 16 17 37 35 54 7 8 +14029,5 6 31 47 36 37 17 37 52 7 4 +932,5 6 84 90 91 7 8 +21245,1 6 57 53 9 61 16 17 75 7 4 +19597,1 6 64 42 16 17 11 8 +933,5 6 84 90 91 7 4 +19408,95 36 16 17 37 35 54 7 4 +22523,1 6 9 36 16 17 37 35 11 13 +2618,1 6 9 16 17 37 48 50 58 7 4 +13036,5 6 55 88 57 58 58 13 +24903,15 55 55 12 36 39 36 16 17 19 13 +8722,15 9 16 39 36 16 61 16 17 11 13 +13647,5 6 9 16 17 37 115 68 13 +7431,15 9 16 17 37 48 52 7 8 +7432,15 9 16 17 37 48 52 7 4 +510,1 45 21 22 46 8 +9806,5 6 55 34 35 56 7 8 +1521,1 45 21 22 46 4 +20036,15 55 53 55 55 56 56 54 7 4 +10104,1 6 29 9 42 16 17 10 7 8 +25940,15 9 36 16 61 16 61 16 17 37 35 7 4 +14283,15 55 53 55 55 56 56 54 7 8 +17084,1 6 53 18 12 16 17 11 54 7 4 +6940,15 65 9 16 17 120 54 7 8 +7001,15 86 9 16 17 63 54 7 4 +6941,15 65 9 16 17 120 54 7 4 +7002,15 86 9 16 17 63 54 7 8 +25459,1 6 29 9 42 16 17 10 7 4 +16965,5 6 49 47 48 52 7 4 +17384,5 6 49 47 48 52 7 8 +22522,1 6 9 36 16 17 37 35 11 8 +25905,5 6 53 12 16 36 37 38 11 13 +14000,1 6 64 92 16 17 10 7 8 +16690,1 6 31 47 48 48 32 7 4 +18371,1 6 9 10 66 56 54 7 8 +15243,1 6 92 12 11 7 4 +23677,5 6 53 51 42 43 17 37 35 87 54 7 4 +15244,1 6 92 12 11 7 8 +11461,1 6 64 92 16 17 10 7 4 +23360,5 6 53 51 42 43 17 37 35 87 54 7 8 +14619,1 6 9 10 66 56 54 7 4 +17026,1 6 31 47 48 48 32 7 8 +25941,15 9 36 16 61 16 61 16 17 37 35 7 8 +18532,15 51 47 36 37 10 85 7 4 +23946,5 6 53 12 16 36 37 38 11 8 +3236,1 12 9 16 17 37 35 7 4 +18531,15 51 47 36 37 10 85 7 8 +3237,1 12 9 16 17 37 35 7 8 +8101,1 6 49 50 56 7 4 +14928,1 6 84 57 58 85 7 4 +20444,1 6 53 54 112 7 8 +12893,5 6 55 34 35 56 7 4 +22130,15 12 16 36 37 38 37 35 11 7 4 +24021,5 6 88 12 26 9 16 17 19 13 +14929,1 6 84 57 58 85 7 8 +22129,15 12 16 36 37 38 37 35 11 7 8 +17695,15 34 36 37 17 19 33 13 +21256,5 6 67 42 43 17 37 35 54 7 8 +8721,15 9 16 39 36 16 61 16 17 11 8 +20441,1 6 53 54 112 7 4 +12610,5 6 53 34 47 48 35 7 4 +12611,5 6 53 34 47 48 35 7 8 +2775,1 6 49 50 56 7 8 +7696,1 6 12 88 57 9 16 17 91 7 4 +24955,5 6 18 12 16 17 118 17 63 7 8 +16086,1 6 65 9 16 17 106 7 4 +3173,5 6 18 12 16 17 118 17 63 7 4 +22722,1 6 64 16 42 16 17 43 32 93 7 4 +6160,1 6 12 16 17 74 7 8 +8806,1 6 65 9 16 17 106 7 8 +9373,25 26 27 11 89 13 +19147,1 6 12 88 57 9 16 17 91 7 8 +22723,1 6 64 16 42 16 17 43 32 93 7 8 +9197,1 6 12 16 17 74 7 4 +13551,5 6 90 91 93 58 7 8 +24258,5 6 55 12 9 16 17 37 50 7 4 +26688,15 67 47 107 36 37 10 7 4 +23648,1 12 11 110 68 7 8 +26689,15 67 47 107 36 37 10 7 8 +23921,15 55 12 88 55 56 56 11 8 +3113,1 6 88 57 58 58 89 13 +20302,1 6 67 68 68 7 8 +18254,1 6 53 12 16 61 16 17 10 7 8 +20301,1 6 67 68 68 7 4 +4119,15 34 36 16 17 37 48 72 7 4 +18955,5 6 53 9 10 11 7 4 +7844,15 53 64 36 37 38 37 108 35 93 7 8 +1369,1 6 64 61 62 17 37 52 85 54 7 8 +7845,15 53 64 36 37 38 37 108 35 93 7 4 +12310,5 6 57 9 16 17 91 7 4 +10737,1 6 64 61 62 17 37 52 85 54 7 4 +13966,5 6 57 58 66 58 7 8 +15800,5 6 57 9 16 17 91 7 8 +6377,15 96 36 61 16 17 19 13 +9431,5 6 53 9 10 11 7 8 +13965,5 6 57 58 66 58 7 4 +20340,5 6 34 107 108 35 87 7 8 +3758,5 6 67 68 11 54 7 4 +3779,5 6 67 68 11 54 7 8 +6503,1 6 64 61 62 17 17 37 32 54 7 8 +14641,5 6 57 58 89 27 66 7 8 +15756,5 6 57 58 89 27 66 7 4 +18255,1 6 53 12 16 61 16 17 10 7 4 +634,15 71 47 48 68 7 4 +7243,1 6 64 16 17 37 52 7 4 +7751,5 6 9 16 39 36 16 36 16 17 37 52 7 8 +633,15 71 47 48 68 7 8 +7244,1 6 64 16 17 37 52 7 8 +8113,5 6 9 16 39 36 16 36 16 17 37 52 7 4 +811,5 6 84 12 16 36 37 38 37 48 68 7 4 +7839,1 6 92 34 107 36 37 63 54 7 8 +18000,1 6 67 68 11 13 +2294,1 6 64 61 62 37 35 87 7 8 +24586,5 6 84 12 16 36 37 38 37 48 68 7 8 +16057,1 6 92 34 107 36 37 63 54 7 4 +3756,1 6 67 68 11 8 +23544,5 6 9 9 9 9 9 16 17 11 8 +2473,5 6 90 91 93 58 7 4 +6368,1 6 64 61 62 37 35 87 7 4 +23888,5 6 57 58 89 27 7 4 +21904,1 6 55 49 50 7 4 +16073,15 31 42 43 17 37 32 93 7 8 +21903,1 6 55 49 50 7 8 +16074,15 31 42 43 17 37 32 93 7 4 +23421,1 6 64 61 62 17 17 37 32 54 7 4 +6762,5 6 55 12 12 88 9 16 17 11 8 +9167,1 6 67 68 56 11 7 4 +20889,5 6 12 65 88 12 71 117 16 17 11 8 +22020,1 6 67 68 56 11 7 8 +6404,1 6 12 31 47 48 32 11 8 +10410,1 6 9 10 27 66 56 7 8 +4113,15 67 47 36 37 19 58 11 8 +1472,1 6 88 55 9 16 17 37 48 68 7 8 +23422,1 6 88 55 9 16 17 37 48 68 7 4 +24698,15 86 53 64 16 17 10 7 4 +20753,1 12 11 130 7 4 +24699,15 86 53 64 16 17 10 7 8 +2856,1 6 57 9 16 17 37 50 54 7 8 +20752,1 12 11 130 7 8 +2855,1 6 57 9 16 17 37 50 54 7 4 +9739,5 6 84 71 42 43 17 63 85 7 4 +6409,5 6 12 12 11 58 11 8 +11729,15 57 31 47 48 32 54 7 8 +19021,5 6 64 36 16 117 118 35 7 4 +11728,15 57 31 47 48 32 54 7 4 +5485,1 6 67 47 36 16 17 37 48 72 7 8 +24505,15 9 16 36 16 61 16 17 19 13 +8077,15 55 57 9 36 37 38 17 10 7 4 +8078,15 55 57 9 36 37 38 17 10 7 8 +19899,1 6 53 12 11 14 54 85 7 8 +23437,5 6 9 16 17 43 48 32 87 7 4 +14808,5 6 92 55 56 87 93 7 8 +23438,5 6 9 16 17 43 48 32 87 7 8 +21049,5 6 92 55 56 87 93 7 4 +4036,70 16 36 37 38 17 75 7 8 +6636,5 6 53 9 36 16 17 37 68 54 7 8 +4035,70 16 36 37 38 17 75 7 4 +6635,5 6 53 9 36 16 17 37 68 54 7 4 +14294,15 55 55 9 36 37 38 10 54 7 8 +14295,15 55 55 9 36 37 38 10 54 7 4 +21584,5 6 119 16 61 16 17 11 8 +14486,1 6 9 36 16 17 10 54 7 4 +23285,5 6 51 42 43 17 106 7 4 +13695,15 71 47 36 37 10 7 4 +13694,15 71 47 36 37 10 7 8 +26267,1 12 9 16 17 37 48 32 7 4 +24358,5 6 18 12 16 17 43 35 7 8 +14904,5 6 29 61 62 10 7 8 +26268,1 12 9 16 17 37 48 32 7 8 +25859,1 6 44 26 9 16 17 10 7 4 +19410,5 6 53 64 36 16 17 37 35 54 7 8 +2215,1 6 44 26 9 16 17 10 7 8 +26583,5 6 55 57 67 47 36 37 11 8 +6359,1 6 53 12 57 58 11 8 +4157,5 6 119 61 16 17 11 8 +13839,1 6 53 34 47 48 35 54 54 7 8 +11249,5 6 53 34 47 48 35 54 7 4 +6588,5 6 64 61 62 17 37 48 35 11 7 8 +17047,5 6 53 34 47 48 35 54 7 8 +3954,5 6 84 9 10 11 8 +24451,5 6 49 36 37 120 7 8 +13864,1 6 53 34 47 48 35 54 54 7 4 +18426,15 71 47 36 37 17 10 54 7 8 +18425,15 71 47 36 37 17 10 54 7 4 +14665,15 9 16 16 16 17 43 52 7 4 +14664,15 9 16 16 16 17 43 52 7 8 +22384,5 6 90 16 36 16 17 11 13 +10599,5 6 90 16 36 16 17 11 8 +24644,15 55 53 12 16 17 69 +11195,1 6 92 29 30 7 4 +10099,5 6 9 16 17 19 7 8 +5607,15 49 109 110 58 7 8 +11185,1 6 92 29 30 7 8 +2596,1 6 53 49 107 108 52 54 7 4 +15882,1 6 57 92 9 36 16 17 91 7 4 +2133,5 6 9 16 17 19 7 4 +5606,15 49 109 110 58 7 4 +5453,1 6 53 49 107 108 52 54 7 8 +24272,1 6 57 92 9 36 16 17 91 7 8 +5092,15 34 47 48 72 7 4 +26696,5 6 64 16 42 16 17 74 7 8 +5093,15 34 47 48 72 7 8 +26681,1 6 57 67 117 16 17 11 8 +23939,1 6 16 132 16 61 16 17 11 8 +9888,15 44 31 36 37 17 3 4 +9889,15 44 31 36 37 17 3 8 +12647,1 6 16 16 16 16 16 17 11 8 +19502,1 6 9 16 36 37 38 17 37 52 7 4 +21799,5 6 64 61 62 17 37 48 68 11 7 4 +16883,1 6 16 16 16 16 16 17 11 13 +9003,5 6 64 16 42 16 17 74 7 4 +23975,1 6 57 9 16 17 37 72 54 7 4 +19505,1 6 9 16 36 37 38 17 37 52 7 8 +6548,1 6 51 52 56 89 7 8 +6567,15 88 57 9 16 39 36 16 17 11 8 +20350,5 6 76 16 17 37 72 7 8 +25989,1 6 55 12 55 57 96 36 37 38 19 58 11 8 +26780,15 9 16 36 16 17 37 50 66 7 8 +4900,5 6 76 16 17 37 72 7 4 +4057,15 9 16 117 118 32 7 4 +6568,15 88 57 9 16 39 36 16 17 11 13 +26779,15 9 16 36 16 17 37 50 66 7 4 +4056,15 9 16 117 118 32 7 8 +4371,1 6 51 52 56 89 7 4 +8796,5 6 86 53 47 36 37 17 10 54 7 8 +12228,5 6 57 57 92 9 10 13 +24364,5 6 18 12 16 42 16 17 37 7 4 +1534,5 6 73 74 13 +8797,5 6 86 53 47 36 37 17 10 54 7 4 +24363,5 6 18 12 16 42 16 17 37 7 8 +26418,5 6 64 16 17 91 54 7 8 +11174,1 6 55 12 55 57 9 16 17 10 7 8 +19817,1 6 55 12 55 57 9 16 17 10 7 4 +12335,5 6 12 16 61 16 17 11 7 4 +11971,5 6 12 16 61 16 17 11 7 8 +3841,5 6 53 12 16 61 16 17 62 10 7 4 +9139,5 6 57 53 34 107 108 35 54 7 4 +3840,5 6 53 12 16 61 16 17 62 10 7 8 +10727,5 6 105 106 27 7 4 +10113,1 6 96 16 36 37 38 17 3 8 +10112,1 6 96 16 36 37 38 17 3 4 +10812,70 16 36 37 38 37 68 7 8 +24407,1 6 67 42 43 17 37 72 7 8 +10811,70 16 36 37 38 37 68 7 4 +2989,15 55 57 96 36 16 17 19 58 11 8 +15779,15 86 88 89 87 7 4 +3348,5 6 67 47 36 37 17 11 13 +24408,1 6 67 42 43 17 37 72 7 4 +15778,15 86 88 89 87 7 8 +15945,1 6 84 31 36 37 17 62 10 7 8 +14930,5 6 84 57 88 89 13 +18800,1 6 84 31 36 37 17 62 10 7 4 +23018,1 6 55 34 36 37 10 7 8 +183,1 6 67 68 7 8 +17599,1 6 55 34 36 37 10 7 4 +182,1 6 67 68 7 4 +3347,5 6 67 47 36 37 17 11 8 +25993,5 6 12 57 9 16 17 11 8 +361,5 6 53 67 68 13 +1284,1 6 55 34 36 37 69 +24125,5 6 9 36 16 61 16 17 37 7 4 +24018,1 6 84 51 107 36 37 17 10 54 7 4 +17490,1 6 84 51 107 36 37 17 10 54 7 8 +9009,1 6 57 88 89 66 7 4 +18324,5 6 119 39 36 16 16 17 98 +23584,1 6 90 16 36 16 17 91 7 4 +17309,5 6 18 12 16 17 43 32 66 7 8 +20029,15 9 16 36 16 17 37 50 7 8 +4137,15 96 36 16 17 37 68 7 4 +9682,5 6 84 12 16 17 10 7 8 +20030,15 9 16 36 16 17 37 50 7 4 +7379,1 6 105 16 61 39 36 16 17 19 7 4 +22878,1 6 64 16 36 16 17 62 10 7 8 +10672,1 6 105 16 61 39 36 16 17 19 7 8 +26337,1 6 64 16 36 16 17 62 10 7 4 +21401,1 6 67 67 36 37 10 7 4 +7251,1 6 12 57 9 16 17 37 72 7 4 +9681,5 6 84 12 16 17 10 7 4 +11199,1 6 12 26 9 16 17 10 30 7 4 +4136,15 96 36 16 17 37 68 7 8 +15448,15 55 9 16 36 37 38 17 11 13 +25415,1 2 16 17 37 35 87 7 4 +15447,15 55 9 16 36 37 38 17 11 8 +19171,15 67 42 43 17 10 7 4 +21848,1 2 16 17 37 35 87 7 8 +24373,5 6 34 35 58 11 7 8 +17291,1 12 26 9 16 17 10 7 8 +19936,15 12 16 36 16 17 120 7 8 +19172,15 67 42 43 17 10 7 8 +22331,5 6 34 109 110 13 +17876,5 6 113 61 62 37 48 32 7 4 +25979,5 6 55 34 36 37 17 10 54 7 4 +17875,5 6 113 61 62 37 48 32 7 8 +250,1 6 31 32 13 +26177,1 6 71 36 37 17 37 50 54 7 8 +8814,15 44 31 36 37 17 11 13 +22386,5 6 18 12 16 17 37 35 11 7 8 +8813,15 44 31 36 37 17 11 8 +12883,1 6 55 67 36 37 69 +17768,15 55 57 9 16 17 37 123 11 8 +14289,5 6 55 53 55 56 56 54 7 4 +13329,15 49 42 43 17 91 54 7 4 +17386,5 6 51 47 36 37 17 19 58 11 8 +2025,1 6 64 16 36 16 17 37 35 7 8 +7260,1 6 67 36 37 17 10 7 4 +9751,1 6 57 9 16 17 43 72 85 7 4 +18599,5 6 55 53 55 56 56 54 7 8 +25439,1 6 55 9 16 117 118 48 72 7 4 +10648,15 12 36 16 17 37 52 54 7 4 +4971,5 6 55 53 12 11 54 7 8 +14660,1 6 64 16 36 16 17 37 35 7 4 +21143,5 6 55 53 12 11 54 7 4 +13330,15 49 42 43 17 91 54 7 8 +24821,5 6 53 9 10 58 89 85 54 7 4 +3677,1 6 67 36 37 17 10 7 8 +4940,1 6 84 64 16 17 69 +5107,15 67 47 36 37 38 37 48 35 87 7 8 +15161,1 6 57 9 16 17 62 10 7 8 +11313,1 6 57 9 16 17 62 10 7 4 +17357,1 6 55 9 16 117 118 48 72 7 8 +13487,1 6 9 36 16 17 62 10 7 8 +13488,1 6 9 36 16 17 62 10 7 4 +17979,5 6 55 53 55 56 89 54 7 4 +1916,5 6 55 53 55 56 89 54 7 8 +10871,5 6 53 31 47 36 37 17 75 7 4 +20423,1 6 57 12 36 37 38 11 13 +689,5 6 84 9 10 7 4 +688,5 6 84 9 10 7 8 +11892,1 6 57 12 36 37 38 11 8 +10649,15 12 36 16 17 37 52 54 7 8 +568,1 6 53 34 36 37 63 7 4 +17690,5 6 57 92 31 36 37 17 10 7 4 +1335,1 6 53 34 36 37 63 7 8 +9752,1 6 57 9 16 17 43 72 85 7 8 +17689,5 6 57 92 31 36 37 17 10 7 8 +14750,1 6 55 53 12 36 37 38 11 8 +25608,15 88 57 58 89 56 27 7 4 +12584,15 12 11 27 7 8 +9988,15 86 12 11 7 4 +10803,70 36 16 17 37 108 52 54 7 4 +12937,15 12 11 27 7 4 +17356,1 6 55 9 16 117 118 72 7 8 +9989,15 86 12 11 7 8 +10804,70 36 16 17 37 108 52 54 7 8 +14296,1 6 53 34 36 37 17 37 72 54 7 4 +21526,1 6 64 16 117 118 35 54 7 4 +26095,5 6 55 67 47 48 68 7 8 +18967,5 6 53 26 55 49 47 36 37 11 8 +13526,5 6 55 67 47 48 68 7 4 +14279,1 6 53 34 36 37 17 37 72 54 7 8 +11512,5 6 67 47 36 37 17 3 8 +20813,5 6 53 12 16 36 37 38 17 69 +4568,15 9 16 21 77 78 22 79 4 +16972,5 6 55 12 57 96 16 36 37 38 37 72 7 4 +20849,1 6 55 9 16 117 118 72 7 4 +20249,15 88 57 58 89 56 27 7 8 +4403,1 6 88 57 58 58 66 13 +16959,70 16 36 16 61 16 17 37 10 7 8 +16960,70 16 36 16 61 16 17 37 10 7 4 +12316,1 6 90 16 42 16 17 19 7 4 +12315,1 6 90 16 42 16 17 19 7 8 +24522,1 12 11 110 48 72 7 8 +19040,1 6 105 16 17 120 7 4 +7352,1 6 34 36 37 19 56 7 4 +24521,1 12 11 110 48 72 7 4 +21964,5 6 18 12 16 17 37 108 68 7 8 +69,5 6 9 39 36 16 17 10 7 4 +68,5 6 9 39 36 16 17 10 7 8 +15727,1 6 64 16 17 11 7 4 +798,15 51 47 48 72 7 8 +16754,1 6 64 16 117 118 72 66 11 8 +24397,15 51 117 16 17 118 17 62 10 7 4 +1540,15 9 36 37 17 10 7 8 +15230,1 6 64 16 17 11 7 8 +24396,15 51 117 16 17 118 17 62 10 7 8 +1539,15 9 36 37 17 10 7 4 +21090,1 12 16 39 36 16 61 16 17 37 32 7 8 +5445,1 6 53 67 68 54 7 4 +16608,15 57 53 49 50 7 8 +6942,5 6 64 53 9 10 87 7 8 +4373,1 6 53 67 68 54 7 8 +16609,15 57 53 49 50 7 4 +24460,5 6 86 31 42 43 17 91 7 8 +20740,5 6 18 12 16 17 37 108 68 7 4 +19098,1 6 26 88 51 36 37 17 11 8 +19790,5 6 64 16 17 91 7 4 +18935,5 6 76 16 117 118 72 7 4 +25471,5 6 9 16 36 37 38 17 3 4 +9584,15 96 16 36 16 61 16 17 37 108 35 7 4 +26537,5 6 64 53 9 10 87 7 4 +25599,5 6 9 10 56 89 89 7 8 +10237,5 6 9 10 56 89 89 7 4 +9585,15 96 16 36 16 61 16 17 37 108 35 7 8 +23243,15 57 88 88 9 16 117 118 72 11 8 +26627,5 6 12 57 57 57 9 16 17 11 8 +25827,15 49 36 37 17 37 35 7 4 +25828,15 49 36 37 17 37 35 7 8 +9878,5 6 31 36 37 10 7 4 +10695,5 6 55 53 49 50 7 8 +6737,5 6 31 36 37 10 7 8 +2362,5 6 55 57 9 16 36 37 38 17 37 32 7 4 +24984,5 6 55 12 49 50 56 7 8 +5342,5 6 41 12 36 37 38 17 91 7 8 +4978,15 53 55 56 13 +11553,1 6 51 36 37 17 37 32 54 7 8 +17948,1 6 51 36 37 17 37 32 54 7 4 +4244,1 6 34 107 36 16 17 63 7 8 +5343,5 6 41 12 36 37 38 17 91 7 4 +5865,5 6 55 53 49 50 7 4 +25692,1 6 53 12 16 17 10 54 7 4 +25902,15 90 16 36 16 17 11 13 +21726,5 6 57 9 36 16 61 16 17 19 7 4 +13313,15 65 90 16 17 120 54 7 8 +10824,5 6 65 26 51 61 62 63 7 8 +21725,5 6 57 9 36 16 61 16 17 19 7 8 +26070,5 6 88 67 47 36 37 17 11 8 +13312,15 65 90 16 17 120 54 7 4 +14028,5 6 65 26 51 61 62 63 7 4 +25693,1 6 53 12 16 17 10 54 7 8 +13669,15 55 9 36 16 17 11 8 +25901,15 90 16 36 16 17 11 8 +15952,1 6 67 107 108 68 58 7 8 +13670,15 55 9 36 16 17 11 13 +23469,15 86 12 16 36 37 38 17 19 +15953,1 6 67 107 108 68 58 7 4 +8038,5 6 47 48 123 7 8 +17926,5 6 76 16 117 118 72 7 8 +9837,15 71 109 110 13 +24983,5 6 55 12 49 50 56 7 4 +8044,5 6 47 48 123 7 4 +6982,15 55 55 53 90 16 17 120 54 54 7 8 +6983,15 55 55 53 90 16 17 120 54 54 7 4 +15677,1 6 84 88 57 58 58 89 85 54 7 4 +14624,1 6 55 88 88 34 36 37 63 7 8 +7918,15 96 36 37 38 19 58 89 13 +20281,5 6 57 71 36 37 17 63 85 7 4 +26450,1 6 53 12 36 37 63 54 7 8 +16046,5 6 57 71 36 37 17 63 85 7 8 +22975,15 86 55 56 13 +26451,1 6 53 12 36 37 63 54 7 4 +15295,15 55 31 36 37 17 37 35 87 7 8 +26503,5 6 12 16 36 16 17 43 50 7 4 +19100,15 44 34 36 37 17 69 +21623,5 6 71 47 48 35 27 28 +26502,5 6 12 16 36 16 17 43 50 7 8 +24612,15 9 61 62 68 13 +4267,5 6 64 92 9 16 17 10 7 4 +4266,5 6 64 92 9 16 17 10 7 8 +22294,1 12 16 36 16 17 37 108 68 7 8 +6893,15 55 65 88 88 9 16 17 11 8 +15296,15 55 31 36 37 17 37 35 87 7 4 +1995,5 6 67 42 43 17 63 7 8 +15393,1 6 53 9 10 32 7 4 +1994,5 6 67 42 43 17 63 7 4 +24028,1 6 18 12 16 17 10 30 7 4 +13731,15 57 55 9 61 62 68 7 4 +11902,5 6 64 16 117 118 108 72 66 11 7 8 +20185,1 6 18 12 16 17 10 30 7 8 +13730,15 57 55 9 61 62 68 7 8 +2853,15 49 36 37 17 10 54 7 8 +2852,15 49 36 37 17 10 54 7 4 +22894,5 6 53 71 47 48 32 7 8 +23742,5 6 53 71 47 48 32 7 4 +7203,5 6 9 16 17 43 68 7 8 +4030,15 55 53 12 16 17 19 13 +11129,1 6 55 88 9 16 17 10 7 4 +9596,1 6 53 12 16 17 37 35 7 4 +25153,1 6 55 88 9 16 17 10 7 8 +11636,15 55 12 9 16 36 37 38 37 48 50 7 4 +9595,1 6 53 12 16 17 37 35 7 8 +3671,15 55 12 9 16 36 37 38 37 48 50 7 8 +19432,5 6 84 88 57 34 35 13 +6171,15 55 9 16 17 37 35 54 7 4 +22704,5 6 88 55 56 89 13 +6005,5 6 57 9 16 17 37 50 58 54 7 8 +6170,15 55 9 16 17 37 35 54 7 8 +14120,5 6 88 88 9 16 36 16 17 10 7 4 +15739,15 65 57 51 36 37 17 62 10 7 4 +10559,5 6 34 47 47 36 37 11 8 +6006,5 6 57 9 16 17 37 50 58 54 7 4 +14121,5 6 88 88 9 16 36 16 17 10 7 8 +10305,15 57 9 16 36 37 38 37 108 35 54 7 4 +10304,15 57 9 16 36 37 38 37 108 35 54 7 8 +19048,15 65 57 51 36 37 17 62 10 7 8 +2120,1 6 29 12 16 61 16 17 19 13 +8200,5 6 34 47 48 48 68 7 4 +8201,5 6 34 47 48 48 68 7 8 +12053,1 6 88 89 89 58 7 4 +17546,15 51 36 37 38 91 7 4 +22225,1 6 9 10 50 11 7 8 +13208,1 6 88 89 89 58 7 8 +25245,1 6 119 61 16 17 62 10 7 8 +9198,1 6 64 53 9 36 37 38 17 10 54 7 4 +14597,5 6 9 16 36 37 38 17 11 8 +14373,1 6 64 53 9 36 37 38 17 10 54 7 8 +773,5 6 12 11 58 11 8 +1884,1 6 71 72 56 7 4 +3770,1 6 9 36 16 17 37 7 8 +14076,1 6 16 17 54 54 7 4 +18750,1 6 55 55 51 47 48 52 33 13 +14075,1 6 16 17 54 54 7 8 +1996,5 6 9 16 17 43 68 7 4 +11017,1 6 53 9 10 32 11 8 +22201,5 6 88 88 57 58 13 +23701,1 6 84 65 57 9 16 17 37 72 85 7 4 +8744,1 12 39 36 16 36 37 38 17 11 8 +1885,1 6 71 72 56 7 8 +6685,1 6 53 12 16 17 62 10 7 8 +19122,1 6 12 16 36 37 38 17 11 58 7 8 +5506,1 6 53 12 16 61 16 61 16 17 19 13 +5206,1 6 53 12 16 17 62 10 7 4 +6408,1 6 12 12 11 11 7 4 +18108,1 6 9 16 36 16 17 19 63 7 4 +1674,1 6 12 12 11 11 7 8 +23218,1 6 64 16 36 16 17 37 108 35 54 7 4 +26256,5 6 55 9 36 16 17 37 10 7 8 +26257,5 6 55 9 36 16 17 37 10 7 4 +10116,1 45 21 22 17 37 123 7 4 +10115,1 45 21 22 17 37 123 7 8 +13917,1 6 57 57 92 9 10 93 58 7 8 +4750,5 6 12 96 16 21 77 78 22 79 4 +12221,1 6 57 57 92 9 10 93 58 7 4 +24201,15 53 34 36 37 10 54 7 8 +26461,1 6 18 12 16 17 37 11 7 4 +2041,15 9 16 17 43 50 7 8 +24200,15 53 34 36 37 10 54 7 4 +26466,1 6 18 12 16 17 37 11 7 8 +2042,15 9 16 17 43 50 7 4 +11465,1 6 92 9 16 17 10 7 8 +4238,5 6 88 9 16 17 37 72 56 7 8 +18065,1 6 12 57 9 16 17 120 7 8 +22664,1 6 29 12 16 61 16 17 11 13 +14001,1 6 92 9 16 17 10 7 4 +3709,1 12 11 58 89 13 +22663,1 6 29 12 16 61 16 17 11 8 +6189,5 6 12 12 16 36 37 38 17 +20835,1 6 34 107 108 35 85 54 7 4 +26342,5 6 64 61 62 17 37 35 56 54 7 8 +18633,1 6 9 10 11 58 89 13 +18974,5 6 64 61 62 17 37 35 56 54 7 4 +1587,15 65 26 9 16 17 10 7 8 +13924,5 6 64 16 42 16 17 43 32 93 58 7 4 +25268,5 6 55 9 16 36 16 61 16 17 11 8 +1588,15 65 26 9 16 17 10 7 4 +2381,15 55 53 34 36 37 17 11 8 +5727,5 6 9 16 36 37 38 37 52 7 4 +5726,5 6 9 16 36 37 38 37 52 7 8 +797,15 51 47 48 72 7 4 +6856,5 6 64 16 36 37 38 37 35 7 8 +9482,5 6 9 16 17 43 68 11 8 +5570,1 6 9 16 36 16 17 37 50 85 54 7 4 +7313,15 53 64 36 37 38 37 11 8 +10243,1 6 9 16 36 16 17 37 50 85 54 7 8 +4974,1 6 53 12 49 50 13 +17300,1 6 12 57 9 16 17 120 7 4 +24761,5 6 18 12 16 42 16 17 37 108 50 7 8 +3439,5 6 18 12 16 42 16 17 37 108 50 7 4 +4560,15 57 88 89 23 7 4 +4559,15 57 88 89 23 7 8 +8344,15 55 53 12 16 17 11 8 +2111,5 6 61 62 10 7 4 +25753,1 6 73 16 39 36 16 61 16 17 19 13 +15221,5 6 61 62 10 7 8 +25400,15 12 36 37 38 17 11 7 8 +14115,5 6 64 16 42 16 17 75 7 8 +2082,15 55 12 57 96 36 37 38 19 11 8 +18826,15 9 16 61 16 17 75 7 4 +10757,5 6 12 12 16 36 37 38 17 11 8 +22729,15 49 107 36 16 17 62 10 7 4 +12160,5 6 9 36 37 17 63 7 8 +14998,15 49 107 36 16 17 62 10 7 8 +8321,5 6 64 36 16 17 37 35 7 4 +12161,5 6 9 36 37 17 63 7 4 +21084,1 6 71 47 48 115 68 7 4 +8345,15 55 53 12 16 17 11 13 +8322,5 6 64 36 16 17 37 35 7 8 +12952,5 6 12 12 16 36 37 38 17 11 13 +19928,1 12 36 37 38 17 37 52 54 7 4 +22576,5 6 84 12 51 52 13 +17888,1 12 36 37 38 17 37 52 54 7 8 +5708,15 119 16 61 16 17 11 13 +5707,15 119 16 61 16 17 11 8 +14114,5 6 64 16 42 16 17 75 7 4 +26343,1 6 49 16 17 68 7 4 +1820,5 6 51 36 37 17 10 7 8 +25547,5 6 55 12 88 9 39 36 16 17 19 7 8 +14196,5 6 53 9 9 16 17 62 10 7 8 +4309,1 6 41 88 89 7 8 +7373,15 9 16 17 37 108 35 7 4 +859,5 6 51 36 37 17 10 7 4 +19036,5 6 55 12 88 9 39 36 16 17 19 7 4 +7976,1 6 41 88 89 7 4 +15201,5 45 21 22 17 11 13 +10834,1 6 53 12 36 61 16 17 11 8 +15200,5 45 21 22 17 11 8 +18825,15 9 16 61 16 17 75 7 8 +21190,15 86 34 88 90 16 61 16 17 11 8 +2379,15 51 107 36 37 17 19 13 +23134,1 6 12 34 36 37 63 54 7 8 +7374,15 9 16 17 37 108 35 7 8 +5547,1 6 53 90 16 17 91 54 7 8 +14626,15 88 55 55 65 9 16 17 37 35 89 56 7 4 +26105,15 12 11 56 11 56 7 8 +5544,1 6 53 90 16 17 91 54 7 4 +23691,15 96 16 36 37 38 17 19 89 27 28 +23174,5 6 55 51 42 43 17 37 50 30 58 7 8 +24999,1 6 65 57 9 16 117 118 72 11 8 +22278,1 6 55 57 9 61 62 72 7 4 +7207,1 6 67 36 37 11 13 +11903,5 6 12 65 67 107 117 16 17 11 8 +9732,5 6 41 88 12 26 9 16 17 11 7 4 +11427,5 6 86 53 12 11 54 7 8 +11428,5 6 86 53 12 11 54 7 4 +12612,5 6 57 9 16 39 36 16 17 37 35 54 7 4 +10191,5 6 57 9 16 39 36 16 17 37 35 54 7 8 +13522,1 6 64 16 39 36 16 42 16 17 19 7 8 +5690,15 88 67 68 7 8 +9926,1 6 88 67 107 36 37 11 8 +5689,15 88 67 68 7 4 +13055,1 6 12 12 16 36 37 38 37 48 35 11 8 +16152,1 6 88 67 107 36 37 11 13 +6152,1 6 18 12 16 42 16 17 37 35 7 4 +14414,15 88 65 57 58 58 66 56 7 4 +5767,1 6 64 61 62 37 50 85 54 7 4 +24817,5 6 57 9 16 42 16 17 19 7 8 +14415,15 88 65 57 58 58 66 56 7 8 +5766,1 6 64 61 62 37 50 85 54 7 8 +10076,1 6 18 12 16 42 16 17 37 35 7 8 +19532,1 6 57 58 66 11 7 8 +13335,15 119 16 61 16 17 43 50 54 7 4 +18097,5 6 49 107 108 68 7 4 +8271,1 6 57 58 66 11 7 4 +4566,5 6 41 88 12 26 9 16 17 11 7 8 +14469,5 6 49 107 108 68 7 8 +23786,5 6 9 16 36 16 17 37 68 85 7 8 +13336,15 119 16 61 16 17 43 50 54 7 8 +1629,5 6 12 26 65 9 16 17 10 7 4 +21751,5 6 34 47 36 37 75 7 4 +24278,5 6 64 36 16 17 62 10 7 4 +20167,5 6 64 36 16 17 62 10 7 8 +21752,5 6 34 47 36 37 75 7 8 +14032,5 6 57 9 16 17 37 48 35 7 8 +25040,5 6 57 9 16 17 37 48 35 7 4 +12924,1 12 16 36 37 38 37 48 52 56 54 7 8 +25494,5 6 90 91 89 11 8 +3559,1 6 57 9 36 37 38 10 7 8 +3560,1 6 57 9 36 37 38 10 7 4 +8081,5 6 12 11 58 7 8 +9898,5 6 90 16 17 19 7 8 +4686,5 6 12 11 58 7 4 +9897,5 6 90 16 17 19 7 4 +1767,5 6 12 26 65 9 16 17 10 7 8 +4564,1 6 41 88 12 26 9 16 17 11 8 +21826,15 71 114 115 68 54 7 8 +9277,1 6 57 65 67 61 62 63 7 8 +21825,15 71 114 115 68 54 7 4 +25007,1 6 64 36 61 16 17 11 8 +22140,5 6 49 47 48 52 54 7 4 +15290,5 6 55 12 16 61 16 17 11 8 +18074,1 6 57 65 67 61 62 63 7 4 +20306,1 6 12 16 61 16 36 37 38 11 8 +22784,1 6 9 16 39 36 16 61 16 17 62 10 7 8 +14293,15 57 53 55 55 9 36 37 38 10 54 7 8 +22783,1 6 9 16 39 36 16 61 16 17 62 10 7 4 +18861,5 6 55 12 16 61 16 17 11 13 +14590,5 6 105 16 17 63 7 4 +20039,15 57 53 55 55 9 36 37 38 10 54 7 4 +22141,5 6 49 47 48 52 54 7 8 +24704,1 6 92 31 42 43 17 63 7 4 +1399,1 6 67 36 37 11 8 +14589,5 6 105 16 17 63 7 8 +16927,5 6 53 12 36 16 17 63 7 4 +25120,1 6 53 34 107 108 35 56 54 7 8 +7802,15 49 36 37 17 62 10 7 4 +3660,5 6 49 47 48 50 7 4 +25119,1 6 53 34 107 108 35 56 54 7 4 +7803,15 49 36 37 17 62 10 7 8 +19621,5 6 92 9 10 27 7 8 +13933,15 44 34 47 36 37 69 +22409,1 12 11 89 89 23 7 4 +424,1 6 84 85 7 4 +425,1 6 84 85 7 8 +4411,5 6 65 57 57 57 9 16 17 11 13 +14999,1 6 55 53 12 34 35 33 13 +762,5 6 57 12 11 13 +20380,1 6 64 36 37 38 37 35 11 54 7 4 +2228,15 49 61 62 75 7 4 +13322,5 6 55 53 119 120 13 +6248,5 6 49 47 48 50 7 8 +7748,5 6 9 16 17 37 50 7 8 +2229,15 49 61 62 75 7 8 +6788,5 6 65 34 35 7 4 +22475,15 96 36 16 17 19 58 11 7 4 +4410,5 6 65 57 57 57 9 16 17 11 8 +8112,5 6 9 16 17 37 50 7 4 +1889,1 6 76 16 17 75 7 8 +13270,15 12 16 17 19 56 7 8 +13269,15 12 16 17 19 56 7 4 +11230,15 65 9 16 17 37 35 7 8 +25968,15 49 109 110 13 +4631,5 6 90 91 89 7 8 +11316,5 6 84 88 55 9 16 17 10 7 8 +3262,15 9 16 36 16 17 11 13 +11229,15 65 9 16 17 37 35 7 4 +5935,5 6 90 91 89 7 4 +20558,1 6 34 35 54 54 7 4 +3261,15 9 16 36 16 17 11 8 +2682,5 6 84 88 55 9 16 17 10 7 4 +18782,15 31 42 43 17 43 32 54 7 4 +11930,5 6 31 117 16 17 11 8 +3371,15 12 31 32 13 +10496,5 6 12 12 39 36 16 17 10 7 8 +10398,5 6 55 12 39 36 16 17 19 13 +10497,5 6 12 12 39 36 16 17 10 7 4 +25578,15 88 55 57 96 16 21 77 78 22 79 4 +18781,15 31 42 43 17 43 32 54 7 8 +18222,5 6 51 47 36 37 17 69 +24421,5 6 12 16 36 39 36 16 17 19 13 +2190,1 6 9 16 39 36 16 61 16 17 37 35 7 4 +20566,5 6 55 53 53 54 13 +24061,15 53 12 51 107 108 52 11 8 +22145,15 57 65 9 61 62 68 7 4 +24861,1 6 9 16 39 36 16 61 16 17 37 35 7 8 +18862,5 6 57 12 16 17 37 32 7 8 +13813,1 6 12 11 56 54 7 4 +16191,1 6 12 11 56 54 7 8 +12973,5 6 64 16 36 37 38 63 7 8 +12972,5 6 64 16 36 37 38 63 7 4 +2554,5 6 65 57 57 9 16 61 16 17 11 8 +26270,5 6 26 88 9 16 17 37 52 7 4 +19117,5 6 55 53 88 55 57 12 11 58 7 8 +3767,1 6 36 37 17 63 54 7 4 +15957,5 6 67 107 107 36 37 17 10 7 4 +10249,15 71 47 48 68 66 11 8 +2555,5 6 65 57 57 9 16 61 16 17 11 13 +16518,5 6 67 107 107 36 37 17 10 7 8 +17129,15 44 34 36 37 11 8 +17130,15 44 34 36 37 11 13 +15375,5 6 113 61 62 17 91 54 54 7 8 +17677,15 55 12 57 96 16 36 37 38 17 19 58 11 8 +21094,5 6 84 12 16 17 37 50 85 54 7 8 +14275,15 71 36 37 10 54 7 8 +21095,5 6 84 12 16 17 37 50 85 54 7 4 +14274,15 71 36 37 10 54 7 4 +26246,1 6 9 36 37 17 37 10 7 4 +21174,1 6 9 16 36 16 17 37 50 7 4 +1251,5 6 57 9 61 62 52 7 8 +8835,15 67 47 107 108 48 68 13 +21176,1 6 9 16 36 16 17 37 50 7 8 +4849,5 6 9 16 17 37 50 11 8 +5979,5 6 57 9 61 62 52 7 4 +8239,5 6 57 92 9 16 36 16 17 37 72 93 58 7 4 +5472,5 6 67 47 36 37 17 10 7 4 +7824,1 6 53 64 36 37 38 37 35 93 7 8 +10966,5 6 67 47 36 37 17 10 7 8 +8240,5 6 57 92 9 16 36 16 17 37 72 93 58 7 8 +21462,1 6 57 92 67 68 13 +901,70 16 17 98 +10454,5 6 88 57 51 36 37 10 7 8 +5660,5 6 53 18 12 61 16 17 10 7 8 +15095,1 6 57 88 55 56 13 +1125,5 6 53 18 12 61 16 17 10 7 4 +17461,1 6 12 36 37 38 37 48 32 7 8 +17460,1 6 12 36 37 38 37 48 32 7 4 +25205,5 6 55 34 47 48 32 7 4 +4111,1 6 55 9 16 39 36 16 17 19 7 8 +4110,1 6 55 9 16 39 36 16 17 19 7 4 +2839,15 65 9 16 17 62 10 7 4 +15037,5 6 92 9 10 27 7 4 +2840,15 65 9 16 17 62 10 7 8 +25745,1 6 55 12 88 9 16 17 19 7 4 +5710,1 6 67 36 37 19 13 +23033,5 6 55 55 71 36 37 10 54 7 4 +7792,1 6 12 34 36 37 63 7 4 +17009,1 6 92 34 16 17 63 7 4 +18719,1 6 31 47 47 36 37 17 91 7 8 +17394,1 6 92 34 16 17 63 7 8 +18718,1 6 31 47 47 36 37 17 91 7 4 +11713,15 12 16 39 36 16 17 43 52 7 8 +15511,15 88 51 52 52 7 4 +20967,1 6 12 55 34 47 36 37 17 11 8 +11712,15 12 16 39 36 16 17 43 52 7 4 +15512,15 88 51 52 52 7 8 +272,1 6 12 9 16 17 10 7 8 +271,1 6 12 9 16 17 10 7 4 +10538,1 6 53 18 12 16 17 63 7 4 +22681,5 6 31 36 37 11 7 8 +10537,1 6 53 18 12 16 17 63 7 8 +9672,15 12 11 85 93 58 7 8 +9673,15 12 11 85 93 58 7 4 +9610,5 6 92 34 35 54 7 8 +11878,5 6 55 9 16 17 37 72 7 4 +9611,5 6 92 34 35 54 7 4 +24417,1 6 18 12 16 17 37 68 58 7 8 +6836,5 6 55 9 16 17 37 72 7 8 +16747,15 34 36 16 17 19 58 11 8 +1970,5 6 49 61 62 10 7 4 +16802,5 6 9 16 17 43 35 87 30 7 8 +24453,15 49 36 37 120 7 4 +24452,15 49 36 37 120 7 8 +15506,5 6 49 61 62 10 7 8 +17105,1 6 53 12 16 61 16 21 77 78 22 8 +6222,1 6 49 50 54 7 4 +25058,1 6 88 26 12 36 37 38 11 8 +20504,1 81 16 17 82 8 +22428,1 6 12 34 36 37 63 7 8 +25049,15 55 53 12 16 61 16 36 16 17 37 35 54 7 8 +25048,15 55 53 12 16 61 16 36 16 17 37 35 54 7 4 +6221,1 6 49 50 54 7 8 +8255,15 55 88 12 26 9 16 17 10 7 4 +8254,15 55 88 12 26 9 16 17 10 7 8 +20211,1 6 53 88 57 58 7 8 +4121,15 96 36 16 17 37 48 72 7 8 +6705,1 6 64 61 62 17 63 7 8 +20212,1 6 53 88 57 58 7 4 +4120,15 96 36 16 17 37 48 72 7 4 +6704,1 6 64 61 62 17 63 7 4 +4697,1 6 64 61 62 17 37 108 35 54 54 7 8 +18287,5 6 9 16 117 118 52 7 4 +4698,1 6 64 61 62 17 37 108 35 54 54 7 4 +16194,1 6 29 9 10 30 93 7 4 +11191,1 6 29 9 10 30 93 7 8 +11635,1 6 49 47 36 37 17 10 7 8 +3667,1 6 49 47 36 37 17 10 7 4 +7068,15 55 31 107 108 32 7 8 +2218,5 6 71 61 62 63 7 4 +11803,1 6 49 47 48 72 7 8 +9870,5 6 71 61 62 63 7 8 +8353,1 6 49 47 48 72 7 4 +7067,15 55 31 107 108 32 7 4 +24849,5 6 57 49 36 37 17 10 85 7 4 +8335,5 6 96 16 36 37 38 17 19 7 4 +23071,15 9 16 36 37 38 17 37 52 11 8 +8336,5 6 96 16 36 37 38 17 19 7 8 +5249,1 6 29 12 16 17 10 7 8 +5248,1 6 29 12 16 17 10 7 4 +24131,1 6 88 51 52 7 8 +10881,5 6 53 18 12 16 17 37 35 54 7 8 +17986,15 71 36 16 17 37 35 7 8 +12087,15 12 36 37 38 17 62 10 7 8 +10882,5 6 53 18 12 16 17 37 35 54 7 4 +12088,15 12 36 37 38 17 62 10 7 4 +3880,1 6 67 68 89 13 +4144,1 6 53 12 16 17 37 32 7 4 +18635,5 6 67 107 107 36 37 17 11 8 +5407,1 6 64 16 17 37 50 7 4 +17220,5 6 92 49 47 36 37 17 10 7 4 +14553,1 6 96 36 37 38 19 11 7 8 +18797,1 6 31 42 43 17 10 85 54 7 8 +6700,1 6 53 12 16 17 37 32 7 8 +5408,1 6 64 16 17 37 50 7 8 +15939,1 6 31 42 43 17 10 85 54 7 4 +23325,1 6 96 36 37 38 19 11 7 4 +18983,1 12 16 36 16 61 16 17 10 7 4 +11871,15 57 58 58 89 56 7 8 +10965,15 57 58 58 89 56 7 4 +15544,1 6 90 91 85 54 7 8 +18655,15 12 39 36 16 61 16 17 37 52 7 4 +11100,5 6 34 35 58 89 13 +18656,15 12 39 36 16 61 16 17 37 52 7 8 +25985,15 55 12 55 57 96 36 37 38 19 58 11 8 +3438,5 6 18 12 16 17 43 48 50 7 8 +14322,1 6 90 91 85 54 7 4 +6661,1 6 12 16 17 37 35 11 7 8 +14403,5 6 53 9 36 16 17 37 35 56 7 8 +18982,1 6 57 55 67 61 62 63 7 4 +8340,1 6 12 16 17 37 35 11 7 4 +14404,5 6 53 9 36 16 17 37 35 56 7 4 +3437,5 6 18 12 16 17 43 48 50 7 4 +12344,5 6 92 31 42 43 10 93 63 7 8 +22720,5 6 92 31 42 43 17 63 7 4 +11982,5 6 57 58 11 56 7 4 +3178,5 6 51 117 16 17 11 13 +12461,5 6 55 57 9 16 36 37 38 17 37 35 7 8 +3177,5 6 51 117 16 17 11 8 +1950,1 6 84 49 47 48 48 52 85 54 7 4 +1949,1 6 84 49 47 48 48 52 85 54 7 8 +21186,5 6 76 16 36 16 17 63 7 4 +7562,1 6 57 58 58 54 7 4 +9614,5 6 64 61 62 37 35 93 7 8 +11769,1 6 57 58 58 54 7 8 +9615,5 6 64 61 62 37 35 93 7 4 +15949,1 6 12 49 61 62 63 7 8 +21631,1 6 84 86 9 16 36 16 17 11 8 +5978,1 6 12 49 61 62 63 7 4 +14116,5 6 76 16 36 16 17 63 7 8 +14546,1 6 49 117 16 17 11 8 +21004,15 31 47 47 36 37 17 11 8 +8389,5 6 9 10 87 66 7 4 +8388,5 6 9 10 87 66 7 8 +416,5 45 21 22 17 3 8 +9102,1 6 53 55 49 50 56 54 7 4 +417,5 45 21 22 17 3 4 +16855,1 6 65 57 57 9 16 36 16 17 11 13 +9103,1 6 53 55 49 50 56 54 7 8 +16854,1 6 65 57 57 9 16 36 16 17 11 8 +24808,5 6 57 92 31 47 42 43 17 63 7 8 +26797,5 6 88 55 56 58 13 +13425,15 12 16 36 39 36 16 17 63 7 4 +9804,1 6 57 55 67 61 62 63 7 8 +24787,1 6 86 57 58 58 87 7 8 +21005,15 31 47 47 36 37 17 11 13 +6660,1 6 12 34 35 7 8 +17856,1 6 53 49 50 58 54 7 8 +24786,1 6 86 57 58 58 87 7 4 +13426,15 12 16 36 39 36 16 17 63 7 8 +21550,15 55 53 9 16 17 10 7 8 +2160,1 6 12 34 35 7 4 +9043,5 6 90 16 61 16 17 11 13 +187,1 6 9 61 62 68 7 4 +6262,15 65 9 16 61 16 17 10 7 4 +8896,5 6 84 12 16 17 37 72 85 54 7 8 +24746,1 6 88 55 57 53 31 32 13 +6263,15 65 9 16 61 16 17 10 7 8 +9448,15 9 16 36 16 17 37 48 35 54 7 4 +1756,5 6 90 16 61 16 17 11 8 +15669,5 6 26 9 16 21 77 78 22 79 4 +9449,15 9 16 36 16 17 37 48 35 54 7 8 +26590,1 6 88 55 55 65 9 16 17 10 7 8 +13851,15 34 47 36 37 17 63 7 8 +22885,1 6 88 55 55 65 9 16 17 10 7 4 +6900,15 49 107 107 36 37 11 8 +6901,15 49 107 107 36 37 11 13 +13850,15 34 47 36 37 17 63 7 4 +21587,5 6 12 65 9 16 17 37 32 7 4 +17778,5 6 12 65 9 16 17 37 32 7 8 +19600,5 6 96 16 36 16 61 16 17 19 33 13 +26467,1 6 90 36 16 17 11 8 +21566,5 6 12 12 16 17 10 7 4 +13518,1 6 96 16 36 37 38 17 63 7 8 +23297,1 6 96 16 36 37 38 17 63 7 4 +3878,5 6 67 68 56 89 7 8 +8723,5 6 67 68 56 89 7 4 +10489,5 6 12 12 16 17 10 7 8 +222,1 6 9 61 62 68 7 8 +4932,5 6 9 16 61 16 17 19 13 +15429,1 6 92 9 16 17 75 7 8 +12297,1 6 18 12 36 37 38 11 8 +12298,1 6 18 12 36 37 38 11 13 +13848,1 6 64 16 17 10 54 54 7 4 +15423,1 6 92 9 16 17 75 7 4 +13847,1 6 64 16 17 10 54 54 7 8 +25778,5 6 9 16 17 19 63 7 8 +1308,1 6 55 51 61 62 63 7 4 +25771,5 6 9 16 17 19 63 7 4 +1237,1 6 55 51 61 62 63 7 8 +14702,5 6 86 34 36 37 63 7 4 +3712,5 6 88 12 16 36 37 38 17 11 8 +17091,15 65 12 16 39 36 16 17 10 7 4 +17090,15 65 12 16 39 36 16 17 10 7 8 +17188,1 6 64 61 62 37 35 89 7 4 +3713,5 6 88 12 16 36 37 38 17 11 13 +14378,5 6 9 96 36 37 38 17 19 10 7 4 +23277,1 6 53 109 110 7 4 +23276,1 6 53 109 110 7 8 +10792,15 51 107 108 50 54 7 4 +10793,15 51 107 108 50 54 7 8 +14926,5 6 84 12 16 17 37 72 85 54 7 4 +5622,5 6 12 12 16 21 77 101 102 103 +22403,15 55 12 55 55 88 55 56 11 8 +20724,15 65 88 34 36 37 11 13 +17326,15 55 53 49 36 37 17 10 7 4 +1361,5 6 84 49 50 85 7 4 +20768,5 6 84 71 72 85 7 4 +9712,1 6 92 12 16 17 37 35 93 7 4 +6727,5 6 57 65 67 61 62 63 7 8 +23791,1 6 9 16 36 16 61 16 17 11 8 +9713,1 6 92 12 16 17 37 35 93 7 8 +20861,1 6 26 88 65 9 16 17 10 7 8 +23792,1 6 9 16 36 16 61 16 17 11 13 +4727,1 45 21 22 17 37 52 7 8 +16331,5 6 9 10 58 11 7 4 +23840,15 9 36 16 17 37 115 50 87 7 4 +15484,1 6 84 73 74 89 13 +25484,15 55 53 12 16 61 16 61 16 17 62 10 7 8 +22307,5 6 9 10 58 11 7 8 +23841,15 9 36 16 17 37 115 50 87 7 8 +25483,15 55 53 12 16 61 16 61 16 17 62 10 7 4 +13574,15 55 51 36 37 11 8 +13575,15 55 51 36 37 11 13 +17327,15 55 53 49 36 37 17 10 7 8 +24773,5 6 49 16 17 50 58 7 8 +7919,15 96 36 37 38 19 58 89 56 11 8 +17817,5 6 49 16 17 50 58 7 4 +4728,1 45 21 22 17 37 52 7 4 +1546,5 6 76 16 42 16 17 10 7 4 +18959,1 6 53 26 55 34 35 13 +1545,5 6 76 16 42 16 17 10 7 8 +5517,1 6 64 61 62 17 17 91 7 4 +22860,1 6 9 10 11 58 11 8 +26143,15 65 88 55 9 16 17 118 17 10 7 4 +26084,5 6 96 36 16 17 19 11 56 7 8 +18422,5 6 96 36 16 17 19 11 56 7 4 +20429,5 6 12 96 36 37 38 19 56 11 8 +22818,5 6 53 12 34 36 37 17 91 7 4 +26142,15 65 88 55 9 16 17 118 17 10 7 8 +451,1 6 84 86 87 13 +1362,5 6 84 49 50 85 7 8 +19867,1 6 53 12 61 36 16 17 19 13 +19732,5 6 73 39 36 16 17 63 7 8 +19731,5 6 73 39 36 16 17 63 7 4 +5231,15 96 16 36 16 17 63 7 8 +25837,1 6 9 10 56 27 7 4 +7735,15 55 51 42 43 17 37 32 54 7 4 +5230,15 96 16 36 16 17 63 7 4 +714,1 6 9 10 66 58 7 4 +7736,15 55 51 42 43 17 37 32 54 7 8 +17275,1 6 76 36 37 38 75 7 4 +2637,5 6 64 36 37 38 37 108 35 54 7 8 +101,5 6 9 10 13 +8794,5 6 86 53 9 16 17 63 7 8 +17276,1 6 76 36 37 38 75 7 8 +9770,5 6 84 57 86 87 13 +16403,1 6 57 53 12 11 7 8 +11808,15 9 16 36 16 17 37 52 7 4 +937,1 6 84 64 16 17 74 85 7 4 +6649,5 6 12 16 42 16 17 91 7 8 +15818,1 6 57 53 12 11 7 4 +1052,1 6 53 12 11 54 7 8 +24576,1 6 76 16 36 16 17 11 13 +610,5 6 12 16 42 16 17 91 7 4 +938,1 6 84 64 16 17 74 85 7 8 +24575,1 6 76 16 36 16 17 11 8 +5551,5 6 113 61 62 17 91 54 7 8 +10879,1 6 64 16 36 16 17 37 48 35 87 7 4 +324,1 12 9 16 36 37 38 17 10 7 8 +20675,5 6 9 16 17 37 35 87 7 8 +5552,5 6 113 61 62 17 91 54 7 4 +10878,1 6 64 16 36 16 17 37 48 35 87 7 8 +323,1 12 9 16 36 37 38 17 10 7 4 +1051,1 6 53 12 11 54 7 4 +7942,5 6 64 36 37 38 37 108 35 54 7 4 +1498,1 6 9 10 66 58 7 8 +17846,5 6 86 65 66 13 +19719,1 6 90 36 37 38 74 7 8 +24577,5 6 9 16 17 37 35 87 7 4 +10904,1 6 84 51 36 37 17 63 7 4 +18780,5 6 12 31 42 43 17 43 32 54 7 8 +19720,1 6 90 36 37 38 74 7 4 +13148,1 6 84 51 36 37 17 63 7 8 +4802,5 6 53 65 66 13 +17388,15 34 107 36 37 38 37 48 50 7 8 +11725,5 6 53 31 32 56 54 7 8 +24899,1 6 12 55 56 56 11 8 +2748,5 6 55 71 72 13 +12836,1 6 57 57 57 88 89 13 +18439,1 6 9 10 89 27 7 8 +11410,5 6 9 16 61 16 17 11 13 +15560,1 6 92 57 9 16 17 10 7 8 +24083,15 96 36 16 17 37 52 85 7 8 +25839,1 6 9 10 89 27 7 4 +11726,5 6 53 31 32 56 54 7 4 +2398,5 6 9 16 61 16 17 11 8 +7466,5 6 49 36 16 17 17 10 7 8 +5792,5 6 18 12 16 42 16 17 37 52 7 4 +24082,15 96 36 16 17 37 52 85 7 4 +23670,1 6 55 12 34 35 13 +397,5 6 12 73 16 36 37 38 17 11 8 +19149,5 6 84 71 72 85 7 8 +13570,5 6 64 61 62 17 37 52 85 7 8 +12357,5 6 64 61 62 17 37 52 85 7 4 +15308,1 6 84 53 54 85 54 7 8 +6668,5 6 53 31 36 37 17 19 7 4 +8666,70 16 17 37 35 7 4 +14069,15 12 16 39 36 16 36 37 38 37 108 52 7 8 +14068,15 12 16 39 36 16 36 37 38 37 108 52 7 4 +3723,15 34 36 37 17 91 7 8 +8431,5 6 12 65 9 16 17 37 48 52 7 4 +19395,1 6 34 36 37 63 54 7 8 +12698,5 6 12 65 9 16 17 37 48 52 7 8 +19396,1 6 34 36 37 63 54 7 4 +23014,1 6 84 18 12 16 17 10 54 7 8 +23015,1 6 84 18 12 16 17 10 54 7 4 +9762,5 6 84 12 16 21 77 78 82 83 8 +11797,5 6 53 18 12 31 32 13 +12772,1 12 16 17 19 14 54 7 8 +7025,1 6 84 53 54 85 54 7 4 +19715,5 6 53 31 36 37 17 19 7 8 +16940,5 6 29 31 47 61 62 10 7 8 +17179,5 6 57 92 31 42 43 17 37 35 93 58 7 8 +16143,5 6 9 16 36 37 38 17 37 68 7 8 +13846,5 6 64 16 17 10 54 54 7 8 +18411,5 6 9 16 36 37 38 17 37 68 7 4 +9441,1 6 34 47 48 50 58 54 7 4 +26531,5 6 9 16 16 16 17 37 52 7 4 +13110,5 6 34 107 108 123 11 8 +2385,15 55 9 61 62 68 7 4 +13584,15 9 16 17 37 32 7 8 +2386,15 55 9 61 62 68 7 8 +13585,15 9 16 17 37 32 7 4 +16357,1 6 65 88 9 16 17 37 108 48 52 7 8 +11807,15 9 16 36 16 17 37 52 7 8 +9932,1 6 65 88 9 16 17 37 108 48 52 7 4 +62,1 6 9 36 37 38 10 30 7 4 +63,1 6 9 36 37 38 10 30 7 8 +14259,5 6 64 61 62 17 37 50 11 7 8 +8248,1 6 55 34 35 7 8 +25060,1 6 12 16 61 16 39 36 16 17 19 13 +8249,1 6 55 34 35 7 4 +24415,5 6 57 9 16 36 16 17 10 54 7 8 +21999,5 6 57 9 16 36 16 17 10 54 7 4 +2928,15 12 11 93 7 4 +3877,5 6 67 68 56 89 13 +22036,1 6 51 52 11 54 7 8 +17,5 2 16 17 10 7 4 +22043,1 6 51 52 11 54 7 4 +18,5 2 16 17 10 7 8 +2927,15 12 11 93 7 8 +24582,15 57 53 34 42 43 17 10 7 8 +3555,5 6 12 26 65 66 27 28 +1976,1 6 88 9 16 61 16 17 19 7 8 +3898,1 6 88 9 16 61 16 17 19 7 4 +18217,1 6 34 107 36 37 10 7 8 +15689,5 6 12 88 57 9 16 61 16 17 19 7 8 +5518,1 6 64 61 62 17 17 91 7 8 +7192,25 26 65 66 7 8 +14508,5 6 47 48 11 8 +13109,5 6 12 39 36 16 61 16 17 19 13 +24001,1 6 53 57 9 16 36 16 17 10 7 4 +12073,1 6 34 107 36 37 10 7 4 +13418,25 26 65 66 7 4 +19461,15 57 53 34 42 43 17 10 7 4 +15688,5 6 12 88 57 9 16 61 16 17 19 7 4 +25401,1 45 21 22 17 37 52 11 8 +24002,1 6 53 57 9 16 36 16 17 10 7 8 +20118,15 65 57 58 58 89 7 8 +12244,1 6 9 10 11 58 7 4 +20119,15 65 57 58 58 89 7 4 +17001,5 6 53 109 9 16 17 37 52 7 4 +7501,15 55 88 57 9 36 37 38 37 52 13 +21082,15 67 114 115 50 7 8 +26056,5 6 55 57 9 16 36 37 38 17 10 54 7 8 +21083,15 67 114 115 50 7 4 +5402,15 12 16 36 37 38 17 37 50 54 7 8 +10814,15 12 16 36 37 38 17 37 50 54 7 4 +24317,1 6 49 36 39 36 16 17 17 10 7 8 +2938,1 6 92 12 36 16 17 63 7 8 +19940,15 53 34 36 37 17 106 7 8 +11188,1 6 29 86 87 13 +14714,15 53 34 36 37 17 106 7 4 +5611,5 6 53 109 9 16 17 37 52 7 8 +9817,5 6 49 47 47 36 16 17 19 13 +12105,1 12 16 36 39 36 39 36 16 17 19 13 +24536,1 6 92 12 36 16 17 63 7 4 +3722,15 34 36 37 17 91 7 4 +19508,5 6 12 57 58 89 13 +20723,15 65 88 34 36 37 11 8 +25731,1 6 49 36 39 36 16 17 17 10 7 4 +54,5 6 29 9 10 7 4 +10551,5 6 49 36 37 17 63 7 4 +8628,15 86 34 36 37 17 62 10 7 8 +53,5 6 29 9 10 7 8 +10131,5 6 49 36 37 17 63 7 8 +1507,15 57 71 72 7 4 +1508,15 57 71 72 7 8 +14682,15 55 53 57 9 16 61 16 17 10 7 8 +22511,1 12 9 16 17 100 7 8 +24549,15 57 9 16 61 16 36 16 17 37 35 7 4 +7280,5 6 64 53 18 12 34 35 13 +22510,1 12 9 16 17 100 7 4 +24550,15 57 9 16 61 16 36 16 17 37 35 7 8 +13513,5 6 57 92 12 16 17 69 +13044,15 44 31 47 48 35 11 7 8 +26740,1 12 36 16 17 37 50 54 7 8 +25366,15 44 31 47 48 35 11 7 4 +14850,1 6 64 16 36 37 38 37 48 72 7 8 +13857,1 6 12 16 36 16 17 37 48 35 54 54 7 4 +4498,1 6 64 16 36 37 38 37 48 72 7 4 +8625,15 86 34 36 37 17 62 10 7 4 +2872,15 9 16 17 43 52 7 8 +20263,5 6 86 57 9 16 17 10 7 4 +2871,15 9 16 17 43 52 7 4 +20880,5 6 57 58 89 11 8 +17025,1 6 31 47 48 68 7 8 +26230,1 6 31 42 43 17 11 54 7 4 +14100,1 6 31 47 48 68 7 4 +23554,1 12 36 37 38 69 +17410,1 6 29 9 10 10 30 7 8 +17409,1 6 29 9 10 10 30 7 4 +18637,1 6 67 107 107 36 37 17 11 13 +24807,1 6 12 9 16 17 11 7 4 +18636,1 6 67 107 107 36 37 17 11 8 +905,1 6 99 100 17 98 +24331,5 6 26 55 34 35 13 +2472,1 6 34 36 37 11 13 +19027,1 6 12 9 16 17 11 7 8 +22205,1 6 55 53 51 52 54 7 4 +1154,1 6 34 36 37 11 8 +20636,1 6 55 53 51 52 54 7 8 +14681,15 55 53 57 9 16 61 16 17 10 7 4 +19323,15 57 9 16 17 17 +7869,15 9 16 17 19 7 4 +7868,15 9 16 17 19 7 8 +17254,1 6 71 114 115 52 7 4 +20431,1 6 12 96 36 37 38 19 56 11 7 4 +3661,15 49 47 48 50 7 4 +3662,15 49 47 48 50 7 8 +23530,15 9 16 36 37 38 17 10 54 54 7 8 +4233,5 6 34 107 36 37 17 69 +15497,5 6 90 16 36 16 17 37 72 85 7 4 +25881,1 6 67 42 43 17 37 48 72 11 7 8 +1075,15 57 9 61 62 68 7 8 +23531,15 9 16 36 37 38 17 10 54 54 7 4 +4643,15 65 9 16 17 37 32 7 8 +15496,5 6 90 16 36 16 17 37 72 85 7 8 +23843,15 9 36 16 17 37 50 87 7 8 +1076,15 57 9 61 62 68 7 4 +3553,5 6 34 107 36 37 19 13 +23395,5 6 67 68 56 66 58 7 4 +1229,5 6 26 65 66 7 8 +4642,15 65 9 16 17 37 32 7 4 +12560,15 86 57 58 13 +1230,5 6 26 65 66 7 4 +17255,1 6 71 114 115 52 7 8 +11282,1 6 55 53 88 89 7 8 +2028,5 6 53 9 16 36 16 17 63 7 4 +13821,5 6 53 9 16 36 16 17 63 7 8 +22483,5 6 12 39 36 16 61 16 17 11 8 +15028,1 6 34 47 36 37 69 +6749,1 6 18 12 16 17 43 32 7 4 +6748,1 6 18 12 16 17 43 32 7 8 +9126,5 6 9 16 17 37 52 7 8 +10668,5 6 9 16 17 37 52 7 4 +11592,5 6 57 9 16 36 16 17 37 35 7 4 +11591,5 6 57 9 16 36 16 17 37 35 7 8 +11755,1 6 9 16 17 43 17 10 7 8 +1529,15 65 9 16 17 75 7 4 +25394,5 6 57 92 9 36 16 61 16 17 10 7 8 +1528,15 65 9 16 17 75 7 8 +25395,5 6 57 92 9 36 16 61 16 17 10 7 4 +11523,15 34 47 48 35 11 7 4 +2236,5 6 57 58 89 7 8 +21032,15 34 47 48 35 11 7 8 +2237,5 6 57 58 89 7 4 +8776,1 6 67 68 56 13 +11471,1 12 9 16 17 32 7 8 +18766,1 6 57 92 12 11 93 7 4 +2360,15 55 57 9 16 36 37 38 17 10 7 4 +11470,1 12 9 16 17 32 7 4 +25463,5 6 55 12 55 57 9 16 17 11 8 +2359,15 55 57 9 16 36 37 38 17 10 7 8 +9453,5 6 57 9 16 36 37 38 37 10 7 4 +23844,15 9 36 16 17 37 50 87 7 4 +12207,5 6 55 57 9 16 17 63 85 7 4 +9452,5 6 57 9 16 36 37 38 37 10 7 8 +7931,5 6 55 57 9 16 17 63 85 7 8 +9850,1 6 34 36 16 17 62 10 7 4 +5569,5 6 84 18 12 16 17 37 52 85 54 7 8 +1700,5 6 55 12 57 58 11 8 +2304,15 31 47 36 37 10 7 8 +22829,1 6 34 36 16 17 62 10 7 8 +5568,5 6 84 18 12 16 17 37 52 85 54 7 4 +2305,15 31 47 36 37 10 7 4 +23900,1 6 57 26 12 16 17 19 13 +23087,5 6 12 55 56 7 4 +9232,1 6 88 51 47 36 37 11 8 +23097,5 6 12 55 56 7 8 +10442,15 53 16 17 17 7 8 +24405,5 6 51 16 17 72 7 4 +21673,5 6 57 9 16 36 16 117 118 32 7 4 +3520,5 6 67 68 58 7 8 +9233,1 6 88 51 47 36 37 11 13 +10612,5 6 51 16 17 72 7 8 +15356,5 6 57 9 16 36 16 117 118 32 7 8 +2807,5 6 67 68 58 7 4 +15683,1 6 55 53 88 89 11 8 +10205,5 6 26 65 66 11 8 +10441,15 53 16 17 17 7 4 +2707,1 6 64 61 62 17 10 93 58 7 4 +19630,15 34 47 47 36 37 17 63 7 8 +19631,15 34 47 47 36 37 17 63 7 4 +15665,5 6 55 56 27 7 8 +5355,5 6 55 56 27 7 4 +7082,5 6 84 12 16 61 16 17 19 13 +16887,1 6 88 89 54 54 7 4 +21595,1 6 86 34 114 47 48 35 87 7 8 +10404,1 6 53 9 16 36 16 17 10 7 4 +23553,5 6 55 53 12 16 61 16 17 69 +10403,1 6 53 9 16 36 16 17 10 7 8 +16886,1 6 88 89 54 54 7 8 +2706,1 6 64 61 62 17 10 93 58 7 8 +17481,1 6 105 16 61 16 17 11 8 +11883,15 9 16 39 36 39 36 16 17 11 13 +9772,1 6 84 9 10 87 58 7 8 +22406,15 96 36 37 38 19 56 89 13 +20465,1 6 65 88 71 72 13 +5577,5 6 9 16 17 17 11 8 +349,5 6 12 11 56 7 8 +19496,1 6 64 16 36 16 61 16 17 19 7 4 +350,5 6 12 11 56 7 4 +19495,1 6 64 16 36 16 61 16 17 19 7 8 +20735,1 6 57 9 16 36 16 17 11 8 +9773,1 6 84 9 10 87 58 7 4 +11882,15 9 16 39 36 39 36 16 17 11 8 +23596,1 6 90 61 62 17 37 35 87 7 4 +1694,1 6 34 36 37 19 13 +9710,1 6 34 36 37 17 69 +8815,1 6 53 12 16 36 16 17 63 7 8 +13825,1 6 64 61 62 17 62 32 54 7 4 +15493,1 6 88 73 16 17 91 85 7 8 +17055,1 6 53 12 16 36 16 17 63 7 4 +17344,1 6 64 61 62 17 62 32 54 7 8 +1365,5 6 84 49 36 37 10 7 8 +8944,1 2 16 17 17 7 4 +9488,5 6 12 12 16 17 11 7 4 +15490,1 6 88 73 16 17 91 85 7 4 +1364,5 6 84 49 36 37 10 7 4 +10745,5 6 12 12 16 17 11 7 8 +25889,5 6 34 107 36 37 11 8 +16564,5 6 12 55 56 11 8 +12709,5 6 64 61 62 106 54 7 8 +16777,5 6 64 61 62 17 37 32 93 7 4 +12710,5 6 64 61 62 106 54 7 4 +24941,15 57 53 55 57 9 36 37 38 10 54 7 4 +16776,5 6 64 61 62 17 37 32 93 7 8 +14276,15 57 53 55 57 9 36 37 38 10 54 7 8 +5584,1 6 84 34 35 54 7 4 +25238,15 55 53 9 16 61 16 36 16 17 19 +17205,1 6 92 31 42 43 17 11 8 +5583,1 6 84 34 35 54 7 8 +12257,1 6 57 9 36 37 38 37 48 72 54 7 8 +22060,5 6 88 96 16 21 77 78 22 79 4 +10045,1 6 57 9 36 37 38 37 48 72 54 7 4 +19540,1 6 57 71 61 62 75 7 4 +6934,1 6 34 36 37 17 19 +22276,1 6 57 71 61 62 75 7 8 +21173,15 71 114 117 16 17 63 7 8 +3076,5 6 12 26 65 66 11 8 +7888,15 9 16 17 43 52 11 8 +21730,15 55 88 55 57 9 16 61 16 17 19 54 7 8 +21407,15 55 88 57 9 36 37 38 37 68 13 +4862,1 6 34 36 16 61 16 17 62 10 7 4 +4595,5 6 34 36 37 17 37 68 7 8 +1313,5 6 49 50 89 13 +8034,5 6 9 10 110 35 58 7 8 +21731,15 55 88 55 57 9 16 61 16 17 19 54 7 4 +17877,5 6 31 47 48 50 54 54 7 8 +9313,1 6 113 61 62 11 8 +22093,1 6 67 107 108 68 7 8 +21197,1 6 67 107 108 68 7 4 +11079,5 6 34 36 37 17 37 68 7 4 +21016,1 6 67 47 36 37 17 37 48 35 7 8 +22695,1 6 113 61 62 11 13 +24818,5 6 55 9 16 42 16 17 19 7 8 +7101,1 6 71 72 54 7 4 +2217,5 6 44 26 9 16 17 10 7 4 +9947,5 6 84 51 47 36 37 17 10 85 54 7 8 +8035,5 6 9 10 110 35 58 7 4 +2216,5 6 44 26 9 16 17 10 7 8 +18384,15 49 36 37 17 11 7 8 +16845,15 49 36 37 17 11 7 4 +12854,1 6 71 72 54 7 8 +18687,5 6 71 36 37 17 37 35 7 4 +4129,15 67 36 37 19 58 11 8 +8099,5 6 57 12 16 61 16 17 62 10 7 4 +941,15 73 16 17 63 85 7 8 +12963,1 6 64 16 17 43 68 11 8 +19008,1 6 57 57 65 9 16 17 19 7 4 +25095,5 6 71 36 37 17 37 35 7 8 +14097,1 6 57 57 65 9 16 17 19 7 8 +12460,5 6 12 36 37 17 10 7 4 +12459,5 6 12 36 37 17 10 7 8 +942,15 73 16 17 63 85 7 4 +8100,5 6 57 12 16 61 16 17 62 10 7 8 +13664,1 12 9 31 42 43 17 37 48 35 54 7 8 +2760,1 6 53 90 16 61 16 17 10 7 4 +1566,15 49 36 37 17 10 7 8 +4859,1 6 34 36 16 61 16 17 62 10 7 8 +7185,1 6 53 90 16 61 16 17 10 7 8 +9671,1 12 11 85 93 58 7 8 +1565,15 49 36 37 17 10 7 4 +25349,1 12 11 85 93 58 7 4 +18952,1 6 53 64 16 61 16 17 62 10 7 4 +19051,5 6 71 107 108 52 7 8 +18009,5 6 88 90 16 61 16 17 11 13 +18951,1 6 53 64 16 61 16 17 62 10 7 8 +16780,5 6 9 16 17 62 32 93 7 4 +10974,5 6 57 58 89 27 28 +17116,5 6 31 47 47 36 37 17 37 50 58 54 7 4 +16779,5 6 9 16 17 62 32 93 7 8 +2576,1 12 9 31 42 43 17 37 35 7 4 +12550,1 12 16 36 39 36 39 36 16 17 63 7 8 +5780,1 12 16 36 39 36 39 36 16 17 63 7 4 +18008,5 6 88 90 16 61 16 17 11 8 +18125,5 6 105 16 17 91 54 7 8 +18126,5 6 105 16 17 91 54 7 4 +3971,1 6 55 49 36 37 17 37 50 56 7 4 +13016,5 6 53 44 9 16 17 10 54 7 4 +6602,15 55 12 16 36 16 21 77 78 22 79 4 +13015,5 6 53 44 9 16 17 10 54 7 8 +16601,1 6 12 51 36 37 17 19 7 8 +23175,15 55 51 42 43 17 37 50 30 58 7 8 +12980,1 6 57 53 51 36 37 17 10 7 8 +3494,1 6 57 53 51 36 37 17 10 7 4 +7858,15 34 107 108 108 48 72 54 7 8 +23176,15 55 51 42 43 17 37 50 30 58 7 4 +21521,15 55 12 9 16 36 37 38 17 3 8 +17833,5 6 55 57 9 16 17 37 72 7 4 +22383,1 6 12 51 36 37 17 19 7 4 +21520,15 55 12 9 16 36 37 38 17 3 4 +7857,15 34 107 108 108 48 72 54 7 4 +12861,5 6 55 57 53 34 35 13 +12617,5 6 12 9 47 48 7 8 +8863,5 6 53 67 47 36 37 63 54 7 4 +12749,1 6 53 18 12 61 16 17 11 13 +895,15 96 16 21 77 78 22 79 4 +5619,1 6 53 18 12 61 16 17 11 8 +23859,1 6 57 9 16 17 43 50 7 8 +14270,15 57 53 9 10 58 56 54 7 4 +3399,5 6 65 34 35 13 +7495,15 51 52 7 4 +8874,5 6 53 67 47 36 37 63 54 7 8 +14303,1 6 57 9 16 17 43 50 7 4 +14271,15 57 53 9 10 58 56 54 7 8 +7496,15 51 52 7 8 +21029,15 12 39 36 16 17 37 32 7 4 +4215,1 6 55 31 32 13 +21030,15 12 39 36 16 17 37 32 7 8 +10578,5 6 12 16 36 16 17 11 8 +20092,1 6 12 9 16 17 37 35 87 7 4 +19873,5 6 12 16 36 16 17 11 13 +12514,1 6 12 51 52 11 8 +15345,15 55 12 65 66 7 4 +5522,5 6 71 36 37 17 62 10 7 4 +15346,15 55 12 65 66 7 8 +19358,1 6 67 42 43 17 10 54 54 7 8 +2287,1 6 67 68 66 7 8 +13565,1 6 53 12 16 17 37 35 54 85 54 7 4 +5523,5 6 71 36 37 17 62 10 7 8 +13708,1 6 67 42 43 17 10 54 54 7 4 +18752,1 6 55 55 51 47 36 37 17 11 8 +2286,1 6 67 68 66 7 4 +13566,1 6 53 12 16 17 37 35 54 85 54 7 8 +10211,5 6 55 53 51 52 13 +496,15 31 61 62 63 7 8 +3993,1 6 55 9 16 42 16 17 11 8 +497,15 31 61 62 63 7 4 +22149,5 6 64 61 62 17 17 3 8 +19208,5 6 53 57 9 16 17 37 52 54 7 4 +19207,5 6 53 57 9 16 17 37 52 54 7 8 +21159,5 6 31 42 43 17 37 35 87 7 8 +17468,1 12 9 16 17 37 48 35 7 4 +15468,1 6 49 47 48 48 68 7 4 +17467,1 12 9 16 17 37 48 35 7 8 +12072,5 6 71 117 16 17 19 7 4 +17508,5 6 18 12 16 17 43 52 58 89 56 7 8 +6179,1 6 57 53 49 36 37 17 10 7 8 +18492,5 6 84 49 36 37 17 10 85 7 8 +14659,15 44 9 16 17 63 7 8 +8818,1 6 53 31 42 43 17 37 32 54 7 8 +14658,15 44 9 16 17 63 7 4 +14996,1 6 57 53 49 36 37 17 10 7 4 +16930,1 6 53 31 42 43 17 37 32 54 7 4 +25604,1 6 53 57 9 16 61 16 17 37 68 89 7 8 +2895,5 6 51 42 43 17 37 52 54 7 4 +11367,1 6 53 34 35 58 7 8 +21488,5 6 64 61 62 37 10 7 4 +4180,15 12 16 39 36 16 17 62 10 7 8 +2896,5 6 51 42 43 17 37 52 54 7 8 +11366,1 6 53 34 35 58 7 4 +23902,1 6 55 51 47 42 43 17 63 7 4 +4179,15 12 16 39 36 16 17 62 10 7 4 +24892,5 6 84 12 49 50 13 +12071,5 6 71 117 16 17 19 7 8 +10148,1 6 49 47 48 48 68 7 8 +21901,5 6 55 88 57 58 7 8 +21893,5 6 55 88 57 58 7 4 +544,1 6 53 9 36 16 17 37 52 54 7 8 +4155,5 6 64 61 62 120 7 8 +545,1 6 53 9 36 16 17 37 52 54 7 4 +22392,15 49 42 43 10 54 7 8 +4156,5 6 64 61 62 120 7 4 +16368,5 6 53 53 9 16 17 10 54 54 7 8 +11251,1 6 53 34 47 36 37 10 7 4 +17541,5 6 26 65 66 27 28 +5833,15 57 53 9 10 58 54 7 8 +25938,1 6 53 34 47 36 37 10 7 8 +11716,1 12 9 31 42 43 17 10 54 7 8 +5834,15 57 53 9 10 58 54 7 4 +11715,1 12 9 31 42 43 17 10 54 7 4 +20221,1 6 9 16 61 16 61 16 17 63 7 8 +22391,15 49 42 43 10 54 7 4 +18158,1 6 53 53 34 47 48 35 58 54 54 7 8 +10485,1 6 12 51 52 7 4 +10519,15 55 12 55 109 110 13 +26280,1 6 57 57 92 9 10 7 4 +5168,5 6 34 47 48 35 87 54 7 4 +8566,5 6 55 53 34 35 33 13 +9691,1 6 57 57 92 9 10 7 8 +21051,5 6 9 10 66 56 93 7 8 +10484,1 6 12 51 52 7 8 +14814,5 6 9 10 66 56 93 7 4 +11806,1 6 9 16 36 16 17 37 52 7 8 +17624,5 6 53 53 9 16 17 10 54 54 7 4 +6547,5 6 88 55 56 7 8 +16604,5 6 9 16 17 37 52 11 8 +2626,15 67 47 107 108 48 72 54 7 8 +6546,5 6 88 55 56 7 4 +7579,1 6 9 16 36 16 17 37 52 7 4 +2627,15 67 47 107 108 48 72 54 7 4 +13679,1 6 53 12 51 36 37 17 10 7 4 +18705,15 57 58 66 11 8 +18563,5 6 29 9 10 33 13 +13680,1 6 53 12 51 36 37 17 10 7 8 +20577,1 6 55 12 55 56 89 56 7 4 +1682,15 96 36 37 38 19 58 11 8 +5167,5 6 34 47 48 35 87 54 7 8 +21716,5 6 76 61 62 17 37 35 66 7 4 +19981,15 34 36 37 38 17 19 33 13 +18038,1 6 18 12 16 17 100 7 4 +19665,1 6 18 12 16 17 100 7 8 +135,5 6 55 57 53 31 47 48 50 7 8 +22963,15 55 65 88 67 68 7 4 +3746,5 6 55 57 53 31 47 48 50 7 4 +10341,1 6 49 36 37 10 54 7 4 +8789,1 6 86 53 9 10 7 4 +10340,1 6 49 36 37 10 54 7 8 +25590,15 55 12 12 96 36 16 21 77 78 22 8 +306,1 6 34 35 13 +24499,5 6 88 12 16 36 16 17 37 72 7 8 +9387,1 6 96 36 61 16 17 19 7 4 +13439,1 6 49 47 47 36 37 19 13 +10330,5 6 9 16 17 43 17 63 7 4 +14921,5 6 57 57 9 61 62 10 54 7 8 +3731,1 6 96 16 21 77 78 22 8 +20865,5 6 9 16 36 16 61 16 17 37 123 7 8 +23356,5 6 9 16 17 43 17 63 7 8 +9604,5 6 12 49 36 37 69 +10239,15 57 9 16 17 69 +9895,5 6 90 16 42 16 17 10 7 4 +4147,1 6 88 67 61 62 63 7 8 +7415,1 6 18 12 16 17 32 7 8 +25437,5 6 57 67 47 117 16 17 11 13 +3885,1 6 88 67 61 62 63 7 4 +16277,5 6 57 67 47 117 16 17 11 8 +14577,1 12 39 36 61 16 17 11 8 +11277,15 12 36 37 38 17 37 35 7 4 +22287,1 6 51 36 37 10 54 7 8 +11278,15 12 36 37 38 17 37 35 7 8 +22288,1 6 51 36 37 10 54 7 4 +9386,1 6 96 36 61 16 17 19 7 8 +24724,15 12 16 17 19 58 7 8 +9077,1 6 53 53 54 87 58 7 4 +20012,5 6 53 16 16 17 62 10 7 8 +24723,15 12 16 17 19 58 7 4 +9076,1 6 53 53 54 87 58 7 8 +6729,15 31 42 43 11 8 +12292,15 57 58 66 7 8 +7532,15 57 58 66 7 4 +13163,5 6 53 16 16 17 62 10 7 4 +255,1 6 12 67 68 13 +6730,15 31 42 43 11 13 +7416,1 6 18 12 16 17 32 7 4 +17701,1 6 55 12 55 56 89 56 11 8 +17702,15 55 12 55 56 89 56 11 56 7 4 +10477,15 9 16 16 16 17 62 10 7 8 +3259,5 6 34 36 16 42 16 17 37 35 7 4 +7339,1 6 92 34 36 37 17 43 32 93 7 8 +21817,1 6 9 10 89 27 33 13 +18245,1 6 92 34 36 37 17 43 32 93 7 4 +23693,1 6 84 57 58 66 58 85 7 4 +10478,15 9 16 16 16 17 62 10 7 4 +24378,15 12 16 36 16 17 37 50 54 7 4 +7900,1 6 12 16 17 11 56 7 4 +24379,15 12 16 36 16 17 37 50 54 7 8 +6597,1 6 12 16 17 11 56 7 8 +8328,15 55 12 55 56 89 56 11 56 7 8 +14603,1 6 64 16 36 37 38 17 37 68 7 4 +3025,1 6 55 67 36 37 17 10 54 7 8 +5757,5 6 9 16 17 91 7 8 +22397,5 6 12 16 36 16 61 16 17 10 54 7 4 +26570,5 6 53 67 36 37 17 62 10 7 4 +12178,5 6 57 12 49 50 7 8 +18326,5 6 99 100 17 91 7 4 +12491,5 2 16 17 37 68 54 7 4 +12820,5 6 9 16 17 91 7 4 +16425,5 6 53 67 36 37 17 62 10 7 8 +12079,5 6 57 12 49 50 7 4 +13376,5 2 16 17 37 68 54 7 8 +21834,5 6 53 67 114 36 37 17 63 7 4 +3026,1 6 55 67 36 37 17 10 54 7 4 +22398,5 6 12 16 36 16 61 16 17 10 54 7 8 +11858,5 6 34 47 9 36 37 17 11 8 +21828,5 6 53 67 114 36 37 17 63 7 8 +1807,1 6 57 92 49 50 7 4 +25589,15 55 12 12 96 36 16 21 77 78 22 79 4 +20120,5 6 88 57 58 58 66 7 8 +1806,1 6 57 92 49 50 7 8 +16385,5 6 12 65 51 107 61 62 63 7 8 +4315,1 6 53 9 10 27 28 +17417,1 6 53 53 90 91 54 54 7 4 +7940,15 86 12 16 36 37 38 17 11 66 7 8 +12561,1 6 53 9 10 58 87 58 54 7 4 +12971,1 6 64 16 36 37 38 63 7 4 +20509,1 6 9 16 16 17 43 32 7 8 +16121,5 6 71 107 42 43 17 37 50 93 7 4 +22347,15 65 57 9 61 62 68 7 4 +16120,5 6 71 107 42 43 17 37 50 93 7 8 +20410,5 6 57 57 57 12 11 66 27 58 7 4 +25776,1 6 64 96 16 36 37 38 17 10 54 7 4 +13168,1 6 55 31 107 36 37 11 8 +7063,5 6 55 57 57 86 87 7 4 +8792,1 6 86 53 9 10 13 +18961,5 6 53 55 56 27 54 7 4 +1300,15 55 34 36 16 17 63 7 4 +5284,5 6 53 88 89 54 54 7 4 +858,1 6 9 10 89 33 7 8 +15032,5 6 31 42 43 17 37 35 93 7 4 +8481,15 55 34 36 16 17 63 7 8 +9468,5 6 53 88 89 54 54 7 8 +12039,1 6 53 12 51 109 110 11 8 +857,1 6 9 10 89 33 7 4 +14250,15 9 16 17 37 72 54 7 4 +12909,5 6 53 55 56 27 54 7 8 +14249,15 9 16 17 37 72 54 7 8 +10343,15 9 36 16 17 10 7 8 +16063,1 6 31 42 43 17 10 54 54 7 8 +23532,1 6 86 87 66 13 +13988,5 6 64 16 61 62 17 37 72 30 7 4 +5124,1 6 31 42 43 17 10 54 54 7 4 +10855,1 6 57 9 16 36 16 17 74 7 4 +13989,5 6 64 16 61 62 17 37 72 30 7 8 +19924,1 6 88 90 16 61 16 17 19 7 4 +1519,1 6 64 61 62 17 37 72 58 7 4 +19923,1 6 88 90 16 61 16 17 19 7 8 +1520,1 6 64 61 62 17 37 72 58 7 8 +14997,1 6 18 12 16 17 37 108 52 7 8 +16468,1 6 55 53 12 36 16 61 16 17 11 8 +7561,1 6 51 52 54 7 4 +14070,1 6 18 12 16 17 37 108 52 7 4 +25790,5 6 90 91 27 54 7 4 +7981,5 6 90 91 27 54 7 8 +16469,1 6 55 53 12 36 16 61 16 17 11 13 +3913,1 6 9 61 62 108 72 66 11 8 +9328,1 6 88 57 58 56 7 4 +9344,1 6 88 57 58 56 7 8 +18711,5 6 84 90 16 17 37 72 85 7 4 +24406,5 6 67 42 43 17 37 72 7 8 +10342,15 9 36 16 17 10 7 4 +23538,5 6 34 35 58 11 8 +5498,1 6 51 52 54 7 8 +21121,5 6 84 90 16 17 37 72 85 7 8 +17146,5 6 12 16 36 37 38 37 48 72 7 8 +922,70 16 99 16 36 16 17 10 7 4 +15492,5 6 88 73 16 17 91 85 7 8 +921,70 16 99 16 36 16 17 10 7 8 +15491,5 6 88 73 16 17 91 85 7 4 +20572,1 6 55 88 9 36 37 10 7 4 +22751,5 6 96 16 36 16 61 16 17 37 32 7 8 +23228,5 6 96 16 36 16 61 16 17 37 32 7 4 +23305,1 6 55 88 9 36 37 10 7 8 +9154,1 6 53 31 47 48 35 7 8 +25775,1 6 64 96 16 36 37 38 17 10 54 7 8 +22628,15 9 39 36 39 36 39 36 16 17 37 32 87 7 8 +20762,15 129 12 16 17 11 8 +12566,1 6 65 26 88 89 13 +22629,15 9 39 36 39 36 39 36 16 17 37 32 87 7 4 +20763,15 129 12 16 17 11 13 +25030,1 6 53 55 9 16 17 37 52 7 4 +15749,5 6 76 61 62 37 48 35 87 7 4 +15137,1 6 53 55 9 16 17 37 52 7 8 +20505,1 81 16 17 19 13 +4949,1 6 84 12 11 54 7 4 +4948,1 6 84 12 11 54 7 8 +11419,1 6 12 16 42 16 17 11 8 +9155,1 6 53 31 47 48 35 7 4 +15750,5 6 76 61 62 37 48 35 87 7 8 +19262,15 9 39 36 61 61 16 17 62 10 7 4 +12083,1 6 12 12 16 61 16 17 11 8 +1550,5 6 73 16 42 16 17 37 10 7 8 +12180,1 6 12 12 16 61 16 17 11 13 +19263,15 9 39 36 61 61 16 17 62 10 7 8 +11576,1 6 12 16 42 16 17 11 13 +18367,5 6 88 57 58 58 66 7 4 +21330,5 6 84 9 36 16 17 37 48 72 85 93 7 4 +12497,15 31 42 43 17 3 4 +12596,15 65 26 88 9 16 17 10 7 8 +12498,15 31 42 43 17 3 8 +12940,15 65 26 88 9 16 17 10 7 4 +21910,1 12 16 36 37 38 37 35 7 8 +21165,5 6 57 53 9 10 27 28 +22068,1 6 64 16 36 16 117 118 32 7 4 +1798,1 6 57 58 93 58 7 4 +4598,1 6 86 53 12 39 36 16 36 37 38 17 37 68 7 8 +19086,1 6 64 16 36 16 117 118 32 7 8 +1797,1 6 57 58 93 58 7 8 +11721,5 6 53 31 32 58 54 7 4 +12648,5 6 16 16 16 16 16 17 11 8 +12649,5 6 16 16 16 16 16 17 11 13 +16198,5 6 9 16 17 37 35 93 7 8 +6818,1 6 34 107 107 36 37 17 10 7 8 +11208,5 6 9 16 17 37 35 93 7 4 +6819,1 6 34 107 107 36 37 17 10 7 4 +21636,1 6 88 57 53 71 36 37 17 10 7 4 +22116,5 6 53 51 52 54 85 7 8 +23822,1 12 16 36 37 38 37 35 7 4 +22134,70 16 36 16 17 37 48 72 54 7 8 +25613,1 6 64 61 16 17 62 10 7 4 +24715,5 6 92 34 36 37 17 19 7 4 +22135,70 16 36 16 17 37 48 72 54 7 4 +1207,1 6 12 16 17 10 7 8 +3051,1 6 12 16 17 10 7 4 +11580,5 6 31 114 115 32 7 4 +23307,15 57 58 58 11 8 +25614,1 6 64 61 16 17 62 10 7 8 +14951,5 6 12 9 16 17 43 7 8 +19933,1 6 64 16 36 16 17 37 35 54 54 7 8 +14950,5 6 12 9 16 17 43 7 4 +19934,1 6 64 16 36 16 17 37 35 54 54 7 4 +25405,1 12 16 39 36 16 61 16 17 37 35 7 4 +19458,1 6 9 16 36 16 17 37 108 50 7 4 +25532,15 65 57 12 11 58 7 8 +23420,5 6 12 65 26 9 16 17 10 7 4 +25533,15 65 57 12 11 58 7 4 +18482,5 6 84 65 90 16 17 10 85 7 8 +23419,5 6 12 65 26 9 16 17 10 7 8 +3179,15 34 107 36 37 38 17 19 58 11 8 +5944,5 6 71 36 37 17 91 7 8 +10691,1 6 9 36 16 36 16 17 11 8 +22953,1 6 64 61 62 37 123 11 8 +24893,5 6 53 34 107 36 37 10 54 7 8 +25512,1 6 53 71 47 36 37 17 10 54 7 8 +18424,1 6 53 71 47 36 37 17 10 54 7 4 +23751,5 45 21 22 17 19 11 58 89 7 4 +5473,1 6 67 47 36 37 17 10 7 8 +5296,15 31 42 43 17 11 8 +3609,1 6 67 47 36 37 17 10 7 4 +3468,5 6 12 16 36 16 17 19 13 +22827,1 6 53 34 47 48 68 7 8 +9225,5 6 64 61 62 17 37 35 87 54 7 4 +5021,1 6 29 9 10 30 7 4 +17595,5 6 57 53 9 10 33 13 +5020,1 6 29 9 10 30 7 8 +18669,5 6 65 67 61 62 63 7 8 +19341,1 6 12 9 16 17 37 72 7 8 +15279,1 6 12 9 16 17 37 72 7 4 +5966,5 6 64 61 62 17 37 35 87 54 7 8 +4839,1 12 16 36 37 38 37 35 11 8 +7797,5 6 65 67 61 62 63 7 4 +8330,15 34 107 36 16 17 19 58 11 8 +13902,5 6 55 26 88 89 66 7 8 +16184,1 6 57 9 16 36 16 42 16 17 37 35 7 4 +18539,5 6 84 9 36 16 17 37 48 50 85 7 4 +24072,1 81 16 17 11 13 +17706,5 6 53 31 36 37 17 91 54 7 8 +3801,15 57 58 58 7 8 +7807,1 6 12 39 36 16 21 77 78 22 79 4 +3800,15 57 58 58 7 4 +24071,1 81 16 17 11 8 +7387,1 6 12 16 42 16 17 19 13 +26517,5 6 86 34 36 37 69 +24359,1 6 18 12 16 17 43 35 7 8 +12003,1 6 57 53 31 32 33 13 +16967,15 71 36 37 17 19 58 11 8 +19060,5 6 9 10 58 85 7 4 +5297,15 31 42 43 17 11 13 +19061,5 6 9 10 58 85 7 8 +24360,1 6 18 12 16 17 43 35 7 4 +15573,15 55 67 47 42 43 17 37 52 54 7 4 +15063,5 6 53 31 36 37 17 91 54 7 4 +15574,15 55 67 47 42 43 17 37 52 54 7 8 +1429,1 6 64 16 36 37 38 17 37 68 7 8 +15623,5 6 76 61 62 17 10 54 54 7 8 +22982,1 6 57 12 11 58 85 7 4 +22981,1 6 57 12 11 58 85 7 8 +14309,5 6 64 16 36 16 17 37 48 32 7 8 +24251,1 6 64 36 37 38 37 48 72 56 7 8 +17278,1 6 64 36 37 38 37 48 72 56 7 4 +21928,96 39 36 16 21 77 78 22 8 +18954,1 6 12 61 36 61 16 17 19 13 +8288,5 6 9 16 17 43 72 7 4 +2800,5 6 61 62 75 7 4 +23500,15 57 9 16 117 118 68 11 8 +9894,5 6 9 16 17 43 72 7 8 +9190,1 6 55 12 57 55 9 16 36 37 38 17 37 50 7 4 +16833,5 6 88 9 16 17 37 52 7 8 +5448,5 6 53 67 36 37 17 10 54 7 8 +14245,1 6 88 9 16 17 91 54 7 8 +14845,1 6 92 9 16 17 62 10 7 4 +24079,15 96 36 16 17 37 50 85 7 8 +16832,5 6 88 9 16 17 37 52 7 4 +5447,5 6 53 67 36 37 17 10 54 7 4 +3034,5 6 67 68 56 11 8 +18625,1 6 88 9 16 17 91 54 7 4 +19205,5 6 61 62 75 7 8 +24080,15 96 36 16 17 37 50 85 7 4 +4652,5 6 64 16 42 16 17 10 7 8 +2330,1 6 57 57 57 12 16 17 10 7 8 +1390,15 9 16 61 16 17 10 7 4 +6380,15 55 12 57 96 16 21 77 78 22 8 +17853,1 6 84 90 91 87 7 4 +21608,1 6 86 34 47 48 72 7 8 +17852,1 6 84 90 91 87 7 8 +10839,1 6 53 51 52 54 54 7 8 +17909,15 55 53 12 16 61 16 17 11 13 +9121,15 55 12 88 55 57 12 16 36 37 38 37 48 72 7 4 +11509,1 6 53 51 52 54 54 7 4 +24483,1 6 113 61 62 37 48 32 7 4 +17908,15 55 53 12 16 61 16 17 11 8 +8477,5 6 64 16 36 16 17 37 48 32 7 4 +9122,15 55 12 88 55 57 12 16 36 37 38 37 48 72 7 8 +11915,15 12 57 58 58 66 7 4 +1173,15 12 16 36 37 38 17 3 4 +2329,1 6 57 57 57 12 16 17 10 7 4 +21458,15 12 57 58 58 66 7 8 +17212,1 6 41 88 12 26 9 16 17 62 10 7 8 +5310,5 6 64 16 42 16 17 10 7 4 +6079,1 6 41 88 12 26 9 16 17 62 10 7 4 +17874,1 6 113 61 62 37 48 32 7 8 +9129,1 6 9 16 17 37 32 54 7 4 +23992,1 6 57 105 16 61 16 17 62 10 7 4 +9130,1 6 9 16 17 37 32 54 7 8 +1356,5 6 84 51 52 85 7 8 +19297,25 26 27 87 7 4 +24007,15 53 12 9 16 17 19 +19298,25 26 27 87 7 8 +1389,15 9 16 61 16 17 10 7 8 +25129,5 6 55 57 9 61 62 72 7 4 +11556,1 6 51 47 36 37 17 11 13 +14846,1 6 92 9 16 17 62 10 7 8 +9814,5 6 53 9 36 16 61 16 17 37 35 56 7 8 +9813,5 6 53 9 36 16 61 16 17 37 35 56 7 4 +7134,5 6 84 57 58 13 +26163,15 9 16 36 37 38 17 37 52 11 7 4 +12598,5 6 26 57 12 39 36 16 17 19 13 +23072,15 9 16 36 37 38 17 37 52 11 7 8 +19221,5 6 53 71 47 36 37 17 11 8 +5548,15 67 61 62 112 7 8 +6646,1 6 51 47 36 37 17 11 8 +5549,15 67 61 62 112 7 4 +16153,5 6 55 53 57 9 16 61 16 17 19 54 7 4 +18977,5 6 34 35 56 89 13 +21815,15 44 26 88 89 66 11 8 +18225,5 6 12 65 9 16 17 37 48 50 7 4 +12590,5 6 55 57 51 36 37 11 8 +18226,5 6 12 65 9 16 17 37 48 50 7 8 +6497,5 2 16 17 37 32 10 7 4 +15807,5 6 64 61 62 17 37 35 54 54 7 8 +19489,5 2 16 17 37 32 10 7 8 +19148,5 6 9 16 17 43 72 11 8 +11972,5 6 64 61 62 17 37 35 54 54 7 4 +16603,5 6 12 51 36 37 17 19 7 4 +16602,5 6 12 51 36 37 17 19 7 8 +25526,1 6 57 65 88 89 13 +3263,5 6 67 68 66 58 7 4 +6720,5 6 67 68 66 58 7 8 +7897,5 6 12 26 9 16 17 62 10 7 8 +4591,15 67 36 37 17 37 68 7 8 +7896,5 6 12 26 9 16 17 62 10 7 4 +1497,5 6 57 57 57 65 66 13 +4590,15 67 36 37 17 37 68 7 4 +7412,1 12 36 39 36 39 36 16 17 19 13 +3047,15 105 16 17 91 7 8 +6176,15 57 53 9 10 13 +14940,5 6 84 57 88 26 65 66 13 +5007,1 6 9 16 17 43 75 7 8 +5006,1 6 9 16 17 43 75 7 4 +23145,5 6 34 47 36 37 10 7 8 +4454,5 6 55 65 66 56 7 4 +5001,15 55 51 36 37 17 11 8 +8947,5 6 9 16 16 16 16 16 16 17 11 8 +5002,15 55 51 36 37 17 11 13 +3046,15 105 16 17 91 7 4 +16251,1 81 16 17 3 4 +23144,5 6 34 47 36 37 10 7 4 +16250,1 81 16 17 3 8 +23090,5 6 55 51 47 48 35 7 4 +22568,5 6 57 9 16 16 17 37 32 54 7 4 +10105,5 6 29 9 42 16 17 10 7 8 +10106,5 6 29 9 42 16 17 10 7 4 +12021,1 6 55 51 42 43 17 37 32 54 7 4 +20850,15 86 34 36 37 17 118 17 10 7 4 +18370,5 6 55 65 86 87 13 +9599,70 36 16 17 10 7 8 +9598,70 36 16 17 10 7 4 +26051,15 12 39 36 16 17 10 7 8 +20454,5 6 64 16 117 118 48 52 7 4 +19723,1 6 105 106 89 7 8 +20228,15 86 34 36 37 17 118 17 10 7 8 +26050,15 12 39 36 16 17 10 7 4 +19722,1 6 105 106 89 7 4 +4796,1 6 53 86 87 13 +16029,5 6 34 42 43 17 37 35 54 7 4 +21497,15 9 16 36 16 61 16 17 37 35 54 54 7 8 +23008,5 6 84 88 57 58 58 89 13 +4460,5 6 55 65 66 56 7 8 +26130,5 6 55 53 57 9 16 61 16 17 19 54 7 8 +4274,15 12 34 35 13 +11280,1 6 67 47 36 37 17 10 54 7 4 +22733,1 6 64 61 62 17 118 17 37 52 7 8 +11281,1 6 67 47 36 37 17 10 54 7 8 +6459,1 6 9 10 87 27 7 4 +16971,15 51 47 36 37 17 19 58 11 56 7 8 +7125,1 6 9 10 87 27 7 8 +17387,15 51 47 36 37 17 19 58 11 56 7 4 +25341,15 34 36 37 17 37 10 7 8 +17209,1 6 64 16 39 36 16 42 16 17 43 32 93 7 4 +12970,1 6 53 67 47 36 37 17 63 7 8 +25340,15 34 36 37 17 37 10 7 4 +9718,1 6 64 16 39 36 16 42 16 17 43 32 93 7 8 +24352,1 6 9 16 17 37 48 35 7 4 +8685,1 6 53 67 47 36 37 17 63 7 4 +4444,1 6 49 36 37 10 7 8 +17466,1 6 9 16 17 37 48 35 7 8 +527,1 6 49 36 37 10 7 4 +22732,1 6 64 61 62 17 118 17 37 52 7 4 +25201,5 6 55 34 47 48 35 7 8 +21661,5 6 9 61 62 48 52 7 8 +178,15 12 16 36 37 38 17 11 8 +21208,5 6 9 61 62 48 52 7 4 +19232,5 6 31 36 37 17 91 7 8 +10922,70 16 61 16 17 19 7 4 +18240,5 6 84 57 58 66 7 4 +11682,5 6 76 16 117 118 68 7 8 +5890,1 2 16 17 43 32 10 7 4 +10595,5 6 31 36 37 17 91 7 4 +5889,1 2 16 17 43 32 10 7 8 +6735,5 6 47 36 37 17 63 7 8 +15180,5 6 9 16 36 37 38 17 10 93 7 4 +6736,5 6 47 36 37 17 63 7 4 +9961,5 6 84 57 58 66 7 8 +9625,1 6 64 16 17 37 32 93 7 4 +15181,5 6 9 16 36 37 38 17 10 93 7 8 +15125,1 6 64 16 17 37 32 93 7 8 +17830,1 6 71 36 37 17 43 32 93 7 4 +15129,15 34 47 48 68 7 8 +11456,1 6 18 12 16 42 16 17 37 32 7 8 +25306,5 6 9 10 56 11 7 4 +18015,5 6 119 39 36 16 17 69 +13416,1 6 18 12 16 42 16 17 37 32 7 4 +16478,5 6 9 10 56 11 7 8 +6478,1 6 53 90 91 7 8 +5072,1 6 49 50 58 89 13 +11829,95 36 16 17 37 35 58 7 4 +11828,95 36 16 17 37 35 58 7 8 +14793,1 6 65 9 16 61 16 17 37 108 35 54 7 8 +20836,5 6 34 107 108 35 85 54 7 4 +6479,1 6 53 90 91 7 4 +20837,5 6 34 107 108 35 85 54 7 8 +3255,5 6 42 43 17 10 7 4 +19542,15 9 61 62 32 54 54 7 4 +9212,1 6 12 36 16 17 10 7 8 +3254,5 6 42 43 17 10 7 8 +15130,15 34 47 48 68 7 4 +13607,1 6 55 55 55 71 72 13 +19543,15 9 61 62 32 54 54 7 8 +11530,1 6 12 36 16 17 10 7 4 +5399,1 12 36 37 38 37 52 54 7 8 +5114,1 6 9 16 36 16 17 37 48 68 7 4 +19579,5 6 34 36 37 106 7 4 +10813,1 12 36 37 38 37 52 54 7 4 +12434,5 6 34 36 37 106 7 8 +13896,15 57 9 16 117 118 68 7 8 +2008,1 6 53 9 10 33 13 +15350,5 6 9 10 89 11 7 4 +13897,15 57 9 16 117 118 68 7 4 +22566,5 6 9 10 89 11 7 8 +23810,1 6 55 57 12 16 17 11 8 +10201,15 57 9 16 17 37 35 54 7 8 +22942,15 65 26 9 16 17 11 13 +15389,1 6 53 9 10 32 13 +10200,15 57 9 16 17 37 35 54 7 4 +22941,15 65 26 9 16 17 11 8 +1355,5 6 84 51 52 85 7 4 +19389,15 53 34 107 108 48 32 7 8 +19388,15 53 34 107 108 48 32 7 4 +19803,1 12 36 39 36 39 36 16 17 11 8 +23517,1 6 53 12 51 109 110 11 54 7 8 +10923,70 16 61 16 17 19 7 8 +2167,5 6 12 16 17 37 35 11 7 8 +5113,1 6 9 16 36 16 17 37 48 68 7 8 +20895,15 88 9 39 36 16 17 11 8 +15836,5 6 12 16 17 37 35 11 7 4 +1174,15 12 16 36 37 38 17 3 8 +20896,15 88 9 39 36 16 17 11 13 +24585,1 6 53 12 51 109 110 11 54 7 4 +4924,15 9 61 62 32 10 54 7 4 +9844,15 34 107 107 36 16 17 37 35 11 8 +11745,15 55 65 57 58 13 +17587,5 6 64 61 16 17 106 7 4 +19321,1 6 64 36 16 61 16 17 37 72 7 4 +13061,1 6 12 12 16 36 37 38 37 48 32 11 8 +4923,15 9 61 62 32 10 54 7 8 +19320,1 6 64 36 16 61 16 17 37 72 7 8 +22229,1 6 12 16 36 16 17 37 10 7 4 +1101,5 6 53 12 16 17 75 7 8 +1100,5 6 53 12 16 17 75 7 4 +20016,1 6 64 16 42 16 17 37 50 11 58 7 4 +22718,15 44 9 16 36 16 17 19 7 4 +22719,15 44 9 16 36 16 17 19 7 8 +11618,15 9 16 17 17 10 54 7 8 +13067,5 6 31 42 43 17 37 48 32 11 8 +12466,1 6 64 16 42 16 17 37 50 11 58 7 8 +20283,1 6 51 36 37 17 37 72 58 85 7 4 +15190,5 6 18 12 16 17 43 32 93 58 7 4 +17564,5 6 55 53 51 52 7 8 +5775,15 12 16 36 16 17 37 48 50 7 4 +15191,5 6 18 12 16 17 43 32 93 58 7 8 +10416,5 6 34 47 48 48 72 7 8 +8496,15 65 57 9 16 17 37 72 7 8 +5774,15 12 16 36 16 17 37 48 50 7 8 +24064,15 53 12 51 107 108 108 52 11 8 +18401,5 6 34 47 48 48 72 7 4 +25091,5 6 9 36 37 38 17 10 7 8 +16999,5 6 49 109 110 58 7 4 +20262,5 6 57 58 87 7 8 +6569,5 6 57 58 87 7 4 +9601,5 6 53 49 50 11 8 +5841,15 57 53 9 10 56 54 7 8 +19256,1 6 51 52 58 66 58 7 8 +15729,1 6 51 52 58 66 58 7 4 +16244,15 57 55 12 16 17 62 10 7 4 +5840,15 57 53 9 10 56 54 7 4 +16242,15 57 55 12 16 17 62 10 7 8 +17859,5 6 53 57 49 109 110 54 7 4 +8992,1 6 53 9 10 58 13 +11382,1 6 18 12 16 17 43 48 32 11 8 +23996,15 57 9 36 16 36 16 17 37 72 7 8 +7054,15 9 16 17 17 54 54 7 8 +1223,5 6 64 61 62 17 91 7 8 +23979,15 57 9 36 16 36 16 17 37 72 7 4 +7055,15 9 16 17 17 54 54 7 4 +6135,1 12 36 16 17 37 48 50 7 4 +2476,5 6 64 61 62 17 91 7 4 +24088,1 6 18 12 16 17 43 48 32 11 13 +9208,1 12 36 16 17 37 48 50 7 8 +10250,15 71 47 48 68 66 11 7 8 +22372,5 6 9 16 17 43 32 54 54 7 8 +24468,5 6 90 36 16 17 63 7 4 +2882,5 6 57 53 9 10 7 8 +26187,5 6 55 53 9 10 58 54 7 8 +774,5 6 12 11 58 11 58 7 8 +1009,5 6 9 16 17 43 32 10 54 7 8 +15381,5 6 55 53 9 10 58 54 7 4 +6187,5 6 12 11 58 11 58 7 4 +8877,5 6 9 16 17 43 32 10 54 7 4 +15182,1 6 41 9 16 17 37 50 7 8 +12696,5 45 21 22 17 37 35 54 7 8 +14364,15 9 16 36 37 38 37 35 7 4 +8425,5 6 49 50 33 13 +19637,5 6 31 42 43 17 37 48 32 7 4 +14365,15 9 16 36 37 38 37 35 7 8 +7582,5 45 21 22 17 37 35 54 7 4 +2264,5 6 55 57 53 12 16 61 16 17 62 10 7 4 +16523,15 9 16 17 54 54 7 8 +25276,15 34 36 37 17 11 66 7 8 +2263,5 6 55 57 53 12 16 61 16 17 62 10 7 8 +16522,15 9 16 17 54 54 7 4 +12082,15 12 11 11 56 7 8 +23969,1 6 31 36 37 17 37 50 54 7 4 +12179,15 12 11 11 56 7 4 +10950,5 6 12 9 36 37 38 10 7 8 +3130,15 12 36 16 17 19 13 +10949,5 6 12 9 36 37 38 10 7 4 +12825,1 6 88 55 9 16 39 36 16 17 11 8 +179,15 12 16 36 37 38 17 11 13 +521,5 6 53 49 50 7 8 +1211,5 6 53 49 50 7 4 +18558,15 53 9 16 36 37 38 17 3 4 +22075,5 6 53 12 12 61 16 17 19 13 +24459,5 6 55 67 42 43 17 43 68 7 8 +2045,5 6 84 18 12 16 17 11 8 +2046,5 6 84 18 12 16 17 11 13 +6183,5 6 55 67 42 43 17 43 68 7 4 +22772,5 6 9 36 37 38 37 72 7 4 +3193,15 55 12 55 57 9 16 17 10 7 8 +3192,15 55 12 55 57 9 16 17 10 7 4 +7154,5 6 90 91 89 54 54 54 7 8 +13446,1 12 11 58 89 85 7 4 +22823,5 6 9 36 37 38 37 72 7 8 +16245,1 12 11 58 89 85 7 8 +16619,1 6 71 72 58 89 13 +12714,5 6 57 57 92 9 16 61 16 17 75 7 8 +11619,15 9 16 17 17 10 54 7 4 +15990,5 6 57 57 92 9 16 61 16 17 75 7 4 +26490,15 31 42 43 17 37 10 7 8 +22867,5 6 12 16 16 17 19 13 +1067,15 9 16 17 10 54 7 4 +26731,5 6 64 61 62 17 37 52 93 7 4 +18643,1 6 31 47 42 43 17 3 4 +26489,15 31 42 43 17 37 10 7 4 +22592,1 6 65 66 11 7 4 +1066,15 9 16 17 10 54 7 8 +3998,5 6 57 53 9 10 7 4 +17635,15 44 34 36 37 17 10 54 7 4 +5768,1 6 84 9 10 85 54 7 8 +26805,15 65 88 57 9 16 36 16 17 37 52 68 7 4 +17634,15 44 34 36 37 17 10 54 7 8 +21924,5 6 9 16 17 37 48 32 7 8 +9264,1 6 55 55 57 65 66 56 7 8 +9265,1 6 55 55 57 65 66 56 7 4 +5771,1 6 84 9 10 85 54 7 4 +7155,5 6 90 91 89 54 54 54 7 4 +18832,15 86 9 16 17 63 7 4 +18831,15 86 9 16 17 63 7 8 +15831,5 6 12 9 16 17 43 32 93 7 4 +7293,15 34 42 16 17 62 10 7 4 +21696,1 6 57 55 55 86 87 7 4 +4045,5 6 34 42 43 17 11 8 +10078,1 6 67 47 36 37 17 62 10 7 8 +21837,1 6 31 42 43 17 37 115 72 54 7 4 +7292,15 34 42 16 17 62 10 7 8 +22774,1 6 57 55 55 86 87 7 8 +3828,5 6 53 12 51 36 37 17 11 8 +17144,15 57 55 12 16 36 37 38 17 11 8 +26485,15 88 57 12 16 36 16 17 19 13 +24100,5 6 12 9 16 17 43 32 93 7 8 +19776,70 36 16 61 16 17 19 7 8 +19777,70 36 16 61 16 17 19 7 4 +24615,1 6 65 9 16 61 16 17 10 7 8 +22253,1 6 57 31 32 13 +14428,1 6 65 55 56 13 +5213,1 6 57 53 9 61 16 36 16 17 37 50 7 4 +21830,15 67 114 36 37 17 63 7 4 +21829,15 67 114 36 37 17 63 7 8 +16514,15 55 9 36 16 61 16 17 11 8 +21942,15 55 12 88 57 58 11 56 7 8 +9184,15 55 12 88 57 58 11 56 7 4 +16515,15 55 9 36 16 61 16 17 11 13 +10391,5 6 124 36 37 11 8 +826,5 6 88 57 58 89 13 +25823,5 6 124 36 37 11 13 +7550,5 6 65 57 121 9 16 17 62 10 7 8 +9821,5 6 53 49 107 108 52 54 7 4 +7345,1 6 12 16 36 16 17 10 7 8 +15964,1 6 57 53 49 36 37 17 10 54 7 4 +22820,5 6 53 31 47 48 48 32 58 54 7 8 +15698,1 6 57 53 49 36 37 17 10 54 7 8 +17633,1 6 53 18 12 34 36 37 17 10 54 7 8 +1147,5 6 53 31 47 48 48 32 58 54 7 4 +23138,1 6 55 53 49 50 54 7 4 +21316,5 6 92 84 85 7 8 +13689,1 6 53 12 96 16 21 77 78 22 8 +21313,5 6 92 84 85 7 4 +4615,5 6 29 64 16 17 35 30 7 4 +8530,1 6 55 53 49 50 54 7 8 +20038,15 55 53 71 36 37 10 54 7 8 +14273,15 55 53 71 36 37 10 54 7 4 +1046,5 6 67 68 56 7 8 +5988,1 6 12 16 36 16 17 10 7 4 +1045,5 6 67 68 56 7 4 +16463,1 6 86 31 36 37 17 10 7 8 +18455,1 6 86 31 36 37 17 10 7 4 +24988,15 44 31 42 43 17 10 54 7 8 +7672,1 6 67 47 36 37 17 37 35 7 4 +24987,15 44 31 42 43 17 10 54 7 4 +4616,5 6 29 64 16 17 35 30 7 8 +7671,1 6 67 47 36 37 17 37 35 7 8 +13617,15 12 36 16 17 11 13 +20531,15 119 16 17 11 8 +21554,5 6 34 36 37 10 54 7 8 +8847,5 6 53 31 42 43 17 37 48 35 54 7 4 +18263,5 6 53 55 53 57 9 16 17 37 32 54 7 8 +23260,5 6 34 36 37 10 54 7 4 +1260,1 6 53 9 10 48 13 +13616,15 12 36 16 17 11 8 +20532,15 119 16 17 11 13 +7809,5 6 12 39 36 16 21 77 78 22 8 +20250,5 6 88 26 12 36 37 38 11 8 +13779,5 6 92 57 9 36 37 38 37 48 72 7 8 +7422,1 6 57 51 47 48 52 7 8 +3374,5 6 12 11 54 7 8 +23105,5 6 86 55 65 66 13 +7423,1 6 57 51 47 48 52 7 4 +3373,5 6 12 11 54 7 4 +10801,70 16 36 37 38 17 10 7 8 +12985,5 6 55 56 93 7 8 +10800,70 16 36 37 38 17 10 7 4 +12984,5 6 55 56 93 7 4 +13962,5 6 12 51 42 43 17 37 35 54 7 4 +26609,5 6 92 57 9 36 37 38 37 48 72 7 4 +13963,5 6 12 51 42 43 17 37 35 54 7 8 +16659,1 6 31 47 42 43 17 11 8 +5884,5 6 53 49 107 108 52 54 7 8 +11540,5 6 76 16 42 16 17 11 13 +22025,5 6 9 16 17 37 35 93 58 7 4 +1613,15 9 16 17 37 35 7 8 +11539,5 6 76 16 42 16 17 11 8 +26132,1 6 53 54 66 56 7 4 +1614,15 9 16 17 37 35 7 4 +26133,1 6 53 54 66 56 7 8 +1908,5 6 76 16 61 62 17 10 54 7 4 +17285,5 6 53 12 39 36 16 17 10 54 54 7 8 +26753,5 6 57 57 49 50 13 +1907,5 6 76 16 61 62 17 10 54 7 8 +12333,15 9 16 61 16 17 11 7 8 +11589,15 31 114 114 114 36 37 17 10 7 4 +11588,15 31 114 114 114 36 37 17 10 7 8 +25934,5 6 51 47 48 52 54 7 8 +12191,15 12 39 36 16 17 11 7 4 +4428,15 44 12 16 17 19 7 4 +15714,15 57 58 58 66 13 +4429,15 44 12 16 17 19 7 8 +6592,5 6 9 36 61 16 17 10 7 8 +16299,1 6 57 57 57 65 12 16 17 19 13 +18266,15 12 39 36 16 17 11 7 8 +5037,5 6 9 36 61 16 17 10 7 4 +26828,1 6 88 89 89 54 7 8 +22520,5 6 18 12 34 36 37 17 37 35 7 4 +10775,1 6 55 34 47 36 37 11 8 +1146,5 6 53 31 47 48 32 58 54 7 8 +6413,1 6 12 34 35 33 13 +1145,5 6 53 31 47 48 32 58 54 7 4 +1659,1 12 11 56 7 8 +1658,1 12 11 56 7 4 +16343,15 57 12 16 36 16 17 37 35 7 8 +10092,1 6 64 61 62 17 37 48 50 7 8 +6808,15 86 87 13 +22769,5 6 55 12 96 36 16 17 19 58 11 8 +21268,15 9 61 62 32 52 7 8 +15390,1 12 31 9 42 43 17 63 7 4 +13435,1 6 18 12 16 42 16 36 16 17 19 13 +21269,15 9 61 62 32 52 7 4 +22456,1 6 64 61 62 17 37 48 50 7 4 +7571,15 57 12 11 58 7 8 +21289,15 31 36 37 17 37 32 7 4 +3550,1 6 57 57 65 66 13 +16942,1 6 29 31 47 61 62 10 7 4 +2157,15 96 36 37 38 37 52 7 8 +10785,5 6 53 12 16 61 16 36 37 38 17 62 10 7 8 +21288,15 31 36 37 17 37 32 7 8 +5393,15 9 36 37 17 11 13 +9613,1 6 64 61 62 37 35 93 7 8 +5392,15 9 36 37 17 11 8 +15120,1 6 64 61 62 37 35 93 7 4 +9120,15 55 12 88 55 56 56 89 11 8 +14331,15 51 107 36 37 17 10 54 7 4 +7572,15 57 12 11 58 7 4 +14330,15 51 107 36 37 17 10 54 7 8 +274,15 9 16 17 62 10 7 4 +15936,1 6 84 18 12 31 32 7 8 +12496,1 6 53 31 42 43 17 3 4 +15937,1 6 84 18 12 31 32 7 4 +148,5 6 9 61 62 52 7 4 +3872,1 6 84 9 16 17 10 7 8 +13377,1 6 53 31 42 43 17 3 8 +275,15 9 16 17 62 10 7 8 +1090,5 6 9 61 62 52 7 8 +3871,1 6 84 9 16 17 10 7 4 +26815,15 12 11 14 54 85 54 7 4 +16941,1 6 29 31 47 61 62 10 7 8 +26814,15 12 11 14 54 85 54 7 8 +2158,15 96 36 37 38 37 52 7 4 +17211,5 6 53 12 16 61 16 36 37 38 17 62 10 7 4 +19619,15 34 36 37 17 17 11 8 +9587,15 96 16 36 16 17 19 13 +25880,1 6 67 42 43 17 37 48 72 11 8 +6238,95 16 36 37 38 17 37 108 35 7 8 +16257,1 6 64 61 16 17 10 54 7 8 +6237,95 16 36 37 38 17 37 108 35 7 4 +22849,1 6 55 9 16 17 10 93 7 8 +12360,1 6 55 9 16 17 10 93 7 4 +9029,1 6 86 9 16 17 91 7 8 +10681,1 6 65 88 9 16 17 11 8 +24361,5 6 18 12 42 16 17 43 32 7 8 +15355,1 6 65 88 9 16 17 11 13 +6750,5 6 18 12 42 16 17 43 32 7 4 +2143,1 12 11 56 11 8 +16258,1 6 64 61 16 17 10 54 7 4 +25779,5 6 53 67 47 36 37 17 37 35 54 7 4 +10380,1 6 36 37 17 19 58 7 8 +26430,15 9 16 61 16 17 11 7 4 +22957,15 96 16 36 61 16 17 11 8 +22958,15 96 16 36 61 16 17 11 13 +17940,70 36 16 17 37 35 11 54 7 4 +22044,1 6 26 88 89 56 7 4 +2466,5 6 88 89 23 7 8 +9030,1 6 86 9 16 17 91 7 4 +18436,1 6 26 88 89 56 7 8 +18731,5 6 53 67 47 36 37 17 37 35 54 7 8 +2465,5 6 88 89 23 7 4 +5870,5 6 55 53 49 50 13 +11407,1 6 53 18 12 16 17 37 48 35 54 7 8 +22761,15 12 109 110 58 11 8 +21745,1 6 12 34 35 27 28 +21301,5 6 12 57 9 16 17 37 35 7 4 +21300,5 6 12 57 9 16 17 37 35 7 8 +18948,1 6 64 61 62 37 54 7 8 +23367,1 6 53 18 12 16 17 37 48 35 54 7 4 +10379,1 6 36 37 17 19 58 7 4 +18949,1 6 64 61 62 37 54 7 4 +1831,15 55 65 66 13 +2106,15 12 11 30 7 4 +11515,1 6 18 12 16 17 37 108 50 7 8 +4666,5 6 88 51 61 62 63 7 8 +2387,1 6 18 12 16 17 37 108 50 7 4 +2021,5 6 34 35 58 7 8 +26363,5 6 51 47 42 43 17 10 7 4 +26711,5 6 53 12 39 36 61 16 17 62 10 7 8 +2020,5 6 34 35 58 7 4 +26362,5 6 51 47 42 43 17 10 7 8 +2107,15 12 11 30 7 8 +20284,15 51 36 37 17 37 72 58 85 7 4 +25278,5 6 12 16 36 16 17 37 35 11 8 +10716,15 57 58 58 58 13 +23336,1 6 29 51 36 37 17 10 30 7 4 +12737,1 6 29 51 36 37 17 10 30 7 8 +20216,1 6 55 67 42 43 17 10 7 8 +196,5 6 12 11 13 +21972,1 6 26 12 65 9 16 17 37 52 33 13 +21156,5 6 88 12 16 36 16 17 19 13 +26605,1 6 55 67 42 43 17 10 7 4 +26045,5 6 53 34 36 37 17 63 93 7 4 +15835,5 6 76 16 42 16 17 19 13 +3981,5 6 9 10 56 89 85 7 4 +16840,15 96 16 36 16 17 37 50 7 8 +4826,1 6 71 72 89 13 +6747,5 6 18 12 16 17 43 32 7 8 +16839,15 96 16 36 16 17 37 50 7 4 +2253,1 6 86 87 7 8 +6658,5 6 65 57 9 16 17 37 48 52 7 8 +10602,5 6 18 12 16 17 43 32 7 4 +21460,1 6 57 92 71 72 13 +18033,97 16 17 17 37 35 7 8 +18032,97 16 17 17 37 35 7 4 +2254,1 6 86 87 7 4 +2666,5 6 9 10 56 89 85 7 8 +6659,5 6 65 57 9 16 17 37 48 52 7 4 +13503,5 6 76 16 36 16 61 16 17 11 8 +26554,1 6 53 57 9 61 16 61 16 17 19 13 +18230,1 6 96 16 36 16 17 19 89 7 4 +23512,15 96 16 17 43 50 7 8 +9259,15 53 34 107 108 108 35 54 7 8 +23513,15 96 16 17 43 50 7 4 +9008,15 12 16 21 77 78 22 8 +17972,1 6 9 16 36 16 17 19 58 7 4 +9258,15 53 34 107 108 108 35 54 7 4 +13605,15 55 88 55 56 56 7 8 +13356,15 57 9 36 16 17 11 8 +936,5 6 84 64 16 17 74 85 7 4 +19460,1 6 53 9 10 27 54 7 8 +14432,5 6 84 64 16 17 74 85 7 8 +24557,5 6 86 9 16 17 37 48 52 7 8 +24436,1 6 53 9 10 27 54 7 4 +13604,15 55 88 55 56 56 7 4 +13357,15 57 9 36 16 17 11 13 +22678,1 6 65 9 16 17 100 7 4 +16128,1 6 53 90 16 17 10 7 8 +1990,1 6 65 9 16 17 100 7 8 +16129,1 6 53 90 16 17 10 7 4 +2313,15 9 36 37 17 19 13 +10932,15 9 16 17 37 35 11 8 +5165,15 53 86 34 35 13 +11743,5 6 55 9 61 62 52 7 4 +14573,1 6 57 55 71 36 37 11 8 +8020,1 6 53 18 12 16 17 10 54 54 7 8 +10939,1 6 88 9 16 61 16 36 16 17 19 7 4 +3038,1 6 36 37 94 +9170,15 55 67 61 62 17 63 7 8 +5295,1 6 53 31 42 43 17 11 8 +6296,5 6 9 36 16 17 63 7 8 +12913,5 6 53 26 55 71 72 13 +20874,15 12 16 36 16 42 16 17 37 50 7 4 +17543,1 6 26 65 66 27 7 4 +15478,15 12 16 36 16 42 16 17 37 50 7 8 +10938,1 6 88 9 16 61 16 36 16 17 19 7 8 +9169,15 55 67 61 62 17 63 7 4 +4158,15 119 61 16 17 11 8 +7676,1 6 9 10 48 7 8 +11771,5 6 12 16 36 16 17 37 35 7 4 +24742,5 6 49 50 54 54 7 8 +4159,15 119 61 16 17 11 13 +24741,5 6 49 50 54 54 7 4 +13660,5 6 53 31 47 36 37 17 10 7 8 +21905,1 6 51 47 48 50 56 89 7 8 +11720,1 6 9 10 48 7 4 +26469,5 6 53 31 47 36 37 17 10 7 4 +767,5 6 88 57 58 66 13 +2958,1 6 53 18 12 16 17 10 54 54 7 4 +9938,1 6 84 51 36 37 17 10 85 54 7 8 +17568,15 49 47 48 48 52 7 4 +14025,5 6 55 9 16 36 16 17 37 52 7 4 +1915,15 55 53 88 89 13 +17569,15 49 47 48 48 52 7 8 +2295,5 6 64 61 62 37 35 87 7 8 +19802,1 6 88 73 36 16 42 16 17 37 48 35 7 4 +2296,5 6 64 61 62 37 35 87 7 4 +25028,1 6 84 51 36 37 17 10 85 54 7 4 +19022,1 6 64 36 16 117 118 35 7 4 +22213,5 6 12 12 36 37 38 37 72 7 4 +20139,15 9 36 16 17 37 108 48 72 54 7 8 +19801,1 6 88 73 36 16 42 16 17 37 48 35 7 8 +3106,15 44 9 36 16 17 19 7 8 +19023,1 6 64 36 16 117 118 35 7 8 +22212,5 6 12 12 36 37 38 37 72 7 8 +25754,15 73 16 39 36 16 61 16 17 19 13 +9234,1 6 88 71 36 37 11 13 +23357,15 9 36 16 17 37 108 48 72 54 7 4 +21162,15 57 53 31 47 36 37 17 10 7 4 +3105,15 44 9 36 16 17 19 7 4 +4828,1 6 88 71 36 37 11 8 +16964,5 6 64 16 42 16 17 11 7 8 +6297,5 6 9 36 16 17 63 7 4 +4174,5 6 55 9 61 62 52 7 8 +1687,1 6 12 12 16 21 77 78 22 79 4 +2693,5 6 88 51 61 62 63 7 4 +21352,15 88 67 36 37 11 13 +7150,5 6 55 53 88 89 54 54 54 7 4 +7974,5 6 64 16 42 16 17 11 7 4 +21351,15 88 67 36 37 11 8 +26227,5 6 18 12 16 17 37 108 35 87 7 8 +20368,15 34 36 37 17 10 30 7 4 +24881,1 6 26 12 65 9 16 17 37 52 7 4 +7073,5 6 86 9 16 17 37 108 32 7 4 +19717,1 6 71 36 37 17 10 54 7 4 +11095,5 6 88 57 57 65 66 13 +13367,1 6 53 53 34 35 7 4 +17825,5 6 57 92 51 36 37 17 10 93 58 7 8 +17824,5 6 57 92 51 36 37 17 10 93 58 7 4 +22095,15 55 53 53 57 58 54 54 7 4 +20369,15 34 36 37 17 10 30 7 8 +25216,5 6 55 53 9 61 16 61 16 17 19 13 +9261,5 6 53 90 16 17 37 52 54 7 8 +21135,1 6 53 53 34 35 7 8 +10722,1 6 26 12 65 9 16 17 37 52 7 8 +20773,1 6 84 12 16 17 11 85 7 4 +20964,5 6 34 35 56 11 8 +4448,5 6 53 90 16 17 37 52 54 7 4 +3020,5 6 57 58 89 89 7 8 +3016,5 6 57 58 89 89 7 4 +18314,5 6 57 92 12 16 36 37 38 11 13 +15605,5 6 57 92 12 16 36 37 38 11 8 +6387,1 6 53 51 47 36 37 17 10 7 4 +16732,1 6 55 53 18 9 16 17 10 7 8 +23931,5 6 55 53 55 56 58 54 7 8 +16729,1 6 55 53 18 9 16 17 10 7 4 +11040,5 6 113 61 62 17 37 32 54 7 8 +21968,15 44 51 52 52 7 4 +23183,15 53 53 16 16 17 62 10 7 8 +11041,5 6 113 61 62 17 37 32 54 7 4 +21967,15 44 51 52 52 7 8 +18300,1 6 90 16 36 16 61 16 17 37 35 7 4 +17879,1 6 31 47 48 50 54 54 7 4 +9957,1 6 84 57 58 87 7 4 +18154,15 53 57 58 54 54 7 8 +21178,1 6 36 37 17 63 54 7 8 +9956,1 6 84 57 58 87 7 8 +18153,15 53 57 58 54 54 7 4 +12886,70 36 16 17 37 50 7 8 +5051,1 2 16 17 37 50 7 4 +17878,1 6 31 47 48 50 54 54 7 8 +12885,70 36 16 17 37 50 7 4 +3095,1 2 16 17 37 50 7 8 +13810,1 6 64 16 61 16 17 11 8 +6919,1 6 9 16 17 43 7 4 +3256,1 6 9 16 17 43 7 8 +3058,1 6 53 55 90 16 61 16 17 37 50 7 8 +21115,1 6 64 16 61 16 17 11 13 +22810,15 57 9 16 36 37 38 37 50 7 4 +12868,15 55 57 53 12 16 39 36 16 17 10 7 4 +19277,1 6 55 53 12 36 37 38 37 48 35 54 7 4 +5179,1 6 53 34 42 43 17 10 54 54 7 4 +12867,15 55 57 53 12 16 39 36 16 17 10 7 8 +14753,1 6 55 53 12 36 37 38 37 48 35 54 7 8 +5178,1 6 53 34 42 43 17 10 54 54 7 8 +22662,5 6 29 12 16 61 16 17 11 8 +9953,15 71 47 48 52 58 85 7 8 +13075,5 6 84 9 10 11 7 8 +24045,1 6 12 36 37 38 37 48 35 7 8 +9954,15 71 47 48 52 58 85 7 4 +6549,1 6 57 53 9 10 54 7 8 +24046,1 6 12 36 37 38 37 48 35 7 4 +1295,5 6 34 35 56 7 8 +4661,1 6 57 53 9 10 54 7 4 +1281,5 6 34 35 56 7 4 +16461,5 6 84 9 10 11 7 4 +4603,5 6 64 61 62 17 10 85 54 7 8 +4602,5 6 64 61 62 17 10 85 54 7 4 +5550,1 6 113 61 62 17 91 54 7 8 +16314,1 6 12 88 9 16 36 37 38 37 52 7 4 +5033,5 6 53 49 36 37 10 7 4 +16313,1 6 12 88 9 16 36 37 38 37 52 7 8 +5032,5 6 53 49 36 37 10 7 8 +6669,1 6 53 31 36 37 17 19 7 4 +22811,15 57 9 16 36 37 38 37 50 7 8 +1638,1 6 9 61 62 72 7 8 +26795,5 6 88 57 58 58 13 +6670,1 6 53 31 36 37 17 19 7 8 +400,1 6 9 61 62 72 7 4 +915,15 65 9 16 17 10 7 4 +3807,5 6 55 9 16 42 16 17 11 8 +17074,1 6 71 114 115 52 89 7 4 +11702,15 57 53 9 16 17 63 7 4 +916,15 65 9 16 17 10 7 8 +26742,15 12 36 16 17 37 50 54 7 4 +17073,1 6 71 114 115 52 89 7 8 +10921,15 9 36 16 61 16 17 19 7 4 +13214,5 6 88 9 16 17 43 72 11 8 +21394,1 6 113 61 62 17 91 54 7 4 +15908,15 9 36 16 61 16 17 19 7 8 +24354,1 6 9 36 16 17 11 8 +5463,5 6 57 58 56 89 7 4 +20673,1 6 9 16 36 37 38 17 37 52 85 54 7 8 +5464,5 6 57 58 56 89 7 8 +13398,5 6 53 54 17 56 7 4 +13069,1 6 31 42 43 17 37 48 32 11 7 4 +17036,5 6 31 47 36 37 11 13 +2869,1 12 9 16 42 16 17 10 7 4 +24589,5 6 53 18 9 16 17 43 32 54 7 4 +9202,5 6 31 47 36 37 11 8 +20674,1 6 9 16 36 37 38 17 37 52 85 54 7 4 +2868,1 12 9 16 42 16 17 10 7 8 +26741,15 12 36 16 17 37 50 54 7 8 +11701,15 57 53 9 16 17 63 7 8 +17421,1 6 49 50 58 11 8 +21406,1 6 55 88 57 9 36 37 38 37 68 13 +26069,1 6 88 49 50 7 4 +3091,70 36 16 61 16 17 11 13 +3090,70 36 16 61 16 17 11 8 +23712,15 55 9 16 42 16 61 16 17 11 8 +17932,1 6 55 88 9 16 17 75 7 4 +9658,5 6 57 29 30 7 8 +16995,5 6 67 68 66 56 7 4 +14629,1 6 9 61 62 68 54 7 8 +19473,1 12 16 36 16 17 37 115 50 7 8 +9228,1 6 67 47 48 52 7 8 +9664,5 6 57 29 30 7 4 +16994,5 6 67 68 66 56 7 8 +16500,1 12 16 36 16 17 37 115 50 7 4 +16615,1 6 9 61 62 68 54 7 4 +20486,5 6 49 50 58 66 7 4 +5080,15 57 49 36 37 10 7 4 +20485,5 6 49 50 58 66 7 8 +5079,15 57 49 36 37 10 7 8 +7013,1 6 53 18 12 16 17 118 17 10 7 8 +23952,15 57 34 35 54 54 7 8 +22575,15 42 43 17 17 10 7 4 +25148,1 6 57 88 88 9 16 17 10 7 4 +7014,1 6 53 18 12 16 17 118 17 10 7 4 +23951,15 57 34 35 54 54 7 4 +22574,15 42 43 17 17 10 7 8 +13567,15 34 36 16 61 16 17 98 +23552,5 6 53 9 16 17 17 10 54 7 4 +11617,5 6 53 9 16 17 17 10 54 7 8 +12282,15 34 114 36 37 17 10 7 8 +16571,5 6 57 92 31 32 93 58 7 4 +16827,1 6 51 16 36 37 17 11 13 +14705,5 6 55 55 53 9 10 54 7 4 +16826,1 6 51 16 36 37 17 11 8 +22022,5 6 57 92 31 32 93 58 7 8 +631,16 42 16 17 11 7 8 +16159,1 6 64 92 9 16 17 10 7 4 +23130,5 6 86 53 9 16 61 16 17 62 10 7 8 +10848,5 6 88 9 16 17 43 72 7 8 +8167,70 16 36 37 38 10 7 4 +12281,15 34 114 36 37 17 10 7 4 +1547,5 6 88 9 16 17 43 72 7 4 +7326,5 6 92 31 32 93 7 8 +8168,70 16 36 37 38 10 7 8 +22962,5 6 71 47 48 35 7 8 +8348,70 16 39 36 16 17 11 7 8 +22961,5 6 71 47 48 35 7 4 +25685,5 6 9 16 17 43 32 10 7 4 +16401,5 6 51 52 125 13 +18024,1 6 73 16 17 98 +14680,5 6 55 53 57 9 16 61 16 17 10 7 4 +18023,1 6 73 16 17 69 +16378,5 6 12 65 51 52 33 13 +4265,1 6 64 92 9 16 17 10 7 8 +14831,1 6 12 16 17 10 93 7 4 +2944,1 6 64 16 61 16 17 19 13 +14832,1 6 12 16 17 10 93 7 8 +8205,1 6 49 50 58 7 8 +1581,5 6 9 10 27 89 7 4 +25793,5 6 84 88 55 12 16 21 77 78 82 83 8 +5076,5 6 88 57 58 56 13 +11391,1 6 49 50 58 7 4 +8579,15 55 53 34 47 48 48 35 54 54 7 8 +8516,15 9 16 39 36 16 17 10 7 4 +24003,5 6 9 10 27 89 7 8 +3368,15 53 12 11 7 8 +3369,15 53 12 11 7 4 +8967,15 55 53 34 47 48 48 35 54 54 7 4 +8515,15 9 16 39 36 16 17 10 7 8 +9847,1 6 64 61 62 17 37 108 35 7 4 +26186,1 6 64 61 62 17 37 108 35 7 8 +12148,1 6 31 42 43 17 37 48 68 54 7 4 +12149,1 6 31 42 43 17 37 48 68 54 7 8 +15123,5 6 92 31 32 93 7 4 +13885,1 6 88 9 16 36 37 38 37 35 7 4 +14229,15 96 16 36 16 17 11 13 +8757,15 9 16 36 37 38 17 106 7 4 +14228,15 96 16 36 16 17 11 8 +8758,15 9 16 36 37 38 17 106 7 8 +20436,1 6 88 9 16 36 37 38 37 35 7 8 +7879,15 49 42 43 17 106 7 4 +5916,5 6 67 36 37 69 +7880,15 49 42 43 17 106 7 8 +16308,5 6 12 88 57 58 58 89 13 +20807,5 6 86 88 89 87 7 4 +2560,1 6 18 12 16 17 37 32 87 7 8 +13279,15 9 61 62 10 54 7 4 +2561,1 6 18 12 16 17 37 32 87 7 4 +26259,5 6 88 9 36 16 17 37 10 7 4 +26260,5 6 88 9 36 16 17 37 10 7 8 +20643,15 9 16 36 37 38 69 +13278,15 9 61 62 10 54 7 8 +11033,5 6 67 36 37 94 +2728,1 6 57 92 34 35 7 8 +1645,15 57 9 61 62 17 10 7 4 +15775,1 6 12 36 16 61 16 21 77 78 22 79 4 +118,1 6 53 34 35 54 7 4 +10979,1 6 57 92 34 35 7 4 +1646,15 57 9 61 62 17 10 7 8 +1177,1 6 53 34 35 54 7 8 +23756,5 6 53 55 12 11 56 54 7 4 +504,15 9 61 62 32 54 7 8 +1219,1 6 53 90 16 17 37 50 54 7 4 +505,15 9 61 62 32 54 7 4 +15777,5 6 86 88 89 87 7 8 +1218,1 6 53 90 16 17 37 50 54 7 8 +25973,15 109 55 55 57 96 16 21 77 78 22 79 4 +23695,5 6 84 57 58 66 58 85 7 8 +24641,1 6 12 16 17 37 48 35 10 7 8 +26356,5 6 76 31 32 13 +13611,5 6 86 9 16 17 120 7 8 +11681,15 34 47 36 16 17 63 7 8 +13327,15 119 16 17 63 7 4 +23694,5 6 84 57 58 66 58 85 7 4 +24640,1 6 12 16 17 37 48 35 10 7 4 +13326,15 119 16 17 63 7 8 +4401,1 6 65 57 58 66 7 8 +5521,1 6 71 36 37 17 62 10 7 4 +10111,5 6 96 16 36 37 38 17 3 4 +24986,5 6 55 49 36 37 69 +15921,1 6 71 36 37 17 62 10 7 8 +22830,1 6 65 57 58 66 7 4 +2512,5 6 88 96 39 36 16 21 77 78 22 8 +8985,5 6 67 68 54 7 8 +8986,5 6 67 68 54 7 4 +26251,5 6 18 12 16 17 37 10 7 8 +15100,1 6 53 57 86 87 13 +17085,5 6 65 31 32 13 +14913,5 6 96 16 36 37 38 17 3 8 +7129,5 6 84 55 56 13 +3822,1 6 53 12 51 52 13 +19930,5 6 88 67 68 13 +17391,1 6 92 34 36 37 17 63 30 7 8 +11908,15 12 36 37 38 37 72 7 4 +3036,5 6 12 55 67 61 62 63 7 4 +22906,5 6 12 55 67 61 62 63 7 8 +22926,5 6 41 88 12 26 9 16 17 10 7 4 +2751,5 6 55 67 68 13 +11907,15 12 36 37 38 37 72 7 8 +13788,5 6 64 61 62 17 +22470,15 88 12 57 9 16 61 16 17 11 13 +8278,25 26 27 89 11 8 +11047,1 6 49 47 36 37 10 7 8 +21063,15 67 47 42 43 17 10 7 4 +26250,5 6 18 12 16 17 37 10 7 4 +11046,1 6 49 47 36 37 10 7 4 +3859,1 6 109 110 85 54 7 4 +21062,15 67 47 42 43 17 10 7 8 +12254,1 6 12 65 9 16 42 16 17 11 13 +3860,1 6 109 110 85 54 7 8 +22469,15 88 12 57 9 16 61 16 17 11 8 +12253,1 6 12 65 9 16 42 16 17 11 8 +91,1 45 46 4 +26641,15 49 36 37 17 43 52 7 8 +26642,15 49 36 37 17 43 52 7 4 +21503,5 6 96 16 17 10 7 8 +23667,1 2 16 61 16 17 19 13 +581,1 6 64 36 37 38 37 48 72 54 7 8 +1280,5 6 53 34 36 37 69 +18475,5 6 9 61 62 13 +585,1 6 64 36 37 38 37 48 72 54 7 4 +26013,97 16 17 37 11 7 4 +26141,5 6 65 88 55 9 16 17 118 17 10 7 8 +3614,1 6 18 12 16 17 37 48 68 7 4 +11043,5 6 47 48 50 7 4 +22066,1 6 53 9 9 16 17 17 10 7 4 +23082,15 9 9 9 9 16 17 62 10 7 4 +3615,1 6 18 12 16 17 37 48 68 7 8 +16323,1 6 53 9 9 16 17 17 10 7 8 +23081,15 9 9 9 9 16 17 62 10 7 8 +5143,1 6 53 88 89 13 +8982,5 6 53 34 36 37 94 +12158,5 6 65 9 16 17 100 7 4 +15657,1 6 51 107 108 108 50 7 8 +5062,5 6 53 12 16 36 37 38 37 72 54 7 4 +11044,5 6 47 48 50 7 8 +18172,5 6 65 9 16 17 100 7 8 +18658,1 6 51 107 108 108 50 7 4 +19549,1 6 12 65 9 16 17 37 68 11 8 +5061,5 6 53 12 16 36 37 38 37 72 54 7 8 +14400,5 6 12 16 39 36 16 36 37 38 17 11 13 +11268,15 9 36 16 36 39 36 16 17 19 7 4 +14399,5 6 12 16 39 36 16 36 37 38 17 11 8 +11269,15 9 36 16 36 39 36 16 17 19 7 8 +11347,1 6 12 49 36 37 17 10 93 7 4 +6338,15 34 107 36 37 38 37 52 7 4 +16270,15 57 55 49 47 48 68 7 4 +2156,15 34 107 36 37 38 37 52 7 8 +5816,5 6 88 55 9 16 17 11 8 +7841,15 34 107 36 37 63 54 7 4 +16269,15 57 55 49 47 48 68 7 8 +16587,15 67 47 36 37 17 19 58 7 8 +7840,15 34 107 36 37 63 54 7 8 +16588,15 67 47 36 37 17 19 58 7 4 +23799,15 71 114 115 52 7 4 +23800,15 71 114 115 52 7 8 +6945,5 6 86 9 16 17 120 7 4 +8805,1 6 55 88 57 9 36 37 38 37 52 13 +18469,15 44 34 36 37 17 62 10 7 8 +13119,1 6 88 57 58 58 7 4 +8939,1 6 57 55 86 87 7 8 +18468,15 44 34 36 37 17 62 10 7 4 +9472,5 6 53 9 10 58 89 54 54 7 8 +9335,1 6 88 57 58 58 7 8 +8938,1 6 57 55 86 87 7 4 +21028,1 12 39 36 16 17 37 32 7 4 +11460,5 6 53 9 10 58 89 54 54 7 4 +2290,15 34 36 37 69 +8800,5 6 64 36 16 17 37 48 35 87 7 4 +13345,5 6 9 16 39 36 16 17 62 10 7 8 +8799,5 6 64 36 16 17 37 48 35 87 7 8 +4944,70 16 17 63 7 4 +4943,70 16 17 63 7 8 +10034,15 55 88 57 12 39 36 16 17 19 13 +23547,15 57 53 53 9 16 17 63 7 8 +19704,15 57 53 53 9 16 17 63 7 4 +6824,15 88 65 55 9 16 17 10 7 8 +5917,15 67 36 37 69 +16141,15 34 36 37 94 +16205,1 6 53 65 57 34 35 7 8 +16341,5 6 64 36 37 38 17 10 54 54 7 8 +8564,1 6 88 34 36 37 69 +9056,1 6 53 65 57 34 35 7 4 +3452,1 6 12 16 21 77 101 102 103 +8851,1 6 53 67 47 36 37 10 7 4 +12258,1 6 53 67 47 36 37 10 7 8 +4677,5 6 64 36 37 38 17 10 54 54 7 4 +18377,1 6 18 12 16 17 37 11 8 +25001,1 6 65 57 9 16 17 118 17 10 7 8 +21542,1 6 9 61 62 32 10 7 8 +26578,1 6 126 51 47 48 68 7 8 +5041,5 6 49 50 11 8 +6823,15 88 65 55 9 16 17 10 7 4 +26577,1 6 126 51 47 48 68 7 4 +12594,5 6 26 12 36 37 38 11 8 +15042,5 6 92 55 9 16 21 77 78 22 8 +17966,5 6 9 16 39 36 16 17 37 35 7 8 +4314,25 26 27 11 89 23 7 8 +24178,5 6 9 16 36 16 16 17 17 11 8 +6873,5 6 9 16 39 36 16 17 37 35 7 4 +13715,1 6 88 88 57 9 16 42 16 17 37 35 7 4 +25429,5 6 9 16 36 16 16 17 17 11 13 +26614,1 6 88 88 57 9 16 42 16 17 37 35 7 8 +2121,5 6 29 12 16 61 16 17 19 13 +9119,15 55 12 88 55 56 56 89 13 +6281,25 26 27 11 89 23 7 4 +20887,5 6 12 65 88 12 71 72 13 +12595,5 6 26 12 36 37 38 11 13 +8839,15 67 47 107 108 108 48 68 54 7 8 +4362,15 71 114 114 61 62 63 7 8 +15988,15 49 36 39 36 16 17 17 10 7 8 +4361,15 71 114 114 61 62 63 7 4 +18555,1 6 57 49 36 37 17 10 54 7 4 +20904,5 6 88 88 9 16 117 118 72 11 8 +6647,1 12 16 36 37 38 37 48 72 7 8 +22796,1 6 71 36 37 17 37 35 7 4 +15987,15 49 36 39 36 16 17 17 10 7 4 +6643,1 12 16 36 37 38 37 48 72 7 4 +21356,1 6 71 36 37 17 37 35 7 8 +18898,1 6 92 31 47 42 43 17 37 35 93 7 4 +17685,1 6 31 32 93 58 7 8 +26648,1 6 31 32 93 58 7 4 +9376,5 6 57 12 16 17 10 54 7 4 +9854,5 6 53 53 12 11 54 7 4 +16288,15 57 55 71 47 48 52 7 8 +21618,5 6 67 67 36 37 11 8 +17424,5 6 12 57 49 36 37 38 11 8 +16287,15 57 55 71 47 48 52 7 4 +11055,1 6 51 47 61 62 112 7 8 +20304,15 67 67 36 37 17 62 10 7 4 +12551,5 6 71 42 43 17 11 8 +19917,1 45 21 22 17 43 75 7 4 +14286,1 6 57 53 9 10 56 56 54 7 8 +1579,25 26 27 89 7 4 +20305,15 67 67 36 37 17 62 10 7 8 +4550,95 16 16 42 16 17 19 13 +20828,1 6 57 12 36 37 38 17 11 8 +12506,5 6 55 53 12 16 39 36 16 17 37 32 7 4 +17046,1 6 31 47 36 37 17 37 35 7 4 +1559,15 57 58 58 89 13 +19699,5 6 57 53 53 9 10 13 +19238,15 34 36 37 17 +25892,1 6 64 39 36 36 61 16 17 37 72 7 8 +1580,25 26 27 89 7 8 +13415,1 6 31 47 36 37 17 37 35 7 8 +15876,1 6 9 16 17 43 11 8 +10053,1 6 49 50 56 11 7 8 +10835,5 6 53 12 36 61 16 17 11 8 +107,5 6 49 50 7 4 +9377,5 6 57 12 16 17 10 54 7 8 +106,5 6 49 50 7 8 +24686,1 6 99 100 17 10 7 8 +7719,1 6 64 36 16 17 63 7 8 +3806,15 12 11 27 58 13 +17032,1 6 64 36 16 17 63 7 4 +11566,1 6 96 16 36 16 17 37 35 87 56 7 4 +10850,15 73 16 42 16 17 11 8 +26046,15 34 36 37 17 63 93 7 4 +18645,1 6 71 72 66 58 7 4 +11567,1 6 96 16 36 16 17 37 35 87 56 7 8 +14817,5 6 92 9 10 87 93 7 8 +10851,15 73 16 42 16 17 11 13 +14117,1 6 76 16 36 16 17 63 7 8 +26047,15 34 36 37 17 63 93 7 8 +14118,1 6 76 16 36 16 17 63 7 4 +22096,15 55 53 53 57 58 58 54 54 7 4 +3220,1 6 53 12 16 61 16 21 77 78 22 79 4 +11092,1 6 71 72 66 58 7 8 +21053,5 6 92 9 10 87 93 7 4 +11678,1 6 84 57 71 36 37 17 10 85 7 4 +18547,1 12 9 16 42 16 17 11 7 8 +22417,1 12 9 16 42 16 17 11 7 4 +23309,1 6 41 88 89 58 13 +22099,15 55 53 53 57 58 58 54 54 7 8 +22565,5 6 12 88 89 66 89 11 8 +21295,1 6 12 88 55 9 16 17 10 7 8 +21294,1 6 12 88 55 9 16 17 10 7 4 +10167,5 6 12 26 65 66 27 11 8 +12976,1 6 64 16 36 37 38 37 108 35 54 7 8 +9823,1 12 11 56 89 13 +23289,5 6 53 71 114 115 68 54 7 4 +4125,5 6 12 57 58 11 8 +20201,5 6 53 12 16 36 16 17 37 68 7 4 +17380,1 6 64 16 36 37 38 37 108 35 54 7 4 +14149,1 6 64 53 18 12 42 16 17 62 10 7 8 +21827,5 6 53 71 114 115 68 54 7 8 +16123,5 6 51 109 110 7 8 +11336,1 6 12 26 57 9 16 61 16 17 11 8 +8416,15 12 11 66 58 7 4 +14132,5 6 88 88 9 16 61 16 17 19 7 4 +16124,5 6 51 109 110 7 4 +19330,5 6 64 61 62 17 37 35 11 85 54 7 8 +893,1 6 64 16 42 16 17 19 7 8 +8415,15 12 11 66 58 7 8 +18799,5 6 64 61 62 17 37 35 11 85 54 7 4 +12587,1 12 11 58 27 28 +894,1 6 64 16 42 16 17 19 7 4 +7206,1 6 26 9 16 17 11 13 +8315,5 6 49 61 62 75 7 8 +7205,1 6 26 9 16 17 11 8 +2227,5 6 49 61 62 75 7 4 +14941,1 6 84 9 10 66 27 89 58 85 7 8 +19383,15 53 57 58 54 7 8 +3777,1 6 64 61 62 17 37 32 54 54 7 4 +14938,1 6 84 9 10 66 27 89 58 85 7 4 +18315,5 6 55 90 16 17 11 8 +19382,15 53 57 58 54 7 4 +13169,15 12 11 89 27 7 8 +12904,5 6 53 34 35 27 28 +10024,15 12 11 89 27 7 4 +6157,1 6 64 53 9 10 13 +14914,1 6 96 36 16 17 37 35 30 7 8 +14150,1 6 64 53 18 12 42 16 17 62 10 7 4 +10270,15 88 71 47 48 52 7 8 +20629,1 6 90 16 17 106 7 4 +10271,15 88 71 47 48 52 7 4 +3778,1 6 64 61 62 17 37 32 54 54 7 8 +20630,1 6 90 16 17 106 7 8 +17112,1 6 53 57 49 50 54 7 8 +17111,1 6 53 57 49 50 54 7 4 +9863,15 88 89 66 11 8 +11488,1 45 21 22 17 37 48 52 58 7 4 +11489,1 45 21 22 17 37 48 52 58 7 8 +10375,1 6 57 53 31 32 54 7 8 +14173,5 6 92 9 10 10 93 7 4 +10352,1 6 57 53 31 32 54 7 4 +14172,5 6 92 9 10 10 93 7 8 +4201,1 6 57 12 16 61 16 61 16 17 62 10 7 8 +11396,1 6 76 61 62 10 54 7 8 +4200,1 6 57 12 16 61 16 61 16 17 62 10 7 4 +11397,1 6 76 61 62 10 54 7 4 +6198,1 12 16 61 16 17 62 68 7 8 +1188,5 6 9 16 17 43 35 54 7 8 +2765,1 6 55 9 16 17 37 48 72 56 89 7 8 +1187,5 6 9 16 17 43 35 54 7 4 +25316,5 6 65 31 36 37 11 8 +2764,1 6 55 9 16 17 37 48 72 56 89 7 4 +14932,25 26 27 89 58 85 7 4 +24478,1 6 31 47 48 72 54 54 7 4 +14933,25 26 27 89 58 85 7 8 +17399,5 6 29 86 36 37 17 37 7 4 +24479,1 6 31 47 48 72 54 54 7 8 +24089,5 6 67 36 37 63 7 4 +17522,5 6 67 36 37 63 7 8 +25365,1 6 12 31 47 48 35 11 8 +23392,1 6 57 92 90 16 61 16 17 10 7 4 +15743,15 12 16 39 36 16 61 16 36 37 38 17 62 10 7 4 +15744,15 12 16 39 36 16 61 16 36 37 38 17 62 10 7 8 +9218,1 12 36 16 17 37 48 52 7 8 +24749,5 6 29 9 36 37 38 17 10 7 4 +1946,5 6 84 51 47 48 48 50 85 54 7 8 +17038,1 6 64 53 31 32 7 4 +1947,5 6 84 51 47 48 48 50 85 54 7 4 +21663,5 6 88 57 58 27 28 +23404,1 12 16 16 17 11 8 +22285,5 6 9 16 17 43 68 54 7 4 +25323,1 6 53 18 12 11 14 54 54 7 8 +24445,15 55 88 55 56 58 7 8 +9465,1 6 53 18 12 11 14 54 54 7 4 +25988,15 34 107 36 37 38 37 108 35 7 8 +14766,5 6 51 52 85 54 7 4 +6144,1 12 36 16 17 37 48 52 7 4 +14767,5 6 51 52 85 54 7 8 +24750,5 6 29 9 36 37 38 17 10 7 8 +24444,15 55 88 55 56 58 7 4 +2014,1 6 76 16 17 10 54 7 4 +2990,15 55 57 96 36 16 17 19 58 11 56 7 8 +3795,15 9 36 37 38 17 37 68 7 8 +5939,1 6 88 90 16 17 91 7 8 +10864,1 6 76 16 17 10 54 7 8 +17296,15 53 41 65 9 16 17 11 7 8 +3796,15 9 36 37 38 17 37 68 7 4 +986,15 31 42 43 17 63 7 8 +25552,1 6 64 16 39 36 16 61 16 17 37 32 93 7 4 +825,15 88 89 66 7 4 +12570,15 73 16 17 10 7 4 +3682,15 88 89 66 7 8 +12569,15 73 16 17 10 7 8 +16550,5 6 9 61 62 32 93 58 7 8 +17532,1 6 64 16 17 17 11 8 +13271,5 6 55 96 16 21 77 78 22 79 4 +16553,5 6 9 61 62 32 93 58 7 4 +6009,1 6 65 57 58 13 +20080,5 6 51 52 56 66 7 8 +2319,15 57 88 57 58 58 89 13 +19535,1 6 86 87 89 13 +6709,1 6 55 9 61 62 17 10 7 4 +6898,15 12 16 17 43 68 7 4 +6897,15 12 16 17 43 68 7 8 +7464,15 88 57 9 16 36 16 17 37 50 7 8 +985,15 31 42 43 17 63 7 4 +7465,15 88 57 9 16 36 16 17 37 50 7 4 +25553,1 6 64 16 39 36 16 61 16 17 37 32 93 7 8 +6956,15 119 16 61 16 17 43 50 7 4 +11950,1 6 55 9 61 62 17 10 7 8 +18873,5 6 53 31 42 43 17 37 35 54 7 8 +16247,5 6 64 61 62 17 37 50 85 7 8 +6957,15 119 16 61 16 17 43 50 7 8 +26646,15 12 36 37 38 37 68 89 13 +8812,5 6 53 31 42 43 17 37 35 54 7 4 +24285,15 57 53 57 9 16 17 10 7 8 +14232,1 6 12 16 17 75 7 8 +22713,5 6 64 39 36 36 61 16 17 37 50 7 8 +18627,1 6 12 16 17 75 7 4 +4387,5 6 49 42 43 17 91 7 8 +6204,1 12 16 61 16 17 62 68 7 4 +19204,15 51 36 16 17 37 50 7 8 +2797,15 51 36 16 17 37 50 7 4 +26497,5 6 49 42 43 17 91 7 4 +19516,15 34 36 37 19 11 56 7 4 +6283,5 6 53 12 16 36 37 38 17 3 4 +22768,15 34 36 37 19 11 56 7 8 +9884,1 6 49 42 43 17 37 72 7 4 +19003,5 6 53 12 16 36 37 38 17 3 8 +5881,1 6 55 53 18 12 16 17 37 108 50 54 7 4 +22028,5 6 96 16 36 16 61 16 17 37 35 7 8 +7874,5 6 96 16 36 16 61 16 17 37 35 7 4 +23179,5 6 64 39 36 36 61 16 17 37 50 7 4 +21779,15 90 16 17 10 7 8 +340,15 9 16 39 36 16 42 16 17 37 35 7 4 +8320,1 6 64 36 16 17 37 35 7 4 +16332,5 6 55 12 57 9 16 17 19 7 4 +9214,5 6 12 36 16 17 10 7 4 +21780,15 90 16 17 10 7 4 +17031,1 6 64 36 16 17 37 35 7 8 +12037,70 16 36 16 61 16 17 19 89 7 8 +22283,15 57 55 71 61 62 75 7 4 +2061,5 6 51 52 89 13 +12036,70 16 36 16 61 16 17 19 89 7 4 +19908,5 6 64 61 62 17 37 52 54 85 7 8 +15553,5 6 65 57 58 11 7 4 +26253,1 6 57 9 36 16 17 37 10 7 8 +26624,5 6 65 57 58 11 7 8 +26074,5 6 88 26 51 36 37 17 11 8 +26254,1 6 57 9 36 16 17 37 10 7 4 +22282,15 57 55 71 61 62 75 7 8 +9213,5 6 12 36 16 17 10 7 8 +10513,5 6 84 65 9 16 17 10 85 7 8 +18603,5 6 84 65 9 16 17 10 85 7 4 +24430,1 6 9 16 36 16 42 16 17 37 35 7 8 +5975,5 6 9 61 62 50 11 8 +10978,1 6 49 47 47 36 16 17 19 13 +2963,15 53 53 16 17 11 8 +17234,1 6 55 53 55 56 89 54 7 8 +1608,15 34 36 37 17 19 7 8 +22399,1 6 9 16 61 62 17 62 10 7 4 +19909,5 6 64 61 62 17 37 52 54 85 7 4 +7329,1 6 92 31 36 37 69 +9568,5 6 84 55 56 85 54 7 4 +15910,5 6 84 55 56 85 54 7 8 +1609,15 34 36 37 17 19 7 4 +3350,15 57 9 16 36 16 17 10 7 4 +7901,15 12 16 36 37 38 17 11 56 7 8 +19868,5 6 53 12 61 36 16 17 19 13 +22305,5 6 12 57 58 7 4 +18176,5 6 9 39 36 16 36 37 38 17 37 35 7 8 +3351,15 57 9 16 36 16 17 10 7 8 +22306,5 6 12 57 58 7 8 +13162,5 6 64 61 62 17 37 52 11 54 7 4 +13712,1 6 84 57 71 36 37 17 10 85 7 8 +8365,1 6 71 72 89 27 7 4 +3832,5 6 64 61 62 17 37 52 11 54 7 8 +8352,1 6 71 72 89 27 7 8 +8650,5 6 18 12 16 17 37 35 87 7 4 +11695,5 6 18 12 16 17 37 35 87 7 8 +19762,1 6 55 53 55 56 56 54 7 4 +6838,1 6 55 9 16 17 37 72 7 4 +12803,1 6 53 36 37 37 35 87 54 7 4 +15456,15 44 31 117 16 17 19 13 +6837,1 6 55 9 16 17 37 72 7 8 +12802,1 6 53 36 37 37 35 87 54 7 8 +7104,5 6 84 53 54 13 +10631,1 6 12 39 36 16 17 19 13 +21466,15 71 47 48 68 93 58 7 4 +9134,5 6 57 53 34 35 13 +19325,1 6 57 9 16 17 37 72 56 7 8 +2631,1 6 53 34 107 36 37 63 7 8 +16616,1 6 53 34 107 36 37 63 7 4 +7798,5 6 34 36 37 38 19 13 +21465,15 71 47 48 68 93 58 7 8 +3464,1 6 64 16 117 118 52 7 4 +15291,1 6 55 12 16 61 16 17 11 8 +23417,5 6 84 51 36 37 17 63 7 4 +3463,1 6 64 16 117 118 52 7 8 +21929,5 6 67 36 37 10 54 7 8 +13860,5 6 55 9 61 62 50 7 4 +21925,5 6 86 12 16 36 37 38 19 +22930,5 6 67 36 37 10 54 7 4 +15292,1 6 55 12 16 61 16 17 11 13 +24906,5 6 55 9 61 62 50 7 8 +14717,1 6 105 16 36 37 38 37 35 54 7 8 +15305,5 6 84 51 36 37 17 63 7 8 +25668,1 6 9 61 62 32 54 85 54 7 8 +24434,5 6 53 54 58 11 7 8 +2226,5 6 9 61 62 50 7 4 +619,1 6 64 57 92 9 10 11 8 +1025,15 88 89 13 +2225,5 6 9 61 62 50 7 8 +5885,1 12 9 31 42 43 37 35 7 8 +14877,5 6 88 89 89 11 8 +7437,5 6 34 36 37 94 +16852,5 6 12 9 16 36 16 17 37 52 7 4 +3123,5 6 12 9 16 36 16 17 37 52 7 8 +3246,5 6 34 36 37 69 +6539,1 6 88 9 16 17 63 7 8 +883,1 6 88 9 16 17 63 7 4 +22795,5 6 55 9 16 36 16 17 37 50 7 4 +25070,1 6 49 47 36 37 17 37 52 7 4 +981,1 6 53 9 10 11 8 +15270,5 6 55 9 16 36 16 17 37 50 7 8 +17190,5 6 64 61 62 37 35 89 7 8 +21122,1 6 53 53 9 10 13 +17189,5 6 64 61 62 37 35 89 7 4 +26662,1 6 51 114 115 52 7 4 +9109,1 12 11 58 11 8 +18379,5 6 18 12 16 17 37 11 7 8 +24534,5 6 18 12 16 17 37 11 7 4 +2905,5 6 53 12 16 36 37 38 17 11 13 +11061,5 6 9 16 36 37 38 37 50 7 8 +13781,5 6 34 36 37 17 +2904,5 6 53 12 16 36 37 38 17 11 8 +19941,1 6 105 16 36 37 38 37 35 54 7 4 +7754,5 6 9 16 36 37 38 37 50 7 4 +8888,1 6 64 61 62 37 52 7 4 +14382,1 6 57 71 47 48 52 58 85 7 4 +20168,1 6 64 36 16 17 62 10 7 8 +19334,15 49 36 16 17 10 7 8 +20169,1 6 64 36 16 17 62 10 7 4 +4852,15 49 36 16 17 10 7 4 +10109,5 6 124 36 37 17 10 7 4 +15609,5 6 12 16 17 120 7 8 +7945,1 6 64 61 62 37 52 7 8 +10110,5 6 124 36 37 17 10 7 8 +15610,5 6 12 16 17 120 7 4 +18710,1 6 57 71 47 48 52 58 85 7 8 +6289,5 6 53 12 9 16 17 11 8 +2119,1 6 12 9 16 61 16 17 62 10 7 4 +7004,5 6 53 64 16 17 37 72 54 7 4 +13509,15 86 9 16 36 16 17 37 72 85 7 8 +2118,1 6 12 9 16 61 16 17 62 10 7 8 +7005,5 6 53 64 16 17 37 72 54 7 8 +13508,15 86 9 16 36 16 17 37 72 85 7 4 +13653,1 6 9 36 16 17 43 50 7 8 +7006,5 6 53 9 16 36 16 17 10 54 7 8 +13281,1 6 67 47 48 50 7 8 +7216,5 6 53 9 16 36 16 17 10 54 7 4 +8196,1 6 67 47 48 50 7 4 +14482,15 88 57 9 16 36 16 17 10 7 4 +308,1 6 53 9 10 7 8 +5516,5 6 64 61 62 17 17 91 7 4 +14481,15 88 57 9 16 36 16 17 10 7 8 +15919,5 6 64 61 62 17 17 91 7 8 +3011,5 6 88 89 89 7 8 +19561,1 6 57 67 47 36 37 11 8 +11119,1 6 88 57 58 56 89 13 +21854,15 88 89 11 58 7 8 +6440,5 6 88 89 89 7 4 +19419,15 88 89 11 58 7 4 +2007,1 6 53 9 10 7 4 +3747,1 6 49 47 36 37 17 59 +4089,1 6 88 89 89 56 7 8 +15452,5 6 53 18 12 16 61 16 17 118 17 11 8 +21809,5 6 64 16 39 36 16 42 16 17 37 35 7 8 +4090,1 6 88 89 89 56 7 4 +14050,5 6 12 16 17 10 54 7 4 +21808,5 6 64 16 39 36 16 42 16 17 37 35 7 4 +24853,5 6 53 18 12 16 61 16 17 118 17 11 13 +13806,15 55 55 57 53 12 39 36 16 17 63 7 4 +21110,5 6 12 16 17 10 54 7 8 +22368,5 6 53 12 11 54 54 7 8 +9737,1 6 12 39 36 16 17 11 8 +24347,5 6 34 42 43 11 8 +22367,5 6 53 12 11 54 54 7 4 +23575,1 6 49 47 36 37 19 13 +19562,1 6 57 67 47 36 37 11 13 +24252,1 6 53 12 16 17 10 54 54 7 8 +24875,5 6 53 49 42 43 17 10 7 4 +22555,1 6 12 49 50 11 8 +26512,70 36 16 17 75 7 8 +20717,1 6 64 61 62 17 37 48 52 7 8 +10528,5 6 88 57 58 11 8 +26513,70 36 16 17 75 7 4 +20718,1 6 64 61 62 17 37 48 52 7 4 +17382,1 6 53 18 12 16 17 37 108 48 68 13 +19120,5 6 57 12 11 7 8 +21757,5 6 12 26 34 36 37 17 37 108 35 7 4 +5318,5 6 51 47 48 72 7 8 +15662,5 6 57 12 11 7 4 +13805,15 55 55 57 53 12 39 36 16 17 63 7 8 +21758,5 6 12 26 34 36 37 17 37 108 35 7 8 +796,5 6 51 47 48 72 7 4 +5090,1 6 71 72 58 7 8 +8858,1 6 31 42 43 17 37 48 72 7 4 +5089,1 6 71 72 58 7 4 +8857,1 6 31 42 43 17 37 48 72 7 8 +20186,5 6 18 12 16 17 10 30 7 8 +12203,1 6 57 92 9 16 61 16 17 11 8 +4488,1 6 55 53 9 16 61 16 17 62 10 7 4 +16218,15 57 53 9 16 61 16 36 37 38 17 11 8 +16219,15 57 53 9 16 61 16 36 37 38 17 11 13 +2022,1 6 57 34 36 37 17 10 7 8 +21569,15 34 36 16 42 16 17 10 7 4 +5993,15 88 57 9 16 17 11 13 +15724,15 12 16 36 16 42 16 17 37 52 7 4 +5652,1 6 57 34 36 37 17 10 7 4 +22084,1 6 49 36 16 61 16 17 37 35 7 8 +5992,15 88 57 9 16 17 11 8 +20187,5 6 18 12 16 17 10 30 7 4 +22371,15 31 42 43 17 37 35 11 54 54 7 8 +23255,5 6 84 18 12 16 17 10 85 7 8 +23597,1 6 65 49 36 37 17 63 7 4 +14618,15 88 55 55 65 66 13 +19655,1 6 49 47 36 37 17 19 +23254,5 6 84 18 12 16 17 10 85 7 4 +23077,5 6 53 67 47 107 108 48 68 13 +5401,15 12 36 37 38 37 52 54 7 4 +16707,1 6 76 61 62 17 37 52 54 7 8 +9161,1 6 55 53 9 16 61 16 17 62 10 7 8 +16706,1 6 76 61 62 17 37 52 54 7 4 +6155,5 6 53 34 35 33 13 +17086,15 65 31 32 13 +15758,1 6 12 12 16 17 37 50 7 4 +16756,5 6 64 16 117 118 72 66 11 7 4 +26760,1 12 36 16 61 16 36 37 38 37 68 54 7 8 +8716,15 31 47 48 35 7 8 +20656,5 6 64 16 117 118 72 66 11 7 8 +25803,1 6 9 16 17 37 35 30 7 4 +24346,5 6 12 49 47 36 37 17 19 13 +25804,1 6 9 16 17 37 35 30 7 8 +2724,5 6 12 16 17 62 10 7 8 +5497,1 6 55 53 9 10 7 8 +17323,1 6 55 53 9 10 7 4 +2725,5 6 12 16 17 62 10 7 4 +8715,15 31 47 48 35 7 4 +369,1 6 12 49 50 7 4 +2614,1 6 49 47 48 48 50 58 7 4 +4790,5 6 88 57 58 7 4 +2613,1 6 49 47 48 48 50 58 7 8 +6936,5 6 88 57 58 7 8 +370,1 6 12 49 50 7 8 +18730,15 67 47 36 37 17 37 35 54 7 8 +19664,5 6 99 100 17 37 52 7 4 +18412,15 88 57 26 65 66 13 +10301,15 67 47 107 36 37 17 10 7 8 +10302,15 67 47 107 36 37 17 10 7 4 +24990,15 34 107 36 37 38 10 7 8 +6508,15 34 107 36 37 38 10 7 4 +25000,1 6 65 57 9 16 117 118 72 11 66 89 7 8 +18729,15 67 47 36 37 17 37 35 54 7 4 +23779,5 6 55 12 57 9 16 36 16 17 37 72 7 4 +2166,5 6 12 16 17 37 35 11 8 +22191,1 12 36 37 38 17 37 68 7 4 +18476,15 9 61 62 13 +18170,1 6 119 16 17 91 7 4 +19073,1 6 9 10 50 11 8 +9517,5 6 57 53 12 16 17 11 8 +4078,1 6 12 65 66 89 7 8 +18171,1 6 119 16 17 91 7 8 +5132,5 6 92 9 10 93 7 4 +5324,15 12 16 36 16 17 37 48 52 7 4 +4091,1 6 12 65 66 89 7 4 +5323,15 12 16 36 16 17 37 48 52 7 8 +15791,15 9 16 17 118 17 91 7 8 +15792,15 9 16 17 118 17 91 7 4 +23940,5 6 16 132 16 61 16 17 11 8 +14790,1 6 53 34 107 107 36 37 17 62 10 7 4 +23941,5 6 16 132 16 61 16 17 11 13 +26314,5 6 29 55 56 30 27 28 +9763,5 6 57 58 85 7 8 +24193,15 34 36 37 38 17 19 58 11 8 +19129,1 6 57 92 51 52 7 4 +8910,5 6 92 9 10 93 7 8 +761,1 12 11 58 7 4 +5400,15 12 36 37 38 37 52 54 7 8 +8374,1 6 53 12 61 16 17 62 10 7 8 +9768,5 6 57 58 85 7 4 +5005,5 6 9 16 17 43 75 7 4 +760,1 12 11 58 7 8 +8373,1 6 53 12 61 16 17 62 10 7 4 +17492,1 6 53 55 57 58 7 8 +16306,5 6 9 16 17 43 75 7 8 +1815,1 6 57 92 51 52 7 8 +17837,1 6 84 51 36 37 63 7 4 +7176,5 6 53 12 16 17 10 7 8 +9288,1 6 49 47 36 37 11 13 +9287,1 6 49 47 36 37 11 8 +22240,1 6 84 51 36 37 63 7 8 +24737,5 6 53 57 58 58 54 54 7 4 +10832,1 6 64 61 62 37 52 11 8 +24736,5 6 53 57 58 58 54 54 7 8 +11665,1 6 53 53 51 52 7 8 +3343,5 6 53 12 16 17 10 7 4 +1627,5 6 9 10 33 7 4 +22834,1 6 53 53 51 52 7 4 +1628,5 6 9 10 33 7 8 +1769,5 6 90 16 17 10 7 4 +906,5 6 99 100 17 98 +11696,5 6 9 10 89 66 7 8 +15804,1 6 26 65 9 16 17 10 7 8 +25574,5 6 53 12 34 36 37 17 63 85 54 7 8 +11238,1 6 57 9 16 36 16 17 10 7 8 +25556,5 6 12 36 16 17 11 13 +15066,70 39 36 16 61 16 17 11 8 +25555,5 6 12 36 16 17 11 8 +70,5 6 9 16 17 10 7 8 +11953,1 6 9 10 66 27 58 7 8 +4013,5 6 34 35 54 7 8 +6101,5 6 18 12 9 16 17 11 8 +24300,5 6 57 26 12 16 17 19 13 +25896,5 6 53 12 34 36 37 17 63 85 54 7 4 +4014,5 6 34 35 54 7 4 +1635,5 6 90 16 17 10 7 8 +26415,15 57 53 9 10 66 54 7 8 +25344,5 6 31 42 16 17 11 8 +5823,5 45 21 22 17 37 48 72 7 8 +10219,15 65 57 51 61 62 63 7 8 +11952,1 6 57 57 57 26 65 66 13 +5822,5 45 21 22 17 37 48 72 7 4 +18286,1 6 57 9 16 36 16 17 10 7 4 +18844,1 6 92 57 9 36 37 38 10 93 7 8 +15766,1 6 105 61 16 17 19 7 4 +13766,1 6 92 57 9 36 37 38 10 93 7 4 +5965,15 65 57 51 61 62 63 7 4 +2821,15 12 16 39 36 16 17 37 10 7 8 +16170,5 6 64 61 62 17 37 35 58 89 13 +7627,1 12 36 16 17 37 32 7 4 +15767,1 6 105 61 16 17 19 7 8 +2820,15 12 16 39 36 16 17 37 10 7 4 +14351,5 6 64 61 62 10 54 54 7 4 +22178,5 6 31 42 16 17 10 7 8 +11444,5 6 64 61 62 10 54 54 7 8 +22177,5 6 31 42 16 17 10 7 4 +14787,5 6 96 36 16 21 77 78 22 79 4 +25384,1 6 9 16 61 16 17 37 52 7 8 +14480,15 55 88 57 9 16 36 16 17 10 7 8 +5205,15 96 36 37 38 19 58 11 7 8 +18099,15 55 88 57 9 16 36 16 17 10 7 4 +18996,5 6 53 12 16 61 16 36 37 38 17 11 13 +13354,15 86 9 16 17 37 50 7 8 +25752,15 55 9 16 17 37 10 54 7 4 +20045,5 6 119 16 42 16 17 10 7 8 +25383,1 6 9 16 61 16 17 37 52 7 4 +84,5 6 9 16 17 10 7 4 +15580,5 6 53 12 16 61 16 36 37 38 17 11 8 +18732,15 57 53 34 36 37 17 10 7 4 +18727,15 57 53 34 36 37 17 10 7 8 +25751,15 55 9 16 17 37 10 54 7 8 +3696,5 6 65 66 56 89 13 +13353,15 86 9 16 17 37 50 7 4 +23459,5 6 90 36 37 38 17 10 7 8 +18356,15 31 36 37 11 66 7 8 +5023,1 6 29 9 16 17 10 30 7 4 +7167,1 6 71 61 62 75 7 8 +5131,1 12 16 17 10 54 7 4 +8326,15 55 12 55 88 89 13 +5130,1 12 16 17 10 54 7 8 +6030,15 12 16 36 37 38 37 68 7 4 +10258,5 6 9 10 89 66 11 8 +15286,1 6 57 12 16 17 11 8 +23765,15 53 57 57 65 66 13 +9690,1 6 29 51 52 30 58 7 8 +21523,5 6 55 53 49 50 54 7 4 +5024,1 6 29 9 16 17 10 30 7 8 +403,1 6 71 61 62 75 7 4 +1985,97 16 17 11 8 +9689,1 6 29 51 52 30 58 7 4 +23139,5 6 55 53 49 50 54 7 8 +8017,1 12 9 16 61 16 17 11 7 4 +12139,1 6 53 34 107 36 37 17 10 7 8 +13299,1 6 64 16 42 16 61 16 17 19 13 +12362,15 55 9 16 17 10 93 7 8 +16037,1 6 53 34 107 36 37 17 10 7 4 +6029,15 12 16 36 37 38 37 68 7 8 +13659,15 55 53 34 47 48 32 54 7 4 +12361,15 55 9 16 17 10 93 7 4 +25236,5 6 64 61 16 17 37 68 7 4 +26718,1 6 84 12 51 36 37 10 7 4 +24165,1 6 84 12 51 36 37 10 7 8 +16661,5 6 31 47 42 43 17 11 13 +3077,1 6 12 26 65 66 11 8 +3040,1 6 105 106 13 +25910,1 6 53 31 31 32 13 +15853,15 55 88 57 9 16 39 36 16 17 11 8 +16234,1 6 53 55 53 12 16 36 37 38 17 11 8 +1986,97 16 17 11 13 +841,1 6 18 12 16 17 37 72 7 8 +13088,1 12 16 36 37 38 37 48 52 7 4 +1844,1 6 18 12 16 17 37 72 7 4 +19318,1 6 71 36 37 11 13 +14349,1 12 16 36 37 38 37 48 52 7 8 +20920,5 6 71 47 48 48 68 11 7 8 +982,1 6 53 9 31 32 13 +4521,1 6 71 36 37 11 8 +12334,5 6 64 61 62 17 11 7 8 +591,1 45 21 22 17 3 4 +10755,5 6 64 61 62 17 11 7 4 +415,1 45 21 22 17 3 8 +21518,15 55 12 9 61 62 68 7 4 +21517,15 55 12 9 61 62 68 7 8 +2897,5 6 57 9 16 42 16 17 10 7 4 +7518,5 6 57 9 16 42 16 17 10 7 8 +6487,5 6 9 16 17 91 54 7 8 +16660,5 6 31 47 42 43 17 11 8 +20810,5 6 9 16 17 91 54 7 4 +22197,1 6 12 39 36 16 39 36 16 17 19 13 +14617,5 6 88 55 55 65 66 13 +18003,5 6 12 67 61 62 106 7 8 +18002,5 6 12 67 61 62 106 7 4 +11541,1 12 9 16 61 16 17 11 7 8 +1714,15 55 12 57 58 56 11 8 +23610,15 57 12 16 36 16 61 16 17 37 50 7 8 +1108,1 6 76 16 36 37 38 17 11 13 +9564,15 31 47 9 36 37 17 11 13 +1107,1 6 76 16 36 37 38 17 11 8 +9563,15 31 47 9 36 37 17 11 8 +2175,1 6 57 92 34 35 93 58 7 4 +8770,1 6 64 61 62 17 37 68 58 7 4 +2880,5 6 67 42 43 17 11 8 +18389,1 6 64 61 62 17 37 68 58 7 8 +2174,1 6 57 92 34 35 93 58 7 8 +12694,5 6 96 36 37 38 19 10 54 7 4 +2881,5 6 67 42 43 17 11 13 +4194,5 6 53 90 16 61 16 17 11 13 +18930,5 6 64 16 61 16 36 37 38 11 8 +4193,5 6 53 90 16 61 16 17 11 8 +12695,5 6 96 36 37 38 19 10 54 7 8 +10656,15 96 16 39 36 16 21 77 78 22 79 4 +25558,1 6 29 12 16 17 11 13 +529,5 6 49 36 37 10 7 8 +6032,15 12 16 36 39 36 16 61 16 17 11 8 +18931,5 6 64 16 61 16 36 37 38 11 13 +6033,15 12 16 36 39 36 16 61 16 17 11 13 +19162,1 6 53 9 16 36 16 17 37 68 85 54 7 8 +15159,1 6 9 36 37 38 17 37 68 7 4 +9674,1 6 29 12 16 17 11 8 +22966,5 6 18 12 16 17 43 68 89 56 7 8 +528,5 6 49 36 37 10 7 4 +8424,1 6 9 36 37 38 17 37 68 7 8 +8299,5 6 53 67 68 58 7 4 +19161,1 6 53 9 16 36 16 17 37 68 85 54 7 4 +8300,5 6 53 67 68 58 7 8 +16787,5 6 92 9 16 61 16 17 11 8 +23122,15 55 12 16 17 10 54 7 8 +25783,5 6 119 16 17 63 54 7 8 +17080,5 6 88 9 16 17 37 52 89 7 4 +17305,5 6 119 16 17 63 54 7 4 +17079,5 6 88 9 16 17 37 52 89 7 8 +6286,1 12 16 17 37 35 7 8 +2018,1 6 34 36 37 17 10 54 7 4 +23123,15 55 12 16 17 10 54 7 4 +6287,1 12 16 17 37 35 7 4 +5374,1 6 64 61 62 17 74 7 8 +11023,1 6 64 61 62 17 74 7 4 +17826,1 12 36 37 38 17 37 48 35 7 4 +14690,15 49 107 42 43 17 37 50 54 7 4 +7230,1 12 36 37 38 17 37 48 35 7 8 +8242,1 6 57 92 9 16 36 16 17 37 68 93 58 7 4 +12792,5 6 65 9 16 17 10 54 7 4 +14689,15 49 107 42 43 17 37 50 54 7 8 +18723,1 6 12 34 36 37 91 7 4 +18738,5 6 88 51 36 37 17 11 13 +10865,5 6 65 9 16 17 10 54 7 8 +12677,5 6 88 51 36 37 17 11 8 +13372,1 6 12 34 36 37 91 7 8 +3164,15 55 12 57 58 56 7 8 +14525,1 6 124 9 16 36 37 38 37 48 123 7 4 +3163,15 55 12 57 58 56 7 4 +16769,1 6 18 12 16 17 17 10 7 8 +5525,1 6 90 16 17 17 91 7 4 +18943,5 6 18 12 16 17 63 54 7 4 +10473,1 6 18 12 16 17 17 10 7 4 +8243,1 6 57 92 9 16 36 16 17 37 68 93 58 7 8 +18498,5 6 18 12 16 17 63 54 7 8 +14526,1 6 124 9 16 36 37 38 37 48 123 7 8 +7023,15 9 16 17 10 85 54 7 8 +8445,15 55 34 47 36 37 17 10 7 8 +5526,1 6 90 16 17 17 91 7 8 +25039,5 6 67 42 43 17 37 68 7 8 +22517,15 34 36 37 38 10 54 7 4 +25038,5 6 67 42 43 17 37 68 7 4 +25137,1 6 53 18 12 16 17 37 35 87 54 7 8 +513,5 6 18 12 16 17 11 7 4 +23573,5 6 12 16 61 16 61 16 17 11 13 +9331,1 6 55 55 56 13 +23572,5 6 12 16 61 16 61 16 17 11 8 +367,5 6 18 12 16 17 11 7 8 +2593,1 6 53 49 50 13 +19066,1 6 84 57 9 16 17 11 8 +6910,5 6 31 47 42 43 17 3 8 +7022,15 9 16 17 10 85 54 7 4 +11898,15 55 57 12 39 36 16 61 16 17 19 13 +8444,15 55 34 47 36 37 17 10 7 4 +332,1 6 34 36 37 17 10 54 7 8 +23366,15 9 36 37 38 17 3 8 +23365,15 9 36 37 38 17 3 4 +6309,15 55 12 88 57 58 58 11 8 +17836,1 6 71 36 37 19 13 +727,1 6 88 55 56 13 +15199,1 45 21 22 17 11 8 +18642,1 6 55 12 57 96 16 36 37 38 37 72 7 8 +4160,5 6 55 31 32 13 +7250,1 6 71 36 37 17 69 +8606,1 6 9 16 17 37 52 7 4 +22064,1 6 86 49 50 13 +11733,1 6 53 18 12 16 17 37 35 54 54 7 4 +10669,1 6 9 16 17 37 52 7 8 +750,1 6 12 88 89 11 8 +2571,15 9 16 36 37 38 17 10 7 4 +19913,5 6 76 42 43 17 106 7 8 +2572,15 9 16 36 37 38 17 10 7 8 +13355,1 6 57 9 36 16 17 11 8 +26416,15 57 53 9 10 66 54 7 4 +11961,5 6 31 47 42 43 17 3 4 +5353,1 6 55 56 27 28 +19108,15 55 53 57 12 11 58 7 4 +19109,15 55 53 57 12 11 58 7 8 +17274,5 6 76 36 37 38 75 7 4 +11317,1 6 12 16 21 77 78 82 83 8 +15432,5 6 64 16 36 37 38 17 10 93 7 8 +22009,1 6 84 57 9 16 17 11 13 +16118,5 6 64 16 36 37 38 17 10 93 7 4 +22029,5 6 9 10 56 66 7 4 +20194,5 6 9 10 56 66 7 8 +476,1 6 84 64 16 17 10 85 7 8 +7717,1 6 84 64 16 17 10 85 7 4 +7848,1 6 34 36 37 17 37 35 7 8 +24329,5 6 64 61 62 17 37 115 35 11 8 +21042,15 12 16 36 37 38 37 48 35 11 7 4 +450,5 6 84 86 87 13 +18207,5 6 76 16 17 63 93 7 8 +23910,1 6 64 16 42 16 17 37 50 7 8 +3635,1 6 34 36 37 17 37 35 7 4 +26156,5 6 53 55 9 16 17 43 52 7 4 +18206,5 6 76 16 17 63 93 7 4 +25719,15 57 65 71 61 62 75 7 8 +17132,1 6 55 12 16 17 10 7 4 +3780,1 6 53 12 67 61 62 63 7 8 +15760,5 6 12 12 16 17 37 50 7 8 +3773,1 6 53 12 67 61 62 63 7 4 +9283,5 6 67 47 42 43 17 63 7 8 +14731,5 6 18 12 16 17 62 17 11 8 +25075,1 45 21 22 17 37 48 35 11 8 +15160,5 6 67 47 42 43 17 63 7 4 +1881,1 6 53 31 36 16 61 16 17 19 13 +4379,1 12 11 87 7 8 +22993,1 6 64 16 36 16 61 16 17 37 72 66 11 8 +23684,15 67 36 37 38 17 19 58 27 28 +25256,5 6 55 56 89 58 13 +26276,1 6 18 12 16 17 37 68 68 7 8 +7375,1 6 12 90 16 61 39 36 16 17 19 7 8 +15759,5 6 12 12 16 17 37 50 7 4 +21408,15 55 88 57 9 36 37 38 37 68 68 7 4 +1586,5 6 65 26 9 16 17 10 7 8 +26616,1 6 18 12 16 17 37 68 68 7 4 +4380,1 12 11 87 7 4 +10671,1 6 12 90 16 61 39 36 16 17 19 7 4 +11189,5 6 29 86 87 13 +6695,1 6 55 88 88 88 12 9 16 17 19 7 4 +18574,15 55 88 57 58 89 56 7 4 +19009,1 6 55 88 88 88 12 9 16 17 19 7 8 +14462,60 16 36 16 17 37 108 48 72 7 4 +2301,15 65 49 47 48 32 7 4 +26020,70 16 99 16 17 91 7 4 +24344,5 6 34 47 48 50 11 8 +269,5 6 18 12 16 17 10 7 4 +623,1 12 9 31 32 7 8 +19188,1 6 12 88 89 7 4 +9925,15 88 26 71 47 107 108 68 7 4 +268,5 6 18 12 16 17 10 7 8 +622,1 12 9 31 32 7 4 +5320,15 57 9 16 17 37 72 7 8 +9924,15 88 26 71 47 107 108 68 7 8 +21812,5 6 88 57 58 27 66 13 +10665,1 6 57 9 16 42 16 36 37 38 17 11 8 +14463,60 16 36 16 17 37 108 48 72 7 8 +19189,1 6 12 88 89 7 8 +10062,15 55 88 57 58 89 56 7 8 +3379,15 53 49 36 37 10 54 7 8 +126,1 6 57 58 56 7 4 +3378,15 53 49 36 37 10 54 7 4 +12185,1 6 64 16 42 16 17 37 50 11 8 +125,1 6 57 58 56 7 8 +20833,5 6 18 12 16 17 10 85 54 7 4 +22624,5 6 64 16 16 36 37 38 37 32 87 7 4 +24883,1 6 64 16 39 36 16 61 16 17 62 10 7 4 +20834,5 6 18 12 16 17 10 85 54 7 8 +22623,5 6 64 16 16 36 37 38 37 32 87 7 8 +24884,1 6 64 16 39 36 16 61 16 17 62 10 7 8 +13145,1 6 119 16 17 11 8 +26019,70 16 99 16 17 91 7 8 +12619,1 6 12 9 47 48 7 4 +12618,1 6 12 9 47 48 7 8 +25702,15 44 9 16 36 16 17 37 48 72 54 7 8 +2929,1 6 92 31 36 37 11 8 +25701,15 44 9 16 36 16 17 37 48 72 54 7 4 +7081,1 12 16 17 62 10 7 8 +3420,70 16 36 37 38 17 11 8 +3421,70 16 36 37 38 17 11 13 +23716,5 6 55 12 88 89 13 +3842,1 12 16 17 62 10 7 4 +16748,5 6 88 88 96 16 21 77 78 22 79 4 +9862,5 6 64 61 62 17 37 11 54 7 4 +19553,1 6 53 16 17 54 7 8 +3819,1 6 53 16 17 54 7 4 +25198,5 6 64 61 62 17 37 11 54 7 8 +5964,1 6 86 34 36 37 17 10 7 4 +24870,5 6 12 16 61 16 61 16 17 19 13 +5321,15 57 9 16 17 37 72 7 4 +10685,15 12 36 16 17 37 68 7 4 +10218,1 6 86 34 36 37 17 10 7 8 +17741,70 16 39 36 16 42 16 17 19 7 4 +10686,15 12 36 16 17 37 68 7 8 +17742,70 16 39 36 16 42 16 17 19 7 8 +17771,1 6 53 12 124 36 37 17 10 7 8 +2302,15 65 49 47 48 32 7 8 +21358,1 6 55 12 55 56 56 89 13 +2102,5 6 9 10 30 7 4 +16936,5 6 31 32 30 7 4 +17764,1 6 53 12 124 36 37 17 10 7 4 +2136,5 6 9 10 30 7 8 +549,5 6 55 51 61 62 63 7 4 +5466,1 6 67 47 36 37 17 69 +17449,1 6 34 35 27 7 4 +17438,1 6 34 35 27 7 8 +19684,5 6 76 61 62 17 37 72 56 7 4 +21447,5 6 53 31 42 43 17 37 108 50 54 7 8 +5134,1 6 92 9 10 93 7 8 +17758,1 6 67 47 36 37 19 13 +5133,1 6 92 9 10 93 7 4 +7222,5 6 34 47 48 50 7 4 +3654,5 6 34 47 48 50 7 8 +5091,15 86 34 47 48 72 7 4 +6621,5 6 9 10 89 27 56 7 8 +14159,5 6 41 65 66 23 54 7 8 +17289,5 6 41 65 66 23 54 7 4 +19685,5 6 76 61 62 17 37 72 56 7 8 +22841,5 6 53 31 42 43 17 37 108 50 54 7 4 +13339,5 6 49 36 37 17 37 32 54 54 7 4 +13338,5 6 49 36 37 17 37 32 54 54 7 8 +487,5 6 53 34 35 7 4 +201,5 6 53 34 35 7 8 +23911,1 6 64 16 42 16 17 37 50 7 4 +6775,70 36 16 17 91 7 8 +26064,1 6 41 12 26 9 16 17 11 13 +6776,70 36 16 17 91 7 4 +2735,5 6 55 51 61 62 63 7 8 +13684,1 6 41 12 26 9 16 17 11 8 +3365,1 6 44 9 16 61 16 17 19 7 8 +26728,5 6 92 51 52 93 7 4 +10983,1 6 9 16 36 16 61 16 17 19 7 4 +11154,5 6 88 51 114 36 37 17 11 8 +12981,1 6 9 16 36 16 61 16 17 19 7 8 +9435,1 6 34 47 48 68 58 54 7 4 +19737,1 6 49 42 43 17 37 35 87 7 8 +23520,1 6 53 53 12 11 54 54 7 8 +12020,5 6 55 9 16 36 37 38 63 7 8 +25143,5 6 53 76 36 37 38 63 54 7 8 +25728,1 6 53 53 12 11 54 54 7 4 +10654,5 6 55 9 16 36 37 38 63 7 4 +19994,5 6 53 76 36 37 38 63 54 7 4 +12932,15 57 58 89 27 56 7 4 +25241,15 96 36 37 38 37 48 72 7 4 +13116,1 6 119 16 17 37 35 7 4 +25240,15 96 36 37 38 37 48 72 7 8 +12684,15 12 16 36 16 17 37 68 89 13 +2836,15 55 55 67 47 36 37 17 11 13 +20107,5 6 9 16 39 36 16 42 16 17 43 35 7 4 +12688,1 6 64 61 62 17 37 35 58 7 4 +6391,15 49 36 37 17 19 33 13 +6576,1 6 65 9 16 42 16 17 19 7 4 +7095,1 6 64 61 62 17 37 35 58 7 8 +12437,1 6 119 16 17 37 35 7 8 +20261,1 6 65 9 16 42 16 17 19 7 8 +2835,15 55 55 67 47 36 37 17 11 8 +7535,1 6 121 122 58 66 13 +3366,1 6 44 9 16 61 16 17 19 7 4 +10897,15 71 36 37 38 37 72 7 4 +12089,1 6 12 11 89 7 4 +13314,1 6 64 61 62 17 91 54 7 8 +2196,1 6 12 11 89 7 8 +16710,70 16 39 36 16 61 16 17 37 52 7 8 +24224,1 6 31 36 37 17 37 48 68 7 8 +7327,1 6 92 31 32 93 7 8 +12517,5 6 12 51 109 110 11 8 +16709,70 16 39 36 16 61 16 17 37 52 7 4 +7328,1 6 92 31 32 93 7 4 +3700,15 44 88 9 16 17 10 7 8 +12865,1 6 64 16 36 16 61 16 17 37 35 54 7 4 +3947,15 71 36 37 38 37 72 7 8 +3701,15 44 88 9 16 17 10 7 4 +7429,5 6 57 51 47 47 36 37 63 7 4 +12866,1 6 64 16 36 16 61 16 17 37 35 54 7 8 +21776,1 6 57 58 66 89 7 8 +23935,1 12 9 31 47 48 32 54 7 4 +552,1 6 55 56 7 8 +7428,5 6 57 51 47 47 36 37 63 7 8 +21775,1 6 57 58 66 89 7 4 +1773,1 12 9 31 47 48 32 54 7 8 +16099,1 6 92 51 61 62 63 7 4 +121,1 6 55 56 7 4 +25909,1 6 53 31 32 11 8 +5074,5 6 49 50 58 89 7 4 +1836,15 65 88 9 16 17 11 8 +8273,1 6 57 9 16 61 16 17 10 7 4 +5109,5 6 55 57 9 36 16 17 37 50 7 8 +1837,15 65 88 9 16 17 11 13 +1054,5 6 53 12 34 35 13 +8274,1 6 57 9 16 61 16 17 10 7 8 +5110,5 6 55 57 9 36 16 17 37 50 7 4 +9699,5 6 29 51 36 37 17 10 7 4 +21177,1 6 53 53 31 32 13 +4926,15 9 16 36 39 36 16 61 16 17 37 35 54 7 4 +2115,1 6 29 9 61 62 17 11 8 +20766,5 6 53 57 31 47 48 32 54 7 8 +11177,5 6 12 61 16 17 62 10 7 4 +17346,1 6 76 36 16 61 16 61 16 17 37 72 66 11 8 +13681,1 6 9 16 36 16 61 16 17 19 11 8 +16098,1 6 92 51 61 62 63 7 8 +24689,70 16 36 37 38 17 100 7 8 +17051,70 16 36 37 38 17 3 4 +23565,1 6 67 47 48 68 58 7 8 +24688,70 16 36 37 38 17 100 7 4 +9698,5 6 29 51 36 37 17 10 7 8 +17050,70 16 36 37 38 17 3 8 +15903,60 16 36 37 38 37 48 32 7 4 +22558,1 6 12 49 36 37 17 11 8 +15902,60 16 36 37 38 37 48 32 7 8 +17216,15 55 88 57 9 16 39 36 16 17 19 13 +19634,1 6 64 16 36 16 17 37 48 32 54 7 8 +6110,40 41 12 26 9 16 17 10 30 7 8 +17242,1 6 57 53 34 36 37 17 63 7 4 +6111,40 41 12 26 9 16 17 10 30 7 4 +5562,5 6 9 10 85 54 7 8 +8775,5 6 67 68 56 13 +6846,1 6 55 12 88 9 39 36 16 17 19 7 4 +3849,5 6 9 10 85 54 7 4 +15206,1 6 12 90 16 61 16 17 19 7 8 +15776,5 6 86 53 12 39 36 16 36 37 38 17 37 68 7 4 +4592,5 6 86 53 12 39 36 16 36 37 38 17 37 68 7 8 +18020,97 16 17 74 7 4 +10058,5 6 9 9 16 17 11 8 +15068,5 6 9 9 16 17 11 13 +7388,5 6 57 53 9 16 17 10 7 4 +15207,1 6 12 90 16 61 16 17 19 7 4 +18021,97 16 17 74 7 8 +502,1 6 34 36 37 17 62 10 7 4 +503,1 6 34 36 37 17 62 10 7 8 +19560,5 6 57 67 47 36 37 11 8 +22317,5 6 12 26 65 9 16 17 37 52 7 8 +26482,5 6 12 26 65 9 16 17 37 52 7 4 +3748,15 49 47 36 16 17 10 7 4 +5301,1 6 53 31 32 7 8 +3189,1 6 55 56 11 8 +17064,1 2 16 17 37 52 7 4 +145,15 49 47 36 16 17 10 7 8 +1339,1 6 53 31 32 7 4 +512,5 45 21 22 46 4 +2773,70 16 36 16 17 11 8 +21621,5 6 12 61 16 17 62 10 7 8 +511,5 45 21 22 46 8 +2774,70 16 36 16 17 11 13 +16810,5 6 53 90 16 17 37 50 7 8 +2116,1 6 29 9 61 62 17 11 13 +16809,5 6 53 90 16 17 37 50 7 4 +10009,15 67 47 47 36 37 11 8 +19666,5 6 64 16 99 16 17 75 7 4 +26796,15 57 58 89 66 7 8 +7521,5 6 12 26 65 66 89 7 4 +26793,15 57 58 89 66 7 4 +11096,1 6 88 57 57 65 66 13 +7524,5 6 12 26 65 66 89 7 8 +8401,15 65 86 9 16 17 37 108 7 8 +16070,5 6 88 57 9 16 17 11 8 +14140,15 65 86 9 16 17 37 108 7 4 +17582,1 6 84 9 10 11 85 7 8 +4737,5 6 12 57 12 11 7 4 +16071,5 6 88 57 9 16 17 11 13 +4738,5 6 12 57 12 11 7 8 +18759,5 6 53 90 16 61 16 17 62 10 7 4 +10657,15 96 16 39 36 16 21 77 78 22 8 +25183,1 12 16 61 16 61 16 17 19 13 +3968,5 6 88 55 49 50 13 +160,15 9 61 62 52 7 4 +4093,1 6 55 9 16 39 36 16 17 10 7 8 +23577,15 49 47 36 16 17 37 48 50 7 8 +161,15 9 61 62 52 7 8 +7525,1 6 55 9 16 39 36 16 17 10 7 4 +531,5 6 53 51 52 7 4 +11302,1 6 71 36 37 69 +532,5 6 53 51 52 7 8 +1919,5 6 55 53 57 58 56 54 7 4 +23244,15 57 88 88 9 16 117 118 72 11 66 89 7 8 +14599,15 9 16 36 37 38 17 11 13 +11688,1 6 67 117 16 17 11 8 +12107,15 51 114 115 72 7 8 +10635,5 6 34 107 36 37 17 63 7 4 +16261,5 6 65 55 56 58 7 8 +20719,5 6 88 89 66 58 7 4 +1983,5 6 55 53 57 58 56 54 7 8 +6234,5 6 34 107 36 37 17 63 7 8 +14571,5 6 65 55 56 58 7 4 +8834,1 6 53 67 47 107 108 48 68 13 +13899,1 6 67 117 16 17 11 13 +7400,5 6 9 10 58 87 56 54 7 4 +14650,5 6 9 16 17 11 7 8 +22952,5 6 53 12 124 36 37 17 11 13 +5365,5 6 9 16 17 11 7 4 +22951,5 6 53 12 124 36 37 17 11 8 +13865,1 6 53 34 47 36 37 17 10 54 54 7 8 +13842,1 6 53 34 47 36 37 17 10 54 54 7 4 +24944,1 6 64 16 42 16 17 43 68 11 8 +25373,5 6 12 16 17 37 48 32 11 8 +13213,1 6 88 9 16 17 43 72 11 8 +25860,5 6 55 56 89 11 8 +14128,15 90 61 62 17 37 50 7 8 +1297,15 55 34 36 16 42 16 17 37 35 7 8 +12637,5 6 9 36 37 38 17 3 8 +14127,15 90 61 62 17 37 50 7 4 +12322,15 55 34 36 16 42 16 17 37 35 7 4 +18155,1 6 53 53 57 34 35 54 54 7 4 +24570,15 86 34 36 37 17 75 7 4 +25378,15 51 36 37 19 58 7 8 +12638,5 6 9 36 37 38 17 3 4 +14598,15 9 16 36 37 38 17 11 8 +12108,15 51 114 115 72 7 4 +25377,15 51 36 37 19 58 7 4 +5370,5 6 18 9 16 21 77 78 22 8 +9834,15 88 89 110 72 7 4 +22777,5 6 53 12 16 16 17 19 13 +660,5 6 64 61 62 17 10 7 8 +9835,15 88 89 110 72 7 8 +10837,1 6 64 61 62 11 54 7 4 +1755,5 6 64 61 62 17 10 7 4 +15806,1 6 53 51 36 37 10 54 7 4 +24150,1 6 64 61 62 11 54 7 8 +24548,5 6 57 9 16 61 16 36 16 17 37 35 7 4 +13364,1 6 53 51 36 37 10 54 7 8 +2248,5 6 88 57 57 53 67 36 37 17 10 7 4 +2247,5 6 88 57 57 53 67 36 37 17 10 7 8 +4845,1 6 12 49 36 37 17 19 13 +17865,1 6 53 9 10 110 50 54 7 8 +6332,15 55 12 57 55 9 16 36 37 38 17 37 108 35 7 8 +6333,15 55 12 57 55 9 16 36 37 38 17 37 108 35 7 4 +17811,96 36 16 17 11 7 8 +14464,60 16 36 16 17 63 7 4 +18495,1 6 84 9 10 66 85 7 8 +2740,1 6 90 91 54 7 4 +1208,1 6 90 91 54 7 8 +14465,60 16 36 16 17 63 7 8 +2002,1 6 53 31 32 33 13 +2587,15 67 47 48 48 68 7 4 +23493,5 6 90 16 17 11 7 4 +18792,70 16 36 16 17 37 72 56 7 4 +18793,70 16 36 16 17 37 72 56 7 8 +9278,5 6 51 47 48 32 7 4 +9205,5 6 51 47 48 32 7 8 +2588,15 67 47 48 48 68 7 8 +5743,15 26 88 89 66 11 7 4 +23883,1 6 84 9 10 66 85 7 4 +13765,15 34 36 37 10 93 7 4 +22100,5 6 53 9 10 58 54 54 7 4 +24738,5 6 53 9 10 58 54 54 7 8 +4225,5 6 55 56 89 7 8 +20408,1 6 86 88 89 87 7 8 +1548,1 6 88 9 16 17 43 72 7 4 +21739,5 45 21 22 17 37 50 11 7 4 +5458,5 6 55 56 89 7 4 +13764,15 34 36 37 10 93 7 8 +15994,1 6 86 88 89 87 7 4 +1549,1 6 88 9 16 17 43 72 7 8 +8284,1 6 12 88 65 9 16 17 37 50 7 8 +19986,15 96 16 36 37 38 17 37 35 7 4 +5838,15 57 53 55 56 13 +19985,15 96 16 36 37 38 17 37 35 7 8 +8285,1 6 12 88 65 9 16 17 37 50 7 4 +3757,5 6 67 68 11 8 +86,1 6 29 18 12 16 17 43 32 30 7 4 +19920,5 6 67 68 11 13 +8604,15 96 16 36 37 38 17 62 10 7 8 +87,1 6 29 18 12 16 17 43 32 30 7 8 +8605,15 96 16 36 37 38 17 62 10 7 4 +14676,5 6 57 9 16 36 37 38 37 48 72 54 7 4 +14897,1 6 29 9 10 30 30 7 4 +10228,15 51 42 43 17 10 7 4 +1633,1 6 88 9 16 17 91 7 8 +1634,1 6 88 9 16 17 91 7 4 +9743,5 6 84 73 74 56 85 7 8 +8282,5 6 9 10 66 27 89 13 +25623,15 55 12 57 96 36 37 38 19 56 11 56 7 8 +22315,5 6 53 9 10 58 87 54 7 8 +1754,5 6 12 9 16 17 91 7 8 +21798,5 6 64 61 62 17 37 48 68 11 8 +1753,5 6 12 9 16 17 91 7 4 +10129,5 6 67 47 48 35 7 4 +15476,70 16 36 16 17 37 48 50 7 4 +20460,5 6 9 16 17 118 17 63 7 8 +13305,5 6 84 73 74 56 85 7 4 +15477,70 16 36 16 17 37 48 50 7 8 +20459,5 6 9 16 17 118 17 63 7 4 +15144,15 9 16 36 37 38 17 3 4 +6706,1 6 55 55 53 53 54 7 4 +11077,5 6 53 49 107 36 37 17 10 7 4 +15145,15 9 16 36 37 38 17 3 8 +11076,5 6 53 49 107 36 37 17 10 7 8 +22651,5 6 53 90 16 61 16 17 37 35 7 4 +12085,5 6 12 12 16 61 16 17 11 13 +14806,5 6 92 86 87 7 8 +22480,5 6 53 90 16 61 16 17 37 35 7 8 +22226,1 6 12 9 16 17 37 52 7 4 +5379,5 6 53 12 16 61 16 61 16 17 62 10 7 8 +14807,5 6 92 86 87 7 4 +8769,1 6 86 9 39 36 16 17 10 54 7 8 +5433,15 53 55 53 12 39 36 16 36 37 38 37 35 54 7 8 +10130,5 6 67 47 48 35 7 8 +23497,1 6 71 47 36 37 17 118 17 10 7 4 +8768,1 6 86 9 39 36 16 17 10 54 7 4 +12084,5 6 12 12 16 61 16 17 11 8 +15499,15 73 16 36 16 36 16 17 11 8 +20424,1 6 55 55 53 53 54 7 8 +301,5 6 65 9 16 17 11 8 +14090,5 6 65 9 16 17 11 13 +16002,1 6 51 36 37 38 19 13 +26055,5 6 53 53 9 16 17 62 10 7 4 +8387,1 6 9 10 87 66 7 8 +5378,5 6 53 12 16 61 16 61 16 17 62 10 7 4 +8390,1 6 9 10 87 66 7 4 +24706,5 6 57 9 16 36 37 38 37 48 72 54 7 8 +16377,1 6 12 65 51 52 33 13 +24971,95 16 36 37 38 11 8 +24972,95 16 36 37 38 11 13 +9353,1 6 31 36 37 17 11 7 8 +19739,5 6 49 42 43 17 37 35 87 7 4 +181,5 6 67 68 7 4 +25345,5 6 31 42 16 17 11 7 8 +13073,1 6 31 36 37 17 11 7 4 +16750,15 88 88 96 16 21 77 78 22 8 +200,5 6 67 68 7 8 +13757,1 6 41 12 11 13 +19738,5 6 49 42 43 17 37 35 87 7 8 +23231,5 6 9 16 17 43 50 56 7 4 +9456,5 6 57 9 16 17 10 85 54 7 4 +11318,5 6 57 9 16 17 10 85 54 7 8 +23232,5 6 9 16 17 43 50 56 7 8 +23472,1 6 55 9 36 16 36 16 17 11 8 +1053,5 6 53 12 11 54 7 8 +20266,5 6 88 67 61 62 10 7 8 +1050,5 6 53 12 11 54 7 4 +20267,5 6 88 67 61 62 10 7 4 +13632,5 6 67 47 36 37 10 7 4 +18852,5 6 67 47 36 37 10 7 8 +4359,15 9 16 16 61 62 115 52 7 8 +26358,1 6 76 31 47 48 52 7 8 +16749,15 88 88 96 16 21 77 78 22 79 4 +4358,15 9 16 16 61 62 115 52 7 4 +17808,1 6 49 36 37 19 +4706,15 49 47 48 68 58 7 8 +9833,15 55 12 109 110 13 +4707,15 49 47 48 68 58 7 4 +17281,5 6 53 31 36 37 63 7 4 +9582,15 67 107 36 37 17 19 13 +8155,1 6 49 36 16 17 10 7 8 +3650,1 6 67 47 36 37 11 13 +3649,1 6 67 47 36 37 11 8 +19671,5 6 76 16 42 16 17 62 10 7 8 +21687,1 6 55 12 9 16 17 118 17 10 7 4 +24437,15 57 53 31 36 37 10 7 4 +24828,15 57 53 31 36 37 10 7 8 +20817,5 6 53 34 36 37 10 54 7 8 +8256,5 6 53 90 16 61 16 17 62 10 7 8 +25996,5 6 53 34 47 36 37 17 10 7 8 +23040,5 6 65 66 58 7 4 +24199,5 6 53 34 36 37 10 54 7 4 +10227,15 51 42 43 17 10 7 8 +23032,15 12 16 36 61 16 17 11 8 +23041,5 6 65 66 58 7 8 +4722,15 51 36 16 17 37 35 7 8 +5801,15 51 36 16 17 37 35 7 4 +13125,5 6 53 34 47 36 37 17 10 7 4 +290,1 6 57 58 58 7 4 +7534,1 6 121 122 58 13 +16752,1 6 12 57 96 16 21 77 78 22 79 4 +287,1 6 57 58 58 7 8 +11274,15 9 9 9 9 9 16 17 43 32 10 54 7 4 +11275,15 9 9 9 9 9 16 17 43 32 10 54 7 8 +14212,1 6 49 36 37 69 +23649,15 12 11 110 68 7 8 +10199,70 16 36 16 42 16 17 37 50 7 4 +23650,15 12 11 110 68 7 4 +2306,15 34 36 61 16 17 37 48 50 7 4 +10021,5 6 9 16 17 62 68 7 4 +12305,1 6 65 66 66 58 7 8 +21583,5 6 9 16 17 62 68 7 8 +16180,5 6 67 42 43 17 3 4 +25982,5 6 67 42 43 17 3 8 +7610,5 45 21 22 17 37 52 85 7 4 +7611,5 45 21 22 17 37 52 85 7 8 +8513,1 6 53 12 9 16 17 37 35 7 8 +8514,1 6 53 12 9 16 17 37 35 7 4 +7926,15 55 9 16 17 63 85 7 8 +17713,5 6 31 107 108 32 7 8 +15796,1 6 65 66 66 58 7 4 +7925,15 55 9 16 17 63 85 7 4 +11787,5 6 92 64 16 36 37 38 37 48 72 54 7 8 +11786,5 6 92 64 16 36 37 38 37 48 72 54 7 4 +7669,15 12 16 36 16 17 37 108 35 7 8 +24465,1 6 64 36 37 38 17 37 35 7 8 +18960,5 6 53 26 55 34 35 13 +24466,1 6 64 36 37 38 17 37 35 7 4 +18215,1 6 9 10 58 11 7 8 +2461,15 12 16 36 16 17 37 72 7 4 +10198,70 16 36 16 42 16 17 37 50 7 8 +18741,1 6 9 10 58 11 7 4 +7668,15 12 16 36 16 17 37 108 35 7 4 +2460,15 12 16 36 16 17 37 72 7 8 +9067,1 6 31 47 36 37 17 10 7 8 +25845,5 6 65 9 16 36 16 117 118 32 7 8 +19982,15 96 16 36 37 38 17 19 33 13 +11673,1 6 12 12 16 21 77 78 22 8 +25844,5 6 65 9 16 36 16 117 118 32 7 4 +17260,5 6 71 36 37 19 58 7 8 +23991,1 6 76 61 62 17 37 50 54 7 8 +6723,1 6 55 57 53 9 10 7 8 +25816,1 6 29 9 16 16 17 11 8 +6722,1 6 55 57 53 9 10 7 4 +9066,1 6 31 47 36 37 17 10 7 4 +23634,15 86 55 65 9 16 42 16 17 62 10 7 4 +10386,1 6 12 9 16 17 17 3 4 +256,5 6 12 67 68 13 +7593,1 6 84 49 50 85 7 8 +24058,15 53 12 51 52 11 54 7 8 +1360,1 6 84 49 50 85 7 4 +9935,1 6 84 71 47 48 52 85 54 7 4 +24059,15 53 12 51 52 11 54 7 4 +20797,1 6 76 61 62 17 37 50 54 7 4 +23125,15 55 12 55 12 16 17 19 13 +18745,5 6 55 55 51 52 13 +25150,1 6 84 71 47 48 52 85 54 7 8 +10387,1 6 12 9 16 17 17 3 8 +13881,15 34 36 37 17 37 32 7 8 +16197,1 6 92 12 16 17 10 93 7 4 +9838,15 55 12 109 88 57 58 110 72 7 4 +1713,5 6 55 12 57 58 56 11 8 +11205,1 6 92 12 16 17 10 93 7 8 +13880,15 34 36 37 17 37 32 7 4 +18510,5 6 57 9 61 62 48 52 7 4 +22182,5 6 55 96 16 21 77 101 102 103 +8332,15 96 36 16 17 19 58 11 56 7 4 +8618,15 96 36 16 17 19 58 11 56 7 8 +1569,15 55 88 57 57 9 16 36 37 38 17 10 7 4 +11003,1 6 64 53 31 32 13 +1568,15 55 88 57 57 9 16 36 37 38 17 10 7 8 +3672,15 12 9 16 36 37 38 37 48 50 7 8 +7319,5 45 21 22 17 37 35 11 8 +19815,15 67 107 36 37 17 11 13 +2147,5 6 71 36 37 19 58 11 8 +3673,15 12 9 16 36 37 38 37 48 50 7 4 +19814,15 67 107 36 37 17 11 8 +18398,1 6 53 9 16 36 16 17 37 52 7 8 +22844,5 6 88 89 66 56 89 13 +24993,5 6 67 67 36 37 17 62 10 7 8 +18399,1 6 53 9 16 36 16 17 37 52 7 4 +582,5 6 64 36 37 38 37 48 72 54 7 8 +16675,5 6 12 26 65 66 27 54 7 8 +24729,15 57 12 16 17 10 7 8 +24730,15 57 12 16 17 10 7 4 +20906,1 6 88 88 9 16 117 118 72 11 89 7 8 +22122,5 6 12 11 54 85 7 8 +22123,5 6 12 11 54 85 7 4 +4165,15 55 31 53 36 37 17 11 8 +5643,1 6 84 34 35 85 54 7 8 +583,5 6 64 36 37 38 37 48 72 54 7 4 +20946,1 6 18 12 16 42 16 17 10 7 4 +13440,1 6 49 47 47 36 37 38 19 13 +5642,1 6 84 34 35 85 54 7 4 +25210,15 55 31 47 36 37 17 11 13 +20945,1 6 18 12 16 42 16 17 10 7 8 +23703,15 65 57 9 16 17 37 72 85 7 8 +24925,1 6 53 18 9 36 16 17 91 7 4 +25209,15 55 31 47 36 37 17 11 8 +10981,5 6 64 61 62 17 37 35 93 58 7 4 +19328,1 6 65 57 9 16 17 11 13 +4766,1 6 65 57 9 16 17 11 8 +23702,15 65 57 9 16 17 37 72 85 7 4 +24924,1 6 53 18 9 36 16 17 91 7 8 +2185,5 6 64 61 62 17 37 35 93 58 7 8 +8289,1 6 9 16 17 43 72 7 4 +6312,15 55 12 55 56 58 89 13 +3570,1 12 9 31 32 33 13 +4721,15 55 12 11 89 7 4 +421,1 80 81 82 83 8 +5193,1 6 55 9 16 17 43 50 56 7 8 +11480,5 6 51 47 48 48 52 58 7 8 +21801,15 57 9 16 36 37 38 17 63 7 8 +9553,5 6 64 16 36 16 17 11 8 +11481,5 6 51 47 48 48 52 58 7 4 +4720,15 55 12 11 89 7 8 +9394,70 16 36 61 16 17 43 75 7 4 +9395,70 16 36 61 16 17 43 75 7 8 +22136,1 6 64 16 36 16 17 37 35 54 7 4 +25014,5 6 88 51 42 43 17 10 7 8 +1686,5 45 21 22 17 37 35 7 4 +18093,5 6 31 47 42 43 17 10 7 4 +24578,5 6 76 16 36 16 17 43 32 7 8 +1685,5 45 21 22 17 37 35 7 8 +18092,5 6 31 47 42 43 17 10 7 8 +20087,5 6 51 52 66 56 7 4 +20530,15 119 16 16 17 120 7 8 +11358,5 6 65 9 16 17 37 35 7 4 +20086,5 6 51 52 66 56 7 8 +22270,5 6 65 9 16 17 37 35 7 8 +6362,1 6 53 12 96 36 16 17 19 58 11 8 +20529,15 119 16 16 17 120 7 4 +26052,1 6 9 16 36 16 42 16 17 37 123 7 8 +7137,15 71 36 37 17 10 85 7 8 +6572,1 6 86 57 9 16 17 10 7 8 +25237,5 6 64 61 16 17 37 68 7 8 +7136,15 71 36 37 17 10 85 7 4 +14225,1 6 9 16 17 37 35 87 56 7 8 +14587,1 6 9 16 17 37 35 87 56 7 4 +14080,1 6 53 34 47 36 37 17 10 7 8 +13133,1 6 53 34 47 36 37 17 10 7 4 +25355,15 9 9 16 17 43 52 7 4 +25356,15 9 9 16 17 43 52 7 8 +3005,1 6 9 16 17 43 72 7 8 +5806,5 6 86 12 16 36 16 21 77 78 22 79 4 +7703,1 6 9 16 17 43 72 11 8 +21686,1 6 9 16 117 118 52 7 8 +3567,1 6 57 12 16 17 19 13 +17950,1 6 57 12 65 66 27 28 +15298,15 57 12 16 17 37 32 7 4 +14333,1 2 16 17 37 35 85 54 7 4 +15299,15 57 12 16 17 37 32 7 8 +14575,5 6 64 61 62 37 72 7 4 +18524,5 6 84 57 9 16 17 10 85 7 8 +17519,1 6 18 12 16 17 43 32 54 7 4 +18523,5 6 84 57 9 16 17 10 85 7 4 +18908,1 6 18 12 16 17 43 32 54 7 8 +22390,5 6 53 49 42 43 10 54 7 4 +8646,15 9 39 36 39 36 39 36 16 17 35 54 54 7 8 +14334,1 2 16 17 37 35 85 54 7 8 +22803,15 49 36 16 61 16 17 19 54 7 8 +22404,15 55 12 55 55 88 55 56 11 56 7 8 +8570,15 57 53 53 54 7 8 +4563,25 26 27 11 89 58 11 8 +14576,5 6 64 61 62 37 72 7 8 +26126,15 12 36 37 38 11 7 4 +8569,15 57 53 53 54 7 4 +24414,15 12 36 37 38 11 7 8 +23863,5 6 53 51 52 11 8 +16551,1 6 9 61 62 32 93 58 7 8 +8647,15 9 39 36 39 36 39 36 16 17 35 54 54 7 4 +8727,5 6 65 9 16 17 62 10 7 8 +23869,5 6 53 51 52 11 13 +17579,15 55 53 51 47 47 36 16 17 62 10 7 8 +12235,1 6 9 61 62 32 93 58 7 4 +25098,1 6 88 89 66 66 58 7 8 +26498,5 6 55 12 65 9 16 17 11 8 +16375,1 6 12 65 49 50 13 +1535,1 6 71 42 43 17 74 7 8 +11081,15 9 16 17 43 75 7 8 +18419,1 6 12 16 17 37 35 54 7 8 +11080,15 9 16 17 43 75 7 4 +23000,5 6 55 55 57 34 36 37 17 11 8 +13916,1 6 57 92 31 42 43 17 63 7 4 +23001,5 6 55 55 57 34 36 37 17 11 13 +21641,1 6 34 107 108 35 56 7 4 +21802,15 57 9 16 36 37 38 17 63 7 4 +21642,1 6 34 107 108 35 56 7 8 +25807,5 6 9 9 16 17 43 13 +14385,1 6 84 90 16 17 37 72 85 7 8 +8474,1 6 12 16 17 37 35 54 7 4 +9967,1 6 84 90 16 17 37 72 85 7 4 +10900,5 6 84 18 12 11 85 54 7 4 +26472,5 6 53 65 9 16 36 37 38 17 11 13 +1852,1 6 53 57 58 54 54 7 4 +17895,1 6 57 58 89 56 7 4 +10059,1 6 57 58 89 56 7 8 +14762,5 6 53 55 9 16 17 37 35 7 8 +19601,70 16 36 16 61 16 17 19 33 13 +7036,15 31 42 43 17 63 85 54 7 8 +25595,5 6 119 16 16 17 120 7 8 +20528,5 6 119 16 16 17 120 7 4 +26266,1 6 53 9 16 17 37 48 32 7 4 +1851,1 6 53 57 58 54 54 7 8 +23146,5 6 55 53 9 16 17 10 7 8 +17431,15 55 88 57 9 16 36 16 17 11 8 +1897,5 6 55 9 61 62 10 7 4 +14837,15 12 16 61 16 36 16 17 69 +21123,1 6 53 53 9 16 17 10 54 7 8 +7035,15 31 42 43 17 63 85 54 7 4 +17432,15 55 88 57 9 16 36 16 17 11 13 +10025,25 26 88 89 13 +18945,1 6 53 36 37 62 10 7 4 +18946,1 6 53 36 37 62 10 7 8 +19082,1 6 12 16 17 37 32 10 7 4 +10022,1 12 11 89 27 28 +14107,5 6 67 47 47 36 37 17 37 35 7 8 +25576,5 6 65 88 9 16 17 10 7 4 +950,5 6 84 12 11 85 7 8 +12681,5 6 88 51 67 36 37 17 11 8 +14108,5 6 67 47 47 36 37 17 37 35 7 4 +17823,1 6 57 92 51 36 37 17 10 93 58 7 4 +2675,5 6 84 12 11 85 7 4 +12682,5 6 88 51 67 36 37 17 11 13 +11699,5 6 65 88 9 16 17 10 7 8 +20580,1 6 55 12 55 56 56 11 8 +24564,1 6 53 53 9 16 17 10 54 7 4 +22782,5 6 31 47 42 43 17 37 72 54 7 4 +20856,1 6 55 65 66 89 27 28 +23876,15 34 36 37 17 37 115 50 54 7 8 +23875,15 34 36 37 17 37 115 50 54 7 4 +19974,1 6 9 36 37 38 10 85 54 7 8 +10728,5 6 26 105 16 61 16 17 19 7 8 +1103,1 6 53 49 36 37 17 11 8 +9188,15 96 16 36 16 17 37 108 35 7 8 +22968,1 6 18 12 16 17 43 68 89 56 7 4 +9189,15 96 16 36 16 17 37 108 35 7 4 +12615,1 6 26 65 66 11 7 4 +21343,5 6 53 18 12 16 17 37 35 85 54 7 4 +13005,1 6 26 65 66 11 7 8 +21344,5 6 53 18 12 16 17 37 35 85 54 7 8 +22967,1 6 18 12 16 17 43 68 89 56 7 8 +4543,1 6 76 42 43 17 3 8 +9307,1 6 76 42 43 17 3 4 +12998,1 6 53 49 36 37 17 11 13 +11647,5 6 64 61 62 17 37 108 52 54 7 4 +26787,1 6 18 12 16 17 10 93 7 4 +13802,5 6 57 55 53 12 36 37 38 11 8 +10899,5 6 84 18 12 11 85 54 7 8 +26471,5 6 53 65 9 16 36 37 38 17 11 8 +16850,5 6 64 61 62 17 37 108 52 54 7 8 +24739,15 53 53 9 10 54 54 7 8 +11485,1 6 57 57 96 36 37 38 19 13 +15802,1 6 55 88 57 9 16 36 37 38 17 10 7 4 +26566,5 6 55 12 57 9 36 16 17 37 108 35 7 4 +16684,5 6 55 12 57 9 36 16 17 37 108 35 7 8 +8746,15 12 39 36 16 36 37 38 17 11 13 +22365,15 53 53 9 10 54 54 7 4 +10139,1 12 16 36 16 17 37 35 54 7 8 +21630,5 6 84 86 9 16 36 16 17 37 72 85 7 8 +17258,15 12 36 16 17 37 115 72 7 8 +12475,15 9 16 39 36 16 61 16 17 37 10 7 4 +23063,1 12 57 9 16 36 37 38 17 10 7 4 +14786,1 6 96 36 16 21 77 78 22 79 4 +17259,15 12 36 16 17 37 115 72 7 4 +12476,15 9 16 39 36 16 61 16 17 37 10 7 8 +18169,5 6 119 16 17 91 7 4 +10553,1 12 16 36 16 17 37 35 54 7 4 +22198,5 6 12 39 36 16 39 36 16 17 19 13 +17744,5 6 57 57 9 16 17 37 72 7 4 +5761,1 6 49 36 37 17 62 10 7 8 +17745,5 6 57 57 9 16 17 37 72 7 8 +6149,15 12 36 16 17 37 48 35 7 8 +13968,15 65 57 86 87 13 +13729,1 6 57 55 9 61 62 68 7 8 +11087,5 6 51 52 66 58 7 4 +14237,5 45 21 22 17 43 50 7 8 +24281,1 6 57 53 71 72 13 +16719,1 6 53 9 16 17 10 30 7 4 +20999,1 6 86 12 90 16 17 120 7 8 +22274,1 6 57 55 9 61 62 68 7 4 +11086,5 6 51 52 66 58 7 8 +12366,5 45 21 22 17 43 50 7 4 +16718,1 6 53 9 16 17 10 30 7 8 +13985,1 6 29 9 16 36 37 38 37 72 30 7 4 +6148,15 12 36 16 17 37 48 35 7 4 +26833,5 6 65 66 89 54 7 4 +5762,1 6 49 36 37 17 62 10 7 4 +10853,1 6 12 16 17 37 10 7 8 +1096,1 6 53 49 50 54 7 8 +10854,1 6 12 16 17 37 10 7 4 +571,5 6 64 36 37 38 63 7 8 +1095,1 6 53 49 50 54 7 4 +26832,5 6 65 66 89 54 7 8 +19265,5 6 57 88 67 68 7 8 +17201,15 44 34 117 16 17 19 13 +1334,5 6 64 36 37 38 63 7 4 +3930,1 6 53 9 16 36 37 38 37 52 54 7 8 +25110,1 6 84 71 42 43 74 85 7 8 +23212,15 67 114 107 108 115 72 54 7 8 +11295,15 88 26 65 9 16 17 37 50 7 8 +23213,15 67 114 107 108 115 72 54 7 4 +11296,15 88 26 65 9 16 17 37 50 7 4 +20511,1 6 53 9 16 36 37 38 37 52 54 7 4 +18339,15 12 16 17 37 35 87 7 8 +7059,1 6 16 17 17 7 8 +3099,15 9 16 36 16 17 37 10 7 4 +19948,1 6 92 9 10 27 7 8 +7619,1 6 16 17 17 7 4 +21756,1 6 12 26 34 36 37 17 37 108 35 7 4 +17913,15 88 65 88 9 16 17 10 7 8 +20770,5 6 84 18 12 16 17 37 72 85 54 7 8 +3100,15 9 16 36 16 17 37 10 7 8 +12982,1 6 92 9 10 27 7 4 +18338,15 12 16 17 37 35 87 7 4 +19157,5 6 84 18 12 16 17 37 72 85 54 7 4 +25149,5 6 44 9 16 42 16 17 19 7 8 +8235,1 6 57 92 57 9 16 17 37 35 7 4 +13216,5 6 44 9 16 42 16 17 19 7 4 +137,1 6 55 57 53 31 47 48 50 7 4 +165,1 6 51 61 62 63 7 4 +13389,1 12 16 36 37 38 37 48 50 7 8 +4854,15 96 16 36 16 61 16 17 19 13 +2812,15 55 55 71 47 48 68 7 8 +13087,1 12 16 36 37 38 37 48 50 7 4 +151,1 6 51 61 62 63 7 8 +2811,15 55 55 71 47 48 68 7 4 +25053,1 6 76 16 36 37 38 17 10 7 8 +17149,1 6 92 34 42 43 17 63 7 4 +20594,1 6 53 18 12 16 17 37 11 8 +11835,1 6 53 16 17 11 13 +17148,1 6 92 34 42 43 17 63 7 8 +16169,1 6 64 61 62 17 37 35 58 89 13 +18785,1 6 34 107 36 16 42 16 17 37 35 7 8 +11579,1 12 9 34 36 37 17 11 8 +3966,1 6 55 56 89 13 +22650,1 6 12 12 16 17 37 35 11 7 4 +22154,15 9 9 16 17 37 35 7 8 +2595,1 6 53 51 52 13 +9535,5 6 57 53 31 32 13 +22153,15 9 9 16 17 37 35 7 4 +25005,5 6 84 9 16 17 11 13 +960,5 6 84 9 16 17 11 8 +25765,1 6 55 55 55 9 16 17 37 48 72 7 4 +11834,1 6 53 16 17 11 8 +12390,1 6 64 61 62 17 37 52 11 7 4 +4472,1 6 55 55 55 9 16 17 37 48 72 7 8 +26062,1 6 64 61 62 17 37 52 11 7 8 +20767,5 6 53 55 31 47 36 37 17 10 7 4 +22749,5 6 31 36 37 19 33 13 +8539,1 6 53 49 36 37 17 3 4 +2520,15 67 47 36 37 10 7 8 +11730,5 6 53 55 31 47 36 37 17 10 7 8 +25304,5 6 96 16 36 37 38 17 10 7 4 +11167,5 6 96 16 36 37 38 17 10 7 8 +17914,15 88 65 88 9 16 17 10 7 4 +17170,5 6 57 92 31 36 37 17 11 8 +15205,5 6 12 90 16 61 16 17 19 7 8 +20419,5 6 51 42 43 17 37 35 87 56 7 4 +17999,5 6 12 90 16 61 16 17 19 7 4 +8540,1 6 53 49 36 37 17 3 8 +2519,15 67 47 36 37 10 7 4 +16356,1 6 12 36 37 38 37 72 7 4 +5279,5 6 57 53 57 49 50 54 7 4 +9929,1 6 12 36 37 38 37 72 7 8 +3678,1 6 88 57 58 13 +24735,1 6 53 57 58 58 54 54 7 8 +21795,5 6 67 47 48 72 11 7 8 +9728,1 6 49 50 11 7 8 +25346,5 6 53 55 34 36 37 17 62 10 7 8 +5173,15 53 16 17 17 54 7 8 +5043,1 6 49 50 11 7 4 +5172,15 53 16 17 17 54 7 4 +13555,15 9 9 16 17 62 10 7 4 +16173,1 6 64 61 62 17 62 68 7 4 +13556,15 9 9 16 17 62 10 7 8 +16174,1 6 64 61 62 17 62 68 7 8 +363,5 6 53 71 47 48 68 54 7 8 +17453,5 6 26 34 47 36 37 11 8 +366,5 6 53 71 47 48 68 54 7 4 +9375,1 6 57 12 16 17 10 54 7 4 +14936,5 6 84 9 10 66 27 28 +17462,5 6 26 34 47 36 37 11 13 +21627,1 6 57 12 16 17 10 54 7 8 +25551,5 6 64 16 39 36 16 61 16 17 37 32 93 7 4 +25856,15 44 9 16 36 16 17 37 52 54 7 8 +20450,1 6 51 47 48 35 54 7 4 +597,1 6 64 16 17 11 8 +1989,1 6 64 16 17 11 13 +25857,15 44 9 16 36 16 17 37 52 54 7 4 +4307,1 12 11 89 23 24 +16294,1 6 57 71 117 16 17 118 17 11 8 +2333,15 57 53 9 16 61 16 17 75 7 8 +2332,15 57 53 9 16 61 16 17 75 7 4 +2355,1 6 31 36 37 17 10 7 8 +7937,1 6 84 18 12 16 17 11 13 +21499,70 16 36 16 61 16 17 37 35 54 54 7 4 +18565,1 6 31 36 37 17 10 7 4 +9490,1 6 53 16 17 7 8 +21498,70 16 36 16 61 16 17 37 35 54 54 7 8 +8045,1 6 124 47 36 37 75 7 8 +10252,1 6 64 16 117 118 48 72 66 11 8 +2044,1 6 84 18 12 16 17 11 8 +2541,5 6 53 51 36 37 17 10 7 8 +23043,5 6 88 88 88 88 9 16 17 10 7 4 +23049,15 55 57 9 16 17 63 7 8 +8041,1 6 124 47 36 37 75 7 4 +23050,15 55 57 9 16 17 63 7 4 +6138,1 6 34 47 36 37 17 37 35 7 4 +20449,1 6 51 47 48 35 54 7 8 +26770,1 6 53 16 17 7 4 +2997,5 6 53 51 36 37 17 10 7 4 +10073,1 6 34 47 36 37 17 37 35 7 8 +10328,15 16 42 43 17 3 4 +24395,5 6 53 51 117 16 17 118 17 62 10 7 8 +136,1 6 55 57 53 31 47 48 50 7 8 +15353,15 55 12 9 16 17 118 17 10 7 8 +25480,5 6 96 16 39 36 16 42 16 17 19 7 4 +15352,15 55 12 9 16 17 118 17 10 7 4 +25479,5 6 96 16 39 36 16 42 16 17 19 7 8 +16702,5 6 34 107 47 36 37 10 7 8 +10329,15 16 42 43 17 3 8 +25397,5 45 21 22 17 37 32 7 8 +6445,1 6 65 88 57 9 16 17 10 7 8 +7913,1 6 65 88 57 9 16 17 10 7 4 +6390,5 6 49 36 37 17 19 33 13 +12778,15 55 88 57 58 56 54 7 4 +4980,15 55 88 57 58 56 54 7 8 +26452,5 6 53 34 107 36 37 63 54 7 4 +8261,15 96 16 36 16 61 16 17 11 13 +8260,15 96 16 36 16 61 16 17 11 8 +7427,1 6 57 51 47 47 36 37 63 7 8 +10733,1 6 57 51 47 47 36 37 63 7 4 +732,1 6 55 88 55 9 16 17 62 10 7 8 +7364,5 6 96 16 39 36 16 21 77 78 22 8 +23616,15 57 55 34 107 108 35 54 7 8 +7017,5 6 12 16 36 37 38 17 69 +24869,1 6 12 16 61 16 61 16 17 19 13 +23615,15 57 55 34 107 108 35 54 7 4 +753,1 12 11 89 11 8 +25398,5 45 21 22 17 37 32 7 4 +26334,1 12 16 117 118 35 7 4 +9882,15 55 9 16 36 37 38 17 10 54 7 4 +7097,5 6 64 61 62 17 37 35 58 7 4 +25065,5 6 57 65 9 16 17 11 8 +3008,1 6 55 9 16 42 16 17 19 7 8 +9883,15 55 9 16 36 37 38 17 10 54 7 8 +7096,5 6 64 61 62 17 37 35 58 7 8 +23335,5 6 29 9 16 17 63 7 8 +15718,5 6 121 122 122 58 13 +24093,5 6 65 55 56 7 4 +23613,1 6 53 34 35 56 54 7 4 +26248,15 9 36 37 17 37 10 7 8 +3551,1 6 34 107 108 35 7 8 +19209,5 6 65 66 56 7 4 +14795,15 65 9 16 61 16 17 37 108 35 54 7 4 +5149,1 6 53 51 61 62 63 7 8 +23614,1 6 53 34 35 56 54 7 8 +6357,15 67 36 37 19 11 8 +2074,1 6 34 107 108 35 7 4 +16504,15 12 16 36 16 17 118 17 11 8 +21601,5 6 65 66 56 7 8 +14794,15 65 9 16 61 16 17 37 108 35 54 7 8 +3563,5 6 12 26 65 9 16 17 37 50 7 8 +5501,1 6 53 51 61 62 63 7 4 +23022,5 6 65 55 56 7 8 +3562,5 6 12 26 65 9 16 17 37 50 7 4 +26247,15 9 36 37 17 37 10 7 4 +18824,1 6 53 9 16 61 16 17 75 7 8 +11706,1 6 55 55 53 9 10 13 +14490,1 6 55 9 16 42 16 17 19 7 4 +19673,1 6 76 16 42 16 17 62 10 7 4 +16505,15 12 16 36 16 17 118 17 11 13 +19672,1 6 76 16 42 16 17 62 10 7 8 +1792,1 6 12 11 23 7 8 +9302,15 55 55 12 90 16 61 16 17 37 50 7 4 +11780,1 6 92 64 16 36 37 38 63 93 7 8 +19378,15 53 18 12 11 14 54 7 8 +11781,1 6 92 64 16 36 37 38 63 93 7 4 +24328,1 6 64 61 62 17 37 115 35 11 8 +7297,1 6 92 12 34 35 13 +9303,15 55 55 12 90 16 61 16 17 37 50 7 8 +7079,1 6 84 12 16 17 11 85 54 7 4 +16643,1 6 64 16 42 16 21 77 78 22 8 +1367,5 6 53 9 36 16 17 37 50 85 54 7 8 +1368,5 6 53 9 36 16 17 37 50 85 54 7 4 +25645,15 34 36 37 38 37 48 68 7 4 +19377,15 53 18 12 11 14 54 7 4 +1689,5 6 12 12 16 21 77 78 22 8 +1791,1 6 12 11 23 7 4 +22969,1 6 84 57 51 52 13 +20798,5 6 76 61 62 17 37 50 54 7 4 +19001,5 6 55 55 88 89 66 56 7 4 +20799,5 6 76 61 62 17 37 50 54 7 8 +19176,1 6 55 9 16 36 37 38 63 7 8 +11814,1 6 49 107 42 43 17 37 52 54 7 4 +22102,1 6 53 9 10 58 54 54 7 8 +7731,1 6 55 9 16 36 37 38 63 7 4 +23929,5 6 64 61 62 17 37 50 11 54 7 8 +14046,5 6 64 61 62 17 37 50 11 54 7 4 +22101,1 6 53 9 10 58 54 54 7 4 +23982,1 6 49 36 37 17 10 54 7 8 +1779,5 6 53 31 36 37 17 10 7 8 +12041,5 6 53 12 51 109 110 11 54 7 8 +1131,5 6 53 31 36 37 17 10 7 4 +24464,5 6 64 36 37 38 17 37 35 7 8 +5875,15 51 107 108 108 50 54 7 4 +24116,5 6 34 47 48 52 11 8 +15982,5 6 31 36 37 17 37 48 68 7 8 +6917,1 6 9 16 42 16 17 19 7 8 +5874,15 51 107 108 108 50 54 7 8 +263,5 6 31 36 37 17 37 48 68 7 4 +6918,1 6 9 16 42 16 17 19 7 4 +22320,5 6 12 57 9 16 42 16 17 11 13 +23286,1 6 51 42 43 17 106 7 4 +2071,5 6 12 57 9 16 42 16 17 11 8 +20471,1 6 53 53 9 16 17 62 10 7 4 +23287,1 6 51 42 43 17 106 7 8 +4753,1 6 57 58 54 7 4 +537,1 6 57 58 54 7 8 +6626,1 6 53 55 34 35 7 4 +6627,1 6 53 55 34 35 7 8 +15867,1 6 53 53 9 16 17 62 10 7 8 +17639,1 6 65 88 55 56 7 8 +20984,1 6 36 37 19 7 4 +21805,1 6 12 9 16 17 43 68 7 4 +1992,15 65 9 16 17 100 7 4 +21806,1 6 12 9 16 17 43 68 7 8 +1991,15 65 9 16 17 100 7 8 +26109,1 6 12 16 61 16 61 16 17 11 13 +4385,15 12 90 16 17 120 7 8 +4386,15 12 90 16 17 120 7 4 +10406,1 6 55 55 65 66 56 7 8 +25523,15 65 49 107 108 50 7 8 +3797,5 6 71 42 43 17 10 7 4 +25522,15 65 49 107 108 50 7 4 +22053,5 6 9 16 17 118 17 37 35 87 7 4 +22710,5 6 31 36 37 37 54 54 7 8 +10407,1 6 55 55 65 66 56 7 4 +22711,5 6 31 36 37 37 54 54 7 4 +2793,1 6 49 36 37 17 37 35 7 8 +20271,15 55 53 12 16 61 16 61 16 17 19 13 +7442,5 6 53 12 34 107 107 36 37 94 +2794,1 6 49 36 37 17 37 35 7 4 +6260,5 6 9 10 66 27 7 8 +12616,5 6 9 10 66 27 7 4 +2946,1 6 92 34 35 7 4 +22415,1 6 64 61 62 17 37 11 54 7 4 +8116,5 6 71 42 43 17 10 7 8 +19656,5 6 49 47 36 37 17 19 +20048,5 6 12 16 36 37 38 11 8 +20150,15 96 16 36 37 38 17 19 7 4 +20149,15 96 16 36 37 38 17 19 7 8 +9703,1 6 92 34 35 7 8 +18184,1 6 64 61 62 17 37 11 54 7 8 +23571,1 6 12 16 61 16 61 16 17 11 8 +2419,5 6 9 10 87 58 7 4 +9015,1 6 119 120 7 4 +10967,15 88 57 9 16 36 37 38 17 10 7 4 +14491,5 6 51 36 37 17 19 33 13 +2420,5 6 9 10 87 58 7 8 +4918,1 6 53 55 9 16 17 10 7 4 +10968,15 88 57 9 16 36 37 38 17 10 7 8 +24153,1 6 53 55 9 16 17 10 7 8 +26330,5 6 64 53 18 9 16 17 11 8 +9018,1 6 119 120 7 8 +22625,1 6 64 16 36 37 38 37 48 35 87 7 8 +5534,5 6 34 47 48 52 7 4 +7399,15 57 58 87 56 54 7 8 +5535,5 6 34 47 48 52 7 8 +7398,15 57 58 87 56 54 7 4 +10688,1 6 9 16 17 37 48 50 7 4 +15578,1 6 9 16 17 37 48 50 7 8 +14874,1 6 12 88 89 66 13 +25310,5 6 55 67 47 36 37 11 8 +8233,1 6 57 12 16 17 10 7 8 +25653,1 6 57 57 9 16 17 37 35 7 4 +4999,1 6 76 42 43 17 11 13 +8234,1 6 57 12 16 17 10 7 4 +25389,1 6 57 92 9 36 16 17 37 52 93 58 7 8 +4998,1 6 76 42 43 17 11 8 +19240,16 36 37 38 17 11 66 7 4 +23593,5 6 57 9 39 36 16 17 10 7 4 +23592,5 6 57 9 39 36 16 17 10 7 8 +10419,5 6 67 47 47 36 37 17 11 8 +12761,5 6 57 9 16 17 37 10 7 8 +14912,1 6 12 16 36 16 61 16 17 19 7 4 +23646,5 6 12 109 110 58 11 8 +17321,1 6 90 91 27 54 7 4 +4008,5 6 90 91 11 7 8 +24608,5 6 51 117 16 17 10 7 8 +13874,5 6 67 47 47 36 37 17 11 13 +14911,1 6 12 16 36 16 61 16 17 19 7 8 +8771,5 6 64 61 62 17 37 68 58 7 4 +23108,1 6 57 58 11 87 7 4 +24607,5 6 51 117 16 17 10 7 4 +25654,1 6 57 57 9 16 17 37 35 7 8 +8772,5 6 64 61 62 17 37 68 58 7 8 +19778,16 36 37 38 17 11 66 7 8 +6543,5 6 90 91 11 7 4 +12276,15 65 34 35 13 +20958,5 6 57 71 36 37 17 10 7 8 +13631,5 6 64 61 62 17 43 32 10 54 7 8 +10013,1 6 18 12 16 17 37 48 72 7 4 +13630,5 6 64 61 62 17 43 32 10 54 7 4 +10012,1 6 18 12 16 17 37 48 72 7 8 +2202,5 6 9 10 66 27 11 8 +2198,1 12 11 89 7 8 +2784,1 12 16 39 36 39 36 16 17 19 13 +2467,1 12 11 89 7 4 +3890,1 6 119 120 11 8 +24797,15 65 88 9 16 17 62 10 7 4 +14644,15 57 9 36 37 38 37 108 35 54 7 8 +2318,1 6 57 88 57 58 58 89 13 +26838,15 88 88 9 16 36 37 38 37 48 35 54 7 8 +21604,1 6 55 65 88 89 7 4 +26839,15 88 88 9 16 36 37 38 37 48 35 54 7 4 +3891,1 6 119 120 11 13 +21603,1 6 55 65 88 89 7 8 +24701,15 31 42 43 17 63 54 7 4 +1927,1 6 55 53 57 9 16 61 16 17 62 10 7 4 +11879,15 55 9 16 17 37 72 7 4 +24702,15 31 42 43 17 63 54 7 8 +11880,15 55 9 16 17 37 72 7 8 +17980,1 6 55 53 57 9 16 61 16 17 62 10 7 8 +24796,15 65 88 9 16 17 62 10 7 8 +17078,1 6 88 9 16 17 37 52 89 7 8 +138,5 6 49 47 36 37 17 59 +697,5 6 53 9 16 61 16 17 10 85 54 7 8 +10463,5 6 55 57 9 36 16 17 37 52 7 8 +24863,15 86 9 16 17 37 52 7 8 +698,5 6 53 9 16 61 16 17 10 85 54 7 4 +5791,70 16 36 16 42 16 17 43 72 7 8 +13118,1 6 57 58 56 56 7 8 +21250,1 6 55 90 16 36 37 38 37 35 54 7 8 +14645,15 57 9 36 37 38 37 108 35 54 7 4 +22208,1 6 9 16 36 37 38 69 +5790,70 16 36 16 42 16 17 43 72 7 4 +8338,1 6 55 55 53 9 16 61 16 17 11 8 +8339,1 6 55 55 53 9 16 61 16 17 11 13 +24864,15 86 9 16 17 37 52 7 4 +9332,1 6 57 58 56 56 7 4 +19676,1 6 57 57 86 87 7 4 +2151,15 51 36 37 19 58 11 8 +20378,5 6 64 36 37 38 37 35 11 8 +13124,1 6 49 47 48 35 54 7 8 +19015,1 6 12 9 16 17 69 +5604,1 6 55 53 84 85 7 8 +21436,1 6 67 47 47 36 37 11 13 +21733,1 6 29 18 12 16 42 16 17 19 7 8 +26159,15 55 57 9 16 36 16 17 37 48 72 54 7 4 +10043,1 6 55 53 84 85 7 4 +2364,15 55 57 9 16 36 37 38 17 37 32 7 8 +17894,15 12 36 37 38 17 11 66 7 4 +19882,15 88 57 58 58 66 56 7 8 +23741,5 6 53 71 72 54 54 7 4 +2363,15 55 57 9 16 36 37 38 17 37 32 7 4 +88,1 6 29 18 12 16 42 16 17 19 7 4 +12004,5 6 53 71 72 54 54 7 8 +19883,15 88 57 58 58 66 56 7 4 +26160,15 55 57 9 16 36 16 17 37 48 72 54 7 8 +21146,1 6 53 86 9 16 17 63 54 7 4 +2585,1 6 67 47 48 72 7 8 +25199,5 6 9 10 27 66 54 7 8 +7215,1 6 53 86 9 16 17 63 54 7 8 +14972,1 6 67 47 47 36 37 11 8 +16243,1 6 57 55 12 11 13 +793,1 6 67 47 48 72 7 4 +9185,5 6 55 12 55 56 58 89 13 +4717,15 34 36 37 19 89 7 4 +9447,1 6 9 16 36 16 17 37 48 35 54 7 4 +6895,15 65 88 88 9 16 17 11 13 +14512,1 6 124 9 16 17 10 54 7 8 +4718,15 34 36 37 19 89 7 8 +6894,15 65 88 88 9 16 17 11 8 +20370,1 6 29 9 16 17 37 35 87 30 7 8 +23116,1 6 119 16 17 62 10 7 4 +5469,1 6 65 57 58 89 7 8 +9040,1 6 119 16 17 62 10 7 8 +5468,1 6 65 57 58 89 7 4 +12729,15 71 47 36 37 17 10 30 7 8 +12728,15 71 47 36 37 17 10 30 7 4 +25505,1 12 11 14 54 85 7 4 +17463,1 6 57 12 36 37 38 37 48 35 7 8 +3096,5 2 16 17 37 50 7 8 +12241,1 6 64 61 16 17 19 7 4 +22495,5 6 67 68 58 66 54 7 4 +7636,5 6 55 56 87 7 8 +5880,15 51 107 107 107 36 37 17 19 13 +3097,5 2 16 17 37 50 7 4 +16200,5 6 67 68 58 66 54 7 8 +7635,5 6 55 56 87 7 4 +13123,1 6 49 47 48 35 54 7 4 +12240,1 6 64 61 16 17 19 7 8 +7425,1 6 57 51 47 48 48 52 7 4 +26468,15 90 36 16 17 11 56 7 4 +25517,5 6 53 9 16 36 37 38 37 48 52 54 85 7 8 +7426,1 6 57 51 47 48 48 52 7 8 +23914,5 6 9 10 58 89 27 56 7 4 +10002,15 31 117 16 17 10 7 8 +10001,15 31 117 16 17 10 7 4 +22393,1 6 53 55 9 42 16 61 16 17 11 8 +21334,1 6 84 9 36 16 17 37 52 85 93 7 4 +9479,1 6 12 16 36 16 17 63 7 4 +9480,1 6 12 16 36 16 17 63 7 8 +15545,1 6 84 90 16 17 37 35 85 54 7 8 +25330,1 6 64 16 17 37 32 10 7 4 +26509,1 6 86 34 47 48 35 87 7 8 +13120,5 6 55 55 57 53 12 16 36 37 38 17 11 8 +14326,1 6 84 90 16 17 37 35 85 54 7 4 +10746,1 6 12 71 72 7 8 +20699,1 6 64 16 17 37 32 10 7 8 +13205,1 6 12 71 72 7 4 +4199,5 6 57 12 16 61 16 61 16 17 62 10 7 4 +15751,1 6 86 34 47 48 35 87 7 4 +10919,1 6 9 36 16 17 69 +5831,15 57 53 57 58 13 +16622,1 6 88 57 71 36 37 10 7 4 +4058,1 6 18 12 16 17 118 17 11 8 +12002,5 6 90 16 17 11 13 +25575,1 6 18 12 16 17 118 17 11 13 +9286,5 6 49 47 36 37 11 8 +18111,1 6 88 57 71 36 37 10 7 8 +613,5 6 90 16 17 11 8 +5345,1 6 12 9 16 17 37 50 7 8 +5346,1 6 12 9 16 17 37 50 7 4 +19853,5 6 88 53 53 54 89 7 8 +3568,1 6 88 96 39 36 16 21 77 78 22 8 +23550,5 6 53 36 37 17 37 32 7 4 +26213,1 6 53 12 61 16 21 77 78 22 8 +6931,16 16 17 10 7 8 +19742,15 88 55 88 119 16 42 16 17 37 35 87 7 4 +24571,5 6 12 88 90 16 36 16 17 37 32 7 4 +23551,5 6 53 36 37 17 37 32 7 8 +5212,1 6 49 36 37 11 13 +6932,16 16 17 10 7 4 +23683,15 67 36 37 17 19 13 +1438,1 6 49 36 37 11 8 +2148,15 71 36 37 19 58 11 8 +18605,1 6 57 57 65 9 16 17 10 7 4 +10622,1 12 36 16 17 37 35 7 8 +6694,1 6 57 57 65 9 16 17 10 7 8 +9534,5 6 49 47 36 37 11 13 +21714,5 6 34 53 12 16 16 17 19 13 +10154,1 12 36 16 17 37 35 7 4 +6958,1 6 119 16 42 16 17 37 50 7 8 +4366,1 6 64 53 9 10 54 7 8 +1898,15 55 9 61 62 10 7 4 +23801,15 51 114 36 37 17 11 8 +1197,1 6 9 16 36 16 36 16 17 37 32 7 4 +1899,15 55 9 61 62 10 7 8 +3904,5 6 12 65 71 107 108 68 66 11 8 +17048,5 6 34 36 37 17 37 48 35 54 7 8 +11727,1 6 53 57 31 47 48 32 54 7 4 +23802,15 51 114 36 37 17 11 13 +11263,5 6 34 36 37 17 37 48 35 54 7 4 +4367,1 6 64 53 9 10 54 7 4 +11261,15 34 36 37 17 37 48 35 54 7 4 +10424,1 6 18 12 16 17 10 54 54 7 8 +19875,5 6 53 12 49 36 37 17 11 8 +1611,5 6 96 16 36 37 38 17 62 10 7 8 +1612,5 6 96 16 36 37 38 17 62 10 7 4 +7854,15 67 47 107 108 108 48 72 54 7 4 +11262,15 34 36 37 17 37 48 35 54 7 8 +24837,5 6 73 16 17 98 +7855,15 67 47 107 108 108 48 72 54 7 8 +10425,1 6 18 12 16 17 10 54 54 7 4 +3888,5 6 88 55 67 61 62 63 7 4 +6782,5 6 53 9 16 36 37 38 17 10 54 7 4 +26640,1 6 49 36 37 17 43 52 7 8 +4283,5 6 88 55 67 61 62 63 7 8 +4519,5 6 53 12 11 56 7 8 +12067,1 6 65 88 88 57 9 16 117 118 72 11 89 7 8 +11558,1 6 64 61 62 17 37 48 52 54 7 8 +4518,5 6 53 12 11 56 7 4 +8429,1 6 49 47 36 37 69 +8891,1 6 84 71 36 37 11 8 +11559,1 6 64 61 62 17 37 48 52 54 7 4 +26140,1 6 65 88 88 57 9 16 117 118 72 11 89 7 4 +16183,5 6 57 34 36 37 17 11 8 +18022,5 6 73 16 17 69 +6783,5 6 53 9 16 36 37 38 17 10 54 7 8 +21908,5 6 57 34 36 37 17 11 13 +15052,5 6 76 61 62 37 52 7 4 +23340,5 6 76 61 62 37 52 7 8 +16360,15 53 49 50 54 54 7 4 +3145,1 6 55 56 56 13 +884,5 6 88 9 16 17 63 7 4 +885,5 6 88 9 16 17 63 7 8 +16359,15 53 49 50 54 54 7 8 +21368,15 9 61 62 48 32 7 8 +21367,15 9 61 62 48 32 7 4 +14520,5 6 53 12 47 36 37 17 10 7 8 +13471,5 6 29 9 16 61 62 11 13 +14519,5 6 53 12 47 36 37 17 10 7 4 +19275,5 6 55 34 107 108 108 35 56 7 8 +18613,1 12 36 16 17 62 10 7 8 +21119,5 6 57 51 36 37 17 91 85 7 4 +13470,5 6 29 9 16 61 62 11 8 +14743,5 6 55 34 107 108 108 35 56 7 4 +9616,1 12 36 16 17 62 10 7 4 +9949,5 6 57 51 36 37 17 91 85 7 8 +19995,1 6 53 76 36 37 38 63 54 7 4 +10166,15 57 9 16 42 16 17 19 13 +12536,5 6 12 109 9 16 17 62 10 7 4 +3505,5 6 53 53 51 61 62 63 7 4 +12535,5 6 12 109 9 16 17 62 10 7 8 +14136,1 6 65 86 87 13 +5397,15 12 36 37 38 17 37 10 7 8 +22328,5 6 49 117 16 17 19 7 4 +20346,1 6 64 16 36 37 38 17 62 10 7 4 +4887,1 6 64 16 36 37 38 17 62 10 7 8 +18801,5 6 64 61 62 17 37 32 85 54 7 4 +21505,1 6 96 16 17 10 7 4 +6573,15 86 57 9 16 17 10 7 8 +19996,1 6 53 76 36 37 38 63 54 7 8 +21741,5 6 53 67 47 42 43 17 10 7 8 +15946,5 6 64 61 62 17 37 32 85 54 7 8 +3212,1 6 55 56 58 13 +21504,1 6 96 16 17 10 7 8 +6574,15 86 57 9 16 17 10 7 4 +5398,15 12 36 37 38 17 37 10 7 4 +1463,5 6 67 47 48 48 72 7 4 +3286,15 57 65 57 58 56 7 8 +23045,15 88 88 88 88 9 16 17 10 7 8 +9736,5 6 12 39 36 16 17 11 8 +23044,15 88 88 88 88 9 16 17 10 7 4 +20815,1 6 53 12 16 36 16 61 16 17 19 13 +19709,5 6 53 36 37 11 8 +13482,15 86 61 62 10 7 4 +5451,1 6 67 47 48 48 68 7 4 +19880,15 55 65 57 58 56 7 4 +21793,1 6 67 47 48 72 11 8 +21624,5 6 67 47 48 48 72 7 8 +19710,5 6 53 36 37 11 13 +19123,1 6 12 36 37 38 37 48 72 7 8 +26010,15 90 16 17 91 7 8 +5861,1 6 67 47 48 48 68 7 8 +26009,15 90 16 17 91 7 4 +11068,5 6 12 49 36 37 17 43 32 54 7 4 +20994,5 6 12 55 88 55 56 13 +26420,1 6 64 16 17 91 54 7 4 +22348,5 6 9 16 17 37 108 68 58 7 4 +26078,1 6 64 61 16 17 37 68 7 8 +15757,5 6 12 49 36 37 17 43 32 54 7 8 +26419,1 6 64 16 17 91 54 7 8 +15960,5 6 9 16 17 37 108 68 58 7 8 +25235,1 6 64 61 16 17 37 68 7 4 +23112,1 6 55 86 87 7 8 +17860,15 57 49 109 110 54 7 4 +3481,1 6 18 12 16 17 118 17 3 4 +4815,15 65 88 9 16 17 10 54 7 8 +9871,5 6 26 57 58 66 11 8 +11792,1 6 92 64 16 36 37 38 37 108 35 54 7 4 +13914,15 71 36 37 17 37 68 7 8 +13481,15 86 61 62 10 7 8 +23561,15 55 65 57 58 56 7 8 +13915,15 71 36 37 17 37 68 7 4 +16692,5 6 31 47 48 48 32 7 8 +17861,15 57 49 109 110 54 7 8 +4814,15 65 88 9 16 17 10 54 7 4 +3272,15 57 65 57 58 56 7 4 +9019,1 6 55 86 87 7 4 +16691,5 6 31 47 48 48 32 7 4 +11793,1 6 92 64 16 36 37 38 37 108 35 54 7 8 +2371,15 67 36 37 17 11 13 +5144,5 6 53 88 89 13 +7439,1 6 34 107 108 35 11 8 +2370,15 67 36 37 17 11 8 +24682,1 6 88 9 16 17 98 +24163,1 6 41 88 89 58 58 11 8 +26139,1 6 65 88 88 12 71 72 7 4 +23919,15 96 36 37 38 19 56 11 56 7 8 +24681,1 6 88 9 16 17 69 +17663,1 6 53 9 16 17 37 11 7 8 +7657,5 6 51 36 37 17 37 68 7 8 +10543,1 6 34 35 56 54 7 8 +15351,5 6 55 12 9 16 17 118 17 10 7 4 +11875,5 6 55 57 57 9 16 36 37 38 37 72 7 4 +17952,15 57 12 65 66 27 11 8 +13912,5 6 51 36 37 17 37 68 7 4 +10542,1 6 34 35 56 54 7 4 +17651,5 6 34 36 37 120 7 4 +12062,1 6 65 88 88 12 71 72 7 8 +19521,15 57 88 57 12 16 21 77 78 22 79 4 +18551,15 31 61 62 17 63 7 8 +20818,5 6 53 9 39 36 16 61 16 17 62 10 7 8 +19181,5 6 53 9 39 36 16 61 16 17 62 10 7 4 +23109,5 6 12 51 42 43 17 10 7 4 +23827,5 6 53 53 55 56 13 +2440,15 88 67 114 36 37 17 11 13 +24241,5 6 12 9 16 17 37 87 7 8 +18234,15 55 53 12 36 37 38 11 13 +2439,15 88 67 114 36 37 17 11 8 +18233,15 55 53 12 36 37 38 11 8 +17267,15 55 71 72 13 +6732,15 34 47 48 7 8 +18077,5 6 84 90 16 36 16 61 16 17 19 7 8 +22338,5 45 21 22 17 19 110 35 7 4 +6733,15 34 47 48 7 4 +24019,5 6 84 90 16 36 16 61 16 17 19 7 4 +26273,5 6 67 67 67 36 37 17 62 10 7 4 +17734,1 6 92 42 43 17 37 32 93 7 8 +4979,15 53 55 88 89 13 +22429,1 6 92 42 43 17 37 32 93 7 4 +18550,15 31 61 62 17 63 7 4 +14096,1 6 12 9 16 17 19 7 4 +3360,15 57 9 16 42 16 17 11 13 +14095,1 6 12 9 16 17 19 7 8 +3359,15 57 9 16 42 16 17 11 8 +22337,5 45 21 22 17 19 110 35 7 8 +1728,15 55 12 55 56 56 89 13 +7138,5 6 84 55 9 16 17 10 85 7 8 +12175,5 6 64 39 36 16 17 63 7 8 +17613,5 6 53 9 39 36 16 61 16 17 37 35 7 8 +22989,5 6 53 31 107 61 62 63 7 4 +7322,5 6 53 12 61 16 21 77 78 22 79 4 +15061,1 6 53 49 36 37 74 54 7 8 +17605,1 6 57 9 16 39 36 16 17 10 7 8 +26440,70 16 36 16 42 16 17 19 7 8 +12176,5 6 64 39 36 16 17 63 7 4 +26385,1 6 53 55 9 16 17 43 52 7 8 +5493,1 6 9 10 58 11 58 7 4 +16255,5 6 64 61 62 11 58 7 8 +23660,5 6 57 65 66 89 13 +7282,5 6 64 61 62 11 58 7 4 +15597,15 88 57 58 89 56 54 85 54 7 4 +10886,1 6 64 16 36 37 38 17 10 54 7 4 +15596,15 88 57 58 89 56 54 85 54 7 8 +8128,1 6 64 16 36 37 38 17 10 54 7 8 +6484,1 6 53 49 36 37 74 54 7 4 +13531,1 6 57 9 16 39 36 16 17 10 7 4 +10632,5 6 12 39 36 16 17 19 13 +14959,5 6 12 57 9 16 17 10 7 4 +12285,5 6 12 57 9 16 17 10 7 8 +22971,1 6 84 12 11 58 85 7 4 +15725,70 16 36 16 42 16 17 37 52 7 4 +22979,1 6 84 12 11 58 85 7 8 +3194,5 6 57 57 9 16 36 16 17 37 72 7 4 +15726,70 16 36 16 42 16 17 37 52 7 8 +17612,5 6 53 9 39 36 16 61 16 17 37 35 7 4 +23117,15 53 9 16 17 19 +21884,1 6 96 36 16 17 19 11 7 4 +26441,70 16 36 16 42 16 17 19 7 4 +3466,15 67 36 37 17 118 17 10 7 8 +3538,15 57 67 61 62 63 7 8 +3467,15 67 36 37 17 118 17 10 7 4 +3537,15 57 67 61 62 63 7 4 +11175,5 6 57 57 9 16 36 16 17 37 72 7 8 +7050,15 53 53 16 17 17 10 7 8 +13879,1 6 34 36 37 17 37 32 7 4 +18911,15 71 36 37 17 11 56 7 4 +26840,1 6 53 88 55 9 16 36 37 38 37 35 54 7 8 +13164,15 53 53 16 17 17 10 7 4 +4896,15 71 36 37 17 11 56 7 8 +6349,5 6 53 12 31 32 13 +7257,1 6 71 36 16 61 16 17 11 8 +22163,5 6 12 12 16 17 37 35 11 7 4 +1287,1 6 64 16 17 37 35 54 7 8 +1288,1 6 64 16 17 37 35 54 7 4 +12969,1 6 9 10 58 11 58 7 8 +23825,70 16 39 36 39 36 16 42 16 17 37 108 52 7 4 +23824,70 16 39 36 39 36 16 42 16 17 37 108 52 7 8 +10207,1 6 55 9 16 36 37 38 17 37 68 54 7 8 +24783,5 6 57 88 89 66 7 4 +2894,1 6 51 42 43 17 37 52 54 7 4 +7517,1 6 51 42 43 17 37 52 54 7 8 +8361,5 6 51 52 89 27 7 8 +22054,15 9 16 17 118 17 37 35 87 7 4 +6785,5 6 53 9 16 39 36 16 17 10 7 8 +23503,5 6 67 117 16 17 19 7 4 +23504,5 6 67 117 16 17 19 7 8 +10142,5 6 9 61 62 48 68 7 8 +10554,5 6 9 61 62 48 68 7 4 +25227,1 6 55 53 9 16 61 16 17 11 8 +6786,5 6 53 9 16 39 36 16 17 10 7 4 +17649,1 6 34 36 37 91 7 8 +26836,15 88 65 9 16 36 37 38 17 11 13 +26835,15 88 65 9 16 36 37 38 17 11 8 +1697,1 6 71 47 48 52 7 8 +12099,1 6 71 47 48 52 7 4 +16986,1 6 9 10 58 66 58 7 8 +18055,1 6 9 10 58 66 58 7 4 +22055,15 9 16 17 118 17 37 35 87 7 8 +423,5 6 84 85 7 4 +426,5 6 84 85 7 8 +21946,5 6 12 96 36 37 38 17 19 56 11 8 +8745,15 12 39 36 16 36 37 38 17 11 8 +12026,15 34 47 48 35 87 7 4 +12027,15 34 47 48 35 87 7 8 +10229,5 6 12 65 26 9 16 42 16 17 11 8 +1083,15 55 67 61 62 63 7 4 +1084,15 55 67 61 62 63 7 8 +16229,15 57 55 53 9 16 61 16 17 19 13 +25134,5 6 9 16 36 37 38 17 37 52 54 7 8 +8139,97 16 17 19 13 +10945,1 6 53 88 57 9 16 61 16 17 10 54 54 7 8 +20220,1 6 53 88 57 9 16 61 16 17 10 54 54 7 4 +23640,1 2 16 17 43 11 13 +22905,1 6 12 55 67 61 62 63 7 4 +17847,15 86 65 66 13 +3048,1 6 12 55 67 61 62 63 7 8 +19744,15 55 88 119 16 42 16 17 37 35 87 7 8 +15235,5 6 53 86 9 16 17 63 54 7 8 +25133,5 6 9 16 36 37 38 17 37 52 54 7 4 +19743,15 55 88 119 16 42 16 17 37 35 87 7 4 +7000,5 6 53 86 9 16 17 63 54 7 4 +23639,1 2 16 17 43 11 8 +21044,5 6 12 16 17 37 48 35 11 8 +19296,5 6 9 10 27 58 13 +24619,1 6 53 18 12 16 61 16 17 10 85 54 7 4 +24618,1 6 53 18 12 16 61 16 17 10 85 54 7 8 +18743,1 6 9 16 17 17 43 32 93 7 4 +4542,97 16 17 17 94 +12346,1 6 9 16 17 17 43 32 93 7 8 +5542,5 6 57 53 90 91 54 7 8 +13709,5 6 67 42 43 17 10 54 54 7 4 +7581,15 96 16 36 16 17 37 52 7 8 +13710,5 6 67 42 43 17 10 54 54 7 8 +21393,5 6 57 53 90 91 54 7 4 +7580,15 96 16 36 16 17 37 52 7 4 +8153,1 6 49 36 37 17 59 +1715,15 55 12 57 58 56 11 56 7 4 +14657,1 6 64 36 16 17 37 35 54 7 8 +14656,1 6 64 36 16 17 37 35 54 7 4 +5014,1 6 9 16 17 43 32 30 7 8 +12419,1 6 49 36 37 19 13 +5015,1 6 9 16 17 43 32 30 7 4 +21586,5 6 53 31 42 43 17 37 108 48 72 54 7 8 +14253,1 6 49 36 37 17 69 +19037,1 6 64 16 17 106 7 4 +1731,15 55 12 57 58 56 11 56 7 8 +2522,15 55 88 57 9 36 37 38 37 50 7 4 +26754,1 6 84 55 9 16 17 10 85 7 8 +2523,15 55 88 57 9 36 37 38 37 50 7 8 +17444,5 6 31 32 27 7 4 +22853,5 6 31 32 27 7 8 +11899,1 6 12 65 71 107 108 68 66 11 8 +17736,5 6 92 42 43 17 37 32 93 7 4 +19733,1 6 64 16 17 106 7 8 +17735,5 6 92 42 43 17 37 32 93 7 8 +17962,5 6 84 12 11 56 89 85 7 4 +4736,1 6 12 57 12 11 7 4 +2249,1 6 64 61 62 17 37 68 54 7 8 +22846,5 6 86 9 16 17 63 7 4 +1134,5 6 12 51 61 62 63 7 4 +17961,5 6 84 12 11 56 89 85 7 8 +10964,15 88 65 9 16 17 37 35 7 4 +702,5 6 12 51 61 62 63 7 8 +10574,5 6 71 47 48 48 68 7 4 +11019,5 6 53 9 10 32 7 8 +2163,1 6 34 36 37 17 11 13 +10007,5 6 71 47 48 48 68 7 8 +206,1 6 34 36 37 17 11 8 +18853,5 6 53 9 10 32 7 4 +18830,5 6 86 9 16 17 63 7 8 +7180,5 6 53 67 68 54 7 4 +18434,15 9 16 61 16 17 19 7 8 +8735,1 6 55 51 52 13 +7463,15 55 88 57 9 16 36 16 17 37 50 7 8 +15106,70 16 36 16 17 37 68 7 4 +10963,15 88 65 9 16 17 37 35 7 8 +22396,1 6 12 16 36 16 61 16 17 10 54 7 4 +15107,70 16 36 16 17 37 68 7 8 +18435,15 9 16 61 16 17 19 7 4 +5800,1 6 12 57 12 11 7 8 +8027,5 6 34 109 110 123 7 4 +26715,15 9 36 37 38 17 19 33 13 +7990,1 6 57 58 27 28 +14066,15 12 16 39 36 16 36 37 38 37 48 72 7 4 +17450,5 6 26 31 47 48 35 7 4 +6062,1 6 31 47 48 52 7 8 +1391,15 34 36 37 17 62 10 7 4 +12140,1 6 53 67 47 107 36 37 17 10 7 4 +22855,5 6 26 31 47 48 35 7 8 +6061,1 6 31 47 48 52 7 4 +1392,15 34 36 37 17 62 10 7 8 +24707,1 6 53 67 47 107 36 37 17 10 7 8 +14065,15 12 16 39 36 16 36 37 38 37 48 72 7 8 +26275,15 67 67 67 36 37 17 62 10 7 8 +162,1 6 64 61 62 17 37 35 54 7 8 +1113,5 6 53 67 68 54 7 8 +4561,1 12 11 89 58 11 8 +8394,1 6 107 108 108 7 4 +14137,1 6 107 108 108 7 8 +26274,15 67 67 67 36 37 17 62 10 7 4 +20931,70 16 36 39 36 39 36 16 17 10 7 8 +8236,5 6 57 92 57 9 16 17 37 35 7 4 +20932,70 16 36 39 36 39 36 16 17 10 7 4 +8237,5 6 57 92 57 9 16 17 37 35 7 8 +209,1 6 64 61 62 17 37 35 54 7 4 +6382,15 49 36 37 19 33 13 +12743,5 6 51 61 62 17 63 7 4 +19878,15 55 88 57 58 58 66 7 4 +17553,15 57 34 35 54 7 4 +19879,15 55 88 57 58 58 66 7 8 +17554,15 57 34 35 54 7 8 +13218,1 6 44 9 16 42 16 17 19 7 8 +13217,1 6 44 9 16 42 16 17 19 7 4 +14086,15 53 9 9 16 17 62 10 7 4 +21769,1 12 11 66 89 7 4 +14479,15 55 88 57 9 16 36 16 17 37 50 7 4 +14085,15 53 9 9 16 17 62 10 7 8 +21768,1 12 11 66 89 7 8 +13986,5 6 51 61 62 17 63 7 8 +1200,5 6 31 36 37 17 69 +19114,1 6 57 58 56 54 7 8 +10251,5 6 64 16 117 118 48 72 66 11 8 +2391,15 96 16 36 16 17 37 35 54 7 8 +26048,1 6 53 67 47 36 37 17 63 93 7 4 +5679,15 55 51 47 42 43 17 63 7 4 +14780,1 6 57 58 89 54 7 4 +23645,1 6 12 109 110 58 11 8 +20065,15 31 117 16 17 75 7 4 +5678,15 55 51 47 42 43 17 63 7 8 +14779,1 6 57 58 89 54 7 8 +11018,5 6 53 9 10 32 11 8 +4739,15 34 36 16 17 37 35 7 4 +19506,5 6 71 47 47 36 37 17 11 8 +20066,15 31 117 16 17 75 7 8 +26522,5 6 76 16 42 16 17 43 50 7 8 +4116,15 34 36 16 17 37 35 7 8 +26521,5 6 76 16 42 16 17 43 50 7 4 +26103,15 55 12 55 56 58 11 8 +2392,15 96 16 36 16 17 37 35 54 7 4 +9981,15 12 16 36 37 38 17 98 +23101,5 6 53 9 9 16 36 16 17 37 50 54 7 4 +10510,5 6 34 107 36 37 10 7 8 +11671,5 6 34 107 36 37 10 7 4 +6398,15 49 36 16 17 19 7 4 +4449,1 6 53 90 16 17 37 52 54 7 4 +24057,15 53 12 51 52 11 8 +4450,1 6 53 90 16 17 37 52 54 7 8 +23836,1 6 9 16 17 37 115 50 87 7 4 +26680,70 16 36 16 42 16 17 19 13 +2431,15 88 49 50 7 8 +2430,15 88 49 50 7 4 +17803,15 55 57 9 16 36 37 38 17 10 54 7 8 +21303,15 55 12 9 16 17 43 52 7 8 +21304,15 55 12 9 16 17 43 52 7 4 +17802,15 55 57 9 16 36 37 38 17 10 54 7 4 +10080,15 67 47 36 37 17 62 10 7 4 +11039,1 6 113 61 62 17 37 32 54 7 8 +10079,15 67 47 36 37 17 62 10 7 8 +25535,15 88 55 57 12 11 58 7 8 +8462,5 6 49 36 37 17 10 93 7 4 +25536,15 88 55 57 12 11 58 7 4 +16727,5 6 49 36 37 17 10 93 7 8 +24420,1 6 12 16 36 39 36 16 17 19 13 +2458,1 6 12 16 36 16 17 37 52 7 4 +13275,1 6 34 36 37 17 3 8 +15914,1 6 84 55 9 16 17 10 85 54 7 4 +13276,1 6 34 36 37 17 3 4 +18501,5 6 64 53 9 10 58 7 8 +25869,1 6 84 55 9 16 17 10 85 54 7 8 +2457,1 6 12 16 36 16 17 37 52 7 8 +18346,15 31 36 37 17 37 35 66 87 7 4 +18345,15 31 36 37 17 37 35 66 87 7 8 +16976,15 96 16 36 37 38 37 48 50 7 8 +3162,1 6 55 12 57 58 56 7 4 +8063,1 6 109 110 13 +8218,15 12 16 36 16 17 37 48 35 54 7 4 +15233,1 6 53 12 11 56 7 8 +5265,5 6 57 53 49 36 37 17 10 7 8 +9365,5 6 57 53 49 36 37 17 10 7 4 +16768,1 6 57 57 9 16 17 63 7 8 +3459,1 6 57 57 9 16 17 63 7 4 +4517,1 6 53 12 11 56 7 4 +22500,5 6 9 36 16 17 37 68 7 4 +25540,1 6 18 12 16 36 16 17 37 50 7 8 +10515,1 6 71 109 110 56 11 8 +22502,5 6 9 36 16 17 37 68 7 8 +15638,15 86 53 9 16 17 120 7 4 +3984,5 6 84 18 12 16 17 10 7 8 +25485,15 12 16 36 16 36 16 17 37 68 7 8 +8219,15 12 16 36 16 17 37 48 35 54 7 8 +15639,15 86 53 9 16 17 120 7 8 +2679,5 6 84 18 12 16 17 10 7 4 +22530,5 6 9 61 62 72 66 11 8 +13331,5 6 105 61 16 17 62 10 7 4 +21112,15 34 36 16 39 36 16 17 19 7 8 +20421,1 6 51 42 43 17 37 35 87 56 7 8 +6334,15 34 36 16 39 36 16 17 19 7 4 +16734,15 31 42 43 17 62 10 7 4 +12516,1 6 12 51 109 110 11 8 +16735,15 31 42 43 17 62 10 7 8 +25788,5 6 53 9 16 17 118 17 10 7 4 +8411,1 6 12 16 39 36 16 21 77 78 22 79 4 +19534,5 6 86 87 89 13 +25789,5 6 53 9 16 17 118 17 10 7 8 +12005,1 6 53 71 72 54 54 7 8 +19300,5 6 53 57 26 9 16 17 10 7 4 +2906,5 6 53 12 16 39 36 16 17 10 7 8 +20031,15 34 36 16 17 10 54 7 8 +12962,15 12 16 39 36 16 17 63 7 4 +1117,15 53 67 36 37 11 8 +4277,5 6 65 57 58 13 +5409,15 34 36 16 17 10 54 7 4 +9527,5 6 53 12 16 39 36 16 17 10 7 4 +21225,15 88 65 66 89 11 7 8 +1118,15 53 67 36 37 11 13 +16977,15 96 16 36 37 38 37 48 50 7 4 +23612,5 6 53 34 35 56 54 7 4 +12961,15 12 16 39 36 16 17 63 7 8 +12006,1 6 53 71 72 54 54 7 4 +2233,5 6 34 36 37 17 62 10 7 8 +501,5 6 34 36 37 17 62 10 7 4 +14039,1 6 31 117 16 17 37 35 7 8 +3688,1 6 88 55 9 16 39 36 16 17 10 7 4 +10713,5 6 57 58 66 11 7 4 +14038,1 6 31 117 16 17 37 35 7 4 +4881,5 6 65 49 36 37 17 63 7 8 +10244,5 6 57 58 66 11 7 8 +6446,5 6 65 88 57 9 16 17 10 7 8 +5798,5 6 57 58 11 7 8 +23666,15 88 65 9 16 17 62 10 7 8 +1956,1 6 84 49 36 37 19 110 48 50 85 54 7 4 +4443,5 6 53 31 42 43 17 10 7 8 +12353,1 12 16 17 11 85 54 7 4 +19950,1 6 84 53 53 54 85 7 8 +1730,1 6 55 12 57 58 56 11 8 +17703,5 6 88 12 36 37 38 11 8 +2064,5 6 57 58 11 7 4 +11842,1 6 84 53 53 54 85 7 4 +24054,5 6 44 9 16 61 16 17 11 8 +19290,70 16 36 16 42 16 17 11 13 +24368,1 12 16 17 11 85 54 7 8 +24554,5 6 44 9 16 61 16 17 11 13 +19289,70 16 36 16 42 16 17 11 8 +25798,1 6 34 36 37 38 10 30 7 4 +1955,1 6 84 49 36 37 19 110 48 50 85 54 7 8 +6447,5 6 65 88 57 9 16 17 10 7 4 +9206,1 6 51 47 48 32 7 8 +9370,5 6 53 9 16 36 37 38 37 48 72 54 7 4 +24798,1 6 34 36 37 38 10 30 7 8 +9207,1 6 51 47 48 32 7 4 +19424,5 6 65 49 36 37 17 63 7 4 +19332,5 6 12 49 36 37 17 19 13 +12182,1 6 55 9 16 17 43 68 11 8 +14820,5 6 9 61 62 72 66 7 4 +20420,1 6 51 42 43 17 37 35 87 56 7 4 +4037,15 34 36 37 17 37 35 7 8 +16055,104 101 102 78 82 83 8 +12494,15 57 55 57 9 39 36 16 17 11 8 +12309,15 57 65 65 88 88 88 9 16 17 10 7 8 +12308,15 57 65 65 88 88 88 9 16 17 10 7 4 +12495,15 57 55 57 9 39 36 16 17 11 13 +4038,15 34 36 37 17 37 35 7 4 +17645,1 6 55 53 31 36 37 17 10 7 4 +17920,1 6 55 53 31 36 37 17 10 7 8 +24579,1 6 76 16 36 16 17 43 32 7 8 +22653,5 6 51 52 30 7 8 +1801,1 6 88 89 66 7 8 +12463,15 55 57 9 16 36 37 38 17 37 35 7 4 +6422,1 6 53 12 11 7 8 +22654,5 6 51 52 30 7 4 +6228,1 6 88 89 66 7 4 +3825,1 6 53 12 11 7 4 +12462,15 55 57 9 16 36 37 38 17 37 35 7 8 +22424,1 6 64 61 62 17 37 35 58 89 7 4 +23665,15 88 65 9 16 17 62 10 7 4 +2036,15 49 42 43 17 37 32 54 7 8 +9644,1 6 51 52 11 7 4 +4748,5 6 88 12 96 16 21 77 78 22 79 4 +1129,1 6 51 52 11 7 8 +2035,15 49 42 43 17 37 32 54 7 4 +3636,5 6 34 36 37 17 37 35 7 4 +26729,1 6 92 51 52 93 7 4 +3637,5 6 34 36 37 17 37 35 7 8 +14189,15 53 41 65 9 16 17 62 10 7 4 +26730,1 6 92 51 52 93 7 8 +14188,15 53 41 65 9 16 17 62 10 7 8 +2574,1 6 64 16 39 36 16 17 10 7 4 +3411,1 6 64 61 62 17 37 68 54 7 4 +2575,1 6 64 16 39 36 16 17 10 7 8 +8956,5 6 53 18 12 16 61 61 16 17 62 10 7 8 +18372,5 6 9 61 62 68 54 7 4 +19712,1 6 53 9 10 58 87 58 56 54 7 4 +17496,1 6 53 9 10 58 87 58 56 54 7 8 +23591,1 6 57 9 39 36 16 17 10 7 8 +15676,15 88 57 58 85 54 7 8 +8950,5 6 53 18 12 16 61 61 16 17 62 10 7 4 +15675,15 88 57 58 85 54 7 4 +25969,15 55 12 55 109 88 55 56 110 50 7 8 +23038,5 6 53 9 39 36 16 17 37 72 7 4 +23149,5 6 34 47 36 37 17 10 54 7 8 +23037,5 6 53 9 39 36 16 17 37 72 7 8 +22370,15 31 42 43 17 37 35 11 8 +2059,1 6 57 58 11 8 +9002,5 6 76 61 62 17 11 13 +9493,1 6 9 16 17 17 54 7 4 +15720,1 6 121 122 122 58 58 66 13 +8368,1 6 18 12 16 17 37 48 50 89 27 28 +11614,1 6 9 16 17 17 54 7 8 +2803,5 6 76 61 62 17 11 8 +16733,1 6 53 18 9 16 17 43 108 72 7 4 +25290,15 55 53 31 36 37 17 10 54 7 8 +9273,15 55 12 16 17 11 7 4 +12415,5 6 53 65 9 16 17 37 50 7 8 +6716,15 55 12 16 17 11 7 8 +15149,1 6 51 36 37 17 62 10 7 4 +12414,5 6 53 65 9 16 17 37 50 7 4 +24203,1 6 88 89 66 11 8 +763,15 57 12 11 13 +15608,1 6 12 16 17 120 7 8 +333,15 34 36 37 17 10 54 7 8 +9555,1 6 64 16 36 16 17 11 13 +334,15 34 36 37 17 10 54 7 4 +1203,15 12 16 36 37 38 11 8 +1204,15 12 16 36 37 38 11 13 +24642,5 6 55 9 36 16 36 16 17 11 8 +11071,1 6 55 9 16 17 37 50 7 4 +25503,1 6 53 49 42 43 17 10 7 8 +23093,1 6 55 9 16 17 37 50 7 8 +9554,1 6 64 16 36 16 17 11 8 +20365,1 6 31 42 43 17 37 35 87 30 7 8 +26516,15 49 42 43 17 37 48 35 87 7 8 +20366,1 6 31 42 43 17 37 35 87 30 7 4 +23772,1 6 12 16 17 120 7 4 +26515,15 49 42 43 17 37 48 35 87 7 4 +18450,1 12 16 36 16 61 16 17 37 35 7 4 +1454,1 6 88 88 55 56 89 7 4 +1462,15 71 47 48 35 27 7 8 +5843,15 57 53 55 9 16 17 10 54 7 8 +20697,5 2 16 17 63 7 8 +1455,1 6 88 88 55 56 89 7 8 +18728,1 6 53 67 47 36 37 17 37 35 54 7 4 +18733,1 6 53 67 47 36 37 17 37 35 54 7 8 +24282,15 57 53 55 9 16 17 10 54 7 4 +6410,1 6 12 12 11 58 11 8 +2578,15 31 42 43 17 37 35 7 8 +20698,5 2 16 17 63 7 4 +25259,5 6 57 9 16 36 37 38 17 10 54 7 8 +2577,15 31 42 43 17 37 35 7 4 +13284,5 6 57 9 16 36 37 38 17 10 54 7 4 +2017,5 6 34 36 37 17 10 54 7 8 +6879,5 6 34 36 37 17 10 54 7 4 +9597,15 34 36 16 17 10 7 4 +9513,15 57 53 12 34 35 13 +24743,15 53 53 49 36 37 10 7 8 +8281,5 6 12 88 26 65 66 89 11 8 +20586,15 34 36 16 17 10 7 8 +4208,5 6 31 42 43 63 7 4 +8253,1 6 55 88 12 26 9 16 17 10 7 8 +1822,1 6 64 61 62 17 37 52 93 58 7 4 +3742,1 6 34 36 37 17 37 108 35 54 7 4 +10467,1 6 49 36 37 19 7 4 +8672,70 16 17 91 7 4 +7929,5 6 84 64 16 17 37 72 85 7 4 +26661,5 6 51 42 43 17 37 35 11 7 8 +7928,5 6 84 64 16 17 37 72 85 7 8 +13704,1 6 51 36 37 17 37 35 7 4 +1262,5 6 53 9 10 48 32 54 7 8 +18941,1 6 49 36 37 19 7 8 +21142,5 6 55 53 12 34 35 33 13 +10358,5 6 65 66 54 7 4 +9591,5 6 65 66 54 7 8 +11507,5 6 9 36 16 61 16 17 10 54 7 8 +9952,5 6 57 71 47 48 52 58 85 7 8 +11508,5 6 9 36 16 61 16 17 10 54 7 4 +18238,5 6 57 71 47 48 52 58 85 7 4 +13196,1 6 57 9 16 42 16 17 37 32 93 7 4 +6314,5 6 55 12 55 88 57 58 11 8 +20522,5 6 57 9 16 17 17 91 7 8 +25593,5 6 57 9 16 17 17 91 7 4 +4207,5 6 31 42 43 63 7 8 +25629,5 6 88 89 66 66 58 7 4 +14219,1 12 36 37 38 37 48 50 7 8 +14216,1 12 36 37 38 37 48 50 7 4 +8934,1 12 16 36 16 36 16 17 19 13 +11464,5 6 92 34 36 37 17 10 7 8 +5817,5 6 88 55 9 16 17 11 7 4 +9242,1 6 34 36 37 17 19 13 +21007,5 6 51 47 48 48 68 7 8 +14782,15 49 36 37 19 7 4 +1489,5 6 64 61 62 17 10 54 54 7 4 +1490,5 6 64 61 62 17 10 54 54 7 8 +25748,15 44 9 36 37 11 8 +24907,5 6 57 49 61 62 75 7 4 +25749,15 44 9 36 37 11 13 +26094,1 6 12 16 36 61 16 17 11 8 +18736,5 6 84 9 16 36 16 17 11 8 +4264,5 6 92 34 36 37 17 10 7 4 +16558,5 6 55 88 88 88 9 16 17 10 7 8 +20001,5 6 57 49 61 62 75 7 8 +23651,5 6 88 55 9 16 17 11 7 8 +14091,5 6 55 88 88 88 9 16 17 10 7 4 +8837,5 6 53 67 47 107 108 108 48 68 13 +14781,15 49 36 37 19 7 8 +12217,1 6 53 64 36 37 38 37 48 68 13 +1823,1 6 64 61 62 17 37 52 93 58 7 8 +16082,1 6 53 12 57 58 11 56 7 8 +10687,5 6 34 47 36 37 17 37 35 7 4 +15399,1 6 64 16 42 16 17 13 +20085,1 6 51 52 66 56 7 8 +23541,1 6 12 65 88 9 16 17 11 13 +9867,1 6 12 65 88 9 16 17 11 8 +24015,15 12 16 36 37 38 17 11 7 4 +7506,15 65 9 16 17 106 7 4 +9716,1 6 9 16 17 43 32 93 7 8 +10385,5 6 12 9 16 17 17 3 4 +7507,15 65 9 16 17 106 7 8 +6675,1 6 9 16 17 43 32 93 7 4 +5022,5 6 29 9 16 17 10 30 7 4 +11000,5 6 29 9 16 17 10 30 7 8 +15577,5 6 34 47 36 37 17 37 35 7 8 +23820,15 12 16 36 37 38 17 69 +5148,1 6 53 9 10 58 89 54 7 8 +11053,15 9 61 62 48 52 58 7 8 +5610,5 6 53 57 109 110 54 7 4 +11054,15 9 61 62 48 52 58 7 4 +4793,1 6 53 9 10 58 89 54 7 4 +10402,5 6 53 9 16 36 16 17 10 7 8 +5609,5 6 53 57 109 110 54 7 8 +20244,5 6 53 9 16 61 16 17 10 54 54 7 8 +21684,1 6 65 9 16 117 118 72 7 4 +284,1 6 57 58 7 8 +4836,15 12 36 16 17 37 72 7 8 +18280,1 6 65 9 16 117 118 72 7 8 +1495,1 6 57 58 7 4 +4835,15 12 36 16 17 37 72 7 4 +18400,5 6 53 9 16 36 16 17 10 7 4 +14849,1 6 64 16 36 37 38 37 108 35 7 4 +4504,1 6 64 16 36 37 38 37 108 35 7 8 +2510,1 6 88 96 39 36 16 21 77 78 22 79 4 +21136,15 51 52 52 7 8 +2647,15 31 42 43 17 10 54 7 4 +5886,15 31 42 43 37 35 7 8 +21137,15 51 52 52 7 4 +2648,15 31 42 43 17 10 54 7 8 +4767,5 6 65 57 9 16 17 11 8 +23171,5 6 29 49 36 37 17 10 7 4 +15733,15 55 55 67 68 7 8 +21719,5 6 9 36 16 61 16 17 37 35 7 4 +15734,15 55 55 67 68 7 4 +25358,15 9 16 42 16 17 62 10 7 4 +4768,5 6 65 57 9 16 17 11 13 +5887,15 31 42 43 37 35 7 4 +21958,5 6 88 55 57 65 57 9 16 17 10 7 4 +2184,15 65 55 51 61 62 63 7 4 +15504,15 9 61 62 50 11 89 7 8 +829,1 6 57 58 58 89 13 +25633,5 6 55 12 9 16 17 10 7 8 +11394,15 57 49 61 62 75 7 8 +23853,5 6 55 12 9 16 17 10 7 4 +11393,15 57 49 61 62 75 7 4 +25359,15 9 16 42 16 17 62 10 7 8 +24189,5 6 64 61 62 17 37 108 52 7 8 +13397,1 6 57 55 16 17 7 8 +22746,15 90 16 17 19 7 8 +2181,5 6 76 16 36 37 38 17 10 7 4 +16989,5 6 88 55 57 65 57 9 16 17 10 7 8 +20493,5 6 64 61 62 17 37 108 52 7 4 +20084,15 65 55 51 61 62 63 7 8 +13396,1 6 57 55 16 17 7 4 +22745,15 90 16 17 19 7 4 +1470,5 6 53 57 9 16 61 16 17 10 7 4 +5011,5 6 41 12 26 9 16 17 10 30 7 8 +22655,5 6 29 51 61 62 112 7 8 +23533,5 6 86 87 66 13 +23107,1 6 86 12 11 7 4 +1471,5 6 53 57 9 16 61 16 17 10 7 8 +2127,5 6 41 12 26 9 16 17 10 30 7 4 +22672,5 6 29 51 61 62 112 7 4 +21706,1 6 53 12 11 54 13 +25124,1 12 16 36 37 38 17 37 35 11 8 +23409,1 6 86 12 11 7 8 +7699,1 6 71 42 43 17 10 7 4 +12816,5 6 65 57 58 56 13 +1637,1 6 90 16 17 10 7 4 +13368,5 6 53 53 34 35 7 4 +3991,1 6 71 42 43 17 10 7 8 +10911,5 6 12 34 36 37 91 7 4 +1636,1 6 90 16 17 10 7 8 +13369,5 6 53 53 34 35 7 8 +5111,1 6 55 57 9 36 16 17 37 50 7 4 +13903,1 6 9 10 89 27 56 7 8 +20914,5 6 64 61 62 17 37 48 72 11 8 +6,1 12 11 14 7 4 +20276,15 55 88 57 12 16 36 16 17 19 13 +13547,5 6 12 51 36 37 38 19 13 +465,5 6 86 87 13 +180,1 12 11 14 7 8 +15220,1 6 9 61 62 7 8 +23054,15 31 117 16 17 37 48 68 7 4 +5108,1 6 55 57 9 36 16 17 37 50 7 8 +10961,1 6 57 57 57 26 65 66 89 13 +26285,1 6 9 10 89 27 56 7 4 +2108,1 6 9 61 62 7 4 +23053,15 31 117 16 17 37 48 68 7 8 +18659,1 6 31 47 107 107 36 37 19 +25296,5 6 55 49 42 43 17 10 7 4 +223,5 6 67 61 62 63 7 8 +15247,1 6 12 11 93 7 4 +190,5 6 67 61 62 63 7 4 +15246,1 6 12 11 93 7 8 +3401,5 6 64 61 62 17 37 35 66 7 4 +13292,1 6 67 42 43 17 10 54 7 8 +23210,5 6 64 61 62 17 37 35 66 7 8 +12678,1 6 88 51 36 37 17 11 8 +6278,15 53 12 16 17 11 54 7 8 +23453,70 16 36 39 36 16 61 16 17 37 48 32 7 4 +1480,5 6 53 53 54 7 4 +1479,5 6 53 53 54 7 8 +11254,1 6 53 34 47 48 48 35 54 7 8 +12730,1 6 29 9 16 36 37 38 17 10 30 7 4 +1445,5 6 53 18 12 16 17 10 7 4 +11779,5 6 92 64 16 36 37 38 63 93 7 8 +23454,70 16 36 39 36 16 61 16 17 37 48 32 7 8 +9983,5 6 57 53 9 61 16 36 16 17 37 50 7 8 +1446,5 6 53 18 12 16 17 10 7 8 +12679,1 6 88 51 36 37 17 11 13 +20991,5 6 57 53 9 61 16 36 16 17 37 50 7 4 +19857,1 6 64 61 62 17 63 54 54 7 8 +13380,1 6 9 10 27 89 7 4 +16549,15 55 57 92 31 32 13 +7818,1 6 12 42 16 17 62 10 7 8 +12098,1 6 9 10 27 89 7 8 +23019,5 6 57 65 66 7 4 +18533,1 6 84 49 47 48 52 85 7 8 +19858,1 6 64 61 62 17 63 54 54 7 4 +7123,5 6 9 16 36 16 17 37 52 85 54 7 8 +864,5 6 12 65 90 16 17 63 7 8 +3491,1 6 57 57 9 61 62 17 10 54 7 8 +7124,5 6 9 16 36 16 17 37 52 85 54 7 4 +863,5 6 12 65 90 16 17 63 7 4 +13417,1 6 57 57 9 61 62 17 10 54 7 4 +17910,5 6 12 65 9 16 17 63 7 8 +4689,5 45 21 22 17 37 108 50 7 4 +7835,1 6 12 42 16 17 62 10 7 4 +12328,5 6 12 65 9 16 17 63 7 4 +3224,1 6 9 9 9 9 9 16 17 62 10 7 4 +24039,5 6 9 36 16 61 16 17 62 10 7 4 +25128,5 6 65 57 58 56 7 8 +2822,5 6 64 61 62 17 37 48 72 7 4 +2837,1 6 57 9 61 62 68 7 8 +2056,1 6 57 9 61 62 68 7 4 +11113,5 6 64 61 62 17 37 48 72 7 8 +16506,5 6 71 117 16 17 37 52 7 8 +25886,1 6 53 12 34 36 37 17 37 108 35 7 8 +14347,1 6 64 36 16 17 11 8 +19229,5 6 9 36 16 61 16 17 62 10 7 8 +22277,5 6 65 57 58 56 7 4 +14348,1 6 64 36 16 17 11 13 +21274,1 6 67 42 43 17 10 54 7 4 +9469,1 6 53 88 57 58 54 54 7 8 +12472,5 6 9 16 36 16 61 16 17 62 10 7 4 +12473,5 6 9 16 36 16 61 16 17 62 10 7 8 +17606,15 44 9 36 16 17 37 35 7 8 +8224,5 6 41 88 12 26 9 34 35 7 8 +17607,15 44 9 36 16 17 37 35 7 4 +11459,1 6 53 88 57 58 54 54 7 4 +2469,5 6 41 88 12 26 9 34 35 7 4 +25250,5 6 57 12 16 36 16 61 16 17 11 8 +25961,5 6 71 117 16 17 11 8 +1868,15 9 36 37 38 19 33 13 +22859,1 12 11 58 11 56 7 8 +6905,15 57 9 16 42 16 39 36 16 17 19 13 +8316,1 6 76 61 62 17 10 54 7 8 +13454,1 12 11 58 11 56 7 4 +7728,1 6 76 61 62 17 10 54 7 4 +5100,1 6 57 71 47 36 37 19 13 +19474,5 6 71 117 16 17 37 52 7 4 +18247,5 6 34 36 37 19 56 7 4 +14256,1 6 12 34 36 37 17 10 7 4 +8175,1 6 12 34 36 37 17 10 7 8 +8286,1 6 9 39 36 16 61 16 17 11 8 +6034,5 6 65 57 58 58 13 +8417,5 6 57 57 57 65 12 16 17 11 8 +13774,15 57 9 36 37 38 37 35 7 8 +11165,1 6 88 9 16 17 19 7 8 +13773,15 57 9 36 37 38 37 35 7 4 +11164,1 6 88 9 16 17 19 7 4 +3326,1 6 55 53 57 58 54 7 8 +10624,15 67 36 37 11 7 8 +17066,5 2 16 17 37 52 7 8 +10626,15 67 36 37 11 7 4 +17065,5 2 16 17 37 52 7 4 +23766,5 6 9 10 66 58 54 7 8 +7791,1 6 55 53 57 58 54 7 4 +8317,5 6 55 53 9 16 61 16 17 10 54 7 8 +9791,5 6 84 57 86 9 16 17 10 7 8 +17063,5 6 55 53 9 16 61 16 17 10 54 7 4 +4413,1 6 53 31 36 37 69 +11948,15 71 61 62 10 7 8 +1198,5 6 9 16 36 16 36 16 17 37 32 7 4 +23846,15 9 36 16 17 37 50 7 4 +16753,1 6 12 57 96 16 21 77 78 22 8 +11949,15 71 61 62 10 7 4 +1199,5 6 9 16 36 16 36 16 17 37 32 7 8 +21350,1 6 88 67 36 37 11 8 +13711,5 6 84 57 86 9 16 17 10 7 4 +23847,15 9 36 16 17 37 50 7 8 +21148,1 6 53 67 68 58 7 8 +11810,15 44 9 16 36 16 17 37 10 7 4 +13046,15 44 34 47 48 35 11 8 +11811,15 44 9 16 36 16 17 37 10 7 8 +23458,15 67 36 37 91 54 7 8 +8298,1 6 53 67 68 58 7 4 +17696,5 6 9 16 36 16 61 16 17 37 35 7 4 +8001,5 6 84 34 35 58 85 54 7 4 +10177,5 6 76 61 62 17 3 8 +2686,5 6 84 88 57 9 16 17 11 8 +17262,1 6 71 36 37 19 58 7 4 +23457,15 67 36 37 91 54 7 4 +10003,1 6 9 16 17 118 17 91 7 4 +2687,5 6 84 88 57 9 16 17 11 13 +17261,1 6 71 36 37 19 58 7 8 +5056,15 55 9 16 17 11 13 +15790,1 6 9 16 17 118 17 91 7 8 +6589,5 6 9 16 36 16 61 16 17 37 35 7 8 +1665,15 34 107 36 37 38 19 89 7 8 +8000,5 6 84 34 35 58 85 54 7 8 +10176,5 6 76 61 62 17 3 4 +4295,1 6 76 61 62 17 62 10 7 8 +4296,1 6 76 61 62 17 62 10 7 4 +12016,5 6 53 67 36 37 10 7 4 +25978,5 6 53 67 36 37 10 7 8 +22176,1 6 31 42 16 17 10 7 4 +4433,70 16 36 16 61 16 17 19 7 8 +14663,5 6 9 16 16 16 17 43 52 7 8 +4434,70 16 36 16 61 16 17 19 7 4 +23400,1 6 64 61 16 17 17 11 13 +23399,1 6 64 61 16 17 17 11 8 +5520,70 36 16 61 16 17 94 +14327,5 6 84 90 16 17 37 35 85 54 7 4 +1234,5 6 9 10 27 7 4 +13421,5 6 9 10 27 7 8 +18284,15 71 117 16 17 37 35 7 8 +6962,15 53 53 9 10 13 +14328,5 6 84 90 16 17 37 35 85 54 7 8 +18285,15 71 117 16 17 37 35 7 4 +16770,5 6 9 16 16 16 17 43 52 7 4 +12453,5 6 105 36 16 17 37 35 7 4 +16285,15 55 9 16 117 118 72 7 8 +23668,5 2 16 61 16 17 19 13 +12454,5 6 105 36 16 17 37 35 7 8 +25806,15 44 34 36 16 17 69 +16284,15 55 9 16 117 118 72 7 4 +14501,5 6 113 61 62 17 37 35 11 54 7 8 +21796,5 6 71 47 36 37 11 13 +2789,1 12 16 36 37 38 17 37 35 7 4 +15588,5 6 71 47 36 37 11 8 +3956,1 6 84 9 10 11 7 8 +16316,15 53 9 16 17 17 10 7 8 +16317,15 53 9 16 17 17 10 7 4 +20481,1 6 105 16 61 16 17 91 7 8 +13931,15 44 34 47 48 35 7 4 +3291,15 57 65 49 36 37 17 37 48 72 7 8 +1249,5 6 53 49 36 37 17 10 7 8 +4797,5 6 53 86 87 13 +13930,15 44 34 47 48 35 7 8 +17089,1 6 65 12 16 39 36 16 17 10 7 8 +26102,5 6 55 12 55 56 58 11 8 +1250,5 6 53 49 36 37 17 10 7 4 +22734,1 6 105 16 61 16 17 91 7 4 +19869,15 57 65 49 36 37 17 37 48 72 7 4 +4115,1 6 71 36 37 19 58 11 8 +13158,1 6 18 12 16 17 37 48 50 89 7 8 +3554,15 34 107 36 37 38 19 89 11 8 +12303,15 57 65 66 58 7 8 +26075,1 6 18 12 16 17 37 48 50 89 7 4 +12304,15 57 65 66 58 7 4 +5661,1 6 53 90 61 16 17 10 7 8 +23891,15 90 16 17 37 48 50 7 8 +5055,15 55 9 16 17 11 8 +25879,5 6 67 42 43 17 37 48 72 11 8 +4399,5 6 65 57 58 66 13 +12835,5 6 57 57 57 88 89 13 +21920,1 6 31 36 37 17 75 7 4 +23673,5 6 55 12 16 17 69 +1469,1 6 53 57 9 16 61 16 17 10 7 4 +26804,15 65 88 57 9 16 36 16 17 37 52 13 +17192,1 6 53 90 61 16 17 10 7 4 +23890,15 90 16 17 37 48 50 7 4 +4760,1 6 53 57 9 16 61 16 17 10 7 8 +4002,1 6 57 53 9 16 17 10 54 7 8 +8054,5 6 109 9 16 17 37 48 7 4 +2993,5 6 49 47 48 48 50 58 7 4 +5264,1 6 57 53 9 16 17 10 54 7 4 +2612,5 6 49 47 48 48 50 58 7 8 +4883,15 65 49 36 37 17 63 7 4 +20832,1 6 18 12 16 17 10 85 54 7 4 +16536,15 55 88 89 66 7 8 +4882,15 65 49 36 37 17 63 7 8 +18001,1 6 12 67 61 62 106 7 4 +2086,15 96 36 37 38 17 37 35 87 7 8 +25950,1 6 18 12 16 17 10 85 54 7 8 +22105,1 6 76 61 62 17 37 35 7 4 +2085,15 96 36 37 38 17 37 35 87 7 4 +14712,15 53 34 36 37 17 69 +16535,15 55 88 89 66 7 4 +7026,5 6 84 53 54 85 54 7 4 +42,5 6 9 10 27 11 8 +7027,5 6 84 53 54 85 54 7 8 +23329,15 12 96 36 37 38 37 48 50 7 8 +23328,15 12 96 36 37 38 37 48 50 7 4 +11687,15 55 9 16 17 118 17 37 48 35 11 7 4 +23990,5 6 53 49 36 37 17 91 54 7 4 +16035,15 55 12 16 17 10 7 4 +16036,15 55 12 16 17 10 7 8 +10495,1 6 12 12 39 36 16 17 10 7 8 +15528,5 6 53 34 107 36 37 63 7 4 +21567,1 6 12 12 39 36 16 17 10 7 4 +15240,5 6 92 9 10 14 7 4 +17766,5 6 53 12 124 36 37 17 10 7 8 +15239,5 6 92 9 10 14 7 8 +17765,5 6 53 12 124 36 37 17 10 7 4 +19105,5 6 53 34 107 36 37 63 7 8 +22999,1 6 55 55 57 34 36 37 17 11 8 +9179,1 12 16 36 16 39 36 16 17 37 35 7 8 +11685,1 6 55 9 16 17 118 17 37 48 35 11 8 +5269,1 6 51 42 43 17 37 50 54 7 8 +14910,5 6 12 16 36 16 61 16 17 19 7 8 +24141,5 6 12 16 36 16 61 16 17 19 7 4 +9270,1 12 16 36 16 17 11 8 +26775,5 6 9 16 36 16 17 37 115 50 66 7 8 +5540,15 57 53 90 91 54 7 4 +16215,15 55 57 9 16 36 16 17 37 72 7 8 +5541,15 57 53 90 91 54 7 8 +8538,5 6 53 49 36 37 17 3 4 +24164,5 6 12 57 53 9 16 17 35 7 8 +2072,1 6 12 57 9 16 42 16 17 11 8 +25409,5 6 12 16 17 37 35 87 7 8 +25472,5 6 9 16 61 16 39 36 16 17 11 13 +26198,1 6 76 16 17 11 13 +20224,1 6 67 42 43 17 62 10 7 4 +2073,1 6 12 57 9 16 42 16 17 11 13 +18814,5 6 9 16 61 16 39 36 16 17 11 8 +7448,15 31 36 37 63 7 4 +9294,5 6 9 16 36 16 61 16 17 10 54 7 4 +16214,15 55 57 9 16 36 16 17 37 72 7 4 +26197,1 6 76 16 17 11 8 +7449,15 31 36 37 63 7 8 +9293,5 6 9 16 36 16 61 16 17 10 54 7 8 +24813,15 12 109 110 58 11 7 4 +9062,1 6 9 16 36 16 17 37 52 54 7 8 +5482,5 6 88 9 16 17 37 48 72 7 8 +6645,15 12 16 36 37 38 37 48 72 7 8 +8346,15 55 53 31 36 37 17 11 8 +9061,1 6 9 16 36 16 17 37 52 54 7 4 +22908,1 6 12 16 17 37 68 58 7 8 +14868,1 6 65 9 16 42 16 61 16 17 11 8 +22909,1 6 12 16 17 37 68 58 7 4 +22762,15 12 109 110 58 11 7 8 +5947,5 6 90 16 17 17 91 7 8 +5524,5 6 90 16 17 17 91 7 4 +6644,15 12 16 36 37 38 37 48 72 7 4 +18939,16 21 77 78 22 79 4 +2829,1 6 71 72 58 56 7 8 +24733,15 55 53 57 58 56 54 54 7 8 +24454,1 6 71 72 58 56 7 4 +24734,15 55 53 57 58 56 54 54 7 4 +22332,15 34 109 110 13 +14461,5 6 64 16 36 16 17 37 108 48 72 7 4 +23620,1 6 53 31 36 37 17 37 108 35 54 7 4 +23621,1 6 53 31 36 37 17 37 108 35 54 7 8 +6051,1 12 16 36 37 38 17 62 10 7 4 +15888,1 12 16 36 37 38 17 62 10 7 8 +376,1 6 49 36 37 17 10 7 8 +16873,1 6 47 107 108 48 35 87 7 8 +108,1 6 49 36 37 17 10 7 4 +3514,15 53 18 12 61 16 17 62 10 7 4 +15108,1 6 57 55 53 9 61 16 17 62 10 7 4 +3513,15 53 18 12 61 16 17 62 10 7 8 +24264,5 6 31 117 16 17 10 7 8 +12809,1 6 47 107 108 48 35 87 7 4 +10000,5 6 31 117 16 17 10 7 4 +7564,5 6 57 58 58 54 7 8 +13259,15 53 18 9 16 17 11 8 +23337,1 6 64 16 36 37 38 37 48 52 30 7 8 +26434,15 119 16 17 37 35 7 8 +1620,25 26 27 11 7 4 +12740,1 6 64 16 36 37 38 37 48 52 30 7 4 +22727,5 6 92 9 16 17 19 7 4 +10178,5 6 9 16 17 62 72 7 8 +18205,1 6 76 16 17 63 93 7 4 +17367,15 57 34 107 108 108 35 7 8 +20047,1 6 41 12 16 42 16 21 77 78 22 79 4 +24705,5 6 92 9 16 17 19 7 8 +24540,1 6 76 16 17 63 93 7 8 +26435,15 119 16 17 37 35 7 4 +17368,15 57 34 107 108 108 35 7 4 +13725,5 6 9 16 17 62 72 7 4 +15065,15 31 36 37 17 91 54 7 8 +1765,25 26 27 11 7 8 +15064,15 31 36 37 17 91 54 7 4 +22486,1 6 67 67 36 37 17 62 10 7 8 +20303,1 6 67 67 36 37 17 62 10 7 4 +12546,5 20 21 22 17 17 7 8 +21296,1 6 12 57 9 16 61 16 17 10 7 8 +21572,5 6 29 9 16 17 63 93 7 4 +6373,15 34 36 16 17 62 10 7 8 +17471,5 20 21 22 17 17 7 4 +8149,15 34 36 16 17 62 10 7 4 +7563,5 6 57 58 58 54 7 4 +13260,15 53 18 9 16 17 11 13 +17583,5 6 84 9 10 11 85 7 8 +11114,15 57 65 51 61 62 63 7 8 +213,5 6 31 36 37 11 13 +18224,1 6 12 65 9 16 17 37 48 50 7 4 +6772,15 55 57 9 39 36 16 61 16 17 11 13 +17308,15 65 31 42 43 17 10 7 4 +17269,15 71 47 48 32 54 54 7 4 +22775,5 6 86 57 9 16 17 11 8 +13445,5 6 53 12 9 16 17 37 35 7 4 +6771,15 55 57 9 39 36 16 61 16 17 11 8 +17270,15 71 47 48 32 54 54 7 8 +13739,5 6 88 55 9 16 17 10 7 4 +18541,15 9 36 16 17 37 48 50 85 7 8 +8512,5 6 53 12 9 16 17 37 35 7 8 +2462,1 12 16 36 16 17 19 13 +12340,5 6 12 16 36 37 38 17 62 10 7 8 +18540,15 9 36 16 17 37 48 50 85 7 4 +12339,5 6 12 16 36 37 38 17 62 10 7 4 +19945,5 6 9 16 17 62 17 10 7 8 +10031,1 6 26 88 12 36 37 38 11 8 +14230,1 6 12 16 36 16 61 16 17 19 13 +1105,5 6 53 49 36 37 17 11 13 +3386,1 6 67 42 43 17 37 35 11 8 +18556,15 57 49 36 37 17 10 54 7 4 +4482,5 6 88 55 9 16 17 10 7 8 +1104,5 6 53 49 36 37 17 11 8 +16188,1 12 26 9 16 17 43 48 11 8 +18557,15 57 49 36 37 17 10 54 7 8 +212,5 6 31 36 37 11 8 +14760,5 6 53 12 36 36 16 36 37 38 37 48 108 35 56 7 8 +15927,5 6 86 31 36 37 10 7 4 +1093,5 6 51 52 56 89 7 8 +21206,5 6 51 47 48 7 4 +25086,15 57 9 16 17 11 54 7 4 +2696,5 6 51 52 56 89 7 4 +14761,5 6 53 12 36 36 16 36 37 38 37 48 108 35 56 7 4 +21207,5 6 51 47 48 7 8 +24309,1 6 12 88 57 9 61 16 17 11 8 +23451,5 6 57 57 57 65 12 16 17 19 13 +7303,15 53 64 36 37 38 63 54 7 4 +7304,15 53 64 36 37 38 63 54 7 8 +5853,1 6 51 42 43 17 37 72 54 7 8 +1727,5 6 55 12 55 56 56 89 13 +3734,1 6 53 34 107 108 35 54 7 4 +7306,5 6 92 12 36 37 63 54 7 8 +15986,5 6 49 36 39 36 16 17 17 10 7 4 +3435,15 51 107 36 37 11 13 +8855,70 16 36 16 17 37 108 35 7 4 +18677,1 2 16 17 37 108 52 7 4 +18497,5 6 84 9 10 66 85 7 4 +2628,1 6 53 34 107 108 35 54 7 8 +7307,5 6 92 12 36 37 63 54 7 4 +3434,15 51 107 36 37 11 8 +18496,5 6 84 9 10 66 85 7 8 +17202,5 6 9 16 36 37 38 17 63 7 4 +8854,70 16 36 16 17 37 108 35 7 8 +9704,5 6 9 16 36 37 38 17 63 7 8 +16843,5 6 57 53 12 11 7 8 +22586,5 6 57 53 9 16 17 75 7 4 +9514,5 6 57 53 12 11 7 4 +23506,1 6 90 16 17 11 7 8 +19861,1 6 12 36 37 62 10 7 4 +18312,1 6 88 55 57 65 57 9 16 17 10 7 4 +21251,5 6 55 90 16 36 37 38 37 35 54 7 8 +24075,1 6 53 49 107 36 37 17 10 7 8 +2910,1 6 67 42 43 17 37 35 7 8 +23086,1 6 88 55 57 65 57 9 16 17 10 7 8 +10796,1 6 53 49 107 36 37 17 10 7 4 +21252,5 6 55 90 16 36 37 38 37 35 54 7 4 +2911,1 6 67 42 43 17 37 35 7 4 +8994,5 6 53 9 10 58 87 7 4 +6541,1 6 9 16 17 43 68 7 8 +11650,1 6 51 107 108 50 7 8 +889,1 6 9 16 17 43 68 7 4 +24121,15 51 107 108 48 35 7 4 +7875,5 6 105 16 17 74 7 8 +11812,1 6 51 107 108 50 7 4 +16538,5 6 18 12 16 17 43 52 58 13 +24120,15 51 107 108 48 35 7 8 +13458,5 6 55 88 34 35 89 56 7 8 +1344,15 9 61 62 32 54 85 54 7 8 +13459,5 6 55 88 34 35 89 56 7 4 +1343,15 9 61 62 32 54 85 54 7 4 +9123,5 6 12 12 16 36 37 38 37 48 72 7 4 +12488,5 6 55 67 36 37 17 10 7 4 +12655,1 21 22 17 17 54 54 7 8 +2402,15 55 12 55 56 56 11 8 +12487,5 6 55 67 36 37 17 10 7 8 +15070,1 6 31 61 62 10 7 4 +12439,5 6 119 16 17 37 35 7 4 +6603,15 55 12 16 36 16 21 77 78 22 8 +12438,5 6 119 16 17 37 35 7 8 +22630,5 6 88 67 42 43 17 37 35 58 7 4 +1752,1 6 12 9 16 17 91 7 4 +21981,5 6 55 12 88 89 11 56 7 4 +6698,1 12 11 54 54 7 8 +20025,5 6 55 12 88 89 11 56 7 8 +12626,1 6 31 61 62 10 7 8 +15847,5 6 105 16 17 74 7 4 +2934,5 6 53 18 12 16 17 11 7 4 +22262,1 6 53 31 36 37 63 7 8 +23574,1 6 12 9 16 17 91 7 8 +24588,5 6 53 18 12 16 17 11 7 8 +4040,5 6 18 12 16 17 37 35 7 8 +4041,5 6 18 12 16 17 37 35 7 4 +6672,1 6 96 16 36 16 17 63 7 8 +26361,1 6 51 47 42 43 17 10 7 8 +5371,1 12 11 54 54 7 4 +7058,5 6 16 17 17 10 7 8 +7057,5 6 16 17 17 10 7 4 +10644,5 6 31 42 43 17 37 108 48 72 7 8 +10645,5 6 31 42 43 17 37 108 48 72 7 4 +3319,1 6 9 36 37 38 10 7 4 +15622,70 16 36 16 39 36 16 61 16 17 19 +15030,5 6 34 36 16 17 11 8 +6173,15 55 67 42 43 17 11 8 +6673,1 6 96 16 36 16 17 63 7 4 +11158,15 12 16 36 16 17 37 115 68 89 7 8 +2172,5 6 51 52 56 66 58 7 8 +11159,15 12 16 36 16 17 37 115 68 89 7 4 +6174,15 55 67 42 43 17 11 13 +26283,1 6 84 12 11 11 85 54 7 8 +2171,5 6 51 52 56 66 58 7 4 +12024,1 6 9 36 37 38 10 7 8 +13469,1 6 29 9 16 61 62 11 8 +22241,1 6 84 12 11 11 85 54 7 4 +26860,5 6 88 57 55 9 16 17 63 7 4 +6258,1 6 26 65 66 13 +12654,1 21 22 17 17 54 54 7 4 +15933,15 57 9 36 16 61 16 17 37 35 7 4 +17981,1 6 55 53 96 16 21 77 78 22 79 4 +18310,1 6 57 58 56 89 13 +6175,1 6 57 53 9 10 13 +15932,15 57 9 36 16 61 16 17 37 35 7 8 +18107,70 16 36 37 38 17 10 54 7 8 +18106,70 16 36 37 38 17 10 54 7 4 +2518,1 6 67 47 36 37 10 7 4 +6875,15 9 16 39 36 16 17 37 35 7 8 +12464,1 6 9 16 17 43 68 11 8 +17967,1 6 57 9 16 39 36 16 17 37 35 54 7 4 +10232,1 6 67 47 36 37 10 7 8 +19514,1 6 34 36 37 19 11 8 +4832,15 12 36 16 17 37 68 89 13 +5367,5 6 92 12 16 17 19 13 +23430,15 31 47 48 32 87 7 8 +23429,15 31 47 48 32 87 7 4 +25318,5 6 65 9 16 17 75 7 4 +6874,15 9 16 39 36 16 17 37 35 7 4 +1653,15 51 61 62 63 7 8 +26037,5 6 57 49 47 48 48 68 58 7 8 +1654,15 51 61 62 63 7 4 +10263,1 6 88 65 88 9 16 42 16 17 37 35 87 7 4 +6628,1 6 64 61 62 17 37 35 56 7 4 +20993,1 6 12 55 88 55 56 13 +24622,1 6 57 9 16 39 36 16 17 37 35 54 7 8 +16929,1 6 53 12 36 16 17 63 7 8 +26287,1 6 64 61 62 17 37 35 56 7 8 +16928,1 6 53 12 36 16 17 63 7 4 +5255,5 6 53 18 12 16 61 16 17 10 7 4 +475,5 6 84 57 58 56 7 8 +9686,15 57 57 29 30 7 8 +18534,5 6 84 51 47 36 37 10 85 7 4 +1725,15 55 12 55 88 55 56 56 11 8 +474,5 6 84 57 58 56 7 4 +11253,15 53 34 47 36 37 10 7 8 +11252,15 53 34 47 36 37 10 7 4 +18530,5 6 84 51 47 36 37 10 85 7 8 +25319,5 6 71 42 43 17 74 7 4 +19922,5 6 88 90 16 61 16 17 19 7 8 +5254,5 6 53 18 12 16 61 16 17 10 7 8 +9687,15 57 57 29 30 7 4 +1527,5 6 65 9 16 17 75 7 8 +10369,1 6 64 61 62 17 43 35 87 7 4 +216,5 6 18 12 16 17 62 10 7 4 +19983,1 6 49 36 37 17 19 13 +10370,1 6 64 61 62 17 43 35 87 7 8 +230,5 6 18 12 16 17 62 10 7 8 +11240,1 6 57 9 16 17 37 52 54 7 8 +17272,15 31 47 36 37 75 7 4 +20585,5 6 64 36 16 61 16 61 16 17 11 13 +10847,5 6 71 42 43 17 74 7 8 +19374,1 6 57 9 16 17 37 52 54 7 4 +26308,5 6 64 61 62 17 37 108 50 11 8 +2312,5 6 9 36 37 17 19 13 +17273,15 31 47 36 37 75 7 8 +6913,5 6 9 16 17 43 48 11 8 +18094,5 6 9 16 17 43 48 11 13 +2487,5 6 71 36 37 10 7 8 +2488,5 6 71 36 37 10 7 4 +10440,15 53 53 16 17 17 7 4 +10973,15 65 26 88 89 13 +21384,1 6 64 16 36 37 38 37 48 52 7 8 +22252,5 6 57 31 32 13 +9384,1 6 34 36 37 19 7 8 +11848,5 6 64 36 16 61 16 61 16 17 11 8 +12727,5 6 29 71 47 36 37 17 10 30 7 4 +24,1 6 18 12 16 17 11 11 8 +4730,1 6 34 36 37 19 7 4 +8890,5 6 84 71 36 37 11 8 +39,25 26 27 11 23 24 +1959,1 6 84 51 47 48 50 85 54 7 8 +13346,15 9 16 39 36 16 17 62 10 7 8 +925,15 57 57 57 9 16 17 11 13 +13573,1 6 9 10 27 66 54 7 4 +1958,1 6 84 51 47 48 50 85 54 7 4 +924,15 57 57 57 9 16 17 11 8 +13122,5 6 49 47 48 35 54 7 4 +10616,1 12 16 36 37 38 37 17 52 7 8 +13132,5 6 49 47 48 35 54 7 8 +25382,5 6 9 16 61 16 17 37 52 7 4 +13347,15 9 16 39 36 16 17 62 10 7 4 +19433,1 6 84 88 57 34 35 13 +25254,15 55 57 88 89 11 8 +14419,5 6 65 55 56 13 +10619,1 12 16 36 37 38 37 17 52 7 4 +3901,5 6 12 65 71 72 13 +17095,15 31 42 43 17 37 35 66 7 8 +6311,1 6 55 12 55 56 58 89 13 +3029,5 6 18 12 16 17 10 54 7 4 +17096,15 31 42 43 17 37 35 66 7 4 +19854,1 6 88 53 53 54 89 7 8 +3028,5 6 18 12 16 17 10 54 7 8 +19855,1 6 88 53 53 54 89 7 4 +17243,5 6 57 53 34 36 37 17 63 7 4 +9304,15 12 16 39 36 16 17 17 10 7 4 +17244,5 6 57 53 34 36 37 17 63 7 8 +15995,5 6 86 88 89 89 87 7 4 +18678,5 2 16 17 37 108 52 7 4 +15980,15 67 47 48 52 11 7 8 +1672,5 6 12 12 11 11 8 +16227,15 57 53 9 61 16 17 10 54 7 8 +11451,15 34 107 36 16 17 37 52 7 8 +18679,5 2 16 17 37 108 52 7 8 +20808,5 6 86 88 89 89 87 7 8 +16228,15 57 53 9 61 16 17 10 54 7 4 +2982,15 34 107 36 16 17 37 52 7 4 +5316,5 6 55 57 92 12 16 17 19 13 +13142,1 6 53 9 36 16 16 17 120 7 8 +5576,1 6 9 16 17 17 11 8 +6306,15 12 16 36 16 17 63 7 8 +24384,1 6 53 9 10 108 7 8 +5405,15 12 16 36 16 17 63 7 4 +4786,15 53 9 10 7 8 +14384,1 6 84 73 16 17 91 85 7 4 +26220,1 6 55 34 107 108 35 87 56 7 4 +4785,15 53 9 10 7 4 +14383,1 6 84 73 16 17 91 85 7 8 +7522,1 6 12 26 65 66 89 7 4 +22003,5 6 65 57 57 9 16 17 10 7 4 +23185,5 6 57 67 117 16 17 11 8 +7523,1 6 12 26 65 66 89 7 8 +9444,1 6 12 9 16 17 37 48 35 54 7 8 +16819,1 6 64 61 62 17 37 68 56 7 4 +23767,1 6 9 10 66 58 54 7 8 +12505,15 55 31 36 37 17 11 13 +21114,1 6 64 61 62 17 37 68 56 7 8 +12504,15 55 31 36 37 17 11 8 +6711,5 6 57 57 57 9 16 17 11 13 +7021,5 6 84 9 16 17 10 85 54 7 4 +22778,1 6 53 12 16 16 17 19 13 +23768,1 6 9 10 66 58 54 7 4 +923,5 6 57 57 57 9 16 17 11 8 +9094,5 6 84 9 16 17 10 85 54 7 8 +3014,1 6 57 58 89 13 +20928,5 6 12 12 16 36 37 38 37 48 72 11 8 +11616,1 6 9 16 17 17 54 54 7 4 +7053,1 6 9 16 17 17 54 54 7 8 +7600,15 96 36 37 38 37 50 85 7 8 +13795,16 61 16 17 62 32 54 7 8 +22861,5 6 53 67 68 56 7 4 +7599,15 96 36 37 38 37 50 85 7 4 +12482,5 6 53 67 68 56 7 8 +13794,16 61 16 17 62 32 54 7 4 +25059,15 55 26 88 57 12 39 36 16 17 19 13 +7902,5 6 55 57 9 16 17 37 10 7 4 +17341,5 6 55 34 107 108 35 89 7 8 +13600,5 6 55 34 107 108 35 89 7 4 +23850,15 65 9 16 36 16 17 37 35 7 4 +17597,15 44 9 16 17 10 54 7 8 +25164,1 6 9 16 39 36 16 36 37 38 17 10 7 8 +19313,5 6 18 12 16 17 37 35 11 8 +14160,1 6 41 65 66 23 54 7 8 +14161,1 6 41 65 66 23 54 7 4 +23849,15 65 9 16 36 16 17 37 35 7 8 +17598,15 44 9 16 17 10 54 7 4 +25163,1 6 9 16 39 36 16 36 37 38 17 10 7 4 +18917,15 9 16 17 37 50 58 54 7 8 +24728,1 6 57 92 31 42 43 17 37 35 93 58 7 4 +2404,15 51 36 37 19 58 11 56 7 8 +3426,1 6 49 36 37 17 11 13 +18916,15 9 16 17 37 50 58 54 7 4 +778,1 6 49 36 37 17 11 8 +24811,1 6 57 92 31 42 43 17 37 35 93 58 7 8 +18966,15 51 47 48 50 56 54 7 4 +18965,15 51 47 48 50 56 54 7 8 +2152,15 51 36 37 19 58 11 56 7 4 +19268,5 6 53 9 10 87 58 54 54 7 4 +2700,15 53 9 10 11 8 +15101,5 6 53 9 10 87 58 54 54 7 8 +23320,15 57 58 58 11 7 8 +276,5 6 9 16 36 16 61 16 17 37 32 7 8 +12733,5 6 29 71 47 36 37 17 10 30 7 8 +24225,5 6 9 16 36 16 61 16 17 37 32 7 4 +16621,5 6 71 72 58 89 7 4 +26249,1 6 18 12 16 17 37 10 7 4 +16801,5 6 31 42 43 17 37 35 87 30 30 7 8 +11850,15 53 53 16 17 17 7 8 +16800,5 6 31 42 43 17 37 35 87 30 30 7 4 +19766,5 6 65 9 16 17 37 35 87 7 8 +7453,5 6 64 61 62 17 37 32 87 7 4 +25062,5 6 65 9 16 17 37 35 87 7 4 +18537,1 6 84 57 9 16 16 17 37 48 50 85 7 4 +7003,1 6 53 64 16 17 37 72 54 7 4 +7454,5 6 64 61 62 17 37 32 87 7 8 +19170,15 88 65 9 16 17 19 7 4 +12271,15 71 47 48 115 68 7 8 +15713,5 6 65 57 58 7 4 +25478,1 6 96 16 39 36 16 42 16 17 19 7 8 +12272,15 71 47 48 115 68 7 4 +11661,1 6 34 36 37 17 62 72 7 4 +11660,1 6 34 36 37 17 62 72 7 8 +10870,15 44 9 16 17 37 35 7 4 +18341,1 12 36 16 36 16 17 11 8 +12125,5 6 9 10 89 89 13 +6358,15 67 36 37 19 11 54 7 4 +6018,5 6 65 57 58 7 8 +10869,15 44 9 16 17 37 35 7 8 +5246,5 6 12 16 17 37 11 7 4 +15236,1 6 53 64 16 17 37 72 54 7 8 +24966,1 6 92 9 16 17 19 7 8 +18538,1 6 84 57 9 16 16 17 37 48 50 85 7 8 +18408,5 6 9 10 58 89 27 7 4 +25224,25 26 27 58 54 7 4 +19295,25 26 27 58 54 7 8 +4292,15 55 9 61 62 72 7 4 +788,1 6 12 12 16 36 39 36 16 17 19 13 +4293,15 55 9 61 62 72 7 8 +7749,1 6 9 16 17 37 50 7 8 +18526,5 6 84 49 50 33 13 +26553,15 65 51 42 43 17 10 7 4 +18204,1 6 113 61 62 17 11 13 +15164,15 12 16 36 16 36 37 38 37 48 52 7 4 +7613,1 6 113 61 62 17 11 8 +7750,1 6 9 16 17 37 50 7 4 +26552,15 65 51 42 43 17 10 7 8 +7872,1 6 34 36 37 19 33 13 +18054,5 6 9 10 58 66 58 7 8 +2865,1 12 16 17 10 7 4 +7594,5 6 84 49 36 37 19 13 +9677,5 6 29 18 12 16 17 11 8 +18311,5 6 9 10 58 66 58 7 4 +244,1 12 16 17 10 7 8 +13504,5 6 76 16 36 16 61 16 17 11 7 8 +25559,5 6 29 18 12 16 17 11 13 +18740,15 12 16 36 37 38 37 68 89 13 +18152,5 6 53 53 57 58 54 54 7 4 +14946,15 88 26 65 9 16 16 17 11 8 +4095,5 6 55 9 16 39 36 16 17 10 7 4 +24196,5 6 57 9 16 36 37 38 37 50 7 8 +1305,1 6 64 16 42 16 17 37 52 7 4 +6444,15 55 88 88 9 16 17 10 7 4 +11910,5 6 65 57 58 11 8 +23405,15 12 16 16 17 11 8 +20596,5 6 53 18 12 16 17 37 11 35 54 7 8 +6074,1 6 64 16 42 16 17 37 52 7 8 +23406,15 12 16 16 17 11 13 +4094,5 6 55 9 16 39 36 16 17 10 7 8 +25305,15 9 16 36 16 61 16 17 37 10 7 4 +6443,15 55 88 88 9 16 17 10 7 8 +7539,5 6 121 122 58 66 13 +15589,1 12 36 37 38 37 48 52 7 8 +24081,5 6 84 49 36 16 17 37 52 85 7 4 +6633,1 6 67 36 37 10 7 4 +9715,5 6 92 31 42 43 17 11 8 +1029,1 6 67 36 37 10 7 8 +3668,15 49 47 36 37 17 10 7 4 +3669,15 49 47 36 37 17 10 7 8 +18213,1 6 92 64 16 42 16 17 10 93 7 8 +947,1 12 11 85 7 4 +18212,1 6 92 64 16 42 16 17 10 93 7 4 +1372,1 12 11 85 7 8 +16460,5 6 65 9 16 42 16 61 16 17 11 8 +16540,1 6 18 12 16 17 43 52 58 89 56 7 4 +5099,15 57 34 47 36 37 38 19 13 +7630,5 6 12 12 11 7 8 +2092,5 6 12 12 11 7 4 +10459,1 6 49 36 37 17 3 4 +19333,1 6 9 16 17 37 50 11 8 +17134,15 55 12 9 16 17 37 35 7 4 +8380,5 6 18 12 16 17 54 54 7 8 +17135,15 55 12 9 16 17 37 35 7 8 +3508,5 6 18 12 16 17 54 54 7 4 +5083,1 6 49 36 37 17 3 8 +13625,1 6 53 18 12 36 37 38 11 13 +12925,15 12 16 36 37 38 37 48 52 56 54 7 8 +22171,5 6 92 12 16 17 63 7 4 +12926,15 12 16 36 37 38 37 48 52 56 54 7 4 +17728,5 6 92 12 16 17 63 7 8 +5423,15 53 34 36 37 11 8 +13624,1 6 53 18 12 36 37 38 11 8 +19169,15 88 65 9 16 17 19 7 8 +4168,1 6 55 53 12 16 36 37 38 17 11 8 +6887,1 6 49 107 108 108 50 7 4 +19399,15 53 49 50 54 7 4 +11510,1 6 49 107 108 108 50 7 8 +17167,5 6 64 16 17 37 32 93 58 7 8 +12342,5 6 92 31 42 43 93 63 7 4 +19398,15 53 49 50 54 7 8 +20064,5 6 31 117 16 17 75 7 4 +19834,1 6 9 9 9 9 16 17 43 32 7 4 +20381,5 6 92 31 42 43 93 63 7 8 +4511,1 6 9 9 9 9 16 17 43 32 7 8 +17168,5 6 64 16 17 37 32 93 58 7 4 +1793,5 6 41 12 26 9 34 35 7 8 +11258,15 53 34 47 47 36 37 10 7 4 +7952,15 57 12 26 57 58 58 89 13 +25385,5 6 41 12 26 9 34 35 7 4 +11259,15 53 34 47 47 36 37 10 7 8 +2183,95 16 36 37 38 17 10 7 8 +5897,15 57 55 9 16 17 63 7 8 +2182,95 16 36 37 38 17 10 7 4 +22740,5 6 90 61 62 17 106 7 4 +10349,5 6 84 18 12 16 17 37 50 85 54 7 4 +8622,5 6 90 61 62 17 106 7 8 +19097,1 6 51 52 89 27 7 4 +7119,5 6 84 18 12 16 17 37 50 85 54 7 8 +24930,15 53 90 16 17 62 10 7 8 +21995,5 6 65 12 16 17 37 35 87 7 8 +11804,1 6 51 52 89 27 7 8 +24663,15 65 9 16 17 37 35 87 27 28 +25426,1 6 9 16 17 17 37 52 11 85 54 7 8 +26523,1 6 18 12 16 21 77 78 22 79 4 +24931,15 53 90 16 17 62 10 7 4 +20857,1 6 55 65 66 89 27 7 4 +13056,1 6 12 12 16 36 37 38 37 48 35 11 7 8 +22583,1 6 55 65 66 89 27 7 8 +5896,15 57 55 9 16 17 63 7 4 +13228,15 34 107 107 36 37 19 13 +24168,1 6 9 16 17 17 37 52 11 85 54 7 4 +25461,1 6 124 36 37 19 7 4 +14887,1 6 124 36 37 19 7 8 +2101,1 6 113 61 62 17 3 4 +2100,1 6 113 61 62 17 3 8 +13758,1 6 41 12 16 17 19 +14094,5 6 12 9 16 17 19 7 8 +19602,15 44 96 16 21 77 78 22 79 4 +20472,5 6 12 9 16 17 19 7 4 +21168,5 6 55 12 55 88 57 58 89 13 +5162,15 53 86 87 54 7 4 +5163,15 53 86 87 54 7 8 +14549,5 6 9 10 58 11 58 7 8 +3456,5 6 9 10 58 11 58 7 4 +16923,5 6 76 16 36 16 61 16 17 11 7 4 +21,1 12 9 16 17 11 13 +12573,15 88 57 9 16 36 37 38 17 74 7 4 +1034,1 6 88 9 36 37 38 10 7 4 +6617,5 6 92 12 16 17 11 13 +12572,15 88 57 9 16 36 37 38 17 74 7 8 +22972,5 6 84 12 11 58 85 7 4 +1033,1 6 88 9 36 37 38 10 7 8 +6616,5 6 92 12 16 17 11 8 +22973,5 6 84 12 11 58 85 7 8 +13856,15 9 16 36 16 17 37 48 35 54 54 7 8 +26603,5 6 53 88 57 58 7 4 +20210,5 6 53 88 57 58 7 8 +11452,5 6 55 12 57 96 36 16 17 19 58 11 8 +7577,15 57 57 12 36 37 38 11 8 +13855,15 9 16 36 16 17 37 48 35 54 54 7 4 +8166,15 9 16 36 37 38 10 7 4 +21966,15 12 16 61 16 39 36 16 17 19 13 +22037,5 6 53 12 51 61 62 63 7 4 +16849,15 9 16 36 37 38 10 7 8 +7083,1 6 84 12 16 61 16 17 19 13 +5732,15 44 9 16 17 62 10 7 4 +18189,1 6 53 9 16 36 16 17 37 50 54 7 4 +5733,15 44 9 16 17 62 10 7 8 +6120,25 26 27 66 11 7 4 +18190,1 6 53 9 16 36 16 17 37 50 54 7 8 +24629,1 6 53 12 34 36 37 17 63 7 4 +18309,1 6 51 52 66 58 7 4 +5719,5 6 12 55 56 89 11 8 +1073,15 34 36 37 17 10 7 4 +15075,1 6 57 88 67 68 7 4 +1072,15 34 36 37 17 10 7 8 +6272,15 53 9 10 27 28 +15354,1 6 31 117 16 17 10 7 4 +11085,1 6 51 52 66 58 7 8 +2816,5 6 9 36 37 17 11 8 +11365,5 6 53 34 35 58 7 4 +10225,25 26 27 66 11 7 8 +15579,5 6 53 34 35 58 7 8 +20,1 12 9 16 17 11 8 +20956,1 6 57 9 16 17 37 35 7 4 +10986,5 6 57 53 9 10 54 54 7 4 +19299,1 6 9 10 27 87 7 4 +4148,5 6 53 18 12 16 61 16 17 11 7 4 +18503,1 6 64 53 9 10 58 7 4 +20957,1 6 57 9 16 17 37 35 7 8 +18502,1 6 64 53 9 10 58 7 8 +26763,1 12 36 16 61 16 36 37 38 37 48 35 7 4 +9798,1 6 53 71 36 37 17 10 7 4 +11656,5 6 49 107 42 43 17 37 52 54 7 4 +16559,1 6 53 71 36 37 17 10 7 8 +25390,5 6 57 92 9 36 16 17 37 52 93 58 7 8 +25391,5 6 57 92 9 36 16 17 37 52 93 58 7 4 +15878,5 6 57 92 49 50 7 4 +1805,5 6 57 92 49 50 7 8 +9252,15 53 71 47 48 48 72 54 7 4 +10567,5 6 53 18 12 16 61 16 17 11 7 8 +8593,95 36 37 38 10 54 7 8 +8594,95 36 37 38 10 54 7 4 +16430,96 16 36 37 38 37 72 7 4 +21522,1 6 53 18 12 61 16 61 16 17 10 7 8 +12068,15 65 88 88 55 9 16 17 118 17 10 7 8 +11979,1 6 53 18 12 61 16 61 16 17 10 7 4 +16429,96 16 36 37 38 37 72 7 8 +12069,15 65 88 88 55 9 16 17 118 17 10 7 4 +5332,1 6 90 91 56 7 4 +1866,5 6 9 36 37 19 13 +18271,1 6 90 91 56 7 8 +19851,5 6 53 54 89 7 4 +19852,5 6 53 54 89 7 8 +17359,15 57 53 53 54 13 +24133,5 6 18 12 16 17 43 52 89 13 +12446,1 6 90 36 16 17 37 35 7 4 +13283,1 6 51 36 37 17 10 54 7 8 +13777,15 57 9 36 37 38 37 48 72 7 4 +12793,1 6 51 36 37 17 10 54 7 4 +17654,1 6 90 36 16 17 37 35 7 8 +10912,15 34 36 37 91 7 4 +13778,15 57 9 36 37 38 37 48 72 7 8 +10913,15 34 36 37 91 7 8 +7403,15 86 57 9 16 17 11 13 +12801,5 6 53 36 37 37 35 87 54 7 8 +21814,25 26 27 33 13 +12917,15 51 47 48 72 56 54 7 8 +16458,15 44 49 107 36 16 17 91 7 4 +5368,1 6 18 9 16 21 77 78 22 79 4 +4033,1 6 76 16 17 69 +7402,15 86 57 9 16 17 11 8 +16393,5 6 65 12 11 87 7 8 +21221,1 6 12 88 89 13 +18806,15 55 57 31 32 54 7 8 +11304,1 6 71 36 16 17 11 8 +1451,5 6 88 89 13 +18807,15 55 57 31 32 54 7 4 +22311,5 6 53 36 37 37 35 87 54 7 4 +13247,5 6 65 12 11 87 7 4 +10987,5 6 57 53 9 10 54 54 7 8 +26149,15 57 53 9 16 39 36 16 17 63 7 8 +2176,1 6 76 16 17 94 +8283,5 6 12 88 65 9 16 17 37 50 7 8 +15955,1 6 67 107 108 108 68 58 7 8 +5151,5 6 53 51 61 62 63 7 4 +15956,1 6 67 107 108 108 68 58 7 4 +5150,5 6 53 51 61 62 63 7 8 +17021,1 6 53 12 16 61 16 17 11 7 4 +19005,1 6 51 42 43 17 3 4 +24611,1 6 9 61 62 68 13 +219,1 6 12 16 36 16 61 16 17 37 32 7 8 +16117,5 6 92 49 50 93 7 8 +15555,1 6 57 58 58 66 13 +6298,1 6 51 42 43 17 3 8 +13318,15 55 53 65 66 13 +26148,15 57 53 9 16 39 36 16 17 63 7 4 +2345,15 9 61 62 50 7 4 +18894,1 6 64 61 62 17 37 48 72 85 54 7 8 +25777,1 6 9 16 17 19 63 7 8 +3548,1 6 9 10 11 58 89 56 7 4 +2344,15 9 61 62 50 7 8 +2275,1 6 9 10 11 58 89 56 7 8 +1662,5 6 88 89 11 56 7 4 +5996,5 6 18 12 16 17 37 35 10 7 8 +5995,5 6 18 12 16 17 37 35 10 7 4 +5199,5 6 88 89 11 56 7 8 +9341,1 6 55 55 57 53 12 16 36 37 38 17 11 8 +14515,1 6 124 47 48 11 8 +5305,5 6 64 16 36 16 17 63 7 8 +5188,5 6 64 16 36 16 17 63 7 4 +6964,5 6 88 89 66 56 7 8 +9325,1 6 12 16 36 16 61 61 16 17 11 8 +9326,1 6 12 16 36 16 61 61 16 17 11 13 +20878,15 65 66 11 7 4 +2785,15 12 16 39 36 39 36 16 17 19 13 +13135,5 6 88 89 66 56 7 4 +25432,1 6 64 39 36 16 61 16 17 11 8 +14872,15 65 66 11 7 8 +26146,15 55 9 36 37 17 10 54 7 4 +16725,1 6 92 49 50 7 8 +26145,15 55 9 36 37 17 10 54 7 8 +4755,1 6 57 58 66 13 +16726,1 6 92 49 50 7 4 +7907,5 6 65 57 90 16 17 91 7 8 +15420,5 6 92 49 50 93 7 4 +25103,5 6 55 9 16 36 16 17 10 54 54 7 8 +7908,5 6 65 57 90 16 17 91 7 4 +13024,15 12 34 36 37 17 10 54 7 8 +4306,40 41 88 89 7 4 +17087,15 65 34 36 37 11 8 +20642,5 6 9 16 36 37 38 69 +8909,1 6 9 16 61 16 17 19 13 +4305,40 41 88 89 7 8 +639,5 6 67 47 36 37 17 63 7 4 +655,5 6 67 47 36 37 17 63 7 8 +4276,15 12 34 36 37 17 10 54 7 4 +25602,15 55 88 67 68 7 8 +11069,1 6 12 49 36 37 17 43 32 54 7 4 +24409,1 6 49 47 36 37 19 56 7 8 +10962,5 6 9 10 66 27 58 7 4 +11070,1 6 12 49 36 37 17 43 32 54 7 8 +21421,5 6 49 50 33 11 13 +15950,1 6 53 34 36 37 17 75 7 4 +4273,5 6 84 12 11 13 +23311,5 6 41 88 89 58 58 11 8 +23467,5 6 53 9 16 61 16 17 43 32 54 7 8 +23466,5 6 53 9 16 61 16 17 43 32 54 7 4 +25603,15 55 88 67 68 7 4 +5701,1 12 39 36 39 36 16 17 19 13 +5976,15 9 61 62 50 11 8 +2401,5 6 55 12 55 56 56 11 8 +15329,15 34 47 48 48 32 54 7 8 +1788,15 67 47 36 37 17 10 54 7 8 +24390,5 6 9 36 37 11 8 +2786,1 6 51 36 37 17 37 35 7 8 +25436,5 6 57 9 16 117 118 48 50 7 8 +14737,15 55 51 36 37 37 32 54 7 8 +17452,1 6 26 31 47 48 35 7 8 +7922,15 67 36 37 38 37 108 35 7 8 +14736,15 55 51 36 37 37 32 54 7 4 +1814,5 6 9 10 93 7 4 +5712,15 67 36 37 38 37 108 35 7 4 +17286,1 6 55 57 92 31 32 7 8 +1802,5 6 9 10 93 7 8 +15328,15 34 47 48 48 32 54 7 4 +16555,1 6 55 57 92 31 32 7 4 +21420,5 6 49 50 33 11 8 +17451,1 6 26 31 47 48 35 7 4 +7451,1 6 64 36 16 17 69 +16914,1 6 55 57 71 47 48 68 7 4 +267,1 6 18 12 16 17 10 7 8 +25544,5 6 12 90 61 39 36 16 17 19 7 8 +24455,1 6 55 57 71 47 48 68 7 8 +297,1 6 18 12 16 17 10 7 4 +26083,5 6 12 90 61 39 36 16 17 19 7 4 +1789,15 67 47 36 37 17 10 54 7 4 +8012,5 6 84 57 31 47 36 37 17 63 7 4 +24748,1 6 29 9 36 37 38 17 10 7 4 +9891,1 6 44 9 16 17 91 7 8 +24209,1 6 44 9 16 17 91 7 4 +17177,5 6 57 92 12 16 36 16 17 11 8 +22264,5 6 9 39 36 16 61 16 17 10 7 4 +23434,1 6 86 31 47 48 32 87 7 8 +1699,15 71 47 48 52 7 4 +1698,15 71 47 48 52 7 8 +16958,15 9 16 36 16 61 16 17 37 10 7 8 +23140,1 6 55 53 49 47 48 35 7 8 +15557,1 6 12 57 57 9 16 17 63 7 8 +19663,1 6 64 36 16 17 98 +21565,1 6 53 12 16 61 16 17 11 7 8 +26622,15 57 9 16 42 16 17 10 54 85 54 7 4 +17412,5 6 9 9 16 17 10 93 7 8 +12822,15 9 16 17 91 7 8 +26623,15 57 9 16 42 16 17 10 54 85 54 7 8 +17413,5 6 9 9 16 17 10 93 7 4 +9163,1 6 67 61 62 17 63 7 4 +680,1 6 67 61 62 17 63 7 8 +10540,1 6 51 42 43 17 11 13 +10650,1 12 36 16 17 37 35 54 7 4 +3103,15 9 36 16 17 37 52 7 4 +22345,1 6 12 57 109 96 16 21 77 78 22 79 4 +9683,1 6 51 42 43 17 11 8 +6037,1 6 57 58 56 13 +10141,15 12 16 36 16 17 37 35 54 7 4 +20362,5 6 29 9 16 36 37 38 17 10 7 8 +10140,15 12 16 36 16 17 37 35 54 7 8 +25064,15 65 9 16 17 37 35 87 7 8 +3102,15 9 36 16 17 37 52 7 8 +20363,5 6 29 9 16 36 37 38 17 10 7 4 +1167,15 12 36 37 38 17 3 4 +25063,15 65 9 16 17 37 35 87 7 4 +1166,15 12 36 37 38 17 3 8 +10991,5 6 31 47 48 35 30 7 4 +22527,5 6 53 71 47 36 37 63 7 4 +13744,15 55 9 16 36 16 36 16 36 37 38 17 10 7 8 +17704,5 6 31 47 48 35 30 7 8 +9473,1 6 53 9 10 58 89 54 54 7 8 +20247,5 6 26 55 88 89 13 +19104,5 6 53 71 47 36 37 63 7 8 +3240,1 12 36 16 17 37 35 54 7 8 +13745,15 55 9 16 36 16 36 16 36 37 38 17 10 7 4 +9474,1 6 53 9 10 58 89 54 54 7 4 +12821,15 9 16 17 91 7 4 +22219,15 57 9 16 117 118 52 11 7 4 +13146,5 6 119 16 17 11 8 +5383,1 6 55 55 53 73 16 61 16 17 11 8 +21066,1 6 55 55 53 55 88 89 11 8 +13147,5 6 119 16 17 11 13 +25953,15 34 36 16 17 37 32 7 4 +2240,1 6 57 58 58 13 +8759,5 6 9 36 37 17 69 +16081,5 6 67 36 37 37 11 8 +25403,5 45 21 22 17 37 52 11 7 4 +20259,1 6 34 47 48 35 11 7 4 +15297,1 6 57 12 16 17 37 32 7 4 +19797,5 6 9 16 17 43 48 52 7 4 +5273,1 6 67 42 43 17 43 52 7 4 +23976,15 57 9 16 17 37 72 54 7 4 +15823,1 6 67 42 43 17 43 52 7 8 +16705,5 6 76 61 62 17 37 52 54 7 4 +23977,15 57 9 16 17 37 72 54 7 8 +3149,1 6 73 74 54 54 7 8 +15781,15 86 88 89 89 87 7 8 +23494,5 6 49 36 37 11 7 4 +2841,1 6 57 9 16 17 10 54 7 8 +24198,5 6 76 61 62 17 37 52 54 7 8 +5424,5 6 53 55 56 58 13 +23507,5 6 49 36 37 11 7 8 +17621,1 6 57 9 16 17 10 54 7 4 +3381,15 57 9 16 17 37 50 54 7 4 +3382,15 57 9 16 17 37 50 54 7 8 +3158,1 6 73 74 54 54 7 4 +15782,15 86 88 89 89 87 7 4 +10852,5 6 12 16 17 37 10 7 8 +12367,1 45 21 22 17 43 50 7 4 +19394,5 6 34 36 37 63 54 7 8 +19397,5 6 34 36 37 63 54 7 4 +12368,1 45 21 22 17 43 50 7 8 +21782,5 6 12 36 37 17 91 7 4 +1303,15 42 43 17 43 32 54 7 4 +21783,5 6 12 36 37 17 91 7 8 +22250,96 16 21 77 78 22 8 +6317,15 55 12 55 56 58 89 56 11 8 +25312,1 6 55 67 47 36 37 11 13 +2149,15 71 36 37 19 58 11 56 7 4 +2366,5 6 57 9 16 36 37 38 17 37 32 7 8 +6337,15 71 36 37 19 58 11 56 7 8 +26548,15 51 36 37 38 37 35 7 4 +6533,1 6 84 90 36 37 38 17 11 8 +23308,15 57 58 58 11 7 4 +12760,15 96 36 61 16 21 77 78 22 79 4 +11669,5 6 53 53 9 16 17 10 7 8 +21425,15 12 51 47 36 37 17 11 13 +11670,5 6 53 53 9 16 17 10 7 4 +12122,15 12 36 16 42 16 17 19 13 +8144,1 6 55 34 36 37 17 19 13 +19096,1 6 26 88 71 47 36 37 17 11 8 +4991,15 34 47 109 110 58 89 56 54 7 4 +4985,15 34 47 109 110 58 89 56 54 7 8 +21424,15 12 51 47 36 37 17 11 8 +600,1 12 16 17 11 7 4 +15822,15 51 42 43 17 37 35 11 54 7 8 +12564,1 12 16 17 11 7 8 +9887,5 6 31 36 37 17 3 4 +9524,15 51 42 43 17 37 35 11 54 7 4 +1304,15 42 43 17 43 32 54 7 8 +16445,5 6 31 36 37 17 3 8 +24831,1 6 76 61 62 17 37 72 56 7 8 +19683,1 6 76 61 62 17 37 72 56 7 4 +2135,1 6 9 16 17 19 7 8 +7148,15 12 11 14 54 54 54 7 8 +25627,15 9 16 17 37 50 11 7 4 +7149,15 12 11 14 54 54 54 7 4 +436,1 6 84 57 58 7 8 +17138,5 6 12 36 16 17 37 35 7 8 +437,1 6 84 57 58 7 4 +6360,5 6 53 12 57 58 11 8 +21459,5 6 57 92 34 36 37 69 +4774,15 12 16 39 36 16 21 77 101 102 103 +6059,1 6 53 9 16 61 16 17 10 7 4 +2134,1 6 9 16 17 19 7 4 +17137,5 6 12 36 16 17 37 35 7 4 +15396,15 9 16 17 43 10 54 7 8 +19691,5 6 57 49 36 37 10 54 7 4 +15397,15 9 16 17 43 10 54 7 4 +6001,5 6 57 49 36 37 10 54 7 8 +1777,15 31 47 42 43 17 63 7 8 +9166,1 6 53 9 16 61 16 17 10 7 8 +23917,15 34 36 37 38 19 56 11 8 +22613,5 6 57 67 68 89 13 +1778,15 31 47 42 43 17 63 7 4 +9506,5 6 65 57 90 16 61 16 17 11 8 +14678,5 6 65 57 90 16 61 16 17 11 13 +10070,5 6 57 9 36 37 38 17 37 68 7 4 +25311,1 6 55 67 47 36 37 11 8 +10069,5 6 57 9 36 37 38 17 37 68 7 8 +19640,5 6 64 16 36 16 42 16 17 11 8 +15094,15 9 61 62 68 89 7 4 +15510,1 6 88 51 52 52 7 4 +6454,1 6 18 12 16 17 11 7 8 +19992,15 34 36 37 75 54 7 8 +15222,5 6 29 9 61 62 17 11 13 +4906,1 6 18 12 16 17 11 7 4 +12726,1 6 29 51 47 48 72 30 7 4 +24584,5 6 51 52 11 54 7 4 +12038,5 6 51 52 11 54 7 8 +15093,15 9 61 62 68 89 7 8 +1380,15 53 18 12 11 14 54 54 7 4 +5564,5 6 84 49 50 7 8 +5860,5 6 67 47 48 48 68 7 8 +1379,15 53 18 12 11 14 54 54 7 8 +2586,5 6 67 47 48 48 68 7 4 +3556,1 6 12 26 65 66 27 28 +5196,5 6 76 16 42 16 17 37 32 7 4 +5565,5 6 84 49 50 7 4 +4526,15 12 36 37 38 17 11 13 +5125,15 31 42 43 17 10 54 54 7 4 +26656,5 6 55 9 16 17 37 35 11 7 4 +4525,15 12 36 37 38 17 11 8 +5126,15 31 42 43 17 10 54 54 7 8 +10573,1 6 67 47 48 48 72 7 8 +11847,1 6 86 34 36 37 63 7 8 +16038,1 6 9 16 36 37 38 17 11 8 +10336,1 6 86 34 36 37 63 7 4 +19993,15 34 36 37 75 54 7 4 +22557,5 6 12 49 36 37 17 11 8 +24438,1 6 88 51 52 52 7 8 +2733,15 57 57 92 9 16 61 16 17 75 7 4 +17060,5 6 57 71 61 62 75 7 8 +9714,1 6 34 36 16 17 63 7 4 +21456,1 6 34 36 16 17 63 7 8 +10008,5 6 67 47 47 36 37 11 8 +22275,5 6 57 71 61 62 75 7 4 +26399,15 53 64 36 37 38 37 68 13 +6415,15 44 34 47 48 32 11 8 +14973,5 6 67 47 47 36 37 11 13 +3629,1 6 51 47 48 35 7 8 +6132,1 6 51 47 48 35 7 4 +21013,5 6 34 107 108 48 35 7 8 +2114,5 6 29 9 61 62 17 11 8 +20570,1 6 64 61 62 37 52 54 7 8 +26302,5 6 55 49 107 108 48 50 11 56 54 7 4 +20571,1 6 64 61 62 37 52 54 7 4 +2734,15 57 57 92 9 16 61 16 17 75 7 8 +10215,1 6 18 12 16 17 62 52 7 8 +12527,1 6 57 53 31 36 16 17 11 8 +24606,1 6 51 117 16 17 10 7 4 +17010,5 6 92 34 16 17 63 7 4 +6102,1 6 18 12 9 16 17 11 8 +15169,15 12 16 36 39 36 39 36 16 17 37 72 7 4 +17011,5 6 92 34 16 17 63 7 8 +26563,1 45 21 22 17 37 32 7 4 +25396,1 45 21 22 17 37 32 7 8 +1796,5 6 57 58 93 58 7 8 +16263,5 6 67 68 56 66 7 8 +5003,1 6 53 12 16 36 37 38 17 11 13 +16264,5 6 67 68 56 66 7 4 +10015,5 6 12 36 16 17 19 13 +16454,15 44 49 107 36 37 69 +15168,15 12 16 36 39 36 39 36 16 17 37 72 7 8 +9977,1 6 55 34 36 37 17 11 8 +12745,1 6 51 61 62 17 63 7 8 +12744,1 6 51 61 62 17 63 7 4 +2903,1 6 53 12 16 36 37 38 17 11 8 +2261,5 6 86 87 7 4 +703,1 6 12 51 61 62 63 7 8 +8225,5 6 57 58 93 58 7 4 +2252,5 6 86 87 7 8 +704,1 6 12 51 61 62 63 7 4 +814,5 6 31 36 37 17 11 8 +4825,5 6 71 72 89 13 +18761,5 6 92 12 11 93 58 7 8 +20652,1 6 84 12 9 16 61 16 17 62 10 7 4 +1227,25 26 27 7 4 +9721,5 6 31 36 37 17 11 13 +18762,5 6 92 12 11 93 58 7 4 +9042,5 6 119 16 17 62 10 7 4 +1226,25 26 27 7 8 +945,15 71 36 37 17 74 85 7 4 +22237,1 6 55 53 88 89 13 +22169,5 6 34 36 16 17 69 +480,15 71 36 37 17 63 85 7 4 +481,15 71 36 37 17 63 85 7 8 +7654,5 6 64 16 17 37 35 87 7 8 +7642,5 6 64 16 17 37 35 87 7 4 +13343,15 12 16 36 16 17 37 10 7 8 +5164,1 6 53 86 34 35 13 +944,15 71 36 37 17 74 85 7 8 +20947,1 12 16 117 118 32 7 4 +13342,15 12 16 36 16 17 37 10 7 4 +5054,1 6 53 55 9 16 17 11 8 +10236,5 6 88 88 55 56 89 7 8 +6863,95 36 37 38 37 35 7 4 +16695,5 6 53 12 36 37 17 10 7 8 +1453,5 6 88 88 55 56 89 7 4 +6862,95 36 37 38 37 35 7 8 +5278,15 55 67 47 48 35 7 8 +16694,5 6 53 12 36 37 17 10 7 4 +20917,5 6 71 47 48 48 68 11 8 +5277,15 55 67 47 48 35 7 4 +10276,15 12 16 36 37 38 37 72 7 8 +12700,15 12 16 36 37 38 17 10 7 8 +9282,5 6 9 16 36 16 17 11 13 +10277,15 12 16 36 37 38 37 72 7 4 +16202,1 6 67 68 58 66 54 7 4 +19687,15 12 16 36 37 38 17 10 7 4 +3260,5 6 9 16 36 16 17 11 8 +16201,1 6 67 68 58 66 54 7 8 +12916,15 51 47 48 72 56 54 7 4 +24022,1 6 57 57 88 89 13 +9521,15 34 36 37 17 11 7 4 +22943,1 6 12 88 57 9 16 61 16 17 19 7 8 +15687,1 6 12 88 57 9 16 61 16 17 19 7 4 +4151,5 6 76 61 62 17 63 7 8 +16831,1 6 88 9 16 17 37 52 7 4 +22786,15 55 12 57 58 56 11 7 4 +38,25 26 27 11 8 +11511,1 6 49 107 107 36 37 11 8 +7778,15 34 36 37 17 11 7 8 +11060,5 6 55 88 57 57 9 16 36 37 38 17 10 7 4 +24031,5 6 12 9 16 36 37 38 10 7 8 +10464,1 6 55 57 9 36 16 17 37 52 7 8 +14677,1 6 57 9 16 36 37 38 37 108 35 54 7 4 +15143,1 6 9 16 36 37 38 17 3 4 +17288,25 26 27 11 13 +3541,5 6 76 61 62 17 63 7 4 +15156,5 6 55 88 57 57 9 16 36 37 38 17 10 7 8 +24030,5 6 12 9 16 36 37 38 10 7 4 +10465,1 6 55 57 9 36 16 17 37 52 7 4 +13262,1 6 57 9 16 36 37 38 37 108 35 54 7 8 +17256,1 6 88 9 16 17 37 52 7 8 +18810,1 6 9 16 36 37 38 17 3 8 +4851,15 9 16 17 37 50 11 7 8 +10235,1 6 57 57 26 9 16 17 11 8 +4984,15 34 47 109 110 13 +8432,1 6 12 65 9 16 17 37 48 52 7 4 +21441,5 6 53 51 107 36 37 17 10 7 8 +9041,5 6 119 16 17 62 10 7 8 +8433,1 6 12 65 9 16 17 37 48 52 7 8 +12752,15 53 12 36 37 19 13 +2650,15 9 16 17 43 32 54 7 4 +2651,15 9 16 17 43 32 54 7 8 +6978,5 6 53 119 120 7 4 +17139,5 6 12 36 16 17 62 10 7 4 +22887,5 6 53 119 120 7 8 +6805,1 6 55 56 66 7 8 +17088,1 6 55 56 66 7 4 +18981,1 6 55 34 36 37 17 11 13 +14514,5 6 124 47 48 11 8 +1942,1 6 84 49 47 48 52 85 54 7 4 +24191,15 55 67 36 37 17 37 72 7 8 +19150,1 6 84 71 72 85 7 8 +22603,1 6 9 10 48 50 7 4 +2400,1 6 9 16 61 16 17 11 13 +19151,1 6 84 71 72 85 7 4 +24192,15 55 67 36 37 17 37 72 7 4 +24963,1 6 86 9 16 17 63 7 4 +2399,1 6 9 16 61 16 17 11 8 +6392,15 49 36 16 17 62 10 7 4 +24565,1 6 86 9 16 17 63 7 8 +20556,5 6 55 67 47 42 43 17 37 52 54 7 8 +18100,1 6 84 49 47 48 52 85 54 7 8 +10346,5 6 84 53 54 58 7 8 +9096,1 6 84 9 16 17 10 85 54 7 4 +16130,1 6 109 9 16 61 16 61 16 17 11 8 +14673,1 6 64 61 62 17 37 72 11 7 4 +10345,5 6 84 53 54 58 7 4 +13614,5 6 53 12 39 36 16 61 16 17 37 35 7 4 +21940,1 45 21 22 17 19 56 11 56 7 8 +4051,5 6 64 36 16 17 43 35 7 4 +9095,1 6 84 9 16 17 10 85 54 7 8 +4866,1 6 53 18 9 16 17 11 7 8 +24623,5 6 31 47 36 37 17 62 10 7 8 +25487,1 6 55 53 88 89 54 54 54 7 4 +18691,1 6 53 18 9 16 17 11 7 4 +24848,15 55 57 57 9 16 36 37 38 37 50 7 8 +13862,1 6 76 61 62 17 37 48 35 54 54 7 8 +23688,5 6 26 88 89 11 8 +12267,5 6 67 114 115 72 7 8 +13863,1 6 76 61 62 17 37 48 35 54 54 7 4 +13613,5 6 53 12 39 36 16 61 16 17 37 35 7 8 +24889,1 12 11 85 85 54 7 8 +18990,1 6 9 16 39 36 16 42 16 17 43 35 7 4 +15272,15 55 9 16 36 16 17 37 50 7 4 +24890,1 12 11 85 85 54 7 4 +24306,5 6 88 57 58 89 11 8 +15271,15 55 9 16 36 16 17 37 50 7 8 +11763,1 6 9 36 16 17 37 52 7 4 +11762,1 6 9 36 16 17 37 52 7 8 +14193,1 6 65 9 16 17 10 93 7 8 +5189,5 6 64 16 17 75 7 4 +5232,5 6 64 16 17 75 7 8 +14749,15 55 53 34 47 48 35 7 4 +11991,15 55 12 88 9 16 17 19 7 8 +15582,1 6 53 12 16 61 16 36 37 38 17 11 13 +21598,5 6 67 47 48 48 115 68 7 8 +23899,1 6 26 88 57 9 16 17 11 8 +19276,15 55 53 34 47 48 35 7 8 +21811,25 26 27 66 13 +23407,5 6 64 61 16 17 17 11 13 +11992,15 55 12 88 9 16 17 19 7 4 +1022,15 57 12 16 17 19 13 +16477,1 6 12 34 36 37 11 8 +21889,1 6 53 57 9 16 17 37 52 54 7 4 +23398,5 6 64 61 16 17 17 11 8 +19206,1 6 53 57 9 16 17 37 52 54 7 8 +15581,1 6 53 12 16 61 16 36 37 38 17 11 8 +24933,5 6 84 34 36 37 94 +14141,1 6 64 36 16 61 16 17 19 7 4 +23789,1 6 84 9 16 17 10 85 7 4 +5972,1 6 64 36 16 61 16 17 19 7 8 +15011,5 6 53 67 47 48 72 7 4 +7181,5 6 53 67 47 48 72 7 8 +12449,1 6 73 36 16 17 37 35 7 8 +959,1 6 84 9 16 17 10 85 7 8 +5233,1 6 51 42 43 17 37 32 54 7 8 +3287,1 6 67 68 58 66 58 7 4 +9215,5 6 31 47 36 37 17 37 35 7 8 +3275,1 6 67 68 58 66 58 7 8 +6674,1 6 51 42 43 17 37 32 54 7 4 +9532,5 6 31 47 36 37 17 37 35 7 4 +24655,5 6 57 9 16 36 16 17 37 48 35 7 4 +11623,5 6 53 55 53 12 16 36 37 38 17 11 8 +2033,1 6 64 16 17 37 35 7 4 +2032,1 6 64 16 17 37 35 7 8 +3516,5 6 53 12 61 16 61 16 17 62 10 7 8 +11679,1 6 12 34 47 36 37 69 +3517,5 6 53 12 61 16 61 16 17 62 10 7 4 +21547,70 16 39 36 16 61 16 17 11 8 +17655,1 6 73 36 16 17 37 35 7 4 +2559,5 6 18 12 16 17 37 32 87 7 8 +4475,5 6 55 65 34 107 36 37 11 8 +1358,1 6 84 51 36 37 10 7 4 +13023,1 6 57 9 16 17 37 35 93 7 4 +1359,1 6 84 51 36 37 10 7 8 +7016,1 6 12 16 36 37 38 17 69 +4268,1 6 57 9 16 17 37 35 93 7 8 +7382,5 6 18 12 31 32 7 8 +22316,15 86 57 9 36 16 61 16 17 11 13 +10653,5 6 55 9 61 62 72 7 4 +5824,5 6 18 12 31 32 7 4 +7726,5 6 55 9 61 62 72 7 8 +17502,15 86 57 9 36 16 61 16 17 11 8 +22133,5 6 61 62 63 7 8 +12891,5 6 64 61 62 17 37 68 11 8 +14354,5 6 61 62 63 7 4 +18591,15 51 36 37 17 43 52 7 8 +23689,5 6 26 88 89 11 56 7 4 +18590,15 51 36 37 17 43 52 7 4 +4583,5 6 65 53 12 11 54 7 4 +17951,15 57 12 65 66 27 28 +21650,1 6 34 42 43 17 10 7 4 +405,15 71 61 62 75 7 8 +21649,1 6 34 42 43 17 10 7 8 +404,15 71 61 62 75 7 4 +24841,15 96 16 16 99 16 17 10 7 8 +15288,15 57 12 16 17 11 13 +16161,1 6 55 12 55 88 89 13 +5490,70 16 36 16 17 37 72 7 4 +12057,5 6 88 89 89 13 +24842,15 96 16 16 99 16 17 10 7 4 +5489,70 16 36 16 17 37 72 7 8 +7916,15 55 12 55 88 57 58 56 11 56 7 8 +24662,1 6 65 9 16 17 37 35 87 27 28 +695,1 6 64 16 17 62 10 7 8 +19138,5 6 12 26 65 66 11 7 4 +12908,5 6 53 55 56 27 28 +694,1 6 64 16 17 62 10 7 4 +21813,5 6 12 26 65 66 11 7 8 +20089,5 6 9 16 36 16 61 16 36 37 38 17 62 10 7 4 +23781,15 55 12 55 57 9 16 36 16 17 19 7 8 +14524,5 6 124 9 16 36 37 38 37 48 123 7 4 +17222,1 6 92 49 47 36 37 17 10 7 8 +17221,1 6 92 49 47 36 37 17 10 7 4 +25659,5 6 124 9 16 36 37 38 37 48 123 7 8 +23780,15 55 12 55 57 9 16 36 16 17 19 7 4 +14903,5 6 9 61 62 30 7 4 +14902,5 6 9 61 62 30 7 8 +1240,5 6 55 53 9 10 7 8 +9410,5 6 9 10 89 33 13 +10571,15 44 34 47 48 32 7 4 +24653,15 57 9 16 36 16 17 37 52 7 4 +24980,5 6 51 36 37 19 33 7 8 +10572,15 44 34 47 48 32 7 8 +15287,15 57 12 16 17 11 8 +3297,5 6 64 61 62 17 37 68 7 4 +3802,25 26 27 58 13 +14862,1 6 88 88 57 9 16 17 10 7 8 +24703,1 6 65 9 16 42 16 17 10 7 8 +6057,5 6 64 61 62 17 37 68 7 8 +16459,1 6 88 88 57 9 16 17 10 7 4 +3730,15 96 39 36 16 21 77 78 22 8 +13266,15 57 9 16 42 16 17 43 32 93 7 8 +16537,1 6 65 88 57 51 52 7 8 +13267,15 57 9 16 42 16 17 43 32 93 7 4 +17507,1 6 65 88 57 51 52 7 4 +12800,15 86 34 36 37 63 7 8 +16863,15 86 34 36 37 63 7 4 +23769,5 6 88 9 16 17 37 48 68 7 8 +14043,1 6 53 12 49 50 7 4 +15036,1 12 16 17 19 56 7 8 +16814,5 6 55 53 9 10 7 4 +11298,5 6 88 9 16 61 16 17 62 10 7 8 +25138,5 6 53 18 12 16 17 37 35 87 54 7 8 +2388,5 6 18 12 16 17 37 108 50 7 4 +25057,15 88 57 58 89 27 56 7 4 +11299,5 6 88 9 16 61 16 17 62 10 7 4 +25139,5 6 53 18 12 16 17 37 35 87 54 7 4 +5227,5 6 92 31 42 43 17 10 54 7 4 +2389,5 6 18 12 16 17 37 108 50 7 8 +3974,1 12 39 36 16 36 37 38 11 8 +13268,1 12 16 17 19 56 7 4 +19998,15 31 47 36 37 17 37 35 54 7 4 +19999,15 31 47 36 37 17 37 35 54 7 8 +20049,1 6 12 16 36 37 38 11 8 +20050,1 6 12 16 36 37 38 11 13 +3867,15 109 110 7 8 +3868,15 109 110 7 4 +11735,5 6 53 18 12 16 17 37 35 54 54 7 8 +2352,1 6 9 16 36 16 61 16 17 10 7 4 +11734,5 6 53 18 12 16 17 37 35 54 54 7 4 +2351,1 6 9 16 36 16 61 16 17 10 7 8 +4392,5 6 9 16 17 43 50 7 8 +26494,15 9 36 37 38 11 8 +22249,96 16 21 77 78 22 79 4 +26495,15 9 36 37 38 11 13 +3227,5 6 71 72 33 13 +4050,5 6 64 36 16 17 43 35 7 8 +15803,5 6 9 16 36 37 38 37 68 7 4 +24639,5 6 12 16 17 37 48 35 10 7 4 +19488,5 6 9 16 17 10 85 54 7 4 +3108,15 65 66 89 7 4 +16142,5 6 9 16 36 37 38 37 68 7 8 +5598,5 6 9 16 17 10 85 54 7 8 +3107,15 65 66 89 7 8 +4588,5 6 65 53 12 11 54 7 8 +17953,1 6 44 9 16 61 16 17 10 7 8 +6582,5 6 9 16 17 43 50 7 4 +9013,5 6 9 10 89 58 7 4 +1704,5 6 9 10 58 11 56 7 8 +9014,5 6 9 10 89 58 7 8 +18360,5 6 55 53 9 10 54 54 7 4 +6322,5 6 9 10 58 11 56 7 4 +26131,5 6 53 54 66 56 7 4 +16783,5 6 92 31 61 62 63 7 4 +23524,15 53 51 52 54 54 7 8 +16774,5 6 92 31 61 62 63 7 8 +23525,15 53 51 52 54 54 7 4 +9906,5 6 12 16 39 36 16 17 19 13 +21487,15 9 16 17 43 17 37 35 93 58 7 8 +10065,15 55 88 57 57 9 16 36 16 17 37 50 7 8 +26533,1 6 9 16 16 16 17 37 52 7 8 +2550,5 6 53 12 61 16 17 11 13 +8664,15 90 16 17 69 +10446,15 34 36 37 17 10 54 54 7 4 +16300,5 6 55 55 51 61 62 63 7 8 +2549,5 6 53 12 61 16 17 11 8 +26532,1 6 9 16 16 16 17 37 52 7 4 +10445,15 34 36 37 17 10 54 54 7 8 +6899,5 6 49 107 107 36 37 11 8 +17843,5 6 84 12 11 11 7 8 +4218,5 6 55 55 51 61 62 63 7 4 +12193,5 6 96 36 61 16 17 19 7 4 +10084,5 6 18 12 16 17 37 48 68 7 8 +9385,5 6 96 36 61 16 17 19 7 8 +3613,5 6 18 12 16 17 37 48 68 7 4 +21227,5 6 9 10 66 89 11 8 +17264,1 6 57 96 36 16 61 16 17 10 7 8 +16056,1 6 92 34 107 108 35 93 7 4 +20217,15 55 67 42 43 17 10 7 8 +6690,1 6 55 88 89 89 56 7 4 +6693,5 6 9 10 11 89 7 8 +20218,15 55 67 42 43 17 10 7 4 +9657,5 6 9 10 11 89 7 4 +16239,5 6 96 16 36 16 21 77 78 22 8 +17593,5 6 55 53 9 10 33 13 +6691,1 6 55 88 89 89 56 7 8 +6590,5 6 18 12 16 17 43 52 7 8 +18915,1 6 9 16 17 37 50 58 54 7 4 +13724,1 6 64 61 62 17 43 50 7 4 +3813,5 6 18 12 16 17 43 52 7 4 +13723,1 6 64 61 62 17 43 50 7 8 +22533,1 6 12 65 71 61 62 63 7 8 +2255,1 6 86 57 58 89 7 8 +17788,1 6 88 57 58 58 89 89 7 4 +17455,1 6 26 34 47 36 37 11 13 +14646,70 16 39 36 39 36 39 36 16 17 37 50 7 8 +2867,1 6 53 9 16 42 16 17 10 7 8 +3412,1 6 86 57 58 89 7 4 +26184,1 6 88 57 58 58 89 89 7 8 +1945,1 6 84 51 47 48 48 50 85 54 7 8 +10026,15 26 88 89 13 +18101,1 6 84 51 47 48 48 50 85 54 7 4 +14647,70 16 39 36 39 36 39 36 16 17 37 50 7 4 +10663,1 6 51 36 37 17 43 48 68 7 4 +26427,5 6 12 57 96 16 21 77 78 22 8 +10664,1 6 51 36 37 17 43 48 68 7 8 +25714,1 6 53 57 58 89 54 54 7 4 +671,1 6 53 84 85 7 8 +25713,1 6 53 57 58 89 54 54 7 8 +5746,5 6 9 10 89 27 13 +17777,5 6 31 36 37 17 10 7 4 +5745,5 6 9 10 89 27 28 +17511,1 6 64 16 42 16 17 43 52 58 89 56 7 8 +21230,5 6 49 50 33 7 8 +672,1 6 53 84 85 7 4 +21231,5 6 49 50 33 7 4 +17454,1 6 26 34 47 36 37 11 8 +2361,5 6 31 36 37 17 10 7 8 +19381,15 53 18 12 11 14 7 8 +11034,5 6 57 53 31 36 37 17 10 7 8 +22445,5 6 51 36 37 91 7 4 +904,70 16 17 10 7 4 +9520,15 57 53 12 34 36 37 17 11 8 +19380,15 53 18 12 11 14 7 4 +23096,5 6 57 53 31 36 37 17 10 7 4 +902,70 16 17 10 7 8 +6624,1 6 55 56 54 7 4 +11303,5 6 57 9 16 17 37 72 7 4 +2914,5 6 57 9 16 17 37 72 7 8 +4875,15 65 67 61 62 91 7 8 +6623,1 6 55 56 54 7 8 +17567,1 6 49 47 48 48 52 7 4 +3715,15 86 34 36 37 19 13 +4876,15 65 67 61 62 91 7 4 +26858,1 6 96 36 16 17 37 72 7 4 +8574,5 6 57 53 31 32 33 13 +6075,1 6 96 36 16 17 37 72 7 8 +19338,5 6 64 16 61 16 36 37 38 10 93 7 8 +22124,1 6 67 36 37 17 37 68 7 8 +22914,15 12 36 16 61 16 39 36 16 17 19 13 +24273,1 6 88 71 36 37 17 11 13 +14417,5 6 9 10 58 66 56 7 8 +2827,5 6 71 72 58 13 +21418,1 6 67 36 37 17 37 68 7 4 +2450,1 6 88 71 36 37 17 11 8 +14418,5 6 9 10 58 66 56 7 4 +24888,1 6 84 12 11 85 85 54 7 4 +24885,1 6 84 12 11 85 85 54 7 8 +20854,1 6 84 88 57 12 16 21 77 78 82 83 8 +2540,1 6 53 51 52 54 7 4 +13379,1 6 53 9 16 36 16 17 37 52 54 7 4 +2539,1 6 53 51 52 54 7 8 +24221,5 6 57 92 67 47 107 36 37 63 7 8 +10399,1 6 53 9 16 36 16 17 37 52 54 7 8 +14053,5 6 12 57 88 12 26 9 16 17 11 8 +5347,5 6 12 16 39 36 16 17 11 8 +15567,5 6 92 12 16 21 77 78 22 79 4 +18972,15 12 36 37 38 37 48 52 56 54 7 4 +23496,5 6 12 16 39 36 16 17 11 13 +18944,5 6 53 36 37 62 10 7 4 +20538,5 6 84 67 68 85 54 7 8 +17631,5 6 53 18 12 34 35 33 13 +20537,5 6 84 67 68 85 54 7 4 +2279,1 6 49 114 115 50 7 4 +24669,1 12 11 10 7 4 +2280,1 6 49 114 115 50 7 8 +24668,1 12 11 10 7 8 +16966,1 6 71 36 37 17 19 58 11 8 +3391,5 6 53 18 12 16 17 37 35 11 8 +25958,5 6 57 9 16 117 118 72 7 8 +26811,5 6 57 9 16 117 118 72 7 4 +23871,15 12 51 114 36 37 17 11 13 +24927,15 53 18 9 16 17 91 7 4 +23870,15 12 51 114 36 37 17 11 8 +16464,1 6 57 55 53 12 36 16 17 37 50 7 8 +24928,15 53 18 9 16 17 91 7 8 +3432,5 6 51 47 42 43 17 37 50 7 4 +2985,5 6 55 12 57 96 36 16 17 37 35 7 8 +3431,5 6 51 47 42 43 17 37 50 7 8 +8922,5 6 18 12 16 17 37 32 87 7 4 +23168,1 6 29 49 50 30 58 7 8 +19517,5 6 55 12 57 96 36 16 17 37 35 7 4 +13646,5 6 34 36 37 38 17 19 13 +23167,1 6 29 49 50 30 58 7 4 +21232,1 6 90 16 36 37 38 17 74 7 4 +4339,1 6 51 114 115 72 7 8 +8451,5 6 76 16 36 16 17 37 72 7 8 +20606,15 12 16 36 37 38 37 35 87 58 7 4 +20607,15 12 16 36 37 38 37 35 87 58 7 8 +21104,15 53 49 47 47 47 47 36 37 17 10 54 7 8 +21079,5 6 53 36 37 62 10 7 8 +8450,5 6 76 16 36 16 17 37 72 7 4 +398,1 6 12 73 16 36 37 38 17 11 8 +3518,5 6 53 12 61 16 17 19 13 +13763,5 6 92 9 10 58 93 7 4 +11344,5 6 92 9 10 58 93 7 8 +399,1 6 12 73 16 36 37 38 17 11 13 +5512,1 6 34 107 36 37 69 +22474,15 55 12 57 58 11 54 7 8 +23896,15 88 57 57 9 36 16 17 10 7 8 +22889,1 6 55 53 12 16 61 16 17 69 +23897,15 88 57 57 9 36 16 17 10 7 4 +12359,1 6 64 61 62 17 37 52 85 7 8 +12877,1 12 11 56 54 7 8 +21890,5 6 44 88 89 56 7 8 +24508,5 6 71 107 36 37 69 +26508,15 55 12 88 55 9 16 36 16 17 10 7 8 +12878,1 12 11 56 54 7 4 +14221,15 9 16 17 43 48 32 11 8 +21899,5 6 44 88 89 56 7 4 +26507,15 55 12 88 55 9 16 36 16 17 10 7 4 +8761,15 9 36 37 38 37 10 7 4 +14451,15 9 36 37 38 37 10 7 8 +23389,5 6 41 88 12 26 9 16 17 62 17 10 7 4 +12358,1 6 64 61 62 17 37 52 85 7 4 +23904,5 6 84 12 11 14 85 85 54 7 4 +15380,1 6 65 57 9 16 17 37 48 52 7 4 +20386,5 6 84 12 11 14 85 85 54 7 8 +6657,1 6 65 57 9 16 17 37 48 52 7 8 +11514,15 67 47 36 37 17 3 4 +8684,5 6 9 36 37 38 10 7 4 +16950,1 6 9 16 36 37 38 17 62 10 7 4 +8665,15 90 16 17 98 +8641,5 6 9 36 37 38 10 7 8 +14708,1 6 9 16 36 37 38 17 62 10 7 8 +13583,5 6 9 16 17 37 32 7 8 +1074,5 6 57 9 61 62 68 7 8 +11513,15 67 47 36 37 17 3 8 +13626,5 6 9 16 17 37 32 7 4 +418,1 6 12 16 21 77 78 22 79 4 +1081,5 6 57 9 61 62 68 7 4 +14222,15 9 16 17 43 48 32 11 13 +23342,5 6 53 18 12 16 17 62 10 7 4 +20292,5 6 53 18 12 16 17 37 35 7 4 +12923,1 6 53 26 34 47 36 37 17 11 13 +20291,5 6 53 18 12 16 17 37 35 7 8 +6125,5 6 57 9 16 117 118 72 11 8 +12922,1 6 53 26 34 47 36 37 17 11 8 +21284,5 6 31 36 37 17 37 35 7 4 +7087,5 6 88 57 58 89 7 8 +11817,1 6 34 107 36 37 94 +23343,5 6 53 18 12 16 17 62 10 7 8 +3616,1 6 64 16 17 10 54 7 4 +16069,5 6 88 57 58 89 7 4 +21306,5 6 65 88 57 9 36 37 38 10 7 8 +24683,1 6 65 9 16 17 69 +21307,5 6 65 88 57 9 36 37 38 10 7 4 +6418,1 6 64 16 17 10 54 7 8 +25269,15 12 26 9 16 17 11 8 +25270,15 12 26 9 16 17 11 13 +8058,1 6 76 36 16 17 37 48 7 4 +8059,1 6 76 36 16 17 37 48 7 8 +12102,5 6 88 26 9 16 17 37 52 7 4 +11782,5 6 53 34 107 36 37 17 63 93 7 8 +21846,15 34 88 90 16 17 11 8 +24490,5 6 9 10 66 89 7 8 +18973,15 12 36 37 38 37 48 52 56 54 7 8 +13736,5 6 9 10 56 58 7 4 +14392,5 6 9 10 56 58 7 8 +24670,5 6 12 65 9 12 51 52 7 4 +7695,5 6 88 89 11 7 8 +25127,5 6 55 53 9 10 54 54 7 8 +6842,5 6 88 89 11 7 4 +1961,1 6 84 49 47 47 47 109 110 13 +20987,1 6 64 16 42 16 17 37 7 8 +19964,5 6 53 34 107 36 37 17 63 93 7 4 +22195,1 6 12 39 36 16 17 37 35 7 8 +18374,1 6 12 36 37 63 7 4 +23388,5 6 57 92 9 36 16 17 37 50 7 4 +14016,1 6 55 71 36 37 17 10 54 7 8 +4027,1 6 53 12 16 61 16 17 11 8 +20997,1 6 12 36 37 63 7 8 +21405,15 55 55 57 57 9 36 37 38 10 7 4 +23387,5 6 57 92 9 36 16 17 37 50 7 8 +6119,25 26 27 66 11 8 +22871,1 6 55 71 36 37 17 10 54 7 4 +4028,1 6 53 12 16 61 16 17 11 13 +4752,1 6 12 96 16 21 77 78 22 8 +10935,5 6 88 9 16 61 16 36 16 17 37 35 11 8 +21467,5 6 57 92 67 47 107 108 48 72 93 58 7 4 +22938,15 31 42 43 17 43 50 7 4 +11384,5 6 18 12 16 17 43 48 32 11 13 +26049,1 12 39 36 16 17 10 7 4 +22939,15 31 42 43 17 43 50 7 8 +17617,15 53 9 10 58 7 8 +20709,1 6 53 34 47 36 37 63 7 4 +4775,5 6 53 88 89 87 7 8 +21975,1 6 90 16 17 91 7 4 +5936,1 6 90 16 17 91 7 8 +21404,15 55 55 57 57 9 36 37 38 10 7 8 +5655,5 6 64 61 62 37 35 27 58 89 7 4 +17616,15 53 9 10 58 7 4 +14466,5 6 64 16 17 98 +3062,15 12 39 36 16 61 16 17 19 13 +20902,5 6 12 65 88 88 12 71 72 7 8 +13746,1 6 64 61 62 17 37 32 7 8 +20903,5 6 12 65 88 88 12 71 72 7 4 +22293,15 71 107 36 37 17 11 13 +22915,1 6 64 61 62 17 37 32 7 4 +7236,15 51 36 37 38 17 37 50 7 8 +25096,15 65 66 66 58 7 8 +1424,5 6 64 16 17 69 +22292,15 71 107 36 37 17 11 8 +18281,15 65 9 16 117 118 72 7 8 +25097,15 65 66 66 58 7 4 +18282,15 65 9 16 117 118 72 7 4 +15175,5 6 9 10 23 7 4 +1853,5 6 53 18 12 16 17 10 54 7 8 +15174,5 6 9 10 23 7 8 +4702,5 6 57 67 68 7 4 +10953,5 6 53 18 12 16 17 10 54 7 4 +4703,5 6 57 67 68 7 8 +636,5 6 64 16 17 94 +3335,1 6 53 67 68 7 4 +385,5 6 71 72 11 8 +25169,1 6 53 12 36 37 63 7 8 +17372,1 6 18 12 16 17 37 108 35 58 7 8 +24517,95 16 36 16 17 91 7 4 +17478,5 6 88 88 90 16 17 106 7 4 +24518,95 16 36 16 17 91 7 8 +13582,15 31 36 37 17 11 66 7 4 +10260,5 6 88 65 88 9 16 17 43 72 7 8 +14455,5 6 64 16 17 59 +7626,15 31 36 37 17 11 66 7 8 +3334,1 6 53 67 68 7 8 +4260,5 6 92 34 35 13 +14377,15 34 36 37 19 10 7 4 +21102,15 49 47 48 48 50 54 7 4 +14376,15 34 36 37 19 10 7 8 +2513,5 6 49 47 48 68 7 4 +17325,5 6 55 53 49 36 37 17 10 7 4 +19566,1 6 55 9 39 36 16 17 10 7 8 +10309,5 6 64 16 17 13 +5391,5 6 49 47 48 68 7 8 +24197,5 6 12 34 36 37 17 37 35 7 4 +16342,5 6 12 34 36 37 17 37 35 7 8 +1826,5 6 90 91 13 +21101,15 49 47 48 48 50 54 7 8 +25882,5 6 53 57 9 16 61 16 17 37 35 7 4 +12375,15 55 12 12 16 17 11 7 4 +321,5 6 31 36 37 17 10 54 7 8 +6512,15 55 12 57 9 39 36 16 17 19 7 4 +8459,5 6 92 9 10 27 28 +5106,15 67 47 36 37 19 13 +903,5 6 9 16 17 69 +13696,5 6 71 47 36 37 10 7 4 +8902,5 6 53 57 9 16 61 16 17 37 35 7 8 +13693,5 6 71 47 36 37 10 7 8 +14796,5 6 12 65 57 58 7 8 +12828,1 6 84 34 35 13 +3907,5 6 12 65 57 58 7 4 +12632,5 6 9 16 17 94 +6513,15 55 12 57 9 39 36 16 17 19 7 8 +4952,5 6 53 12 16 17 63 7 8 +13741,1 6 57 9 16 17 37 50 7 4 +320,5 6 31 36 37 17 10 54 7 4 +4953,5 6 53 12 16 17 63 7 4 +13740,1 6 57 9 16 17 37 50 7 8 +23706,15 55 9 36 16 36 16 17 10 85 7 4 +9767,5 6 84 57 71 72 13 +23707,15 55 9 36 16 36 16 17 10 85 7 8 +22196,1 6 12 39 36 16 17 37 35 7 4 +1619,5 6 71 72 7 8 +1618,5 6 71 72 7 4 +6601,5 6 55 12 16 36 16 21 77 78 22 79 4 +25679,1 6 57 9 39 36 16 42 16 17 11 8 +3919,1 6 57 9 16 61 16 17 11 13 +22382,5 6 64 16 42 16 36 16 17 37 48 35 93 58 7 4 +2655,1 6 57 9 16 61 16 17 11 8 +16592,5 6 64 16 42 16 36 16 17 37 48 35 93 58 7 8 +5641,5 6 84 34 35 85 54 7 4 +22460,15 34 47 48 48 32 7 4 +11440,5 6 84 34 35 85 54 7 8 +22459,15 34 47 48 48 32 7 8 +15626,1 6 53 53 9 10 7 8 +10799,15 44 9 16 36 37 38 17 10 7 4 +3782,5 6 55 88 89 13 +5913,25 26 27 89 13 +16411,5 6 9 16 17 19 +17793,5 6 55 88 57 12 39 36 16 17 19 13 +8156,1 6 12 16 17 98 +17623,1 6 53 53 9 10 7 4 +10806,15 44 9 16 36 37 38 17 10 7 8 +10929,5 6 12 34 36 37 17 62 10 7 4 +21045,5 6 12 16 17 37 48 35 11 7 4 +12398,5 6 51 47 47 36 37 19 58 7 4 +22802,5 6 53 49 36 37 69 +854,5 6 44 88 89 13 +3402,1 6 64 61 62 17 37 35 66 7 4 +11482,5 6 51 47 47 36 37 19 58 7 8 +15376,1 6 113 61 62 17 91 54 54 7 8 +25255,15 55 57 88 89 11 56 7 4 +3403,1 6 64 61 62 17 37 35 66 7 8 +15377,1 6 113 61 62 17 91 54 54 7 4 +205,1 6 12 16 17 69 +10455,15 57 51 36 37 10 7 8 +16089,5 6 51 52 93 7 4 +31,5 2 3 8 +20915,1 6 64 61 62 17 37 48 72 11 8 +22245,15 12 39 36 16 17 19 +22933,1 6 55 9 16 42 16 17 10 54 7 8 +16090,5 6 51 52 93 7 8 +12767,5 6 53 57 9 16 61 16 17 62 10 7 4 +16456,5 6 12 65 9 16 17 37 108 52 7 4 +12766,5 6 53 57 9 16 61 16 17 62 10 7 8 +7232,15 12 36 37 38 17 37 48 35 7 4 +23521,15 53 12 11 54 54 7 8 +7231,15 12 36 37 38 17 37 48 35 7 8 +23522,15 53 12 11 54 54 7 4 +16457,5 6 12 65 9 16 17 37 108 52 7 8 +10819,1 6 12 16 17 19 +21563,1 6 12 16 17 17 +1576,25 26 27 66 7 8 +20755,1 6 114 115 13 +25324,1 6 12 96 36 37 38 17 19 56 11 56 7 4 +18358,15 12 39 36 16 17 69 +1577,25 26 27 66 7 4 +150,1 6 9 61 62 52 7 8 +21948,1 6 12 96 36 37 38 17 19 56 11 56 7 8 +149,1 6 9 61 62 52 7 4 +22194,5 6 12 39 36 16 17 37 35 7 8 +14719,5 6 105 16 36 37 38 37 35 54 7 4 +14718,5 6 105 16 36 37 38 37 35 54 7 8 +2709,15 55 53 9 10 13 +11927,1 6 57 9 16 36 16 117 118 32 7 8 +15342,5 6 9 16 117 118 32 7 4 +12212,5 6 64 16 36 16 17 10 7 4 +21078,15 53 53 54 56 7 8 +15343,5 6 9 16 117 118 32 7 8 +17108,5 6 49 107 36 37 69 +10810,5 6 12 36 37 38 11 13 +12213,5 6 64 16 36 16 17 10 7 8 +5951,5 6 12 36 37 38 11 8 +11533,1 6 67 42 43 17 37 35 87 7 4 +10456,15 57 51 36 37 10 7 4 +11532,1 6 67 42 43 17 37 35 87 7 8 +21882,70 16 36 16 17 37 52 54 7 4 +17515,5 6 57 9 16 17 43 50 54 7 8 +21881,70 16 36 16 17 37 52 54 7 8 +21978,5 6 12 16 36 16 36 37 38 17 11 8 +17514,5 6 57 9 16 17 43 50 54 7 4 +21077,15 53 53 54 56 7 4 +4317,5 6 53 9 10 27 11 8 +16335,5 6 49 107 36 37 38 37 35 11 8 +588,1 6 64 61 62 17 37 48 72 54 7 8 +19270,15 57 86 9 61 16 61 16 17 62 10 7 4 +2823,1 6 64 61 62 17 37 48 72 7 4 +11528,15 86 34 36 37 11 8 +20959,1 6 53 18 9 16 17 10 7 8 +589,1 6 64 61 62 17 37 48 72 54 7 4 +3265,1 6 67 68 66 58 7 8 +13256,1 6 53 18 9 16 17 10 7 4 +2824,1 6 64 61 62 17 37 48 72 7 8 +3264,1 6 67 68 66 58 7 4 +11383,5 6 18 12 16 17 43 48 32 11 8 +16077,1 45 21 22 17 43 32 93 7 8 +10293,15 65 9 16 42 16 17 10 7 4 +16076,1 45 21 22 17 43 32 93 7 4 +12794,1 6 9 16 36 37 38 17 10 54 7 4 +20829,15 57 12 36 37 38 17 11 8 +16087,1 6 53 12 16 17 37 52 7 4 +7849,1 6 64 61 62 17 37 48 50 54 7 8 +8995,5 6 53 9 36 37 38 10 54 7 8 +8509,1 6 9 16 36 37 38 17 10 54 7 8 +15521,1 6 53 12 16 17 37 52 7 8 +3641,1 6 64 61 62 17 37 48 50 54 7 4 +10284,5 6 53 9 36 37 38 10 54 7 4 +10292,15 65 9 16 42 16 17 10 7 8 +11624,5 6 53 55 51 36 37 94 +6344,5 6 84 67 36 37 38 19 13 +25987,15 34 107 36 37 38 37 72 7 8 +12672,5 6 53 67 36 37 17 10 7 8 +19418,15 96 16 36 16 17 37 50 54 7 4 +24012,15 55 12 16 17 91 7 4 +15322,15 55 53 57 9 16 61 16 17 19 54 7 8 +8987,5 6 53 67 36 37 17 10 7 4 +24011,15 55 12 16 17 91 7 8 +15321,15 55 53 57 9 16 61 16 17 19 54 7 4 +24519,5 6 51 47 109 110 13 +12872,1 6 65 57 57 9 16 17 11 8 +9495,15 9 16 17 17 54 7 8 +21127,5 6 53 53 9 10 54 7 8 +9537,1 6 57 53 53 54 7 4 +6811,1 6 34 107 108 108 35 7 4 +12873,1 6 65 57 57 9 16 17 11 13 +21938,5 45 21 22 17 19 56 11 8 +21130,5 6 53 53 9 10 54 7 4 +8962,1 6 57 53 53 54 7 8 +7441,1 6 34 107 108 108 35 7 8 +4073,15 57 9 16 36 16 17 37 50 7 8 +16915,1 12 16 39 36 16 17 37 10 7 8 +15967,1 12 16 36 16 117 118 35 7 4 +2819,1 12 16 39 36 16 17 37 10 7 4 +24995,15 57 58 66 89 7 4 +14740,1 6 55 34 107 108 35 56 7 4 +24996,15 57 58 66 89 7 8 +12549,15 12 16 36 16 36 16 17 37 72 7 8 +19417,15 96 16 36 16 17 37 50 54 7 8 +21365,5 6 12 36 37 38 37 35 85 54 7 8 +23160,15 67 117 16 17 11 13 +15565,15 55 9 16 42 16 17 10 93 7 4 +15566,15 55 9 16 42 16 17 10 93 7 8 +7380,5 6 105 16 61 39 36 16 17 19 7 4 +21366,5 6 12 36 37 38 37 35 85 54 7 4 +16138,70 16 36 39 36 16 61 16 17 37 48 35 54 7 4 +2712,15 12 11 93 58 7 8 +2711,15 12 11 93 58 7 4 +327,15 31 42 43 17 37 32 7 4 +326,15 31 42 43 17 37 32 7 8 +9494,15 9 16 17 17 54 7 4 +7381,5 6 105 16 61 39 36 16 17 19 7 8 +22387,5 6 90 39 36 16 61 16 17 19 7 8 +22563,15 65 66 89 11 8 +23159,15 67 117 16 17 11 8 +11846,1 6 84 53 34 35 13 +6069,5 6 71 36 37 19 33 13 +2199,1 6 88 12 26 65 66 11 8 +9917,5 6 71 72 27 28 +9248,15 53 71 72 13 +20744,15 12 36 16 39 36 16 17 19 13 +3170,1 6 64 16 17 37 108 35 7 4 +14431,5 6 84 18 12 11 14 7 8 +16137,70 16 36 39 36 16 61 16 17 37 48 35 54 7 8 +928,5 6 84 18 12 11 14 7 4 +23070,5 6 9 16 36 37 38 17 37 52 11 8 +8795,1 6 86 53 47 36 37 17 10 54 7 8 +23889,15 12 11 27 58 7 4 +16782,5 6 92 9 10 11 8 +24298,15 12 11 27 58 7 8 +19081,15 12 16 36 37 38 37 10 7 4 +10273,15 88 51 47 36 37 17 11 8 +24708,5 6 71 109 110 11 8 +10274,15 88 51 47 36 37 17 11 13 +18218,5 6 57 88 57 58 58 89 13 +19080,15 12 16 36 37 38 37 10 7 8 +4072,15 57 9 16 36 16 17 37 50 7 4 +22758,15 34 109 110 11 8 +22759,15 34 109 110 11 13 +23261,15 34 36 37 11 54 7 8 +2384,1 6 55 9 61 62 68 7 4 +9936,15 71 47 48 52 85 54 7 4 +12350,1 6 64 92 9 42 16 16 17 19 7 8 +18147,15 31 107 42 43 17 91 54 7 8 +8554,1 6 55 9 61 62 68 7 8 +9937,15 71 47 48 52 85 54 7 8 +12351,1 6 64 92 9 42 16 16 17 19 7 4 +2729,5 6 57 92 34 35 7 8 +2730,5 6 57 92 34 35 7 4 +3169,1 6 64 16 17 37 108 35 7 8 +18148,15 31 107 42 43 17 91 54 7 4 +8043,5 6 124 47 36 37 75 7 8 +14231,5 6 12 16 36 16 61 16 17 19 13 +8042,5 6 124 47 36 37 75 7 4 +11642,5 6 31 36 37 17 11 7 8 +9904,1 6 57 9 16 36 16 61 16 17 37 35 7 8 +7898,1 6 57 9 16 36 16 61 16 17 37 35 7 4 +1865,1 6 53 12 16 61 16 17 19 13 +7985,1 6 55 53 55 56 56 7 8 +11342,1 6 92 57 58 13 +20600,1 6 55 53 55 56 56 7 4 +13753,5 6 34 47 48 48 52 54 7 4 +17565,5 6 34 47 48 48 52 54 7 8 +16556,15 55 57 92 31 32 7 4 +11220,5 6 92 9 16 17 100 7 4 +23236,15 55 12 55 88 57 58 89 66 56 7 4 +16557,15 55 57 92 31 32 7 8 +11221,5 6 92 9 16 17 100 7 8 +13360,5 6 53 90 36 16 61 16 17 19 7 8 +26400,15 53 64 36 37 38 37 68 68 54 7 4 +7596,1 6 84 51 36 37 19 13 +12720,1 6 29 9 16 17 63 7 8 +24763,1 6 55 9 16 17 43 72 7 8 +26403,15 53 64 36 37 38 37 68 68 54 7 8 +13361,5 6 53 90 36 16 61 16 17 19 7 4 +14813,5 6 86 55 65 66 7 8 +21728,15 55 53 88 89 56 7 8 +13919,15 31 42 43 17 10 93 58 7 4 +14812,5 6 86 55 65 66 7 4 +21729,15 55 53 88 89 56 7 4 +19504,5 6 9 16 36 37 38 17 37 52 7 8 +13920,15 31 42 43 17 10 93 58 7 8 +5765,5 6 64 61 62 37 50 85 54 7 8 +19503,5 6 9 16 36 37 38 17 37 52 7 4 +14569,15 12 39 36 16 61 16 17 11 8 +26378,1 6 64 92 9 42 16 17 10 93 7 8 +2170,1 6 51 52 56 66 58 7 4 +12520,1 6 12 109 110 11 8 +18048,1 6 51 52 56 66 58 7 8 +8911,5 6 92 9 10 7 4 +26379,1 6 64 92 9 42 16 17 10 93 7 4 +14570,15 12 39 36 16 61 16 17 11 13 +5135,5 6 92 9 10 7 8 +19780,15 86 12 16 39 36 16 17 19 13 +22361,1 12 9 16 17 43 32 54 54 7 4 +14316,5 6 84 34 35 7 8 +22360,1 12 9 16 17 43 32 54 54 7 8 +14315,5 6 84 34 35 7 4 +990,1 6 53 9 36 37 38 10 54 7 4 +4063,15 31 117 16 17 37 35 7 8 +24374,1 6 53 18 12 16 61 16 117 118 52 54 7 4 +4062,15 31 117 16 17 37 35 7 4 +17957,15 57 12 26 65 9 16 17 91 7 4 +21530,1 6 53 18 12 16 61 16 17 118 17 63 7 8 +17958,15 57 12 26 65 9 16 17 91 7 8 +13606,5 6 55 55 55 71 72 13 +7651,1 6 53 9 36 37 38 10 54 7 8 +15255,5 6 92 12 16 17 62 10 7 8 +21531,1 6 53 18 12 16 61 16 17 118 17 63 7 4 +15256,5 6 92 12 16 17 62 10 7 4 +17196,1 6 57 53 9 16 61 16 36 37 38 17 11 8 +19010,1 6 65 9 16 17 19 7 8 +11212,1 6 65 9 16 17 19 7 4 +6453,1 6 12 11 11 7 4 +777,1 6 12 11 11 7 8 +6433,15 12 16 36 37 38 37 48 68 7 4 +20338,15 12 16 36 37 38 37 48 68 7 8 +7924,1 6 84 55 9 16 17 63 85 7 4 +10982,1 6 57 9 16 36 16 61 16 17 62 10 7 4 +25838,5 6 26 88 89 7 4 +26716,1 6 55 12 57 55 9 16 36 37 38 17 37 72 7 4 +13996,1 6 84 55 9 16 17 63 85 7 8 +18405,5 6 26 88 89 7 8 +26567,1 6 55 12 57 55 9 16 36 37 38 17 37 72 7 8 +4574,5 6 53 54 87 7 4 +14485,5 6 53 55 56 7 4 +4575,5 6 53 54 87 7 8 +9411,5 6 53 55 56 7 8 +17423,5 6 49 50 58 11 7 8 +26499,15 55 12 65 9 16 17 11 8 +1799,5 6 88 89 66 13 +3646,15 67 47 36 37 11 8 +20116,5 6 53 9 16 36 16 17 37 50 54 7 8 +8562,15 55 34 35 89 7 4 +18188,5 6 53 9 16 36 16 17 37 50 54 7 4 +26500,15 55 12 65 9 16 17 11 13 +3647,15 67 47 36 37 11 13 +18992,15 9 16 39 36 16 42 16 17 43 35 7 8 +14987,5 6 88 57 55 9 16 17 37 72 7 4 +18991,15 9 16 39 36 16 42 16 17 43 35 7 4 +4569,15 9 16 21 77 78 22 8 +8563,15 55 34 35 89 7 8 +24847,15 55 57 57 9 16 36 37 38 37 50 7 4 +8937,5 6 57 55 86 87 7 4 +16415,5 6 55 31 42 43 17 10 7 4 +15824,15 67 42 43 17 43 52 7 8 +19675,1 6 53 9 16 61 16 17 10 85 54 7 4 +22755,5 6 57 55 86 87 7 8 +24937,5 6 55 31 42 43 17 10 7 8 +696,1 6 53 9 16 61 16 17 10 85 54 7 8 +15825,15 67 42 43 17 43 52 7 4 +21337,1 45 21 22 17 37 72 85 93 7 4 +17726,5 6 9 16 36 16 17 63 7 8 +7785,5 6 12 34 36 37 17 10 54 7 8 +18163,5 6 9 16 36 16 17 63 7 4 +22438,1 6 88 9 16 61 16 36 16 17 37 35 11 7 4 +7784,5 6 12 34 36 37 17 10 54 7 4 +9786,5 6 84 9 10 58 7 8 +9403,15 55 56 54 7 4 +13220,1 6 73 16 17 62 10 7 8 +9404,15 55 56 54 7 8 +22357,15 9 16 17 10 54 54 7 4 +22358,15 9 16 17 10 54 54 7 8 +9088,5 6 84 9 10 58 7 4 +26077,5 6 57 67 36 37 17 3 4 +11093,5 6 71 72 66 58 7 8 +26150,5 6 51 42 43 17 37 10 7 8 +11094,5 6 71 72 66 58 7 4 +4212,1 6 73 16 17 62 10 7 4 +21951,15 55 12 55 96 16 21 77 78 22 8 +14062,15 49 107 36 37 17 37 48 72 7 8 +14063,15 49 107 36 37 17 37 48 72 7 4 +891,15 9 16 17 43 68 7 8 +12143,15 71 47 36 37 17 10 7 4 +1030,15 67 36 37 10 7 8 +14071,5 6 18 12 16 17 37 108 52 7 4 +890,15 9 16 17 43 68 7 4 +1031,15 67 36 37 10 7 4 +14072,5 6 18 12 16 17 37 108 52 7 8 +12142,15 71 47 36 37 17 10 7 8 +6401,5 6 12 31 32 7 8 +26165,1 6 65 31 36 37 11 8 +26737,1 6 12 90 16 17 91 7 8 +594,5 6 12 31 32 7 4 +15203,5 6 18 12 16 17 19 13 +8576,1 6 53 34 47 48 32 54 54 7 4 +15538,5 6 9 16 36 16 17 37 52 7 4 +19935,1 6 53 34 47 48 32 54 54 7 8 +15537,5 6 9 16 36 16 17 37 52 7 8 +23324,15 9 16 17 35 7 4 +23323,15 9 16 17 35 7 8 +3964,1 6 55 49 50 13 +4769,1 6 12 16 17 37 48 68 7 4 +14394,1 6 57 55 56 13 +21483,70 36 16 17 37 108 48 72 93 58 7 4 +19760,1 6 57 67 47 117 16 17 118 17 11 13 +21484,70 36 16 17 37 108 48 72 93 58 7 8 +21422,15 12 44 49 47 48 52 7 8 +26541,1 6 86 34 36 37 17 10 54 7 8 +7982,5 6 88 89 27 28 +927,5 6 84 9 10 13 +19759,1 6 57 67 47 117 16 17 118 17 11 8 +21423,15 12 44 49 47 48 52 7 4 +17115,1 6 64 16 36 16 17 37 108 52 7 8 +5693,15 88 51 67 36 37 17 11 8 +6026,1 6 55 57 51 36 37 17 11 8 +17114,1 6 64 16 36 16 17 37 108 52 7 4 +14505,1 6 124 47 48 35 54 7 4 +6027,1 6 55 57 51 36 37 17 11 13 +14506,1 6 124 47 48 35 54 7 8 +15289,5 6 64 61 62 17 11 58 7 4 +5694,15 88 51 67 36 37 17 11 13 +8405,5 6 12 12 67 61 62 63 7 8 +8406,5 6 12 12 67 61 62 63 7 4 +16312,5 6 12 88 9 16 36 37 38 37 52 7 8 +15402,15 16 17 43 10 54 7 8 +22986,5 6 9 61 62 108 32 54 7 8 +15401,15 16 17 43 10 54 7 4 +11912,1 6 65 57 58 11 7 4 +5281,15 57 53 57 49 50 54 7 8 +26694,5 6 57 9 16 36 16 17 74 7 8 +5280,15 57 53 57 49 50 54 7 4 +1553,5 6 57 9 16 36 16 17 74 7 4 +11373,1 6 31 47 48 50 7 8 +14257,1 6 49 36 16 17 37 35 7 8 +19421,5 6 12 88 9 16 36 37 38 37 52 7 4 +19431,1 6 41 12 16 17 11 7 4 +14804,5 6 65 51 52 13 +17642,1 6 53 54 56 89 13 +26211,5 6 96 16 36 16 61 16 17 11 8 +22621,5 6 86 31 36 37 17 11 8 +7127,5 6 12 16 36 16 21 77 78 22 8 +23567,5 6 67 47 48 68 58 7 4 +9221,1 6 53 65 57 58 13 +23132,1 6 86 53 9 16 61 16 17 62 10 7 4 +23566,5 6 67 47 48 68 58 7 8 +3174,1 6 18 12 16 17 118 17 63 7 4 +23131,1 6 86 53 9 16 61 16 17 62 10 7 8 +1126,5 6 12 31 32 11 8 +3175,1 6 18 12 16 17 118 17 63 7 8 +16614,5 6 49 36 16 17 10 7 4 +9803,1 6 55 49 36 37 11 13 +710,5 6 84 12 34 35 13 +11802,5 6 71 72 89 27 7 8 +19132,5 6 113 61 62 17 37 11 8 +6142,1 6 64 16 17 37 48 50 7 4 +14143,1 6 41 12 16 17 11 7 8 +6143,1 6 64 16 17 37 48 50 7 8 +24026,15 12 11 58 11 58 7 8 +12718,5 6 29 9 10 13 +20672,5 6 9 16 36 37 38 17 37 52 85 54 7 8 +9655,5 6 88 89 23 24 +25904,5 6 55 34 36 37 17 11 13 +18980,5 6 55 34 36 37 17 11 8 +1932,15 53 84 85 7 4 +9802,1 6 55 49 36 37 11 8 +1933,15 53 84 85 7 8 +11544,15 51 47 48 52 7 4 +11545,15 51 47 48 52 7 8 +6345,15 44 96 16 36 37 38 19 13 +6313,15 55 12 55 56 58 89 11 8 +20839,1 6 84 31 32 7 8 +23625,15 9 39 36 16 36 16 61 16 17 37 48 35 7 8 +5991,1 6 88 57 9 16 17 11 8 +11854,5 6 76 16 36 16 17 37 35 54 54 7 4 +10582,15 67 47 47 47 36 37 17 11 8 +16164,1 6 88 57 9 16 17 11 13 +23626,15 9 39 36 16 36 16 61 16 17 37 48 35 7 4 +11855,5 6 76 16 36 16 17 37 35 54 54 7 8 +21727,1 6 55 53 88 89 56 7 8 +23605,1 6 92 12 11 54 7 4 +23877,1 6 53 18 12 16 17 37 35 56 54 7 4 +6023,5 6 57 67 36 37 17 11 8 +6024,5 6 57 67 36 37 17 11 13 +13961,1 6 12 51 42 43 17 37 35 54 7 4 +10583,15 67 47 47 47 36 37 17 11 13 +1192,1 6 53 34 36 37 17 10 7 4 +14366,1 12 36 37 38 37 35 7 8 +24998,5 6 65 57 9 16 117 118 72 11 8 +1651,1 6 53 34 36 37 17 10 7 8 +21265,5 6 64 36 16 17 37 10 54 7 8 +11816,1 6 34 36 37 17 62 68 7 8 +22657,1 6 29 51 61 62 112 7 4 +3664,5 6 55 12 11 11 8 +21266,5 6 64 36 16 17 37 10 54 7 4 +14369,1 12 36 37 38 37 35 7 4 +20840,1 6 84 31 32 7 4 +22656,1 6 29 51 61 62 112 7 8 +19072,15 12 49 50 13 +24809,1 12 16 17 19 58 7 8 +11172,1 6 51 36 37 17 91 7 4 +24722,1 12 16 17 19 58 7 4 +11090,5 6 88 55 57 65 66 13 +25516,5 6 53 71 47 36 37 17 10 54 7 4 +6274,40 41 88 12 26 9 16 17 11 8 +4557,5 6 12 57 58 13 +8250,1 6 64 61 62 17 37 35 56 89 7 4 +20042,5 6 41 12 16 42 16 17 19 13 +6457,5 6 9 10 87 27 28 +20992,5 6 55 56 11 7 8 +8524,1 6 49 36 16 17 62 10 7 8 +11943,1 6 49 36 16 17 62 10 7 4 +8486,5 6 55 53 9 10 54 7 4 +3803,25 26 27 58 58 7 4 +8485,5 6 55 53 9 10 54 7 8 +2673,1 6 9 10 58 89 85 7 8 +3992,25 26 27 58 58 7 8 +9963,1 6 84 57 58 66 7 4 +24840,15 12 16 16 99 16 17 10 7 8 +2674,1 6 9 10 58 89 85 7 4 +9962,1 6 84 57 58 66 7 8 +7725,5 6 12 34 36 37 17 11 8 +26538,1 6 55 53 9 10 66 7 8 +4474,5 6 55 55 55 9 16 17 37 48 72 7 4 +19971,1 6 53 34 36 37 10 85 54 7 8 +2875,5 6 9 16 17 43 52 7 8 +25945,5 6 53 12 9 16 17 10 7 8 +21339,5 45 21 22 17 37 72 85 93 7 8 +11764,1 6 9 36 16 61 16 17 11 8 +25946,5 6 53 12 9 16 17 10 7 4 +2708,1 6 55 53 9 10 13 +4473,5 6 55 55 55 9 16 17 37 48 72 7 8 +22267,1 6 65 9 16 17 37 72 7 8 +4626,5 6 29 49 50 7 8 +4625,5 6 29 49 50 7 4 +20161,1 6 92 12 11 54 7 8 +5608,1 6 53 57 109 110 54 7 8 +13938,15 55 9 16 36 16 17 37 48 35 7 4 +21338,5 45 21 22 17 37 72 85 93 7 4 +2870,5 6 9 16 17 43 52 7 4 +11827,5 6 34 107 36 16 17 37 35 58 7 8 +13939,15 55 9 16 36 16 17 37 48 35 7 8 +17000,1 6 53 57 109 110 54 7 4 +22692,5 6 53 12 49 36 37 17 10 7 4 +15885,1 6 88 88 9 16 36 16 17 10 7 8 +26119,15 88 57 58 85 85 54 7 8 +16193,1 6 29 86 34 35 13 +7865,1 6 53 67 47 107 108 35 54 7 4 +17814,1 6 18 12 11 7 8 +26118,15 88 57 58 85 85 54 7 4 +17813,1 6 18 12 11 7 4 +5048,1 12 36 37 38 62 10 7 4 +6719,5 45 21 22 17 10 7 8 +14119,1 6 88 88 9 16 36 16 17 10 7 4 +7268,1 12 36 37 38 62 10 7 8 +6718,5 45 21 22 17 10 7 4 +20108,5 6 53 12 49 36 37 17 10 7 8 +20377,5 6 53 12 34 36 37 63 7 4 +2941,1 6 9 16 17 62 32 54 7 4 +6240,5 6 55 12 11 7 8 +20376,5 6 53 12 34 36 37 63 7 8 +133,1 6 49 50 13 +21450,5 6 34 36 37 17 37 50 7 4 +2477,1 6 65 66 89 7 8 +16176,5 6 34 36 37 17 37 50 7 8 +24276,5 6 57 9 16 36 16 117 118 50 7 4 +3269,1 6 71 72 56 66 58 7 4 +1179,5 6 53 34 42 43 17 63 7 4 +24277,5 6 57 9 16 36 16 117 118 50 7 8 +3285,1 6 71 72 56 66 58 7 8 +1647,5 6 53 34 42 43 17 63 7 8 +9483,15 9 16 17 43 68 11 8 +11127,5 6 88 88 57 57 53 9 10 54 7 8 +25739,5 6 96 16 36 16 61 16 17 19 13 +7893,1 6 65 66 89 7 4 +23379,5 6 57 92 51 36 37 10 7 4 +23378,5 6 57 92 51 36 37 10 7 8 +16704,15 34 107 47 36 37 10 7 4 +21234,5 6 90 16 36 37 38 17 74 7 8 +21233,5 6 90 16 36 37 38 17 74 7 4 +3000,5 6 105 16 17 10 7 8 +3021,5 6 88 88 57 57 53 9 10 54 7 4 +13678,5 6 53 12 51 36 37 17 10 7 4 +8692,5 6 53 67 47 36 37 17 63 7 4 +24290,5 6 53 12 51 36 37 17 10 7 8 +11007,5 6 53 67 47 36 37 17 63 7 8 +22313,15 57 58 87 54 7 8 +25325,5 6 53 71 47 36 37 17 10 54 7 8 +22314,15 57 58 87 54 7 4 +23349,1 6 65 9 16 17 91 7 4 +22222,5 6 51 117 16 17 19 7 8 +16703,15 34 107 47 36 37 10 7 8 +23350,1 6 65 9 16 17 91 7 8 +17907,5 6 53 55 53 12 16 61 16 17 11 8 +22221,5 6 51 117 16 17 19 7 4 +13652,15 9 36 16 17 37 115 68 7 4 +25489,15 9 36 16 17 37 115 68 7 8 +17681,1 6 34 35 93 58 7 4 +22866,1 6 12 16 16 17 19 13 +17680,1 6 34 35 93 58 7 8 +3001,5 6 105 16 17 10 7 4 +21615,1 6 65 88 89 7 8 +8102,1 6 55 49 36 37 17 69 +7887,5 6 9 16 17 43 52 11 8 +1701,15 55 12 57 58 11 56 7 8 +6310,15 55 12 88 57 58 58 11 56 7 4 +2051,5 6 84 64 16 17 10 85 54 7 4 +4134,15 71 36 37 19 58 11 7 8 +2052,5 6 84 64 16 17 10 85 54 7 8 +2635,15 67 47 107 36 37 63 7 4 +21772,5 6 65 12 71 72 7 8 +2636,15 67 47 107 36 37 63 7 8 +21771,5 6 65 12 71 72 7 4 +119,5 6 53 34 35 54 7 4 +14151,5 6 57 12 61 16 17 62 10 7 4 +22092,5 6 55 12 57 58 56 11 56 7 4 +22335,15 109 110 58 11 56 7 8 +10393,1 6 124 36 37 11 13 +13484,1 6 29 9 61 62 11 8 +7294,5 6 57 12 61 16 17 62 10 7 8 +19809,5 6 55 12 57 58 56 11 56 7 8 +22477,15 55 53 12 57 96 16 21 77 78 22 8 +13485,1 6 29 9 61 62 11 13 +2077,15 55 12 57 58 11 56 7 4 +10392,1 6 124 36 37 11 8 +9885,15 49 42 43 17 37 72 7 4 +16162,15 88 55 56 56 11 56 7 4 +26663,5 6 51 114 115 52 7 4 +8614,15 88 55 56 56 11 56 7 8 +128,1 6 53 54 58 7 4 +129,1 6 53 54 58 7 8 +9886,15 49 42 43 17 37 72 7 8 +13136,1 6 55 57 67 61 62 63 7 8 +26453,15 53 64 36 37 38 37 11 54 7 8 +21575,1 6 64 16 61 62 17 37 72 30 7 8 +24244,1 6 92 31 47 42 43 17 11 8 +13648,15 9 16 17 37 115 68 13 +2411,1 45 21 22 17 37 35 7 4 +26183,5 6 53 51 47 48 52 7 8 +5878,1 6 49 107 108 108 52 54 7 8 +26664,5 6 51 114 115 52 7 8 +18070,5 6 53 51 47 48 52 7 4 +25921,1 6 55 53 55 88 55 57 12 11 58 7 4 +7833,1 6 49 47 48 48 50 7 8 +3471,1 6 12 65 9 16 17 91 7 4 +26657,5 6 12 34 36 37 17 3 4 +7832,1 6 49 47 48 48 50 7 4 +3472,1 6 12 65 9 16 17 91 7 8 +22702,5 6 9 10 66 87 7 4 +5877,1 6 49 107 108 108 52 54 7 4 +22701,5 6 9 10 66 87 7 8 +1684,1 45 21 22 17 37 35 7 8 +22341,15 109 110 89 11 8 +406,5 6 76 61 62 17 37 72 7 4 +4681,5 6 49 107 36 37 19 +17971,5 6 76 61 62 17 37 72 7 8 +14860,5 6 9 10 89 56 7 8 +4203,1 6 64 61 62 17 37 50 54 54 7 4 +4204,1 6 64 61 62 17 37 50 54 54 7 8 +10895,15 96 16 36 37 38 37 72 7 8 +12204,5 6 64 61 62 17 10 93 58 7 4 +26863,1 6 64 16 17 43 52 7 8 +2705,5 6 64 61 62 17 10 93 58 7 8 +21026,5 6 88 57 58 89 66 13 +26862,1 6 64 16 17 43 52 7 4 +8395,5 6 107 108 108 7 4 +14886,15 96 36 37 38 17 3 8 +8396,5 6 107 108 108 7 8 +10896,15 96 16 36 37 38 37 72 7 4 +23857,1 6 92 31 42 43 17 37 35 93 7 8 +13307,1 6 84 55 9 16 42 16 17 37 72 85 7 4 +3658,15 55 12 11 13 +9083,15 9 16 36 37 38 37 10 7 4 +10262,15 88 65 88 9 16 17 43 72 7 4 +13521,1 6 92 31 42 43 17 37 35 93 7 4 +9084,15 9 16 36 37 38 37 10 7 8 +10261,15 88 65 88 9 16 17 43 72 7 8 +17722,1 6 55 9 36 37 38 37 35 7 4 +18421,1 6 55 12 11 89 7 4 +391,1 12 16 17 74 7 8 +13987,1 6 64 16 61 62 17 37 72 30 7 4 +17721,1 6 55 9 36 37 38 37 35 7 8 +23314,1 6 53 54 58 11 8 +5795,1 6 55 12 11 89 7 8 +9913,5 6 9 10 89 56 7 4 +22351,1 6 34 36 16 17 10 54 54 7 8 +18789,16 21 77 101 102 103 +21088,5 6 31 47 107 36 37 17 11 8 +4833,15 12 36 16 17 37 68 89 7 4 +7213,15 12 36 16 17 37 68 89 7 8 +11897,1 6 64 61 62 17 37 52 58 54 7 4 +17816,5 6 57 12 16 21 77 78 22 8 +19125,5 6 12 36 37 38 37 48 72 7 4 +8802,5 6 67 42 43 17 62 17 37 54 7 8 +21536,5 6 53 55 57 58 7 4 +10423,5 6 18 12 16 17 10 54 54 7 8 +15110,5 6 57 55 53 9 61 16 17 62 10 7 8 +19124,5 6 12 36 37 38 37 48 72 7 8 +24213,5 6 105 106 89 13 +8803,5 6 67 42 43 17 62 17 37 54 7 4 +11865,5 6 18 12 16 17 10 54 54 7 4 +15109,5 6 57 55 53 9 61 16 17 62 10 7 4 +14697,5 6 57 55 67 61 62 63 7 8 +14885,15 96 36 37 38 17 3 4 +6154,5 6 18 12 16 42 16 17 37 35 7 8 +8493,5 6 57 55 67 61 62 63 7 4 +6153,5 6 18 12 16 42 16 17 37 35 7 4 +120,5 6 53 34 35 54 7 8 +12597,1 6 55 9 16 17 37 52 7 4 +5985,1 6 55 9 16 17 37 52 7 8 +22300,1 6 64 61 62 17 37 32 93 7 4 +5739,5 6 12 65 66 89 13 +15365,15 55 12 57 9 16 36 16 17 37 72 7 4 +20173,15 12 39 36 16 21 77 78 22 8 +16775,1 6 64 61 62 17 37 32 93 7 8 +15366,15 55 12 57 9 16 36 16 17 37 72 7 8 +21953,15 53 12 16 17 11 7 4 +10421,15 67 47 47 36 37 17 11 13 +7321,1 45 21 22 17 37 35 11 93 7 8 +25333,1 12 16 36 37 38 17 37 48 52 7 8 +25952,1 6 88 9 16 17 37 48 68 7 8 +10420,15 67 47 47 36 37 17 11 8 +11182,1 45 21 22 17 37 35 11 93 7 4 +16980,1 6 55 12 88 89 7 8 +9606,1 6 55 12 88 89 7 4 +25658,5 6 55 55 53 9 16 61 16 17 37 35 11 7 8 +19470,1 6 53 64 16 36 16 61 16 17 37 123 7 8 +1771,1 6 57 9 61 62 17 10 7 4 +14721,15 34 36 37 17 74 7 4 +24700,5 6 31 42 43 17 63 54 7 4 +14722,15 34 36 37 17 74 7 8 +11896,1 6 64 61 62 17 37 52 58 54 7 8 +17586,5 6 105 61 16 17 19 7 8 +15765,5 6 105 61 16 17 19 7 4 +16912,1 6 36 37 10 7 4 +22814,15 65 9 16 17 91 7 4 +3926,15 51 36 37 17 10 54 7 4 +16911,1 6 36 37 10 7 8 +22813,15 65 9 16 17 91 7 8 +11951,5 6 57 57 57 26 65 66 13 +3925,15 51 36 37 17 10 54 7 8 +4490,5 6 55 53 9 16 61 16 17 62 10 7 8 +9142,5 6 53 18 12 11 14 54 7 4 +10930,1 6 57 9 61 62 17 10 7 8 +4489,5 6 55 53 9 16 61 16 17 62 10 7 4 +10550,5 6 53 18 12 11 14 54 7 8 +12666,1 6 96 39 36 16 21 77 78 22 79 4 +24303,5 6 12 65 57 9 16 61 16 17 11 13 +18883,5 6 57 57 9 16 17 10 7 4 +24302,5 6 12 65 57 9 16 61 16 17 11 8 +17868,1 6 31 47 48 52 54 54 7 8 +13586,1 6 86 12 16 36 16 21 77 78 22 79 4 +24777,5 6 18 12 16 117 118 32 7 8 +16315,1 6 53 9 16 17 17 10 7 8 +7956,1 6 12 26 9 16 36 37 38 17 10 7 8 +11035,1 6 57 53 31 36 37 17 10 7 8 +20853,1 6 53 9 16 17 17 10 7 4 +16442,1 6 12 26 9 16 36 37 38 17 10 7 4 +7878,1 6 49 42 43 17 106 7 4 +247,5 6 53 34 36 37 17 11 8 +11036,1 6 57 53 31 36 37 17 10 7 4 +20255,15 55 88 57 9 39 36 16 36 37 38 17 37 68 7 8 +15294,5 6 55 31 36 37 17 37 35 87 7 8 +20254,15 55 88 57 9 39 36 16 36 37 38 17 37 68 7 4 +7873,15 34 36 37 19 33 13 +12847,5 6 18 12 16 17 43 13 +20499,5 6 55 57 57 51 107 108 50 7 4 +23052,1 6 53 31 117 16 17 37 48 68 7 8 +20500,5 6 55 57 57 51 107 108 50 7 8 +6987,1 6 53 9 16 17 37 72 7 8 +8615,5 6 55 12 55 56 56 89 56 11 8 +22690,1 6 53 9 16 17 37 72 7 4 +22693,1 12 26 9 16 17 62 10 7 4 +3247,5 6 57 57 9 16 17 10 7 8 +20109,1 12 26 9 16 17 62 10 7 8 +13131,15 57 9 16 36 16 61 16 17 11 13 +25872,1 6 71 47 48 68 11 7 4 +13130,15 57 9 16 36 16 61 16 17 11 8 +25379,5 6 57 57 96 36 37 38 19 58 7 4 +18822,1 6 71 47 48 68 11 7 8 +20023,1 6 55 12 88 89 11 8 +19142,5 6 26 57 58 66 11 7 8 +5184,5 6 53 34 36 37 17 3 4 +11921,1 6 12 57 57 57 9 16 17 11 8 +13827,5 6 64 61 62 17 62 32 54 7 8 +5183,5 6 53 34 36 37 17 3 8 +22488,5 2 16 17 11 85 54 7 8 +22515,15 34 36 16 17 63 7 4 +10883,15 34 36 16 17 63 7 8 +25351,5 6 29 51 52 30 58 7 8 +9688,5 6 29 51 52 30 58 7 4 +11549,1 6 31 36 37 17 11 54 7 4 +20280,5 6 53 49 42 43 17 10 54 7 8 +8613,15 88 55 56 56 11 8 +3693,5 6 88 89 33 13 +9255,15 53 71 47 47 47 47 36 37 17 10 54 7 8 +14420,15 65 55 88 89 13 +21541,1 6 31 36 37 17 11 54 7 8 +21927,96 39 36 16 21 77 78 22 79 4 +7320,1 45 21 22 17 37 35 11 8 +24392,5 6 18 12 16 17 118 17 62 10 7 4 +13826,5 6 64 61 62 17 62 32 54 7 4 +1410,15 12 39 36 39 36 16 17 69 +15592,5 6 26 57 58 66 11 7 4 +19301,1 6 53 57 26 9 16 17 10 7 4 +19302,1 6 53 57 26 9 16 17 10 7 8 +26136,15 65 57 92 12 16 17 11 13 +1705,5 6 51 47 36 37 17 10 7 8 +1542,5 6 18 12 16 17 43 50 7 8 +20313,5 6 51 47 36 37 17 10 7 4 +1543,5 6 18 12 16 17 43 50 7 4 +26135,15 65 57 92 12 16 17 11 8 +5759,1 6 9 16 17 91 7 4 +8739,15 51 47 48 52 33 13 +5758,1 6 9 16 17 91 7 8 +19062,1 6 9 10 58 85 7 8 +22309,5 6 53 12 36 16 17 10 7 8 +25486,1 12 11 14 54 54 54 7 4 +22310,5 6 53 12 36 16 17 10 7 4 +3221,5 6 53 12 16 61 16 21 77 78 22 79 4 +7147,1 12 11 14 54 54 54 7 8 +5250,5 6 42 43 17 11 8 +20496,5 6 65 57 58 58 7 4 +880,5 6 9 10 89 7 4 +16187,5 6 42 43 17 11 13 +13349,1 6 55 9 16 42 16 17 10 7 4 +22074,5 6 53 12 12 11 11 54 7 4 +1690,5 6 9 10 89 7 8 +13094,5 6 34 107 47 36 37 17 11 8 +14726,15 53 34 36 37 17 91 7 8 +19429,5 6 57 9 36 16 17 11 8 +21132,5 6 53 9 36 37 38 17 10 54 7 4 +19430,5 6 57 9 36 16 17 11 13 +10788,1 6 55 9 16 42 16 17 10 7 8 +19989,5 6 53 9 36 37 38 17 10 54 7 8 +7545,5 6 18 12 16 17 52 13 +23025,5 6 55 67 36 37 17 11 8 +26659,15 57 9 39 36 16 36 37 38 10 7 4 +11534,5 6 57 9 16 42 16 17 19 13 +17329,1 6 86 88 89 89 87 7 4 +26660,15 57 9 39 36 16 36 37 38 10 7 8 +12978,5 6 64 16 36 37 38 37 108 35 54 7 4 +13419,5 6 9 10 27 58 89 7 4 +14148,5 6 64 53 18 12 42 16 17 62 10 7 8 +12977,5 6 64 16 36 37 38 37 108 35 54 7 8 +15780,1 6 86 88 89 89 87 7 8 +11450,15 55 12 55 88 57 58 89 56 7 4 +7198,5 6 9 10 27 58 89 7 8 +16891,5 6 53 88 9 16 17 11 8 +18962,1 6 53 26 55 49 50 13 +5214,15 57 53 9 61 16 36 16 17 37 50 7 4 +23643,15 67 109 110 11 8 +24323,15 34 114 115 35 11 8 +25360,5 6 44 9 16 17 11 8 +3202,15 96 16 36 16 17 10 7 4 +20447,1 6 113 53 34 35 54 7 8 +3203,15 96 16 36 16 17 10 7 8 +20446,1 6 113 53 34 35 54 7 4 +2533,15 88 9 16 36 39 36 16 17 10 7 8 +18507,5 6 53 76 16 17 69 +20803,1 6 53 34 42 43 63 7 4 +23993,1 6 53 34 42 43 63 7 8 +2534,15 88 9 16 36 39 36 16 17 10 7 4 +13129,5 6 57 9 16 36 16 61 16 17 11 8 +22976,5 6 84 57 58 56 87 7 4 +2380,5 6 55 53 34 35 13 +22509,1 6 99 100 17 63 54 7 4 +22984,5 6 84 57 58 56 87 7 8 +5215,15 57 53 9 61 16 36 16 17 37 50 7 8 +8899,1 12 39 36 39 36 39 36 16 17 11 8 +23663,15 57 9 61 62 17 3 8 +4762,5 6 65 9 16 17 10 7 4 +23664,15 57 9 61 62 17 3 4 +14341,1 6 84 12 9 16 17 37 108 32 7 4 +12815,15 57 55 53 34 35 13 +13674,15 55 9 61 62 32 54 7 4 +17746,5 6 53 34 36 37 17 11 13 +12790,15 53 9 10 56 7 8 +261,15 67 47 36 37 17 11 8 +14340,1 6 84 12 9 16 17 37 108 32 7 8 +6315,15 55 12 55 88 57 58 11 8 +13408,1 6 55 71 36 37 11 13 +14586,5 6 55 86 34 35 13 +16714,5 6 29 9 10 54 7 4 +13407,1 6 55 71 36 37 11 8 +17389,1 6 57 9 36 37 11 8 +17984,5 6 29 9 10 54 7 8 +22757,1 6 34 109 110 11 8 +13673,15 55 9 61 62 32 54 7 8 +11917,5 6 65 57 58 58 11 8 +262,15 67 47 36 37 17 11 13 +23826,5 6 9 9 9 9 9 16 17 62 10 7 8 +3080,1 6 51 36 37 69 +15349,5 6 9 10 89 11 8 +26327,1 6 29 12 11 7 4 +1537,15 71 42 43 17 74 7 4 +6353,5 6 84 9 16 17 63 7 4 +19991,1 6 53 34 36 37 75 54 7 8 +1536,15 71 42 43 17 74 7 8 +970,1 6 84 64 16 36 16 17 37 72 85 7 8 +19190,5 6 9 10 89 11 13 +12791,15 53 9 10 56 7 4 +4968,5 6 84 9 16 17 63 7 8 +8307,1 6 55 71 47 36 37 69 +1880,5 6 9 16 17 62 10 7 4 +3542,1 6 76 61 62 17 63 7 4 +12166,70 16 99 16 36 16 17 19 13 +1274,5 6 9 16 17 62 10 7 8 +3543,1 6 76 61 62 17 63 7 8 +12993,1 6 12 11 14 7 4 +15661,15 31 47 107 107 36 37 19 +12994,1 6 12 11 14 7 8 +1816,5 6 57 92 51 52 7 8 +2975,5 6 34 36 37 19 58 11 8 +1817,5 6 57 92 51 52 7 4 +4761,5 6 65 9 16 17 10 7 8 +16649,15 57 88 88 9 16 42 16 17 19 7 8 +13243,1 6 12 12 16 39 36 16 17 19 13 +21950,15 55 12 55 96 16 21 77 78 22 79 4 +16650,15 57 88 88 9 16 42 16 17 19 7 4 +7285,1 6 41 12 16 17 10 7 4 +14223,5 6 55 86 87 13 +25634,15 34 35 13 +1903,1 6 55 71 47 61 62 17 75 7 8 +19059,1 6 9 10 58 85 7 4 +10808,15 44 31 36 37 11 8 +23319,5 6 12 57 58 11 7 8 +19490,5 6 18 12 16 17 37 32 11 8 +7846,1 6 71 42 43 17 63 7 4 +26001,15 86 31 47 107 36 37 17 19 13 +25445,1 6 53 12 9 61 61 61 16 17 37 35 7 4 +8659,15 90 16 36 37 38 17 91 7 4 +10127,1 6 71 42 43 17 63 7 8 +25446,1 6 53 12 9 61 61 61 16 17 37 35 7 8 +14895,1 6 29 29 30 7 8 +8660,15 90 16 36 37 38 17 91 7 8 +13207,5 6 57 88 89 58 7 8 +14144,1 6 41 12 16 17 10 7 8 +19227,5 6 53 49 47 48 32 7 8 +14896,1 6 29 29 30 7 4 +20971,1 6 47 48 35 54 7 4 +20972,1 6 47 48 35 54 7 8 +13352,1 6 86 9 16 17 37 50 7 4 +2876,5 6 53 12 16 42 16 17 19 13 +23301,5 6 90 36 16 42 16 17 11 13 +5929,5 6 90 36 16 42 16 17 11 8 +17618,1 12 26 9 16 17 10 54 7 4 +19826,1 6 86 9 16 17 37 50 7 8 +21248,1 6 53 34 36 37 17 11 7 4 +378,15 9 61 62 63 7 4 +21249,1 6 53 34 36 37 17 11 7 8 +26671,5 6 18 12 16 17 118 17 37 52 56 7 4 +379,15 9 61 62 63 7 8 +1913,15 55 53 57 58 54 7 8 +16412,1 6 57 65 9 16 17 37 52 7 4 +9172,1 12 16 36 16 17 37 35 7 4 +1912,15 55 53 57 58 54 7 4 +10587,5 6 18 12 16 17 37 48 72 7 4 +5560,5 6 84 51 52 7 8 +15088,15 57 86 87 13 +16993,1 6 67 68 66 56 7 8 +19228,5 6 53 49 47 48 32 7 4 +26293,5 6 57 53 55 56 54 7 8 +5561,5 6 84 51 52 7 4 +13713,1 6 57 86 9 16 36 37 38 17 10 85 7 8 +17505,1 6 67 68 66 56 7 4 +10011,5 6 18 12 16 17 37 48 72 7 8 +6293,1 6 53 12 16 17 37 50 7 4 +13226,15 67 36 37 19 58 11 56 7 4 +15462,15 65 55 53 12 11 54 7 8 +16645,5 6 57 88 89 58 7 4 +6294,1 6 53 12 16 17 37 50 7 8 +15460,15 65 55 53 12 11 54 7 4 +3566,15 9 39 36 16 61 16 17 11 13 +19866,1 6 53 18 12 61 16 17 37 11 7 8 +3565,15 9 39 36 16 61 16 17 11 8 +6407,5 6 12 57 58 11 7 4 +10809,15 44 31 36 37 11 13 +1934,5 6 84 49 50 85 54 7 8 +2610,1 6 49 47 48 50 58 7 8 +15469,1 6 34 47 47 36 37 17 11 13 +24108,15 57 9 61 62 17 11 8 +1466,1 6 34 47 47 36 37 17 11 8 +1432,5 6 18 12 16 17 37 32 7 8 +1937,5 6 84 49 50 85 54 7 4 +2611,1 6 49 47 48 50 58 7 4 +6518,5 6 18 12 16 17 37 32 7 4 +9994,1 6 119 16 117 118 32 7 8 +25772,15 9 16 17 19 63 7 4 +4536,5 6 55 55 12 90 16 61 16 17 37 72 7 4 +14751,5 6 55 53 12 36 37 38 11 8 +2701,1 6 55 53 31 32 7 8 +24109,15 57 9 61 62 17 11 13 +15330,1 6 53 31 47 47 47 36 37 17 10 54 7 4 +14752,5 6 55 53 12 36 37 38 11 13 +1503,1 6 55 53 31 32 7 4 +8866,5 6 53 34 36 37 63 54 7 8 +25773,15 9 16 17 19 63 7 8 +15809,1 12 16 36 16 17 37 35 7 8 +19405,15 53 57 9 16 17 37 108 35 54 7 4 +625,1 6 31 42 43 17 +22344,5 6 12 57 109 96 16 21 77 78 22 79 4 +1348,5 6 64 61 62 17 10 54 85 54 7 4 +19406,15 53 57 9 16 17 37 108 35 54 7 8 +19764,5 6 105 106 33 13 +6402,5 6 12 31 32 33 13 +23700,5 6 84 86 9 16 17 10 85 7 8 +4271,5 6 64 61 62 17 10 54 85 54 7 8 +20332,5 6 64 42 16 17 43 10 93 63 7 8 +22497,5 6 57 9 16 17 37 68 7 4 +6662,1 12 16 36 16 17 37 35 11 8 +2961,1 6 64 61 62 17 11 7 8 +18713,15 90 16 36 16 17 10 85 7 8 +8140,97 16 17 69 +11969,1 6 64 61 62 17 11 7 4 +14390,15 90 16 36 16 17 10 85 7 4 +15055,1 6 53 9 36 16 17 62 10 7 8 +1784,5 6 53 57 58 56 13 +13836,15 9 16 17 37 72 66 11 7 4 +15364,1 6 55 12 57 9 16 36 16 17 37 72 7 4 +17331,1 6 119 16 117 118 32 7 4 +3973,15 49 36 37 17 37 50 56 7 8 +16830,15 12 16 36 37 38 37 17 72 7 8 +19013,5 6 99 16 17 17 19 13 +19282,5 6 55 88 57 58 56 89 7 4 +21008,1 6 51 47 48 48 68 7 8 +3972,15 49 36 37 17 37 50 56 7 4 +23764,1 6 53 57 57 65 66 13 +19283,5 6 55 88 57 58 56 89 7 8 +186,15 12 11 14 54 7 4 +185,15 12 11 14 54 7 8 +16829,15 12 16 36 37 38 37 17 72 7 4 +2224,1 6 9 61 62 50 7 8 +13019,5 6 53 31 47 48 32 54 7 8 +16003,5 6 12 55 9 16 17 10 7 4 +5293,1 6 9 61 62 50 7 4 +19990,5 6 53 31 47 48 32 54 7 4 +16479,5 6 12 55 9 16 17 10 7 8 +14545,15 57 9 16 117 118 50 7 8 +19617,5 6 64 53 84 85 7 8 +16970,15 51 47 36 37 17 19 58 11 8 +7376,5 6 12 90 16 61 39 36 16 17 19 7 8 +6381,1 6 49 36 37 19 33 13 +14544,15 57 9 16 117 118 50 7 4 +13112,15 34 107 108 123 11 54 7 4 +20935,15 57 9 16 36 16 61 16 17 62 10 7 4 +19616,5 6 64 53 84 85 7 4 +7377,5 6 12 90 16 61 39 36 16 17 19 7 4 +20936,15 57 9 16 36 16 61 16 17 62 10 7 8 +2713,5 6 9 16 17 10 54 7 4 +12581,5 6 26 55 51 52 58 27 28 +25733,1 6 53 12 49 36 37 17 10 7 4 +1065,5 6 9 16 17 10 54 7 8 +19515,15 34 36 37 19 11 8 +24270,1 6 53 12 49 36 37 17 10 7 8 +24555,15 49 47 36 37 10 7 8 +19745,1 6 73 39 36 16 17 19 7 8 +1984,97 16 17 98 +24556,15 49 47 36 37 10 7 4 +21009,1 6 51 47 48 48 68 7 4 +15015,15 86 12 39 36 16 17 10 7 8 +22922,15 55 53 9 16 17 63 7 4 +11888,15 12 11 58 54 7 8 +4622,5 6 12 42 43 17 3 8 +6697,5 6 55 88 88 88 12 9 16 17 19 7 8 +18119,1 12 16 36 16 17 37 48 68 7 8 +11392,1 6 57 49 61 62 75 7 4 +11887,15 12 11 58 54 7 4 +15132,5 6 53 55 56 54 54 7 4 +11923,15 12 57 57 57 9 16 17 11 13 +1354,1 6 84 51 52 85 7 4 +3498,1 12 16 36 16 17 37 48 68 7 4 +4623,5 6 12 42 43 17 3 4 +15133,5 6 53 55 56 54 54 7 8 +15014,15 86 12 39 36 16 17 10 7 4 +7601,1 6 84 51 52 85 7 8 +9755,15 55 9 16 42 16 17 37 72 85 7 8 +9864,15 88 89 66 11 7 8 +11922,15 12 57 57 57 9 16 17 11 8 +26269,1 6 26 88 9 16 17 10 7 8 +2340,15 86 9 16 17 10 7 4 +9754,15 55 9 16 42 16 17 37 72 85 7 4 +10259,15 88 89 66 11 7 4 +6696,5 6 55 88 88 88 12 9 16 17 19 7 4 +21724,1 6 57 9 36 16 61 16 17 19 7 8 +2339,15 86 9 16 17 10 7 8 +12915,1 6 53 26 55 51 47 48 72 56 54 7 4 +3279,15 57 65 67 36 37 17 37 48 72 7 8 +21381,15 88 57 9 36 39 36 16 17 11 13 +4630,5 6 88 89 11 13 +21380,15 88 57 9 36 39 36 16 17 11 8 +1661,5 6 88 89 11 8 +12860,5 6 64 61 62 17 37 72 7 4 +12859,5 6 64 61 62 17 37 72 7 8 +22921,15 55 53 9 16 17 63 7 8 +12378,1 6 12 67 47 48 68 11 8 +2034,5 6 49 42 43 17 37 32 54 7 4 +6302,5 6 53 18 12 16 17 37 52 54 7 4 +16431,5 6 12 12 16 17 63 7 8 +5387,5 6 53 18 12 16 17 37 52 54 7 8 +12953,5 6 12 12 16 17 63 7 4 +13151,5 6 9 16 17 54 54 7 4 +8090,5 6 57 92 9 16 17 10 93 58 7 8 +8634,5 6 90 16 61 16 36 16 17 37 35 87 7 8 +12689,1 6 9 61 62 50 11 8 +11832,95 36 16 17 91 7 4 +8557,5 6 9 16 17 54 54 7 8 +20930,15 12 16 36 39 36 39 36 16 17 10 7 8 +11831,95 36 16 17 91 7 8 +24654,15 57 9 16 36 16 17 37 52 7 8 +20152,5 6 124 47 48 11 54 7 4 +20487,5 6 55 57 51 107 108 50 7 8 +5783,5 6 71 42 43 17 37 35 7 4 +15977,5 6 124 47 48 11 54 7 8 +8633,5 6 90 16 61 16 36 16 17 37 35 87 7 4 +19367,1 45 21 22 17 100 7 8 +10146,15 34 47 61 62 63 7 8 +10147,15 34 47 61 62 63 7 4 +13517,5 6 57 92 12 16 61 16 17 69 +26326,15 9 16 17 63 85 54 7 4 +11719,1 6 47 48 32 11 7 4 +26325,15 9 16 17 63 85 54 7 8 +4507,1 6 9 16 17 37 108 48 72 7 4 +25392,1 12 16 36 16 17 62 10 7 8 +8501,1 6 67 67 36 37 11 8 +21091,5 6 88 67 114 36 37 17 11 8 +8497,1 12 16 36 16 17 62 10 7 4 +12010,1 6 64 61 62 17 37 72 54 54 7 4 +12177,1 6 64 61 62 17 37 72 54 54 7 8 +19063,1 6 84 57 9 16 17 10 7 4 +23492,15 88 12 16 39 36 16 17 19 13 +22008,1 6 84 57 9 16 17 10 7 8 +14523,1 6 53 12 47 36 37 17 10 7 8 +14518,1 6 53 12 47 36 37 17 10 7 4 +877,5 6 88 89 7 8 +4742,1 6 96 36 16 17 19 11 56 7 4 +13553,1 6 92 9 16 17 37 68 93 58 7 4 +1448,5 6 88 89 7 4 +5802,1 6 96 36 16 17 19 11 56 7 8 +8089,5 6 57 92 9 16 17 10 93 58 7 4 +13392,5 6 53 54 17 7 8 +5380,5 6 53 90 16 61 16 61 16 17 62 10 7 8 +5981,15 88 9 16 17 11 8 +12650,5 6 53 90 16 61 16 61 16 17 62 10 7 4 +2497,1 6 92 9 16 17 37 68 93 58 7 8 +14583,15 86 31 36 37 17 62 10 7 4 +22875,15 9 36 37 17 63 7 8 +1292,1 6 53 31 42 43 17 63 7 4 +21372,1 6 64 36 37 38 17 3 8 +22876,15 9 36 37 17 63 7 4 +19137,5 6 9 36 16 61 16 17 37 32 7 4 +21373,1 6 64 36 37 38 17 3 4 +16405,15 126 51 42 43 17 37 35 11 8 +5982,15 88 9 16 17 11 13 +19136,5 6 9 36 16 61 16 17 37 32 7 8 +16144,15 9 16 36 37 38 17 37 68 7 8 +16145,15 9 16 36 37 38 17 37 68 7 4 +22461,5 6 12 16 36 16 17 91 7 8 +4421,5 6 53 18 96 16 36 37 38 10 7 4 +14642,5 6 53 34 107 36 37 10 7 4 +4420,5 6 53 18 96 16 36 37 38 10 7 8 +11839,5 6 53 54 85 7 4 +10581,1 6 67 47 47 47 36 37 17 11 8 +18889,1 6 84 67 47 36 37 10 85 54 7 4 +19949,5 6 53 54 85 7 8 +18888,1 6 84 67 47 36 37 10 85 54 7 8 +19273,5 6 31 42 43 11 7 4 +7814,5 6 31 42 43 11 7 8 +25207,15 55 34 47 48 32 7 8 +18609,1 6 53 31 42 43 17 63 7 8 +25206,15 55 34 47 48 32 7 4 +21507,1 6 55 56 89 56 7 4 +20079,5 6 57 9 16 42 16 17 11 13 +3816,5 6 57 9 16 42 16 17 11 8 +9742,5 6 84 71 36 37 17 63 85 7 8 +10525,1 45 21 22 17 100 7 4 +24186,5 6 55 57 51 107 108 50 7 4 +18118,1 6 64 16 17 37 48 52 7 4 +13117,5 6 34 36 37 17 120 7 8 +22425,5 6 34 36 37 19 58 7 8 +11325,5 6 51 47 47 42 43 17 63 7 8 +13505,5 6 84 71 36 37 17 63 85 7 4 +18117,1 6 64 16 17 37 48 52 7 8 +168,1 6 64 61 62 17 62 10 7 4 +20316,5 6 34 36 37 19 58 7 4 +22893,5 6 34 36 37 17 120 7 4 +15,1 12 11 11 7 4 +6759,1 12 11 11 7 8 +66,5 6 9 16 17 37 35 7 8 +167,1 6 64 61 62 17 62 10 7 8 +65,5 6 9 16 17 37 35 7 4 +25140,5 6 51 47 47 42 43 17 63 7 4 +16080,15 44 9 16 39 36 16 61 16 17 19 7 4 +16079,15 44 9 16 39 36 16 61 16 17 19 7 8 +16000,1 6 9 10 56 11 7 8 +14433,5 6 84 71 36 37 17 74 85 7 8 +4850,15 9 16 17 37 50 11 8 +9746,5 6 84 71 36 37 17 74 85 7 4 +25368,5 6 12 34 47 36 37 11 8 +7393,1 6 51 52 66 7 4 +25829,1 6 31 47 47 47 47 36 37 17 11 8 +7084,1 6 51 52 66 7 8 +19364,15 57 58 58 66 7 8 +2601,1 6 53 18 12 16 17 37 108 50 54 7 8 +4534,60 16 36 61 16 17 62 10 7 4 +12293,5 6 65 57 121 9 16 17 10 7 8 +15715,15 57 58 58 66 7 4 +2602,1 6 53 18 12 16 17 37 108 50 54 7 4 +4535,60 16 36 61 16 17 62 10 7 8 +17996,5 45 21 22 17 43 128 7 4 +13187,5 6 92 31 47 42 43 17 37 35 93 7 4 +12900,1 6 44 96 36 16 17 19 7 8 +17469,1 12 39 36 39 36 39 36 16 17 19 13 +20397,1 6 84 34 35 85 85 54 7 8 +7541,5 6 65 57 121 9 16 17 10 7 4 +7984,1 6 88 89 27 56 7 4 +20396,1 6 84 34 35 85 85 54 7 4 +26826,15 88 12 16 36 37 38 37 50 7 4 +23599,1 6 88 89 27 56 7 8 +26825,15 88 12 16 36 37 38 37 50 7 8 +20816,70 16 39 36 16 61 16 17 19 13 +24981,1 6 44 96 36 16 17 19 7 4 +4732,15 34 36 37 19 7 8 +23334,1 6 53 18 12 16 61 16 17 37 35 11 7 8 +4731,15 34 36 37 19 7 4 +17142,5 6 51 47 36 37 17 11 7 8 +20787,1 6 53 18 12 16 61 16 17 37 35 11 7 4 +769,15 57 12 57 58 58 89 13 +3303,15 51 52 68 7 8 +13412,5 6 16 53 12 36 16 61 16 17 11 8 +3302,15 51 52 68 7 4 +20019,1 6 65 9 16 17 74 85 7 8 +7554,15 57 9 16 61 16 17 11 13 +20018,1 6 65 9 16 17 74 85 7 4 +7553,15 57 9 16 61 16 17 11 8 +3999,1 6 53 9 36 16 17 10 54 7 8 +16651,1 12 11 11 11 8 +6888,5 6 49 107 108 108 50 7 4 +9619,5 6 57 12 36 61 16 17 19 13 +6889,5 6 49 107 108 108 50 7 8 +4639,15 34 36 37 17 75 7 4 +11434,1 6 53 12 34 36 37 17 63 85 54 7 8 +21194,5 6 55 12 55 56 11 56 7 8 +18829,1 6 53 12 34 36 37 17 63 85 54 7 4 +19806,5 6 55 12 55 56 11 56 7 4 +10931,5 6 9 16 17 37 35 11 8 +24905,1 6 9 10 63 7 8 +7271,15 9 16 17 37 50 7 8 +4638,15 34 36 37 17 75 7 8 +7272,15 9 16 17 37 50 7 4 +11388,1 6 9 10 63 7 4 +21753,5 6 64 36 16 17 37 48 35 7 8 +17665,1 6 55 12 57 58 13 +9541,15 55 88 57 9 16 36 37 38 17 10 7 4 +14342,5 6 64 16 17 11 7 8 +3313,15 55 88 57 9 16 36 37 38 17 10 7 8 +24471,5 6 51 42 43 17 37 35 87 7 8 +6648,5 6 64 16 17 11 7 4 +3881,1 6 67 68 89 7 8 +19101,1 6 64 61 62 17 37 35 11 13 +1078,1 6 64 61 62 17 37 35 11 8 +9744,1 6 84 73 74 56 85 7 8 +11516,1 12 36 16 17 37 48 68 7 8 +17730,1 6 92 12 16 17 63 7 4 +9745,1 6 84 73 74 56 85 7 4 +2432,1 6 67 68 89 7 4 +8443,5 6 55 34 47 36 37 17 10 7 4 +17729,1 6 92 12 16 17 63 7 8 +21921,5 6 55 34 47 36 37 17 10 7 8 +6656,1 6 65 57 9 16 17 10 7 8 +4763,1 6 65 57 9 16 17 10 7 4 +7286,5 6 41 12 16 17 10 7 4 +16139,5 6 64 16 36 16 17 37 48 72 54 7 4 +18661,5 6 9 16 17 74 7 4 +7287,5 6 41 12 16 17 10 7 8 +5899,5 6 64 16 36 16 17 37 48 72 54 7 8 +25315,1 6 31 32 66 7 4 +17520,5 6 18 12 16 17 43 32 54 7 4 +5955,5 6 12 36 37 38 37 35 7 8 +20894,5 6 88 9 39 36 16 17 11 8 +25314,1 6 31 32 66 7 8 +6701,15 55 55 67 61 62 63 7 4 +17521,5 6 18 12 16 17 43 32 54 7 8 +6702,15 55 55 67 61 62 63 7 8 +24154,15 9 16 36 39 36 16 17 63 7 8 +2924,5 6 92 31 32 13 +5956,5 6 12 36 37 38 37 35 7 4 +15267,1 6 55 56 56 89 13 +26307,1 6 64 61 62 17 37 108 50 11 8 +7217,5 6 53 18 12 16 17 118 17 10 7 4 +4613,5 6 29 64 16 36 16 61 16 17 63 30 7 8 +18440,5 6 57 55 88 89 33 13 +1036,1 6 18 12 16 17 37 68 7 4 +304,5 6 12 16 17 19 13 +4524,1 12 36 37 38 17 11 8 +4612,5 6 29 64 16 36 16 61 16 17 63 30 7 4 +9959,15 73 16 17 91 85 7 8 +16671,1 6 64 16 61 16 17 19 7 8 +17512,1 6 53 49 42 43 17 10 54 7 8 +9960,15 73 16 17 91 85 7 4 +23154,1 6 18 12 16 17 37 35 87 56 7 4 +22526,1 6 53 49 42 43 17 10 54 7 4 +5457,60 16 36 37 38 17 11 13 +4645,5 6 12 88 90 16 36 16 17 37 35 7 8 +12624,1 6 9 61 62 32 30 7 8 +16610,5 6 9 10 87 66 56 54 7 4 +12625,1 6 9 61 62 32 30 7 4 +14611,5 6 9 10 87 66 56 54 7 8 +23155,1 6 18 12 16 17 37 35 87 56 7 8 +5456,60 16 36 37 38 17 11 8 +4418,1 6 53 34 36 37 17 11 8 +173,5 6 65 49 50 13 +24596,1 6 53 34 36 37 17 11 13 +934,5 6 84 73 74 13 +4102,15 86 34 36 37 17 10 7 8 +16058,1 6 53 64 36 37 38 63 54 7 8 +10368,5 6 64 61 62 17 43 35 87 7 4 +7012,5 6 53 18 12 16 17 118 17 10 7 8 +4081,15 86 34 36 37 17 10 7 4 +7302,1 6 53 64 36 37 38 63 54 7 4 +25621,5 6 55 12 57 96 36 37 38 19 56 11 8 +11364,5 6 64 61 62 17 43 35 87 7 8 +10859,15 34 47 48 32 54 7 4 +3052,15 12 16 36 16 61 16 17 37 7 4 +10860,15 34 47 48 32 54 7 8 +7972,15 57 53 9 16 17 37 50 7 4 +19278,1 6 53 55 9 16 17 37 35 7 8 +22083,5 6 64 61 62 17 37 48 72 11 7 4 +6067,5 6 51 36 37 19 7 8 +12109,5 6 71 114 36 37 11 8 +8753,15 55 90 16 17 37 35 7 4 +11168,1 6 96 16 36 37 38 17 10 7 8 +24065,15 53 12 51 107 108 108 52 11 54 7 8 +4016,1 6 64 61 62 17 37 35 7 8 +7408,15 12 36 37 38 37 68 89 7 4 +19054,1 6 18 12 16 17 43 48 50 7 8 +11169,1 6 96 16 36 37 38 17 10 7 4 +4017,1 6 64 61 62 17 37 35 7 4 +3436,1 6 18 12 16 17 43 48 50 7 4 +7407,15 12 36 37 38 37 68 89 7 8 +699,1 6 53 34 36 37 17 3 8 +17334,1 6 57 57 57 12 11 66 27 28 +7733,15 55 9 16 36 37 38 63 7 8 +17473,15 57 55 88 89 89 7 8 +7732,15 55 9 16 36 37 38 63 7 4 +8754,15 55 90 16 17 37 35 7 8 +11731,15 55 31 47 36 37 17 10 7 8 +21933,1 6 57 9 36 37 38 17 10 54 7 4 +15971,1 6 34 117 16 17 19 13 +17474,15 57 55 88 89 89 7 4 +26214,1 6 65 34 35 56 7 4 +11732,15 55 31 47 36 37 17 10 7 4 +21934,1 6 57 9 36 37 38 17 10 54 7 8 +23562,1 6 9 10 58 58 89 56 7 8 +4942,5 6 84 64 16 17 63 7 8 +25853,1 6 9 10 58 58 89 56 7 4 +18970,5 6 53 26 55 34 36 37 11 8 +19975,5 6 9 36 37 38 10 85 54 7 8 +2937,1 6 12 16 17 37 32 93 7 8 +19622,5 6 26 9 16 17 10 93 7 4 +19976,5 6 9 36 37 38 10 85 54 7 4 +2936,1 6 12 16 17 37 32 93 7 4 +12989,5 6 26 9 16 17 10 93 7 8 +20265,1 6 88 67 61 62 10 7 8 +6068,5 6 51 36 37 19 7 4 +17133,1 6 55 12 9 16 17 37 35 7 4 +13000,5 6 76 16 39 36 16 61 16 17 19 13 +5177,5 6 53 34 42 43 17 10 54 54 7 8 +2117,5 6 12 9 16 61 16 17 62 10 7 8 +21446,15 55 57 9 16 17 10 7 8 +8070,5 6 55 57 109 110 58 7 4 +16899,1 6 64 53 9 10 11 54 7 4 +26514,5 6 49 42 43 17 37 48 35 87 7 4 +11945,5 6 76 16 36 37 38 17 10 54 54 7 8 +25850,5 6 53 34 42 43 17 10 54 54 7 4 +2795,1 12 16 36 37 38 37 52 7 4 +12704,5 6 12 9 16 61 16 17 62 10 7 4 +1759,5 6 105 106 7 8 +6642,1 12 16 36 37 38 37 52 7 8 +1598,5 6 105 106 7 4 +12556,1 6 18 12 16 42 16 17 19 13 +21445,15 55 57 9 16 17 10 7 4 +22073,5 6 53 12 12 11 11 8 +7915,15 55 12 55 88 57 58 56 11 8 +26402,1 6 53 64 36 37 38 37 68 13 +20164,15 57 9 16 36 16 61 16 17 10 54 7 8 +7649,1 6 76 61 62 17 37 35 54 7 8 +2142,5 6 12 55 56 13 +7650,1 6 76 61 62 17 37 35 54 7 4 +24401,1 12 36 16 17 37 48 68 7 4 +7560,1 6 9 16 17 19 13 +24067,15 53 12 51 107 108 108 52 11 54 7 4 +20933,5 6 64 61 62 17 37 48 72 11 7 8 +10027,15 26 88 57 58 89 56 7 8 +2270,1 6 55 88 57 58 89 56 7 8 +13170,15 26 88 57 58 89 56 7 4 +6532,15 34 36 37 91 85 54 7 4 +7989,25 26 27 56 54 7 4 +14883,15 57 9 16 42 16 17 19 7 4 +5461,5 6 88 55 88 55 56 89 7 4 +15972,15 34 117 16 17 19 13 +2276,1 6 55 88 57 58 89 56 7 4 +6531,15 34 36 37 91 85 54 7 8 +7988,25 26 27 56 54 7 8 +14884,15 57 9 16 42 16 17 19 7 8 +19,1 6 9 16 17 11 8 +5315,1 6 9 16 17 11 13 +22506,15 53 64 16 17 98 +9984,1 6 64 16 117 118 32 7 8 +9349,1 6 88 57 57 9 16 17 37 35 7 8 +23782,15 12 16 17 11 85 7 4 +1829,1 6 26 55 56 13 +4946,1 6 64 61 62 17 37 35 11 54 7 8 +11491,5 6 86 31 114 115 32 87 7 8 +13017,1 6 53 49 36 37 10 54 7 8 +21092,5 6 84 18 12 16 17 11 85 54 7 4 +498,1 6 64 61 62 17 10 54 7 8 +13363,1 6 53 49 36 37 10 54 7 4 +5460,5 6 88 55 88 55 56 89 7 8 +18779,5 6 86 9 16 42 16 17 10 54 7 8 +18778,5 6 86 9 16 42 16 17 10 54 7 4 +236,5 6 12 16 17 11 13 +1910,15 53 9 10 13 +235,5 6 12 16 17 11 8 +1621,5 6 12 65 66 27 28 +20148,15 12 16 36 37 38 17 19 7 8 +16904,1 6 9 36 16 17 37 48 7 8 +9082,1 6 9 16 36 37 38 37 10 7 4 +8969,15 34 47 48 48 35 54 54 7 8 +23718,5 6 73 74 89 11 8 +8968,15 34 47 48 48 35 54 54 7 4 +15500,1 6 65 88 12 49 50 7 8 +13676,1 6 53 12 51 52 11 8 +17349,1 6 64 61 62 37 72 7 8 +25263,15 88 9 16 17 37 52 7 8 +14574,1 6 64 61 62 37 72 7 4 +9160,1 6 53 34 36 37 17 3 4 +8412,5 6 12 16 39 36 16 21 77 78 22 79 4 +25262,15 88 9 16 17 37 52 7 4 +6849,1 6 57 34 47 48 35 7 4 +13887,5 6 88 9 16 36 37 38 37 35 7 8 +25539,1 6 57 34 47 48 35 7 8 +13886,5 6 88 9 16 36 37 38 37 35 7 4 +23659,5 6 88 55 9 16 39 36 16 17 10 7 4 +11698,5 6 88 55 9 16 39 36 16 17 10 7 8 +19966,5 6 53 67 47 107 36 37 17 63 93 7 8 +6559,15 55 26 88 89 13 +6881,15 57 9 16 36 16 61 16 17 37 35 7 8 +6882,15 57 9 16 36 16 61 16 17 37 35 7 4 +661,1 6 64 61 62 17 10 7 8 +25171,5 6 53 12 36 37 63 7 4 +662,1 6 64 61 62 17 10 7 4 +25170,5 6 53 12 36 37 63 7 8 +4646,5 6 12 88 90 16 36 16 17 37 35 7 4 +22329,15 49 117 16 17 19 7 4 +1232,1 6 9 10 66 27 28 +7738,15 34 36 37 17 19 13 +15319,1 6 57 9 16 17 37 48 35 7 8 +4464,15 55 65 34 107 108 35 7 8 +16016,1 6 57 9 16 17 37 48 35 7 4 +1238,1 6 64 61 62 17 10 54 7 4 +4463,15 55 65 34 107 108 35 7 4 +6755,1 6 18 12 16 42 16 17 11 13 +339,1 12 9 16 17 43 32 7 8 +10901,5 6 84 12 11 14 85 54 7 8 +8360,5 6 51 52 89 27 28 +19786,5 6 73 74 89 7 8 +338,1 12 9 16 17 43 32 7 4 +6754,1 6 18 12 16 42 16 17 11 8 +11608,5 6 84 12 11 14 85 54 7 4 +9105,5 6 53 55 49 36 37 17 10 7 8 +19785,5 6 73 74 89 7 4 +22330,15 49 117 16 17 19 7 8 +23835,15 86 49 36 37 10 7 8 +9106,5 6 53 55 49 36 37 17 10 7 4 +469,1 6 51 52 13 +18938,5 45 21 77 78 22 79 4 +22505,15 53 64 16 17 69 +11288,25 26 27 89 54 7 4 +20430,1 6 12 96 36 37 38 19 56 11 8 +11289,25 26 27 89 54 7 8 +14226,5 6 9 16 17 37 35 87 56 7 8 +17718,5 6 88 9 36 37 38 17 10 7 8 +14227,5 6 9 16 17 37 35 87 56 7 4 +17719,5 6 88 9 36 37 38 17 10 7 4 +24223,1 6 12 51 47 36 37 17 11 8 +14741,15 34 107 108 35 56 7 4 +18882,1 6 55 88 89 7 8 +26137,5 6 64 61 62 17 11 93 58 7 8 +14742,15 34 107 108 35 56 7 8 +20882,5 6 12 65 88 57 9 16 17 63 7 4 +23455,15 86 9 16 17 11 7 4 +4005,1 6 64 61 62 17 37 50 85 54 7 4 +4465,1 6 55 88 89 7 4 +4004,1 6 64 61 62 17 37 50 85 54 7 8 +2535,5 6 57 9 16 17 11 8 +22012,15 96 16 21 77 78 82 8 +3325,5 6 57 9 16 17 11 13 +23502,1 6 67 117 16 17 19 7 4 +15837,5 6 76 16 42 16 21 77 78 22 79 4 +13895,5 6 57 9 16 117 118 68 7 8 +19501,5 6 57 9 16 117 118 68 7 4 +24474,5 6 31 47 48 68 54 54 7 8 +645,1 6 34 36 37 17 63 7 4 +7091,1 6 34 36 37 17 63 7 8 +17488,5 6 31 107 108 52 85 54 7 8 +14319,5 6 31 107 108 52 85 54 7 4 +21036,1 6 12 16 36 37 38 37 48 35 11 8 +10726,5 6 105 106 27 28 +15098,5 6 53 54 56 89 7 8 +15097,5 6 53 54 56 89 7 4 +3383,1 6 53 9 36 16 17 10 7 8 +21797,1 6 64 61 62 17 37 48 68 11 8 +24601,5 6 53 9 16 36 16 17 19 7 4 +24602,5 6 53 9 16 36 16 17 19 7 8 +13520,5 6 96 16 36 37 38 17 63 7 4 +13519,5 6 96 16 36 37 38 17 63 7 8 +21111,5 6 55 12 57 55 9 16 36 37 38 17 37 72 7 4 +16687,5 6 55 12 57 55 9 16 36 37 38 17 37 72 7 8 +23905,5 6 84 18 12 11 14 85 85 54 7 8 +14908,5 6 29 9 61 62 17 37 35 30 7 8 +20389,5 6 84 18 12 11 14 85 85 54 7 4 +14909,5 6 29 9 61 62 17 37 35 30 7 4 +10299,15 57 9 16 36 37 38 37 48 72 54 7 4 +25202,15 55 34 47 48 35 7 8 +10298,15 57 9 16 36 37 38 37 48 72 54 7 8 +25203,15 55 34 47 48 35 7 4 +18423,1 6 53 55 9 16 17 63 7 4 +12318,1 6 64 16 117 118 108 72 66 11 7 8 +17970,1 6 55 53 57 9 16 61 16 17 19 54 7 8 +10988,5 6 55 57 51 61 62 63 7 8 +5667,5 6 55 51 47 48 52 7 4 +15225,1 6 64 16 117 118 108 72 66 11 7 4 +15320,1 6 55 53 57 9 16 61 16 17 19 54 7 4 +10505,1 6 64 42 16 17 118 17 37 35 7 4 +24587,5 6 55 51 47 48 52 7 8 +1936,1 6 84 49 50 85 54 7 4 +25077,1 6 57 92 9 10 27 28 +10506,1 6 64 42 16 17 118 17 37 35 7 8 +24805,1 6 9 9 16 17 43 52 7 8 +15944,1 6 84 64 16 17 10 85 54 7 8 +24806,1 6 9 9 16 17 43 52 7 4 +18709,5 6 12 65 57 9 16 17 43 72 7 8 +1935,1 6 84 49 50 85 54 7 8 +14152,5 6 53 64 36 37 38 37 35 11 8 +18708,5 6 12 65 57 9 16 17 43 72 7 4 +5363,5 6 92 12 11 93 7 8 +15263,1 6 55 88 89 11 8 +2050,1 6 84 64 16 17 10 85 54 7 4 +5364,5 6 92 12 11 93 7 4 +24484,1 6 76 61 62 17 37 32 54 54 7 4 +23121,1 6 55 12 16 17 10 54 7 8 +17997,1 45 21 22 17 43 128 7 4 +16533,15 65 88 57 51 52 7 4 +19356,15 57 9 16 42 16 17 43 52 58 89 56 7 8 +16532,15 65 88 57 51 52 7 8 +20475,1 6 84 9 10 11 85 54 7 8 +546,1 6 53 9 36 16 17 10 7 4 +10907,1 6 84 9 10 11 85 54 7 4 +17998,1 45 21 22 17 43 128 7 8 +16543,15 57 9 16 42 16 17 43 52 58 89 56 7 4 +16773,5 45 21 22 17 37 35 11 93 7 8 +23499,5 6 57 9 16 117 118 68 11 8 +16060,5 45 21 22 17 37 35 11 93 7 4 +1510,5 6 57 92 9 10 93 58 7 4 +8527,15 96 16 17 17 11 8 +1511,5 6 57 92 9 10 93 58 7 8 +22013,5 6 12 16 17 7 4 +16793,15 12 11 30 30 7 4 +25800,5 6 29 34 35 33 13 +16794,15 12 11 30 30 7 8 +22011,15 96 16 21 77 78 82 111 +25695,15 57 53 9 16 61 16 17 19 13 +7674,5 6 47 48 35 7 4 +1079,1 6 64 61 62 17 37 35 11 54 7 4 +8301,1 6 53 71 72 56 7 4 +6329,15 55 12 57 9 36 16 17 37 35 7 8 +7675,5 6 47 48 35 7 8 +21149,1 6 53 71 72 56 7 8 +11798,5 6 53 18 12 31 42 43 17 10 7 8 +19420,15 57 12 88 57 58 58 89 13 +23489,15 55 12 16 36 37 38 17 11 8 +6330,15 55 12 57 9 36 16 17 37 35 7 4 +23490,15 55 12 16 36 37 38 17 11 13 +19749,5 6 55 9 36 37 38 37 35 7 4 +16486,1 6 31 114 115 72 7 8 +23427,1 6 64 16 117 118 72 11 7 8 +4772,104 101 102 78 22 79 4 +16487,1 6 31 114 115 72 7 4 +17723,1 6 57 9 36 37 38 37 35 7 4 +21060,1 6 34 42 43 17 10 54 7 8 +19750,1 6 57 9 36 37 38 37 35 7 8 +7850,5 6 53 67 47 107 108 35 54 7 8 +8,15 12 11 14 7 8 +22466,1 6 12 57 9 61 16 17 11 13 +898,97 16 17 10 7 4 +17482,15 105 16 61 16 17 11 8 +20154,5 6 64 16 117 118 32 54 7 4 +16519,1 6 9 16 17 37 108 68 58 7 4 +16820,5 6 64 61 62 17 37 68 56 7 4 +23051,5 6 64 16 117 118 32 54 7 8 +22614,5 6 57 67 68 89 7 4 +16821,5 6 64 61 62 17 37 68 56 7 8 +17720,5 6 55 9 36 37 38 37 35 7 8 +22465,1 6 12 57 9 61 16 17 11 8 +17483,15 105 16 61 16 17 11 13 +899,97 16 17 10 7 8 +13639,5 6 67 114 115 68 7 8 +26414,1 6 57 53 9 10 66 54 7 8 +7765,70 16 36 16 61 16 17 10 7 8 +19574,5 6 9 10 85 7 4 +7764,70 16 36 16 61 16 17 10 7 4 +19573,5 6 9 10 85 7 8 +25200,1 6 53 65 26 9 16 17 100 7 4 +4453,5 6 53 9 36 16 17 37 50 54 7 4 +7,15 12 11 14 7 4 +6072,15 9 16 17 43 48 32 54 7 8 +10193,15 57 9 16 39 36 16 17 37 35 54 7 4 +16470,1 6 53 18 12 61 61 16 17 62 10 7 8 +10192,15 57 9 16 39 36 16 17 37 35 54 7 8 +4452,5 6 53 9 36 16 17 37 50 54 7 8 +6073,15 9 16 17 43 48 32 54 7 4 +23589,1 12 36 37 38 17 3 4 +1165,1 12 36 37 38 17 3 8 +19487,1 6 84 9 10 14 54 7 4 +20653,5 6 84 12 9 16 61 16 17 62 10 7 4 +5592,1 6 84 9 10 14 54 7 8 +19337,5 6 71 36 37 17 3 4 +21223,5 6 12 88 65 66 89 11 8 +20654,5 6 84 12 9 16 61 16 17 62 10 7 8 +844,5 6 12 65 66 11 8 +14956,1 6 16 17 10 7 4 +782,1 6 65 57 57 12 16 36 37 38 37 50 7 4 +19336,5 6 71 36 37 17 3 8 +19457,1 6 67 107 36 37 17 10 7 4 +6190,1 6 65 57 57 12 16 36 37 38 37 50 7 8 +11546,1 6 55 67 36 37 17 11 8 +18098,1 6 67 107 36 37 17 10 7 8 +13640,5 6 67 114 115 68 7 4 +75,40 41 12 26 9 16 17 11 13 +18581,5 6 57 92 9 10 54 7 4 +74,40 41 12 26 9 16 17 11 8 +20414,15 12 16 36 37 38 17 37 52 7 4 +7452,1 6 64 61 62 17 37 32 87 7 4 +20415,15 12 16 36 37 38 17 37 52 7 8 +16027,1 6 34 42 43 17 10 54 7 4 +15928,1 6 64 61 62 17 37 32 87 7 8 +19821,1 6 88 12 16 39 36 16 17 19 13 +15594,5 6 84 53 55 56 13 +15896,5 6 12 16 17 37 52 13 +10335,5 6 88 9 16 42 16 17 11 13 +25132,1 6 9 16 36 37 38 17 37 52 54 7 4 +20664,1 6 53 36 37 63 7 4 +25956,5 6 88 9 16 61 16 36 16 17 19 7 4 +2454,1 6 18 12 16 17 37 115 50 89 7 8 +10937,5 6 88 9 16 61 16 36 16 17 19 7 8 +2455,1 6 18 12 16 17 37 115 50 89 7 4 +26670,1 6 12 16 36 37 38 37 115 72 7 8 +12954,1 6 12 12 16 17 63 7 4 +5331,15 12 16 36 16 42 16 17 19 13 +25890,1 6 53 36 37 63 7 8 +10334,5 6 88 9 16 42 16 17 11 8 +12955,1 6 12 12 16 17 63 7 8 +26085,1 6 12 71 42 43 17 10 7 8 +6427,1 6 67 47 48 35 54 7 8 +851,1 6 9 10 66 11 8 +6424,1 6 67 47 48 35 54 7 4 +2737,5 6 57 53 51 36 37 10 7 8 +15719,1 6 121 122 122 58 13 +6629,5 6 64 61 62 17 37 35 56 7 4 +8941,5 6 9 10 87 56 7 4 +8942,5 6 9 10 87 56 7 8 +6490,1 6 90 16 17 37 50 54 7 4 +6439,1 6 12 16 36 37 38 37 48 35 7 4 +15062,1 6 90 16 17 37 50 54 7 8 +6630,5 6 64 61 62 17 37 35 56 7 8 +13576,1 6 53 65 26 9 16 17 100 7 8 +6438,1 6 12 16 36 37 38 37 48 35 7 8 +15653,1 6 55 9 16 17 11 13 +25175,5 6 64 36 37 38 37 35 11 54 7 8 +15078,1 6 88 89 58 7 8 +18352,1 12 16 17 37 35 87 7 8 +15072,1 6 88 89 58 7 4 +18337,1 12 16 17 37 35 87 7 4 +26111,5 6 55 49 50 56 7 8 +21791,1 6 34 36 16 42 16 17 37 35 7 8 +25592,5 6 86 55 49 50 13 +7766,1 6 55 9 16 17 11 8 +14696,5 6 55 9 61 62 68 7 8 +21128,1 6 53 53 9 10 54 7 8 +1830,1 6 26 55 65 66 13 +14516,1 6 124 47 48 11 54 7 4 +14555,5 6 9 61 62 32 10 54 7 4 +26112,5 6 55 49 50 56 7 4 +16134,5 6 9 61 62 32 10 54 7 8 +26669,1 6 12 16 36 37 38 37 115 72 7 4 +15647,5 6 18 12 34 35 13 +21129,1 6 53 53 9 10 54 7 4 +8553,5 6 55 9 61 62 68 7 4 +4360,5 6 71 114 114 61 62 63 7 4 +25085,1 6 53 57 9 16 17 10 7 8 +8698,1 21 22 17 19 13 +25663,1 6 47 48 11 54 7 4 +26855,1 6 53 57 9 16 17 10 7 4 +11322,1 6 53 34 47 48 48 52 7 8 +2011,5 6 9 16 17 75 7 8 +25667,5 6 57 53 12 51 61 62 63 7 4 +19567,5 6 55 9 39 36 16 17 10 7 8 +11944,5 6 9 16 17 75 7 4 +13563,1 6 53 34 36 37 17 59 +14510,1 6 47 48 11 54 7 8 +19279,1 6 53 34 47 48 48 52 7 4 +4933,15 9 16 61 16 17 19 13 +22040,5 6 57 53 12 51 61 62 63 7 8 +19568,5 6 55 9 39 36 16 17 10 7 4 +12274,1 6 12 34 36 37 17 11 8 +4229,1 6 55 71 72 7 4 +18128,1 6 53 90 16 17 10 54 7 8 +9343,15 55 55 57 53 12 16 36 37 38 17 11 13 +13477,5 6 92 9 61 62 87 30 7 4 +25651,1 12 16 39 36 16 21 77 101 102 103 +20540,1 6 84 67 68 85 54 7 8 +9342,15 55 55 57 53 12 16 36 37 38 17 11 8 +18129,1 6 53 90 16 17 10 54 7 4 +296,1 6 9 10 66 7 4 +4571,1 6 53 54 66 7 4 +11980,5 6 53 18 12 61 16 61 16 17 10 7 4 +295,1 6 9 10 66 7 8 +4572,1 6 53 54 66 7 8 +11981,5 6 53 18 12 61 16 61 16 17 10 7 8 +17043,5 6 31 42 43 17 37 108 35 54 7 8 +20536,1 6 84 67 68 85 54 7 4 +9609,1 6 92 34 35 54 7 8 +8030,5 6 124 109 110 7 4 +14727,5 6 90 16 36 37 38 37 35 54 7 4 +14608,5 6 53 9 10 89 58 13 +4228,1 6 55 71 72 7 8 +19944,5 6 90 16 36 37 38 37 35 54 7 8 +390,5 6 73 74 11 13 +18998,5 6 53 31 36 16 17 63 7 8 +10605,15 55 53 12 16 17 62 10 7 4 +374,1 6 55 9 16 17 69 +865,5 6 64 16 17 10 7 8 +8780,1 6 12 11 33 13 +15119,1 6 92 34 35 54 7 4 +389,5 6 73 74 11 8 +15830,5 6 53 31 36 16 17 63 7 4 +5375,5 6 64 61 62 17 74 7 8 +10606,15 55 53 12 16 17 62 10 7 8 +24235,5 6 86 36 37 17 62 10 7 4 +314,5 6 64 16 17 10 7 4 +2639,1 6 64 36 37 38 37 108 35 54 7 4 +24789,5 6 86 88 88 57 57 86 87 7 4 +5376,5 6 64 61 62 17 74 7 4 +557,1 6 88 89 56 7 4 +2638,1 6 64 36 37 38 37 108 35 54 7 8 +24790,5 6 86 88 88 57 57 86 87 7 8 +4381,5 6 86 12 11 13 +4665,5 6 51 52 89 7 8 +19961,5 6 92 64 16 36 37 38 37 35 54 7 8 +4664,5 6 51 52 89 7 4 +5854,15 51 42 43 17 37 72 54 7 8 +2744,1 6 88 89 56 7 8 +26044,5 6 92 64 16 36 37 38 37 35 54 7 4 +3078,1 6 12 26 65 66 11 7 8 +9852,95 36 16 17 62 10 7 8 +5855,15 51 42 43 17 37 72 54 7 4 +18699,1 6 12 34 36 37 17 62 10 7 8 +26380,1 6 92 55 9 16 17 19 7 8 +13866,1 6 12 26 65 66 11 7 4 +9851,95 36 16 17 62 10 7 4 +18700,1 6 12 34 36 37 17 62 10 7 4 +24679,1 6 55 9 16 17 98 +19596,5 6 64 42 16 17 11 8 +23056,1 6 64 61 62 17 118 17 10 54 7 8 +2702,1 6 57 92 9 10 11 8 +23057,1 6 64 61 62 17 118 17 10 54 7 4 +7122,1 6 9 16 36 16 17 37 52 85 54 7 8 +17682,5 6 57 92 34 36 37 17 10 7 8 +10350,1 6 9 16 36 16 17 37 52 85 54 7 4 +25738,5 6 57 92 34 36 37 17 10 7 4 +20742,1 6 18 12 16 17 37 108 68 7 8 +20741,1 6 18 12 16 17 37 108 68 7 4 +22647,1 6 9 9 16 17 37 35 7 8 +15868,5 6 53 12 11 13 +17917,5 6 65 57 9 16 17 37 48 68 7 8 +16104,5 6 92 51 61 62 63 7 4 +25104,1 6 55 9 16 36 16 17 10 54 54 7 8 +6254,25 26 88 89 7 8 +16097,5 6 92 51 61 62 63 7 8 +25105,1 6 55 9 16 36 16 17 10 54 54 7 4 +13348,25 26 88 89 7 4 +8617,15 67 36 16 17 37 108 35 7 8 +17916,5 6 65 57 9 16 17 37 48 68 7 4 +8329,15 67 36 16 17 37 108 35 7 4 +14003,5 6 84 12 31 32 13 +468,5 6 9 10 87 7 4 +467,5 6 9 10 87 7 8 +3865,5 6 84 49 109 110 13 +18895,5 6 64 61 62 17 37 48 72 85 54 7 8 +2756,1 6 55 67 47 36 37 17 11 8 +18896,5 6 64 61 62 17 37 48 72 85 54 7 4 +8704,15 12 16 36 16 17 11 8 +10533,5 6 73 74 7 8 +15486,1 6 84 73 74 89 7 8 +22806,1 6 55 56 89 54 7 4 +9271,15 12 16 36 16 17 11 13 +10532,5 6 73 74 7 4 +4288,15 12 61 16 17 11 8 +12786,1 6 55 56 89 54 7 8 +2530,15 9 36 37 38 37 72 7 4 +2531,15 9 36 37 38 37 72 7 8 +15485,1 6 84 73 74 89 7 4 +563,1 6 55 88 34 36 37 10 7 8 +2,5 6 7 8 +25093,15 9 36 37 38 17 10 7 4 +3618,5 6 64 16 17 10 54 7 8 +25571,1 6 9 16 17 37 48 52 7 4 +25092,15 9 36 37 38 17 10 7 8 +3617,5 6 64 16 17 10 54 7 4 +7430,1 6 9 16 17 37 48 52 7 8 +18161,5 6 53 53 57 34 35 54 54 7 8 +6930,5 2 16 17 17 +13492,1 6 90 91 66 11 7 8 +12324,1 6 90 91 66 11 7 4 +1214,5 6 49 36 37 17 37 52 54 7 8 +3238,1 6 53 34 36 37 11 8 +9612,1 6 53 34 36 37 11 13 +19714,1 6 18 12 16 17 43 17 11 8 +5723,1 21 22 17 11 8 +23860,5 6 53 49 50 33 11 8 +8086,1 6 57 92 9 10 7 4 +23868,5 6 53 49 50 33 11 13 +18522,1 6 84 57 9 16 17 10 85 7 4 +8087,1 6 57 92 9 10 7 8 +1850,5 6 53 57 58 54 54 7 8 +10429,5 6 53 57 58 54 54 7 4 +15383,15 55 53 9 10 58 54 7 8 +7110,5 6 84 51 36 37 17 10 7 8 +1863,15 9 16 61 16 17 11 13 +10347,5 6 84 51 36 37 17 10 7 4 +16434,5 6 55 88 57 12 9 16 17 19 7 8 +1862,15 9 16 61 16 17 11 8 +24391,1 6 51 107 36 37 11 8 +15382,15 55 53 9 10 58 54 7 4 +5724,1 21 22 17 11 13 +1357,5 6 84 51 36 37 10 7 4 +23705,1 6 84 55 9 36 16 36 16 17 10 85 7 4 +11242,15 57 9 16 17 37 52 54 7 4 +8927,15 12 16 36 16 17 37 68 7 4 +11241,15 57 9 16 17 37 52 54 7 8 +10585,5 6 57 12 16 36 37 38 17 37 48 72 7 4 +21328,15 51 36 37 10 85 93 7 4 +8889,5 6 84 51 36 37 10 7 8 +2654,1 6 88 9 16 17 10 7 8 +10586,5 6 57 12 16 36 37 38 17 37 48 72 7 8 +21329,15 51 36 37 10 85 93 7 8 +8015,1 6 64 16 36 37 38 37 48 35 85 54 7 4 +2653,1 6 88 9 16 17 10 7 4 +3375,15 53 9 10 54 7 4 +8928,15 12 16 36 16 17 37 68 7 8 +8953,5 6 64 61 62 17 37 32 54 54 7 8 +16309,15 12 88 57 58 58 89 13 +3376,15 53 9 10 54 7 8 +3776,5 6 64 61 62 17 37 32 54 54 7 4 +15705,5 6 57 53 57 58 54 7 8 +24552,15 57 9 16 61 16 36 16 17 19 7 8 +24553,15 57 9 16 61 16 36 16 17 19 7 4 +15735,15 57 65 55 56 56 7 8 +24719,1 6 64 16 17 37 32 93 58 7 4 +25251,15 57 12 16 36 16 61 16 17 11 8 +17166,1 6 64 16 17 37 32 93 58 7 8 +25252,15 57 12 16 36 16 61 16 17 11 13 +12029,5 6 76 61 62 17 37 48 35 87 7 8 +24183,1 6 53 9 16 61 16 17 43 32 54 7 8 +9910,1 6 55 88 89 66 13 +16435,5 6 55 88 57 12 9 16 17 19 7 4 +23465,1 6 53 9 16 61 16 17 43 32 54 7 4 +896,15 96 16 21 77 78 22 8 +16233,5 6 12 65 12 71 117 16 17 11 8 +10802,15 34 36 16 17 37 108 52 54 7 4 +10807,15 34 36 16 17 37 108 52 54 7 8 +19373,15 9 9 9 9 9 16 17 11 13 +2630,15 34 107 108 35 54 7 4 +19372,15 9 9 9 9 9 16 17 11 8 +15711,5 6 9 10 66 13 +2629,15 34 107 108 35 54 7 8 +7183,1 6 53 67 47 48 72 7 4 +9652,1 6 53 34 36 37 17 37 35 54 7 4 +25760,5 6 88 34 35 56 7 4 +7182,1 6 53 67 47 48 72 7 8 +9653,1 6 53 34 36 37 17 37 35 54 7 8 +25450,5 6 57 55 67 36 37 17 10 54 7 4 +15848,5 6 49 42 43 17 106 7 8 +8355,5 6 49 47 48 72 7 8 +8354,5 6 49 47 48 72 7 4 +10858,1 6 86 34 47 48 32 54 7 4 +24865,1 6 86 9 16 17 37 52 7 4 +1869,15 96 36 37 38 19 33 13 +955,1 2 16 17 10 85 7 8 +3266,15 57 65 55 56 56 7 4 +24862,1 6 86 9 16 17 37 52 7 8 +954,1 2 16 17 10 85 7 4 +17662,1 6 53 9 16 17 37 11 8 +5839,5 6 57 53 9 10 56 54 7 4 +1465,15 67 47 48 48 72 7 8 +18006,15 105 61 62 17 91 7 8 +21709,1 6 86 57 9 16 17 11 8 +1464,15 67 47 48 48 72 7 4 +18005,15 105 61 62 17 91 7 4 +18269,5 6 55 51 47 48 52 33 13 +9896,1 6 90 16 17 19 7 4 +14499,15 96 16 36 37 38 37 10 7 4 +14500,15 96 16 36 37 38 37 10 7 8 +17959,1 6 90 16 17 19 7 8 +2463,15 12 16 36 16 17 19 13 +14262,15 55 53 71 72 13 +16386,15 44 51 107 61 62 63 7 8 +25757,5 6 88 34 35 56 7 8 +16387,15 44 51 107 61 62 63 7 4 +4291,1 6 55 9 61 62 72 7 4 +4334,1 6 55 9 61 62 72 7 8 +630,16 42 16 17 11 8 +1557,15 73 16 17 11 8 +11554,5 6 51 36 37 17 37 32 54 7 8 +1558,15 73 16 17 11 13 +11555,5 6 51 36 37 17 37 32 54 7 4 +11436,1 6 36 37 17 11 8 +26173,5 6 86 12 16 17 11 8 +8449,1 6 76 16 36 16 17 37 72 7 4 +5680,5 6 57 9 16 17 43 48 52 7 4 +18051,15 55 55 51 36 37 17 11 13 +13101,1 6 36 37 17 11 13 +21923,1 6 76 16 36 16 17 37 72 7 8 +18050,15 55 55 51 36 37 17 11 8 +23246,5 6 57 9 16 17 43 48 52 7 8 +21018,5 6 67 47 36 37 17 37 48 35 7 4 +21017,5 6 67 47 36 37 17 37 48 35 7 8 +7371,15 96 36 37 38 62 10 7 4 +12381,15 12 16 36 16 17 19 +26296,5 6 53 55 12 49 50 56 7 4 +26628,5 6 84 55 9 16 17 63 85 7 4 +11426,1 6 65 53 12 11 54 7 4 +13954,5 6 12 51 47 61 62 63 7 4 +24774,5 6 49 16 17 17 50 58 7 4 +12205,5 6 84 55 9 16 17 63 85 7 8 +4576,1 6 65 53 12 11 54 7 8 +21341,1 6 84 18 12 16 17 11 14 54 7 4 +26290,5 6 53 55 12 49 50 56 7 8 +29,1 21 22 17 3 8 +30,1 21 22 17 3 4 +76,5 6 29 31 42 43 17 10 30 7 4 +13953,5 6 12 51 47 61 62 63 7 8 +17820,5 6 49 16 17 17 50 58 7 8 +1088,1 6 53 54 13 +22218,15 57 9 16 117 118 52 11 8 +12897,1 6 51 36 37 19 33 7 8 +5299,1 6 12 16 17 43 32 54 7 8 +20147,5 6 53 9 16 42 16 17 10 7 8 +5778,15 12 16 36 16 17 69 +15828,5 6 53 9 16 42 16 17 10 7 4 +14124,5 6 88 57 9 16 17 10 7 8 +5300,1 6 12 16 17 43 32 54 7 4 +14123,5 6 88 57 9 16 17 10 7 4 +22089,1 6 55 53 57 9 16 17 37 50 54 7 4 +24284,1 6 53 55 9 16 17 10 54 7 4 +11346,1 6 92 9 10 58 93 7 4 +2885,5 6 57 53 9 16 17 10 54 7 4 +3539,5 6 64 16 17 62 10 7 8 +3857,1 6 84 49 109 110 7 8 +5044,1 6 57 55 53 9 16 17 11 13 +18578,5 6 53 12 61 16 36 16 17 37 48 32 7 8 +693,5 6 64 16 17 62 10 7 4 +3856,1 6 84 49 109 110 7 4 +23266,1 6 55 53 64 16 17 120 7 4 +11345,1 6 92 9 10 58 93 7 8 +6178,5 6 57 53 9 16 17 10 54 7 8 +3214,1 6 57 55 53 9 16 17 11 8 +12017,1 6 53 67 36 37 10 7 4 +22439,1 6 64 61 62 17 37 72 85 54 7 8 +12018,1 6 53 67 36 37 10 7 8 +3185,5 6 51 36 37 17 91 7 8 +4077,5 6 88 9 16 17 10 7 8 +21720,15 9 36 16 61 16 17 37 35 7 4 +26809,15 55 53 12 16 17 10 54 7 4 +2652,5 6 88 9 16 17 10 7 4 +21721,15 9 36 16 61 16 17 37 35 7 8 +23583,5 6 51 36 37 17 91 7 4 +26808,15 55 53 12 16 17 10 54 7 8 +19783,5 6 55 9 16 36 16 17 37 35 7 8 +4152,1 6 119 120 13 +6098,1 45 21 22 17 43 32 30 7 8 +9749,1 6 18 12 16 17 10 85 7 4 +4010,5 6 12 90 16 61 16 17 11 8 +6099,1 45 21 22 17 43 32 30 7 4 +11965,1 6 12 34 36 37 17 10 54 7 8 +9748,1 6 18 12 16 17 10 85 7 8 +5519,1 6 34 107 36 16 61 16 17 94 +11593,5 6 55 9 16 36 16 17 37 35 7 4 +8608,15 9 16 17 37 52 7 8 +23166,5 6 29 49 50 30 58 7 4 +8607,15 9 16 17 37 52 7 4 +25560,5 6 29 49 50 30 58 7 8 +9600,5 6 53 86 34 42 43 17 11 8 +5245,5 6 12 16 17 37 11 8 +15772,15 86 12 90 16 17 120 7 4 +10893,15 71 36 37 38 17 19 13 +23491,5 6 26 88 12 16 39 36 16 17 19 13 +25266,1 6 55 51 36 37 17 10 93 7 4 +7783,1 6 12 34 36 37 17 10 54 7 4 +4011,5 6 12 90 16 61 16 17 11 13 +17155,1 6 64 16 42 16 17 37 35 93 7 4 +21302,1 6 55 12 9 16 17 43 52 7 8 +21965,1 12 16 61 16 39 36 16 17 19 13 +22019,5 6 12 55 56 11 7 8 +17156,1 6 64 16 42 16 17 37 35 93 7 8 +11704,15 55 51 42 43 17 10 54 7 8 +4246,70 16 36 16 17 63 7 4 +249,15 34 36 37 17 11 13 +8437,5 6 31 36 37 17 75 7 8 +11705,15 55 51 42 43 17 10 54 7 4 +13229,15 34 107 107 36 37 38 37 68 7 4 +4245,70 16 36 16 17 63 7 8 +248,15 34 36 37 17 11 8 +3270,5 6 71 72 56 66 58 7 4 +25061,5 6 12 16 61 16 39 36 16 17 19 13 +3271,5 6 71 72 56 66 58 7 8 +20521,15 86 55 49 90 16 17 120 7 8 +14306,15 55 55 57 9 16 42 16 17 11 8 +14307,15 55 55 57 9 16 42 16 17 11 13 +6769,1 6 64 36 37 38 10 7 8 +1024,5 6 9 10 89 13 +15234,5 6 90 91 11 54 7 8 +4520,5 6 90 91 11 54 7 4 +17104,1 6 12 36 16 42 16 17 11 13 +25026,5 6 84 71 47 48 52 85 54 7 4 +17103,1 6 12 36 16 42 16 17 11 8 +6770,1 6 64 36 37 38 10 7 4 +7370,15 96 36 37 38 62 10 7 8 +20794,1 6 53 49 36 37 17 91 54 7 4 +776,1 6 12 11 11 8 +4384,15 86 12 90 16 17 120 7 8 +18904,5 6 57 9 16 42 16 17 37 32 93 7 8 +20517,15 86 55 49 90 16 17 120 7 4 +18933,5 6 57 9 16 42 16 17 37 32 93 7 4 +16606,15 9 16 17 37 52 11 7 4 +16624,15 57 71 36 37 10 7 8 +16623,15 57 71 36 37 10 7 4 +1732,1 6 9 10 58 11 56 7 4 +20315,1 6 9 16 36 16 17 37 48 50 7 8 +20314,1 6 9 16 36 16 17 37 48 50 7 4 +20639,5 6 36 37 17 10 7 8 +22161,1 6 12 12 16 17 37 35 11 8 +22207,5 6 36 37 17 10 7 4 +92,5 6 29 34 35 7 8 +4604,5 6 29 34 35 7 4 +13995,5 6 84 71 36 37 17 10 85 7 4 +7930,5 6 84 71 36 37 17 10 85 7 8 +25277,1 6 12 34 36 37 17 3 4 +16490,70 16 36 16 117 118 115 32 7 4 +16489,70 16 36 16 117 118 115 32 7 8 +6376,15 34 36 61 16 17 19 13 +12165,15 12 16 99 16 36 16 17 19 13 +4289,15 12 61 16 17 11 13 +17213,5 6 26 65 66 56 7 8 +1675,5 6 18 12 16 17 11 13 +22,5 6 18 12 16 17 11 8 +8868,15 53 64 36 37 38 37 48 68 13 +25706,15 12 11 93 54 7 8 +25707,15 12 11 93 54 7 4 +3594,1 6 65 71 72 13 +9845,95 36 16 17 37 35 11 8 +13099,60 16 36 37 38 37 48 35 7 8 +9111,15 12 11 58 11 56 7 8 +5202,15 96 36 37 38 37 35 7 4 +10756,15 12 11 58 11 56 7 4 +19103,70 16 36 16 61 16 17 11 7 8 +13098,60 16 36 37 38 37 48 35 7 4 +799,1 6 71 47 36 37 17 11 8 +17535,1 6 12 11 23 24 +1716,1 6 9 10 58 11 56 7 8 +9518,15 57 53 12 16 17 11 8 +5203,15 96 36 37 38 37 35 7 8 +8427,15 51 47 48 50 7 4 +21046,5 6 26 65 66 56 7 4 +8428,15 51 47 48 50 7 8 +12636,1 6 9 36 37 38 17 3 8 +24172,1 6 18 12 16 17 17 11 8 +23364,1 6 9 36 37 38 17 3 4 +18999,1 6 55 55 88 89 66 13 +700,15 34 36 37 17 3 8 +8370,5 6 12 16 36 16 17 37 52 7 4 +26339,1 6 53 26 55 51 47 48 50 56 54 7 4 +2456,5 6 12 16 36 16 17 37 52 7 8 +18964,1 6 53 26 55 51 47 48 50 56 54 7 8 +19757,15 57 9 16 117 118 52 7 8 +25428,1 6 18 12 16 17 17 11 13 +7273,1 12 16 17 43 32 10 54 7 4 +22627,5 6 64 16 36 37 38 37 48 35 87 7 4 +5480,5 6 88 55 57 9 16 17 10 7 4 +19756,15 57 9 16 117 118 52 7 4 +7973,1 12 16 17 43 32 10 54 7 8 +5481,5 6 88 55 57 9 16 17 10 7 8 +18595,5 6 57 34 47 48 32 7 4 +22528,5 6 57 34 47 48 32 7 8 +17840,1 6 64 61 62 37 52 85 54 7 8 +701,15 34 36 37 17 3 4 +5034,1 6 64 61 62 37 50 54 7 8 +9525,1 6 57 9 16 42 16 17 10 7 8 +17839,1 6 64 61 62 37 52 85 54 7 4 +6591,1 6 64 61 62 37 50 54 7 4 +21164,1 6 53 9 16 42 16 17 11 8 +5272,1 6 57 9 16 42 16 17 10 7 4 +22626,5 6 64 16 36 37 38 37 48 35 87 7 8 +7724,15 31 42 43 17 37 35 54 7 4 +16818,5 6 55 67 36 37 11 8 +7723,15 31 42 43 17 37 35 54 7 8 +8446,5 6 64 16 42 16 17 37 32 7 8 +10362,1 6 53 86 34 42 43 17 10 7 8 +20830,15 57 12 36 37 38 17 11 56 7 4 +13554,1 6 9 9 16 17 62 10 7 4 +45,1 6 29 30 7 8 +21922,5 6 64 16 42 16 17 37 32 7 4 +44,1 6 29 30 7 4 +14661,5 6 64 16 17 37 35 7 4 +6853,1 6 57 34 36 37 17 63 7 4 +2031,5 6 64 16 17 37 35 7 8 +4680,1 6 12 34 36 37 17 37 35 7 4 +6854,1 6 57 34 36 37 17 63 7 8 +21157,15 88 12 16 36 16 17 19 13 +9643,15 57 12 36 61 16 21 77 78 22 79 4 +8880,5 6 64 42 16 17 62 10 7 8 +10196,1 6 53 34 36 37 17 69 +14416,1 6 9 10 58 66 56 7 8 +10318,15 51 47 36 37 38 91 7 4 +16988,1 6 9 10 58 66 56 7 4 +8879,5 6 64 42 16 17 62 10 7 4 +15576,5 6 51 36 37 19 33 13 +2847,5 6 53 57 58 7 4 +16605,15 9 16 17 37 52 11 8 +3442,5 6 53 57 58 7 8 +26423,15 119 16 61 16 17 43 32 54 7 8 +26424,15 119 16 61 16 17 43 32 54 7 4 +3283,1 6 49 50 66 58 7 4 +5294,1 6 53 12 16 17 63 7 4 +9317,5 6 113 61 62 17 37 35 11 8 +11794,5 6 64 61 62 17 37 108 48 72 54 7 4 +10306,5 6 64 61 62 17 37 108 48 72 54 7 8 +18823,5 6 12 57 51 61 62 63 7 8 +3284,1 6 49 50 66 58 7 8 +10735,1 6 34 107 108 35 11 54 7 4 +16339,15 34 36 37 17 37 108 50 7 8 +14011,5 6 12 57 51 61 62 63 7 4 +7980,5 6 90 91 27 28 +441,5 6 84 71 72 13 +18548,5 6 55 53 31 32 13 +7440,1 6 34 107 108 35 11 54 7 8 +16338,15 34 36 37 17 37 108 50 7 4 +20575,1 6 53 67 47 36 37 17 10 7 8 +10295,1 6 53 67 47 36 37 17 10 7 4 +2973,1 6 55 12 55 56 13 +24690,15 12 16 99 16 39 36 16 17 10 7 4 +3519,1 6 53 12 61 16 17 19 13 +19610,5 6 84 55 56 85 93 27 7 8 +17371,5 6 34 107 107 36 37 10 7 4 +3430,1 6 51 47 42 43 17 37 50 7 8 +23124,1 6 55 12 55 12 16 17 19 13 +19050,1 6 51 47 42 43 17 37 50 7 4 +13201,15 57 9 16 42 16 36 16 17 37 32 93 7 8 +17370,5 6 34 107 107 36 37 10 7 8 +13200,15 57 9 16 42 16 36 16 17 37 32 93 7 4 +17407,5 6 42 43 17 37 87 30 7 8 +4635,15 31 36 37 17 91 7 4 +14478,1 6 55 88 57 9 16 36 16 17 37 50 7 4 +17406,5 6 42 43 17 37 87 30 7 4 +4636,15 31 36 37 17 91 7 8 +13010,15 31 47 36 16 61 16 17 19 13 +19459,1 6 55 88 57 9 16 36 16 17 37 50 7 8 +14633,1 6 57 88 9 61 16 17 62 10 7 4 +14634,1 6 57 88 9 61 16 17 62 10 7 8 +23968,15 71 36 37 17 37 32 54 7 4 +5594,5 6 84 9 10 14 54 7 4 +14579,15 12 39 36 61 16 17 11 13 +23967,15 71 36 37 17 37 32 54 7 8 +5593,5 6 84 9 10 14 54 7 8 +14578,15 12 39 36 61 16 17 11 8 +24147,1 6 53 90 61 16 61 16 17 62 10 7 8 +23746,1 6 53 90 61 16 61 16 17 62 10 7 4 +2179,5 6 57 92 34 36 37 17 75 7 8 +20800,5 6 57 105 16 61 16 17 62 10 7 8 +11406,1 6 64 9 36 37 38 17 11 13 +2180,5 6 57 92 34 36 37 17 75 7 4 +24173,5 6 18 12 16 17 17 11 8 +24174,5 6 18 12 16 17 17 11 13 +11405,1 6 64 9 36 37 38 17 11 8 +5152,5 6 53 65 66 54 7 8 +2251,5 6 64 61 62 17 37 68 54 7 4 +11868,5 6 55 88 57 58 56 7 8 +2250,5 6 64 61 62 17 37 68 54 7 8 +6912,15 44 31 47 42 43 17 3 4 +6911,15 44 31 47 42 43 17 3 8 +12722,5 6 29 71 72 13 +7704,15 9 16 17 43 72 11 8 +6449,5 6 49 61 62 91 7 8 +8920,5 6 53 65 66 54 7 4 +6450,5 6 49 61 62 91 7 4 +19819,1 6 55 12 55 57 9 16 17 37 108 68 7 8 +2992,5 6 49 47 48 50 58 7 4 +19820,1 6 55 12 55 57 9 16 17 37 108 68 7 4 +24489,15 88 65 66 89 7 8 +16078,1 6 9 16 39 36 16 61 16 17 19 7 8 +21677,1 6 65 9 16 42 16 17 11 8 +24488,15 88 65 66 89 7 4 +4281,5 6 9 10 58 66 7 4 +2609,5 6 49 47 48 50 58 7 8 +8596,1 6 55 49 61 62 63 7 8 +4280,5 6 9 10 58 66 7 8 +19413,1 6 53 64 36 16 17 37 50 54 7 4 +21417,15 55 12 57 58 58 11 56 7 8 +17669,15 55 12 57 58 58 11 56 7 4 +13064,1 6 12 57 12 16 36 37 38 37 48 35 11 8 +10367,1 6 53 12 39 36 16 42 16 17 37 35 7 4 +17660,1 6 55 57 9 16 36 37 38 17 37 35 7 4 +22272,5 6 57 53 9 16 17 63 7 4 +2354,1 6 57 51 52 13 +10366,1 6 53 12 39 36 16 42 16 17 37 35 7 8 +11700,5 6 57 53 9 16 17 63 7 8 +21574,5 6 29 9 16 36 37 38 37 72 30 7 8 +17641,15 65 88 55 56 7 4 +5339,15 55 49 36 37 11 8 +16920,1 6 18 12 16 17 37 35 87 58 7 4 +18725,15 67 36 37 38 17 62 10 7 4 +13981,5 6 29 9 16 36 37 38 37 72 30 7 4 +17640,15 65 88 55 56 7 8 +12686,5 6 57 9 16 36 16 17 10 7 8 +19779,1 6 86 12 16 39 36 16 17 19 13 +3349,5 6 57 9 16 36 16 17 10 7 4 +16919,1 6 18 12 16 17 37 35 87 58 7 8 +9839,15 109 88 57 58 110 72 7 4 +12283,15 65 49 114 115 35 66 7 8 +18929,1 6 64 16 61 16 36 37 38 11 8 +9368,5 6 53 9 16 36 37 38 37 52 54 7 8 +9840,15 109 88 57 58 110 72 7 8 +12277,15 65 49 114 115 35 66 7 4 +3808,15 55 9 16 42 16 17 11 8 +4347,1 6 53 54 63 7 8 +3809,15 55 9 16 42 16 17 11 13 +14040,5 6 31 36 37 17 118 17 37 52 7 4 +4346,1 6 53 54 63 7 4 +7169,5 6 76 61 62 11 8 +7170,5 6 76 61 62 11 13 +13956,5 6 34 36 37 17 19 58 7 4 +1860,15 53 16 17 62 10 7 4 +13957,5 6 34 36 37 17 19 58 7 8 +1861,15 53 16 17 62 10 7 8 +26520,1 6 76 16 42 16 17 43 50 7 4 +9561,5 6 47 48 32 7 4 +8133,5 6 51 47 42 43 17 37 72 54 7 8 +965,5 6 90 16 17 37 72 85 7 8 +9560,5 6 47 48 32 7 8 +19365,5 6 121 122 122 58 58 66 13 +23264,15 9 36 61 16 17 62 10 7 8 +966,5 6 90 16 17 37 72 85 7 4 +20872,15 105 61 16 17 106 7 4 +24184,1 6 57 67 36 37 91 54 7 8 +23263,15 9 36 61 16 17 62 10 7 4 +22744,5 6 90 16 61 16 36 16 17 19 7 4 +22743,5 6 90 16 61 16 36 16 17 19 7 8 +20873,15 105 61 16 17 106 7 8 +23195,5 6 88 57 58 58 89 56 7 4 +2548,1 6 53 12 61 16 17 11 8 +6429,5 6 67 47 48 35 54 7 4 +20494,1 6 64 61 62 17 37 108 52 7 4 +6428,5 6 67 47 48 35 54 7 8 +12195,1 6 9 9 16 36 61 16 17 43 75 7 4 +15163,1 12 16 36 37 38 37 50 7 4 +20495,1 6 64 61 62 17 37 108 52 7 8 +2781,1 12 16 36 37 38 37 50 7 8 +11823,15 57 34 36 37 94 +19901,1 6 53 18 12 11 54 85 7 4 +12239,5 6 64 61 16 17 19 7 8 +12585,1 6 26 57 58 13 +19902,1 6 53 18 12 11 54 85 7 8 +9260,1 6 9 10 27 58 89 7 4 +8132,5 6 51 47 42 43 17 37 72 54 7 4 +17668,15 55 12 57 58 58 11 8 +8556,1 6 53 12 61 16 17 11 13 +9026,1 6 86 88 57 57 86 87 7 4 +19623,15 55 53 31 47 48 35 54 7 8 +592,5 6 9 10 33 13 +9027,1 6 86 88 57 57 86 87 7 8 +14409,5 6 55 65 66 89 13 +2503,15 55 12 88 89 7 4 +19632,15 55 53 31 47 48 35 54 7 4 +2502,15 55 12 88 89 7 8 +11717,5 6 47 48 32 11 8 +20248,15 88 57 58 89 56 27 28 +14502,5 6 64 61 62 11 54 7 8 +4114,15 67 47 36 37 19 58 11 56 7 4 +9323,5 6 64 61 62 11 54 7 4 +23075,15 9 36 61 16 17 37 35 7 8 +26700,5 6 55 12 34 47 36 37 17 11 8 +21708,5 6 53 12 11 54 35 7 8 +23074,15 9 36 61 16 17 37 35 7 4 +4758,5 6 71 47 36 37 17 11 8 +4759,5 6 71 47 36 37 17 11 13 +25562,5 6 53 9 16 36 16 17 37 52 85 54 7 4 +14602,5 6 64 16 36 37 38 17 37 68 7 8 +6517,5 6 64 16 36 37 38 17 37 68 7 4 +24594,5 45 21 22 17 37 32 93 7 4 +24593,5 45 21 22 17 37 32 93 7 8 +25320,1 6 73 16 42 16 17 37 35 7 8 +6974,5 6 55 53 53 54 56 7 4 +26679,15 12 39 36 16 36 16 42 16 17 19 13 +6973,5 6 55 53 53 54 56 7 8 +840,5 6 12 9 16 36 37 38 17 3 8 +21375,1 6 55 57 9 16 36 37 38 17 10 54 7 8 +24979,1 6 9 16 36 16 61 16 17 37 32 7 4 +13464,5 6 9 61 62 32 7 4 +26506,15 65 9 16 42 16 17 37 72 7 8 +13465,5 6 9 61 62 32 7 8 +22471,1 6 113 61 62 17 37 35 87 7 4 +26505,15 65 9 16 42 16 17 37 72 7 4 +17801,1 6 55 57 9 16 36 37 38 17 10 54 7 4 +4951,1 6 53 12 16 17 63 7 8 +16816,15 55 88 55 57 55 67 68 56 7 8 +18013,15 96 16 36 37 38 120 7 4 +19315,1 6 18 12 16 17 37 35 11 7 4 +6843,1 6 9 16 36 37 38 10 7 4 +839,5 6 12 9 16 36 37 38 17 3 4 +23936,5 6 64 61 62 17 131 17 7 4 +8561,1 6 55 34 35 89 7 4 +16324,1 6 9 16 36 37 38 10 7 8 +12840,5 2 16 17 37 72 89 58 7 8 +6058,15 12 16 61 16 21 77 101 102 103 +18014,15 96 16 36 37 38 120 7 8 +18201,1 6 9 16 17 43 68 11 7 8 +23923,5 6 55 12 57 96 36 37 38 19 56 89 13 +8961,1 6 55 34 35 89 7 8 +12465,1 6 9 16 17 43 68 11 7 4 +16817,15 55 88 55 57 55 67 68 56 7 4 +5483,1 6 88 9 16 17 37 48 72 7 8 +13203,15 12 39 36 16 17 19 56 7 4 +5484,1 6 88 9 16 17 37 48 72 7 4 +23247,5 6 84 9 10 56 89 85 7 4 +560,1 6 34 35 89 7 8 +23898,15 65 55 9 16 17 10 7 8 +20197,15 65 55 9 16 17 10 7 4 +22598,15 86 31 47 107 36 37 17 10 7 4 +11975,1 6 34 35 89 7 4 +25750,1 6 55 9 16 17 37 10 54 7 8 +1396,15 12 16 17 63 7 4 +1397,15 12 16 17 63 7 8 +9986,5 6 64 16 117 118 32 7 4 +14162,5 6 9 10 66 23 7 4 +9985,5 6 64 16 117 118 32 7 8 +15556,1 6 57 58 58 66 7 8 +10100,5 6 9 10 11 23 7 8 +17290,5 6 9 10 66 23 7 8 +1383,5 6 9 10 54 54 7 4 +1382,5 6 9 10 54 54 7 8 +24772,1 6 64 16 36 16 17 37 108 48 72 7 8 +18078,1 6 84 90 16 36 16 61 16 17 19 7 8 +13204,15 12 39 36 16 17 19 56 7 8 +15313,15 55 9 16 42 16 21 77 78 22 79 4 +18079,1 6 84 90 16 36 16 61 16 17 19 7 4 +1878,5 6 53 31 36 37 19 13 +11123,15 55 65 55 71 47 48 68 7 8 +4798,5 6 9 10 87 54 7 8 +20979,1 6 53 12 36 16 17 37 48 7 8 +3917,15 44 67 107 61 62 63 7 4 +18650,15 55 65 55 71 47 48 68 7 4 +16857,5 6 53 31 36 37 17 69 +19053,1 6 71 107 108 52 7 4 +20980,1 6 53 12 36 16 17 37 48 7 4 +6963,1 6 64 61 62 17 10 54 54 7 8 +24501,1 6 88 12 16 36 16 17 37 72 7 4 +3918,15 44 67 107 61 62 63 7 8 +9726,15 55 12 57 96 36 37 38 19 58 11 56 7 4 +555,1 6 55 56 56 7 4 +1488,1 6 64 61 62 17 10 54 54 7 4 +24500,1 6 88 12 16 36 16 17 37 72 7 8 +2407,15 55 12 57 96 36 37 38 19 58 11 56 7 8 +554,1 6 55 56 56 7 8 +19052,1 6 71 107 108 52 7 8 +2266,1 6 55 88 89 56 7 8 +2269,1 6 55 88 89 56 7 4 +21637,5 6 88 57 53 71 36 37 17 10 7 4 +23271,5 6 12 9 16 17 43 32 7 8 +23270,5 6 12 9 16 17 43 32 7 4 +25422,5 6 84 9 10 56 89 85 7 8 +15426,5 6 76 16 17 63 7 4 +21638,5 6 88 57 53 71 36 37 17 10 7 8 +6996,5 6 9 10 87 54 7 4 +15430,5 6 76 16 17 63 7 8 +9972,15 55 57 53 31 36 37 17 59 +747,5 6 9 10 58 13 +17983,15 55 53 96 16 21 77 78 22 8 +19588,15 55 57 12 16 36 37 38 17 37 32 7 4 +19587,15 55 57 12 16 36 37 38 17 37 32 7 8 +16448,15 55 53 12 16 17 37 32 7 8 +22496,1 6 64 16 17 43 68 11 7 4 +16447,15 55 53 12 16 17 37 32 7 4 +3794,5 6 9 36 37 38 17 37 68 7 8 +17311,1 6 18 12 16 17 43 32 66 7 4 +14556,1 12 9 31 61 62 63 7 4 +17310,1 6 18 12 16 17 43 32 66 7 8 +4925,1 12 9 31 61 62 63 7 8 +257,1 6 67 47 48 68 11 8 +13052,15 44 34 47 36 37 17 11 8 +12996,1 6 92 55 9 16 21 77 78 22 79 4 +16805,5 6 12 16 42 16 17 10 7 8 +13053,15 44 34 47 36 37 17 11 13 +22581,5 6 12 16 42 16 17 10 7 4 +7446,5 6 9 36 37 38 17 37 68 7 4 +21681,1 6 12 11 87 7 8 +14773,5 6 84 9 16 36 16 61 16 17 37 7 8 +14774,5 6 84 9 16 36 16 61 16 17 37 7 4 +24614,5 6 18 12 16 17 37 68 68 7 8 +6340,5 6 84 67 68 85 7 4 +15542,5 6 57 9 16 36 37 38 37 48 35 7 4 +12413,1 6 53 65 9 16 17 37 50 7 4 +5543,1 6 57 53 90 91 54 7 8 +3674,5 6 57 9 16 36 37 38 37 48 35 7 8 +25500,15 88 57 9 39 36 16 17 11 8 +5539,1 6 57 53 90 91 54 7 4 +25501,15 88 57 9 39 36 16 17 11 13 +21682,1 6 12 11 87 7 4 +15817,1 6 53 12 34 35 33 13 +722,5 6 9 10 56 13 +17841,1 6 84 12 11 11 8 +19570,1 6 55 55 9 16 17 62 10 7 8 +9235,1 12 36 16 17 37 48 68 89 13 +7152,15 55 53 88 89 54 54 54 7 8 +9176,15 12 16 36 37 38 17 37 50 7 8 +19571,1 6 55 55 9 16 17 62 10 7 4 +7151,15 55 53 88 89 54 54 54 7 4 +2475,1 6 90 91 93 58 7 8 +18296,15 55 57 92 31 61 62 63 7 8 +26068,5 6 84 49 50 85 85 54 7 4 +9316,5 6 51 61 62 112 7 4 +2474,1 6 90 91 93 58 7 4 +16554,15 55 57 92 31 61 62 63 7 4 +26067,5 6 84 49 50 85 85 54 7 8 +9310,5 6 51 61 62 112 7 8 +3708,15 88 57 58 89 56 7 8 +14030,1 6 31 47 36 37 17 37 52 7 4 +15141,5 6 67 47 42 43 17 10 7 4 +15142,5 6 67 47 42 43 17 10 7 8 +1027,15 88 57 58 89 56 7 4 +14031,1 6 31 47 36 37 17 37 52 7 8 +1122,5 6 53 18 12 61 16 17 62 10 7 8 +2547,5 6 53 18 12 61 16 17 62 10 7 4 +3006,15 9 16 17 43 72 7 8 +3007,15 9 16 17 43 72 7 4 +19198,1 6 9 16 16 17 43 52 7 8 +22363,5 6 64 16 42 16 17 63 7 4 +6341,5 6 84 67 68 85 7 8 +22364,5 6 64 16 42 16 17 63 7 8 +13434,5 6 18 12 16 42 16 36 16 17 19 13 +3911,5 6 9 10 58 66 11 8 +20644,5 6 9 16 36 16 61 16 17 37 7 4 +9775,5 6 84 57 65 66 13 +22410,5 6 9 16 36 16 61 16 17 37 7 8 +7927,1 6 84 64 16 17 37 72 85 7 8 +3195,1 6 57 57 9 16 36 16 17 37 72 7 4 +17646,5 6 55 53 31 36 37 17 10 7 4 +163,5 6 64 61 62 17 37 35 54 7 8 +15131,1 6 53 55 56 54 54 7 4 +3196,1 6 57 57 9 16 36 16 17 37 72 7 8 +164,5 6 64 61 62 17 37 35 54 7 4 +17647,5 6 55 53 31 36 37 17 10 7 8 +17097,96 16 36 16 17 37 52 7 8 +8050,5 6 124 107 36 37 69 +17098,96 16 36 16 17 37 52 7 4 +24731,1 6 53 55 56 54 54 7 8 +18936,1 6 53 18 12 16 61 16 17 19 13 +20774,5 6 88 55 56 93 7 8 +23440,1 6 9 16 17 63 54 7 8 +25399,5 6 57 12 16 17 11 7 8 +22697,1 6 9 16 17 63 54 7 4 +7159,1 6 53 71 72 54 7 8 +3983,1 6 84 12 11 7 4 +8124,1 6 53 71 72 54 7 4 +2676,1 6 84 12 11 7 8 +3277,5 6 67 68 58 66 58 7 4 +3276,5 6 67 68 58 66 58 7 8 +7344,15 9 36 16 36 16 17 37 35 7 8 +7343,15 9 36 16 36 16 17 37 35 7 4 +12206,1 6 84 64 16 17 37 72 85 7 4 +14142,1 6 64 61 62 11 58 7 8 +2139,1 6 29 42 43 10 7 4 +17827,1 12 36 37 38 17 37 52 7 8 +7233,1 12 36 37 38 17 37 52 7 4 +16304,5 6 64 61 62 17 11 54 7 8 +17217,5 6 53 124 47 48 50 54 7 4 +24299,1 6 90 16 17 37 48 50 7 8 +12768,5 6 64 61 62 17 11 54 7 4 +20151,1 6 64 61 62 11 58 7 4 +14389,5 6 84 90 16 36 16 17 10 85 7 4 +5262,5 6 29 9 16 42 16 17 10 30 7 4 +15763,5 6 64 61 62 106 7 8 +5016,5 6 29 9 16 42 16 17 10 30 7 8 +25586,5 6 12 9 16 17 37 35 56 7 4 +15764,5 6 64 61 62 106 7 4 +23351,1 6 90 16 17 37 48 50 7 4 +2138,1 6 29 42 43 10 7 8 +11483,1 6 51 47 47 36 37 19 58 7 8 +24334,5 6 12 9 16 17 37 35 56 7 8 +11484,1 6 51 47 47 36 37 19 58 7 4 +17855,5 6 84 90 16 36 16 17 10 85 7 8 +7664,5 6 34 107 36 37 17 11 8 +19625,15 31 47 48 35 54 7 4 +10150,15 49 47 48 48 68 7 4 +19250,15 12 36 16 17 37 115 68 7 8 +19624,15 31 47 48 35 54 7 8 +9140,15 57 53 34 107 108 108 35 54 7 8 +20547,5 6 84 71 107 108 108 68 85 54 7 8 +10149,15 49 47 48 48 68 7 8 +3065,1 6 57 58 54 54 7 8 +9249,15 53 71 47 48 72 54 7 4 +9320,5 6 113 61 62 62 10 7 8 +19249,15 12 36 16 17 37 115 68 7 4 +18253,5 6 53 12 16 61 16 17 10 7 8 +3064,1 6 57 58 54 54 7 4 +11059,5 6 113 61 62 62 10 7 4 +25456,5 6 53 12 16 61 16 17 10 7 4 +13535,15 55 67 47 42 43 17 37 68 54 7 8 +3499,15 12 16 36 16 17 37 48 68 7 4 +13536,15 55 67 47 42 43 17 37 68 54 7 4 +3500,15 12 16 36 16 17 37 48 68 7 8 +23411,1 6 55 16 17 43 50 7 8 +23412,1 6 55 16 17 43 50 7 4 +11526,1 6 55 9 16 17 37 48 35 11 8 +8690,1 6 64 16 36 37 38 37 35 54 7 4 +11181,1 6 53 64 36 37 38 37 11 8 +13280,1 6 53 9 61 62 63 7 4 +2244,5 6 88 57 53 67 68 54 7 4 +19155,5 6 84 67 36 37 17 10 7 4 +2245,5 6 88 57 53 67 68 54 7 8 +8691,1 6 64 16 36 37 38 37 35 54 7 8 +19156,5 6 84 67 36 37 17 10 7 8 +19794,1 6 90 16 17 37 72 56 7 4 +25787,1 6 53 9 16 17 118 17 10 7 4 +8103,15 55 49 36 37 17 69 +19795,1 6 90 16 17 37 72 56 7 8 +22601,5 6 9 10 48 13 +22489,15 12 16 17 11 85 54 7 4 +12874,1 6 12 16 36 37 38 17 10 7 4 +19580,15 12 16 17 11 85 54 7 8 +11120,1 6 67 68 66 58 89 13 +18216,1 6 12 16 36 37 38 17 10 7 8 +8925,1 6 31 61 62 17 37 52 7 8 +8705,1 6 31 61 62 17 37 52 7 4 +2405,5 6 55 12 57 96 36 37 38 19 58 11 8 +20806,15 67 47 47 36 37 11 7 8 +10010,15 67 47 47 36 37 11 7 4 +11736,5 6 53 71 47 48 68 54 54 7 8 +19856,5 6 64 61 62 17 63 54 54 7 8 +11601,1 6 18 12 16 17 37 35 10 7 8 +5994,1 6 18 12 16 17 37 35 10 7 4 +977,1 6 84 12 16 17 19 13 +1504,15 55 53 31 32 7 4 +2054,15 34 36 37 17 63 85 54 7 4 +1505,15 55 53 31 32 7 8 +2055,15 34 36 37 17 63 85 54 7 8 +6284,15 53 12 16 36 37 38 17 3 4 +26016,15 9 16 17 100 7 4 +6285,15 53 12 16 36 37 38 17 3 8 +10509,1 6 67 117 16 17 37 35 7 8 +19220,5 6 53 51 47 48 72 54 7 4 +1825,5 6 71 36 37 17 11 13 +4649,5 6 76 16 36 16 17 75 7 8 +5395,5 6 51 36 37 11 13 +10508,1 6 67 117 16 17 37 35 7 4 +1824,5 6 71 36 37 17 11 8 +4648,5 6 76 16 36 16 17 75 7 4 +26017,15 9 16 17 100 7 8 +15195,5 6 57 12 16 61 16 17 19 13 +3651,5 6 51 36 37 11 8 +4109,5 6 55 9 16 39 36 16 17 19 7 4 +6082,1 6 53 18 12 16 61 16 17 11 13 +19215,5 6 53 51 47 48 72 54 7 8 +24322,5 6 12 34 114 115 35 11 8 +25297,5 6 53 51 47 48 50 54 7 4 +25301,5 6 53 51 47 48 50 54 7 8 +232,1 6 53 18 12 16 61 16 17 11 8 +7529,5 6 55 9 16 39 36 16 17 19 7 8 +4377,5 6 9 10 11 13 +6321,5 6 34 107 36 37 17 19 13 +4585,15 86 53 12 11 54 7 8 +3,5 6 9 10 11 8 +21573,5 6 29 9 16 36 37 38 17 10 30 7 4 +4586,15 86 53 12 11 54 7 4 +19095,1 6 26 88 49 50 7 4 +25781,1 6 9 36 16 17 37 115 68 13 +4983,15 53 34 47 109 110 13 +8349,1 6 26 88 49 50 7 8 +8469,5 6 34 36 16 61 16 17 62 10 7 8 +9701,15 55 51 42 43 17 37 52 30 58 7 8 +24962,70 36 16 42 16 17 11 13 +10887,5 6 64 16 42 16 17 62 10 7 8 +21856,1 6 9 10 58 89 11 8 +24961,70 36 16 42 16 17 11 8 +1012,5 6 64 16 42 16 17 62 10 7 4 +20667,5 6 64 36 37 38 37 108 48 72 54 7 8 +2640,5 6 64 36 37 38 37 108 48 72 54 7 4 +23930,1 6 55 53 55 56 54 7 4 +22340,15 34 109 110 89 11 8 +9702,15 55 51 42 43 17 37 52 30 58 7 4 +24036,15 9 39 36 16 17 43 35 87 7 4 +13979,5 6 29 9 16 36 37 38 17 10 30 7 8 +9358,70 16 36 37 38 37 32 54 7 4 +22512,70 16 99 16 17 37 35 7 4 +24035,15 9 39 36 16 17 43 35 87 7 8 +848,5 6 90 91 66 11 8 +16253,1 21 22 17 82 8 +26244,5 6 9 36 37 10 7 8 +16268,5 6 57 55 49 47 48 68 7 8 +25871,15 57 53 31 47 36 37 17 63 7 4 +5386,5 6 53 51 36 37 69 +22220,1 6 51 117 16 17 19 7 4 +26455,5 6 53 64 36 37 38 37 108 35 54 7 4 +11237,5 6 9 36 37 10 7 4 +24676,1 6 51 117 16 17 19 7 8 +10311,5 6 12 65 66 7 8 +12404,1 6 88 89 54 7 4 +25393,1 6 57 92 9 36 16 61 16 17 10 7 8 +17545,5 6 12 65 66 7 4 +20238,15 57 53 31 47 36 37 17 63 7 8 +4356,1 6 64 53 9 16 36 37 38 17 10 54 7 4 +26478,5 6 53 55 9 16 36 37 38 37 35 54 7 4 +26477,5 6 53 55 9 16 36 37 38 37 35 54 7 8 +25615,1 6 88 89 54 7 8 +4355,1 6 64 53 9 16 36 37 38 17 10 54 7 8 +19754,5 6 57 55 49 47 48 68 7 4 +9359,70 16 36 37 38 37 32 54 7 8 +34,5 6 9 10 7 8 +25618,5 6 88 88 57 58 66 13 +25747,5 6 53 9 36 37 11 8 +22263,5 6 9 39 36 16 61 16 17 62 10 7 8 +35,5 6 9 10 7 4 +20448,5 6 51 47 48 35 54 7 8 +10434,5 6 53 57 49 47 48 32 7 8 +21877,5 6 51 47 48 35 54 7 4 +21648,5 6 34 42 43 17 10 7 8 +3798,15 71 42 43 17 10 7 4 +3799,15 71 42 43 17 10 7 8 +20949,15 12 16 117 118 32 7 8 +20948,15 12 16 117 118 32 7 4 +7372,1 6 9 16 17 37 108 35 7 4 +5223,5 6 53 9 10 93 7 4 +6999,1 6 53 9 10 66 54 7 8 +20184,70 16 99 16 17 37 108 52 7 8 +24048,1 6 57 9 16 17 37 48 32 7 8 +6998,1 6 53 9 10 66 54 7 4 +20183,70 16 99 16 17 37 108 52 7 4 +24049,1 6 57 9 16 17 37 48 32 7 4 +3116,1 6 9 10 58 89 7 8 +18191,1 6 53 9 16 36 16 17 91 7 4 +4915,1 6 9 10 58 89 7 4 +20296,1 6 53 9 16 36 16 17 91 7 8 +15508,1 6 9 16 17 37 108 35 7 8 +5222,5 6 53 9 10 93 7 8 +24096,5 6 55 34 36 37 11 8 +6103,1 6 18 12 9 16 17 11 7 4 +23211,1 6 53 67 114 107 108 115 72 54 7 8 +12090,1 6 88 12 26 65 66 11 89 13 +25716,1 6 53 88 57 9 16 61 16 17 63 7 4 +26028,5 6 90 91 66 7 8 +23901,15 57 26 12 16 17 19 13 +26029,5 6 90 91 66 7 4 +8159,70 16 36 16 61 16 21 77 78 22 79 4 +19518,1 6 55 12 96 36 16 17 19 58 11 8 +674,5 6 84 53 54 7 8 +7886,1 6 12 12 51 52 7 4 +675,5 6 84 53 54 7 4 +4382,15 86 12 11 13 +5859,1 6 67 47 48 68 7 8 +3845,1 6 84 12 16 17 11 8 +7885,1 6 12 12 51 52 7 8 +3597,1 6 67 47 48 68 7 4 +13012,1 6 53 9 10 33 54 7 8 +19513,15 57 88 57 12 16 17 19 13 +13013,1 6 53 9 10 33 54 7 4 +6048,15 65 57 67 36 37 17 62 10 7 8 +10891,5 6 71 36 37 17 19 13 +12797,5 6 53 18 12 16 17 63 54 7 8 +21087,5 6 53 18 12 16 17 63 54 7 4 +11631,5 6 55 57 9 61 62 52 7 8 +11632,5 6 55 57 9 61 62 52 7 4 +23282,5 6 9 16 17 43 52 56 7 4 +3994,1 6 84 12 16 17 11 13 +14301,5 6 84 12 16 36 37 38 37 48 52 7 4 +25434,5 6 64 39 36 16 61 16 17 11 13 +805,5 6 84 12 16 36 37 38 37 48 52 7 8 +25433,5 6 64 39 36 16 61 16 17 11 8 +23283,5 6 9 16 17 43 52 56 7 8 +23347,5 6 51 47 36 37 69 +5101,15 57 71 47 36 37 19 13 +17184,5 6 88 34 35 58 7 4 +11964,1 6 18 12 9 16 17 11 7 8 +26496,1 6 53 9 10 11 54 7 8 +22839,1 6 53 51 107 36 37 17 10 7 8 +24311,15 88 57 9 61 16 17 11 13 +24310,15 88 57 9 61 16 17 11 8 +1437,5 6 67 42 43 17 37 52 7 8 +1436,5 6 67 42 43 17 37 52 7 4 +13668,1 6 55 9 36 16 17 11 8 +24402,1 12 36 16 17 37 108 50 7 4 +5649,5 6 88 57 26 34 35 58 7 8 +15550,1 6 64 36 16 36 16 61 16 17 19 7 4 +16204,1 6 64 36 16 36 16 61 16 17 19 7 8 +22451,5 6 90 36 16 17 37 72 7 4 +12237,15 9 61 62 32 93 58 7 8 +25847,5 6 26 9 16 17 118 17 11 8 +12377,5 6 12 67 47 48 68 11 8 +22450,5 6 90 36 16 17 37 72 7 8 +4196,1 6 18 12 16 17 17 +25848,5 6 26 9 16 17 118 17 11 13 +18288,15 9 16 117 118 52 7 4 +18289,15 9 16 117 118 52 7 8 +19359,5 6 67 36 37 17 62 10 7 8 +8356,5 6 26 88 71 47 36 37 17 11 8 +18173,5 6 67 36 37 17 62 10 7 4 +9784,15 86 9 16 17 10 85 7 4 +6864,1 6 18 12 16 17 69 +9785,15 86 9 16 17 10 85 7 8 +11052,1 6 9 61 62 48 52 58 7 8 +8071,1 6 55 57 109 110 58 7 4 +8072,1 6 55 57 109 110 58 7 8 +1492,1 6 55 56 58 7 8 +23644,15 67 109 110 11 7 8 +1493,1 6 55 56 58 7 4 +26861,5 6 64 16 17 43 52 7 4 +18270,1 6 55 51 47 36 37 17 37 50 7 8 +26039,15 53 12 11 13 +16476,5 6 51 36 37 17 43 48 68 7 8 +8778,5 6 41 12 16 17 11 7 4 +5926,1 6 9 16 17 43 13 +19912,1 6 53 9 10 54 85 7 4 +7284,5 6 41 12 16 17 11 7 8 +18395,1 6 53 18 12 16 17 37 50 7 8 +19911,1 6 53 9 10 54 85 7 8 +12236,15 9 61 62 32 93 58 7 4 +8741,1 6 55 51 47 36 37 17 37 50 7 4 +16030,15 34 42 43 17 37 35 54 7 4 +18396,1 6 53 18 12 16 17 37 50 7 4 +16031,15 34 42 43 17 37 35 54 7 8 +8766,1 12 9 16 17 37 10 7 4 +10266,5 6 55 9 16 39 36 16 17 11 8 +8765,1 12 9 16 17 37 10 7 8 +3288,1 6 55 55 71 47 48 68 7 4 +16509,5 6 67 36 37 17 37 35 7 4 +6054,1 12 16 39 36 16 17 11 8 +9074,5 6 57 86 87 7 8 +9809,5 6 55 34 36 37 19 13 +12630,5 6 29 9 61 16 17 10 7 8 +17307,15 119 16 17 63 54 7 8 +10662,5 6 51 36 37 17 43 48 68 7 4 +8473,5 6 55 34 36 37 17 69 +8118,5 6 88 88 89 23 7 8 +2415,5 6 57 86 87 7 4 +12631,5 6 29 9 61 16 17 10 7 4 +8119,5 6 88 88 89 23 7 4 +4007,5 6 90 91 11 8 +11457,5 6 18 12 16 42 16 17 37 32 7 8 +10457,5 6 51 52 58 89 7 4 +11458,5 6 18 12 16 42 16 17 37 32 7 4 +24063,5 6 53 12 51 107 108 108 52 11 8 +19369,15 9 9 9 9 9 9 16 17 10 7 4 +19370,15 9 9 9 9 9 9 16 17 10 7 8 +20553,15 9 16 36 16 17 37 72 7 8 +14363,15 49 36 37 17 43 68 7 8 +19196,96 16 36 37 38 17 43 50 56 7 4 +18790,15 9 16 36 16 17 37 72 7 4 +14362,15 49 36 37 17 43 68 7 4 +19197,96 16 36 37 38 17 43 50 56 7 8 +10673,1 6 12 16 42 16 21 77 78 22 79 4 +15053,1 6 76 61 62 37 52 7 4 +18582,1 6 57 92 9 10 54 7 4 +15054,1 6 76 61 62 37 52 7 8 +18583,1 6 57 92 9 10 54 7 8 +720,15 55 56 89 56 7 4 +346,1 6 55 56 13 +25943,5 6 88 65 66 7 4 +41,5 6 9 10 27 28 +17306,15 119 16 17 63 54 7 4 +25583,15 34 114 115 35 11 7 8 +24324,15 34 114 115 35 11 7 4 +25888,5 45 21 22 17 19 50 58 7 4 +22108,5 45 21 22 17 19 50 58 7 8 +23848,5 6 65 9 16 36 16 17 37 35 7 8 +12558,15 55 57 86 87 13 +21397,15 9 16 17 43 32 11 54 7 8 +3937,1 6 53 71 36 37 17 10 54 7 8 +26144,1 6 55 9 36 37 17 10 54 7 8 +8125,1 6 53 71 36 37 17 10 54 7 4 +6562,1 6 9 10 58 89 27 28 +7139,15 55 9 16 17 10 85 7 8 +12480,1 6 53 67 68 56 13 +7140,15 55 9 16 17 10 85 7 4 +21688,5 6 57 12 51 117 16 17 11 8 +794,15 67 47 48 72 7 4 +19707,15 67 42 43 17 10 54 7 4 +795,15 67 47 48 72 7 8 +8232,5 6 57 12 16 17 10 7 8 +20176,15 88 88 57 58 89 56 7 8 +13690,5 6 57 12 16 17 10 7 4 +19706,15 67 42 43 17 10 54 7 8 +20175,15 88 88 57 58 89 56 7 4 +1625,5 6 90 91 7 8 +604,5 6 90 91 7 4 +19767,1 6 65 9 16 17 37 35 87 7 8 +17375,15 67 47 107 108 48 68 54 7 8 +8836,15 67 47 107 108 48 68 54 7 4 +19768,1 6 65 9 16 17 37 35 87 7 4 +8308,15 55 71 47 36 37 69 +10394,1 6 12 9 16 17 37 123 7 4 +6271,40 41 88 89 13 +26304,5 6 31 47 107 36 37 69 +13273,1 6 55 96 16 21 77 78 22 8 +14836,1 12 16 61 16 36 16 17 69 +21402,15 67 67 36 37 10 7 4 +6708,15 55 55 53 53 54 7 8 +11184,5 6 9 10 23 24 +21403,15 67 67 36 37 10 7 8 +5201,15 34 36 37 38 37 35 7 4 +6707,15 55 55 53 53 54 7 4 +24968,1 6 53 31 47 36 37 10 7 4 +7920,15 34 36 37 38 37 35 7 8 +3278,1 6 55 55 71 47 48 68 7 8 +24052,1 6 65 66 56 89 7 4 +24051,1 6 65 66 56 89 7 8 +12884,1 6 55 67 36 16 17 37 50 7 4 +17571,15 55 53 51 47 47 36 37 19 +25073,5 6 9 36 16 36 37 38 37 35 7 4 +21218,1 6 96 16 17 11 8 +21535,5 6 53 34 47 36 37 17 11 8 +14408,1 6 53 67 36 37 11 8 +7158,15 53 88 90 61 16 17 10 54 54 54 7 4 +1475,1 12 16 39 36 16 17 19 13 +4700,1 6 57 49 50 13 +9507,1 6 65 57 90 16 61 16 17 11 8 +25813,1 6 42 16 17 17 11 8 +26739,5 6 12 90 16 17 91 7 4 +26738,5 6 12 90 16 17 91 7 8 +5848,15 57 9 16 17 63 7 8 +9508,1 6 65 57 90 16 61 16 17 11 13 +5847,15 57 9 16 17 63 7 4 +8599,1 6 9 16 61 16 17 19 7 4 +26025,15 57 26 65 9 16 17 10 85 7 8 +7157,15 53 88 90 61 16 17 10 54 54 54 7 8 +14529,1 6 124 9 36 37 38 37 48 7 4 +15829,1 6 92 31 42 43 17 10 54 7 8 +13858,5 6 12 16 36 16 17 37 48 35 54 54 7 4 +25661,1 6 124 9 36 37 38 37 48 7 8 +6667,1 6 92 31 42 43 17 10 54 7 4 +21224,15 88 65 66 89 11 8 +25111,15 71 42 43 74 85 7 8 +5198,1 6 76 16 42 16 17 37 32 7 8 +25112,15 71 42 43 74 85 7 4 +5197,1 6 76 16 42 16 17 37 32 7 4 +13859,5 6 12 16 36 16 17 37 48 35 54 54 7 8 +17360,1 6 53 53 49 50 54 54 7 8 +23005,1 6 84 88 57 58 85 54 7 8 +12386,5 6 51 36 37 17 94 +15006,15 53 53 16 17 10 7 4 +5413,1 6 53 67 47 36 37 94 +24820,1 6 84 88 57 58 85 54 7 4 +12537,15 53 53 16 17 10 7 8 +19823,1 6 31 47 48 72 54 7 8 +19357,1 6 57 9 16 42 16 17 37 52 7 4 +21021,1 12 16 36 37 38 37 48 52 13 +15943,1 6 84 31 32 13 +9934,5 6 65 88 9 16 17 37 108 48 52 7 8 +14202,1 6 31 47 48 72 54 7 4 +17622,1 6 53 53 49 50 54 54 7 4 +26373,1 6 92 55 56 13 +9933,5 6 65 88 9 16 17 37 108 48 52 7 4 +21622,1 6 26 34 35 7 4 +4714,5 6 51 36 37 19 13 +8648,1 6 34 36 37 10 7 8 +1457,1 6 26 34 35 7 8 +58,1 6 34 36 37 10 7 4 +19865,1 6 53 18 12 61 16 17 37 11 8 +17280,5 6 64 36 37 38 37 48 72 56 7 8 +26677,5 6 12 88 89 11 7 4 +6606,5 6 51 36 37 17 69 +12246,1 6 9 16 61 16 17 19 7 8 +1839,1 6 67 61 62 91 7 4 +6164,15 44 34 36 37 10 54 7 8 +1840,1 6 67 61 62 91 7 8 +25214,1 6 53 34 36 37 17 19 13 +17353,1 6 57 9 16 117 118 48 50 7 8 +25741,5 6 57 12 16 61 16 17 11 13 +752,5 6 12 88 89 11 7 8 +17279,5 6 64 36 37 38 37 48 72 56 7 4 +23632,1 6 55 12 55 88 55 56 56 11 8 +2006,15 44 31 36 37 17 63 7 4 +5999,5 6 57 12 16 61 16 17 11 8 +16271,1 6 57 9 16 117 118 48 50 7 4 +2005,15 44 31 36 37 17 63 7 8 +26359,15 31 47 48 52 7 8 +15103,1 6 53 9 10 87 58 54 54 7 4 +15102,1 6 53 9 10 87 58 54 54 7 8 +6165,15 44 34 36 37 10 54 7 4 +6369,1 2 16 17 37 68 7 8 +20852,1 6 71 117 16 39 36 16 17 19 7 4 +18185,5 6 57 12 16 17 37 52 54 7 8 +2195,1 6 12 11 89 13 +26360,15 31 47 48 52 7 4 +17883,15 9 36 16 17 63 7 8 +20245,1 6 53 9 16 61 16 17 10 54 54 7 8 +23997,5 6 57 9 16 36 16 17 37 52 54 7 8 +26735,15 34 36 37 38 62 10 7 4 +17884,15 9 36 16 17 63 7 4 +25462,15 34 36 37 38 62 10 7 8 +20115,5 6 57 12 16 17 37 52 54 7 4 +25917,1 6 55 53 57 12 11 58 7 8 +15938,1 6 84 9 16 17 63 7 8 +7171,1 6 53 12 61 16 17 69 +14542,39 36 39 36 39 36 16 36 16 17 37 48 7 8 +25027,1 6 84 9 16 17 63 7 4 +14541,39 36 39 36 39 36 16 36 16 17 37 48 7 4 +1018,1 6 64 36 16 61 16 17 11 8 +2219,1 6 71 61 62 63 7 4 +18504,5 6 57 9 16 17 75 54 7 4 +2220,1 6 71 61 62 63 7 8 +1037,1 6 18 12 16 17 37 68 7 8 +3110,5 6 88 88 57 58 89 13 +13942,1 6 49 47 47 36 37 38 17 19 13 +5449,1 6 64 36 16 61 16 17 11 13 +22098,15 53 57 58 58 54 54 7 8 +3936,1 6 53 51 47 36 37 17 10 54 7 8 +24175,5 6 84 12 16 16 17 17 3 4 +26719,5 6 84 12 16 16 17 17 3 8 +18460,5 6 64 36 16 117 118 10 7 4 +2413,15 53 16 17 54 54 7 4 +3927,1 6 53 51 47 36 37 17 10 54 7 4 +22097,15 53 57 58 58 54 54 7 4 +2414,15 53 16 17 54 54 7 8 +16698,5 6 51 107 108 35 7 4 +20295,15 53 9 9 16 36 16 17 37 50 54 7 4 +20294,15 53 9 9 16 36 16 17 37 50 54 7 8 +18607,1 6 55 88 88 88 12 9 16 17 11 8 +6861,5 6 57 34 47 36 37 38 37 35 7 8 +18608,1 6 55 88 88 88 12 9 16 17 11 13 +18461,5 6 64 36 16 117 118 10 7 8 +1616,15 12 11 11 7 8 +14881,5 6 12 65 88 88 9 16 17 91 7 8 +21878,5 6 49 47 48 48 52 7 8 +1671,15 12 11 11 7 4 +10764,1 6 12 57 9 16 17 63 7 8 +10765,1 6 12 57 9 16 17 63 7 4 +16697,5 6 51 107 108 35 7 8 +22944,5 6 53 12 16 61 16 17 11 7 4 +7261,1 2 16 17 37 68 7 4 +14880,5 6 12 65 88 88 9 16 17 91 7 4 +4684,96 36 37 38 37 35 11 8 +624,5 6 31 42 43 17 +16898,5 6 47 48 11 54 7 8 +15976,5 6 47 48 11 54 7 4 +10845,5 6 64 61 62 17 37 52 54 54 7 4 +7070,15 55 31 107 36 37 11 8 +12910,5 6 53 26 55 51 52 13 +7071,15 55 31 107 36 37 11 13 +15534,15 34 107 36 37 38 17 37 35 87 7 4 +17973,5 6 9 16 36 16 17 19 58 7 4 +26147,1 6 57 53 9 16 39 36 16 17 63 7 4 +17974,5 6 9 16 36 16 17 19 58 7 8 +13861,5 6 76 61 62 17 37 48 35 54 54 7 8 +26446,5 6 9 16 42 16 17 10 54 7 4 +6794,5 6 34 47 36 37 17 10 7 8 +22815,5 6 88 90 16 17 11 8 +26338,1 6 9 16 61 16 17 37 35 7 4 +7145,5 6 84 57 9 16 17 37 72 85 7 8 +16325,5 6 34 47 36 37 17 10 7 4 +4931,15 12 16 36 16 17 10 7 4 +19828,5 6 9 9 16 17 10 7 4 +16652,1 12 12 16 17 19 13 +24643,1 6 55 53 12 16 17 69 +4930,15 12 16 36 16 17 10 7 8 +15912,5 6 84 9 10 56 85 54 7 8 +15913,5 6 84 9 10 56 85 54 7 4 +1749,1 6 96 16 21 77 78 22 79 4 +26545,5 6 65 49 36 37 17 19 13 +7752,1 6 9 16 39 36 16 36 16 17 37 52 7 8 +19645,5 6 53 12 16 36 16 17 37 35 7 4 +7753,1 6 9 16 39 36 16 36 16 17 37 52 7 4 +16781,1 6 92 9 10 11 8 +19644,5 6 53 12 16 36 16 17 37 35 7 8 +3072,5 6 64 61 62 10 7 8 +16336,96 36 37 38 37 35 11 7 4 +3071,5 6 64 61 62 10 7 4 +23920,5 6 55 12 88 55 56 56 11 8 +23473,15 55 9 36 16 36 16 17 11 8 +26480,1 6 53 57 9 16 36 37 38 37 35 54 7 8 +23474,15 55 9 36 16 36 16 17 11 13 +18794,15 88 65 9 16 17 11 8 +26481,1 6 53 57 9 16 36 37 38 37 35 54 7 4 +4685,96 36 37 38 37 35 11 7 8 +24248,5 6 55 96 16 36 37 38 11 13 +18795,15 88 65 9 16 17 11 13 +20427,5 6 67 36 37 19 11 8 +9829,1 6 71 109 110 11 8 +4624,1 6 29 49 50 7 4 +18900,5 6 55 96 16 36 37 38 11 8 +15904,1 12 16 36 37 38 37 48 35 7 4 +26301,5 6 55 49 107 108 48 50 11 8 +23151,15 34 47 36 37 17 10 54 7 4 +8309,5 6 64 61 62 17 37 48 68 54 7 8 +17013,1 6 29 49 50 7 8 +15905,1 12 16 36 37 38 37 48 35 7 8 +5531,5 6 51 47 42 43 17 37 72 56 7 8 +8667,97 16 17 37 35 7 4 +12927,5 6 64 61 62 17 37 48 68 54 7 4 +21879,70 16 36 16 17 37 48 68 7 8 +5532,5 6 51 47 42 43 17 37 72 56 7 4 +16275,15 57 55 67 117 16 17 118 17 11 8 +15249,5 6 9 16 17 10 93 7 4 +16276,15 57 55 67 117 16 17 118 17 11 13 +15248,5 6 9 16 17 10 93 7 8 +1514,5 6 57 92 9 16 17 63 7 4 +15543,1 6 84 34 35 7 8 +20073,1 6 12 39 36 16 17 10 7 8 +23681,15 55 12 26 57 58 11 7 8 +2024,15 57 34 36 37 17 10 7 4 +21880,70 16 36 16 17 37 48 68 7 4 +19512,15 65 57 88 57 12 16 17 19 13 +1513,5 6 57 92 9 16 17 63 7 8 +2023,15 57 34 36 37 17 10 7 8 +3132,1 6 53 49 36 37 17 10 54 7 8 +14314,1 6 84 34 35 7 4 +23150,15 34 47 36 37 17 10 54 7 8 +2851,1 6 53 49 36 37 17 10 54 7 4 +19058,1 6 9 16 61 16 17 62 10 7 8 +18083,1 6 34 36 37 17 19 14 54 7 8 +23576,15 49 47 36 37 19 13 +5502,1 6 9 16 61 16 17 62 10 7 4 +7421,5 6 57 51 47 48 52 7 8 +10731,5 6 57 51 47 48 52 7 4 +18277,1 6 64 16 61 16 17 10 54 7 4 +18084,1 6 34 36 37 17 19 14 54 7 4 +20166,70 16 36 16 61 16 17 10 54 7 4 +23601,5 6 53 54 56 54 54 7 8 +15358,15 9 16 17 118 17 11 8 +20165,70 16 36 16 61 16 17 10 54 7 8 +23481,5 6 53 54 56 54 54 7 4 +15359,15 9 16 17 118 17 11 13 +14878,5 6 88 89 89 11 7 4 +11474,1 6 31 16 42 43 17 10 54 7 8 +25758,1 6 88 34 35 56 7 8 +11473,1 6 31 16 42 43 17 10 54 7 4 +14430,15 88 57 58 58 89 13 +25759,1 6 88 34 35 56 7 4 +22260,5 6 18 12 16 17 37 48 32 58 7 8 +393,15 12 16 17 74 7 4 +392,15 12 16 17 74 7 8 +2373,1 6 12 16 36 37 38 17 11 8 +139,15 49 47 36 37 17 59 +2374,1 6 12 16 36 37 38 17 11 13 +3395,15 57 9 36 16 61 16 17 11 8 +3396,15 57 9 36 16 61 16 17 11 13 +16648,1 6 57 88 88 9 16 42 16 17 19 7 8 +2223,5 6 88 57 9 16 61 16 17 19 7 8 +21040,1 12 16 36 37 38 37 48 35 11 8 +4344,1 6 51 114 115 115 52 7 4 +23265,5 6 86 9 16 17 63 54 7 8 +6406,15 44 31 47 48 32 11 7 8 +25275,5 6 65 12 11 7 8 +13039,15 44 31 47 48 32 11 7 4 +25274,5 6 65 12 11 7 4 +13907,1 12 36 16 17 37 48 72 7 8 +9382,5 6 53 9 9 16 17 69 +16893,1 6 53 88 9 16 17 11 13 +4343,1 6 51 114 115 115 52 7 8 +3533,5 6 18 12 16 17 37 48 32 58 7 4 +8821,1 6 47 36 37 10 7 4 +10094,5 6 64 61 62 17 37 48 50 7 4 +25272,15 12 16 61 16 17 11 7 8 +10093,5 6 64 61 62 17 37 48 50 7 8 +711,1 6 84 12 34 35 13 +20357,15 9 36 16 36 16 17 10 85 7 4 +14759,1 6 53 12 36 36 16 36 37 38 37 48 108 35 56 7 8 +20358,15 9 36 16 36 16 17 10 85 7 8 +8822,1 6 47 36 37 10 7 8 +1346,1 6 31 61 62 63 7 4 +13466,1 6 31 61 62 17 10 7 8 +16892,1 6 53 88 9 16 17 11 8 +1347,1 6 31 61 62 63 7 8 +8743,5 6 55 51 47 36 37 17 37 50 7 8 +14361,1 6 49 36 37 17 43 68 7 4 +16663,5 6 34 47 48 35 87 30 7 8 +8742,5 6 55 51 47 36 37 17 37 50 7 4 +14674,1 6 49 36 37 17 43 68 7 8 +11820,1 6 57 34 35 58 7 8 +18644,5 6 53 34 107 36 37 17 63 7 4 +4778,1 6 9 10 89 54 7 8 +11011,5 6 53 34 107 36 37 17 63 7 8 +11821,1 6 57 34 35 58 7 4 +4784,1 6 9 10 89 54 7 4 +2222,5 6 88 57 9 16 61 16 17 19 7 4 +16664,5 6 34 47 48 35 87 30 7 4 +18546,5 6 53 9 16 42 16 17 11 8 +1781,1 12 16 17 19 13 +251,5 6 31 32 13 +1127,1 6 12 31 32 11 8 +12474,1 6 9 16 39 36 16 61 16 17 37 10 7 4 +22992,5 6 12 65 71 36 37 17 11 8 +19376,1 6 9 16 39 36 16 61 16 17 37 10 7 8 +174,5 6 65 49 36 37 17 11 8 +21057,1 6 65 51 36 37 17 10 7 8 +17930,15 71 117 16 17 63 7 8 +1224,1 6 64 61 62 17 91 7 8 +11151,1 6 67 114 115 52 7 4 +1225,1 6 64 61 62 17 91 7 4 +19241,1 6 67 114 115 52 7 8 +6140,15 34 47 36 37 17 37 35 7 8 +12964,5 6 64 16 17 43 68 11 8 +6139,15 34 47 36 37 17 37 35 7 4 +14866,15 88 9 16 61 16 17 10 7 8 +14867,15 88 9 16 61 16 17 10 7 4 +7276,5 6 18 12 16 17 37 35 54 7 8 +7277,5 6 18 12 16 17 37 35 54 7 4 +1163,70 16 36 16 61 16 17 37 35 7 8 +18427,5 6 64 16 36 37 38 19 33 13 +24447,1 6 9 10 89 56 89 7 8 +1162,70 16 36 16 61 16 17 37 35 7 4 +24448,1 6 9 10 89 56 89 7 4 +8687,5 6 64 16 36 37 38 37 48 72 54 7 4 +8688,5 6 64 16 36 37 38 37 48 72 54 7 8 +9402,5 6 53 34 36 37 10 7 4 +10044,5 6 53 34 36 37 10 7 8 +17931,15 71 117 16 17 63 7 4 +8506,15 12 36 37 38 37 68 68 7 4 +17672,15 55 12 55 56 11 7 4 +22087,1 6 53 49 36 37 69 +21619,15 12 36 37 38 37 68 68 7 8 +24343,1 6 34 114 115 32 7 4 +24338,1 6 34 114 115 32 7 8 +11873,15 55 9 16 36 37 38 17 10 7 8 +13034,15 12 16 42 16 17 11 8 +11874,15 55 9 16 36 37 38 17 10 7 4 +14679,5 6 53 9 10 10 54 7 8 +18767,5 6 57 92 12 11 93 7 4 +23657,5 6 53 9 10 10 54 7 4 +22127,15 9 9 9 9 9 9 16 17 11 13 +18968,15 49 47 36 37 11 8 +273,1 6 9 16 17 62 10 7 4 +18969,15 49 47 36 37 11 13 +6275,15 88 12 26 9 16 17 11 8 +18768,5 6 57 92 12 11 93 7 8 +19024,1 6 34 117 16 17 19 7 4 +596,1 6 12 31 32 7 8 +21605,1 6 55 56 89 66 7 8 +22126,15 9 9 9 9 9 9 16 17 11 8 +26619,15 88 12 26 9 16 17 11 13 +1160,1 6 9 16 17 62 10 7 8 +595,1 6 12 31 32 7 4 +21838,5 6 31 42 43 17 37 115 72 54 7 4 +445,1 6 9 10 66 85 7 4 +24126,15 12 16 36 16 17 37 108 52 7 8 +10608,15 9 16 61 16 61 16 17 19 13 +14625,5 6 53 86 9 16 17 10 7 4 +16199,1 6 9 10 66 85 7 8 +13498,1 6 9 10 56 54 7 8 +15188,5 6 57 92 31 42 43 17 11 8 +10846,5 6 64 61 62 17 37 52 54 54 7 8 +4806,5 6 53 86 9 16 17 10 7 8 +4910,1 6 9 10 56 54 7 4 +9073,1 6 53 31 42 43 17 37 35 54 7 8 +2004,5 6 53 31 36 37 17 63 7 8 +8409,1 6 12 16 36 37 38 17 3 4 +5187,5 6 53 31 36 37 17 63 7 4 +5818,1 6 12 16 36 37 38 17 3 8 +15890,1 6 88 88 57 58 66 13 +22519,70 36 37 38 10 54 7 8 +21839,5 6 31 42 43 17 37 115 72 54 7 8 +14310,1 6 53 31 42 43 17 37 35 54 7 4 +9438,1 6 53 57 49 50 7 4 +22518,70 36 37 38 10 54 7 4 +12275,15 65 49 50 13 +17871,1 6 53 51 47 36 37 10 7 4 +11940,1 6 55 67 61 62 10 7 8 +12559,15 55 57 86 57 58 13 +14360,15 55 53 12 16 36 37 38 37 35 54 7 4 +14359,15 55 53 12 16 36 37 38 37 35 54 7 8 +8117,1 6 88 88 89 23 7 8 +12620,1 6 34 107 108 48 10 7 4 +26409,1 6 88 88 89 23 7 4 +4620,1 6 9 16 17 37 35 7 8 +25903,1 6 53 12 36 61 16 17 11 54 7 4 +64,1 6 9 16 17 37 35 7 4 +3147,1 6 53 53 54 56 7 4 +16019,5 6 12 16 36 16 17 37 48 35 7 8 +13667,15 9 16 42 16 17 37 35 54 7 8 +16981,15 34 36 37 38 17 19 89 11 8 +3148,1 6 53 53 54 56 7 8 +16018,5 6 12 16 36 16 17 37 48 35 7 4 +22414,5 6 53 12 36 37 17 37 35 7 8 +26058,5 6 12 67 47 48 68 11 7 4 +18179,5 6 53 12 36 37 17 37 35 7 4 +20578,15 55 12 55 56 89 56 7 4 +3490,1 6 51 61 62 10 7 4 +20579,15 55 12 55 56 89 56 7 8 +3489,1 6 51 61 62 10 7 8 +16681,1 6 57 12 16 21 77 78 22 79 4 +16100,1 6 51 52 93 7 8 +16088,1 6 51 52 93 7 4 +599,1 12 16 17 11 8 +12731,15 9 16 36 37 38 17 10 30 7 4 +26636,1 6 55 51 42 43 17 37 50 30 58 7 4 +5350,1 12 16 17 11 13 +12732,15 9 16 36 37 38 17 10 30 7 8 +13386,15 34 42 43 17 10 54 7 8 +17557,60 16 36 16 61 16 17 11 13 +2743,1 6 53 9 36 16 17 91 7 8 +25054,5 6 9 16 39 36 16 61 16 17 37 35 7 8 +13387,15 34 42 43 17 10 54 7 4 +13569,60 16 36 16 61 16 17 11 8 +10126,5 6 53 18 12 16 61 16 17 37 35 11 7 8 +13943,5 6 18 12 16 17 37 32 10 7 8 +26281,1 6 55 51 42 43 17 37 50 30 58 7 8 +16856,5 6 53 18 12 16 61 16 17 37 35 11 7 4 +20393,1 6 84 51 52 85 85 54 7 8 +23296,5 6 18 12 16 17 37 32 10 7 4 +7775,15 96 36 16 17 37 48 32 7 4 +21646,5 6 34 36 37 17 11 85 54 7 8 +2742,1 6 53 9 36 16 17 91 7 4 +5459,1 6 88 55 88 55 56 89 7 8 +4969,5 6 34 36 37 17 11 85 54 7 4 +13666,15 9 16 42 16 17 37 35 54 7 4 +20394,1 6 84 51 52 85 85 54 7 4 +8460,1 6 92 9 10 27 28 +14220,5 6 9 16 17 43 48 32 11 8 +23823,15 12 16 36 39 36 16 42 16 17 37 108 52 7 8 +7776,15 96 36 16 17 37 48 32 7 8 +2873,15 55 9 16 36 16 42 16 17 10 7 8 +26610,5 6 67 47 36 37 19 58 11 8 +2874,15 55 9 16 36 16 42 16 17 10 7 4 +10360,1 6 53 65 9 16 17 37 35 7 8 +10361,1 6 53 65 9 16 17 37 35 7 4 +1485,5 6 53 9 10 54 54 7 4 +21822,1 6 57 9 16 117 118 13 +1484,5 6 53 9 10 54 54 7 8 +17716,5 6 53 67 47 48 72 54 7 8 +26558,1 6 64 16 17 37 10 7 4 +9131,5 6 53 34 107 108 108 35 54 7 8 +15005,15 44 34 36 37 17 11 7 4 +23735,15 55 57 67 47 36 37 11 8 +24762,5 6 53 34 107 108 108 35 54 7 4 +23736,15 55 57 67 47 36 37 11 13 +10873,15 44 31 47 36 37 17 75 7 8 +17393,5 6 92 34 36 37 17 63 30 7 4 +6458,1 6 9 10 87 27 28 +10872,15 44 31 47 36 37 17 75 7 4 +17392,5 6 92 34 36 37 17 63 30 7 8 +1270,5 6 64 16 42 16 17 10 54 7 4 +676,5 6 53 9 10 54 7 4 +2265,5 6 64 16 42 16 17 10 54 7 8 +13523,5 6 64 16 39 36 16 42 16 17 19 7 8 +26769,15 96 36 37 38 17 37 10 7 8 +8873,15 53 64 36 37 38 37 35 54 7 4 +18701,1 6 9 16 17 37 35 11 8 +14299,1 12 39 36 16 21 77 78 22 79 4 +26768,15 96 36 37 38 17 37 10 7 4 +8872,15 53 64 36 37 38 37 35 54 7 8 +489,5 6 53 9 10 54 7 8 +13432,70 16 36 16 42 16 17 37 68 7 4 +3887,5 6 88 67 61 62 63 7 8 +13433,70 16 36 16 42 16 17 37 68 7 8 +13524,5 6 64 16 39 36 16 42 16 17 19 7 4 +22248,15 96 16 36 37 38 17 106 7 4 +17849,1 6 84 57 58 66 87 7 8 +26431,5 6 64 16 36 16 17 120 7 8 +15820,15 44 34 36 37 17 11 7 8 +17850,1 6 84 57 58 66 87 7 4 +3886,5 6 88 67 61 62 63 7 4 +26100,1 12 16 39 36 16 36 37 38 37 108 52 7 8 +14067,1 12 16 39 36 16 36 37 38 37 108 52 7 4 +3138,15 57 9 16 36 16 17 37 35 54 7 8 +3137,15 57 9 16 36 16 17 37 35 54 7 4 +25189,5 6 12 55 56 58 11 7 8 +15007,1 6 53 12 34 36 37 17 10 7 4 +21331,15 9 36 16 17 37 48 72 85 93 7 4 +16453,1 6 49 107 36 37 69 +19577,5 6 55 53 12 124 107 36 37 17 11 8 +10829,5 6 12 51 36 37 11 8 +21332,15 9 36 16 17 37 48 72 85 93 7 8 +16404,1 6 57 53 12 16 17 11 8 +22247,15 96 16 36 37 38 17 106 7 8 +6640,15 51 47 36 37 17 11 8 +19614,1 6 84 12 34 36 37 17 63 85 54 7 8 +6641,15 51 47 36 37 17 11 13 +2053,1 6 84 12 34 36 37 17 63 85 54 7 4 +3544,5 6 9 16 17 62 50 7 4 +18910,5 6 12 16 17 11 56 7 4 +18457,15 88 55 9 16 17 37 35 7 8 +2766,1 12 39 36 16 17 19 13 +10888,5 6 9 16 39 36 16 61 16 17 62 10 7 8 +17828,5 6 9 16 17 62 50 7 8 +1476,15 12 16 39 36 16 17 19 13 +18458,15 88 55 9 16 17 37 35 7 4 +646,15 34 36 37 17 63 7 4 +18683,5 6 12 16 17 11 56 7 8 +647,15 34 36 37 17 63 7 8 +4541,15 12 16 39 36 16 17 17 94 +26557,1 6 64 16 17 37 10 7 8 +14242,5 6 53 9 10 87 54 7 4 +20506,5 6 9 16 61 16 17 17 10 7 8 +10221,1 6 53 49 36 37 17 62 10 7 4 +12136,5 6 53 67 47 48 72 54 7 4 +14243,5 6 53 9 10 87 54 7 8 +7365,5 6 55 56 54 54 7 4 +10280,1 6 53 49 36 37 17 62 10 7 8 +1071,1 6 53 12 34 36 37 17 10 7 8 +7368,5 6 55 56 54 54 7 8 +15889,5 6 64 16 42 16 17 37 35 7 4 +13290,5 6 9 16 39 36 16 61 16 17 62 10 7 4 +4682,1 6 49 107 36 37 19 +24850,5 6 55 9 16 117 118 32 7 4 +1189,5 6 64 16 42 16 17 37 35 7 8 +5195,15 55 9 16 17 43 50 56 7 4 +2155,15 55 12 57 96 36 37 38 37 72 7 4 +26071,15 88 67 47 36 37 17 11 8 +21147,1 6 53 65 9 16 117 118 32 54 7 4 +22537,5 6 55 88 88 88 12 12 16 17 19 13 +2154,15 55 12 57 96 36 37 38 37 72 7 8 +14290,15 55 53 55 56 56 54 7 4 +26072,15 88 67 47 36 37 17 11 13 +14291,15 55 53 55 56 56 54 7 8 +25936,1 6 51 47 48 52 54 7 4 +756,1 6 18 12 16 17 11 13 +25935,1 6 51 47 48 52 54 7 8 +15237,1 6 53 65 9 16 117 118 32 54 7 8 +26279,1 6 88 55 9 16 17 37 35 87 7 8 +5194,15 55 9 16 17 43 50 56 7 8 +19180,5 6 64 61 62 17 37 48 35 54 7 4 +7556,1 6 9 16 17 10 54 7 4 +638,1 6 71 47 48 68 7 8 +16301,1 6 55 55 9 61 62 52 7 8 +9631,5 6 9 16 17 43 93 7 4 +25976,15 55 12 57 96 36 37 38 19 11 56 7 8 +9642,5 6 9 16 17 43 93 7 8 +20445,5 6 113 53 34 35 54 7 4 +23,1 6 18 12 16 17 11 8 +12478,15 44 9 16 39 36 16 17 19 7 8 +12371,5 6 9 16 21 77 78 22 79 4 +2083,15 55 12 57 96 36 37 38 19 11 56 7 4 +4607,1 6 34 36 37 17 63 30 7 4 +12479,15 44 9 16 39 36 16 17 19 7 4 +17509,5 6 64 16 42 16 17 43 52 58 13 +4606,1 6 34 36 37 17 63 30 7 8 +5738,1 6 12 65 66 89 13 +20885,1 12 11 89 11 7 8 +21790,1 6 55 55 9 61 62 52 7 4 +1004,5 6 64 61 62 17 37 48 35 54 7 8 +3450,1 6 9 16 17 10 54 7 8 +7700,1 6 88 89 11 7 8 +9366,5 6 55 67 42 43 17 37 50 54 7 8 +11166,1 6 88 89 11 7 4 +24185,1 2 16 17 37 68 58 54 7 4 +13057,5 6 12 31 47 36 37 17 11 8 +23462,1 2 16 17 37 68 58 54 7 8 +7092,5 6 65 51 61 62 63 7 8 +17004,1 6 29 34 35 93 7 8 +4219,15 55 55 51 61 62 63 7 4 +17390,1 6 29 34 35 93 7 4 +4220,15 55 55 51 61 62 63 7 8 +20782,1 6 57 67 68 56 7 8 +7098,5 6 65 51 61 62 63 7 4 +20783,1 6 57 67 68 56 7 4 +2234,1 6 71 47 48 68 7 4 +2600,5 6 53 18 12 16 17 37 108 50 54 7 8 +8559,1 6 9 16 17 54 54 7 4 +3923,5 6 53 71 47 48 52 54 7 4 +18193,5 6 53 9 16 36 16 17 91 7 8 +8558,1 6 9 16 17 54 54 7 8 +17035,5 6 67 47 47 42 43 17 11 13 +8280,5 6 12 88 26 65 66 89 13 +11250,15 53 34 47 48 35 54 7 4 +12396,15 55 51 61 62 10 7 8 +5455,5 6 53 18 12 16 17 37 108 50 54 7 4 +22593,5 6 53 71 47 48 52 54 7 8 +2749,1 6 55 71 72 13 +1560,1 6 9 10 58 58 89 13 +4801,1 6 53 65 66 13 +17034,5 6 67 47 47 42 43 17 11 8 +23727,5 6 57 92 18 12 16 17 10 7 8 +4977,15 53 34 47 48 35 54 7 8 +24604,5 6 65 88 12 16 17 19 13 +18192,5 6 53 9 16 36 16 17 91 7 4 +23728,5 6 57 92 18 12 16 17 10 7 4 +6466,15 49 36 37 17 11 66 7 8 +5123,15 49 36 37 17 11 66 7 4 +9859,1 6 53 53 12 36 37 17 10 7 4 +16566,1 6 12 55 56 11 7 8 +6092,5 6 29 12 16 17 10 7 8 +11570,1 6 12 26 9 16 17 10 7 8 +17988,15 96 36 16 17 19 33 13 +5247,5 6 29 12 16 17 10 7 4 +11571,1 6 12 26 9 16 17 10 7 4 +6955,5 6 53 119 16 61 16 17 43 50 7 4 +25051,5 6 84 12 16 21 77 101 102 103 +12395,15 55 51 61 62 10 7 4 +14391,5 6 57 55 56 89 7 8 +12905,5 6 53 34 35 27 54 7 8 +15645,5 6 55 53 12 61 16 17 11 13 +18318,15 67 47 42 43 17 106 7 4 +18319,15 67 47 42 43 17 106 7 8 +13733,5 6 57 55 56 89 7 4 +18351,1 6 86 65 66 13 +13546,5 6 12 51 36 37 19 13 +16160,15 12 34 36 37 10 7 8 +15644,5 6 55 53 12 61 16 17 11 8 +14686,95 16 36 37 38 17 11 8 +6055,15 12 16 39 36 16 17 11 8 +14687,95 16 36 37 38 17 11 13 +14595,1 6 119 16 42 16 17 91 7 4 +21594,15 67 114 115 35 87 7 4 +1917,15 55 53 55 56 89 54 7 8 +25076,1 45 21 22 17 37 48 35 11 7 4 +13176,1 6 31 47 48 32 93 7 8 +12189,1 12 39 36 16 17 11 8 +1918,15 55 53 55 56 89 54 7 4 +7757,1 6 49 36 37 17 37 50 7 4 +6773,5 6 51 36 37 69 +13177,1 6 31 47 48 32 93 7 4 +21593,15 67 114 115 35 87 7 8 +20311,15 12 16 17 37 68 7 8 +7758,1 6 49 36 37 17 37 50 7 8 +20310,15 12 16 17 37 68 7 4 +14596,1 6 119 16 42 16 17 91 7 8 +6056,15 12 16 39 36 16 17 11 13 +18821,1 6 71 47 48 68 11 8 +6884,5 6 57 57 57 12 11 7 8 +1499,5 6 57 57 57 12 11 7 4 +17558,5 6 53 12 16 17 98 +25929,1 6 64 16 36 37 38 17 11 13 +3230,1 6 71 47 36 37 10 54 7 4 +25294,1 6 64 16 39 36 16 17 62 10 7 4 +963,1 6 18 12 16 17 91 85 7 4 +15855,1 6 53 12 11 14 54 7 4 +9090,1 6 84 9 10 58 7 8 +962,1 6 18 12 16 17 91 85 7 8 +15535,5 6 12 34 36 37 10 7 4 +15856,1 6 53 12 11 14 54 7 8 +9089,1 6 84 9 10 58 7 4 +19195,1 6 9 16 36 37 38 17 43 50 56 7 4 +10315,15 44 49 47 48 52 7 8 +23678,25 26 27 11 56 7 8 +12101,1 12 16 36 37 38 37 72 7 4 +4416,5 6 12 16 17 19 14 54 7 8 +10275,1 12 16 36 37 38 37 72 7 8 +19639,1 6 31 42 43 17 37 48 32 7 8 +25321,15 73 16 42 16 17 37 35 7 8 +19638,1 6 31 42 43 17 37 48 32 7 4 +23690,15 34 36 37 38 17 19 89 27 28 +25322,15 73 16 42 16 17 37 35 7 4 +20937,5 6 64 61 62 11 7 8 +24099,5 6 64 61 62 11 7 4 +4417,5 6 12 16 17 19 14 54 7 4 +20171,1 6 64 36 16 61 16 17 37 32 7 4 +20172,1 6 64 36 16 61 16 17 37 32 7 8 +2945,5 6 64 16 61 16 17 19 13 +8442,5 6 31 47 48 35 7 4 +8441,5 6 31 47 48 35 7 8 +4617,5 6 34 16 17 63 7 4 +15204,1 6 18 12 16 17 19 13 +19260,1 6 53 12 39 36 61 16 17 11 13 +4445,5 6 53 18 12 16 17 91 7 4 +4919,5 6 57 9 16 17 37 35 54 7 4 +5479,1 6 88 55 57 9 16 17 10 7 4 +21475,5 6 64 36 37 38 37 48 68 93 58 7 4 +19259,1 6 53 12 39 36 61 16 17 11 8 +6472,5 6 53 18 12 16 17 91 7 8 +13003,5 6 57 9 16 17 37 35 54 7 8 +24220,5 6 64 36 37 38 37 48 68 93 58 7 8 +23519,1 6 109 9 61 16 17 19 7 4 +12048,1 6 109 9 61 16 17 19 7 8 +5651,15 57 26 34 35 58 7 4 +22998,15 55 88 34 35 58 7 4 +7194,15 26 65 66 7 4 +7193,15 26 65 66 7 8 +16701,1 6 47 48 108 52 7 8 +5650,15 57 26 34 35 58 7 8 +22997,15 55 88 34 35 58 7 8 +10314,15 44 49 47 48 52 7 4 +12019,5 6 55 9 16 36 16 17 11 8 +16700,1 6 47 48 108 52 7 4 +25293,1 6 64 16 39 36 16 17 62 10 7 8 +20645,1 6 9 16 36 16 61 16 17 37 7 4 +10501,1 6 64 16 117 118 68 11 7 8 +20542,5 6 84 71 107 108 68 85 54 7 8 +6331,1 6 55 12 57 55 9 16 36 37 38 17 37 108 35 7 8 +3009,15 55 9 16 42 16 17 19 7 8 +20543,5 6 84 71 107 108 68 85 54 7 4 +3010,15 55 9 16 42 16 17 19 7 4 +17776,1 6 12 9 16 17 37 35 7 8 +7359,1 6 12 9 16 17 37 35 7 4 +10568,1 6 57 34 47 48 32 7 4 +13068,1 6 31 42 43 17 37 48 32 11 8 +23874,5 6 53 26 55 34 36 37 17 37 115 50 54 7 4 +9970,5 6 88 55 57 53 31 32 13 +9011,15 57 88 89 66 7 8 +16297,1 6 57 57 57 12 16 17 11 8 +4393,5 6 119 16 42 16 17 37 35 7 8 +9010,15 57 88 89 66 7 4 +24292,1 6 96 36 37 38 17 11 8 +25962,1 6 57 34 47 48 32 7 8 +16298,1 6 57 57 57 12 16 17 11 13 +4176,1 6 18 12 16 17 37 54 7 8 +10408,25 26 27 66 56 7 8 +24788,1 6 86 88 88 57 57 86 87 7 4 +8904,1 6 53 57 9 16 61 16 17 37 35 7 4 +8903,1 6 53 57 9 16 61 16 17 37 35 7 8 +15737,5 6 55 55 67 68 7 4 +18690,1 6 64 16 42 16 17 43 17 37 35 54 7 8 +15736,5 6 55 55 67 68 7 8 +11417,1 6 64 16 42 16 17 43 17 37 35 54 7 4 +4224,1 6 18 12 16 17 37 54 7 4 +10409,25 26 27 66 56 7 4 +14509,1 6 47 48 11 8 +16355,5 6 55 88 89 66 7 4 +9912,5 6 55 88 89 66 7 8 +20973,5 6 53 12 16 17 69 +17904,5 6 53 57 51 36 37 17 10 54 7 8 +15424,5 6 92 9 16 17 75 7 4 +17905,5 6 53 57 51 36 37 17 10 54 7 4 +15425,5 6 92 9 16 17 75 7 8 +25444,5 6 53 12 9 61 61 61 16 17 37 35 7 4 +897,1 6 9 10 87 7 4 +22573,70 36 16 17 10 54 85 54 7 8 +21532,5 6 53 34 117 16 17 11 8 +7358,15 9 16 17 43 17 37 35 93 7 4 +22572,70 36 16 17 10 54 85 54 7 4 +6593,5 6 9 10 58 56 7 4 +466,1 6 9 10 87 7 8 +15023,1 6 84 57 12 11 58 85 7 8 +14133,1 6 88 88 9 16 61 16 17 19 7 4 +17684,1 6 57 92 34 36 37 17 10 7 4 +15024,1 6 84 57 12 11 58 85 7 4 +9766,1 6 84 57 71 72 13 +17683,1 6 57 92 34 36 37 17 10 7 8 +6538,5 6 31 42 43 17 3 8 +23227,1 6 34 36 37 17 91 7 8 +13818,1 6 53 31 36 37 75 7 4 +13819,1 6 53 31 36 37 75 7 8 +6537,5 6 31 42 43 17 3 4 +8657,1 6 34 36 37 17 91 7 4 +7899,5 6 9 10 58 56 7 8 +8430,15 44 49 47 36 37 69 +15367,5 6 119 16 42 16 17 62 10 7 4 +13027,5 6 119 16 42 16 17 62 10 7 8 +12960,1 12 16 39 36 16 17 63 7 8 +19746,5 6 73 39 36 16 17 19 7 8 +19747,5 6 73 39 36 16 17 19 7 4 +4531,1 6 12 9 16 17 62 10 7 4 +19526,5 6 64 16 17 37 50 54 7 4 +13812,5 6 64 16 61 16 17 11 13 +18707,1 6 12 65 57 9 16 17 43 72 7 4 +4391,5 6 34 36 37 17 63 7 8 +19527,5 6 64 16 17 37 50 54 7 8 +24574,5 6 76 16 36 16 17 11 8 +13811,5 6 64 16 61 16 17 11 8 +18776,5 6 86 9 16 17 43 32 54 7 8 +13128,1 6 53 18 12 16 17 37 48 50 7 4 +18772,5 6 86 9 16 17 43 32 54 7 4 +6166,5 6 64 53 9 36 37 38 17 10 54 7 8 +4390,5 6 34 36 37 17 63 7 4 +13127,1 6 53 18 12 16 17 37 48 50 7 8 +4532,1 6 12 9 16 17 62 10 7 8 +7008,1 6 53 9 16 36 16 17 10 54 7 4 +11340,5 6 64 53 9 36 37 38 17 10 54 7 4 +26597,15 9 16 17 43 17 43 35 54 7 4 +7007,1 6 53 9 16 36 16 17 10 54 7 8 +14134,1 6 88 88 9 16 61 16 17 19 7 8 +5967,1 6 64 61 62 17 37 35 87 54 7 8 +12765,1 6 53 57 9 16 61 16 17 62 10 7 8 +2238,15 57 58 89 7 8 +5968,1 6 64 61 62 17 37 35 87 54 7 4 +2239,15 57 58 89 7 4 +26733,1 6 64 61 62 17 37 52 93 7 8 +21195,1 6 55 12 55 56 11 56 7 8 +7970,15 12 36 37 38 43 32 54 7 8 +14138,1 6 107 107 36 37 63 7 4 +9927,5 6 88 67 107 36 37 11 8 +8241,5 6 57 92 9 16 36 16 17 37 68 93 58 7 4 +7971,15 12 36 37 38 43 32 54 7 4 +8397,1 6 107 107 36 37 63 7 8 +26732,1 6 64 61 62 17 37 52 93 7 4 +7312,5 6 53 64 36 37 38 37 11 8 +19808,1 6 55 12 55 56 11 56 7 4 +20809,1 6 12 36 16 21 77 78 22 79 4 +19165,1 6 105 16 61 16 17 10 7 8 +23220,5 6 64 16 36 16 17 37 108 35 54 7 8 +10247,5 6 12 65 57 9 16 17 63 7 8 +23219,5 6 64 16 36 16 17 37 108 35 54 7 4 +10246,5 6 12 65 57 9 16 17 63 7 4 +12907,1 6 53 55 56 27 28 +18519,5 6 51 47 107 108 35 54 7 8 +17929,5 6 71 117 16 17 63 7 8 +13452,15 12 57 58 11 8 +23426,1 6 105 16 61 16 17 10 7 4 +19154,1 6 84 67 36 37 17 10 7 4 +11562,15 55 86 87 13 +13244,1 6 88 57 53 49 36 37 17 10 7 4 +12456,15 96 16 36 16 36 16 17 10 7 4 +18146,15 57 53 31 107 42 43 17 91 54 7 8 +16392,1 6 88 57 53 49 36 37 17 10 7 8 +11024,15 55 53 53 54 56 7 4 +8894,15 12 36 37 38 37 72 85 54 7 4 +11025,15 55 53 53 54 56 7 8 +8893,15 12 36 37 38 37 72 85 54 7 8 +1114,15 53 67 68 54 7 8 +2978,15 55 12 55 56 89 56 11 8 +21387,1 6 51 61 62 37 48 52 7 8 +1115,15 53 67 68 54 7 4 +9928,5 6 88 67 107 36 37 11 13 +25302,1 6 88 57 9 16 36 16 17 37 72 7 8 +24959,5 6 53 31 47 36 37 17 37 35 54 7 4 +20769,1 6 84 67 36 37 17 10 7 8 +25144,5 6 53 31 47 36 37 17 37 35 54 7 8 +12457,15 96 16 36 16 36 16 17 10 7 8 +19968,1 12 36 37 38 17 43 68 7 8 +22349,5 6 57 53 49 36 37 17 10 54 7 8 +13103,15 9 36 37 38 37 68 7 4 +16521,5 6 57 53 49 36 37 17 10 54 7 4 +9635,1 6 96 36 16 42 16 17 19 7 4 +15784,5 6 90 91 89 87 7 4 +12746,1 6 64 16 61 62 17 37 52 30 7 4 +9636,1 6 96 36 16 42 16 17 19 7 8 +12863,15 55 57 53 34 36 37 17 11 8 +23338,1 6 64 16 61 62 17 37 52 30 7 8 +18142,15 57 53 90 16 17 10 54 7 4 +19822,5 6 88 12 16 39 36 16 17 19 13 +7323,5 6 92 34 35 93 7 8 +8683,15 53 34 36 37 10 7 8 +18143,15 57 53 90 16 17 10 54 7 8 +22850,1 12 36 37 38 17 43 68 7 4 +9795,5 6 84 57 71 36 37 17 10 85 7 4 +9621,5 6 92 34 35 93 7 4 +11350,5 6 92 57 9 16 36 37 38 17 10 93 7 4 +26459,5 6 84 57 71 36 37 17 10 85 7 8 +15044,1 6 51 52 58 54 7 4 +15785,5 6 90 91 89 87 7 8 +15045,1 6 51 52 58 54 7 8 +5572,5 6 9 16 36 16 17 37 50 85 54 7 8 +5571,5 6 9 16 36 16 17 37 50 85 54 7 4 +17731,1 6 64 16 36 37 38 17 11 8 +6975,1 6 53 90 91 54 54 7 4 +18406,1 6 26 88 89 7 8 +18407,1 6 26 88 89 7 4 +26621,5 6 57 9 16 42 16 17 10 54 85 54 7 4 +22354,15 55 53 31 42 43 17 37 35 54 54 7 8 +2731,1 6 57 92 9 10 93 58 7 8 +13411,1 6 16 53 12 36 16 17 37 72 7 4 +1509,1 6 57 92 9 10 93 58 7 4 +13410,1 6 16 53 12 36 16 17 37 72 7 8 +22886,1 6 53 90 91 54 54 7 8 +8996,1 6 86 57 9 39 36 16 17 10 7 8 +4323,5 6 31 42 43 17 11 8 +7585,5 6 31 42 43 17 11 13 +25600,5 6 88 51 47 36 37 17 11 13 +22896,1 6 53 71 47 48 32 7 4 +22895,1 6 53 71 47 48 32 7 8 +422,1 80 81 82 8 +12691,5 6 12 49 61 62 63 7 8 +11967,5 6 53 86 34 42 43 17 10 7 4 +3258,15 9 16 17 43 7 4 +10272,5 6 88 51 47 36 37 17 11 8 +10761,5 6 57 9 16 61 16 17 62 10 7 4 +20077,5 6 12 88 55 9 16 17 43 48 52 7 8 +20078,5 6 12 88 55 9 16 17 43 48 52 7 4 +14964,5 6 53 86 34 42 43 17 10 7 8 +3257,15 9 16 17 43 7 8 +11125,1 6 71 16 36 37 17 11 8 +1688,5 6 12 12 16 21 77 78 22 79 4 +21529,5 6 53 18 12 16 61 16 17 118 17 63 7 8 +13672,1 6 55 9 61 62 32 54 7 8 +26588,1 6 9 10 66 87 7 4 +25416,1 12 16 36 39 36 16 17 10 7 8 +22700,1 6 9 10 66 87 7 8 +6833,15 57 9 16 36 37 38 10 7 4 +12935,5 6 73 16 17 10 7 4 +26442,5 6 55 71 36 37 17 10 54 54 7 4 +3388,5 6 67 42 43 17 37 35 11 7 8 +6834,15 57 9 16 36 37 38 10 7 8 +18275,1 6 55 9 61 62 32 54 7 4 +874,1 6 18 12 16 17 43 72 7 4 +16033,15 12 11 56 54 7 8 +25260,5 6 49 47 36 37 10 54 7 8 +873,1 6 18 12 16 17 43 72 7 8 +16032,15 12 11 56 54 7 4 +13451,5 6 84 88 57 12 16 21 77 78 82 83 8 +25402,5 45 21 22 17 37 52 11 8 +16589,1 6 9 16 17 37 35 93 58 7 4 +19285,1 6 88 55 57 12 9 16 17 19 7 8 +140,1 6 57 58 13 +25508,5 6 53 51 47 48 72 54 85 7 8 +2001,1 6 53 9 10 58 7 4 +4320,5 6 9 10 14 7 4 +19286,1 6 88 55 57 12 9 16 17 19 7 4 +2000,1 6 53 9 10 58 7 8 +4321,5 6 9 10 14 7 8 +5952,1 6 12 36 37 38 11 8 +22381,1 6 9 16 17 37 35 93 58 7 8 +4745,1 6 12 12 16 17 11 8 +19972,15 44 34 36 37 10 85 54 7 8 +19973,15 44 34 36 37 10 85 54 7 4 +25646,70 36 37 38 37 35 7 4 +5256,5 6 29 9 16 17 43 7 4 +4746,1 6 12 12 16 17 11 13 +25647,70 36 37 38 37 35 7 8 +17589,1 6 64 61 16 17 106 7 8 +16328,1 6 64 16 61 16 17 62 10 7 4 +3531,1 6 31 47 47 36 37 10 7 8 +17588,1 6 64 61 16 17 106 7 4 +16329,1 6 64 16 61 16 17 62 10 7 8 +11768,15 44 34 36 37 17 10 7 4 +11973,1 6 64 61 62 17 37 35 54 54 7 4 +11767,15 44 34 36 37 17 10 7 8 +19028,15 12 39 36 16 36 16 42 16 17 11 8 +11974,1 6 64 61 62 17 37 35 54 54 7 8 +5953,1 6 12 36 37 38 11 13 +21913,1 6 57 9 36 37 38 37 35 54 7 4 +6231,5 6 88 96 36 16 17 19 11 8 +16237,1 6 96 16 36 16 21 77 78 22 79 4 +4704,1 6 57 67 68 7 8 +20888,1 6 64 16 117 118 72 11 89 11 8 +4701,1 6 57 67 68 7 4 +12255,1 6 57 9 36 37 38 37 35 54 7 8 +3532,1 6 31 47 47 36 37 10 7 4 +14562,5 6 71 72 56 66 7 4 +14563,5 6 71 72 56 66 7 8 +8269,5 6 57 58 66 11 8 +15323,1 6 53 31 47 48 32 54 7 8 +24032,1 6 9 10 11 87 7 4 +13007,1 6 53 31 47 48 32 54 7 4 +19544,5 6 57 9 16 61 16 17 37 35 7 4 +12931,15 57 58 89 27 28 +21784,5 6 86 34 36 37 91 7 4 +4573,1 6 53 54 87 7 4 +9413,1 6 53 55 56 7 4 +22980,5 6 57 12 11 58 85 7 8 +10047,15 57 9 36 37 38 37 48 72 54 7 8 +4743,5 45 21 22 17 37 52 7 4 +4726,5 45 21 22 17 37 52 7 8 +25711,5 6 57 12 11 58 85 7 4 +17547,5 6 65 9 16 17 37 52 7 4 +12120,5 6 51 42 43 17 63 7 8 +4581,1 6 53 54 87 7 8 +9412,1 6 53 55 56 7 8 +4757,5 6 57 58 66 7 8 +24485,5 6 76 61 62 17 37 32 54 54 7 4 +4476,15 55 65 34 107 36 37 11 8 +24486,5 6 76 61 62 17 37 32 54 54 7 8 +21955,1 6 64 16 61 16 17 37 35 11 8 +16713,5 6 76 61 62 17 62 72 7 8 +21973,1 6 26 12 65 9 16 17 37 52 52 7 8 +10046,15 57 9 36 37 38 37 48 72 54 7 4 +16712,5 6 76 61 62 17 62 72 7 4 +26697,5 6 73 16 17 62 10 7 8 +24510,5 6 36 37 17 91 7 4 +21656,1 6 53 12 39 36 16 61 16 17 37 35 7 4 +24511,5 6 36 37 17 91 7 8 +13612,1 6 53 12 39 36 16 61 16 17 37 35 7 8 +7444,1 6 9 10 58 89 56 89 7 8 +14312,5 6 57 55 86 57 9 16 17 11 8 +24271,1 6 57 9 16 17 43 48 52 7 4 +5216,1 12 36 16 17 10 7 4 +13102,15 9 16 36 16 61 16 17 37 7 4 +7483,1 6 57 9 16 17 43 48 52 7 8 +2665,5 6 84 88 55 56 89 85 7 8 +10449,5 6 76 16 36 37 38 37 35 54 54 7 8 +11439,15 9 16 36 16 61 16 17 37 7 8 +25407,15 12 16 39 36 16 61 16 17 37 35 7 8 +16583,5 6 57 92 34 35 13 +2664,5 6 84 88 55 56 89 85 7 4 +10450,5 6 76 16 36 37 38 37 35 54 54 7 4 +8193,5 6 55 12 36 37 38 11 8 +11300,1 6 9 10 58 89 56 89 7 4 +25406,15 12 16 39 36 16 61 16 17 37 35 7 4 +12846,1 6 18 12 16 17 43 13 +3305,15 55 88 57 58 13 +14942,15 88 26 65 9 16 17 10 85 7 8 +20634,5 6 55 12 36 37 38 11 13 +9280,1 12 36 16 17 10 7 8 +25720,15 65 71 61 62 75 7 8 +26791,1 6 88 55 56 93 7 8 +5869,15 55 53 51 52 13 +4477,15 55 65 34 107 36 37 11 13 +25721,15 65 71 61 62 75 7 4 +24520,1 6 51 47 109 110 13 +23114,5 6 86 88 57 57 86 87 7 8 +10354,15 57 53 31 32 54 7 8 +9025,5 6 86 88 57 57 86 87 7 4 +10353,15 57 53 31 32 54 7 4 +15378,5 6 57 58 66 7 4 +10825,15 65 26 51 61 62 63 7 8 +12075,5 6 51 42 43 17 63 7 4 +20352,5 6 84 71 36 37 10 85 7 8 +5312,1 6 64 16 42 16 21 77 78 22 79 4 +8350,5 6 71 72 89 27 28 +22203,1 12 11 58 89 89 23 7 4 +1582,25 26 27 58 7 4 +10826,15 65 26 51 61 62 63 7 4 +22872,5 6 53 9 16 36 16 17 37 72 7 8 +20646,1 6 9 16 36 16 61 16 17 37 7 8 +14019,5 6 53 9 16 36 16 17 37 72 7 4 +14605,5 6 57 88 89 58 13 +4140,1 6 31 32 89 7 4 +1583,25 26 27 58 7 8 +12568,5 6 73 16 17 10 7 8 +15412,15 96 16 36 16 61 16 17 10 7 4 +23687,1 6 26 88 89 11 8 +12468,1 6 53 51 36 37 38 17 10 7 4 +15411,15 96 16 36 16 61 16 17 10 7 8 +5362,1 6 92 12 11 93 7 8 +17526,5 6 55 65 66 7 4 +10980,5 6 57 9 16 17 69 +22954,5 6 64 61 62 37 123 11 8 +15041,1 6 92 12 11 93 7 4 +5894,5 6 53 55 9 16 17 63 7 4 +7606,1 6 84 49 36 39 36 16 17 37 52 85 7 8 +7335,5 6 92 34 36 37 10 7 4 +7603,1 6 84 49 36 39 36 16 17 37 52 85 7 4 +8712,1 6 64 16 61 16 17 37 35 7 4 +8713,1 6 64 16 61 16 17 37 35 7 8 +4210,5 6 64 42 16 17 74 7 4 +23922,15 55 12 88 55 56 56 11 56 7 4 +26,1 6 12 12 16 17 19 13 +4211,5 6 64 42 16 17 74 7 8 +8419,1 6 57 57 57 12 16 17 19 13 +7470,15 88 57 9 16 16 17 10 7 4 +6728,5 6 31 42 43 11 8 +7471,15 88 57 9 16 16 17 10 7 8 +7559,1 6 12 9 16 17 10 54 7 8 +3329,15 55 53 57 9 16 17 10 7 8 +23510,5 6 76 61 62 72 7 4 +3328,15 55 53 57 9 16 17 10 7 4 +23509,5 6 76 61 62 72 7 8 +3611,15 67 47 36 37 17 10 7 8 +3610,15 67 47 36 37 17 10 7 4 +23143,1 6 34 47 36 37 10 7 4 +7558,1 6 12 9 16 17 10 54 7 4 +20476,1 6 84 34 36 37 17 63 7 4 +5136,1 6 92 9 10 7 8 +21588,15 55 65 88 9 16 17 37 72 7 4 +11222,5 6 99 16 17 17 98 +12013,5 6 53 67 68 54 54 7 4 +5137,1 6 92 9 10 7 4 +24938,15 55 31 42 43 17 10 7 8 +24939,15 55 31 42 43 17 10 7 4 +15257,5 6 57 71 72 7 4 +24948,5 6 57 71 72 7 8 +3398,1 6 65 34 35 13 +22869,15 51 47 36 16 17 91 7 8 +21080,5 6 64 61 62 37 54 7 4 +19173,5 6 64 36 16 17 10 7 8 +13718,5 6 64 36 16 17 10 7 4 +6599,15 55 57 9 16 17 37 10 7 8 +10307,1 6 64 61 62 17 37 108 48 72 54 7 8 +8819,5 6 53 34 47 48 7 4 +18947,5 6 64 61 62 37 54 7 8 +4548,5 6 18 12 16 17 43 75 7 4 +4547,5 6 18 12 16 17 43 75 7 8 +341,70 16 39 36 16 42 16 17 37 35 7 4 +21010,5 6 31 47 47 36 37 17 11 8 +16010,5 6 49 107 36 37 17 10 7 4 +6600,15 55 57 9 16 17 37 10 7 4 +1835,15 55 65 88 9 16 17 11 8 +18771,5 6 86 9 16 42 16 17 10 7 4 +18770,5 6 86 9 16 42 16 17 10 7 8 +11066,5 6 12 9 16 17 10 54 7 8 +15753,1 6 64 61 62 37 48 35 87 7 4 +2692,1 81 77 78 82 8 +7557,5 6 12 9 16 17 10 54 7 4 +15138,5 6 53 55 9 16 17 37 52 7 8 +12044,1 6 53 12 109 110 7 4 +13599,5 6 55 88 34 35 56 7 4 +15139,5 6 53 55 9 16 17 37 52 7 4 +12043,1 6 53 12 109 110 7 8 +3836,5 6 53 16 16 17 10 7 8 +13787,5 6 9 16 36 37 38 37 10 7 8 +15747,5 6 86 34 47 36 37 17 11 8 +25342,5 6 84 53 9 10 11 8 +16067,5 6 88 55 56 89 7 8 +2691,1 81 77 78 82 111 +9722,1 6 12 9 16 17 37 32 7 8 +17210,1 6 12 9 16 17 37 32 7 4 +1522,5 6 53 18 12 31 32 7 8 +7318,15 53 64 36 37 38 37 35 11 93 7 8 +8730,15 12 16 39 36 16 17 10 7 4 +12135,5 6 53 18 12 31 32 7 4 +7827,15 53 64 36 37 38 37 35 11 93 7 4 +18227,15 51 47 36 16 17 91 7 4 +8729,15 12 16 39 36 16 17 10 7 8 +3962,5 6 64 36 16 17 10 85 54 7 4 +3545,15 9 16 17 62 50 7 4 +3961,5 6 64 36 16 17 10 85 54 7 8 +5922,70 36 16 17 37 11 8 +10049,15 57 9 36 37 38 37 35 54 7 8 +19781,5 6 57 92 12 16 61 16 17 11 13 +3024,5 6 55 67 36 37 17 10 54 7 8 +10050,15 57 9 36 37 38 37 35 54 7 4 +12949,5 6 57 92 12 16 61 16 17 11 8 +25419,5 6 65 9 16 17 37 50 7 4 +15386,15 9 39 36 16 61 16 61 16 17 11 8 +11128,5 6 55 67 36 37 17 10 54 7 4 +3546,15 9 16 17 62 50 7 8 +23011,1 6 53 9 10 58 89 13 +26347,15 55 88 57 58 89 7 4 +15387,15 9 39 36 16 61 16 61 16 17 11 7 8 +14406,15 12 36 37 38 37 50 7 8 +14407,15 12 36 37 38 37 50 7 4 +8231,5 6 67 36 37 17 10 7 8 +26346,15 55 88 57 58 89 7 8 +19859,15 9 39 36 16 61 16 61 16 17 11 7 4 +23884,1 6 67 47 36 37 91 7 8 +1570,5 6 67 36 37 17 10 7 4 +20975,5 6 64 16 36 16 17 37 48 7 8 +23165,1 6 57 57 29 30 7 4 +22535,15 12 11 11 89 7 8 +25350,1 6 57 57 29 30 7 8 +939,1 6 84 71 36 37 17 63 85 7 8 +13304,1 6 84 71 36 37 17 63 85 7 4 +946,1 6 84 71 36 37 17 74 85 7 4 +342,70 16 39 36 16 42 16 17 37 35 7 8 +6441,1 6 88 88 9 16 17 10 7 4 +4096,1 6 88 88 9 16 17 10 7 8 +24456,1 6 55 55 67 47 36 37 17 11 8 +19796,1 6 34 47 36 37 11 13 +7656,5 6 67 36 37 17 11 13 +5538,1 6 34 47 36 37 11 8 +26518,15 49 42 43 17 37 35 87 7 8 +26519,15 49 42 43 17 37 35 87 7 4 +943,1 6 84 71 36 37 17 74 85 7 8 +6388,5 6 53 55 57 9 16 36 37 38 17 19 33 13 +7795,1 6 64 36 16 61 16 17 37 35 7 4 +3422,5 6 67 36 37 17 11 8 +7794,1 6 64 36 16 61 16 17 37 35 7 8 +14192,5 6 53 57 9 16 61 16 17 10 93 7 4 +6456,1 6 26 86 87 13 +14191,5 6 53 57 9 16 61 16 17 10 93 7 8 +18834,1 6 65 9 16 42 16 17 62 10 7 8 +3474,5 6 90 16 17 63 7 8 +654,95 16 36 37 38 17 37 35 7 8 +10876,1 6 86 9 16 17 37 32 54 7 4 +3475,5 6 90 16 17 63 7 4 +653,95 16 36 37 38 17 37 35 7 4 +23950,1 6 57 34 35 54 54 7 4 +25572,5 6 55 88 88 57 58 89 56 7 4 +4539,1 12 16 39 36 16 17 98 +9372,5 6 64 61 62 17 37 72 54 7 8 +11600,1 12 9 31 42 43 17 11 8 +20177,5 6 55 88 88 57 58 89 56 7 8 +25795,15 12 16 36 16 36 16 61 16 17 37 35 7 4 +18754,5 6 55 55 51 47 36 37 17 11 13 +19784,1 6 73 74 89 7 4 +20561,5 6 53 53 34 36 37 17 10 7 4 +25799,1 6 29 34 35 33 13 +1456,1 6 9 10 56 89 89 7 8 +14986,1 6 9 10 56 89 89 7 4 +15671,1 6 26 9 16 21 77 78 22 8 +22333,15 34 109 110 58 11 8 +11016,1 12 31 32 7 4 +18753,5 6 55 55 51 47 36 37 17 11 8 +11015,1 12 31 32 7 8 +15325,5 6 53 31 47 48 48 32 54 7 4 +15326,5 6 53 31 47 48 48 32 54 7 8 +20871,1 6 105 61 16 17 106 7 4 +7552,1 6 65 57 121 9 16 17 62 10 7 4 +8008,5 6 84 57 34 47 48 32 85 54 7 8 +1785,1 6 53 57 58 56 13 +7551,1 6 65 57 121 9 16 17 62 10 7 8 +8007,5 6 84 57 34 47 48 32 85 54 7 4 +17185,1 6 88 34 35 58 7 4 +8997,15 86 57 9 39 36 16 17 10 7 8 +19363,1 6 55 53 57 9 16 61 16 17 10 7 8 +103,5 6 9 10 11 7 4 +8750,1 12 16 39 36 16 17 19 +10426,5 6 9 16 17 10 54 54 7 8 +8998,15 86 57 9 39 36 16 17 10 7 4 +104,5 6 9 10 11 7 8 +10121,1 6 55 9 16 17 43 32 54 7 8 +15025,1 6 84 57 12 16 17 19 13 +17186,1 6 88 34 35 58 7 8 +21116,15 34 36 37 17 37 50 7 8 +10875,1 6 86 9 16 17 37 32 54 7 8 +24770,5 6 55 88 57 9 16 36 16 17 37 50 7 4 +21117,15 34 36 37 17 37 50 7 4 +7034,5 6 31 42 43 17 63 85 54 7 4 +6502,15 31 36 37 17 11 54 7 8 +15311,5 6 31 42 43 17 63 85 54 7 8 +20320,15 49 47 36 37 19 11 8 +17725,5 6 57 9 36 37 38 37 35 7 8 +25029,5 6 9 10 56 54 54 7 8 +20812,15 31 36 37 17 11 54 7 4 +9292,1 6 9 16 36 16 61 16 17 10 54 7 8 +15134,5 6 9 10 56 54 54 7 4 +24267,5 6 67 117 16 17 37 35 7 8 +16921,15 65 57 71 47 48 72 7 4 +18383,1 6 9 16 36 16 61 16 17 10 54 7 4 +10507,5 6 67 117 16 17 37 35 7 4 +6744,1 6 31 42 43 17 37 48 35 7 8 +16922,15 65 57 71 47 48 72 7 8 +24473,1 6 51 42 43 17 37 35 87 7 4 +11866,5 6 9 16 17 10 54 54 7 4 +17724,5 6 57 9 36 37 38 37 35 7 4 +24472,1 6 51 42 43 17 37 35 87 7 8 +974,15 73 16 36 16 17 11 8 +9548,1 6 88 57 9 16 17 43 72 7 8 +25031,1 6 67 47 42 43 17 10 7 8 +9052,1 6 53 88 57 58 54 7 4 +2483,5 6 57 92 71 72 7 8 +5856,1 6 57 57 57 9 16 17 10 7 8 +23717,1 6 73 74 89 11 8 +15140,1 6 67 47 42 43 17 10 7 4 +8913,1 6 53 88 57 58 54 7 8 +298,1 6 57 57 57 9 16 17 10 7 4 +8229,5 6 57 92 71 72 7 4 +11433,5 6 84 64 16 17 10 7 4 +11432,5 6 84 64 16 17 10 7 8 +22035,15 55 12 12 16 17 19 13 +19030,15 96 16 36 16 42 16 17 11 13 +1980,5 6 55 53 55 56 54 7 8 +975,15 73 16 36 16 17 11 13 +13970,1 6 57 65 57 65 66 13 +23699,1 6 84 71 36 37 10 85 7 4 +20859,15 12 36 37 38 37 48 72 7 4 +908,1 6 71 36 37 17 100 7 8 +20860,15 12 36 37 38 37 48 72 7 8 +1939,5 6 84 51 52 85 54 7 8 +14146,15 9 16 17 43 11 8 +19029,15 96 16 36 16 42 16 17 11 8 +1940,5 6 84 51 52 85 54 7 4 +7029,5 6 84 53 9 10 7 8 +1112,5 6 64 61 62 17 37 50 54 7 8 +8244,1 6 41 88 89 56 7 4 +7030,5 6 84 53 9 10 7 4 +14147,15 9 16 17 43 11 13 +18744,1 6 41 88 89 56 7 8 +23603,5 6 53 12 34 36 37 63 54 7 4 +9549,1 6 88 57 9 16 17 43 72 7 4 +1111,5 6 64 61 62 17 37 50 54 7 4 +5210,5 6 67 36 37 17 3 4 +1993,1 6 67 42 43 17 63 7 4 +5640,15 57 53 9 10 54 7 8 +8932,1 6 18 12 16 17 62 32 7 4 +5211,5 6 67 36 37 17 3 8 +7631,5 6 9 10 11 11 8 +12078,1 6 67 42 43 17 63 7 8 +26002,15 31 47 107 36 37 17 19 13 +5639,15 57 53 9 10 54 7 4 +8708,1 6 18 12 16 17 62 32 7 8 +3941,5 6 64 61 62 17 37 72 54 7 4 +2449,5 6 71 72 89 7 8 +2448,5 6 71 72 89 7 4 +8134,5 6 65 9 16 61 16 17 11 8 +12467,1 6 34 47 36 37 19 13 +17632,1 6 53 18 12 34 35 33 13 +26562,5 6 53 49 61 62 63 7 4 +8547,1 6 34 47 36 37 17 69 +3440,1 6 18 12 16 42 16 17 37 108 50 7 4 +8630,15 9 16 17 37 35 87 7 8 +26188,15 55 51 36 37 17 10 54 7 8 +8631,15 9 16 17 37 35 87 7 4 +21235,5 6 73 16 39 36 16 17 19 7 8 +21181,1 6 9 36 37 17 37 32 7 4 +8674,5 6 55 9 16 36 37 38 10 7 4 +26189,15 55 51 36 37 17 10 54 7 4 +3441,1 6 18 12 16 42 16 17 37 108 50 7 8 +21378,15 88 9 36 37 38 37 50 7 8 +25630,1 6 57 9 16 17 91 7 8 +18751,15 51 47 48 52 56 89 7 8 +16146,1 6 9 36 37 17 37 32 7 8 +21377,15 88 9 36 37 38 37 50 7 4 +25644,5 6 53 9 10 56 7 8 +3384,1 6 53 12 34 36 37 17 10 54 7 8 +11014,15 31 42 43 17 37 108 35 54 7 8 +25404,5 6 53 9 10 56 7 4 +19606,1 6 26 92 84 85 7 4 +23548,1 6 53 67 42 43 17 10 54 7 4 +23711,1 6 49 47 36 16 17 19 13 +14203,5 6 31 47 48 72 54 7 4 +19012,1 6 92 9 16 17 100 7 8 +25217,15 55 53 9 61 16 61 16 17 19 13 +19605,1 6 26 92 84 85 7 8 +22431,15 9 16 17 43 93 7 4 +14204,5 6 31 47 48 72 54 7 8 +7966,1 6 53 12 34 36 37 17 10 54 7 4 +14475,5 6 9 16 36 16 17 37 108 50 7 8 +23777,5 6 55 53 57 9 16 17 37 50 54 7 4 +11013,15 31 42 43 17 37 108 35 54 7 4 +20940,1 6 49 42 43 17 10 54 7 8 +22430,15 9 16 17 43 93 7 8 +6743,15 9 36 16 17 11 13 +7094,15 65 51 61 62 63 7 4 +4903,5 6 55 12 16 36 16 17 37 35 7 4 +14005,1 6 12 36 37 17 63 7 4 +24769,5 6 9 16 36 16 17 37 108 50 7 4 +6948,1 6 49 42 43 17 10 54 7 4 +24286,1 6 53 71 42 43 17 3 4 +7093,15 65 51 61 62 63 7 8 +11219,1 6 92 9 16 17 100 7 4 +14006,1 6 12 36 37 17 63 7 8 +8494,15 57 55 67 61 62 63 7 4 +6742,15 9 36 16 17 11 8 +8495,15 57 55 67 61 62 63 7 8 +26231,15 65 31 42 43 17 37 35 66 7 4 +20440,15 12 16 36 39 36 16 17 19 13 +13991,15 9 16 17 10 93 7 8 +9819,5 45 21 22 17 37 48 50 58 7 4 +8709,5 6 18 12 16 17 62 32 7 8 +9820,5 45 21 22 17 37 48 50 58 7 8 +16050,5 6 55 57 9 16 36 16 17 37 72 85 7 8 +9975,60 16 36 16 61 16 17 63 7 8 +24613,1 6 26 65 9 16 17 11 8 +13992,15 9 16 17 10 93 7 4 +725,15 88 89 7 8 +5969,5 6 9 16 17 62 52 7 4 +25639,5 6 92 9 61 62 32 7 8 +9226,5 6 9 16 17 62 52 7 8 +9976,60 16 36 16 61 16 17 63 7 4 +10522,15 55 9 16 36 16 61 16 17 11 7 8 +8710,5 6 18 12 16 17 62 32 7 4 +1787,1 6 53 67 47 36 37 17 10 54 7 8 +726,15 88 89 7 4 +20582,15 55 9 16 36 16 61 16 17 11 7 4 +23609,15 57 12 16 17 69 +17657,1 6 119 36 16 17 10 7 8 +5053,1 6 53 57 9 16 17 11 8 +13656,1 6 65 9 16 42 16 17 37 35 7 4 +12807,15 86 34 47 48 7 8 +16867,15 86 34 47 48 7 4 +15082,1 6 53 53 54 56 89 7 4 +14609,5 6 53 9 10 89 58 7 4 +15083,1 6 53 53 54 56 89 7 8 +14434,5 2 16 17 10 85 7 8 +11662,5 6 34 36 37 17 62 68 7 4 +9409,1 6 9 10 89 33 13 +21695,5 6 55 56 56 58 7 4 +953,5 2 16 17 10 85 7 4 +20090,15 9 16 36 16 61 16 36 37 38 17 62 10 7 4 +20091,15 9 16 36 16 61 16 36 37 38 17 62 10 7 8 +24497,15 12 16 36 16 17 37 48 72 7 4 +983,1 12 9 31 32 13 +22549,5 6 12 71 117 16 17 11 8 +24498,15 12 16 36 16 17 37 48 72 7 8 +18639,5 6 12 16 17 37 72 7 4 +18640,5 6 12 16 17 37 72 7 8 +12226,5 6 64 61 62 10 93 58 7 8 +11097,1 6 88 55 57 65 71 47 48 68 7 4 +10952,1 6 65 57 57 9 39 36 16 17 19 13 +12813,15 31 47 107 36 37 17 11 8 +22143,1 6 88 55 57 65 71 47 48 68 7 8 +12814,15 31 47 107 36 37 17 11 13 +12225,5 6 64 61 62 10 93 58 7 4 +26299,5 6 55 49 47 48 32 7 8 +26298,5 6 55 49 47 48 32 7 4 +16562,15 88 57 57 9 36 16 17 37 50 7 4 +25911,1 12 31 31 32 13 +16561,15 88 57 57 9 36 16 17 37 50 7 8 +11246,5 6 55 9 16 36 37 38 10 7 8 +14810,1 6 92 55 56 87 93 7 4 +13021,1 6 88 51 47 36 37 17 11 8 +14809,1 6 92 55 56 87 93 7 8 +26387,5 6 57 31 47 48 48 32 7 4 +6295,1 6 9 36 16 17 63 7 8 +25636,15 9 16 17 43 35 13 +15872,1 6 9 36 16 17 63 7 4 +4098,5 6 88 88 9 16 17 10 7 4 +7842,5 6 53 64 36 37 38 63 54 7 8 +10417,1 6 34 47 48 48 72 7 8 +10418,1 6 34 47 48 48 72 7 4 +7864,1 6 64 61 62 37 108 35 54 7 4 +7863,1 6 64 61 62 37 108 35 54 7 8 +6257,1 6 9 10 89 27 13 +22339,1 6 34 109 110 13 +21705,15 53 54 35 7 4 +21704,15 53 54 35 7 8 +22184,1 6 12 26 9 16 17 62 10 7 8 +5744,1 6 9 10 89 27 28 +9051,5 6 12 16 61 16 17 62 10 7 8 +7822,5 6 53 64 36 37 38 63 54 7 4 +9050,5 6 12 16 61 16 17 62 10 7 4 +15731,5 6 51 52 58 66 58 7 8 +7673,1 6 47 48 35 7 4 +3109,15 88 89 66 89 7 8 +11857,1 6 47 48 35 7 8 +17786,15 88 89 66 89 7 4 +9006,1 12 16 21 77 78 22 79 4 +4546,1 6 18 12 16 17 43 75 7 8 +22660,5 6 29 9 16 17 62 10 7 4 +15253,1 12 9 16 61 16 17 11 93 7 4 +15730,5 6 51 52 58 66 58 7 4 +22661,5 6 29 9 16 17 62 10 7 8 +20685,1 12 16 36 37 38 37 115 68 89 13 +12601,1 6 92 55 56 10 93 7 4 +16216,5 6 55 9 16 36 16 17 37 72 7 4 +19483,1 6 53 31 36 37 17 91 54 7 4 +24559,15 86 9 16 17 37 48 52 7 4 +15317,15 12 16 36 39 36 16 17 11 8 +26331,1 6 53 31 36 37 17 91 54 7 8 +24558,15 86 9 16 17 37 48 52 7 8 +25460,1 6 124 36 37 17 10 7 8 +11933,1 6 84 67 47 48 72 85 54 7 8 +11799,5 6 64 16 39 36 16 42 16 17 11 8 +12600,1 6 92 55 56 10 93 7 8 +11936,1 6 84 67 47 48 72 85 54 7 4 +21138,1 6 88 51 51 36 37 11 8 +19316,5 6 90 39 36 16 61 16 17 19 13 +10108,1 6 124 36 37 17 10 7 4 +362,1 6 53 67 68 13 +15318,15 12 16 36 39 36 16 17 11 13 +19304,15 57 57 9 16 17 10 7 8 +19303,15 57 57 9 16 17 10 7 4 +17732,5 6 64 16 36 37 38 17 11 8 +6652,5 6 51 47 48 50 7 4 +6653,5 6 51 47 48 50 7 8 +25457,1 6 9 16 36 16 17 37 48 32 7 8 +3588,1 6 9 16 36 16 17 37 48 32 7 4 +17335,1 6 57 57 57 12 11 66 27 58 7 4 +21166,1 6 26 9 16 17 11 7 4 +7895,1 6 12 26 9 16 17 62 10 7 4 +11067,1 6 26 9 16 17 11 7 8 +25018,15 86 34 36 37 19 66 7 8 +7360,5 6 12 9 16 17 37 35 7 4 +21454,1 6 57 57 57 12 11 66 27 58 7 8 +4097,5 6 88 88 9 16 17 10 7 8 +7361,5 6 12 9 16 17 37 35 7 8 +6108,1 6 9 16 36 37 38 17 10 30 7 4 +20695,1 6 53 18 12 16 36 37 38 17 10 7 8 +23259,1 6 53 67 47 36 37 17 10 54 7 4 +21592,5 6 67 114 115 35 87 7 8 +4587,1 6 86 53 12 11 54 7 4 +6107,1 6 9 16 36 37 38 17 10 30 7 8 +7247,1 6 18 12 16 17 43 32 10 54 7 4 +17592,5 6 105 16 17 19 7 8 +15192,1 6 41 9 16 17 11 8 +20694,1 6 53 18 12 16 36 37 38 17 10 7 4 +17591,5 6 105 16 17 19 7 4 +23478,5 6 12 65 88 9 16 17 10 7 4 +12829,5 6 84 34 35 13 +7951,25 26 27 11 58 7 8 +18588,5 6 76 16 42 16 17 69 +11542,25 26 27 11 58 7 4 +3912,5 6 9 10 58 66 11 7 8 +4584,1 6 86 53 12 11 54 7 8 +8157,5 6 12 16 17 98 +16066,5 6 88 55 56 89 7 4 +17733,5 6 64 16 36 37 38 17 11 13 +18940,16 21 77 78 22 8 +8573,1 6 53 53 54 58 7 4 +11141,5 6 64 92 42 16 17 43 32 93 7 4 +18803,1 6 64 61 62 17 11 85 54 7 4 +8572,1 6 53 53 54 58 7 8 +12345,5 6 64 92 42 16 17 43 32 93 7 8 +15306,1 6 64 61 62 17 11 85 54 7 8 +6797,1 6 64 61 62 17 37 48 35 87 7 8 +8084,5 6 57 92 51 52 93 58 7 8 +8083,5 6 57 92 51 52 93 58 7 4 +10706,5 6 55 57 12 16 21 77 78 22 79 4 +10820,5 6 12 16 17 19 +17094,15 65 31 42 43 17 37 35 66 7 8 +15128,5 6 67 42 43 17 43 68 7 4 +22232,1 12 16 36 37 38 17 10 7 8 +9308,1 6 18 12 16 17 43 75 7 4 +25986,15 55 12 55 57 96 36 37 38 19 58 11 56 7 4 +19307,15 86 26 9 16 17 10 54 7 4 +16005,1 6 76 16 42 16 17 37 52 7 4 +25990,15 55 12 55 57 96 36 37 38 19 58 11 56 7 8 +19306,15 86 26 9 16 17 10 54 7 8 +23641,5 6 12 57 58 89 58 66 56 7 4 +13705,5 6 67 42 43 17 43 68 7 8 +21564,5 6 12 16 17 17 +11463,5 6 64 92 16 17 10 7 8 +18877,1 6 65 57 57 9 39 36 16 17 11 13 +11462,5 6 64 92 16 17 10 7 4 +16006,1 6 76 16 42 16 17 37 52 7 8 +18876,1 6 65 57 57 9 39 36 16 17 11 8 +23418,1 6 12 65 26 9 16 17 10 7 8 +22142,1 6 49 47 48 52 54 7 8 +22139,1 6 49 47 48 52 54 7 4 +23750,5 45 21 22 17 19 11 8 +4858,5 6 12 9 16 17 62 10 7 8 +14797,5 6 9 10 58 66 11 7 4 +4530,5 6 12 9 16 17 62 10 7 4 +10710,5 6 12 65 88 9 16 17 10 7 8 +6483,5 6 53 73 74 56 58 13 +22756,5 6 12 57 58 89 58 66 56 7 8 +204,5 6 12 16 17 69 +7164,5 6 53 71 47 48 72 7 8 +7163,5 6 53 71 47 48 72 7 4 +23682,5 6 67 36 37 17 19 13 +1708,15 88 89 11 8 +18760,1 6 92 12 11 93 58 7 8 +25438,1 6 57 55 71 47 48 52 7 8 +15630,1 6 55 53 9 16 61 16 17 10 54 54 7 4 +17223,5 6 64 61 62 37 48 123 54 7 4 +258,15 67 47 48 68 11 8 +12187,5 6 64 16 42 16 17 37 50 11 58 7 8 +14338,5 6 84 12 9 16 17 10 7 4 +3512,5 6 53 53 18 12 61 16 17 62 10 7 8 +14337,5 6 84 12 9 16 17 10 7 8 +13289,5 6 53 55 9 16 17 37 48 68 7 4 +9428,5 6 53 55 9 16 17 37 48 68 7 8 +14033,15 57 9 16 17 37 48 35 7 8 +23061,5 6 88 9 16 39 36 16 17 19 7 8 +14034,15 57 9 16 17 37 48 35 7 4 +23060,5 6 88 9 16 39 36 16 17 19 7 4 +19351,5 6 96 16 36 16 17 10 7 4 +3465,1 6 67 36 37 17 118 17 10 7 8 +25369,5 6 12 12 16 36 37 38 37 48 35 11 7 4 +17294,1 6 53 41 65 9 16 17 11 8 +1157,1 12 36 37 38 11 8 +14533,1 6 124 36 37 17 37 48 123 7 4 +17889,15 12 36 37 38 17 37 52 54 7 8 +23118,15 9 16 17 19 +14534,1 6 124 36 37 17 37 48 123 7 8 +26106,5 6 12 12 16 36 37 38 37 48 35 11 7 8 +17890,15 12 36 37 38 17 37 52 54 7 4 +13393,1 6 53 54 17 7 8 +10411,25 26 27 66 58 7 8 +13394,1 6 53 54 17 7 4 +24068,1 6 55 9 16 17 37 48 72 7 4 +25913,1 6 18 12 16 17 43 32 32 54 7 8 +14989,15 57 55 9 16 17 37 72 7 8 +13384,1 12 9 16 17 37 35 54 7 8 +17759,1 6 55 9 16 17 37 48 72 7 8 +10412,25 26 27 66 58 7 4 +13383,1 12 9 16 17 37 35 54 7 4 +1562,15 55 88 89 13 +5158,5 6 53 65 57 34 35 7 8 +12231,1 6 57 92 9 61 16 17 10 93 58 7 8 +9858,1 6 53 53 12 36 37 17 10 7 8 +21291,15 57 9 16 36 16 36 16 17 37 32 7 4 +318,15 9 16 17 69 +20869,5 6 113 61 62 17 37 52 85 54 7 4 +8916,5 6 53 65 57 34 35 7 4 +14988,15 57 55 9 16 17 37 72 7 4 +12230,1 6 57 92 9 61 16 17 10 93 58 7 4 +628,15 9 16 17 43 32 10 93 58 7 8 +627,15 9 16 17 43 32 10 93 58 7 4 +18409,15 88 89 56 13 +24528,15 88 57 9 16 17 37 68 7 4 +7248,1 6 18 12 16 17 43 32 10 54 7 8 +20870,5 6 113 61 62 17 37 52 85 54 7 8 +24529,15 88 57 9 16 17 37 68 7 8 +17316,5 6 53 9 36 16 61 16 17 62 10 7 8 +6677,15 12 16 36 16 21 77 78 22 79 4 +12777,1 6 9 16 36 16 61 16 17 62 10 7 8 +10498,5 6 12 67 68 7 8 +17317,5 6 53 9 36 16 61 16 17 62 10 7 4 +9475,5 6 12 67 68 7 4 +23393,5 6 57 92 90 16 61 16 17 10 7 4 +21292,15 57 9 16 36 16 36 16 17 37 32 7 8 +12471,1 6 9 16 36 16 61 16 17 62 10 7 4 +22675,5 6 113 61 62 17 37 35 87 30 7 8 +9628,5 6 92 42 43 17 63 7 8 +22674,5 6 113 61 62 17 37 35 87 30 7 4 +23394,5 6 57 92 90 16 61 16 17 10 7 8 +21513,5 6 12 16 17 19 10 7 4 +22633,1 6 57 53 34 35 7 8 +4855,5 6 9 10 14 54 7 8 +16068,1 6 88 57 58 89 7 8 +17787,1 6 88 88 57 58 89 13 +8183,5 6 9 10 14 54 7 4 +9348,1 6 88 57 58 89 7 4 +15116,1 12 36 16 61 16 17 37 32 7 4 +22243,1 6 84 12 12 16 61 16 17 19 13 +19002,15 88 12 26 9 16 17 11 54 7 8 +6276,15 88 12 26 9 16 17 11 54 7 4 +17277,15 57 53 31 36 37 63 7 8 +2491,1 6 92 9 16 17 37 72 93 58 7 8 +24250,15 57 53 31 36 37 63 7 4 +2490,1 6 92 9 16 17 37 72 93 58 7 4 +14838,5 6 65 51 36 37 17 10 7 4 +16812,15 88 89 89 56 7 4 +8626,1 6 105 16 17 91 7 4 +16811,15 88 89 89 56 7 8 +8619,1 6 105 16 17 91 7 8 +11056,5 6 51 47 61 62 112 7 8 +13239,1 6 65 57 57 12 16 36 37 38 17 11 8 +1572,15 67 36 37 17 10 7 8 +19485,5 6 57 92 31 61 62 63 7 8 +1740,15 96 16 36 16 17 37 48 72 7 4 +12238,5 6 57 92 31 61 62 63 7 4 +1741,15 96 16 36 16 17 37 48 72 7 8 +10637,95 16 36 16 17 37 108 35 7 8 +1571,15 67 36 37 17 10 7 4 +8845,15 44 9 36 16 17 37 108 48 68 54 7 4 +1750,5 6 96 16 21 77 78 22 79 4 +10636,95 16 36 16 17 37 108 35 7 4 +11057,5 6 51 47 61 62 112 7 4 +25717,5 6 53 88 57 9 16 61 16 17 63 7 4 +20074,5 6 12 39 36 16 17 10 7 8 +6761,1 6 9 10 89 11 8 +25718,5 6 53 88 57 9 16 61 16 17 63 7 8 +3462,5 6 64 16 117 118 52 7 8 +22843,15 65 66 56 89 7 4 +7702,15 88 9 16 17 10 7 8 +5912,1 6 53 18 12 16 17 37 50 54 7 4 +17019,15 65 66 56 89 7 8 +7701,15 88 9 16 17 10 7 4 +26030,5 6 65 90 16 61 16 17 11 8 +20264,1 6 9 10 89 11 13 +21354,1 6 55 12 11 7 8 +806,1 6 84 12 16 36 37 38 37 48 52 7 8 +15704,1 6 57 53 12 34 35 13 +807,1 6 84 12 16 36 37 38 37 48 52 7 4 +3404,1 6 9 16 36 16 61 16 17 37 35 7 4 +14260,1 6 9 16 36 16 61 16 17 37 35 7 8 +431,1 6 84 18 12 11 14 85 7 8 +17231,5 6 64 16 117 118 52 7 4 +20075,5 6 12 39 36 16 17 10 7 4 +24014,1 6 53 12 90 16 17 19 +432,1 6 84 18 12 11 14 85 7 4 +5252,1 6 42 43 17 11 13 +21247,5 6 12 16 17 91 7 8 +824,15 88 89 66 13 +5251,1 6 42 43 17 11 8 +620,5 6 64 57 92 9 10 11 8 +16933,1 6 53 18 12 16 17 37 72 54 7 4 +25656,1 6 55 55 53 9 16 61 16 17 37 35 11 8 +5910,15 53 18 12 16 17 11 8 +25464,1 6 55 12 55 57 9 16 17 11 8 +18666,5 6 12 16 17 91 7 4 +25465,1 6 55 12 55 57 9 16 17 11 13 +16932,1 6 53 18 12 16 17 37 72 54 7 8 +11362,1 6 12 39 36 16 42 16 17 37 35 7 4 +736,15 12 16 61 16 17 10 7 8 +9057,1 6 53 86 87 54 7 4 +14842,5 6 105 61 62 17 37 52 66 93 7 8 +11074,1 6 57 9 16 42 16 36 16 17 19 13 +11363,1 6 12 39 36 16 42 16 17 37 35 7 8 +737,15 12 16 61 16 17 10 7 4 +24053,15 88 55 65 9 16 17 10 7 8 +8917,1 6 53 86 87 54 7 8 +26324,5 6 9 16 17 63 85 54 7 8 +540,1 6 53 18 12 16 17 37 50 54 7 8 +19829,15 9 9 16 17 10 7 4 +5911,15 53 18 12 16 17 11 13 +19830,15 9 9 16 17 10 7 8 +15552,5 6 64 36 16 36 16 61 16 17 19 7 8 +6684,1 6 64 61 62 17 37 52 11 54 7 8 +15551,5 6 64 36 16 36 16 61 16 17 19 7 4 +881,1 6 9 10 89 7 4 +900,15 9 16 17 98 +9298,15 9 16 17 94 +12370,1 6 9 16 21 77 78 22 79 4 +12485,5 6 9 10 58 54 7 4 +20269,15 57 9 61 62 17 62 10 7 8 +20270,15 57 9 61 62 17 62 10 7 4 +6924,1 6 64 61 62 17 37 52 11 54 7 4 +882,1 6 9 10 89 7 8 +3949,15 96 36 37 38 37 72 7 4 +3948,15 96 36 37 38 37 72 7 8 +18165,15 55 88 57 9 16 17 10 7 8 +7405,5 6 88 67 68 7 4 +10137,1 12 16 36 16 17 37 52 54 7 4 +10552,1 12 16 36 16 17 37 52 54 7 8 +7210,5 6 88 67 68 7 8 +6492,5 6 90 16 17 37 50 54 7 8 +6491,5 6 90 16 17 37 50 54 7 4 +6007,15 57 55 9 36 16 61 16 17 11 8 +12484,5 6 9 10 58 54 7 8 +19533,15 88 89 58 13 +307,5 6 34 35 13 +6008,15 57 55 9 36 16 61 16 17 11 13 +19121,15 51 47 36 37 17 11 58 7 4 +24780,1 2 16 17 118 17 3 4 +5434,15 55 53 12 39 36 16 36 37 38 37 35 54 7 8 +11634,1 6 55 12 11 11 8 +22179,1 12 16 36 16 17 19 56 7 4 +5435,15 55 53 12 39 36 16 36 37 38 37 35 54 7 4 +8862,15 31 42 43 63 7 4 +8861,15 31 42 43 63 7 8 +22119,1 6 64 61 62 17 37 52 54 85 7 4 +18903,1 6 9 16 17 43 48 32 93 7 4 +19907,1 6 64 61 62 17 37 52 54 85 7 8 +18932,1 6 9 16 17 43 48 32 93 7 8 +17324,5 6 55 53 9 16 17 10 54 7 8 +22890,15 55 53 12 16 61 16 17 69 +26300,1 6 55 49 107 108 48 50 11 8 +9757,15 55 9 16 36 16 17 37 72 85 7 8 +8535,5 6 55 53 9 16 17 10 54 7 4 +9758,15 55 9 16 36 16 17 37 72 85 7 4 +12687,1 6 67 42 43 17 37 48 72 54 7 4 +24823,1 6 84 57 57 9 16 17 10 54 7 4 +11809,1 6 9 16 36 16 17 37 10 7 4 +3352,1 6 67 42 43 17 37 48 72 54 7 8 +7691,1 6 9 16 36 16 17 37 10 7 8 +13264,5 6 31 42 43 17 37 48 68 54 7 8 +24824,1 6 84 57 57 9 16 17 10 54 7 8 +21172,5 6 71 114 117 16 17 63 7 8 +15076,15 57 88 67 68 7 4 +22379,1 6 57 92 34 47 48 68 7 8 +15077,15 57 88 67 68 7 8 +12147,5 6 31 42 43 17 37 48 68 54 7 4 +16585,1 6 57 92 34 47 48 68 7 4 +996,1 6 55 53 34 35 13 +5997,1 12 16 36 16 17 10 7 4 +11353,5 45 21 22 17 37 50 11 8 +26098,5 6 9 16 42 16 17 62 10 7 8 +3315,15 57 9 16 36 37 38 17 10 7 4 +5442,1 6 57 67 47 48 48 35 7 4 +3314,15 57 9 16 36 37 38 17 10 7 8 +4929,1 12 16 36 16 17 10 7 8 +22030,1 6 53 12 36 37 38 17 10 7 8 +25703,1 6 18 12 16 17 52 68 7 8 +18060,1 6 88 57 9 16 17 37 52 7 8 +6403,1 6 12 31 32 33 13 +12294,1 6 18 12 16 17 52 68 7 4 +21360,1 6 88 57 9 16 17 37 52 7 4 +18508,1 6 53 76 16 17 69 +9892,5 6 44 9 16 17 91 7 8 +9893,5 6 44 9 16 17 91 7 4 +19668,70 16 99 16 17 75 7 8 +25230,15 55 53 31 61 62 17 63 7 8 +14224,1 6 55 86 34 35 13 +21549,5 6 9 10 11 33 13 +4669,1 6 49 107 108 50 7 8 +19667,70 16 99 16 17 75 7 4 +4668,1 6 49 107 108 50 7 4 +23882,1 6 84 49 36 37 17 10 85 7 4 +9648,1 6 57 53 34 36 37 17 10 54 7 8 +18549,15 55 53 31 61 62 17 63 7 4 +24381,1 6 107 108 50 7 4 +7959,1 2 16 17 37 72 7 4 +5842,5 6 57 53 9 10 58 54 7 8 +9193,1 2 16 17 37 72 7 8 +24280,5 6 57 53 9 10 58 54 7 4 +25631,1 6 31 47 36 37 17 3 8 +5559,1 6 84 51 52 7 8 +7048,5 6 53 9 16 61 16 17 62 10 7 8 +22158,5 6 9 16 42 16 17 37 35 7 4 +25794,1 6 31 47 36 37 17 3 4 +18784,1 6 84 51 52 7 4 +7047,5 6 53 9 16 61 16 17 62 10 7 4 +5115,5 45 21 22 17 37 50 7 4 +12431,1 6 34 36 37 74 7 8 +12680,5 6 88 67 68 52 7 4 +1875,5 45 21 22 17 37 50 7 8 +4819,5 6 88 67 68 52 7 8 +131,5 6 53 31 32 54 7 4 +132,5 6 53 31 32 54 7 8 +13840,15 34 47 48 35 54 54 7 8 +6121,1 6 9 10 27 66 11 8 +13841,15 34 47 48 35 54 54 7 4 +12374,15 55 12 12 16 17 11 8 +26033,5 6 53 34 107 108 35 54 54 7 4 +25601,1 6 55 88 67 68 7 8 +8832,1 6 53 67 47 48 72 13 +4740,5 6 96 36 16 17 19 11 8 +12327,1 6 12 65 90 16 17 10 7 8 +12326,1 6 12 65 90 16 17 10 7 4 +17152,5 6 9 16 17 43 35 93 7 8 +9907,1 6 9 9 9 9 9 16 17 10 7 8 +17153,5 6 9 16 17 43 35 93 7 4 +20191,1 6 53 12 36 37 38 17 10 7 4 +17416,1 6 9 9 9 9 9 16 17 10 7 4 +5706,1 6 119 16 61 16 17 11 8 +18739,1 12 16 36 37 38 37 68 89 13 +6906,5 6 18 12 47 48 32 7 8 +12259,5 6 18 12 47 48 32 7 4 +10777,15 55 34 47 36 37 11 13 +2207,1 6 26 57 58 89 7 8 +2208,1 6 26 57 58 89 7 4 +10776,15 55 34 47 36 37 11 8 +14398,1 6 12 16 39 36 16 36 37 38 17 11 8 +20203,1 6 53 12 16 36 16 17 37 68 7 8 +13595,5 6 53 9 36 16 17 91 7 8 +14386,5 6 86 57 9 16 17 37 72 85 7 8 +20202,1 6 53 12 16 36 16 17 37 68 7 4 +1328,15 57 9 16 42 16 17 10 54 7 8 +14,1 12 11 11 8 +2741,5 6 53 9 36 16 17 91 7 4 +18241,5 6 86 57 9 16 17 37 72 85 7 4 +1327,15 57 9 16 42 16 17 10 54 7 4 +24530,5 6 12 16 17 37 48 52 7 8 +10,1 12 11 7 8 +10324,1 6 90 39 36 16 17 10 7 4 +19319,5 6 64 36 16 61 16 17 37 72 7 8 +20098,5 6 9 16 42 16 17 37 35 11 8 +8732,1 6 57 53 9 61 16 61 16 17 19 13 +9811,1 6 55 34 36 37 38 19 13 +1640,15 9 61 62 72 7 4 +1639,15 9 61 62 72 7 8 +20567,15 55 53 53 54 13 +19921,1 6 105 61 62 17 91 7 8 +18004,1 6 105 61 62 17 91 7 4 +7747,5 6 9 16 36 37 38 17 10 7 8 +16466,5 6 57 55 53 12 36 16 17 37 50 7 4 +5358,1 6 26 9 16 17 10 7 4 +7462,1 6 9 10 27 66 7 4 +2570,5 6 9 16 36 37 38 17 10 7 4 +16465,5 6 57 55 53 12 36 16 17 37 50 7 8 +5357,1 6 26 9 16 17 10 7 8 +11062,1 6 9 10 27 66 7 8 +22668,5 6 12 11 30 7 4 +22667,5 6 12 11 30 7 8 +18942,5 6 96 36 16 17 19 7 8 +4092,5 6 9 10 66 11 7 8 +10470,5 6 96 36 16 17 19 7 4 +853,5 6 9 10 66 11 7 4 +8334,1 6 96 16 36 37 38 17 19 7 4 +15209,15 53 18 9 16 17 11 7 8 +13191,15 31 36 37 17 43 48 32 93 7 4 +14962,5 6 9 16 17 37 108 50 7 4 +25722,1 6 96 16 36 37 38 17 19 7 8 +6902,5 6 9 16 17 37 108 50 7 8 +7220,5 6 34 47 48 68 7 4 +7568,1 12 11 58 89 7 4 +7617,1 6 16 17 17 54 54 7 4 +13192,15 31 36 37 17 43 48 32 93 7 8 +7221,5 6 34 47 48 68 7 8 +7569,1 12 11 58 89 7 8 +20760,96 36 16 17 11 130 7 8 +1729,15 55 12 55 56 56 89 56 11 8 +7618,1 6 16 17 17 54 54 7 8 +1314,5 6 49 50 89 7 8 +10600,1 6 90 16 36 16 17 11 8 +22649,5 6 9 16 42 16 17 37 35 7 8 +3454,1 6 57 12 11 13 +9,1 12 11 7 4 +22918,5 6 49 50 89 7 4 +14452,1 6 9 39 36 39 36 16 17 19 7 4 +10601,1 6 90 16 36 16 17 11 13 +8458,1 6 65 71 36 37 17 11 8 +11343,5 6 92 57 58 13 +26792,1 6 92 9 10 56 89 7 4 +11840,1 6 53 54 85 7 4 +10376,5 6 57 53 31 32 54 7 8 +11841,1 6 53 54 85 7 8 +1953,15 109 110 13 +2353,5 6 57 51 52 13 +25155,5 6 65 9 16 17 120 7 4 +2727,5 6 57 92 12 16 61 16 17 19 13 +10377,5 6 57 53 31 32 54 7 4 +5087,15 67 47 48 68 7 4 +20731,5 6 65 9 16 17 120 7 8 +20777,1 6 92 9 10 56 89 7 8 +5086,15 67 47 48 68 7 8 +22797,5 6 53 57 49 50 54 7 8 +11521,1 6 12 34 47 48 35 11 8 +17110,5 6 53 57 49 50 54 7 4 +18564,1 6 29 9 16 17 11 13 +23035,15 55 55 71 36 37 10 54 7 8 +9731,5 6 12 49 36 37 38 11 13 +11202,1 6 29 9 16 17 11 8 +23034,15 55 55 71 36 37 10 54 7 4 +7690,15 9 16 36 16 17 37 48 35 7 4 +19891,15 31 36 37 17 37 68 7 8 +7689,15 9 16 36 16 17 37 48 35 7 8 +13588,1 6 57 55 51 61 62 63 7 4 +17227,5 6 53 18 9 16 36 61 16 17 10 54 7 8 +19892,15 31 36 37 17 37 68 7 4 +21735,15 12 36 16 17 43 32 7 4 +21662,1 6 53 31 47 61 62 63 7 8 +21453,15 57 9 16 42 16 17 37 35 7 4 +25050,1 6 84 55 9 16 36 16 17 37 72 85 7 4 +7396,5 6 57 55 86 87 13 +21736,15 12 36 16 17 43 32 7 8 +16720,5 6 29 36 37 10 7 8 +21452,15 57 9 16 42 16 17 37 35 7 8 +21389,5 6 51 61 62 37 48 52 7 4 +18072,5 6 12 16 36 37 38 37 35 7 8 +21388,5 6 51 61 62 37 48 52 7 8 +11550,5 6 12 16 36 37 38 37 35 7 4 +20002,5 6 76 61 62 10 54 7 4 +12586,5 6 26 57 58 13 +8483,5 6 88 71 36 37 17 11 13 +11395,5 6 76 61 62 10 54 7 8 +13323,15 55 53 119 120 13 +9730,5 6 12 49 36 37 38 11 8 +8482,5 6 88 71 36 37 17 11 8 +10308,1 6 64 61 62 17 37 108 48 72 54 7 4 +7708,15 90 16 42 16 17 10 7 8 +7707,15 90 16 42 16 17 10 7 4 +3733,15 53 34 35 54 7 8 +16542,15 57 9 16 42 16 17 43 52 58 13 +3732,15 53 34 35 54 7 4 +20093,5 6 12 9 16 17 37 35 87 7 4 +12455,15 12 16 36 16 36 16 17 10 7 4 +20094,5 6 12 9 16 17 37 35 87 7 8 +10331,15 9 16 17 43 17 63 7 4 +10466,5 6 9 16 36 16 17 37 48 68 7 4 +14064,1 12 16 39 36 16 36 37 38 37 48 72 7 8 +19091,5 6 31 117 16 17 63 7 4 +5112,5 6 9 16 36 16 17 37 48 68 7 8 +10332,15 9 16 17 43 17 63 7 8 +20825,5 6 31 117 16 17 63 7 8 +5998,1 6 57 12 16 61 16 17 11 8 +26210,1 6 96 16 36 16 61 16 17 11 8 +8181,5 6 57 9 16 36 16 61 16 17 19 7 8 +24425,5 6 31 114 114 114 36 37 17 10 7 4 +17697,1 6 57 12 16 61 16 17 11 13 +25072,15 49 47 36 37 17 37 52 7 8 +23739,1 6 9 10 56 66 58 7 4 +25071,15 49 47 36 37 17 37 52 7 4 +4675,5 6 34 36 37 63 7 4 +23028,1 6 64 61 62 37 68 56 66 58 7 4 +23738,1 6 9 10 56 66 58 7 8 +4676,5 6 34 36 37 63 7 8 +23027,1 6 64 61 62 37 68 56 66 58 7 8 +3980,1 6 84 88 55 56 89 85 7 8 +22570,15 57 9 16 16 17 37 32 54 7 8 +4425,1 12 11 33 13 +6928,5 6 12 16 21 77 101 102 103 +15307,5 6 64 16 36 16 61 16 17 11 13 +2663,1 6 84 88 55 56 89 85 7 4 +22569,15 57 9 16 16 17 37 32 54 7 4 +13761,15 49 47 47 36 37 17 10 54 7 4 +8180,5 6 57 9 16 36 16 61 16 17 19 7 4 +23501,15 57 9 16 117 118 68 11 7 4 +4619,1 6 34 16 17 63 7 8 +13762,15 49 47 47 36 37 17 10 54 7 8 +26389,5 6 12 61 16 17 37 48 32 58 7 4 +20780,5 6 92 9 16 17 11 8 +17694,1 6 34 36 37 17 19 33 13 +8053,1 6 109 9 16 17 10 7 4 +4618,1 6 34 16 17 63 7 4 +8052,1 6 109 9 16 17 10 7 8 +11747,15 88 89 58 66 56 7 8 +16436,1 6 41 88 89 58 7 4 +21755,1 6 64 36 16 17 37 48 35 7 4 +5901,1 6 64 16 36 16 17 37 48 72 54 7 4 +21883,5 6 57 57 57 12 16 17 11 13 +24568,5 6 88 26 71 47 107 108 68 7 8 +21260,5 6 53 51 31 32 13 +15838,1 6 41 88 89 58 7 8 +21754,1 6 64 36 16 17 37 48 35 7 8 +22063,5 6 53 31 36 37 37 35 87 54 7 8 +24495,15 88 65 9 16 17 37 52 7 4 +14318,5 6 9 10 11 85 54 7 4 +15516,1 12 36 16 17 37 52 89 7 4 +22534,5 6 53 31 36 37 37 35 87 54 7 4 +16296,5 6 57 57 57 12 16 17 11 8 +24017,5 6 9 10 11 85 54 7 8 +5900,1 6 64 16 36 16 17 37 48 72 54 7 8 +16151,5 6 88 26 71 47 107 108 68 7 4 +24494,15 88 65 9 16 17 37 52 7 8 +691,15 55 9 16 17 63 7 4 +9367,1 6 53 71 47 48 52 54 7 4 +692,15 55 9 16 17 63 7 8 +3714,15 55 88 57 12 16 39 36 16 17 19 13 +3920,1 6 53 71 47 48 52 54 7 8 +12137,15 67 47 48 72 54 7 4 +16699,5 6 47 48 108 52 7 4 +6890,15 88 89 89 13 +10384,5 6 9 36 16 17 37 7 4 +11321,1 6 84 67 47 36 37 17 10 85 54 7 8 +12138,15 67 47 48 72 54 7 8 +9309,15 9 16 16 42 16 17 19 13 +12930,15 55 26 88 57 58 13 +12162,15 12 16 99 16 42 16 17 37 10 7 4 +8440,1 6 31 47 48 35 7 8 +11956,1 6 84 67 47 36 37 17 10 85 54 7 4 +23925,15 55 12 57 96 36 37 38 19 56 89 11 8 +5892,5 6 64 36 42 16 17 11 8 +10774,1 6 31 47 48 35 7 4 +25916,1 6 57 12 16 61 16 17 11 7 8 +5893,5 6 64 36 42 16 17 11 13 +24515,5 6 9 36 16 17 37 7 8 +16246,1 6 57 12 16 61 16 17 11 7 4 +3804,1 12 11 27 28 +20024,5 6 55 12 88 89 11 8 +1591,15 88 26 9 16 17 10 7 8 +4812,15 86 88 9 16 17 10 7 8 +19525,1 6 64 16 17 37 50 54 7 4 +1590,15 88 26 9 16 17 10 7 4 +4811,15 86 88 9 16 17 10 7 4 +11349,15 49 36 37 17 10 93 7 8 +1151,1 6 53 31 47 47 36 37 17 10 7 8 +10516,15 71 109 110 56 11 8 +13506,5 6 18 12 16 17 91 85 7 4 +4349,5 6 53 54 75 7 4 +4350,5 6 53 54 75 7 8 +17862,5 6 53 109 110 58 54 7 8 +1152,1 6 53 31 47 47 36 37 17 10 7 4 +961,5 6 18 12 16 17 91 85 7 8 +24418,5 6 18 12 16 17 37 68 58 7 8 +22753,1 6 96 16 36 16 61 16 17 37 32 7 4 +24419,5 6 18 12 16 17 37 68 58 7 4 +11746,15 88 89 58 66 56 7 4 +22752,1 6 96 16 36 16 61 16 17 37 32 7 8 +2690,1 80 81 77 78 82 111 +15472,5 6 64 16 36 16 17 37 50 7 8 +17763,15 96 36 16 17 19 13 +20028,5 6 9 16 36 16 17 37 50 7 8 +22081,5 6 64 16 36 16 17 37 50 11 8 +24383,5 6 107 108 50 7 8 +8503,15 67 67 36 37 11 13 +11525,5 6 55 9 16 17 37 48 35 11 8 +6003,15 49 36 37 10 54 7 4 +1834,1 6 9 10 89 66 56 27 28 +13545,1 6 12 51 36 37 19 13 +2067,1 6 88 51 42 43 17 63 7 4 +21175,5 6 9 16 36 16 17 37 50 7 4 +15310,1 6 84 64 16 17 10 54 85 54 7 4 +4106,5 6 88 65 9 16 42 16 17 37 35 87 7 4 +22619,15 12 16 17 17 10 7 4 +2066,1 6 88 51 42 43 17 63 7 8 +20786,5 6 55 57 53 31 36 37 17 10 7 8 +6002,15 49 36 37 10 54 7 8 +25774,5 6 64 96 16 36 37 38 17 10 54 7 8 +2278,5 6 49 114 115 50 7 4 +8502,15 67 67 36 37 11 8 +22873,5 6 64 16 36 16 61 16 17 19 13 +15696,1 6 53 9 16 17 17 10 54 7 8 +22620,15 12 16 17 17 10 7 8 +20785,5 6 55 57 53 31 36 37 17 10 7 4 +24382,5 6 107 108 50 7 4 +11348,15 49 36 37 17 10 93 7 4 +9533,1 6 9 16 36 16 17 11 13 +6150,1 6 9 16 36 16 17 11 8 +17003,5 6 34 36 37 17 63 30 7 4 +3990,1 81 77 78 22 8 +1604,5 6 105 16 61 16 17 19 7 8 +7031,1 6 84 64 16 17 10 54 85 54 7 8 +1761,5 6 105 16 61 16 17 19 7 4 +4605,5 6 34 36 37 17 63 30 7 8 +15060,1 6 53 73 74 56 58 13 +6370,5 2 16 17 37 68 7 8 +6371,5 2 16 17 37 68 7 4 +5728,5 6 53 90 16 17 37 72 7 8 +5102,15 57 71 47 36 37 38 37 48 35 87 7 8 +7225,15 49 47 36 37 17 11 13 +8764,5 6 9 16 17 37 10 7 8 +13437,5 6 53 90 16 17 37 72 7 4 +2501,5 6 55 12 88 89 7 8 +6246,15 49 47 36 37 17 11 8 +18272,5 6 9 16 17 37 10 7 4 +37,1 12 11 23 24 +3552,5 6 55 12 88 89 7 4 +16428,5 6 9 16 36 37 38 37 72 7 8 +19769,5 6 105 16 36 16 17 10 7 4 +7663,1 6 34 47 48 68 7 8 +24179,1 6 9 16 36 16 16 17 17 11 8 +7219,1 6 34 47 48 68 7 4 +14653,5 6 64 36 16 17 37 48 72 54 7 8 +24180,1 6 9 16 36 16 16 17 17 11 13 +2178,1 6 57 92 34 36 37 17 75 7 8 +10660,5 6 71 47 42 43 17 10 7 4 +20657,1 80 81 77 78 82 8 +10661,5 6 71 47 42 43 17 10 7 8 +18112,15 57 71 47 36 37 38 37 48 35 87 7 4 +25052,1 6 57 92 34 36 37 17 75 7 4 +25814,5 6 42 16 17 17 11 8 +3763,1 6 53 31 36 37 10 7 4 +8850,1 6 88 57 58 56 54 7 4 +10566,1 6 31 42 43 17 3 8 +3764,1 6 53 31 36 37 10 7 8 +23449,5 6 53 53 9 10 7 8 +6536,1 6 31 42 43 17 3 4 +9168,1 6 12 55 67 61 62 17 63 7 4 +25815,5 6 42 16 17 17 11 13 +16364,5 6 53 53 9 10 7 4 +21666,5 6 90 91 58 89 13 +6386,1 6 88 57 58 56 54 7 8 +4341,5 6 51 114 115 72 7 4 +5753,15 12 11 58 58 7 8 +4001,5 6 53 9 36 16 17 10 54 7 4 +15471,5 6 64 16 36 16 17 37 50 7 4 +10943,1 6 57 58 89 54 54 7 8 +4340,5 6 51 114 115 72 7 8 +6378,1 6 55 12 57 96 16 21 77 78 22 79 4 +4000,5 6 53 9 36 16 17 10 54 7 8 +6766,15 67 36 37 63 7 4 +17383,1 6 53 18 12 16 17 37 108 48 68 54 7 4 +6767,15 67 36 37 63 7 8 +10885,15 31 36 37 17 63 7 4 +23723,1 12 11 14 93 58 7 4 +8418,5 6 57 57 57 12 16 17 19 13 +23733,5 6 71 47 36 37 10 54 7 8 +10944,1 6 57 58 89 54 54 7 4 +17700,15 44 96 16 36 16 21 77 78 22 8 +25136,1 6 53 86 34 36 37 17 37 115 50 54 7 8 +23995,1 6 57 9 36 16 36 16 17 37 72 7 8 +12387,5 6 51 36 37 38 37 48 68 7 8 +23978,1 6 57 9 36 16 36 16 17 37 72 7 4 +26061,5 6 51 36 37 38 37 48 68 7 4 +7576,5 6 53 57 57 12 36 37 38 11 8 +14948,15 65 9 16 16 17 11 13 +10884,15 31 36 37 17 63 7 8 +14947,15 65 9 16 16 17 11 8 +23672,1 6 55 12 16 17 69 +15607,1 6 57 92 12 16 36 37 38 11 13 +15606,1 6 57 92 12 16 36 37 38 11 8 +21512,15 65 88 55 65 66 7 4 +21511,15 65 88 55 65 66 7 8 +17964,1 6 84 88 55 12 11 58 89 85 7 8 +26396,15 67 67 36 37 63 54 7 4 +13406,5 6 55 71 36 37 11 8 +14604,5 6 57 9 36 37 11 8 +26397,15 67 67 36 37 63 54 7 8 +10041,5 6 76 61 62 17 37 52 85 54 7 8 +7254,5 6 57 9 16 36 16 17 37 72 7 4 +14594,5 6 119 16 42 16 17 91 7 4 +17965,1 6 84 88 55 12 11 58 89 85 7 4 +10042,5 6 76 61 62 17 37 52 85 54 7 4 +4960,5 6 31 42 43 17 62 10 7 8 +10718,15 55 53 9 16 61 16 17 62 10 7 4 +3739,1 6 53 34 107 36 37 17 11 8 +10719,15 55 53 9 16 61 16 17 62 10 7 8 +26225,15 34 107 108 108 35 66 7 8 +2562,1 6 49 42 43 17 11 8 +4644,1 6 12 88 90 16 36 16 17 37 35 7 8 +18474,1 6 65 88 88 9 16 42 16 17 19 7 8 +22350,5 6 53 53 9 10 11 8 +26224,15 34 107 108 108 35 66 7 4 +16367,15 53 9 16 17 10 54 54 7 4 +15051,5 6 55 55 9 61 62 50 7 8 +19932,5 6 64 16 36 16 17 37 35 54 54 7 8 +25279,1 6 12 16 36 16 17 37 35 11 8 +6230,5 6 55 12 11 89 7 4 +16366,15 53 9 16 17 10 54 54 7 8 +15050,5 6 55 55 9 61 62 50 7 4 +4719,5 6 55 12 11 89 7 8 +6989,5 6 53 9 16 17 37 72 7 4 +15732,1 6 55 55 67 68 7 8 +6988,5 6 53 9 16 17 37 72 7 8 +7417,5 6 53 18 12 16 17 11 13 +18044,1 6 55 55 67 68 7 4 +21789,5 6 55 71 47 36 37 69 +14047,1 6 41 88 89 58 11 8 +14198,5 6 53 9 16 36 16 61 16 17 62 10 7 4 +2933,5 6 53 18 12 16 17 11 8 +9007,15 12 16 21 77 78 22 79 4 +8426,1 6 49 50 33 13 +14199,5 6 53 9 16 36 16 61 16 17 62 10 7 8 +4959,5 6 31 42 43 17 62 10 7 4 +13404,15 57 55 16 17 7 4 +13405,15 57 55 16 17 7 8 +19849,15 57 53 53 54 58 7 4 +2307,70 36 61 16 17 37 48 50 7 4 +14654,5 6 64 36 16 17 37 48 72 54 7 4 +16318,5 6 53 9 16 17 17 10 7 4 +21764,1 6 76 36 16 36 16 61 16 17 19 7 4 +21763,1 6 76 36 16 36 16 61 16 17 19 7 8 +2308,70 36 61 16 17 37 48 50 7 8 +14757,15 34 36 37 17 37 52 7 4 +14758,15 34 36 37 17 37 52 7 8 +16319,5 6 53 9 16 17 17 10 7 8 +19848,15 57 53 53 54 58 7 8 +18451,15 12 16 36 16 61 16 17 37 35 7 4 +18452,15 12 16 36 16 61 16 17 37 35 7 8 +15002,1 6 55 53 12 16 17 11 8 +2752,1 6 55 67 68 13 +24106,15 88 12 26 9 16 61 16 17 62 10 7 4 +19727,1 6 119 120 89 56 89 7 8 +24105,15 88 12 26 9 16 61 16 17 62 10 7 8 +8582,5 6 57 53 53 54 7 8 +26433,1 6 64 16 36 16 17 120 7 4 +8268,15 71 61 62 63 7 8 +7208,15 88 51 67 36 37 11 8 +26432,1 6 64 16 36 16 17 120 7 8 +8267,15 71 61 62 63 7 4 +16048,1 6 18 12 16 17 37 72 58 85 7 4 +26367,1 6 64 16 42 16 36 16 17 10 7 4 +7209,15 88 51 67 36 37 11 13 +4324,1 6 31 42 43 17 11 8 +26592,5 6 88 88 88 88 9 16 17 11 8 +16049,1 6 18 12 16 17 37 72 58 85 7 8 +13223,15 34 107 108 108 35 7 4 +6093,1 6 31 42 43 17 11 13 +13222,15 34 107 108 108 35 7 8 +26593,5 6 88 88 88 88 9 16 17 11 13 +3681,5 6 88 57 9 16 36 37 38 17 10 7 8 +13789,1 6 64 61 62 17 +17322,5 6 55 53 55 56 56 7 4 +17785,1 6 57 34 35 54 7 8 +22694,1 6 9 61 62 13 +23658,5 6 88 57 9 16 36 37 38 17 10 7 4 +13104,5 6 18 12 16 17 91 7 4 +25769,5 6 53 51 52 58 54 7 8 +19929,1 6 88 67 68 13 +11756,5 6 18 12 16 17 91 7 8 +25,5 6 12 12 16 17 19 13 +3605,1 6 9 10 89 66 56 7 4 +7128,1 6 84 55 56 13 +3603,1 6 9 10 89 66 56 7 8 +16825,5 6 51 16 36 37 17 11 8 +19393,15 53 34 35 7 8 +19726,15 55 88 89 56 89 7 4 +22032,5 6 53 12 16 17 37 68 7 4 +19725,15 55 88 89 56 89 7 8 +9135,15 57 53 34 35 13 +21439,5 6 12 36 37 38 17 11 66 7 8 +1595,1 6 57 26 9 16 17 11 8 +18350,1 6 65 31 32 13 +19392,15 53 34 35 7 4 +22033,5 6 53 12 16 17 37 68 7 8 +17899,5 6 53 51 52 58 54 7 4 +8642,1 6 9 36 37 38 37 35 7 8 +13635,5 6 12 36 37 38 17 11 66 7 4 +18887,5 6 84 67 47 36 37 10 85 54 7 4 +8833,1 6 53 67 47 48 72 54 7 4 +18884,5 6 84 67 47 36 37 10 85 54 7 8 +15524,1 6 53 67 47 48 72 54 7 8 +13493,5 6 12 65 90 16 17 10 7 8 +11774,1 6 65 57 57 9 16 61 16 17 19 13 +12427,15 88 57 58 56 7 8 +4043,70 16 39 36 16 36 16 17 10 7 8 +8568,5 6 57 53 53 54 7 4 +12325,5 6 12 65 90 16 17 10 7 4 +12428,15 88 57 58 56 7 4 +4044,70 16 39 36 16 36 16 17 10 7 4 +3582,15 55 31 47 48 35 7 8 +2720,1 12 9 16 61 16 17 10 54 7 4 +26357,1 6 76 31 32 13 +3581,15 55 31 47 48 35 7 4 +2721,1 12 9 16 61 16 17 10 54 7 8 +6990,15 55 65 88 67 61 62 63 7 8 +15409,15 49 47 36 37 17 19 13 +18846,1 6 92 57 9 36 37 38 37 108 35 7 4 +22691,15 55 65 88 67 61 62 63 7 4 +15333,5 6 64 61 62 17 37 48 35 11 54 7 8 +22585,5 6 26 88 65 9 16 17 10 7 4 +21264,1 6 64 36 16 17 37 10 54 7 8 +978,1 6 84 12 16 21 77 78 82 83 8 +25534,5 6 88 55 57 12 11 58 7 8 +3900,1 6 12 65 71 72 13 +12715,5 6 55 53 31 32 7 8 +616,5 6 57 58 63 7 8 +18066,1 6 49 42 43 17 3 8 +21027,15 31 36 37 11 7 4 +17637,1 12 9 16 61 16 17 37 35 11 8 +22112,1 6 49 42 43 17 3 4 +15341,1 6 9 16 117 118 32 7 4 +1673,1 6 12 12 11 11 8 +4055,1 6 9 16 117 118 32 7 8 +1149,15 53 31 47 48 48 32 58 54 7 8 +1148,15 53 31 47 48 48 32 58 54 7 4 +12222,5 6 57 57 92 9 10 93 58 7 4 +18088,1 6 12 9 16 17 37 7 8 +26035,1 6 57 49 47 48 68 58 7 4 +12223,5 6 57 57 92 9 10 93 58 7 8 +17674,15 51 36 37 17 19 58 11 8 +4911,5 6 9 10 56 54 7 4 +13891,5 6 57 9 16 36 37 38 37 35 7 4 +12202,5 6 55 53 31 32 7 4 +20438,5 6 57 9 16 36 37 38 37 35 7 8 +447,5 6 9 10 66 85 7 8 +14775,1 6 9 61 62 32 7 8 +446,5 6 9 10 66 85 7 4 +21333,1 6 84 9 36 16 17 37 48 72 85 93 7 4 +13463,1 6 9 61 62 32 7 4 +21345,15 67 68 52 7 8 +21346,15 67 68 52 7 4 +12234,5 6 57 92 31 32 13 +4912,5 6 9 10 56 54 7 8 +13510,5 6 84 86 9 16 36 16 17 11 8 +25541,1 6 9 36 37 38 62 10 7 4 +3473,1 6 90 16 17 63 7 8 +15196,1 6 57 12 16 61 16 17 19 13 +5970,15 9 16 17 62 52 7 4 +18950,5 6 53 64 16 61 16 17 62 10 7 8 +12252,5 6 12 65 9 16 42 16 17 11 8 +25740,1 6 96 16 36 16 61 16 17 19 13 +10833,1 6 64 61 62 37 52 11 54 7 8 +5510,1 6 90 16 17 63 7 4 +10762,1 6 55 53 12 16 17 19 13 +15846,5 6 12 65 9 16 42 16 17 11 13 +5971,15 9 16 17 62 52 7 8 +25628,1 6 57 65 66 58 7 4 +5042,1 6 49 50 11 8 +24316,5 6 9 10 27 66 7 4 +9848,5 6 64 61 62 17 37 108 35 7 4 +24874,1 6 53 64 16 17 10 54 7 4 +15795,1 6 57 65 66 58 7 8 +24873,1 6 53 64 16 17 10 54 7 8 +11594,1 6 55 9 16 36 16 17 37 35 7 4 +11595,1 6 55 9 16 36 16 17 37 35 7 8 +1578,5 6 9 10 27 66 7 8 +9849,5 6 64 61 62 17 37 108 35 7 8 +17131,5 2 16 17 11 56 7 4 +2093,1 6 12 12 11 7 4 +23709,5 6 49 47 36 37 17 19 13 +2094,1 6 12 12 11 7 8 +4601,1 6 64 61 62 17 10 85 54 7 4 +18273,5 6 53 9 9 16 17 17 10 7 8 +7024,1 6 64 61 62 17 10 85 54 7 8 +16320,5 6 53 9 9 16 17 17 10 7 4 +3625,1 6 49 47 48 35 7 4 +4100,1 6 71 42 43 17 37 35 87 7 4 +20058,1 12 36 16 17 75 7 4 +15057,5 6 53 9 36 16 17 62 10 7 4 +21509,5 6 55 56 89 56 7 8 +14991,1 6 64 16 42 16 39 36 16 17 19 13 +3624,1 6 49 47 48 35 7 8 +15056,5 6 53 9 36 16 17 62 10 7 8 +4101,1 6 71 42 43 17 37 35 87 7 8 +12032,1 6 9 39 36 16 17 62 10 7 8 +15603,1 6 9 10 58 89 56 54 85 54 7 4 +10857,1 6 53 31 36 37 17 63 7 4 +15602,1 6 9 10 58 89 56 54 85 54 7 8 +11754,5 6 53 9 16 36 16 61 16 17 10 54 7 8 +21548,70 16 39 36 16 61 16 17 11 7 8 +11753,5 6 53 9 16 36 16 61 16 17 10 54 7 4 +23602,70 16 39 36 16 61 16 17 11 7 4 +6858,1 6 64 16 36 37 38 37 35 7 4 +5283,1 6 65 57 57 9 16 61 16 17 11 13 +24638,1 12 16 36 37 38 37 10 7 4 +6857,1 6 64 16 36 37 38 37 35 7 8 +12127,15 55 12 88 89 13 +19079,1 12 16 36 37 38 37 10 7 8 +2553,1 6 65 57 57 9 16 61 16 17 11 8 +20677,1 6 9 36 16 17 37 52 85 54 7 4 +14637,1 6 9 61 62 32 11 8 +25932,1 6 53 71 47 47 36 37 17 11 8 +5186,1 6 53 31 36 37 17 63 7 8 +21093,1 6 84 12 16 17 37 50 85 54 7 8 +23208,5 6 53 12 34 36 37 10 7 8 +9576,1 6 84 9 10 66 56 85 54 7 4 +22562,1 6 64 16 42 16 17 37 50 11 7 4 +9575,1 6 84 9 10 66 56 85 54 7 8 +26723,70 16 61 16 17 37 35 7 8 +15562,15 71 42 43 17 10 93 7 8 +26724,70 16 61 16 17 37 35 7 4 +1667,15 96 36 37 38 19 89 7 4 +21508,5 6 55 56 89 56 7 4 +20955,1 6 9 36 16 17 37 52 85 54 7 8 +1666,15 96 36 37 38 19 89 7 8 +15561,15 71 42 43 17 10 93 7 4 +17797,5 6 53 12 61 16 17 37 32 7 8 +18182,15 55 57 9 16 39 36 16 36 37 38 37 35 54 7 4 +25159,5 6 86 12 11 7 8 +18443,5 6 49 47 47 36 37 19 58 7 4 +9987,5 6 86 12 11 7 4 +6892,1 6 9 10 89 89 13 +5487,70 16 36 16 17 37 48 72 7 4 +12092,5 6 26 57 58 89 7 4 +5486,70 16 36 16 17 37 48 72 7 8 +12769,1 6 55 9 16 36 16 17 62 10 7 8 +18183,15 55 57 9 16 39 36 16 36 37 38 37 35 54 7 8 +24533,1 6 55 9 16 36 16 17 62 10 7 4 +18525,1 6 84 49 50 33 13 +26115,1 6 18 9 16 17 62 17 37 35 7 4 +10226,5 6 9 10 27 66 11 8 +10856,1 6 9 36 37 38 37 35 7 4 +22541,5 6 65 88 88 9 16 117 118 72 11 8 +3068,1 6 53 57 9 16 61 16 17 11 13 +25179,5 2 16 17 37 35 11 7 4 +23790,5 6 9 16 36 16 61 16 17 11 8 +3067,1 6 53 57 9 16 61 16 17 11 8 +78,15 44 31 42 43 17 10 30 7 8 +15400,1 6 64 16 42 16 17 43 10 54 7 4 +18333,1 12 16 99 16 17 10 7 8 +77,15 44 31 42 43 17 10 30 7 4 +23807,5 6 57 55 53 9 10 54 7 8 +26116,1 6 18 9 16 17 62 17 37 35 7 8 +2902,15 51 42 43 17 43 52 7 4 +13252,5 6 57 55 53 9 10 54 7 4 +2901,15 51 42 43 17 43 52 7 8 +17204,5 6 34 36 16 17 63 7 4 +21896,1 6 34 35 58 89 33 7 4 +25130,1 6 57 55 71 61 62 75 7 4 +11413,5 6 34 36 16 17 63 7 8 +1,1 2 3 4 +5827,5 6 31 42 43 17 10 54 7 4 +18901,1 6 55 96 16 36 37 38 11 8 +19552,15 67 36 16 42 16 17 11 8 +1089,5 6 64 61 62 11 13 +18902,1 6 55 96 16 36 37 38 11 13 +1041,5 6 64 61 62 11 8 +8318,15 55 53 9 16 61 16 17 10 54 7 8 +17018,15 65 66 56 89 13 +2206,5 6 26 57 58 89 7 8 +11573,5 6 31 42 43 17 10 54 7 8 +8319,15 55 53 9 16 61 16 17 10 54 7 4 +11744,1 6 55 57 9 61 62 52 7 4 +11630,1 6 55 57 9 61 62 52 7 8 +2505,15 96 36 37 38 19 89 11 8 +25597,5 6 53 12 61 16 17 37 32 7 4 +6560,15 55 26 88 57 58 89 13 +21154,15 55 12 16 36 16 17 37 68 7 4 +8807,1 6 57 57 9 16 17 11 8 +25918,15 88 89 56 54 7 4 +22707,1 6 57 57 9 16 17 11 13 +25919,15 88 89 56 54 7 8 +21155,15 55 12 16 36 16 17 37 68 7 8 +15489,15 65 9 16 17 74 85 7 4 +6042,1 6 55 57 57 67 36 37 17 11 8 +8377,1 6 55 9 61 62 63 7 8 +2131,5 6 9 16 17 10 30 7 4 +2132,5 6 9 16 17 10 30 7 8 +12711,5 6 57 53 90 91 66 54 7 4 +22437,1 6 88 9 36 37 38 37 35 7 8 +18813,15 9 16 17 37 10 7 4 +12911,1 6 53 26 55 51 52 13 +22070,15 12 16 17 118 17 11 8 +13310,5 6 57 53 90 91 66 54 7 8 +22436,1 6 88 9 36 37 38 37 35 7 4 +6043,1 6 55 57 57 67 36 37 17 11 13 +22071,15 12 16 17 118 17 11 13 +4400,1 6 65 57 58 66 13 +2303,1 6 31 47 36 37 10 7 8 +20136,5 6 53 9 36 37 69 +3017,1 6 88 88 57 53 9 10 7 8 +11126,1 6 88 88 57 53 9 10 7 4 +19280,1 6 88 55 56 89 7 8 +17873,5 6 53 51 47 36 37 10 7 8 +15529,5 6 64 36 37 38 37 48 68 54 7 4 +16065,1 6 88 55 56 89 7 4 +17627,5 6 64 36 37 38 37 48 68 54 7 8 +20348,5 6 9 16 36 37 38 37 108 35 7 8 +6923,5 6 53 12 16 17 11 54 7 4 +8191,1 6 96 16 36 16 61 16 17 10 7 4 +3827,5 6 53 12 16 17 11 54 7 8 +17872,5 6 53 51 47 36 37 10 7 4 +8192,1 6 96 16 36 16 61 16 17 10 7 8 +10698,5 6 55 53 18 12 16 17 37 108 50 54 7 8 +20349,5 6 9 16 36 37 38 37 108 35 7 4 +10214,5 6 55 53 18 12 16 17 37 108 50 54 7 4 +4412,5 6 53 31 36 37 69 +10355,1 6 55 67 42 43 17 43 68 7 4 +19793,5 6 90 16 17 37 72 56 7 4 +1981,15 55 53 55 56 54 7 8 +1982,15 55 53 55 56 54 7 4 +1269,1 6 9 16 17 43 32 10 54 7 8 +1325,1 6 9 16 17 43 32 10 54 7 4 +11894,5 6 57 12 36 37 38 11 13 +6986,15 55 71 36 37 17 91 54 54 7 8 +15155,5 6 9 10 58 58 89 13 +26005,5 45 21 22 17 37 108 35 87 7 4 +9579,15 34 107 108 68 7 8 +6985,15 55 71 36 37 17 91 54 54 7 4 +2040,1 6 9 16 17 43 50 7 8 +19946,15 9 16 17 62 17 10 7 8 +17395,5 6 36 37 10 30 7 8 +9580,15 34 107 108 68 7 4 +2565,1 6 9 16 17 43 50 7 4 +19947,15 9 16 17 62 17 10 7 4 +17398,5 6 36 37 10 30 7 4 +18283,5 6 71 117 16 17 37 35 7 8 +26196,5 6 76 16 17 11 8 +11893,5 6 57 12 36 37 38 11 8 +12651,1 6 53 53 12 16 61 16 17 19 13 +26759,1 6 55 12 16 36 37 38 17 11 8 +759,1 6 49 50 7 4 +23358,15 9 16 17 43 17 37 10 54 7 4 +105,1 6 49 50 7 8 +4357,5 6 9 16 16 61 62 115 52 7 4 +10213,15 55 53 51 107 108 108 50 54 7 4 +20144,15 9 16 17 43 17 37 10 54 7 8 +18343,15 12 36 16 36 16 17 11 87 7 8 +5873,15 55 53 51 107 108 108 50 54 7 8 +17248,5 6 57 53 31 61 62 63 7 4 +3059,15 55 90 16 61 16 17 37 50 7 8 +24204,5 6 88 89 66 11 8 +17838,5 6 64 61 62 37 52 85 54 7 4 +25743,5 6 57 53 31 61 62 63 7 8 +3060,15 55 90 16 61 16 17 37 50 7 4 +8088,1 6 57 92 9 16 17 10 93 58 7 4 +8091,1 6 57 92 9 16 17 10 93 58 7 8 +10103,5 6 9 16 17 43 30 7 8 +10102,5 6 9 16 17 43 30 7 4 +25004,5 6 64 61 62 37 52 85 54 7 8 +21205,1 6 51 47 48 7 4 +5699,1 6 18 12 16 17 37 68 89 7 8 +25580,1 6 51 47 48 7 8 +18592,5 6 53 9 16 17 75 7 4 +5700,1 6 18 12 16 17 37 68 89 7 4 +15752,1 6 86 34 47 36 37 17 11 8 +4779,5 6 9 10 89 54 7 8 +6812,5 6 34 107 108 108 35 7 4 +6232,1 6 57 58 11 7 4 +12855,1 6 53 71 36 37 17 63 7 4 +22352,70 16 36 16 17 10 54 54 7 8 +2060,1 6 57 58 11 7 8 +9592,1 6 65 66 54 7 8 +23586,5 6 90 16 42 16 17 11 13 +16548,1 6 55 57 92 31 32 13 +7912,5 6 90 16 42 16 17 11 8 +6813,5 6 34 107 108 108 35 7 8 +24177,1 6 84 12 16 16 17 17 3 8 +14923,15 57 57 9 61 62 10 54 7 4 +8820,5 6 47 36 37 10 7 4 +14922,15 57 57 9 61 62 10 54 7 8 +13752,1 6 51 47 48 50 7 8 +22353,70 16 36 16 17 10 54 54 7 4 +9593,1 6 65 66 54 7 4 +6651,1 6 51 47 48 50 7 4 +8552,1 6 55 65 31 32 66 56 7 4 +24509,1 6 36 37 17 91 7 4 +8551,1 6 55 65 31 32 66 56 7 8 +16402,1 6 51 52 125 13 +24176,1 6 84 12 16 16 17 17 3 4 +8897,1 6 84 12 16 17 37 72 85 54 7 8 +5751,1 12 11 58 13 +4780,5 6 9 10 89 54 7 4 +8898,1 6 84 12 16 17 37 72 85 54 7 4 +12159,1 6 9 36 37 17 63 7 8 +3699,5 6 88 89 66 7 4 +13870,1 12 16 36 37 38 37 48 32 7 8 +22857,5 6 12 36 37 38 37 48 32 7 8 +9679,1 6 29 18 12 16 17 11 13 +18652,15 65 55 71 47 48 68 7 8 +17459,5 6 12 36 37 38 37 48 32 7 4 +16507,15 71 117 16 17 37 52 7 8 +220,70 16 36 16 61 16 17 37 32 7 8 +579,5 6 64 36 37 38 37 35 54 7 4 +13984,1 6 29 71 36 37 17 10 30 7 8 +16508,15 71 117 16 17 37 52 7 4 +25867,1 6 57 92 51 52 93 58 7 8 +1873,15 96 36 37 38 37 10 7 8 +24413,1 6 55 55 55 57 55 96 36 37 38 19 13 +578,5 6 64 36 37 38 37 35 54 7 8 +11597,1 6 88 9 16 36 16 17 37 35 7 8 +6795,1 6 34 47 36 37 17 10 7 8 +8082,1 6 57 92 51 52 93 58 7 4 +1874,15 96 36 37 38 37 10 7 4 +9678,1 6 29 18 12 16 17 11 8 +11598,1 6 88 9 16 36 16 17 37 35 7 4 +6796,1 6 34 47 36 37 17 10 7 4 +2144,15 12 11 56 11 8 +19816,5 6 55 12 55 57 9 16 17 10 7 8 +3191,5 6 55 12 55 57 9 16 17 10 7 4 +221,70 16 36 16 61 16 17 37 32 7 4 +14167,5 6 92 9 10 66 7 4 +23103,1 6 92 31 47 61 62 63 7 4 +14166,5 6 92 9 10 66 7 8 +22230,5 6 12 16 36 16 17 37 10 7 4 +22611,1 6 84 64 16 17 63 85 54 7 4 +26006,5 45 21 22 17 37 108 35 87 7 8 +25550,1 6 92 31 47 61 62 63 7 8 +9496,1 12 11 56 13 +2047,1 6 84 64 16 17 63 85 54 7 8 +22231,5 6 12 16 36 16 17 37 10 7 8 +3698,5 6 88 89 66 7 8 +19847,5 6 57 53 53 54 58 7 8 +26038,5 6 57 53 53 54 58 7 4 +17601,15 55 34 36 37 10 7 8 +20863,1 6 113 61 62 17 37 35 11 85 54 7 8 +17600,15 55 34 36 37 10 7 4 +15997,1 6 86 88 88 90 16 17 120 7 8 +17330,1 6 86 88 88 90 16 17 120 7 4 +22204,25 26 27 11 58 89 13 +5683,1 6 9 16 17 37 35 54 7 4 +22910,5 6 90 61 62 17 3 4 +1333,5 6 9 10 10 7 4 +3037,5 6 36 37 94 +17101,96 16 36 16 17 43 32 66 7 4 +19977,1 6 9 16 17 37 35 54 7 8 +1330,5 6 9 10 10 7 8 +17100,96 16 36 16 17 43 32 66 7 8 +22949,1 6 65 9 16 17 75 7 4 +22426,5 6 49 47 36 37 19 11 8 +18651,15 65 55 71 47 48 68 7 4 +4744,5 6 12 12 16 17 11 8 +5803,5 6 12 12 16 17 11 13 +8293,1 6 12 57 9 16 61 16 17 11 13 +8292,1 6 12 57 9 16 61 16 17 11 8 +6714,5 6 86 9 16 17 11 7 4 +22215,1 6 88 89 89 11 7 4 +9272,5 6 86 9 16 17 11 7 8 +15173,1 6 9 10 23 7 8 +7903,5 6 90 91 58 89 7 4 +18812,15 9 16 17 37 10 7 8 +23498,1 6 88 89 89 11 7 8 +15816,5 6 53 12 34 35 33 13 +9505,5 6 90 91 58 89 7 8 +9296,1 6 90 91 11 54 7 4 +9383,1 6 53 9 9 16 17 69 +16011,1 6 49 107 36 37 17 10 7 4 +26079,1 6 26 88 89 11 56 7 8 +25042,1 6 12 16 36 16 17 37 35 56 7 4 +14882,1 6 57 9 16 42 16 17 19 7 4 +21150,5 6 57 67 47 48 72 54 7 8 +23353,5 6 90 16 17 37 48 50 7 8 +15488,15 65 9 16 17 74 85 7 8 +20658,1 6 90 91 11 54 7 8 +22271,5 6 57 67 47 48 72 54 7 4 +23352,5 6 90 16 17 37 48 50 7 4 +14453,15 44 9 39 36 39 36 16 17 19 7 4 +14454,15 44 9 39 36 39 36 16 17 19 7 8 +5923,70 36 16 17 37 11 7 8 +15179,1 6 9 16 36 37 38 17 10 93 7 4 +19550,5 6 12 65 9 16 17 37 68 11 8 +23300,70 36 16 17 37 11 7 4 +23856,5 6 53 51 107 108 72 7 8 +24829,1 6 57 53 34 107 108 35 54 7 4 +11639,5 6 53 51 107 108 72 7 4 +24462,15 31 42 43 17 91 7 4 +14130,1 6 88 9 16 36 16 17 62 10 7 4 +23021,1 6 57 65 66 7 8 +24461,15 31 42 43 17 91 7 8 +23020,1 6 57 65 66 7 4 +14131,1 6 88 9 16 36 16 17 62 10 7 8 +17516,5 6 53 55 9 16 42 16 17 63 7 4 +1435,1 6 67 42 43 17 37 52 7 4 +23866,15 12 44 49 114 115 52 54 7 4 +6081,5 6 41 88 12 26 9 16 17 62 10 7 8 +1381,1 6 9 10 54 54 7 8 +23867,15 12 44 49 114 115 52 54 7 8 +24151,1 6 57 53 9 10 58 54 7 4 +1384,1 6 9 10 54 54 7 4 +10095,1 6 9 10 11 23 7 4 +14163,1 6 9 10 66 23 7 4 +19586,5 6 55 57 12 16 36 37 38 17 37 32 7 8 +6820,5 6 55 12 57 9 16 36 37 38 17 10 7 8 +14164,1 6 9 10 66 23 7 8 +15223,1 6 9 10 11 23 7 8 +21496,70 16 36 61 16 17 62 10 7 4 +6080,5 6 41 88 12 26 9 16 17 62 10 7 4 +9118,1 6 55 12 88 55 56 56 89 13 +9220,5 6 49 42 43 17 63 7 4 +21495,70 16 36 61 16 17 62 10 7 8 +3946,15 71 36 37 38 19 13 +10074,5 6 49 42 43 17 63 7 8 +15284,15 9 16 36 16 36 37 38 17 10 7 4 +4580,5 6 53 12 36 37 38 11 13 +15285,15 9 16 36 16 36 37 38 17 10 7 8 +22211,1 6 12 12 36 37 38 37 72 7 8 +2194,5 6 12 11 89 13 +1119,5 6 53 12 36 37 38 11 8 +20921,15 34 47 47 36 37 17 11 8 +494,1 6 9 61 62 32 54 7 8 +20922,15 34 47 47 36 37 17 11 13 +4749,5 6 88 12 96 16 21 77 78 22 8 +493,1 6 9 61 62 32 54 7 4 +17523,1 6 12 16 17 37 32 7 8 +5832,1 6 57 53 9 10 58 54 7 8 +9781,1 6 84 9 10 87 58 85 7 4 +10529,15 88 57 58 11 8 +2634,1 6 53 67 47 107 36 37 63 7 4 +5980,5 6 9 16 36 16 61 16 17 10 7 4 +9780,1 6 84 9 10 87 58 85 7 8 +12167,1 6 53 67 47 107 36 37 63 7 8 +2350,5 6 9 16 36 16 61 16 17 10 7 8 +13277,1 6 9 61 62 10 54 7 8 +18907,5 6 53 55 9 16 42 16 17 63 7 8 +24348,15 34 42 43 11 8 +21545,1 6 53 9 31 61 62 63 7 8 +24349,15 34 42 43 11 13 +1631,1 6 12 26 65 9 16 17 10 7 8 +1630,1 6 12 26 65 9 16 17 10 7 4 +4800,1 6 9 10 87 54 7 4 +22034,5 6 55 12 12 16 17 19 13 +18102,5 6 84 49 47 48 48 52 85 54 7 4 +4799,1 6 9 10 87 54 7 8 +1948,5 6 84 49 47 48 48 52 85 54 7 8 +11990,5 6 55 12 88 9 16 17 19 7 8 +7914,1 6 55 12 55 88 57 58 56 11 8 +16330,5 6 55 12 88 9 16 17 19 7 4 +3760,1 6 53 31 32 54 54 7 4 +3761,1 6 53 31 32 54 54 7 8 +10655,15 96 16 36 16 21 77 78 22 79 4 +17810,96 36 16 17 11 8 +918,15 86 9 16 17 37 72 7 4 +919,15 86 9 16 17 37 72 7 8 +23371,5 6 9 16 61 62 52 7 4 +26720,1 6 67 36 37 69 +22325,5 6 65 9 16 117 118 50 7 8 +13734,1 6 57 55 56 89 7 4 +19308,5 6 55 53 9 16 17 11 8 +22652,1 6 51 52 30 7 8 +13735,1 6 57 55 56 89 7 8 +11236,1 6 53 57 9 39 36 16 17 10 7 8 +20660,1 6 64 61 62 10 93 58 7 8 +11235,1 6 53 57 9 39 36 16 17 10 7 4 +12224,1 6 64 61 62 10 93 58 7 4 +22665,1 6 51 52 30 7 4 +24902,1 6 12 12 36 37 38 37 72 7 4 +13550,15 96 36 16 61 16 17 37 52 11 7 4 +1482,1 6 53 53 54 7 4 +23809,15 12 11 58 56 7 4 +2684,1 6 84 88 55 9 16 17 10 7 8 +24753,5 6 31 42 43 17 37 32 30 30 7 8 +2683,1 6 84 88 55 9 16 17 10 7 4 +24752,5 6 31 42 43 17 37 32 30 30 7 4 +11032,1 6 67 36 37 94 +6699,1 6 31 36 37 11 13 +1478,1 6 53 53 54 7 8 +26457,15 53 64 36 37 38 37 108 35 54 7 8 +13628,1 6 9 16 17 37 32 7 8 +211,1 6 31 36 37 11 8 +26456,15 53 64 36 37 38 37 108 35 54 7 4 +4376,15 12 11 56 7 8 +4375,15 12 11 56 7 4 +2957,5 6 64 16 61 16 21 77 78 22 79 4 +18109,5 6 9 16 36 16 17 19 63 7 4 +13627,1 6 9 16 17 37 32 7 4 +16025,5 6 12 16 36 16 17 37 48 32 7 8 +18110,5 6 9 16 36 16 17 19 63 7 8 +20469,5 6 18 12 16 17 52 68 7 8 +25020,15 34 36 37 19 66 7 4 +16024,5 6 12 16 36 16 17 37 48 32 7 4 +20293,1 6 53 9 9 16 36 16 17 37 50 54 7 8 +7546,5 6 18 12 16 17 52 68 7 4 +25019,15 34 36 37 19 66 7 8 +690,5 6 55 9 16 17 63 7 4 +14668,5 6 55 9 16 17 63 7 8 +13853,5 6 53 34 47 36 37 17 69 +8545,5 6 53 53 9 10 58 7 4 +7714,5 6 57 9 16 17 10 85 7 8 +9545,15 71 36 37 17 63 7 4 +4457,5 6 34 35 66 56 7 4 +458,5 6 57 9 16 17 10 85 7 4 +9546,15 71 36 37 17 63 7 8 +4461,5 6 34 35 66 56 7 8 +24101,5 6 53 12 9 16 17 37 52 7 4 +8546,5 6 53 53 9 10 58 7 8 +12668,5 6 96 39 36 16 21 77 78 22 8 +24597,1 6 9 36 16 17 37 72 7 4 +19183,5 6 55 88 57 9 39 36 16 17 11 8 +3910,1 6 9 10 58 66 11 8 +23971,5 6 31 36 37 17 37 50 54 7 8 +2284,5 6 49 114 115 50 7 8 +23970,5 6 31 36 37 17 37 50 54 7 4 +8584,1 6 53 55 53 12 16 36 37 38 11 8 +15961,15 9 16 17 37 108 68 58 7 8 +15942,5 6 84 31 32 13 +12757,15 96 36 36 16 17 19 58 11 8 +2719,5 6 57 92 9 16 61 16 17 10 54 7 4 +4478,1 6 65 57 58 58 13 +15962,15 9 16 17 37 108 68 58 7 4 +26372,5 6 92 55 56 13 +15663,15 57 12 11 7 4 +4699,5 6 57 49 50 13 +19353,1 6 96 16 36 16 17 10 7 8 +15664,15 57 12 11 7 8 +19352,1 6 96 16 36 16 17 10 7 4 +24470,1 6 90 36 16 17 63 7 8 +8948,15 9 16 16 16 16 16 16 17 11 8 +24469,1 6 90 36 16 17 63 7 4 +8949,15 9 16 16 16 16 16 16 17 11 13 +602,1 6 31 42 43 17 63 7 8 +4894,1 6 9 16 36 37 38 37 35 7 8 +21707,5 6 53 12 11 54 13 +4895,1 6 9 16 36 37 38 37 35 7 4 +14593,5 6 64 16 17 120 7 4 +1450,15 88 89 89 7 4 +2188,1 6 34 36 37 17 19 7 8 +14592,5 6 64 16 17 120 7 8 +1449,15 88 89 89 7 8 +603,1 6 31 42 43 17 63 7 4 +3810,1 6 57 57 26 12 16 17 19 13 +11257,5 6 53 34 47 47 36 37 10 7 4 +7356,1 6 55 96 36 37 38 17 11 8 +7357,1 6 55 96 36 37 38 17 11 13 +23136,1 2 16 17 43 32 10 54 7 8 +25475,1 6 9 16 17 37 32 10 7 4 +23137,1 2 16 17 43 32 10 54 7 4 +7436,1 6 34 36 37 94 +20392,5 6 84 51 52 85 85 54 7 8 +2980,1 2 16 17 37 108 35 7 4 +2981,1 2 16 17 37 108 35 7 8 +11163,5 6 88 9 16 17 19 7 4 +1762,1 6 34 36 37 17 19 7 4 +3245,1 6 34 36 37 69 +1828,5 6 26 55 56 13 +19741,5 6 90 36 37 38 74 7 4 +19718,5 6 90 36 37 38 74 7 8 +4481,1 6 9 10 58 66 7 4 +491,1 6 53 9 10 54 7 4 +490,1 6 53 9 10 54 7 8 +12379,1 6 12 67 47 48 68 11 7 8 +19014,5 6 88 9 16 17 19 7 8 +24525,5 6 12 16 36 37 38 17 11 110 48 72 7 4 +9246,15 96 16 36 37 38 37 35 7 4 +9247,15 96 16 36 37 38 37 35 7 8 +4279,1 6 9 10 58 66 7 8 +15549,1 6 84 12 9 16 17 10 7 4 +18598,5 6 55 57 53 9 16 61 16 17 19 7 8 +1195,1 6 31 36 37 17 69 +14336,1 6 84 12 9 16 17 10 7 8 +18597,5 6 55 57 53 9 16 61 16 17 19 7 4 +8749,1 6 26 9 16 17 37 48 52 56 7 4 +13780,1 6 34 36 37 17 +8748,1 6 26 9 16 17 37 48 52 56 7 8 +25011,15 96 36 37 38 17 19 58 11 56 7 4 +19312,15 34 36 37 38 91 7 4 +4913,15 88 57 58 7 4 +10548,15 55 34 36 37 17 62 10 7 8 +4914,15 88 57 58 7 8 +10547,15 55 34 36 37 17 62 10 7 4 +20100,1 6 67 42 43 17 37 52 7 8 +19311,15 34 36 37 38 91 7 8 +6013,1 6 65 57 58 56 13 +22731,5 6 64 61 62 17 118 17 37 52 7 4 +26011,15 90 16 17 37 11 8 +16534,1 6 55 88 89 66 7 4 +8331,15 96 36 16 17 19 58 11 8 +21506,1 6 55 88 89 66 7 8 +23842,5 6 9 36 16 17 37 50 87 7 8 +6346,1 45 21 22 17 37 68 85 7 8 +9725,1 6 55 12 57 96 36 37 38 19 58 11 8 +3281,15 65 67 36 37 17 37 48 72 7 4 +25329,1 2 16 17 63 7 4 +21959,1 6 67 107 108 35 87 7 8 +3280,15 65 67 36 37 17 37 48 72 7 8 +20696,1 2 16 17 63 7 8 +24949,5 6 64 61 62 17 37 72 58 7 8 +5306,5 6 53 31 42 43 17 37 32 54 7 8 +8975,1 6 53 9 16 36 37 38 17 11 13 +13370,5 6 49 47 47 36 37 38 17 19 13 +188,15 9 61 62 68 7 4 +741,1 12 16 61 16 17 11 8 +1518,5 6 64 61 62 17 37 72 58 7 4 +21490,1 6 64 61 62 37 10 7 8 +9899,5 6 53 31 42 43 17 37 32 54 7 4 +189,15 9 61 62 68 7 8 +25192,1 6 67 68 56 56 11 8 +8108,5 6 53 9 16 17 37 35 11 7 8 +10590,1 6 9 10 56 11 56 7 4 +24167,1 6 9 16 17 17 37 52 11 8 +16683,1 6 9 10 56 11 56 7 8 +21489,1 6 64 61 62 37 10 7 4 +17239,5 6 49 47 42 43 17 37 52 54 7 4 +3724,5 6 53 90 16 36 16 61 16 17 19 7 4 +7340,5 6 92 34 36 37 17 43 32 93 7 8 +18034,1 6 119 39 36 16 16 17 98 +4634,1 6 31 36 37 17 91 7 4 +23508,1 6 76 61 62 72 7 8 +6566,15 88 9 16 36 37 38 17 10 7 8 +10958,5 6 53 90 16 36 16 61 16 17 19 7 8 +6565,15 88 9 16 36 37 38 17 10 7 4 +2169,15 65 55 56 13 +18535,5 6 84 18 12 16 17 17 10 85 7 4 +21871,5 6 67 47 48 48 52 54 7 4 +18963,5 6 53 26 55 49 50 13 +21872,5 6 67 47 48 48 52 54 7 8 +9801,5 6 9 36 16 61 16 17 10 7 8 +14943,5 6 84 18 12 16 17 17 10 85 7 8 +5428,15 34 36 37 17 37 35 54 7 8 +17992,1 6 127 42 43 17 106 7 8 +8974,1 6 53 9 16 36 37 38 17 11 8 +5429,15 34 36 37 17 37 35 54 7 4 +17991,1 6 127 42 43 17 106 7 4 +20141,70 36 16 17 37 108 48 72 54 7 4 +25764,5 6 9 10 56 89 56 7 8 +20140,70 36 16 17 37 108 48 72 54 7 8 +4469,5 6 9 10 56 89 56 7 4 +12753,15 53 12 36 37 38 19 13 +1370,5 6 64 61 62 17 37 52 85 54 7 8 +10984,15 44 34 36 37 17 19 13 +9540,5 6 55 88 57 9 16 36 37 38 17 10 7 8 +19740,15 86 34 36 37 91 7 8 +1371,5 6 64 61 62 17 37 52 85 54 7 4 +2358,5 6 55 57 9 16 36 37 38 17 10 7 8 +665,5 6 51 52 11 7 4 +4723,1 6 88 96 36 16 17 19 11 8 +20602,5 6 55 26 88 34 35 58 7 4 +7266,5 6 51 52 11 7 8 +13001,1 6 76 16 39 36 16 61 16 17 19 13 +22388,1 6 90 39 36 16 61 16 17 19 7 8 +19455,1 6 64 16 36 16 16 17 11 8 +22389,1 6 90 39 36 16 61 16 17 19 7 4 +24710,15 109 88 57 58 13 +14747,15 34 107 107 47 48 35 7 4 +14748,15 34 107 107 47 48 35 7 8 +15789,5 6 119 16 117 118 32 7 4 +3826,5 6 53 12 11 7 4 +24433,5 6 119 16 117 118 32 7 8 +26034,5 6 64 61 62 17 37 108 35 54 54 7 4 +4696,5 6 64 61 62 17 37 108 35 54 54 7 8 +5748,5 6 12 88 65 88 9 16 17 37 50 7 8 +1423,5 6 18 12 16 17 37 52 7 8 +14954,1 6 18 12 16 42 16 17 19 7 4 +9093,5 6 84 18 12 16 17 10 85 54 7 4 +785,5 6 18 12 16 17 37 52 7 4 +9092,5 6 84 18 12 16 17 10 85 54 7 8 +12562,5 6 53 9 10 58 87 58 54 7 4 +14953,1 6 18 12 16 42 16 17 19 7 8 +11691,15 86 34 36 37 91 7 4 +12563,5 6 53 9 10 58 87 58 54 7 8 +3367,5 6 53 12 11 7 8 +6273,15 53 9 10 27 11 8 +17832,5 6 71 36 37 17 43 32 93 7 8 +3289,5 6 55 57 67 47 36 37 17 11 8 +17831,5 6 71 36 37 17 43 32 93 7 4 +24964,1 6 76 61 62 72 7 4 +2349,1 6 57 9 61 62 52 7 8 +22321,5 6 9 10 66 27 58 89 7 8 +22721,5 6 64 16 42 16 17 43 32 93 7 4 +7967,1 6 57 9 61 62 52 7 4 +18414,5 6 9 10 66 27 58 89 7 4 +19371,1 6 9 9 9 9 9 16 17 11 8 +8779,5 6 12 11 33 13 +24846,5 6 55 57 57 9 16 36 37 38 37 50 7 4 +20330,5 6 92 42 43 63 7 4 +12049,5 6 109 9 61 16 17 19 7 8 +10564,5 6 84 12 34 36 37 17 10 7 8 +20331,5 6 92 42 43 63 7 8 +6327,15 96 16 36 16 17 37 72 7 8 +12050,5 6 109 9 61 16 17 19 7 4 +15033,1 6 31 42 43 17 37 35 93 7 4 +6326,15 96 16 36 16 17 37 72 7 4 +15034,1 6 31 42 43 17 37 35 93 7 8 +12948,15 44 34 36 16 17 62 10 7 4 +21478,1 6 57 92 67 47 107 36 37 63 7 4 +9063,5 6 31 47 48 32 7 8 +5588,5 6 84 9 10 54 7 4 +22767,15 57 88 57 109 12 16 17 19 13 +5578,5 6 84 9 10 54 7 8 +23878,5 6 53 18 12 16 17 37 35 56 54 7 4 +2866,5 6 86 9 16 17 10 7 4 +4640,5 6 86 9 16 17 10 7 8 +18417,1 6 76 16 36 16 17 37 35 54 54 7 8 +24591,15 53 18 9 16 17 43 32 54 7 8 +11853,1 6 76 16 36 16 17 37 35 54 54 7 4 +23879,5 6 53 18 12 16 17 37 35 56 54 7 8 +10787,1 6 53 12 16 61 16 36 37 38 17 62 10 7 4 +10257,15 44 67 47 117 16 17 11 13 +10256,15 44 67 47 117 16 17 11 8 +10786,1 6 53 12 16 61 16 36 37 38 17 62 10 7 8 +26540,15 55 53 9 10 66 7 4 +14811,1 6 86 55 65 66 7 4 +26539,15 55 53 9 10 66 7 8 +3290,5 6 55 57 67 47 36 37 17 11 13 +21050,1 6 86 55 65 66 7 8 +16483,5 6 64 16 36 16 17 37 52 7 8 +26018,97 16 99 16 17 91 7 8 +3524,5 6 31 47 48 32 7 4 +26800,1 6 65 88 57 57 9 16 36 37 38 17 10 7 8 +5160,15 53 65 57 34 35 7 4 +12264,1 45 21 22 17 43 32 7 4 +5895,1 6 53 55 56 58 13 +26823,1 45 21 22 17 43 32 7 8 +23373,15 9 16 61 62 52 7 8 +23372,15 9 16 61 62 52 7 4 +16723,5 6 71 107 108 72 7 4 +19539,5 6 57 53 9 16 61 16 17 10 54 7 4 +17057,5 6 57 53 9 16 61 16 17 10 54 7 8 +312,5 6 9 16 17 63 7 4 +23290,1 6 53 67 114 36 37 17 63 7 8 +21835,1 6 53 67 114 36 37 17 63 7 4 +22234,15 51 36 37 37 32 10 7 4 +24590,15 53 18 9 16 17 43 32 54 7 4 +10908,5 6 64 16 36 16 17 10 85 54 7 8 +22235,15 51 36 37 37 32 10 7 8 +13150,5 6 64 16 36 16 17 10 85 54 7 4 +313,5 6 9 16 17 63 7 8 +16114,5 6 71 107 108 72 7 8 +2197,1 12 11 89 13 +18075,1 6 84 34 36 37 94 +26786,5 6 90 36 16 61 16 17 37 108 35 7 8 +24896,1 6 64 61 62 17 37 108 35 54 7 8 +2200,5 6 88 12 26 65 66 11 8 +20716,5 6 64 61 62 17 37 48 52 7 8 +1563,15 57 58 89 56 7 8 +1342,5 6 9 61 62 32 54 85 54 7 4 +745,15 57 58 89 56 7 4 +9649,15 57 53 34 36 37 17 10 54 7 8 +4821,1 6 88 67 68 52 7 4 +9650,15 57 53 34 36 37 17 10 54 7 4 +25300,5 6 64 61 62 17 37 48 52 7 4 +23855,5 6 9 16 36 16 61 16 17 11 7 8 +7418,5 6 9 36 16 61 16 17 10 7 4 +13636,15 86 12 16 39 36 16 21 77 78 22 79 4 +4820,1 6 88 67 68 52 7 8 +13707,1 6 67 42 43 17 43 68 7 4 +4284,1 12 61 16 17 62 10 7 4 +13706,1 6 67 42 43 17 43 68 7 8 +8725,1 12 61 16 17 62 10 7 8 +22513,97 16 99 16 17 37 35 7 4 +23197,15 88 57 58 58 13 +3790,5 6 9 10 58 89 56 89 7 4 +24845,15 55 9 16 36 37 38 37 10 7 4 +2397,1 6 65 9 16 17 10 7 8 +22514,97 16 99 16 17 37 35 7 8 +8115,5 6 9 10 58 89 56 89 7 8 +914,1 6 65 9 16 17 10 7 4 +9740,15 71 42 43 17 63 85 7 4 +9915,1 6 9 10 89 56 7 8 +9741,15 71 42 43 17 63 85 7 8 +24844,15 55 9 16 36 37 38 37 10 7 8 +26785,5 6 90 36 16 61 16 17 37 108 35 7 4 +5159,15 53 65 57 34 35 7 8 +9914,1 6 9 10 89 56 7 4 +16482,5 6 64 16 36 16 17 37 52 7 4 +22446,15 51 36 37 91 7 4 +6469,5 6 31 42 43 17 10 54 54 7 4 +22447,15 51 36 37 91 7 8 +21357,5 6 31 42 43 17 10 54 54 7 8 +17534,5 6 12 11 23 24 +11520,5 6 12 16 61 16 36 16 17 19 13 +15793,5 6 12 36 16 61 16 21 77 78 22 79 4 +8620,5 6 105 16 17 91 7 8 +3045,5 6 105 16 17 91 7 4 +26783,15 9 16 36 16 17 43 50 7 8 +260,5 6 12 67 47 36 37 17 11 8 +26782,15 9 16 36 16 17 43 50 7 4 +21081,1 6 67 114 115 50 7 8 +25307,1 6 57 55 67 36 37 11 8 +14833,1 6 86 9 16 17 37 35 93 7 8 +2995,5 6 9 16 17 37 48 50 58 7 8 +18095,5 6 9 10 11 14 7 8 +25287,1 6 55 34 47 36 37 17 10 7 4 +11963,5 6 9 10 11 14 7 4 +17767,5 6 53 55 57 9 16 17 37 123 11 8 +25549,1 6 92 61 62 48 32 93 7 4 +15368,1 6 34 47 48 48 68 7 8 +18919,1 6 92 61 62 48 32 93 7 8 +7133,1 6 84 57 58 13 +24721,1 6 57 92 12 16 17 43 48 32 93 58 7 4 +17171,1 6 57 92 12 16 17 43 48 32 93 58 7 8 +24854,1 6 67 42 43 17 37 50 54 7 8 +8199,1 6 34 47 48 48 68 7 4 +15859,1 6 67 42 43 17 37 72 54 7 4 +225,1 6 64 61 62 17 3 8 +15858,1 6 67 42 43 17 37 72 54 7 8 +24934,1 6 53 31 32 56 7 8 +226,1 6 64 61 62 17 3 4 +23359,15 9 16 36 37 38 17 63 7 8 +5140,5 6 92 9 16 17 10 93 7 8 +5139,5 6 92 9 16 17 10 93 7 4 +23696,1 6 84 57 58 66 85 7 8 +10151,1 6 34 47 47 36 37 11 8 +6261,5 6 65 9 16 61 16 17 10 7 4 +25317,15 65 31 36 37 11 13 +18355,15 65 31 36 37 11 8 +16248,1 6 64 61 62 17 37 50 85 7 8 +22162,5 6 12 12 16 17 37 35 11 8 +14498,15 49 36 37 38 37 10 7 4 +16249,1 6 64 61 62 17 37 50 85 7 4 +430,5 6 84 18 12 11 14 85 7 8 +1872,15 49 36 37 38 37 10 7 8 +23202,1 6 57 57 57 9 16 36 37 38 17 10 7 8 +433,5 6 84 18 12 11 14 85 7 4 +23201,1 6 57 57 57 9 16 36 37 38 17 10 7 4 +12199,15 12 11 123 7 8 +12198,15 12 11 123 7 4 +8824,15 67 68 54 7 8 +7175,15 44 34 36 37 17 3 8 +8823,15 67 68 54 7 4 +7239,1 6 18 12 16 17 63 7 4 +7174,15 44 34 36 37 17 3 4 +8924,1 6 18 12 16 17 63 7 8 +16110,15 65 71 47 48 50 7 4 +12392,15 53 9 10 10 54 7 8 +16259,1 6 92 34 36 37 63 54 7 8 +16109,15 65 71 47 48 50 7 8 +12393,15 53 9 10 10 54 7 4 +21390,1 6 53 18 12 61 16 61 16 17 62 10 7 8 +22173,5 6 92 61 62 32 93 7 4 +13291,1 6 57 53 9 16 17 63 7 8 +25470,1 6 53 18 12 61 16 61 16 17 62 10 7 4 +22599,15 47 48 50 7 4 +22174,5 6 92 61 62 32 93 7 8 +21273,1 6 57 53 9 16 17 63 7 4 +22600,15 47 48 50 7 8 +16350,1 6 9 36 16 61 16 17 37 7 8 +19000,5 6 55 55 88 89 66 13 +21179,1 6 9 36 16 61 16 17 37 7 4 +26546,15 65 49 36 37 17 19 13 +2328,5 6 57 57 57 12 16 17 10 7 4 +21419,1 6 49 50 33 11 8 +1312,1 6 49 50 89 13 +7530,5 6 57 57 57 12 16 17 10 7 8 +11290,5 6 53 88 26 65 66 27 28 +13564,5 6 53 12 16 17 37 35 54 85 54 7 4 +10705,5 6 9 16 36 16 17 11 7 8 +18025,70 16 17 106 7 4 +6049,15 57 67 36 37 17 62 10 7 8 +6604,1 12 16 39 36 39 36 16 17 69 +6050,15 57 67 36 37 17 62 10 7 4 +18586,1 6 88 51 42 43 17 10 93 58 7 8 +26580,5 6 67 47 48 48 52 7 8 +26581,5 6 67 47 48 48 52 7 4 +11932,15 31 117 16 17 11 13 +18585,1 6 88 51 42 43 17 10 93 58 7 4 +23330,1 6 57 96 36 37 38 37 48 35 7 8 +12708,1 6 64 61 62 106 54 7 8 +11931,15 31 117 16 17 11 8 +11201,5 6 12 26 9 16 17 10 30 7 8 +13560,1 12 11 54 85 54 7 4 +11200,5 6 12 26 9 16 17 10 30 7 4 +19450,5 6 12 49 36 16 61 16 17 11 8 +15660,5 6 31 47 107 107 36 37 19 +20743,1 12 36 16 39 36 16 17 19 13 +26180,1 6 53 51 36 37 17 37 68 7 4 +20189,1 6 53 51 36 37 17 37 68 7 8 +17230,1 6 96 16 36 16 21 77 78 22 8 +16363,15 53 9 10 54 54 7 4 +5420,1 6 53 54 56 54 7 8 +16362,15 53 9 10 54 54 7 8 +16679,5 6 55 53 88 9 16 61 16 17 10 7 4 +5742,15 26 88 89 66 11 8 +5426,1 6 53 54 56 54 7 4 +7450,5 6 64 36 16 17 69 +12416,5 6 55 53 88 9 16 61 16 17 10 7 8 +26101,1 6 67 47 36 37 17 37 48 72 7 4 +18432,15 44 96 39 36 16 61 16 17 62 10 7 8 +26620,5 6 53 12 96 16 21 77 78 22 8 +18433,15 44 96 39 36 16 61 16 17 62 10 7 4 +8325,5 6 55 12 55 88 89 13 +9467,5 6 53 18 12 11 14 54 54 7 8 +2754,15 71 47 48 68 56 89 7 8 +2755,15 71 47 48 68 56 89 7 4 +26252,5 6 57 9 36 16 17 37 10 7 8 +11265,15 9 36 16 36 37 38 37 35 7 4 +4303,1 12 16 61 16 17 19 13 +21229,1 6 49 50 33 7 8 +11266,15 9 36 16 36 37 38 37 35 7 8 +11006,1 6 53 67 47 107 36 37 17 63 7 4 +9466,5 6 53 18 12 11 14 54 54 7 4 +17041,1 6 53 67 47 107 36 37 17 63 7 8 +195,1 6 64 61 62 17 11 13 +869,5 6 71 42 43 17 91 7 8 +24507,1 6 71 107 36 37 69 +22432,5 6 96 16 39 36 16 42 16 17 37 35 7 4 +17122,5 6 9 16 17 37 48 72 7 8 +194,1 6 64 61 62 17 11 8 +24295,5 6 96 16 39 36 16 42 16 17 37 35 7 8 +8652,1 6 18 12 16 17 37 35 87 7 8 +17354,1 6 57 55 67 117 16 17 118 17 11 8 +4141,5 6 88 31 36 37 11 8 +8651,1 6 18 12 16 17 37 35 87 7 4 +16979,5 6 71 42 43 17 91 7 4 +4181,5 6 57 53 9 16 61 16 17 62 10 7 8 +21652,1 6 34 36 37 17 10 30 7 8 +4499,5 6 64 16 36 37 38 37 48 72 7 4 +18381,5 6 57 53 9 16 61 16 17 62 10 7 4 +26345,15 49 16 17 68 7 8 +4500,5 6 64 16 36 37 38 37 48 72 7 8 +23439,1 6 9 16 17 43 48 32 87 7 8 +159,5 6 53 34 36 37 17 62 10 7 8 +12771,15 55 9 16 36 16 17 62 10 7 4 +158,5 6 53 34 36 37 17 62 10 7 4 +24234,5 6 55 55 53 34 36 37 38 19 7 4 +3469,1 6 12 16 36 16 17 19 13 +14901,1 6 9 61 62 30 7 8 +24111,5 6 113 61 62 17 37 35 54 7 8 +14018,5 6 55 71 36 37 17 10 54 7 4 +14017,5 6 55 71 36 37 17 10 54 7 8 +830,5 6 57 58 58 89 13 +12775,15 44 34 36 37 17 11 8 +12770,15 55 9 16 36 16 17 62 10 7 8 +26239,15 55 12 109 88 57 58 110 50 7 4 +23436,1 6 9 16 17 43 48 32 87 7 4 +12776,15 44 34 36 37 17 11 13 +22793,5 6 55 88 89 11 56 7 8 +26344,15 49 16 17 68 7 4 +14667,5 6 55 88 57 9 16 36 37 38 17 10 7 4 +9251,15 71 47 48 72 54 7 8 +14356,1 6 61 62 63 7 8 +14355,1 6 61 62 63 7 4 +21438,1 6 71 36 16 42 16 17 37 35 7 8 +9250,15 71 47 48 72 54 7 4 +23262,1 6 53 9 36 61 16 17 62 10 7 4 +2110,5 6 9 61 62 7 8 +4415,1 6 12 16 17 19 14 54 7 8 +20223,5 6 9 16 61 16 61 16 17 63 7 4 +2109,5 6 9 61 62 7 4 +20222,5 6 9 16 61 16 61 16 17 63 7 8 +25674,15 86 34 42 43 17 10 7 8 +3580,5 6 55 31 47 48 35 7 4 +11211,15 86 34 42 43 17 10 7 4 +12623,5 6 9 61 62 32 30 7 8 +930,1 6 84 18 12 11 14 7 8 +8471,5 6 55 31 47 48 35 7 8 +13971,15 65 57 65 66 13 +929,1 6 84 18 12 11 14 7 4 +22148,1 6 64 61 62 17 17 3 8 +15245,5 6 12 11 93 7 8 +20939,16 16 17 17 +13272,1 6 55 96 16 21 77 78 22 79 4 +10081,1 6 12 16 61 16 36 37 38 17 11 8 +14961,1 12 16 17 43 68 7 4 +6896,1 12 16 17 43 68 7 8 +12787,5 6 55 56 89 54 7 8 +7341,5 6 92 34 36 37 17 43 32 93 7 4 +22754,15 31 36 16 21 77 78 22 79 4 +8098,1 6 57 12 16 61 16 17 62 10 7 4 +18714,5 6 57 55 31 47 48 32 7 8 +2921,1 6 55 9 16 36 16 17 11 8 +25868,1 6 57 12 16 61 16 17 62 10 7 8 +21750,1 6 34 47 36 37 75 7 4 +14861,5 6 55 88 89 66 56 7 8 +16418,1 6 9 16 39 36 16 42 16 17 62 10 7 8 +17506,5 6 55 88 89 66 56 7 4 +3455,15 12 57 58 58 89 7 4 +5147,15 88 57 58 54 7 8 +771,15 12 57 58 58 89 7 8 +5146,15 88 57 58 54 7 4 +7184,5 6 53 9 36 16 17 37 52 54 7 4 +23881,1 6 84 65 90 16 17 10 85 7 4 +12788,5 6 55 56 89 54 7 4 +14890,1 6 29 9 16 17 11 7 8 +18489,1 6 84 65 90 16 17 10 85 7 8 +22165,15 55 9 16 36 16 17 37 35 7 4 +16417,1 6 9 16 39 36 16 42 16 17 62 10 7 4 +25746,1 12 16 39 36 16 17 62 10 7 8 +16658,1 6 29 9 16 17 11 7 4 +543,5 6 53 9 36 16 17 37 52 54 7 8 +22166,15 55 9 16 36 16 17 37 35 7 8 +18380,1 12 16 39 36 16 17 62 10 7 4 +26665,5 6 57 9 16 39 36 16 117 118 115 52 7 8 +25408,15 12 16 36 16 17 11 7 4 +24268,5 6 55 9 16 36 37 38 17 37 68 54 7 8 +25607,1 6 26 55 88 89 13 +5666,70 16 36 61 16 17 37 7 4 +22741,5 6 90 61 62 17 62 10 7 8 +18616,5 6 76 61 62 17 37 35 87 7 8 +22737,5 6 90 61 62 17 62 10 7 4 +10344,1 6 84 53 54 58 7 4 +3357,1 6 9 16 17 43 52 7 8 +6676,1 6 9 16 17 43 52 7 4 +22128,15 12 34 36 37 17 11 8 +17699,15 44 96 16 36 16 21 77 78 22 79 4 +19798,15 9 16 17 43 48 52 7 4 +18175,5 6 53 34 36 37 17 37 35 7 4 +19799,15 9 16 17 43 48 52 7 8 +19889,5 6 55 57 57 9 36 37 38 10 7 8 +25537,5 6 55 57 12 11 58 7 8 +21270,5 6 53 51 31 61 62 63 7 8 +13381,5 6 49 47 36 37 17 11 13 +14487,15 9 36 16 17 10 54 7 4 +14488,15 9 36 16 17 10 54 7 8 +6245,5 6 49 47 36 37 17 11 8 +26837,5 6 53 88 88 9 16 36 37 38 37 48 35 54 7 8 +11,5 6 12 11 7 4 +12798,1 6 53 18 12 16 17 63 54 7 8 +13461,1 6 29 9 16 17 10 7 8 +13462,1 6 29 9 16 17 10 7 4 +17881,1 6 53 49 47 36 37 10 7 4 +19309,15 55 53 9 16 17 11 13 +17882,1 6 53 49 47 36 37 10 7 8 +25180,1 6 57 9 16 36 16 17 62 10 7 8 +12799,1 6 53 18 12 16 17 63 54 7 4 +15004,15 55 53 12 34 36 37 17 11 8 +972,5 6 84 64 16 36 16 17 37 72 85 7 4 +971,5 6 84 64 16 36 16 17 37 72 85 7 8 +4330,5 6 9 16 17 43 32 7 8 +7612,5 6 67 61 62 112 7 8 +337,5 6 9 16 17 43 32 7 4 +2096,5 6 67 61 62 112 7 4 +26333,5 6 53 12 39 36 16 61 16 17 11 13 +13030,5 6 53 12 39 36 16 61 16 17 11 8 +6954,5 6 49 36 37 10 54 7 8 +10579,1 6 12 16 36 16 17 11 8 +20981,1 12 16 36 16 17 37 48 7 4 +20990,5 6 49 36 37 10 54 7 4 +10580,1 6 12 16 36 16 17 11 13 +3085,1 6 57 9 16 17 37 52 7 4 +5807,15 86 12 16 36 16 21 77 78 22 79 4 +3987,1 81 77 78 82 83 8 +12243,1 6 57 9 16 17 37 52 7 8 +2722,15 55 53 9 16 17 11 8 +973,5 6 84 73 16 36 16 17 11 8 +23085,5 6 12 16 17 37 52 68 7 4 +19870,5 6 86 31 36 37 63 7 8 +22298,1 6 53 55 51 61 62 63 7 8 +4422,5 6 64 16 61 16 17 37 35 54 7 8 +23715,5 6 12 16 17 37 52 68 7 8 +17566,1 6 49 47 47 36 37 17 10 54 7 4 +10502,1 6 9 16 17 43 52 11 8 +9995,15 119 16 117 118 32 7 8 +9996,15 119 16 117 118 32 7 4 +3788,15 57 58 89 56 89 7 4 +10444,1 6 53 34 36 37 17 10 54 54 7 8 +11203,5 6 29 9 16 17 11 8 +3789,15 57 58 89 56 89 7 8 +11852,1 6 53 34 36 37 17 10 54 54 7 4 +15232,1 6 90 16 17 37 35 7 8 +17893,15 65 12 16 17 37 35 87 7 8 +14343,1 6 90 16 17 37 35 7 4 +11843,5 6 84 53 53 54 85 7 4 +26398,5 6 53 64 36 37 38 37 68 13 +11844,5 6 84 53 53 54 85 7 8 +4333,1 12 9 16 42 16 17 11 13 +20122,15 65 57 57 57 9 16 17 11 8 +5176,5 6 64 16 17 63 54 7 4 +20123,15 65 57 57 57 9 16 17 11 13 +25937,1 6 53 51 47 36 37 17 11 8 +5175,5 6 64 16 17 63 54 7 8 +4332,1 12 9 16 42 16 17 11 8 +22612,1 6 57 67 68 89 13 +13033,5 6 9 16 17 43 32 11 13 +7815,5 6 9 16 17 43 32 11 8 +14044,5 6 53 12 49 50 7 4 +23784,5 6 84 18 12 16 17 37 72 85 7 8 +14045,5 6 53 12 49 50 7 8 +23785,5 6 84 18 12 16 17 37 72 85 7 4 +6045,5 6 55 57 57 51 36 37 17 11 8 +11890,15 57 51 36 37 11 8 +9738,1 6 12 39 36 16 17 11 7 4 +24572,1 6 12 88 90 16 36 16 17 37 32 7 4 +11891,15 57 51 36 37 11 13 +13622,1 6 12 39 36 16 17 11 7 8 +24573,1 6 12 88 90 16 36 16 17 37 32 7 8 +19773,1 6 57 9 16 17 37 52 11 8 +24426,1 6 57 9 16 36 16 17 37 35 7 4 +8991,15 57 58 87 7 8 +5665,70 16 36 61 16 17 37 7 8 +25024,1 6 84 9 10 56 85 54 7 4 +8990,15 57 58 87 7 4 +6046,5 6 55 57 57 51 36 37 17 11 13 +15911,1 6 84 9 10 56 85 54 7 8 +11590,1 6 57 9 16 36 16 17 37 35 7 8 +11487,5 45 21 22 17 37 48 52 58 7 4 +23514,1 6 65 9 16 42 16 17 62 75 7 8 +24732,5 6 55 53 57 58 56 54 54 7 8 +4270,15 57 9 16 17 37 35 93 7 4 +7638,15 86 55 65 66 13 +12399,5 45 21 22 17 37 48 52 58 7 8 +21374,5 6 57 49 36 37 17 10 54 7 4 +17340,1 6 55 88 55 56 56 7 4 +8555,5 6 53 12 61 16 17 62 10 7 8 +14552,1 6 96 36 37 38 19 11 8 +14537,5 6 64 53 9 10 11 54 7 8 +3771,15 9 36 16 17 37 7 8 +4269,15 57 9 16 17 37 35 93 7 8 +3772,15 9 36 16 17 37 7 4 +8372,5 6 53 12 61 16 17 62 10 7 4 +12426,15 51 36 16 21 77 78 22 79 4 +8173,15 9 36 16 17 37 35 7 4 +12665,116 81 77 78 22 79 4 +26673,1 6 18 12 16 17 118 17 37 52 56 7 8 +4197,16 16 17 62 10 7 8 +26672,1 6 18 12 16 17 118 17 37 52 56 7 4 +17117,1 6 31 47 47 36 37 17 37 50 58 54 7 4 +4198,16 16 17 62 10 7 4 +8174,15 9 36 16 17 37 35 7 8 +23424,1 6 88 9 16 17 106 7 8 +23425,1 6 88 9 16 17 106 7 4 +21710,1 6 53 18 12 16 17 17 3 4 +22776,1 6 53 18 12 16 17 17 3 8 +5735,15 9 16 36 39 36 16 61 16 17 11 13 +12332,5 6 18 12 16 17 43 72 7 4 +872,5 6 18 12 16 17 43 72 7 8 +5734,15 9 16 36 39 36 16 61 16 17 11 8 +23184,1 6 57 9 16 117 118 68 7 4 +16475,1 6 9 16 61 16 17 10 7 4 +1098,15 12 11 54 7 8 +11911,1 6 65 57 58 11 8 +1097,15 12 11 54 7 4 +16474,1 6 9 16 61 16 17 10 7 8 +24086,5 6 84 49 36 16 17 19 13 +17800,5 6 57 49 36 37 17 10 54 7 8 +16896,1 6 53 12 36 37 10 7 8 +16897,1 6 53 12 36 37 10 7 4 +7394,5 6 64 61 62 17 63 7 8 +18985,15 12 16 36 16 61 16 17 10 7 8 +6703,5 6 64 61 62 17 63 7 4 +18984,15 12 16 36 16 61 16 17 10 7 4 +2378,1 6 51 107 36 37 17 19 13 +18294,5 6 57 92 9 16 61 16 17 11 8 +130,1 6 53 31 32 54 7 4 +435,5 6 84 57 58 7 8 +448,5 6 84 57 58 7 4 +1130,1 6 53 31 32 54 7 8 +19214,1 6 96 36 37 38 19 7 4 +17118,1 6 31 47 47 36 37 17 37 50 58 54 7 8 +12660,1 6 96 36 37 38 19 7 8 +3134,5 6 53 34 36 37 17 10 54 7 8 +23098,5 6 9 36 16 36 16 61 16 17 37 35 7 4 +3135,5 6 53 34 36 37 17 10 54 7 4 +23477,1 12 9 16 42 16 17 19 13 +8838,15 67 47 107 108 108 48 68 13 +8211,1 6 64 16 36 16 17 37 52 54 7 4 +9787,1 6 84 57 71 36 37 17 10 7 8 +16835,1 6 64 16 36 16 17 37 52 54 7 8 +10333,1 6 88 9 16 42 16 17 11 8 +14704,15 9 36 16 17 62 10 7 4 +21734,1 12 36 16 17 43 32 7 4 +14703,15 9 36 16 17 62 10 7 8 +5154,15 53 65 66 54 7 4 +15442,1 6 65 57 58 7 4 +5153,15 53 65 66 54 7 8 +1026,15 88 57 58 89 13 +14557,1 6 65 57 58 7 8 +1265,15 31 47 9 36 37 17 63 7 8 +7986,15 55 53 55 56 56 7 8 +24287,15 71 42 43 17 3 4 +26827,15 88 57 12 16 36 39 36 16 17 19 13 +7987,15 55 53 55 56 56 7 4 +24288,15 71 42 43 17 3 8 +25873,5 6 12 12 36 37 38 11 8 +17551,1 6 88 9 16 42 16 17 11 13 +23374,1 6 51 52 93 58 7 4 +1264,15 31 47 9 36 37 17 63 7 4 +14935,15 88 26 65 66 13 +19864,5 6 53 18 12 61 16 17 37 11 8 +23729,1 6 51 52 93 58 7 8 +16254,1 6 9 61 62 32 10 54 7 4 +12957,1 6 64 16 42 16 17 37 68 11 8 +11711,1 12 16 39 36 16 17 43 52 7 4 +23058,1 6 9 10 89 11 56 7 8 +4922,1 6 9 61 62 32 10 54 7 8 +25995,1 6 12 57 9 16 17 11 13 +16730,15 55 53 18 9 16 17 10 7 4 +16731,15 55 53 18 9 16 17 10 7 8 +25994,1 6 12 57 9 16 17 11 8 +15154,1 6 64 36 16 61 16 36 16 17 11 13 +19604,5 6 26 92 84 85 7 8 +15153,1 6 64 36 16 61 16 36 16 17 11 8 +22807,1 6 53 9 10 56 7 4 +19607,5 6 26 92 84 85 7 4 +410,70 16 36 16 61 16 17 62 10 7 4 +12789,1 6 53 9 10 56 7 8 +20205,1 6 53 12 16 39 36 16 36 37 38 17 37 68 7 8 +411,70 16 36 16 61 16 17 62 10 7 8 +20206,1 6 53 12 16 39 36 16 36 37 38 17 37 68 7 4 +12831,1 6 64 61 62 17 37 35 85 54 7 8 +18428,1 6 64 16 36 37 38 19 33 13 +4221,5 6 55 55 9 61 62 52 7 4 +5585,1 6 64 61 62 17 37 35 85 54 7 4 +21118,1 6 9 10 89 58 7 8 +14472,5 6 67 107 36 37 17 10 7 4 +10603,5 6 55 55 9 61 62 52 7 8 +1461,15 71 47 48 35 27 28 +9012,1 6 9 10 89 58 7 4 +15554,5 6 57 58 58 66 13 +19128,5 6 96 36 37 38 17 10 54 7 4 +22959,1 6 57 9 16 36 16 17 10 54 7 4 +19127,5 6 96 36 37 38 17 10 54 7 8 +8856,5 6 31 42 43 17 37 48 72 7 8 +19541,1 6 9 61 62 32 54 54 7 4 +17012,1 6 12 42 43 17 3 4 +16903,5 6 124 9 36 16 17 37 11 54 7 4 +4621,1 6 12 42 43 17 3 8 +22168,1 6 34 36 16 17 69 +16165,5 6 88 57 58 58 89 7 8 +23475,5 6 31 42 43 17 37 48 72 7 4 +4405,5 6 88 57 58 58 89 7 4 +14082,1 6 53 57 9 16 17 37 52 7 4 +21737,5 6 12 49 36 37 17 10 93 7 4 +14083,1 6 53 57 9 16 17 37 52 7 8 +7459,5 6 9 16 17 43 32 54 7 8 +22925,15 88 89 23 7 8 +14829,5 6 92 34 36 37 17 3 8 +6848,15 55 12 88 9 39 36 16 17 19 7 8 +4555,5 6 9 16 17 43 32 54 7 4 +18987,1 6 34 42 43 17 37 35 54 7 8 +22924,15 88 89 23 7 4 +18989,1 6 34 42 43 17 37 35 54 7 4 +8161,5 6 84 18 12 16 61 16 17 10 7 8 +15019,1 12 11 58 85 7 8 +6607,15 51 36 37 38 37 52 7 8 +21226,1 6 9 10 66 89 11 8 +12420,1 6 9 36 37 19 13 +24254,5 6 53 12 16 17 10 54 54 7 4 +18604,1 6 9 10 11 89 7 4 +21383,1 6 53 34 47 36 37 17 63 7 8 +12470,1 6 9 36 37 17 69 +17037,5 6 9 16 17 43 10 54 7 4 +13456,1 6 9 10 11 89 7 8 +19633,1 6 53 34 47 36 37 17 63 7 4 +43,5 6 29 30 7 4 +18442,5 6 9 16 17 43 10 54 7 8 +49,5 6 29 30 7 8 +24253,5 6 53 12 16 17 10 54 54 7 8 +13121,5 6 84 18 12 16 61 16 17 10 7 4 +9199,1 6 49 47 48 32 7 8 +9531,1 6 49 47 48 32 7 4 +19805,15 12 36 39 36 39 36 16 17 11 13 +19850,1 6 53 54 89 7 4 +23470,96 16 39 36 16 21 77 78 22 79 4 +9178,70 16 36 37 38 17 37 50 7 4 +26374,1 6 92 9 10 56 93 7 4 +9177,70 16 36 37 38 17 37 50 7 8 +3041,5 6 105 106 13 +15584,1 6 9 36 37 11 8 +5507,1 6 51 47 48 52 7 8 +1804,1 6 9 10 93 7 4 +8123,1 6 51 47 48 52 7 4 +1803,1 6 9 10 93 7 8 +5871,15 55 53 49 50 13 +2658,1 12 11 14 85 7 8 +11976,15 55 65 88 34 36 37 17 11 8 +7362,1 6 96 16 39 36 16 21 77 78 22 79 4 +427,1 12 11 14 85 7 4 +18354,1 12 16 17 37 32 87 7 8 +17102,5 6 12 36 16 42 16 17 11 8 +20926,5 6 49 47 47 36 37 17 11 8 +18347,1 12 16 17 37 32 87 7 4 +19804,15 12 36 39 36 39 36 16 17 11 8 +10877,5 6 64 16 36 16 17 37 48 35 87 7 8 +6806,5 6 55 56 66 7 8 +18481,5 6 84 90 91 66 85 7 8 +1310,1 6 64 61 62 17 43 13 +25126,15 12 16 36 37 38 17 37 35 11 7 4 +24247,1 6 92 31 36 37 17 43 48 32 93 7 8 +18480,5 6 84 90 91 66 85 7 4 +21267,1 6 9 61 62 32 52 7 8 +13190,1 6 92 31 36 37 17 43 48 32 93 7 4 +6343,5 6 84 67 36 37 17 19 33 13 +13770,15 67 47 36 37 10 93 7 8 +13771,15 67 47 36 37 10 93 7 4 +22334,15 109 110 58 11 8 +5591,15 55 53 84 85 7 4 +5590,15 55 53 84 85 7 8 +13738,1 6 9 10 56 58 7 8 +24492,1 6 9 10 66 89 7 4 +13737,1 6 9 10 56 58 7 4 +24491,1 6 9 10 66 89 7 8 +26120,5 6 84 88 57 58 58 89 85 85 54 7 8 +5788,15 71 42 43 17 11 13 +2893,5 6 9 16 36 16 17 10 7 8 +8104,5 6 55 49 36 37 17 69 +5787,15 71 42 43 17 11 8 +2892,5 6 9 16 36 16 17 10 7 4 +10400,5 6 53 9 16 36 16 17 37 52 54 7 8 +23674,1 6 55 12 34 47 36 37 17 11 8 +2538,5 6 53 51 52 54 7 8 +10401,5 6 53 9 16 36 16 17 37 52 54 7 4 +9301,5 6 55 55 12 90 16 61 16 17 37 50 7 4 +23133,5 6 84 12 34 36 37 17 10 7 4 +7713,1 6 84 65 9 16 17 10 85 7 8 +4695,1 6 53 34 107 36 37 19 13 +22550,5 6 53 34 47 48 32 54 7 4 +20824,5 6 53 34 47 48 32 54 7 8 +10133,1 6 49 36 37 17 63 7 4 +19497,5 6 86 34 36 37 17 91 7 8 +5116,15 96 36 37 38 19 58 11 56 7 8 +1683,15 96 36 37 38 19 58 11 56 7 4 +10132,1 6 49 36 37 17 63 7 8 +24138,5 6 86 34 36 37 17 91 7 4 +21996,1 6 53 9 39 36 16 17 10 7 4 +4105,15 88 65 9 16 17 43 72 7 4 +4112,1 6 67 47 36 37 19 58 11 8 +6979,1 6 53 119 120 7 4 +3595,5 6 65 71 72 13 +18521,1 6 51 47 107 108 35 54 7 4 +24023,5 6 57 57 88 89 13 +565,15 55 88 34 36 37 10 7 4 +4177,5 6 18 12 16 17 37 54 7 8 +18520,1 6 51 47 107 108 35 54 7 8 +564,15 55 88 34 36 37 10 7 8 +4178,5 6 18 12 16 17 37 54 7 4 +6980,1 6 53 119 120 7 8 +2736,5 6 53 51 52 54 7 4 +4104,15 88 65 9 16 17 43 72 7 8 +6807,5 6 55 56 66 7 4 +1121,15 53 12 36 37 38 11 13 +20899,5 6 12 65 88 88 57 9 16 17 10 7 8 +5563,1 6 84 49 50 7 8 +709,1 6 84 12 11 85 54 7 8 +5000,1 6 55 51 36 37 17 11 8 +708,1 6 84 12 11 85 54 7 4 +18783,1 6 84 49 50 7 4 +17892,15 65 12 16 17 37 35 87 7 4 +1387,15 31 36 37 10 7 4 +20204,5 6 53 12 16 39 36 16 36 37 38 17 37 68 7 8 +1386,15 31 36 37 10 7 8 +7485,5 6 88 12 26 9 16 17 62 10 7 8 +6580,15 49 42 43 17 63 7 8 +17954,5 6 44 9 16 61 16 17 10 7 8 +8668,97 16 17 37 35 7 8 +17955,5 6 44 9 16 61 16 17 10 7 4 +10997,5 6 34 47 61 62 10 7 4 +7486,5 6 88 12 26 9 16 17 62 10 7 4 +455,1 6 84 65 9 16 17 10 85 7 4 +8782,15 44 12 11 23 7 4 +20900,5 6 12 65 88 88 57 9 16 17 10 7 4 +6581,15 49 42 43 17 63 7 4 +8781,15 44 12 11 23 7 8 +1120,15 53 12 36 37 38 11 8 +13952,1 6 12 51 47 61 62 63 7 8 +17705,5 6 34 47 61 62 10 7 8 +13889,5 6 55 9 16 36 37 38 37 35 7 4 +18385,5 6 12 16 36 16 61 61 16 17 62 10 7 4 +13890,5 6 55 9 16 36 37 38 37 35 7 8 +25078,5 6 57 92 9 10 27 28 +10267,1 6 55 9 16 39 36 16 17 11 8 +20043,1 6 41 12 16 42 16 17 19 13 +10268,1 6 55 9 16 39 36 16 17 11 13 +15331,5 6 53 31 47 47 47 36 37 17 10 54 7 4 +20750,1 6 129 130 13 +15332,5 6 53 31 47 47 47 36 37 17 10 54 7 8 +775,5 6 12 11 11 8 +9816,5 6 49 47 47 36 37 17 19 13 +8655,1 6 12 9 16 61 16 17 63 7 8 +7413,15 12 36 39 36 39 36 16 17 19 13 +8656,1 6 12 9 16 61 16 17 63 7 4 +19342,5 6 55 55 12 16 36 37 38 17 11 8 +24973,5 6 64 16 36 16 61 16 17 10 7 8 +8918,5 6 53 86 34 35 13 +1175,77 101 102 103 +254,5 6 12 11 7 8 +1914,5 6 55 53 88 89 13 +1744,15 55 12 57 9 16 36 16 17 37 35 7 4 +967,1 6 84 73 16 36 16 17 37 72 85 7 4 +1743,15 55 12 57 9 16 36 16 17 37 35 7 8 +3988,1 80 81 77 78 22 79 4 +1275,5 6 64 16 36 16 61 16 17 11 8 +10435,5 6 49 36 16 17 62 10 7 4 +12397,5 6 49 36 16 17 62 10 7 8 +7366,1 6 55 56 54 54 7 4 +26465,96 16 36 16 17 11 13 +8733,15 57 53 9 61 16 61 16 17 19 13 +17484,5 6 55 49 36 37 11 13 +18067,1 6 12 16 36 37 38 17 19 13 +23119,96 16 36 16 17 11 8 +5338,5 6 55 49 36 37 11 8 +7367,1 6 55 56 54 54 7 8 +7667,1 12 16 36 16 17 37 108 35 7 4 +4286,15 12 61 16 17 62 10 7 8 +16875,15 49 47 107 36 37 17 11 8 +23317,5 6 12 57 53 9 10 13 +20359,1 6 57 49 36 37 17 10 85 7 4 +9558,1 12 16 36 16 17 37 108 35 7 8 +4138,5 6 31 32 89 13 +4285,15 12 61 16 17 62 10 7 4 +5828,1 6 31 42 43 17 10 54 7 4 +5829,1 6 31 42 43 17 10 54 7 8 +2671,5 6 84 88 57 58 89 85 7 8 +24275,1 6 57 9 16 36 16 117 118 50 7 4 +2670,5 6 84 88 57 58 89 85 7 4 +25887,1 6 9 16 17 75 7 4 +3576,1 6 53 34 36 37 17 63 7 8 +11851,1 6 9 16 17 75 7 8 +16876,15 49 47 107 36 37 17 11 13 +3575,1 6 53 34 36 37 17 63 7 4 +21697,5 6 57 55 55 86 87 7 4 +21986,1 6 76 61 62 17 37 32 7 4 +21698,5 6 57 55 55 86 87 7 8 +25762,1 6 55 34 107 108 35 89 56 7 4 +20133,1 6 76 61 62 17 37 32 7 8 +5412,5 6 64 53 9 10 54 7 4 +5624,15 53 16 17 54 7 4 +23302,5 6 86 96 16 21 77 78 22 79 4 +4365,5 6 64 53 9 10 54 7 8 +3122,5 6 18 12 16 17 37 50 7 8 +5623,15 53 16 17 54 7 8 +25763,1 6 55 34 107 108 35 89 56 7 8 +3121,5 6 18 12 16 17 37 50 7 4 +11310,1 12 36 37 38 37 52 13 +12526,1 6 57 53 31 36 37 17 94 +4493,15 67 47 107 108 48 72 7 8 +16924,15 53 34 36 37 17 75 7 4 +4492,15 67 47 107 108 48 72 7 4 +11708,5 6 55 9 16 17 37 50 54 7 8 +13295,5 6 55 9 16 17 37 50 54 7 4 +16395,1 6 49 107 36 37 17 59 +24432,15 9 16 36 16 42 16 17 37 35 7 4 +24431,15 9 16 36 16 42 16 17 37 35 7 8 +22498,1 6 57 9 16 17 37 68 7 4 +15587,1 6 34 36 37 17 37 10 7 4 +22499,1 6 57 9 16 17 37 68 7 8 +22302,1 45 21 22 17 62 32 93 7 4 +7060,5 6 16 17 17 7 8 +15013,5 6 86 12 39 36 16 17 10 7 4 +22303,1 45 21 22 17 62 32 93 7 8 +22564,15 65 66 89 11 7 4 +13703,5 6 34 47 61 62 63 7 4 +7061,5 6 16 17 17 7 4 +8929,1 6 34 36 37 17 37 10 7 8 +21570,70 16 36 16 42 16 17 10 7 4 +9485,5 6 64 16 42 16 61 16 17 37 35 7 4 +21571,70 16 36 16 42 16 17 10 7 8 +19846,15 34 36 37 17 37 108 35 7 8 +14298,5 6 64 16 42 16 61 16 17 37 35 7 8 +18957,5 6 34 47 61 62 63 7 8 +26082,5 6 9 36 37 38 62 10 7 8 +5267,15 57 53 49 36 37 17 10 7 4 +17069,15 88 51 52 7 8 +17426,15 57 49 36 37 38 11 13 +23013,5 6 84 18 12 16 17 10 54 7 8 +14357,15 53 34 36 37 17 11 8 +2877,1 6 53 12 16 42 16 17 19 13 +17068,15 88 51 52 7 4 +26059,1 6 12 12 16 36 37 38 17 19 +4297,15 65 57 9 16 17 62 10 7 4 +15193,5 6 41 9 16 17 11 8 +18587,1 6 76 16 42 16 17 69 +20299,1 6 88 12 26 9 16 17 10 7 4 +16653,1 12 12 12 16 17 19 13 +24766,5 6 57 9 16 36 16 17 37 68 7 8 +17472,1 6 57 55 88 89 89 7 8 +3358,1 6 57 9 16 42 16 17 11 8 +24107,5 6 57 9 61 62 17 11 8 +4705,5 6 57 49 47 48 68 58 7 8 +20298,1 6 88 12 26 9 16 17 10 7 8 +8290,1 6 57 9 16 42 16 17 11 13 +5266,15 57 53 49 36 37 17 10 7 8 +26258,1 6 88 9 36 16 17 37 10 7 4 +17425,15 57 49 36 37 38 11 8 +7767,5 6 55 9 16 17 11 8 +13875,1 6 34 107 47 36 37 17 11 8 +7768,5 6 55 9 16 17 11 13 +22666,1 6 12 11 30 7 8 +7144,1 6 84 71 36 37 17 10 85 7 8 +25669,5 6 53 67 47 36 37 17 10 7 4 +14675,5 6 53 67 47 36 37 17 10 7 8 +20498,1 6 55 57 57 51 107 108 50 7 4 +22217,1 6 57 9 16 117 118 52 11 8 +7135,1 6 84 71 36 37 17 10 85 7 4 +1336,5 6 53 67 47 36 37 63 7 4 +10190,5 6 53 34 36 37 17 69 +24187,1 6 55 57 57 51 107 108 50 7 8 +4278,15 65 57 58 13 +4909,1 6 12 16 36 16 21 77 78 22 8 +25181,15 57 9 16 36 16 17 62 10 7 8 +8085,5 6 57 92 9 10 7 4 +580,5 6 53 67 47 36 37 63 7 8 +2950,1 6 92 9 10 13 +22590,5 6 57 53 12 16 36 37 38 17 37 52 7 4 +25520,5 6 12 65 71 117 16 17 11 8 +11785,1 6 92 64 16 36 37 38 37 48 72 54 7 4 +3433,5 6 51 107 36 37 11 8 +22589,5 6 57 53 12 16 36 37 38 17 37 52 7 8 +19965,1 6 92 64 16 36 37 38 37 48 72 54 7 8 +4189,15 12 11 58 93 58 7 4 +17125,5 6 18 12 16 17 37 72 58 7 4 +4190,15 12 11 58 93 58 7 8 +16210,5 6 18 12 16 17 37 72 58 7 8 +15690,15 55 9 16 36 16 61 16 17 11 13 +14819,1 6 92 9 10 87 93 7 4 +25182,15 57 9 16 36 16 17 62 10 7 4 +12853,5 6 9 16 42 16 17 11 7 8 +14818,1 6 92 9 10 87 93 7 8 +2447,1 6 71 72 89 7 4 +8886,1 6 49 107 36 37 11 8 +25840,1 6 18 12 16 17 37 48 32 7 4 +12902,5 6 44 96 36 16 17 19 7 4 +19463,15 57 9 16 17 43 35 54 7 4 +20793,15 55 53 90 91 66 54 7 4 +968,15 73 16 36 16 17 37 72 85 7 4 +18265,15 55 53 57 9 16 17 37 32 54 7 4 +10521,15 55 9 16 36 16 61 16 17 11 8 +7161,5 6 53 71 72 54 7 4 +12901,5 6 44 96 36 16 17 19 7 8 +18264,15 55 53 57 9 16 17 37 32 54 7 8 +4827,1 6 71 72 89 7 8 +288,5 6 57 58 58 7 8 +25972,15 55 12 55 56 56 89 110 72 7 4 +7160,5 6 53 71 72 54 7 8 +13833,1 6 76 36 16 61 16 61 16 17 10 54 7 4 +25655,5 6 12 34 36 37 17 19 7 8 +12443,15 34 36 37 38 17 11 8 +13832,1 6 76 36 16 61 16 61 16 17 10 54 7 8 +20792,15 55 53 90 91 66 54 7 8 +289,5 6 57 58 58 7 4 +969,15 73 16 36 16 17 37 72 85 7 8 +2441,1 6 51 52 27 28 +1790,5 6 12 11 23 7 4 +3751,5 6 12 11 23 7 8 +24687,15 12 16 36 37 38 17 100 7 4 +8887,1 6 49 107 36 37 11 13 +17297,1 6 92 9 10 10 93 7 4 +2703,5 6 57 92 9 10 11 8 +14171,1 6 92 9 10 10 93 7 8 +11986,15 34 36 37 38 17 3 4 +11993,15 34 36 37 38 17 3 8 +18672,1 6 34 47 36 37 17 3 4 +23776,5 6 12 12 36 16 17 37 50 11 7 4 +17396,1 6 36 37 10 30 7 8 +17397,1 6 36 37 10 30 7 4 +6847,15 55 12 88 9 39 36 16 17 19 7 4 +6425,15 67 47 48 35 54 7 4 +21120,1 6 84 71 36 37 74 85 7 8 +6267,1 6 57 9 36 16 17 10 7 8 +6426,15 67 47 48 35 54 7 8 +17024,1 6 57 9 16 61 16 17 19 7 8 +19464,15 57 9 16 17 43 35 54 7 8 +14012,1 6 88 89 11 56 7 4 +11989,1 6 88 89 11 56 7 8 +16062,1 6 53 12 61 16 17 11 7 4 +22543,1 6 65 88 88 9 16 117 118 72 11 7 4 +13557,1 6 57 9 16 61 16 17 19 7 4 +22052,15 57 9 16 117 118 72 11 7 4 +16772,1 6 53 12 61 16 17 11 7 8 +20626,1 6 57 53 31 36 37 17 69 +6966,1 6 88 89 66 56 7 4 +10462,5 6 57 71 47 36 37 19 13 +6965,1 6 88 89 66 56 7 8 +1309,5 6 64 61 62 17 43 13 +17550,1 6 64 16 42 43 17 3 8 +10327,1 6 64 16 42 43 17 3 4 +17343,1 6 64 16 17 37 32 54 7 4 +19428,1 6 64 16 117 118 72 66 11 7 8 +18673,1 6 34 47 36 37 17 3 8 +23304,15 86 96 16 21 77 78 22 8 +13822,1 6 64 16 17 37 32 54 7 8 +11548,15 55 67 36 37 17 11 13 +8649,5 6 9 36 37 38 37 35 7 8 +18307,15 57 26 9 16 17 37 108 48 52 7 8 +22031,1 6 53 12 16 17 37 68 7 4 +8645,5 6 9 36 37 38 37 35 7 4 +3239,5 6 53 34 36 37 11 8 +11547,15 55 67 36 37 17 11 8 +18308,15 57 26 9 16 17 37 108 48 52 7 4 +25343,5 2 16 17 43 32 11 7 4 +24308,15 88 57 58 89 11 7 4 +10186,15 9 36 37 38 37 48 52 7 8 +6191,16 39 36 39 36 16 17 19 13 +13144,5 6 53 9 36 16 16 17 120 7 4 +8158,15 96 16 36 16 61 16 21 77 78 22 79 4 +16582,5 6 57 92 34 36 37 17 43 32 93 58 7 8 +13143,5 6 53 9 36 16 16 17 120 7 8 +16581,5 6 57 92 34 36 37 17 43 32 93 58 7 4 +13108,1 6 12 39 36 16 61 16 17 19 13 +15909,15 67 36 37 38 37 35 7 8 +10927,15 67 36 37 38 37 35 7 4 +19065,5 6 84 57 9 16 17 10 7 8 +18166,15 55 65 88 57 9 16 17 120 7 4 +24647,70 16 61 16 36 16 17 11 13 +16724,5 6 92 49 50 7 8 +24646,70 16 61 16 36 16 17 11 8 +19064,5 6 84 57 9 16 17 10 7 4 +8756,1 6 9 16 36 37 38 17 106 7 4 +3461,5 6 57 57 9 16 17 63 7 8 +13948,1 6 57 92 31 32 7 8 +22458,5 6 53 12 34 47 48 48 32 7 8 +14104,5 6 34 47 48 48 32 7 4 +23294,5 6 31 42 43 17 37 108 115 72 54 7 8 +2095,1 6 9 10 11 11 8 +13947,1 6 57 92 31 32 7 4 +23293,5 6 31 42 43 17 37 108 115 72 54 7 4 +3460,5 6 57 57 9 16 17 63 7 4 +11999,5 6 12 11 85 54 7 8 +23652,5 6 9 10 110 72 7 4 +25186,5 6 119 16 42 16 17 19 7 4 +23656,5 6 9 10 110 72 7 8 +22900,5 6 119 16 42 16 17 19 7 8 +14353,1 6 53 9 16 17 37 35 54 7 8 +14105,5 6 34 47 48 48 32 7 8 +19360,1 6 9 16 36 37 38 17 106 7 8 +16026,1 6 53 9 16 17 37 35 54 7 4 +16437,1 6 9 10 11 89 23 7 4 +19576,1 6 9 10 11 89 23 7 8 +2267,5 6 55 88 89 56 7 8 +7739,15 34 36 37 38 17 19 13 +12571,5 6 88 57 9 16 36 37 38 17 74 7 8 +17781,5 6 65 57 57 9 16 17 63 7 8 +19674,1 6 31 42 43 17 62 10 7 8 +22131,5 6 65 57 57 9 16 17 63 7 4 +4958,1 6 31 42 43 17 62 10 7 4 +25538,1 6 12 16 36 39 36 16 17 37 68 7 4 +11111,70 16 36 16 36 37 38 11 8 +23983,1 6 12 16 36 39 36 16 17 37 68 7 8 +19862,5 6 12 36 37 62 10 7 4 +6430,1 6 34 47 36 37 17 11 8 +12030,1 6 76 61 62 17 37 48 35 87 7 8 +2268,5 6 55 88 89 56 7 4 +1139,1 6 53 57 58 13 +18140,5 6 57 53 9 10 13 +26317,5 45 21 22 17 19 56 30 27 28 +13388,1 6 34 47 36 37 17 11 13 +14564,5 6 57 55 71 36 37 11 8 +22863,5 6 12 16 17 17 3 8 +11112,70 16 36 16 36 37 38 11 13 +19863,5 6 12 36 37 62 10 7 8 +12031,1 6 76 61 62 17 37 48 35 87 7 4 +16721,1 6 29 36 37 10 7 8 +26530,5 6 9 16 16 16 16 36 37 38 37 52 7 4 +16990,15 65 57 9 16 17 10 7 4 +26529,5 6 9 16 16 16 16 36 37 38 37 52 7 8 +2485,1 6 57 92 71 72 7 4 +8287,15 65 57 9 16 17 10 7 8 +20008,5 6 57 9 16 17 37 48 68 7 8 +26653,1 6 86 31 36 37 10 7 4 +5333,5 6 90 91 56 7 4 +2484,1 6 57 92 71 72 7 8 +2316,15 57 88 89 58 7 8 +20011,5 6 57 9 16 17 37 48 68 7 4 +5334,5 6 90 91 56 7 8 +2315,15 57 88 89 58 7 4 +26127,1 6 31 36 37 100 7 4 +7968,5 6 53 31 42 43 17 11 8 +16722,1 6 29 36 37 10 7 4 +25339,15 65 34 36 37 17 37 10 7 4 +13490,15 55 67 36 37 11 8 +16528,1 6 34 36 37 91 85 54 7 4 +22671,1 6 29 12 16 36 16 17 10 7 4 +13491,15 55 67 36 37 11 13 +4713,15 49 47 48 48 68 58 7 4 +7076,1 6 84 51 52 13 +14855,15 9 9 9 9 9 16 17 43 32 7 4 +1278,1 6 9 10 11 7 4 +21700,1 6 86 57 58 13 +1745,1 6 9 10 11 7 8 +2288,5 6 86 34 35 13 +14856,15 9 9 9 9 9 16 17 43 32 7 8 +14873,5 6 12 88 89 66 13 +24114,1 12 16 17 94 +20425,15 34 107 107 36 37 38 19 58 11 8 +22792,1 6 49 36 37 17 75 7 8 +13018,1 6 53 9 36 37 38 17 10 54 7 4 +5879,15 55 53 51 107 107 107 36 37 17 19 13 +8784,1 6 86 53 36 37 63 7 8 +11089,5 6 57 58 56 89 13 +10703,5 6 12 49 36 37 17 10 7 4 +4712,15 49 47 48 48 68 58 7 8 +21133,1 6 53 9 36 37 38 17 10 54 7 8 +22670,1 6 29 12 16 36 16 17 10 7 8 +24335,1 6 12 9 16 17 37 35 56 7 8 +8785,1 6 86 53 36 37 63 7 4 +21887,1 6 86 12 96 16 21 77 78 22 79 4 +24336,1 6 12 9 16 17 37 35 56 7 4 +16353,1 6 34 36 37 91 85 54 7 8 +13038,15 9 36 37 38 37 48 52 7 4 +17336,1 6 57 57 57 26 65 12 16 17 19 13 +10747,5 6 12 71 72 7 8 +15907,5 6 9 36 16 17 69 +15293,1 12 16 17 19 +20730,5 6 90 16 17 120 7 8 +10704,5 6 12 49 36 37 17 10 7 8 +10748,5 6 12 71 72 7 4 +23181,5 6 12 16 17 17 7 4 +10995,1 6 9 61 62 48 32 7 8 +6203,1 6 55 55 67 61 62 63 7 4 +23182,5 6 12 16 17 17 7 8 +4462,1 6 55 65 34 107 108 35 7 4 +10996,1 6 9 61 62 48 32 7 4 +25495,5 6 90 91 89 11 7 8 +23209,1 6 65 34 36 37 17 69 +18897,1 6 92 31 47 42 43 17 10 7 4 +7299,5 6 92 34 36 37 63 54 7 4 +152,5 6 51 61 62 63 7 8 +26008,1 6 90 16 36 37 38 17 91 7 8 +243,5 6 53 34 35 13 +7821,5 6 92 34 36 37 63 54 7 8 +153,5 6 51 61 62 63 7 4 +1967,1 6 55 9 61 62 50 7 8 +8658,1 6 90 16 36 37 38 17 91 7 4 +21692,1 6 53 18 9 16 17 63 7 8 +3737,1 12 16 17 59 +5601,1 6 53 18 9 16 17 63 7 4 +18615,1 6 55 9 61 62 50 7 4 +22484,1 6 12 39 36 16 61 16 17 11 8 +1393,1 12 16 17 69 +22485,1 6 12 39 36 16 61 16 17 11 13 +17113,5 6 64 16 36 16 17 37 108 52 7 4 +4683,1 6 49 107 36 37 38 37 35 11 8 +18815,1 6 9 16 61 16 39 36 16 17 11 8 +25927,5 6 53 12 16 61 16 17 63 7 4 +12096,1 6 76 61 62 17 10 7 8 +25928,5 6 53 12 16 61 16 17 63 7 8 +3166,15 34 107 36 37 17 10 7 4 +838,1 6 12 9 16 36 37 38 17 3 4 +6243,1 6 12 9 16 36 37 38 17 3 8 +18816,1 6 9 16 61 16 39 36 16 17 11 13 +24859,1 6 67 42 43 17 37 52 54 7 4 +26234,1 6 53 12 16 42 16 21 77 78 22 79 4 +24858,1 6 67 42 43 17 37 52 54 7 8 +32,1 6 7 4 +13516,1 6 57 92 12 16 61 16 17 69 +10476,1 6 9 16 16 16 17 62 10 7 8 +23916,1 12 9 31 42 43 17 10 7 4 +7938,5 6 86 12 16 36 37 38 17 11 8 +3167,15 34 107 36 37 17 10 7 8 +16394,5 6 86 12 16 36 37 38 17 11 13 +11577,5 6 9 34 35 13 +663,1 6 51 52 11 8 +17298,1 6 51 52 11 13 +6117,1 12 11 27 7 4 +25671,5 6 31 42 43 17 37 48 72 54 7 8 +10720,1 12 11 27 7 8 +25121,5 6 53 31 36 37 17 37 108 35 58 54 7 8 +25672,5 6 31 42 43 17 37 48 72 54 7 4 +7042,1 6 53 54 87 58 7 8 +22150,1 6 53 55 56 58 7 8 +7041,1 6 53 54 87 58 7 4 +7395,1 6 53 55 56 58 7 4 +17215,1 6 26 65 66 56 7 4 +17214,1 6 26 65 66 56 7 8 +14375,5 6 34 36 37 19 10 7 8 +19133,5 6 113 61 62 17 37 11 54 7 8 +15217,15 53 34 36 37 17 3 4 +12717,1 6 29 51 52 13 +19017,5 6 12 9 16 17 98 +19845,15 34 36 37 17 37 108 35 7 4 +15216,15 53 34 36 37 17 3 8 +15509,5 6 12 16 42 16 21 77 78 22 79 4 +26698,5 6 57 9 61 62 17 3 4 +10165,1 6 57 9 16 42 16 17 19 13 +22923,15 55 53 31 42 43 17 10 54 7 8 +13081,15 12 16 36 37 38 37 48 52 7 4 +9204,15 31 47 36 37 11 13 +13089,15 12 16 36 37 38 37 48 52 7 8 +24098,15 55 53 31 42 43 17 10 54 7 4 +16513,1 6 53 55 9 36 16 61 16 17 11 8 +18167,15 65 88 57 9 16 17 120 7 4 +18168,15 65 88 57 9 16 17 120 7 8 +2231,1 6 76 61 62 17 10 7 4 +22308,1 6 53 12 36 16 17 10 7 8 +16708,5 6 64 16 39 36 16 61 16 17 37 52 7 4 +9203,15 31 47 36 37 11 8 +10378,5 6 36 37 17 19 58 7 4 +8357,15 88 71 47 36 37 17 11 8 +20614,1 12 16 39 36 16 36 16 17 37 48 72 7 4 +1812,1 6 64 61 62 17 37 50 93 58 7 4 +8049,1 6 124 107 36 37 69 +8358,15 88 71 47 36 37 17 11 13 +6202,1 6 55 55 67 61 62 63 7 8 +19016,5 6 12 9 16 17 69 +20729,5 6 90 16 17 120 7 4 +3686,15 9 16 36 16 17 37 52 13 +14079,1 6 53 9 10 10 54 54 7 4 +12436,15 34 36 37 106 7 4 +12435,15 34 36 37 106 7 8 +11722,1 6 53 31 32 58 54 7 4 +18681,96 36 16 17 37 48 35 7 4 +11723,1 6 53 31 32 58 54 7 8 +14078,1 6 53 9 10 10 54 54 7 8 +18682,96 36 16 17 37 48 35 7 8 +354,5 6 12 16 36 16 42 16 17 11 8 +13037,1 6 9 36 37 38 37 48 52 13 +15517,15 12 36 16 17 37 52 89 7 4 +19412,15 53 64 36 16 17 37 35 54 7 4 +1813,1 6 64 61 62 17 37 50 93 58 7 8 +15518,15 12 36 16 17 37 52 89 7 8 +19411,15 53 64 36 16 17 37 35 54 7 8 +4674,1 6 34 36 37 63 7 4 +16796,5 6 29 9 36 37 38 17 11 8 +15794,1 6 12 36 16 61 16 21 77 78 22 8 +22579,5 6 29 9 36 37 38 17 11 13 +2844,1 6 53 31 42 43 17 10 7 8 +952,1 6 84 12 11 85 7 4 +951,1 6 84 12 11 85 7 8 +4441,1 6 53 31 42 43 17 10 7 4 +20037,5 6 57 53 9 10 56 56 54 7 4 +14949,1 6 12 9 16 17 43 7 4 +24942,5 6 57 53 9 10 56 56 54 7 8 +21361,1 6 12 9 16 17 43 7 8 +12751,5 6 53 12 36 37 19 13 +17049,1 6 9 36 16 36 37 38 37 35 7 8 +18413,15 57 26 65 66 13 +11264,1 6 9 36 16 36 37 38 37 35 7 4 +1606,1 6 105 16 61 16 17 19 7 4 +12567,5 6 9 10 89 27 66 7 4 +16222,5 6 88 12 16 17 19 13 +12934,5 6 9 10 89 27 66 7 8 +4031,1 6 34 36 37 63 7 8 +24531,1 6 12 16 17 37 48 52 7 8 +8852,5 6 64 16 36 16 17 37 48 72 7 8 +21290,5 6 57 9 16 36 16 36 16 17 37 32 7 4 +13937,5 6 55 9 16 36 16 17 37 48 35 7 4 +1605,1 6 105 16 61 16 17 19 7 8 +3710,15 12 11 58 89 13 +8853,5 6 64 16 36 16 17 37 48 72 7 4 +26154,15 55 53 12 16 17 10 7 8 +10431,1 6 53 49 50 58 54 54 7 4 +17338,5 6 55 9 16 36 16 17 37 48 35 7 8 +8270,1 6 57 58 66 11 8 +26155,15 55 53 12 16 17 10 7 4 +10432,1 6 53 49 50 58 54 54 7 8 +14937,1 6 84 9 10 66 27 28 +12667,5 6 96 39 36 16 21 77 78 22 79 4 +15897,1 6 12 16 17 37 52 13 +18685,1 6 12 36 37 38 17 3 4 +2551,1 6 57 58 58 89 7 8 +20618,5 6 57 53 49 36 37 17 3 4 +22493,15 88 57 57 9 16 17 11 8 +18686,1 6 12 36 37 38 17 3 8 +2552,1 6 57 58 58 89 7 4 +17749,1 6 12 16 36 16 61 16 17 63 7 8 +22494,15 88 57 57 9 16 17 11 13 +24532,1 6 12 16 17 37 48 52 7 4 +12785,15 53 88 89 13 +26751,15 88 57 58 58 85 7 4 +17748,1 6 12 16 36 16 61 16 17 63 7 4 +26750,15 88 57 58 58 85 7 8 +12833,5 6 55 57 53 9 16 61 16 17 62 10 7 8 +10863,1 6 53 9 10 66 7 4 +20435,5 6 65 9 16 39 36 16 36 37 38 17 10 7 4 +12834,5 6 55 57 53 9 16 61 16 17 62 10 7 4 +7759,1 6 9 16 36 16 36 37 38 37 52 7 4 +10862,1 6 53 9 10 66 7 8 +20434,5 6 65 9 16 39 36 16 36 37 38 17 10 7 8 +8114,1 6 9 16 36 16 36 37 38 37 52 7 8 +3069,5 6 57 58 54 54 7 8 +26284,1 6 55 26 88 89 7 4 +3063,5 6 57 58 54 54 7 4 +20638,15 55 53 51 52 54 7 4 +21803,5 6 67 42 43 17 37 35 87 7 4 +11581,15 31 114 115 32 7 4 +19916,5 6 105 16 42 16 17 19 7 4 +11531,5 6 67 42 43 17 37 35 87 7 8 +20637,15 55 53 51 52 54 7 8 +11582,15 31 114 115 32 7 8 +11448,1 6 55 12 55 88 57 58 89 13 +5389,1 6 53 18 12 16 17 37 52 54 7 4 +11777,15 67 47 36 37 17 63 93 7 4 +23288,1 6 12 88 57 58 58 89 13 +5388,1 6 53 18 12 16 17 37 52 54 7 8 +13009,15 31 47 36 37 19 13 +11778,15 67 47 36 37 17 63 93 7 8 +23448,1 6 53 53 9 10 54 54 7 4 +1412,5 6 49 36 37 17 11 13 +113,1 6 51 52 7 4 +1411,5 6 49 36 37 17 11 8 +15852,1 6 88 9 16 36 37 38 17 10 7 8 +26695,1 6 53 9 10 58 87 7 8 +112,1 6 51 52 7 8 +15851,1 6 88 9 16 36 37 38 17 10 7 4 +12939,1 6 26 12 36 37 38 11 13 +1774,15 31 47 48 32 54 7 8 +12593,1 6 26 12 36 37 38 11 8 +1775,15 31 47 48 32 54 7 4 +7570,15 88 57 12 11 58 7 8 +8263,1 6 88 9 61 16 17 19 7 4 +15559,15 12 57 57 9 16 17 63 7 4 +23226,1 6 64 61 62 17 37 108 115 72 54 7 8 +24516,1 6 76 16 36 16 17 91 7 4 +3073,1 6 88 9 61 16 17 19 7 8 +15558,15 12 57 57 9 16 17 63 7 8 +23225,1 6 64 61 62 17 37 108 115 72 54 7 4 +4516,1 6 64 61 62 37 35 54 7 8 +21654,1 6 86 9 16 17 120 7 4 +26242,15 109 57 55 57 96 16 21 77 78 22 79 4 +23798,5 6 12 36 16 36 37 38 17 3 8 +4515,1 6 64 61 62 37 35 54 7 4 +13025,1 6 86 9 16 17 120 7 8 +10436,5 6 12 16 61 16 17 98 +23797,5 6 12 36 16 36 37 38 17 3 4 +23012,1 6 53 9 10 58 89 85 54 7 8 +3831,5 6 64 61 62 17 37 52 11 8 +8830,15 71 72 54 7 8 +15827,1 6 55 51 42 43 17 10 7 4 +5170,1 6 53 16 17 54 54 7 8 +12194,5 6 76 42 43 106 7 8 +15958,1 6 67 107 107 36 37 17 10 7 4 +20146,1 6 55 51 42 43 17 10 7 8 +15395,1 6 9 16 17 43 10 54 7 8 +15959,1 6 67 107 107 36 37 17 10 7 8 +17945,5 6 55 67 42 43 17 11 8 +8829,15 71 72 54 7 4 +18064,5 6 55 12 9 61 62 52 7 8 +18036,70 16 16 17 17 11 8 +10767,1 6 53 16 17 54 54 7 4 +1156,15 34 36 37 11 13 +20433,1 6 65 9 16 39 36 16 36 37 38 17 10 7 8 +24814,1 12 11 110 35 7 8 +1155,15 34 36 37 11 8 +5443,5 6 57 67 47 48 48 35 7 4 +20905,1 6 88 88 9 16 117 118 72 11 8 +22763,1 12 11 110 35 7 4 +11021,5 6 31 9 42 43 17 63 7 8 +11022,5 6 31 9 42 43 17 63 7 4 +13444,5 6 53 57 57 12 16 17 19 13 +17299,5 6 55 12 9 61 62 52 7 4 +24915,1 6 92 49 36 37 10 7 4 +24914,1 6 92 49 36 37 10 7 8 +20867,15 9 16 36 16 61 16 17 37 123 7 4 +20866,15 9 16 36 16 61 16 17 37 123 7 8 +19608,1 6 84 55 56 85 93 27 28 +3197,5 6 64 61 62 17 37 52 7 8 +14126,5 6 90 61 62 17 37 50 7 4 +2988,15 55 12 55 57 96 36 16 17 19 58 11 8 +15886,5 6 90 61 62 17 37 50 7 8 +7116,1 6 64 16 42 16 17 10 54 85 54 7 4 +16996,5 6 53 18 12 61 16 61 16 17 11 8 +17559,1 6 53 12 16 17 98 +11680,15 34 47 36 37 69 +1350,1 6 64 61 62 17 10 54 85 54 7 8 +1349,1 6 64 61 62 17 10 54 85 54 7 4 +3425,70 16 36 37 38 37 48 50 7 4 +13633,1 6 12 36 37 38 17 11 8 +3424,70 16 36 37 38 37 48 50 7 8 +19980,5 6 53 9 39 36 16 17 63 7 4 +8251,5 6 64 61 62 17 37 35 56 89 7 4 +19979,5 6 53 9 39 36 16 17 63 7 8 +11279,5 6 67 47 36 37 17 10 54 7 4 +6087,5 6 12 57 88 89 23 7 4 +8252,5 6 64 61 62 17 37 35 56 89 7 8 +11913,5 6 12 57 58 58 66 13 +20974,1 6 53 12 16 17 69 +15931,1 6 57 9 36 16 61 16 17 37 35 7 8 +16388,5 6 67 47 36 37 17 10 54 7 8 +19441,1 6 64 16 42 16 17 10 54 85 54 7 8 +5004,5 6 64 61 62 17 37 52 7 4 +4558,5 6 12 57 88 89 23 7 8 +7799,1 6 57 9 36 16 61 16 17 37 35 7 4 +12947,1 6 26 57 12 39 36 16 17 19 13 +22821,1 6 55 88 57 9 36 37 38 37 50 7 8 +5566,5 6 84 9 16 17 10 7 8 +22584,1 12 36 37 38 37 48 72 7 8 +20858,1 12 36 37 38 37 48 72 7 4 +6519,5 6 12 11 85 54 7 4 +12796,5 6 9 16 36 37 38 17 10 54 7 8 +3870,5 6 84 9 16 17 10 7 4 +5444,5 6 57 67 47 48 48 35 7 8 +12795,5 6 9 16 36 37 38 17 10 54 7 4 +15335,1 6 53 9 16 36 37 38 17 10 54 7 8 +6781,1 6 53 9 16 36 37 38 17 10 54 7 4 +26534,5 6 57 53 9 16 61 16 17 19 13 +6025,5 6 55 57 51 36 37 17 11 8 +6127,1 6 57 9 16 117 118 72 11 7 4 +10840,5 6 53 51 52 54 54 7 8 +10841,5 6 53 51 52 54 54 7 4 +22548,1 6 57 9 16 117 118 72 11 7 8 +14497,5 6 49 36 37 17 19 13 +18335,15 12 16 99 16 17 10 7 4 +11225,1 6 55 9 16 17 19 7 4 +8220,1 12 16 36 16 17 37 50 7 8 +10159,5 6 53 12 16 36 16 17 10 7 8 +13072,1 12 16 36 16 17 37 50 7 4 +18334,15 12 16 99 16 17 10 7 8 +22284,5 6 53 12 16 36 16 17 10 7 4 +11611,1 6 53 16 17 10 7 4 +22452,1 6 55 12 55 57 9 36 16 17 10 7 8 +5311,1 6 9 16 17 43 32 54 7 8 +2649,1 6 9 16 17 43 32 54 7 4 +11048,5 6 67 36 16 17 10 7 4 +11612,1 6 53 16 17 10 7 8 +1332,1 6 9 10 10 7 4 +8143,15 34 36 37 17 98 +21244,5 6 53 55 31 36 37 11 8 +6605,15 12 16 39 36 39 36 16 17 69 +1331,1 6 9 10 10 7 8 +9945,15 9 16 36 37 38 37 52 85 54 7 4 +24435,1 6 57 55 53 9 10 54 7 8 +21715,1 6 65 34 36 37 10 7 8 +1979,5 6 55 53 57 58 54 7 8 +7813,1 6 31 42 43 11 8 +1911,5 6 55 53 57 58 54 7 4 +15087,15 55 53 57 86 87 13 +19835,1 6 49 50 58 54 7 8 +1680,15 34 36 37 19 13 +25884,1 6 49 50 58 54 7 4 +2771,15 34 36 37 17 69 +18042,15 96 16 16 99 16 17 11 8 +3243,15 9 39 36 39 36 16 61 16 17 62 10 7 4 +9946,15 9 16 36 37 38 37 52 85 54 7 8 +14185,1 6 92 49 36 37 17 10 93 7 8 +23812,15 55 57 12 16 17 11 56 7 4 +26701,5 6 34 36 37 17 37 32 7 4 +3244,15 9 39 36 39 36 16 61 16 17 62 10 7 8 +14041,1 6 31 36 37 17 118 17 37 52 7 4 +13344,1 6 90 61 62 17 106 7 4 +14186,1 6 92 49 36 37 17 10 93 7 4 +18043,15 96 16 16 99 16 17 11 13 +8627,1 6 90 61 62 17 106 7 8 +5888,5 2 16 17 43 32 10 7 8 +23813,1 2 16 17 37 10 7 4 +25665,5 6 113 61 62 17 37 123 7 8 +19530,5 2 16 17 43 32 10 7 4 +23908,5 6 18 12 16 17 37 48 52 7 8 +24097,1 2 16 17 37 10 7 8 +24130,15 12 39 36 16 42 16 17 19 13 +25666,5 6 113 61 62 17 37 123 7 4 +23907,5 6 18 12 16 17 37 48 52 7 4 +8138,15 34 36 37 17 59 +20289,5 6 57 9 16 42 16 36 37 38 17 11 8 +12892,5 6 64 61 62 17 37 68 11 56 54 7 8 +8375,15 9 61 62 10 7 4 +8376,15 9 61 62 10 7 8 +21679,15 65 9 16 42 16 17 11 13 +8466,5 6 51 36 37 17 10 93 7 4 +25118,5 6 53 34 107 108 35 56 54 7 4 +14640,5 6 9 16 36 37 38 37 48 50 7 8 +25084,5 6 51 36 37 17 10 93 7 8 +16949,5 6 9 16 36 37 38 37 48 50 7 4 +1768,5 6 88 9 16 17 91 7 4 +1632,5 6 88 9 16 17 91 7 8 +330,1 6 53 9 16 17 11 8 +24142,5 6 57 71 42 43 17 10 7 4 +12337,15 34 36 37 17 17 +13544,15 96 36 16 17 37 52 54 7 8 +21678,15 65 9 16 42 16 17 11 8 +22547,5 6 26 12 65 26 9 16 17 10 7 8 +6122,5 6 26 12 65 26 9 16 17 10 7 4 +13543,15 96 36 16 17 37 52 54 7 4 +24238,1 6 96 39 36 16 61 16 36 37 38 17 62 10 7 8 +5141,1 6 92 9 16 17 10 93 7 8 +7503,1 6 9 36 37 38 37 52 13 +5138,1 6 92 9 16 17 10 93 7 4 +8032,1 6 124 109 110 7 8 +2545,5 6 64 61 62 17 37 52 54 7 4 +2546,5 6 64 61 62 17 37 52 54 7 8 +8031,1 6 124 109 110 7 4 +5597,5 6 53 9 16 17 10 85 54 7 4 +3312,15 67 51 36 37 17 10 7 8 +20159,15 57 9 61 62 32 54 7 8 +5596,5 6 53 9 16 17 10 85 54 7 8 +20160,15 57 9 61 62 32 54 7 4 +3079,1 6 9 10 66 27 11 8 +7249,5 6 71 36 37 17 69 +3311,15 67 51 36 37 17 10 7 4 +26692,15 57 9 36 37 38 37 108 48 72 54 7 8 +26691,15 57 9 36 37 38 37 108 48 72 54 7 4 +8490,1 6 53 9 16 61 16 17 37 32 10 7 4 +14042,1 6 31 36 37 17 118 17 37 52 7 8 +24872,5 6 53 64 16 17 10 54 7 8 +13502,1 6 76 16 36 16 61 16 17 11 8 +15546,5 6 84 51 107 36 37 17 10 54 7 4 +14772,1 6 84 9 16 36 16 61 16 17 37 7 8 +25502,5 6 53 64 16 17 10 54 7 4 +3951,1 6 51 36 37 63 7 8 +461,1 6 84 71 36 37 17 10 7 8 +13074,1 6 51 36 37 63 7 4 +19152,1 6 84 71 36 37 17 10 7 4 +3944,5 6 71 36 37 19 13 +3716,15 34 36 37 38 19 13 +14329,5 6 84 51 107 36 37 17 10 54 7 8 +15473,1 6 64 16 36 16 17 37 48 52 7 8 +1099,1 6 53 12 16 17 75 7 4 +1957,5 6 84 51 47 48 50 85 54 7 4 +26748,1 6 12 55 56 89 11 8 +24229,1 6 55 55 53 34 36 37 94 +1102,1 6 53 12 16 17 75 7 8 +1681,15 34 36 37 38 19 58 11 8 +7620,5 6 34 47 36 37 19 13 +5770,5 6 84 9 10 85 54 7 4 +18104,5 6 84 51 47 48 50 85 54 7 8 +5769,5 6 84 9 10 85 54 7 8 +24269,5 6 34 47 36 37 17 69 +14632,5 6 57 88 9 61 16 17 62 10 7 4 +14648,1 12 9 16 17 63 7 4 +12382,5 6 9 16 36 37 38 17 37 35 7 8 +23708,5 6 9 16 36 37 38 17 37 35 7 4 +24832,5 6 16 17 17 54 7 4 +23617,15 57 55 34 107 36 37 10 7 8 +23618,15 57 55 34 107 36 37 10 7 4 +11856,5 6 67 47 36 37 17 37 35 7 4 +19881,15 55 88 57 58 58 66 56 7 8 +16179,1 6 57 9 16 36 16 17 37 50 7 4 +2615,1 6 49 47 47 36 37 17 10 7 8 +2994,1 6 49 47 47 36 37 17 10 7 4 +21427,15 12 51 47 36 37 17 37 48 50 7 4 +13006,1 6 9 10 66 27 7 4 +20747,1 6 57 9 16 36 16 17 37 50 7 8 +11004,5 6 64 53 31 32 13 +11740,15 88 57 58 56 54 54 7 8 +11741,15 88 57 58 56 54 54 7 4 +18373,5 6 57 88 9 61 16 17 62 10 7 8 +14606,1 6 57 88 89 58 13 +3526,1 6 31 47 48 32 7 8 +21426,15 12 51 47 36 37 17 37 48 50 7 8 +3525,1 6 31 47 48 32 7 4 +12946,15 88 57 9 16 39 36 16 17 37 52 56 7 4 +17403,1 6 9 16 36 37 38 17 37 7 8 +17287,1 6 57 92 31 61 62 63 7 4 +12945,15 88 57 9 16 39 36 16 17 37 52 56 7 8 +17404,1 6 9 16 36 37 38 17 37 7 4 +18703,5 6 88 9 16 61 16 36 16 17 37 35 11 7 4 +24678,1 6 57 9 16 17 98 +4240,1 6 88 9 16 17 37 72 56 7 4 +10936,5 6 88 9 16 61 16 36 16 17 37 35 11 7 8 +19070,15 12 9 31 32 7 8 +4239,1 6 88 9 16 17 37 72 56 7 8 +16552,1 6 57 92 31 61 62 63 7 8 +19071,15 12 9 31 32 7 4 +1233,1 6 9 10 66 27 7 8 +14435,1 6 84 9 16 17 11 8 +1902,15 9 61 62 48 72 7 8 +14869,15 65 9 16 42 16 61 16 17 11 8 +1901,15 9 61 62 48 72 7 4 +1506,1 6 57 71 72 7 4 +24314,1 6 57 71 72 7 8 +5220,15 55 9 16 61 16 17 19 13 +8381,1 6 53 16 17 62 10 7 4 +10238,1 6 57 9 16 17 69 +8908,1 6 53 16 17 62 10 7 8 +17527,1 6 55 65 66 7 4 +7670,5 6 67 47 36 37 17 37 35 7 8 +21410,15 55 88 57 58 58 66 56 7 4 +21747,5 6 34 107 107 36 37 63 7 4 +4440,1 6 9 10 87 58 7 8 +20691,5 6 55 57 9 16 36 37 38 17 10 85 7 8 +9942,15 51 47 36 37 17 10 85 54 7 4 +13180,15 31 47 42 43 17 10 7 4 +14649,1 12 9 16 17 63 7 8 +3112,15 88 88 57 58 89 66 13 +18742,1 6 92 31 42 43 10 93 63 7 4 +9943,15 51 47 36 37 17 10 85 54 7 8 +17491,5 6 84 12 9 16 17 37 108 32 7 4 +17528,1 6 55 65 66 7 8 +14339,5 6 84 12 9 16 17 37 108 32 7 8 +2418,1 6 9 10 87 58 7 4 +13179,15 31 47 42 43 17 10 7 8 +22504,97 16 17 63 54 7 8 +22897,15 34 36 16 17 43 32 7 8 +25185,15 34 36 16 17 43 32 7 4 +11138,1 6 92 31 42 43 10 93 63 7 8 +7718,5 6 55 57 9 16 36 37 38 17 10 85 7 4 +22503,97 16 17 63 54 7 4 +17664,5 6 67 47 36 37 17 62 10 7 4 +11271,5 6 64 16 36 37 38 37 35 54 7 8 +17200,5 6 34 117 16 17 19 13 +8689,5 6 64 16 36 37 38 37 35 54 7 4 +292,1 6 65 66 13 +26526,1 6 51 36 37 17 17 10 7 8 +8983,15 44 34 36 37 94 +26527,1 6 51 36 37 17 17 10 7 4 +6035,15 65 57 58 58 56 7 8 +23322,1 6 12 57 53 9 16 17 35 7 8 +7694,5 6 12 12 71 72 7 8 +2437,1 6 49 114 115 68 7 4 +6128,1 6 18 12 16 17 118 17 10 7 4 +7693,5 6 12 12 71 72 7 4 +8238,1 6 57 92 9 16 36 16 17 37 72 93 58 7 4 +13898,1 6 18 12 16 17 118 17 10 7 8 +19635,5 6 64 16 36 16 17 37 48 32 54 7 8 +19636,5 6 64 16 36 16 17 37 48 32 54 7 4 +2436,1 6 49 114 115 68 7 8 +1144,1 6 53 31 47 48 32 58 54 7 4 +22004,1 6 65 57 57 9 16 17 10 7 4 +18808,1 6 53 31 47 48 32 58 54 7 8 +22005,1 6 65 57 57 9 16 17 10 7 8 +11401,5 6 51 47 36 37 10 7 8 +20004,5 6 51 47 36 37 10 7 4 +9345,1 6 51 36 37 17 37 72 7 8 +1094,5 6 53 49 50 54 7 4 +2003,5 6 53 31 32 33 13 +5085,5 6 49 36 37 17 3 4 +8351,1 6 71 72 89 27 28 +14335,1 6 34 36 16 17 10 7 4 +5084,5 6 49 36 37 17 3 8 +20548,1 6 84 71 107 108 108 68 85 54 7 8 +22791,1 6 84 88 55 12 16 17 19 13 +15548,1 6 34 36 16 17 10 7 8 +20549,1 6 84 71 107 108 108 68 85 54 7 4 +1243,5 6 53 49 50 54 7 8 +9156,5 6 34 47 36 37 11 13 +11372,1 6 34 36 37 19 89 7 4 +18420,1 6 34 36 37 19 89 7 8 +5276,5 6 55 67 47 48 35 7 4 +16584,1 6 57 92 34 35 13 +26286,5 6 53 55 34 35 7 8 +16947,1 6 34 47 48 32 30 7 8 +6625,5 6 53 55 34 35 7 4 +3626,5 6 34 47 36 37 11 8 +16948,1 6 34 47 48 32 30 7 4 +6650,1 6 57 58 66 7 4 +4756,1 6 57 58 66 7 8 +10680,1 6 9 16 42 16 17 10 7 4 +2694,1 6 88 51 61 62 63 7 4 +10679,1 6 9 16 42 16 17 10 7 8 +2695,1 6 88 51 61 62 63 7 8 +9125,1 6 12 12 16 36 37 38 37 48 72 7 8 +5973,5 6 64 36 16 61 16 17 19 7 8 +16969,1 6 51 47 36 37 17 19 58 11 8 +18160,15 53 34 47 48 35 58 54 54 7 4 +4898,5 6 18 12 16 17 37 108 35 7 4 +18159,15 53 34 47 48 35 58 54 54 7 8 +12338,1 6 12 16 36 37 38 17 62 10 7 4 +22082,5 6 64 16 36 16 17 37 50 11 7 4 +17320,1 6 12 36 16 61 16 17 11 13 +13430,1 6 67 36 37 17 43 72 7 8 +17319,1 6 12 36 16 61 16 17 11 8 +24087,5 6 49 47 42 43 17 63 7 8 +13429,1 6 67 36 37 17 43 72 7 4 +11379,5 6 49 47 42 43 17 63 7 4 +2105,1 12 11 30 7 4 +618,1 6 57 58 63 7 4 +21685,1 6 71 117 16 17 37 35 7 8 +13340,1 6 64 61 62 17 37 50 7 8 +617,1 6 57 58 63 7 8 +9124,1 6 12 12 16 36 37 38 37 48 72 7 4 +8109,1 6 64 61 62 17 37 50 7 4 +24266,5 6 64 42 16 17 118 17 37 35 7 8 +6475,15 55 53 49 36 37 10 7 4 +10504,5 6 64 42 16 17 118 17 37 35 7 4 +6474,15 55 53 49 36 37 10 7 8 +20720,1 6 88 89 66 58 7 4 +17237,5 6 55 55 53 53 54 7 4 +26535,5 6 55 55 53 53 54 7 8 +790,15 12 11 85 54 7 4 +4232,5 6 71 36 37 17 63 7 4 +12144,5 6 57 9 16 36 37 38 37 108 48 72 54 7 8 +12233,1 6 57 92 31 32 13 +791,15 12 11 85 54 7 8 +4231,5 6 71 36 37 17 63 7 8 +958,15 9 16 17 10 85 7 4 +22698,15 9 16 17 11 54 7 4 +24960,1 6 34 36 16 42 16 17 11 8 +957,15 9 16 17 10 85 7 8 +16630,15 9 16 17 11 54 7 8 +1285,15 55 34 36 37 69 +5704,5 6 64 61 62 17 120 7 4 +751,5 6 12 88 89 11 8 +5705,5 6 64 61 62 17 120 7 8 +19772,5 6 57 9 16 17 37 52 11 8 +24260,1 6 55 12 9 16 17 37 50 7 8 +2573,5 6 64 16 39 36 16 17 10 7 4 +24259,1 6 55 12 9 16 17 37 50 7 4 +11599,5 6 9 16 36 16 17 37 35 7 8 +11442,15 53 16 17 17 54 54 7 8 +26599,5 6 53 53 9 10 54 54 7 4 +2356,15 31 36 37 17 10 7 8 +10389,1 6 57 96 16 36 16 16 17 19 7 8 +8480,5 6 9 16 36 16 17 37 35 7 4 +16361,5 6 53 53 9 10 54 54 7 8 +2357,15 31 36 37 17 10 7 4 +10390,1 6 57 96 16 36 16 16 17 19 7 4 +11443,15 53 16 17 17 54 54 7 4 +2862,5 6 55 51 42 43 17 10 7 8 +23748,5 6 53 90 61 16 61 16 17 62 10 7 8 +21246,5 6 55 51 42 43 17 10 7 4 +20597,15 96 36 16 61 16 21 77 78 22 79 4 +7392,15 86 34 36 37 10 7 8 +8598,15 55 49 61 62 63 7 4 +26824,5 6 88 12 16 36 37 38 37 50 7 8 +7391,15 86 34 36 37 10 7 4 +8597,15 55 49 61 62 63 7 8 +23747,5 6 53 90 61 16 61 16 17 62 10 7 4 +22290,15 67 107 108 72 7 4 +10365,5 6 53 12 39 36 16 42 16 17 37 35 7 8 +20588,15 96 36 16 17 10 7 4 +24991,5 6 53 12 39 36 16 42 16 17 37 35 7 4 +12552,1 12 16 36 16 17 43 72 7 8 +16291,15 55 9 16 117 118 48 72 7 4 +22291,15 67 107 108 72 7 8 +16290,15 55 9 16 117 118 48 72 7 8 +20587,15 96 36 16 17 10 7 8 +11654,15 57 9 16 36 37 38 17 11 8 +20611,1 12 16 39 36 16 36 16 17 37 108 52 7 4 +26295,15 57 53 55 56 54 7 4 +26294,15 57 53 55 56 54 7 8 +6091,1 12 11 30 7 8 +4628,1 6 64 61 62 17 37 50 30 7 8 +4629,1 6 64 61 62 17 37 50 30 7 4 +15304,15 12 16 61 16 17 19 +16113,1 6 53 9 31 32 7 4 +4205,1 6 53 9 31 32 7 8 +8876,1 6 64 61 62 17 37 48 68 13 +1273,5 6 53 9 16 17 10 7 8 +14864,5 6 88 88 57 9 16 17 10 7 4 +2699,5 6 53 9 16 17 10 7 4 +556,5 6 57 58 56 7 4 +23725,15 12 11 14 93 58 7 8 +18214,5 6 12 57 58 58 89 13 +24717,5 6 64 16 42 16 17 37 35 93 7 8 +124,5 6 57 58 56 7 8 +23724,15 12 11 14 93 58 7 4 +14863,5 6 88 88 57 9 16 17 10 7 8 +17154,5 6 64 16 42 16 17 37 35 93 7 4 +15922,70 36 16 61 16 36 16 17 17 91 7 8 +14440,5 6 12 65 12 71 72 13 +2015,5 6 76 16 17 10 54 7 4 +5527,70 36 16 61 16 36 16 17 17 91 7 4 +23229,1 6 55 49 42 43 17 10 7 8 +23945,15 12 16 61 16 17 59 +2016,5 6 76 16 17 10 54 7 8 +16568,5 6 12 55 67 47 48 68 7 8 +19194,1 6 55 49 42 43 17 10 7 4 +16569,5 6 12 55 67 47 48 68 7 4 +19824,1 6 53 71 47 42 43 17 63 7 8 +25991,1 6 34 107 107 36 37 19 13 +14205,1 6 53 71 47 42 43 17 63 7 4 +16502,15 12 16 36 16 17 37 115 50 7 8 +21766,15 88 88 65 66 7 8 +16501,15 12 16 36 16 17 37 115 50 7 4 +16042,5 6 9 16 17 43 35 7 4 +21767,15 88 88 65 66 7 4 +19158,1 6 84 18 12 16 17 37 72 85 54 7 4 +19159,1 6 84 18 12 16 17 37 72 85 54 7 8 +5928,15 9 16 17 43 17 11 8 +15770,1 6 12 36 16 61 16 17 19 13 +9028,5 6 86 9 16 17 91 7 8 +24794,5 6 86 9 16 17 91 7 4 +16798,1 6 29 9 36 37 38 17 11 13 +20106,5 6 9 16 17 43 35 7 8 +4846,15 49 36 37 17 19 13 +9974,15 31 36 16 61 16 17 63 7 8 +24784,5 6 55 86 87 7 8 +14889,5 6 124 36 37 19 7 4 +6196,15 12 16 17 37 10 7 8 +14888,5 6 124 36 37 19 7 8 +6197,15 12 16 17 37 10 7 4 +20846,15 26 57 58 58 7 4 +20845,15 26 57 58 58 7 8 +16797,1 6 29 9 36 37 38 17 11 8 +4003,5 6 64 61 62 17 37 50 85 54 7 8 +20655,1 12 36 37 38 37 52 7 8 +1242,15 55 53 9 10 7 4 +1241,15 55 53 9 10 7 8 +17282,5 6 64 36 37 38 37 32 54 54 7 8 +9419,1 6 55 9 16 36 37 38 17 10 54 7 4 +11376,1 12 36 37 38 37 52 7 4 +17529,1 6 55 9 16 36 37 38 17 10 54 7 8 +18483,15 65 90 16 17 10 85 7 8 +21139,5 6 18 12 16 17 37 52 13 +18484,15 65 90 16 17 10 85 7 4 +16955,1 6 53 67 36 37 17 62 10 7 4 +13651,15 9 36 16 17 37 115 68 13 +15421,1 6 92 49 50 93 7 4 +26550,5 6 55 9 16 17 37 48 35 11 7 8 +9843,1 6 53 12 34 107 107 36 37 94 +15422,1 6 92 49 50 93 7 8 +8811,5 6 64 61 62 17 37 50 85 54 7 4 +1427,5 6 31 36 37 17 63 7 4 +1428,5 6 31 36 37 17 63 7 8 +22062,1 6 88 96 16 21 77 78 22 8 +22604,1 6 49 47 9 36 37 17 10 7 4 +22956,5 6 12 16 36 61 16 17 11 8 +6417,5 6 12 31 47 48 35 11 8 +15745,1 6 9 36 37 10 7 4 +22147,15 65 9 61 62 68 7 8 +3092,1 6 9 36 37 10 7 8 +22146,15 65 9 61 62 68 7 4 +13139,5 6 9 16 17 17 91 7 8 +382,1 6 64 61 62 17 37 50 11 13 +459,1 6 57 9 16 17 10 85 7 4 +20721,1 6 88 89 66 58 7 8 +20927,1 6 12 12 16 36 37 38 37 48 72 11 8 +381,1 6 64 61 62 17 37 50 11 8 +16667,5 6 29 51 36 37 17 10 30 7 4 +15884,5 6 57 92 9 36 16 17 91 7 8 +18819,5 6 53 9 16 61 16 17 19 54 7 8 +19787,5 6 71 36 37 74 7 8 +20056,15 55 12 51 47 48 50 7 8 +15883,5 6 57 92 9 36 16 17 91 7 4 +18818,5 6 53 9 16 61 16 17 19 54 7 4 +11881,5 6 9 16 39 36 39 36 16 17 11 8 +22551,5 6 53 31 47 42 43 17 10 54 7 4 +20982,15 12 16 36 16 17 37 48 7 4 +13549,15 96 36 16 61 16 17 37 52 11 8 +8507,5 6 71 36 37 11 8 +20983,15 12 16 36 16 17 37 48 7 8 +19287,15 9 16 17 43 17 3 8 +3087,5 6 57 9 16 17 37 52 7 8 +21823,15 9 16 17 43 17 3 4 +25891,5 6 71 36 37 11 13 +4899,5 6 18 12 16 17 37 108 35 7 8 +2643,1 6 53 9 16 17 37 48 72 54 7 4 +6250,15 55 12 16 36 16 17 37 48 50 7 8 +3086,5 6 57 9 16 17 37 52 7 4 +19187,5 6 12 88 89 7 4 +8302,5 6 53 71 72 56 7 4 +24428,1 6 65 9 39 36 16 36 16 17 37 115 32 7 4 +8303,5 6 53 71 72 56 7 8 +7969,1 12 36 37 38 43 32 54 7 8 +9901,5 6 9 16 36 16 17 62 10 7 4 +17937,1 6 53 12 34 107 107 36 37 69 +20055,15 55 12 51 47 48 50 7 4 +24429,1 6 65 9 39 36 16 36 16 17 37 115 32 7 8 +17052,70 16 36 16 39 36 16 61 16 17 37 35 54 7 8 +17053,70 16 36 16 39 36 16 61 16 17 37 35 54 7 4 +10338,5 6 9 16 36 16 17 62 10 7 8 +12898,15 51 36 37 19 33 7 8 +12899,15 51 36 37 19 33 7 4 +14370,5 6 67 47 36 37 37 35 7 8 +26544,70 16 36 16 61 16 17 63 7 4 +25908,5 6 53 31 32 11 8 +4348,1 6 53 54 75 7 4 +14898,5 6 29 9 10 30 30 7 4 +15158,1 6 9 16 17 62 72 7 8 +26543,70 16 36 16 61 16 17 63 7 8 +4364,1 6 53 54 75 7 8 +7165,1 6 34 35 33 13 +14899,5 6 29 9 10 30 30 7 8 +12673,5 6 9 16 36 16 17 37 68 54 7 8 +15334,5 6 9 16 36 16 17 37 68 54 7 4 +17119,5 2 16 17 37 48 32 7 4 +7177,1 6 55 9 16 17 37 35 7 8 +1057,1 6 53 57 58 54 7 4 +5946,1 6 71 36 37 17 91 7 4 +15010,1 6 55 9 16 17 37 35 7 4 +1058,1 6 53 57 58 54 7 8 +5945,1 6 71 36 37 17 91 7 8 +175,15 49 36 37 17 11 8 +10035,15 88 57 12 39 36 16 17 19 13 +176,15 49 36 37 17 11 13 +224,5 6 64 61 62 17 3 8 +1210,5 6 90 91 54 7 4 +20253,5 6 71 36 37 17 37 68 7 8 +279,5 6 64 61 62 17 3 4 +20453,1 6 51 47 48 48 52 7 4 +1209,5 6 90 91 54 7 8 +18995,5 6 49 107 36 37 17 37 48 72 7 4 +20452,1 6 51 47 48 48 52 7 8 +23156,5 6 57 9 16 36 16 117 118 68 7 4 +14213,5 6 64 16 39 36 39 36 16 17 37 50 7 8 +18994,5 6 49 107 36 37 17 37 48 72 7 8 +7434,5 6 64 36 16 17 19 7 8 +16746,15 55 12 57 58 11 7 4 +4988,1 6 9 10 110 48 35 54 7 4 +7435,5 6 64 36 16 17 19 7 4 +460,1 6 57 9 16 17 10 85 7 8 +13350,15 55 9 16 42 16 17 10 7 4 +4992,1 6 9 10 110 48 35 54 7 8 +8867,5 6 53 64 36 37 38 37 48 68 13 +9523,15 51 42 43 17 37 35 11 8 +1678,15 55 12 57 58 11 7 8 +3604,1 6 55 65 66 13 +472,1 6 57 71 72 13 +5322,1 12 16 36 16 17 37 48 52 7 8 +13351,15 55 9 16 42 16 17 10 7 8 +5325,1 12 16 36 16 17 37 48 52 7 4 +21277,15 34 16 17 32 7 8 +15090,15 55 53 9 10 87 58 54 54 7 8 +21276,15 34 16 17 32 7 4 +22059,15 96 36 16 17 19 89 11 56 7 8 +5602,5 6 53 18 9 16 17 63 7 4 +16745,15 96 36 16 17 19 89 11 56 7 4 +5603,5 6 53 18 9 16 17 63 7 8 +2526,15 9 36 37 38 37 48 50 7 4 +1043,1 6 64 61 62 11 13 +16901,1 6 124 9 36 16 17 37 11 8 +2525,15 9 36 37 38 37 48 50 7 8 +9603,1 6 53 49 50 11 7 4 +10297,1 6 57 9 16 36 37 38 37 48 72 54 7 8 +15091,15 55 53 9 10 87 58 54 54 7 4 +1042,1 6 64 61 62 11 8 +21841,95 36 16 17 11 8 +19233,1 6 86 9 16 17 37 32 7 8 +1341,5 6 53 31 32 7 8 +17977,1 6 86 9 16 17 37 32 7 4 +1340,5 6 53 31 32 7 4 +3916,5 6 12 65 67 107 61 62 63 7 4 +7105,1 6 84 53 54 13 +2165,1 6 12 16 17 37 35 11 8 +21842,95 36 16 17 11 13 +11247,5 6 86 9 16 17 10 54 7 8 +25704,15 12 36 37 38 17 11 56 7 4 +8883,15 51 107 108 50 7 4 +3332,15 51 42 43 17 10 54 7 4 +8884,15 51 107 108 50 7 8 +2189,1 6 55 9 16 17 62 10 7 4 +22708,15 34 107 36 37 11 7 8 +3331,15 51 42 43 17 10 54 7 8 +6993,1 6 55 9 16 17 62 10 7 8 +20663,15 34 107 36 37 11 7 4 +7172,5 6 53 12 61 16 17 69 +20918,1 6 71 47 48 48 68 11 8 +7655,1 6 86 9 39 36 16 17 10 7 4 +13282,5 6 86 9 16 17 10 54 7 4 +14799,5 6 12 65 67 107 61 62 63 7 8 +4877,5 6 90 61 62 17 37 35 87 7 8 +22808,1 6 86 9 39 36 16 17 10 7 8 +24603,5 6 12 11 89 7 8 +14396,15 51 36 37 17 37 52 7 8 +17435,1 6 34 35 27 28 +14397,15 51 36 37 17 37 52 7 4 +13420,1 6 65 57 26 9 16 17 10 7 4 +7199,1 6 65 57 26 9 16 17 10 7 8 +10675,5 6 55 12 9 16 17 43 32 7 8 +25090,5 6 55 12 9 16 17 43 32 7 4 +17919,5 6 53 54 56 89 66 7 8 +17644,5 6 53 54 56 89 66 7 4 +21259,1 6 53 51 31 32 13 +15327,5 6 53 12 34 47 48 48 32 54 7 4 +9390,5 6 76 42 43 106 7 4 +2062,1 6 51 52 89 13 +6104,5 6 31 32 33 13 +13051,5 6 12 34 47 36 37 17 11 8 +20923,1 6 12 12 16 36 37 38 37 35 7 8 +21875,5 6 67 47 48 50 54 7 8 +21876,5 6 67 47 48 50 54 7 4 +5941,5 6 88 90 16 17 91 7 4 +5940,5 6 88 90 16 17 91 7 8 +25524,5 6 57 65 57 51 52 13 +4188,1 12 11 58 93 58 7 4 +10288,1 6 57 9 39 36 16 17 63 7 4 +17754,5 6 53 18 12 16 61 16 17 43 52 7 8 +3569,1 6 53 9 31 32 33 13 +17755,5 6 53 18 12 16 61 16 17 43 52 7 4 +12690,15 9 61 62 50 11 7 8 +5977,15 9 61 62 50 11 7 4 +11139,15 31 42 43 10 93 63 7 8 +23744,1 6 64 61 62 91 54 7 8 +11140,15 31 42 43 10 93 63 7 4 +23745,1 6 64 61 62 91 54 7 4 +5630,5 6 53 9 16 17 11 7 8 +7337,70 36 16 42 16 17 37 35 93 7 8 +11339,5 6 53 9 16 17 11 7 4 +7338,70 36 16 42 16 17 37 35 93 7 4 +16764,15 49 36 37 17 3 4 +6304,15 12 16 36 37 38 37 48 50 7 4 +3754,5 6 53 53 31 32 13 +19669,15 44 9 16 17 43 32 7 8 +3423,15 12 16 36 37 38 37 48 50 7 8 +15463,1 6 86 53 12 16 36 37 38 17 11 8 +20912,5 6 64 42 16 17 11 7 4 +11009,5 6 64 16 36 37 38 37 108 48 72 54 7 4 +19751,5 6 64 42 16 17 11 7 8 +11010,5 6 64 16 36 37 38 37 108 48 72 54 7 8 +10815,15 51 36 16 61 16 17 10 7 4 +23321,5 6 34 35 27 11 8 +7088,5 6 88 57 57 34 35 7 8 +16765,15 49 36 37 17 3 8 +15410,15 51 36 16 61 16 17 10 7 8 +11655,15 57 9 16 36 37 38 17 11 13 +19670,15 44 9 16 17 43 32 7 4 +22192,15 12 36 37 38 17 37 68 7 4 +22193,15 12 36 37 38 17 37 68 7 8 +11742,1 6 55 9 16 17 10 54 7 4 +9879,1 6 55 9 16 17 10 54 7 8 +59,5 6 34 36 37 10 7 4 +9966,15 71 36 37 74 85 7 4 +60,5 6 34 36 37 10 7 8 +21759,5 6 86 9 16 17 37 35 11 8 +9965,15 71 36 37 74 85 7 8 +1116,5 6 53 67 36 37 11 8 +21398,1 6 55 88 57 58 58 66 58 7 4 +23433,15 31 47 42 43 17 75 7 4 +1021,5 6 57 12 16 17 19 13 +26841,15 88 55 9 16 36 37 38 37 35 54 7 8 +26842,15 88 55 9 16 36 37 38 37 35 54 7 4 +23432,15 31 47 42 43 17 75 7 8 +2365,1 6 57 51 36 37 17 10 7 4 +20688,1 6 55 67 47 42 43 17 37 52 54 7 8 +13782,5 6 34 36 37 38 17 10 54 7 4 +5057,1 6 53 67 36 37 17 10 54 7 4 +15572,1 6 55 67 47 42 43 17 37 52 54 7 4 +21003,1 6 31 47 47 36 37 17 11 8 +23127,5 6 86 9 16 17 62 10 7 8 +1952,1 6 84 51 47 47 47 109 110 13 +8549,1 6 53 67 36 37 17 10 54 7 8 +26460,1 6 84 57 65 9 16 17 37 72 58 7 4 +11677,1 6 84 57 65 9 16 17 37 72 58 7 8 +15625,1 6 76 61 62 17 10 54 54 7 4 +26243,15 109 57 55 57 96 16 21 77 78 22 8 +26411,5 6 51 47 42 43 17 37 68 54 7 4 +26412,5 6 51 47 42 43 17 37 68 54 7 8 +5244,1 6 12 16 17 37 11 8 +26859,1 6 88 88 55 56 58 89 7 8 +26654,1 6 55 9 16 17 37 35 11 8 +5288,5 6 53 90 91 89 54 54 7 8 +2948,5 6 92 34 35 7 8 +5289,5 6 53 90 91 89 54 54 7 4 +2947,5 6 92 34 35 7 4 +19192,15 65 9 16 17 37 68 7 8 +17377,1 6 64 16 36 37 38 37 48 68 13 +19193,15 65 9 16 17 37 68 7 4 +7810,15 96 36 16 36 16 21 77 78 22 79 4 +1418,1 6 64 16 36 37 38 37 50 7 4 +17443,5 6 31 32 27 28 +22851,5 6 34 35 27 7 8 +1419,1 6 64 16 36 37 38 37 50 7 8 +15569,1 6 92 12 16 21 77 78 22 8 +17437,5 6 34 35 27 7 4 +1255,5 6 53 9 31 32 13 +25818,5 6 29 9 16 16 17 11 13 +25817,5 6 29 9 16 16 17 11 8 +586,5 6 53 31 61 62 63 7 4 +20841,1 6 31 47 48 32 85 54 7 4 +20844,25 26 57 58 58 7 8 +3666,15 55 12 11 11 7 8 +7859,1 6 53 34 107 107 107 36 37 10 7 8 +15360,15 55 12 11 11 7 4 +23003,15 88 89 85 54 7 8 +25509,15 51 47 48 72 54 85 7 8 +3320,15 9 36 37 38 10 7 4 +17020,1 6 88 89 66 56 89 13 +14051,1 6 12 16 17 10 54 7 4 +15451,15 12 16 39 36 16 117 118 32 54 7 8 +608,15 44 9 16 17 43 32 11 8 +14052,1 6 12 16 17 10 54 7 8 +23004,15 88 89 85 54 7 4 +495,5 6 53 31 61 62 63 7 8 +15450,15 12 16 39 36 16 117 118 32 54 7 4 +25529,1 6 55 56 89 66 58 7 4 +6764,1 6 55 12 12 88 9 16 17 11 13 +14561,1 6 71 72 56 66 7 4 +10285,5 6 86 9 16 17 37 35 7 4 +25530,1 6 55 56 89 66 58 7 8 +6763,1 6 55 12 12 88 9 16 17 11 8 +26407,1 6 9 10 58 89 85 85 54 7 4 +2423,5 6 86 9 16 17 37 35 7 8 +5974,5 6 64 36 16 61 16 17 19 7 4 +26123,1 6 9 10 58 89 85 85 54 7 8 +15624,1 6 76 61 62 17 10 54 54 7 8 +3321,15 9 36 37 38 10 7 8 +14572,1 6 71 72 56 66 7 8 +12113,1 12 36 16 17 37 115 52 7 4 +25510,15 51 47 48 72 54 85 7 4 +12116,1 12 36 16 17 37 115 52 7 8 +19261,5 6 53 9 39 36 61 61 16 17 62 10 7 4 +7882,15 73 16 42 16 17 19 7 4 +3719,1 45 21 22 17 37 35 87 7 8 +7883,15 73 16 42 16 17 19 7 8 +3720,1 45 21 22 17 37 35 87 7 4 +19942,15 53 34 36 37 17 74 7 8 +24626,1 6 9 16 36 37 38 37 48 32 7 8 +14720,15 53 34 36 37 17 74 7 4 +16859,1 6 55 9 16 17 43 52 7 4 +7443,15 34 107 107 36 37 94 +10696,15 55 53 49 107 108 52 54 7 4 +11522,15 34 47 48 35 11 8 +25554,1 6 12 36 16 17 11 8 +5872,15 55 53 49 107 108 52 54 7 8 +8534,15 55 53 9 10 54 7 4 +17938,15 34 107 107 36 37 69 +7298,5 6 92 12 34 35 13 +12348,5 6 9 16 17 17 43 32 93 7 4 +8533,15 55 53 9 10 54 7 8 +26582,1 6 55 9 16 17 43 52 7 8 +9081,1 6 9 36 37 17 10 7 8 +8755,1 6 9 36 37 17 10 7 4 +6810,5 6 65 66 87 13 +25975,5 6 55 12 57 96 36 37 38 19 11 8 +20336,15 51 36 37 38 17 63 7 4 +6419,15 51 36 37 38 17 63 7 8 +20985,5 6 36 37 19 7 4 +15418,5 6 71 47 48 72 7 8 +2952,1 6 34 36 37 10 93 7 4 +8169,1 6 9 39 36 16 61 16 17 37 35 7 4 +18052,1 12 16 36 16 61 16 17 11 8 +17594,15 55 53 9 10 33 13 +7056,1 6 16 17 17 10 7 4 +25387,1 6 57 92 57 9 16 17 37 50 93 58 7 8 +12347,5 6 9 16 17 17 43 32 93 7 8 +25388,1 6 57 92 57 9 16 17 37 50 93 58 7 4 +2953,1 6 34 36 37 10 93 7 8 +20986,5 6 36 37 19 7 8 +9239,5 6 49 36 37 17 19 58 11 8 +18210,15 49 42 43 17 75 7 4 +18348,15 12 16 17 37 32 87 7 4 +10702,1 6 12 49 36 37 17 10 7 4 +18209,15 49 42 43 17 75 7 8 +18349,15 12 16 17 37 32 87 7 8 +21054,5 6 12 16 17 10 93 7 8 +8936,1 6 16 17 17 10 7 8 +14830,5 6 12 16 17 10 93 7 4 +20466,1 6 65 88 71 109 110 13 +6325,15 34 107 36 16 17 37 72 7 4 +26261,5 6 65 9 39 36 16 36 16 17 11 8 +26370,5 6 71 47 48 72 7 4 +13242,5 6 12 12 16 39 36 16 17 19 13 +18378,5 6 18 12 16 17 37 11 8 +12697,5 6 49 47 36 37 69 +20666,5 6 53 36 37 63 7 8 +11155,15 88 51 114 36 37 17 11 8 +20665,5 6 53 36 37 63 7 4 +19590,5 6 57 12 16 36 37 38 17 37 32 7 8 +5857,15 67 68 7 4 +11156,15 88 51 114 36 37 17 11 13 +9824,15 12 11 56 89 13 +20847,15 12 11 58 27 13 +12155,15 65 49 47 48 72 7 4 +25476,5 6 9 16 17 37 32 10 7 4 +6374,15 96 36 16 17 62 10 7 8 +5858,15 67 68 7 8 +21956,1 6 64 16 61 16 17 37 35 11 7 4 +12154,15 65 49 47 48 72 7 8 +25477,5 6 9 16 17 37 32 10 7 8 +11479,1 6 51 47 48 48 52 58 7 8 +20712,5 6 71 47 48 35 54 54 7 8 +3153,1 6 64 61 62 74 7 8 +6375,15 96 36 16 17 62 10 7 4 +24135,1 6 51 47 48 48 52 58 7 4 +20711,5 6 71 47 48 35 54 54 7 4 +3793,15 57 9 36 37 38 10 7 4 +26778,5 6 9 16 36 16 17 37 50 66 7 4 +12248,15 51 36 37 38 17 62 10 7 4 +16598,1 6 57 96 16 36 16 61 16 17 19 7 8 +21525,1 6 65 88 88 57 9 16 17 10 7 8 +3792,15 57 9 36 37 38 10 7 8 +3154,1 6 64 61 62 74 7 4 +8603,15 51 36 37 38 17 62 10 7 8 +18471,1 6 65 88 88 57 9 16 17 10 7 4 +5418,5 6 53 67 47 36 37 94 +7780,1 6 34 35 11 8 +26596,1 6 49 50 89 7 4 +871,15 71 42 43 17 91 7 4 +11326,1 6 51 47 47 42 43 17 63 7 8 +3180,15 96 16 36 37 38 17 19 58 11 8 +11476,1 6 9 16 42 16 17 11 7 8 +870,15 71 42 43 17 91 7 8 +11327,1 6 51 47 47 42 43 17 63 7 4 +23223,1 6 64 16 36 16 17 37 115 72 54 7 8 +10056,15 55 49 36 37 38 11 13 +10055,15 55 49 36 37 38 11 8 +23222,1 6 64 16 36 16 17 37 115 72 54 7 4 +14967,5 6 65 57 57 9 61 16 17 11 13 +21748,1 6 34 107 107 36 37 63 7 4 +23770,15 88 9 16 17 37 48 68 7 8 +14966,5 6 65 57 57 9 61 16 17 11 8 +16135,5 6 53 34 47 48 68 7 8 +18610,1 6 49 50 89 7 8 +23771,15 88 9 16 17 37 48 68 7 4 +12588,15 12 11 58 27 28 +24513,70 36 16 17 37 72 56 7 4 +21749,1 6 34 107 107 36 37 63 7 8 +24514,70 36 16 17 37 72 56 7 8 +12210,5 6 55 34 35 89 7 4 +24760,1 6 67 47 42 43 17 37 50 7 8 +12669,5 6 55 34 35 89 7 8 +24759,1 6 67 47 42 43 17 37 50 7 4 +9114,15 55 12 88 55 56 89 11 8 +20027,15 55 12 88 55 56 89 11 13 +3126,1 6 12 16 17 37 35 7 8 +13675,5 6 53 12 51 52 11 8 +22467,5 6 57 58 11 89 7 8 +10014,1 6 12 36 16 17 19 13 +17070,5 6 88 71 72 7 4 +1977,5 6 88 9 16 61 16 17 19 7 8 +9477,1 6 12 67 68 7 8 +731,5 6 64 61 62 17 11 13 +2589,1 6 71 47 48 48 68 7 8 +9476,1 6 12 67 68 7 4 +5452,1 6 71 47 48 48 68 7 4 +193,5 6 64 61 62 17 11 8 +21931,1 6 67 36 37 10 54 7 4 +23816,1 6 51 36 37 17 75 7 4 +1978,5 6 88 9 16 61 16 17 19 7 4 +21930,1 6 67 36 37 10 54 7 8 +26690,1 6 57 9 36 37 38 37 108 48 72 54 7 4 +13997,1 6 55 57 9 16 17 63 85 7 8 +18030,1 6 105 16 17 98 +25352,1 6 57 57 92 9 16 17 10 93 58 7 4 +5285,1 6 53 88 89 54 54 7 4 +9694,1 6 57 57 92 9 16 17 10 93 58 7 8 +20591,5 6 53 34 12 36 37 63 7 8 +26629,1 6 55 57 9 16 17 63 85 7 4 +21774,5 6 57 58 66 89 7 4 +5286,1 6 53 88 89 54 54 7 8 +18029,1 6 105 16 17 69 +21580,1 12 16 39 36 16 36 37 38 17 37 52 7 8 +23239,5 6 57 58 66 89 7 8 +17374,5 6 18 12 16 17 37 108 35 58 7 4 +17373,5 6 18 12 16 17 37 108 35 58 7 8 +3736,15 53 34 107 108 35 54 7 8 +5326,1 12 16 36 16 17 37 52 7 4 +648,1 6 64 16 36 37 38 17 37 48 72 7 4 +13721,15 88 55 67 61 62 63 7 4 +25424,5 6 84 88 55 9 16 17 10 85 7 4 +15966,1 12 16 36 16 17 37 52 7 8 +18851,1 6 64 16 36 37 38 17 37 48 72 7 8 +23256,5 6 84 88 55 9 16 17 10 85 7 8 +3530,5 6 31 47 47 36 37 10 7 8 +3735,15 53 34 107 108 35 54 7 4 +19174,15 88 55 67 61 62 63 7 8 +25147,1 6 76 61 62 17 62 72 7 8 +15620,70 16 36 37 38 17 37 35 87 7 8 +16711,1 6 76 61 62 17 62 72 7 4 +18162,1 6 9 16 36 16 17 63 7 8 +5366,1 6 92 12 16 17 19 13 +24129,1 12 39 36 16 42 16 17 19 13 +24680,5 6 88 9 16 17 69 +5156,15 53 57 58 66 54 7 8 +24693,1 6 18 12 16 17 43 32 10 7 8 +18249,1 6 9 16 36 16 17 63 7 4 +5157,15 53 57 58 66 54 7 4 +26707,1 6 18 12 16 17 43 32 10 7 4 +457,15 65 9 16 17 10 85 7 8 +6915,1 6 9 16 17 43 48 11 13 +8013,1 6 84 57 31 47 36 37 17 63 7 4 +6914,1 6 9 16 17 43 48 11 8 +8014,1 6 84 57 31 47 36 37 17 63 7 8 +15568,1 6 92 12 16 21 77 78 22 79 4 +6499,1 2 16 17 37 32 10 7 8 +21667,1 6 90 91 58 89 13 +325,1 6 31 42 43 17 37 32 7 8 +6498,1 2 16 17 37 32 10 7 4 +4149,1 6 12 16 17 62 10 7 4 +20099,5 6 9 16 42 16 17 37 35 11 7 4 +2723,1 6 12 16 17 62 10 7 8 +19551,5 6 12 65 9 16 17 37 68 11 7 8 +16943,5 6 34 47 48 35 30 7 8 +10977,15 65 26 88 57 9 16 17 11 8 +20884,1 6 12 65 88 57 9 16 17 63 7 8 +9529,15 51 42 43 17 37 35 7 8 +10933,15 9 16 17 37 35 11 7 8 +11412,1 6 53 55 9 16 17 69 +9530,15 51 42 43 17 37 35 7 4 +2325,1 6 12 9 16 36 37 38 17 10 7 8 +3458,1 6 12 9 16 36 37 38 17 10 7 4 +18702,15 9 16 17 37 35 11 7 4 +17072,5 6 71 114 115 52 89 7 8 +20883,1 6 12 65 88 57 9 16 17 63 7 4 +21785,5 6 90 36 16 61 16 17 37 35 7 8 +15459,1 6 53 54 56 66 7 4 +12805,5 6 64 61 62 17 37 54 7 4 +26749,1 6 84 88 57 58 58 85 7 8 +12806,5 6 64 61 62 17 37 54 7 8 +6471,5 6 57 53 51 36 37 17 10 7 8 +4795,5 6 53 9 10 58 89 54 7 8 +456,15 65 9 16 17 10 85 7 4 +16612,1 6 88 55 55 65 66 13 +4794,5 6 53 9 10 58 89 54 7 4 +21717,1 6 76 61 62 17 37 35 66 7 4 +7043,5 6 86 53 9 16 17 11 8 +2888,5 6 57 53 51 36 37 17 10 7 4 +15621,70 16 36 37 38 17 37 35 87 7 4 +15458,1 6 53 54 56 66 7 8 +21718,1 6 76 61 62 17 37 35 66 7 8 +463,15 71 36 37 17 10 7 4 +25734,15 12 36 16 61 16 17 11 7 4 +462,15 71 36 37 17 10 7 8 +9921,15 88 26 51 47 48 72 7 4 +9922,15 88 26 51 47 48 72 7 8 +20114,15 12 36 16 61 16 17 11 7 8 +7482,5 6 55 51 47 42 43 17 63 7 4 +598,5 6 64 16 17 11 8 +6552,15 57 53 51 36 37 17 3 8 +6551,15 57 53 51 36 37 17 3 4 +5677,5 6 55 51 47 42 43 17 63 7 8 +95,5 6 31 32 7 4 +11800,70 16 39 36 16 42 16 17 11 8 +210,5 6 31 32 7 8 +11801,70 16 39 36 16 42 16 17 11 13 +4578,15 65 53 12 11 54 7 4 +18086,5 6 92 12 36 37 38 11 8 +4577,15 65 53 12 11 54 7 8 +18087,5 6 92 12 36 37 38 11 13 +15523,5 6 53 12 16 17 37 52 7 4 +12887,1 6 53 9 36 16 17 37 52 7 4 +14252,5 6 49 36 37 17 69 +19958,1 6 92 9 16 36 37 38 17 63 93 7 8 +21546,15 57 55 73 36 16 36 37 38 17 69 +26306,1 6 53 9 36 16 17 37 52 7 8 +1870,5 6 49 36 37 19 13 +6280,1 6 41 88 89 13 +15522,5 6 53 12 16 17 37 52 7 8 +8504,1 12 36 37 38 37 68 13 +20821,15 12 16 36 37 38 37 48 52 54 7 8 +1441,5 6 18 12 16 17 43 68 7 4 +18293,5 6 55 57 92 31 32 7 4 +5329,5 6 18 12 16 17 43 68 7 8 +13951,5 6 9 61 62 48 32 93 58 7 4 +19833,5 6 9 16 17 37 108 48 72 7 8 +13950,5 6 9 61 62 48 32 93 58 7 8 +15347,5 6 12 88 89 66 11 8 +1007,15 12 11 58 7 8 +1008,15 12 11 58 7 4 +2043,5 6 64 16 17 11 13 +20822,15 12 16 36 37 38 37 48 52 54 7 4 +2556,5 6 86 31 32 13 +2758,5 6 53 18 12 16 61 16 17 62 10 7 4 +9045,1 6 57 53 9 16 61 16 17 10 7 8 +15443,15 65 57 67 61 62 63 7 4 +5067,1 6 57 53 9 16 61 16 17 10 7 4 +16149,5 6 71 72 27 89 7 8 +8152,5 6 49 36 37 17 59 +8585,15 55 53 12 16 36 37 38 11 8 +8586,15 55 53 12 16 36 37 38 11 13 +2759,5 6 53 18 12 16 61 16 17 62 10 7 8 +24932,1 6 92 12 16 17 11 13 +25568,1 6 126 51 61 62 63 7 8 +485,5 6 53 31 32 13 +17006,5 6 29 34 35 93 7 4 +681,5 6 67 61 62 17 63 7 8 +11645,5 6 71 107 36 37 17 11 8 +5414,15 67 47 36 37 94 +8978,1 6 55 53 9 16 39 36 16 17 91 7 4 +11646,5 6 71 107 36 37 17 11 13 +8214,1 6 64 16 36 16 17 37 48 35 54 7 4 +18758,5 6 55 88 12 26 9 16 17 10 7 8 +20539,1 6 84 71 72 85 54 7 4 +6615,1 6 92 12 16 17 11 8 +16836,1 6 64 16 36 16 17 37 48 35 54 7 8 +4842,5 6 64 61 62 17 37 35 11 54 7 4 +22151,5 6 57 55 9 36 37 38 10 54 7 4 +8421,5 6 64 61 62 17 37 35 11 54 7 8 +20533,1 6 84 71 72 85 54 7 8 +19692,5 6 57 55 9 36 37 38 10 54 7 8 +8977,1 6 55 53 9 16 39 36 16 17 91 7 8 +682,5 6 67 61 62 17 63 7 4 +23369,5 6 57 12 16 17 91 7 8 +2761,5 6 53 90 16 61 16 17 10 7 4 +8468,1 6 51 36 37 17 10 93 7 8 +23370,5 6 57 12 16 17 91 7 4 +2762,5 6 53 90 16 61 16 17 10 7 8 +8467,1 6 51 36 37 17 10 93 7 4 +11637,1 6 57 9 16 36 37 38 37 48 35 7 4 +3171,15 55 57 9 16 39 36 16 117 118 52 7 4 +24967,5 6 34 47 48 32 54 7 4 +16240,5 6 57 55 12 11 13 +3172,15 55 57 9 16 39 36 16 117 118 52 7 8 +21124,5 6 34 47 48 32 54 7 8 +2569,5 6 9 31 32 13 +10291,5 6 65 9 16 42 16 17 10 7 8 +7410,15 88 51 36 37 11 13 +12534,1 6 12 109 9 16 17 62 10 7 8 +1401,15 67 36 37 11 13 +24037,5 6 65 9 16 42 16 17 10 7 4 +9227,1 6 88 67 68 7 8 +1400,15 67 36 37 11 8 +5688,1 6 88 67 68 7 4 +22117,1 6 53 51 52 54 85 7 8 +7409,15 88 51 36 37 11 8 +22118,1 6 53 51 52 54 85 7 4 +12104,15 88 26 9 16 17 37 52 7 8 +4047,15 34 42 43 17 11 13 +18922,5 6 92 31 47 61 62 63 7 4 +20627,1 6 12 109 9 16 17 62 10 7 4 +12103,15 88 26 9 16 17 37 52 7 4 +17709,1 6 51 52 56 13 +4046,15 34 42 43 17 11 8 +9110,15 12 11 58 11 8 +13166,1 6 9 10 87 56 7 8 +8500,15 67 68 68 7 8 +23537,5 6 12 57 58 58 11 7 4 +8499,15 67 68 68 7 4 +23536,5 6 12 57 58 58 11 7 8 +8940,1 6 9 10 87 56 7 4 +4118,15 96 36 16 17 37 35 7 4 +15467,15 51 47 48 35 7 4 +22342,15 109 110 89 11 56 7 4 +15466,15 51 47 48 35 7 8 +22001,15 57 9 16 36 16 17 10 54 7 8 +8064,5 6 109 110 13 +19471,5 6 31 114 115 72 7 4 +4117,15 96 36 16 17 37 35 7 8 +16485,5 6 31 114 115 72 7 8 +19032,1 6 84 71 42 43 17 63 85 7 4 +7120,1 6 84 18 12 16 17 37 50 85 54 7 8 +13303,1 6 84 71 42 43 17 63 85 7 8 +9116,1 6 55 12 88 55 56 89 13 +5017,1 6 29 9 16 42 16 17 10 30 7 8 +7121,1 6 84 18 12 16 17 37 50 85 54 7 4 +7397,1 6 57 55 86 87 13 +12493,1 2 16 17 37 68 54 7 8 +1567,1 6 55 88 57 57 9 16 36 37 38 17 10 7 8 +12492,1 2 16 17 37 68 54 7 4 +16424,96 16 36 37 38 17 43 32 56 7 4 +6339,1 6 84 67 68 85 7 4 +6282,1 6 53 12 16 17 11 54 7 4 +18049,1 6 55 55 51 36 37 17 11 8 +16423,96 16 36 37 38 17 43 32 56 7 8 +19153,1 6 84 67 68 85 7 8 +56,1 6 34 35 7 8 +19031,1 6 55 88 57 57 9 16 36 37 38 17 10 7 4 +18621,5 6 57 55 55 9 16 17 11 8 +23638,5 2 16 17 43 11 8 +57,1 6 34 35 7 4 +6681,1 6 53 12 16 17 11 54 7 8 +13234,1 6 55 90 16 17 37 35 7 8 +5685,5 6 9 16 17 37 35 54 7 8 +7647,15 86 9 39 36 16 17 10 7 8 +1439,5 6 49 36 37 11 8 +7646,15 86 9 39 36 16 17 10 7 4 +8752,1 6 55 90 16 17 37 35 7 4 +3300,1 12 16 36 16 61 16 17 19 13 +18863,1 6 64 16 36 16 17 37 108 35 7 8 +1440,5 6 49 36 37 11 13 +5684,5 6 9 16 17 37 35 54 7 4 +4241,1 6 64 16 36 16 17 37 108 35 7 4 +25821,1 6 53 36 37 17 11 8 +5018,1 6 29 9 16 42 16 17 10 30 7 4 +14728,1 6 90 16 36 37 38 37 35 54 7 4 +9510,15 51 42 43 17 11 8 +18870,1 6 51 12 16 17 37 35 7 8 +9511,15 51 42 43 17 11 13 +24010,5 6 55 12 16 17 91 7 8 +25822,1 6 53 36 37 17 11 13 +23268,15 55 53 64 16 17 120 7 8 +23267,15 55 53 64 16 17 120 7 4 +14729,1 6 90 16 36 37 38 37 35 54 7 8 +17005,5 6 29 34 35 93 7 8 +3084,5 6 12 65 9 16 17 10 7 4 +3083,5 6 12 65 9 16 17 10 7 8 +6774,15 51 36 16 17 91 7 8 +12528,95 16 36 16 17 11 8 +9044,15 51 36 16 17 91 7 4 +12529,95 16 36 16 17 11 13 +21400,15 55 88 57 58 58 66 58 7 8 +5095,15 34 47 48 35 7 4 +17312,5 6 53 64 16 42 16 61 16 17 10 7 4 +16524,5 6 53 12 9 16 17 37 50 7 8 +5096,15 34 47 48 35 7 8 +5031,1 6 53 49 36 37 10 7 8 +4776,15 53 88 89 87 7 8 +15666,1 6 26 55 9 16 17 10 93 7 8 +18202,1 6 26 55 9 16 17 10 93 7 4 +6223,1 6 53 49 36 37 10 7 4 +4671,1 6 12 34 35 13 +4777,15 53 88 89 87 7 4 +26041,1 6 34 36 37 17 10 93 7 8 +19523,70 16 39 36 39 36 16 17 37 72 7 8 +2656,5 6 57 9 16 61 16 17 11 8 +19524,70 16 39 36 39 36 16 17 37 72 7 4 +19955,1 6 34 36 37 17 10 93 7 4 +5711,15 67 36 37 19 13 +18662,1 6 9 16 17 74 7 4 +19548,15 67 36 37 17 69 +18663,1 6 9 16 17 74 7 8 +345,15 34 42 43 17 3 4 +253,1 6 67 68 13 +16951,5 6 57 65 9 16 17 37 52 7 8 +21969,5 6 51 51 36 37 69 +21399,15 55 88 57 58 58 66 58 7 4 +344,15 34 42 43 17 3 8 +9253,15 71 47 48 48 72 54 7 4 +22000,15 57 9 16 36 16 17 10 54 7 4 +15080,15 57 88 55 56 13 +6804,5 6 65 66 89 13 +9254,15 71 47 48 48 72 54 7 8 +2657,5 6 57 9 16 61 16 17 11 13 +17128,1 6 9 10 11 33 13 +8825,5 6 53 67 47 48 68 54 7 8 +16669,1 6 64 61 62 17 37 52 30 7 8 +8828,5 6 53 67 47 48 68 54 7 4 +18053,15 12 16 36 16 61 16 17 11 13 +16670,1 6 64 61 62 17 37 52 30 7 4 +13063,1 6 12 31 47 36 37 17 11 8 +2739,15 57 53 51 36 37 10 7 4 +24868,5 6 64 61 16 17 62 32 54 7 8 +5589,5 6 55 53 84 85 7 8 +15707,15 57 53 57 58 54 7 4 +7892,15 90 16 42 16 17 11 13 +15917,5 6 55 53 84 85 7 4 +19752,5 6 49 50 11 7 4 +15706,15 57 53 57 58 54 7 8 +25244,5 6 55 90 16 17 37 35 7 8 +17538,15 9 16 16 36 16 42 16 17 11 8 +7265,5 6 49 50 11 7 8 +7891,15 90 16 42 16 17 11 8 +24214,5 6 76 61 62 17 106 7 8 +8981,5 6 119 120 89 7 4 +11176,1 6 64 61 62 11 7 4 +13590,5 6 119 120 89 7 8 +7853,1 6 53 67 47 107 108 108 48 72 54 7 4 +9445,5 6 12 9 16 17 37 48 35 54 7 8 +9446,5 6 12 9 16 17 37 48 35 54 7 4 +11833,5 6 53 16 17 11 8 +3830,1 6 64 61 62 17 37 52 11 8 +7943,1 6 9 16 17 11 7 8 +17560,5 6 53 18 12 16 61 16 17 10 54 7 8 +2098,1 6 67 61 62 112 7 8 +16221,1 6 9 16 17 11 7 4 +7354,15 34 36 37 19 56 7 8 +14187,5 6 53 41 65 9 16 17 62 10 7 8 +2097,1 6 67 61 62 112 7 4 +6829,15 65 9 16 17 37 108 35 7 8 +4076,15 55 9 16 36 16 17 10 7 8 +6828,15 65 9 16 17 37 108 35 7 4 +7353,15 34 36 37 19 56 7 4 +4075,15 55 9 16 36 16 17 10 7 4 +1954,5 6 84 49 36 37 19 110 48 50 85 54 7 8 +10482,1 6 12 12 16 17 11 7 4 +5646,5 6 64 61 62 91 7 8 +18103,5 6 84 49 36 37 19 110 48 50 85 54 7 4 +17897,1 6 53 9 16 17 37 52 7 8 +17969,1 6 12 12 16 17 11 7 8 +5645,5 6 64 61 62 91 7 4 +20555,5 6 84 57 65 9 16 17 10 85 7 8 +18453,5 6 55 55 67 61 62 63 7 4 +25784,5 6 53 64 16 117 118 32 7 4 +17898,1 6 53 9 16 17 37 52 7 4 +539,5 6 57 58 54 7 4 +9782,5 6 84 57 65 9 16 17 10 85 7 4 +2738,15 57 53 51 36 37 10 7 8 +6201,5 6 55 55 67 61 62 63 7 8 +538,5 6 57 58 54 7 8 +26758,5 6 53 67 36 37 17 11 13 +17743,1 6 57 57 9 16 17 37 72 7 4 +18040,5 6 18 12 16 17 100 7 8 +15344,1 6 55 12 65 66 7 4 +25684,1 12 9 31 42 43 17 10 93 58 7 4 +576,15 67 47 36 37 63 7 4 +25083,1 12 9 31 42 43 17 10 93 58 7 8 +2481,15 12 11 66 7 8 +575,15 67 47 36 37 63 7 8 +19599,1 6 57 57 9 16 17 37 72 7 8 +2482,15 12 11 66 7 4 +18039,5 6 18 12 16 17 100 7 4 +19049,1 12 16 39 36 16 61 16 36 37 38 17 62 10 7 8 +7947,5 6 64 61 62 37 52 7 4 +26315,5 6 29 55 56 30 27 7 8 +7946,5 6 64 61 62 37 52 7 8 +15742,1 12 16 39 36 16 61 16 36 37 38 17 62 10 7 4 +26757,5 6 53 67 36 37 17 11 8 +13542,1 6 53 49 36 16 17 37 52 54 7 4 +16310,15 12 88 57 58 58 89 7 8 +24727,5 6 57 96 16 36 16 17 63 7 4 +21855,15 12 88 57 58 58 89 7 4 +10114,5 45 21 22 17 37 123 7 8 +9684,5 6 51 42 43 17 11 13 +14917,5 45 21 22 17 37 123 7 4 +22559,1 6 12 49 36 37 17 11 7 8 +9509,5 6 51 42 43 17 11 8 +14783,1 6 44 96 36 16 17 37 50 7 8 +16407,5 6 53 9 16 61 16 17 10 54 7 4 +3718,5 45 21 22 17 37 35 87 7 8 +24726,5 6 57 96 16 36 16 17 63 7 8 +16443,5 6 53 9 16 61 16 17 10 54 7 8 +10959,5 45 21 22 17 37 35 87 7 4 +19384,5 6 53 31 47 48 32 7 8 +5850,5 6 64 16 36 37 38 17 10 7 4 +9796,5 6 18 12 16 17 32 7 4 +3198,1 6 64 61 62 17 37 52 7 8 +7414,5 6 18 12 16 17 32 7 8 +8719,5 6 64 16 36 37 38 17 10 7 8 +3199,1 6 64 61 62 17 37 52 7 4 +13501,5 6 64 92 9 42 16 16 17 19 7 4 +9536,5 6 53 34 47 48 32 54 54 7 8 +12724,15 51 47 48 72 30 7 8 +14827,15 105 61 62 17 11 8 +8964,5 6 53 34 47 48 32 54 54 7 4 +12725,15 51 47 48 72 30 7 4 +14828,15 105 61 62 17 11 13 +23169,5 6 57 57 92 9 10 7 4 +13977,15 71 36 37 17 10 30 7 8 +25561,5 6 57 57 92 9 10 7 8 +13199,5 6 57 9 16 42 16 36 16 17 37 32 93 7 4 +13978,15 71 36 37 17 10 30 7 4 +26674,1 6 51 114 117 16 17 37 52 7 8 +11110,15 9 16 36 16 36 37 38 11 8 +9544,15 9 16 36 37 38 37 68 7 8 +11466,5 6 92 9 16 17 10 7 8 +9543,15 9 16 36 37 38 37 68 7 4 +8259,15 12 16 36 16 61 16 17 11 8 +7487,5 6 18 9 16 17 11 8 +11467,5 6 92 9 16 17 10 7 4 +9831,15 71 109 110 11 56 7 4 +6199,15 12 16 61 16 17 62 68 7 8 +10831,5 6 64 61 62 37 52 11 8 +5192,15 55 49 42 43 17 37 32 54 7 8 +26236,15 71 109 110 11 56 7 8 +9347,5 6 51 36 37 17 37 72 7 4 +712,1 6 57 65 66 13 +1373,1 6 53 53 54 13 +11133,15 31 42 43 93 63 7 4 +4711,1 6 57 49 47 48 48 68 58 7 8 +11134,15 31 42 43 93 63 7 8 +24144,15 55 9 16 42 16 17 43 72 58 7 4 +6200,15 12 16 61 16 17 62 68 7 4 +24145,15 55 9 16 42 16 17 43 72 58 7 8 +15643,1 6 55 53 12 61 16 17 11 8 +24210,15 90 16 42 16 17 19 7 8 +24211,15 90 16 42 16 17 19 7 4 +20046,1 6 55 53 12 61 16 17 11 13 +24320,1 6 119 16 42 16 17 19 7 4 +25441,5 6 53 9 16 36 37 38 37 35 54 54 7 4 +9346,5 6 51 36 37 17 37 72 7 8 +26589,1 6 88 89 89 89 7 8 +12349,5 6 64 92 9 42 16 16 17 19 7 8 +3557,1 6 12 26 65 66 27 11 8 +21680,5 6 12 11 87 7 8 +20722,15 57 65 88 34 36 37 11 8 +4611,1 6 29 64 16 36 16 61 16 17 63 30 7 4 +22858,15 12 57 58 11 56 7 8 +6468,15 12 16 36 16 17 37 50 7 4 +13453,15 12 57 58 11 56 7 4 +17928,1 6 76 16 117 118 72 7 4 +17007,1 6 29 64 16 36 16 61 16 17 63 30 7 8 +17927,1 6 76 16 117 118 72 7 8 +6944,1 6 64 53 9 10 87 7 4 +11994,1 6 96 16 39 36 16 21 77 78 22 8 +13561,15 12 11 54 85 54 7 4 +6943,1 6 64 53 9 10 87 7 8 +13562,15 12 11 54 85 54 7 8 +22970,5 6 84 57 51 52 13 +7917,15 34 36 37 38 19 58 89 13 +10125,5 6 53 18 12 16 61 16 17 37 35 11 8 +8979,1 6 119 120 89 13 +26525,5 6 51 36 37 17 17 10 7 8 +11788,1 6 53 67 47 107 36 37 17 63 93 7 4 +21672,1 12 16 17 43 75 7 4 +2428,5 6 9 36 16 17 10 54 54 7 4 +14258,15 65 57 67 61 62 63 7 8 +7861,15 34 107 107 107 36 37 10 7 4 +21671,1 12 16 17 43 75 7 8 +2427,5 6 9 36 16 17 10 54 54 7 8 +17636,5 6 53 9 16 61 16 17 37 35 11 8 +12510,5 6 64 61 62 17 37 52 58 7 8 +18839,15 12 9 16 17 11 13 +18838,15 12 9 16 17 11 8 +24982,1 6 55 12 49 50 56 7 4 +7860,15 34 107 107 107 36 37 10 7 8 +23068,1 6 12 57 9 16 39 36 16 17 19 7 4 +23913,15 51 51 36 16 17 91 7 8 +12511,5 6 64 61 62 17 37 52 58 7 4 +23067,1 6 12 57 9 16 39 36 16 17 19 7 8 +21974,15 51 51 36 16 17 91 7 4 +9275,5 6 55 57 53 9 10 7 8 +8120,1 12 11 89 89 13 +8217,1 12 16 36 16 17 37 48 35 54 7 4 +19620,15 34 36 37 17 17 11 85 54 7 4 +6467,15 12 16 36 16 17 37 50 7 8 +24674,15 44 9 16 17 118 17 10 7 8 +9911,5 6 55 88 89 66 13 +24675,15 44 9 16 17 118 17 10 7 4 +7168,1 6 76 61 62 11 8 +1299,70 36 16 42 16 17 37 35 7 4 +22790,5 6 84 88 55 12 16 17 19 13 +2508,5 6 12 57 9 16 61 16 17 19 7 8 +1298,70 36 16 42 16 17 37 35 7 8 +24038,1 6 76 61 62 11 13 +2509,5 6 12 57 9 16 61 16 17 19 7 4 +6721,5 6 55 57 53 9 10 7 4 +5373,15 12 11 54 54 7 8 +11256,15 53 34 47 48 48 35 54 7 4 +14985,5 6 88 88 55 56 58 89 7 8 +5372,15 12 11 54 54 7 4 +9880,5 6 55 9 16 17 10 54 7 8 +16369,1 6 53 53 49 36 37 17 10 7 4 +8145,15 55 34 36 37 17 19 13 +11255,15 53 34 47 48 48 35 54 7 8 +24506,1 6 53 53 49 36 37 17 10 7 8 +9815,1 6 49 47 47 36 37 17 19 13 +10591,15 34 107 36 16 17 10 7 8 +20326,15 12 96 36 16 17 37 48 50 7 4 +22991,15 31 107 61 62 63 7 8 +5182,5 6 53 64 16 42 16 17 63 7 4 +20327,15 12 96 36 16 17 37 48 50 7 8 +25513,5 6 53 9 16 36 37 38 37 52 54 85 7 8 +22990,15 31 107 61 62 63 7 4 +4486,15 55 9 16 17 43 72 7 8 +5181,5 6 53 64 16 42 16 17 63 7 8 +26168,5 6 53 9 16 36 37 38 37 52 54 85 7 4 +21001,5 6 67 47 48 32 7 4 +4487,15 55 9 16 17 43 72 7 4 +21002,5 6 67 47 48 32 7 8 +24976,1 6 31 36 37 17 37 52 7 4 +19239,16 36 37 38 17 11 8 +9881,5 6 55 9 16 17 10 54 7 4 +12209,5 6 84 90 36 37 38 17 11 8 +7336,5 6 92 31 36 16 42 16 17 37 35 93 7 8 +25125,15 12 16 36 37 38 17 37 35 11 8 +21711,5 6 53 18 12 16 17 17 3 4 +22532,15 9 61 62 72 66 11 7 8 +21712,5 6 53 18 12 16 17 17 3 8 +26036,5 6 67 47 48 48 50 58 7 8 +10584,1 6 57 12 16 36 37 38 17 37 48 72 7 4 +4708,5 6 67 47 48 48 50 58 7 4 +24877,1 6 64 61 62 17 43 50 54 7 8 +3922,15 71 47 48 52 54 7 4 +13700,5 6 84 51 36 37 63 7 8 +25650,1 6 57 12 16 36 37 38 17 37 48 72 7 8 +24878,1 6 64 61 62 17 43 50 54 7 4 +3921,15 71 47 48 52 54 7 8 +25243,5 6 84 51 36 37 63 7 4 +20275,5 6 55 88 57 12 16 36 16 17 19 13 +11478,1 6 51 47 48 52 58 7 4 +10989,15 55 57 51 61 62 63 7 8 +11029,1 6 51 47 48 52 58 7 8 +10990,15 55 57 51 61 62 63 7 4 +10223,15 9 36 37 38 37 50 54 7 4 +19166,5 6 105 16 61 16 17 10 7 8 +19167,5 6 105 16 61 16 17 10 7 4 +11132,1 6 92 31 42 43 93 63 7 4 +10224,15 9 36 37 38 37 50 54 7 8 +15303,1 12 16 61 16 17 19 +26371,1 6 92 31 42 43 93 63 7 8 +5835,5 6 57 53 71 72 13 +14816,1 6 9 10 66 56 93 7 8 +19179,15 55 53 34 47 36 37 63 7 4 +1001,15 55 53 34 47 36 37 63 7 8 +7512,15 9 16 17 37 68 7 8 +8871,1 6 53 64 36 37 38 37 35 54 7 8 +7513,15 9 16 17 37 68 7 4 +6085,15 44 96 36 16 21 77 78 22 79 4 +14815,1 6 9 10 66 56 93 7 4 +20689,5 6 84 71 36 37 17 10 7 4 +26318,5 45 21 22 17 19 56 30 27 7 8 +1363,1 6 84 49 36 37 10 7 4 +8960,1 6 57 67 61 62 63 7 8 +13287,1 6 49 47 36 37 10 54 7 4 +5764,1 6 84 49 36 37 10 7 8 +3536,1 6 57 67 61 62 63 7 4 +2123,1 12 11 23 7 8 +25947,1 6 53 57 57 9 16 17 37 48 35 7 4 +9422,1 6 49 47 36 37 10 54 7 8 +9098,1 6 53 55 56 54 7 8 +15187,1 6 57 12 16 17 63 7 8 +7715,5 6 84 71 36 37 17 10 7 8 +2122,1 12 11 23 7 4 +26113,70 16 36 16 17 11 7 4 +9099,1 6 53 55 56 54 7 4 +15186,1 6 57 12 16 17 63 7 4 +22190,1 6 12 36 37 38 11 7 4 +2790,15 12 16 36 37 38 17 37 35 7 4 +10627,1 6 12 36 37 38 11 7 8 +2791,15 12 16 36 37 38 17 37 35 7 8 +24827,15 9 16 99 16 36 16 17 10 7 4 +23193,1 6 55 55 88 57 58 7 4 +22111,1 6 55 12 9 61 62 52 7 4 +920,15 9 16 99 16 36 16 17 10 7 8 +23194,1 6 55 55 88 57 58 7 8 +4396,1 6 55 12 9 61 62 52 7 8 +19345,1 6 53 34 42 43 17 37 32 54 7 4 +6524,5 6 84 90 91 13 +9285,1 6 67 47 42 43 17 63 7 4 +2838,15 57 65 9 16 17 62 10 7 4 +23549,1 6 53 36 37 17 37 32 7 4 +20021,5 6 67 51 36 37 11 8 +19434,1 6 84 88 57 34 36 37 11 8 +15017,1 2 16 17 43 32 7 4 +15018,1 2 16 17 43 32 7 8 +12000,5 6 34 36 37 91 85 54 7 4 +9141,1 6 57 53 34 107 107 42 43 17 10 7 4 +13637,15 86 12 16 39 36 16 21 77 78 22 8 +17539,15 9 16 16 36 16 42 16 17 11 7 8 +21327,1 6 84 51 36 37 10 85 93 7 4 +23944,1 12 16 61 16 17 59 +1696,15 34 107 36 37 17 19 13 +6530,5 6 34 36 37 91 85 54 7 8 +7296,1 6 57 12 61 16 17 62 10 7 4 +15085,15 57 88 55 53 57 58 13 +15266,15 55 12 88 55 56 89 56 7 4 +9117,15 55 12 88 55 56 89 56 7 8 +18336,15 86 65 34 35 13 +9284,1 6 67 47 42 43 17 63 7 8 +18274,1 6 55 53 31 32 13 +16916,15 57 65 9 16 17 62 10 7 8 +6715,1 6 55 12 16 17 11 8 +26569,5 6 9 16 36 37 38 17 43 32 56 7 8 +18299,1 6 86 34 36 37 17 91 7 8 +7295,1 6 57 12 61 16 17 62 10 7 8 +9950,15 51 36 37 17 91 85 7 8 +9979,15 55 34 36 37 17 11 13 +9951,15 51 36 37 17 91 85 7 4 +14694,5 6 76 16 39 36 16 42 16 17 19 13 +9978,15 55 34 36 37 17 11 8 +14073,1 6 55 12 55 56 56 89 56 11 8 +6937,1 6 53 119 120 13 +23619,5 6 53 31 36 37 17 37 108 35 54 7 4 +13288,1 6 57 9 36 37 38 37 52 7 4 +5773,1 12 16 36 16 17 37 48 50 7 8 +23685,15 96 16 36 37 38 17 19 58 27 28 +9425,1 6 57 9 36 37 38 37 52 7 8 +5776,1 12 16 36 16 17 37 48 50 7 4 +12543,1 6 53 9 16 61 16 61 16 17 11 8 +24008,15 53 12 9 16 36 16 17 11 8 +25808,1 6 9 9 16 17 43 13 +8333,1 6 12 34 36 37 17 19 7 8 +3344,1 6 53 12 16 17 10 7 4 +13042,15 44 34 47 48 32 11 7 8 +19761,1 12 36 37 38 37 50 7 4 +3345,1 6 53 12 16 17 10 7 8 +14405,1 12 36 37 38 37 50 7 8 +1742,5 6 55 12 57 9 16 36 16 17 37 35 7 8 +6416,15 44 34 47 48 32 11 7 4 +7291,1 6 64 53 18 12 34 42 16 17 62 10 7 8 +17891,1 6 65 12 16 17 37 35 87 7 4 +16761,1 6 76 61 62 17 74 7 4 +20353,15 71 36 37 10 85 7 8 +22301,5 45 21 22 17 62 32 93 7 4 +4447,1 6 53 18 12 16 17 91 7 8 +20354,15 71 36 37 10 85 7 4 +17780,1 6 12 65 9 16 17 37 32 7 4 +13258,15 53 18 9 16 17 10 7 8 +4446,1 6 53 18 12 16 17 91 7 4 +7384,1 2 16 17 43 32 11 8 +18631,1 6 55 88 88 57 58 89 89 56 7 8 +13257,15 53 18 9 16 17 10 7 4 +7385,1 2 16 17 43 32 11 13 +16348,5 6 65 9 16 36 16 17 19 7 4 +17779,1 6 12 65 9 16 17 37 32 7 8 +15227,5 6 65 9 16 36 16 17 19 7 8 +22525,15 42 43 17 37 35 11 13 +114,1 6 53 54 7 8 +6052,15 12 16 36 37 38 17 62 10 7 4 +16282,1 6 71 72 58 66 7 4 +246,15 12 16 17 10 7 4 +117,1 6 53 54 7 4 +245,15 12 16 17 10 7 8 +6053,15 12 16 36 37 38 17 62 10 7 8 +16281,1 6 71 72 58 66 7 8 +706,1 12 11 85 54 7 4 +5314,5 6 64 16 42 16 21 77 78 22 8 +4161,15 55 31 32 13 +15646,1 6 18 12 34 35 13 +705,1 12 11 85 54 7 8 +15074,5 6 88 89 58 7 8 +15073,5 6 88 89 58 7 4 +8347,70 16 39 36 16 17 11 8 +24664,15 65 9 16 17 37 35 87 27 7 4 +17408,5 6 29 9 10 10 30 7 4 +24616,1 6 88 55 51 61 62 63 7 4 +4372,1 6 88 55 51 61 62 63 7 8 +23720,1 6 76 61 62 17 74 7 8 +26377,5 6 64 92 9 42 16 17 10 93 7 8 +3631,5 6 51 47 48 35 7 4 +20407,5 6 76 16 61 16 61 16 17 19 13 +3630,5 6 51 47 48 35 7 8 +9371,5 6 53 51 47 36 37 17 10 54 7 8 +6290,1 6 53 12 9 16 17 11 8 +7666,15 34 107 36 37 17 11 13 +9369,5 6 53 51 47 36 37 17 10 54 7 4 +6300,5 6 51 42 43 17 3 4 +7665,15 34 107 36 37 17 11 8 +6299,5 6 51 42 43 17 3 8 +7187,1 6 53 9 36 16 61 16 17 11 8 +10422,1 6 55 12 16 17 19 13 +10356,1 6 64 61 62 17 37 35 11 7 4 +7763,1 6 64 61 62 17 37 35 11 7 8 +22610,1 6 55 55 26 57 34 36 37 17 11 13 +22609,1 6 55 55 26 57 34 36 37 17 11 8 +15773,1 6 49 42 43 17 91 7 8 +26618,1 6 9 16 36 16 61 16 17 19 11 54 7 8 +24291,1 6 9 16 36 16 61 16 17 19 11 54 7 4 +4816,5 6 88 51 36 37 11 8 +4184,1 6 53 9 16 61 16 61 16 17 19 13 +473,1 6 84 57 58 56 7 4 +22366,1 6 53 12 11 54 54 7 4 +25998,1 6 12 65 88 88 12 71 72 7 4 +14513,1 6 124 9 16 17 10 54 7 4 +7716,1 6 84 57 58 56 7 8 +20234,5 6 71 117 16 39 36 16 17 19 7 8 +22258,5 6 31 47 47 36 37 17 10 7 4 +26601,15 88 55 12 16 36 16 17 37 68 7 8 +21153,15 88 55 12 16 36 16 17 37 68 7 4 +8154,1 6 18 12 16 17 37 50 7 8 +20901,1 6 12 65 88 88 12 71 72 7 8 +3120,1 6 18 12 16 17 37 50 7 4 +22259,5 6 31 47 47 36 37 17 10 7 8 +22524,15 42 43 17 37 35 11 8 +25664,1 6 113 61 62 17 37 123 7 8 +7267,5 6 12 49 36 37 11 13 +5045,5 6 12 49 36 37 11 8 +3908,1 6 12 65 57 58 7 4 +3909,1 6 12 65 57 58 7 8 +12826,15 55 9 16 39 36 16 17 11 8 +16685,15 55 12 57 9 36 16 17 37 108 35 7 8 +3301,15 12 16 36 16 61 16 17 19 13 +12827,15 55 9 16 39 36 16 17 11 13 +19291,5 6 88 51 36 37 11 13 +5369,5 6 18 9 16 21 77 78 22 79 4 +21253,1 6 55 90 16 36 39 36 16 17 63 7 4 +16686,15 55 12 57 9 36 16 17 37 108 35 7 4 +18988,1 6 53 55 12 16 17 10 7 4 +10060,5 6 57 58 89 56 7 8 +11651,5 6 51 107 108 50 7 8 +16154,5 6 49 50 66 58 7 8 +17059,15 57 53 9 16 61 16 17 10 54 7 4 +2967,1 6 53 9 16 61 16 61 16 17 62 10 7 4 +3282,5 6 49 50 66 58 7 4 +17058,15 57 53 9 16 61 16 17 10 54 7 8 +22641,15 9 16 17 43 52 58 7 4 +3234,5 6 18 12 16 36 37 38 37 48 68 7 8 +22642,15 9 16 17 43 52 58 7 8 +2470,1 6 41 88 12 26 9 34 35 7 4 +2968,1 6 53 9 16 61 16 61 16 17 62 10 7 8 +3235,5 6 18 12 16 36 37 38 37 48 68 7 4 +2471,1 6 41 88 12 26 9 34 35 7 8 +16743,15 34 36 16 17 19 89 11 8 +25291,1 6 18 12 16 17 37 32 54 7 8 +8882,5 6 51 107 108 50 7 4 +10061,5 6 57 58 89 56 7 4 +21800,1 6 57 9 16 36 37 38 17 63 7 8 +19952,1 6 18 12 16 17 37 32 54 7 4 +26850,1 6 57 9 16 36 37 38 17 63 7 4 +2568,5 6 57 9 36 16 42 16 17 11 13 +14425,15 65 88 57 58 58 7 8 +2567,5 6 57 9 36 16 42 16 17 11 8 +14426,15 65 88 57 58 58 7 4 +11862,5 6 26 55 65 66 13 +10144,15 9 61 62 48 68 7 4 +11204,5 6 29 9 16 17 11 93 7 8 +24560,15 71 36 37 17 11 66 7 4 +10143,15 9 61 62 48 68 7 8 +24562,15 71 36 37 17 11 66 7 8 +13824,5 6 64 16 17 37 32 54 7 4 +13823,5 6 64 16 17 37 32 54 7 8 +17203,5 6 92 31 42 43 17 37 35 93 7 8 +9707,5 6 92 31 42 43 17 37 35 93 7 4 +1378,1 6 53 53 18 12 11 14 54 54 7 8 +26354,1 6 55 9 16 36 37 38 17 10 7 8 +3501,1 6 53 53 18 12 11 14 54 54 7 4 +21850,5 2 16 17 37 35 87 7 4 +18986,1 6 55 9 16 36 37 38 17 10 7 4 +18859,5 6 57 12 16 17 11 8 +21849,5 2 16 17 37 35 87 7 8 +6356,1 6 67 36 37 19 11 8 +20512,1 6 86 55 49 50 13 +1642,1 6 71 61 62 10 7 8 +1643,1 6 71 61 62 10 7 4 +11675,1 6 84 57 86 9 16 17 10 7 8 +12403,1 6 53 12 67 36 37 10 7 4 +12402,1 6 53 12 67 36 37 10 7 8 +12524,1 6 9 10 110 52 11 7 4 +15593,1 6 84 53 55 56 13 +21561,1 6 84 65 9 16 17 74 85 7 4 +20322,1 6 57 96 36 16 17 37 48 35 7 4 +1123,1 6 53 18 12 61 16 17 62 10 7 8 +20461,1 6 113 53 34 47 47 117 16 17 10 7 4 +24074,16 61 16 17 19 13 +5986,15 55 9 16 17 37 52 7 8 +1153,1 6 64 61 62 17 37 48 32 54 7 4 +24236,15 86 36 37 17 62 10 7 4 +25673,5 6 29 9 16 17 11 93 7 4 +24237,15 86 36 37 17 62 10 7 8 +18195,15 44 34 36 37 10 7 4 +154,1 6 64 61 62 17 37 48 32 54 7 8 +5987,15 55 9 16 17 37 52 7 4 +18194,15 44 34 36 37 10 7 8 +14662,5 6 57 9 16 61 16 17 10 7 8 +2037,5 6 57 9 16 61 16 17 10 7 4 +24239,5 6 96 39 36 16 61 16 36 37 38 17 62 10 7 8 +1854,1 6 53 18 12 16 17 10 54 7 8 +1855,1 6 53 18 12 16 17 10 54 7 4 +10940,15 86 34 36 37 17 19 13 +6047,1 12 16 36 37 38 37 68 7 4 +21640,5 6 34 107 108 35 56 7 4 +25609,5 6 34 107 108 35 56 7 8 +1124,1 6 53 18 12 61 16 17 62 10 7 4 +15649,15 34 42 43 17 11 7 8 +24240,5 6 96 39 36 16 61 16 36 37 38 17 62 10 7 4 +20516,5 6 90 91 50 56 7 8 +23752,1 6 57 12 11 58 7 8 +26536,15 34 42 43 17 11 7 4 +2817,1 6 9 36 37 17 11 8 +11978,15 65 88 34 36 37 17 11 13 +12758,15 96 39 36 36 16 17 19 58 11 8 +9334,5 6 57 58 56 56 7 8 +19678,5 6 57 57 86 87 7 8 +20515,5 6 90 91 50 56 7 4 +23753,1 6 57 12 11 58 7 4 +2818,1 6 9 36 37 17 11 13 +11977,15 65 88 34 36 37 17 11 8 +9333,5 6 57 58 56 56 7 4 +19677,5 6 57 57 86 87 7 4 +8005,5 6 84 31 32 58 85 54 7 4 +20287,70 16 36 16 36 37 38 37 52 7 4 +20286,70 16 36 16 36 37 38 37 52 7 8 +8004,5 6 84 31 32 58 85 54 7 8 +3717,15 96 36 37 38 19 13 +27,5 20 21 22 8 +8272,5 6 9 10 27 58 7 4 +20290,1 6 53 18 12 16 17 37 35 7 8 +6028,1 12 16 36 37 38 37 68 7 8 +2063,1 6 51 52 89 7 4 +25234,15 57 67 36 37 17 3 4 +4069,5 6 9 10 27 58 7 8 +25233,15 57 67 36 37 17 3 8 +6489,1 6 9 16 17 91 54 7 4 +26755,1 6 53 12 16 17 11 7 4 +2704,5 6 31 61 62 63 7 8 +25966,1 6 53 12 16 17 11 7 8 +22132,1 6 53 18 12 16 17 37 35 7 4 +11091,1 6 88 55 57 65 66 13 +270,5 6 12 9 16 17 10 7 4 +11332,5 6 84 49 36 37 17 10 54 7 4 +11333,5 6 84 49 36 37 17 10 54 7 8 +18542,1 6 84 9 36 16 17 11 8 +1320,5 6 12 9 16 17 10 7 8 +17197,1 6 55 9 16 117 118 35 7 8 +2697,1 6 51 52 89 7 8 +8046,1 6 124 107 108 123 7 8 +2425,1 6 86 9 16 17 37 35 7 4 +17250,5 6 65 66 11 8 +23637,5 6 18 12 42 43 17 3 4 +11437,5 6 36 37 17 11 8 +11468,1 6 84 12 31 32 13 +20053,5 6 65 66 11 13 +23837,15 9 16 17 37 115 50 87 7 4 +11453,15 55 12 57 96 36 16 17 19 58 11 8 +2424,1 6 86 9 16 17 37 35 7 8 +23636,5 6 18 12 42 43 17 3 8 +1345,5 6 31 61 62 63 7 4 +24386,5 6 53 9 10 108 7 4 +3866,1 6 84 49 109 110 13 +23838,15 9 16 17 37 115 50 87 7 8 +14925,5 6 36 37 17 11 13 +1184,1 6 34 36 37 17 10 7 4 +15866,5 6 67 68 54 54 7 4 +24385,5 6 53 9 10 108 7 8 +1185,1 6 34 36 37 17 10 7 8 +15865,5 6 67 68 54 54 7 8 +9711,5 6 92 12 16 17 37 35 93 7 4 +16693,1 6 53 12 36 37 17 10 7 4 +19871,5 6 92 12 16 17 37 35 93 7 8 +3982,1 6 84 88 57 58 89 85 7 8 +18833,5 6 49 42 43 17 10 54 7 4 +16116,1 6 71 107 108 72 7 4 +16717,5 6 53 9 16 17 10 30 7 8 +2516,15 49 36 37 10 7 4 +2669,1 6 84 88 57 58 89 85 7 4 +11248,5 6 49 42 43 17 10 54 7 8 +16115,1 6 71 107 108 72 7 8 +17985,5 6 53 9 16 17 10 30 7 4 +2517,15 49 36 37 10 7 8 +3769,5 6 36 37 17 63 54 7 8 +3768,5 6 36 37 17 63 54 7 4 +3574,5 6 53 34 36 37 17 63 7 4 +8470,5 6 53 34 36 37 17 63 7 8 +21086,1 6 53 34 47 48 35 7 8 +1443,1 6 18 12 16 17 43 68 7 8 +1809,5 6 9 10 93 58 7 8 +6461,15 65 12 16 17 10 7 4 +4663,5 6 57 53 9 10 54 7 8 +2955,1 45 21 22 17 37 35 93 7 8 +4662,5 6 57 53 9 10 54 7 4 +17151,1 6 9 16 17 43 35 93 7 8 +6991,15 65 88 67 61 62 63 7 8 +1442,1 6 18 12 16 17 43 68 7 4 +2956,1 45 21 22 17 37 35 93 7 4 +5781,15 12 16 36 39 36 39 36 16 17 63 7 4 +9107,1 6 9 36 16 17 37 52 54 7 8 +2341,5 6 65 9 16 17 63 7 4 +5782,15 12 16 36 39 36 39 36 16 17 63 7 8 +12201,5 6 65 9 16 17 63 7 8 +19475,15 57 65 9 16 17 10 7 4 +12609,1 6 53 34 47 48 35 7 4 +6462,15 65 12 16 17 10 7 8 +23047,15 57 65 9 16 17 10 7 8 +2583,15 9 16 42 16 17 11 8 +2584,15 9 16 42 16 17 11 13 +4838,5 6 53 12 34 36 37 17 11 8 +3392,1 6 53 18 12 16 17 37 35 11 8 +26026,15 57 26 65 9 16 16 17 11 8 +18872,5 6 51 12 16 17 37 35 7 4 +6992,15 65 88 67 61 62 63 7 4 +15788,15 86 88 88 90 16 17 120 7 4 +18871,5 6 51 12 16 17 37 35 7 8 +15787,15 86 88 88 90 16 17 120 7 8 +1810,5 6 9 10 93 58 7 4 +3217,5 6 57 55 51 61 62 63 7 4 +171,5 6 65 66 7 4 +11537,5 6 57 55 51 61 62 63 7 8 +170,5 6 65 66 7 8 +18174,5 6 53 55 57 9 16 36 37 38 17 10 7 8 +14084,1 6 53 9 9 16 17 62 10 7 8 +7777,15 86 34 36 37 17 11 8 +24073,5 6 64 61 16 17 19 13 +6488,1 6 9 16 17 91 54 7 8 +4034,15 9 16 36 37 38 17 75 7 4 +5815,1 6 88 55 9 16 17 11 8 +23128,1 6 86 9 16 17 62 10 7 8 +23129,1 6 86 9 16 17 62 10 7 4 +12363,5 6 92 57 9 16 42 16 17 10 93 7 8 +10032,15 88 12 36 37 38 11 8 +10033,15 88 12 36 37 38 11 13 +24943,5 6 64 16 42 16 17 43 68 11 8 +6904,1 6 9 16 17 37 108 50 7 4 +7870,1 6 96 16 17 69 +11569,5 6 12 26 9 16 17 10 7 8 +14493,1 6 9 36 37 17 19 13 +24166,5 6 9 16 17 17 37 52 11 8 +11502,1 6 9 16 17 43 115 32 87 7 4 +25197,5 6 53 55 57 9 16 36 37 38 17 10 7 4 +6903,1 6 9 16 17 37 108 50 7 8 +11503,1 6 9 16 17 43 115 32 87 7 8 +11783,15 34 107 36 37 17 63 93 7 8 +24785,5 6 86 57 58 58 87 7 4 +25587,5 6 57 9 16 117 118 52 7 8 +11784,15 34 107 36 37 17 63 93 7 4 +19755,5 6 57 9 16 117 118 52 7 4 +833,15 57 9 16 17 10 7 8 +834,15 57 9 16 17 10 7 4 +6363,15 53 12 96 36 16 17 19 58 11 8 +15670,1 6 26 9 16 21 77 78 22 79 4 +16884,15 57 12 36 16 61 16 36 16 17 19 13 +6598,1 6 55 57 9 16 17 37 10 7 8 +18261,15 57 9 61 62 17 37 35 54 7 4 +26655,5 6 55 9 16 17 37 35 11 8 +18262,15 57 9 61 62 17 37 35 54 7 8 +26255,1 6 55 9 36 16 17 37 10 7 8 +9414,1 6 86 9 16 17 10 54 7 4 +9680,1 6 84 12 16 17 10 7 4 +13494,5 6 64 16 17 37 52 7 8 +7242,5 6 64 16 17 37 52 7 4 +8680,1 6 86 9 16 17 10 54 7 8 +23164,1 6 84 12 16 17 10 7 8 +12156,5 6 99 100 17 11 8 +26576,5 6 126 51 47 48 68 7 4 +4637,5 6 34 36 37 17 75 7 8 +7011,15 65 9 16 117 118 32 54 7 8 +2159,15 55 12 16 21 77 78 22 79 4 +9031,1 6 65 88 9 16 17 120 7 8 +7010,15 65 9 16 117 118 32 54 7 4 +21722,1 6 65 49 47 48 32 7 8 +20237,1 6 53 34 47 48 32 54 7 4 +4182,15 57 53 9 16 61 16 17 62 10 7 8 +4183,15 57 53 9 16 61 16 17 62 10 7 4 +19379,1 6 53 18 12 11 14 7 4 +7978,25 26 27 54 7 4 +16376,5 6 12 65 49 50 13 +7977,25 26 27 54 7 8 +19269,1 6 9 61 62 68 89 7 8 +24716,1 6 9 16 17 43 35 93 7 4 +11694,15 90 61 62 17 11 7 8 +15104,1 6 9 61 62 68 89 7 4 +18654,1 12 39 36 16 61 16 17 37 52 7 4 +19500,5 6 90 16 36 16 17 37 35 7 4 +7595,1 6 84 49 36 37 19 13 +19499,5 6 90 16 36 16 17 37 35 7 8 +23110,1 6 12 51 42 43 17 10 7 4 +9573,1 6 84 55 65 66 56 85 54 7 8 +6866,1 6 18 12 16 17 37 48 35 7 4 +6168,15 9 36 37 38 17 10 54 7 4 +11926,1 6 18 12 16 17 37 48 35 7 8 +6167,15 9 36 37 38 17 10 54 7 8 +23111,1 6 12 51 42 43 17 10 7 8 +11223,1 6 99 16 17 17 98 +21773,5 6 88 88 65 66 7 4 +18368,1 6 65 57 57 57 9 16 17 11 13 +16918,5 6 18 12 16 17 37 35 87 58 7 8 +24340,5 6 34 114 115 32 7 4 +23240,5 6 88 88 65 66 7 8 +4409,1 6 65 57 57 57 9 16 17 11 8 +25043,70 16 36 16 17 37 35 56 7 4 +9572,1 6 84 55 65 66 56 85 54 7 4 +4570,5 6 53 54 66 7 4 +8202,1 6 49 47 47 36 37 17 11 8 +11625,15 55 51 36 37 38 10 54 7 4 +8592,15 55 51 36 37 38 10 54 7 8 +24339,5 6 34 114 115 32 7 8 +17401,15 86 36 37 17 37 7 8 +13083,60 16 36 37 38 37 48 52 7 8 +17400,15 86 36 37 17 37 7 4 +20886,1 6 12 65 88 12 71 72 13 +19984,15 49 36 37 38 17 37 35 7 8 +26547,15 34 36 37 38 37 50 7 4 +23428,5 6 86 31 47 48 32 87 7 4 +13082,60 16 36 37 38 37 48 52 7 4 +8359,1 6 51 52 89 27 28 +9243,15 34 36 37 38 37 50 7 8 +20241,1 6 55 67 47 48 68 7 4 +11560,15 86 34 36 37 17 3 8 +6224,1 6 53 9 36 16 17 37 50 7 4 +4831,1 12 36 16 17 37 68 89 13 +11564,15 86 34 36 37 17 3 4 +20598,1 6 67 47 36 37 17 3 4 +9805,1 6 53 9 36 16 17 37 50 7 8 +26615,1 6 12 16 17 37 52 68 7 8 +4227,5 6 55 71 72 7 8 +15898,1 6 12 16 17 37 52 68 7 4 +5436,5 6 55 71 72 7 4 +21992,5 6 53 57 9 16 61 16 17 37 52 89 7 4 +21991,5 6 53 57 9 16 61 16 17 37 52 89 7 8 +15570,1 6 55 67 47 48 68 7 8 +4582,5 6 53 54 66 7 8 +19918,5 45 21 22 17 43 75 7 4 +14200,1 6 53 9 16 36 16 61 16 17 11 8 +18012,15 12 16 36 37 38 120 7 4 +24313,1 6 18 9 16 17 10 93 7 8 +3476,5 6 12 71 72 13 +9856,1 6 53 53 12 11 54 7 8 +12995,5 6 92 55 9 16 21 77 78 22 79 4 +18321,15 12 16 36 37 38 120 7 8 +19164,1 6 53 9 16 36 16 61 16 17 11 13 +19919,5 45 21 22 17 43 75 7 8 +10253,1 6 64 16 117 118 48 72 66 11 7 4 +9855,1 6 53 53 12 11 54 7 4 +93,1 6 29 34 35 7 8 +13155,1 6 67 47 36 37 17 3 8 +15250,1 6 18 9 16 17 10 93 7 4 +94,1 6 29 34 35 7 4 +19782,5 6 55 9 16 17 69 +19068,5 6 84 57 9 16 17 11 13 +19067,5 6 84 57 9 16 17 11 8 +19563,5 6 113 61 62 17 37 48 72 7 8 +4322,1 6 9 10 14 7 8 +15031,1 6 92 12 16 17 10 7 8 +17513,1 6 57 9 16 17 43 50 54 7 4 +13184,1 6 92 12 16 17 10 7 4 +18906,1 6 57 9 16 17 43 50 54 7 8 +8952,1 6 53 18 12 16 61 61 16 17 62 10 7 8 +8016,1 6 53 9 16 61 16 17 11 8 +18566,97 16 17 37 32 30 7 4 +4319,1 6 9 10 14 7 4 +8951,1 6 53 18 12 16 61 61 16 17 62 10 7 4 +22067,5 6 57 12 16 17 37 50 93 58 7 4 +20231,5 6 71 117 16 36 37 38 17 118 17 10 7 8 +15435,1 6 71 47 42 43 17 37 50 93 7 4 +15771,5 6 86 12 90 16 17 120 7 8 +25381,1 6 57 57 96 36 37 38 19 58 7 8 +10364,15 34 42 43 17 10 7 4 +15697,5 6 64 61 62 17 17 10 54 7 8 +25380,1 6 57 57 96 36 37 38 19 58 7 4 +9793,15 65 9 16 17 37 72 58 7 4 +15879,5 6 57 12 16 17 37 50 93 58 7 8 +10363,15 34 42 43 17 10 7 8 +19711,1 6 64 61 62 17 37 54 7 8 +11620,5 6 64 61 62 17 17 10 54 7 4 +18567,97 16 17 37 32 30 7 8 +12804,1 6 64 61 62 17 37 54 7 4 +12058,5 6 88 89 89 66 7 4 +6994,5 6 55 9 16 17 62 10 7 8 +16644,5 6 88 89 89 66 7 8 +2848,1 6 53 57 58 7 4 +22016,5 6 16 17 11 8 +9794,15 65 9 16 17 37 72 58 7 8 +14278,15 55 57 9 36 37 38 10 54 7 4 +7774,15 34 36 16 17 37 48 32 7 4 +25248,5 6 57 12 16 17 11 58 7 8 +2452,15 88 71 36 37 17 11 13 +2849,1 6 53 57 58 7 8 +2451,15 88 71 36 37 17 11 8 +14277,15 55 57 9 36 37 38 10 54 7 8 +14367,15 12 36 37 38 37 35 7 8 +14368,15 12 36 37 38 37 35 7 4 +21560,1 6 84 65 9 16 17 74 85 7 8 +7958,5 6 12 26 9 16 36 37 38 17 10 7 4 +24380,1 12 16 36 16 17 63 7 8 +7957,5 6 12 26 9 16 36 37 38 17 10 7 8 +25044,70 16 36 16 17 37 35 56 7 8 +11153,5 6 67 114 115 52 7 8 +11152,5 6 67 114 115 52 7 4 +10120,1 6 31 42 43 17 37 32 54 7 4 +20007,5 6 49 47 36 37 10 7 8 +24795,1 6 65 88 9 16 17 62 10 7 8 +7502,15 55 88 57 9 36 37 38 37 52 7 4 +10119,1 6 31 42 43 17 37 32 54 7 8 +4902,1 6 76 16 17 37 72 7 8 +10233,15 55 88 57 9 36 37 38 37 52 7 8 +24062,15 53 12 51 107 108 52 11 54 7 8 +4901,1 6 76 16 17 37 72 7 4 +11045,5 6 49 47 36 37 10 7 4 +10209,15 55 9 16 36 37 38 17 37 68 54 7 4 +828,1 6 88 57 58 89 66 13 +10208,15 55 9 16 36 37 38 17 37 68 54 7 8 +17858,5 6 53 49 50 58 54 7 4 +18734,1 6 55 57 92 12 16 17 19 13 +15482,15 88 57 9 16 17 10 7 8 +13913,1 6 71 36 37 17 37 68 7 8 +26278,1 6 65 88 57 9 36 37 38 10 7 4 +21305,1 6 65 88 57 9 36 37 38 10 7 8 +15481,15 88 57 9 16 17 10 7 4 +17857,5 6 53 49 50 58 54 7 8 +24104,5 6 9 16 36 16 61 16 17 19 7 4 +11995,5 6 9 16 36 16 61 16 17 19 7 8 +19648,1 6 49 47 47 36 37 17 3 8 +18150,95 36 16 17 37 52 7 4 +18151,95 36 16 17 37 52 7 8 +18787,1 45 21 22 17 +9501,5 6 53 18 12 16 17 91 54 7 4 +9502,5 6 53 18 12 16 17 91 54 7 8 +21363,1 6 34 36 37 11 85 54 7 4 +10413,5 6 57 65 26 34 35 7 4 +6995,5 6 55 9 16 17 62 10 7 4 +5049,15 12 36 37 38 62 10 7 4 +18692,5 6 9 31 32 7 8 +5050,15 12 36 37 38 62 10 7 8 +5122,15 65 12 16 17 11 13 +11849,5 6 16 17 7 4 +3346,1 6 67 47 36 37 17 11 8 +5121,15 65 12 16 17 11 8 +10437,5 6 16 17 7 8 +20692,5 6 9 31 32 7 4 +21559,15 55 53 9 36 16 17 11 8 +6012,5 6 67 68 58 66 7 8 +6011,5 6 67 68 58 66 7 4 +2603,1 6 49 107 108 52 7 8 +2375,1 6 49 107 108 52 7 4 +16902,5 6 124 9 36 16 17 37 11 8 +14264,15 55 53 55 56 13 +4132,5 6 12 57 58 56 11 8 +21470,1 6 57 92 67 47 48 72 93 58 7 4 +20003,1 6 55 53 9 61 16 17 10 54 7 8 +8575,15 57 53 31 32 33 13 +5341,1 6 41 12 36 37 38 17 91 7 8 +22246,15 12 16 36 37 38 17 106 7 8 +23495,1 6 41 12 36 37 38 17 91 7 4 +5772,1 6 67 47 36 37 17 11 13 +18145,5 6 53 119 16 17 63 7 4 +5439,1 6 64 16 36 16 17 63 7 8 +8959,70 16 36 16 61 16 61 16 17 37 35 7 8 +6348,5 45 21 22 17 37 68 85 7 4 +15834,1 6 76 16 42 16 17 19 13 +16303,1 12 16 17 19 7 4 +9231,5 6 88 51 47 36 37 11 8 +16345,1 6 41 12 26 9 16 17 10 7 8 +26483,15 88 12 16 36 16 17 37 50 7 8 +7350,1 12 16 17 19 7 8 +13062,1 6 12 12 16 36 37 38 37 48 32 11 7 8 +26484,15 88 12 16 36 16 17 37 50 7 4 +3906,15 71 107 108 68 66 11 7 4 +18045,5 6 55 57 67 114 36 37 17 11 8 +12317,15 71 107 108 68 66 11 7 8 +16346,1 6 41 12 26 9 16 17 10 7 4 +6264,5 6 88 55 9 16 17 37 50 7 8 +8958,70 16 36 16 61 16 61 16 17 37 35 7 4 +6347,5 45 21 22 17 37 68 85 7 8 +20417,5 6 64 36 16 17 91 7 8 +5304,1 6 64 16 36 16 17 63 7 4 +20418,5 6 64 36 16 17 91 7 4 +13682,5 6 9 16 36 16 61 16 17 19 11 8 +5909,15 53 12 11 54 7 8 +5908,15 53 12 11 54 7 4 +5958,5 6 51 52 58 66 54 7 4 +20576,5 6 53 34 107 36 37 17 10 7 8 +7828,1 6 53 12 61 16 21 77 78 22 79 4 +9222,5 6 51 52 58 66 54 7 8 +10296,5 6 53 34 107 36 37 17 10 7 4 +25215,5 6 53 12 16 17 37 35 54 7 4 +5477,5 6 57 9 16 17 63 7 8 +13790,5 6 53 12 16 17 37 35 54 7 8 +24312,5 6 105 42 16 17 19 7 4 +5478,5 6 57 9 16 17 63 7 4 +7544,1 6 18 12 16 17 52 13 +4659,1 6 76 16 42 16 17 19 7 8 +15575,1 6 67 47 47 36 37 17 11 13 +25971,15 109 88 55 56 110 50 7 4 +19931,5 6 88 67 36 37 17 62 10 7 4 +13873,1 6 67 47 47 36 37 17 11 8 +25970,15 109 88 55 56 110 50 7 8 +21342,1 6 53 18 12 16 17 37 35 85 54 7 4 +2079,15 34 36 37 19 58 11 8 +10325,5 6 90 39 36 16 17 10 7 4 +18722,5 6 53 90 16 36 16 17 63 7 4 +4658,1 6 76 16 42 16 17 19 7 4 +10326,5 6 90 39 36 16 17 10 7 8 +10739,5 6 9 16 36 37 38 17 62 10 7 4 +18721,5 6 53 90 16 36 16 17 63 7 8 +4869,15 34 47 48 32 7 4 +12196,5 6 105 42 16 17 19 7 8 +26807,5 6 55 53 12 16 17 10 54 7 8 +4868,15 34 47 48 32 7 8 +8056,1 6 109 9 16 17 37 48 7 8 +1231,5 6 9 10 66 27 28 +8055,1 6 109 9 16 17 37 48 7 4 +14709,5 6 9 16 36 37 38 17 62 10 7 8 +21074,5 6 12 88 57 9 16 17 10 7 8 +21073,5 6 12 88 57 9 16 17 10 7 4 +25862,15 55 12 88 55 9 16 36 16 17 11 13 +9607,15 96 36 37 38 19 89 11 56 7 4 +2506,15 96 36 37 38 19 89 11 56 7 8 +25861,15 55 12 88 55 9 16 36 16 17 11 8 +8150,60 16 36 16 17 62 10 7 4 +25676,1 6 53 26 9 16 61 16 17 10 7 4 +8151,60 16 36 16 17 62 10 7 8 +15262,5 6 55 88 89 11 8 +9969,15 90 16 17 37 72 85 7 8 +9968,15 90 16 17 37 72 85 7 4 +8638,1 12 16 17 19 11 8 +6639,5 6 51 47 36 37 17 11 8 +3223,5 6 53 34 36 37 63 7 4 +12100,5 6 51 47 36 37 17 11 13 +3019,5 6 88 88 57 53 9 10 7 4 +14651,5 6 53 34 36 37 63 7 8 +10818,1 6 51 52 27 66 7 8 +25819,1 6 51 52 27 66 7 4 +5633,1 6 53 12 16 36 16 17 37 52 54 7 8 +23963,5 6 12 12 16 36 37 38 17 62 10 7 8 +5632,1 6 53 12 16 36 16 17 37 52 54 7 4 +23964,5 6 12 12 16 36 37 38 17 62 10 7 4 +13801,15 55 88 55 57 55 51 52 7 4 +22929,5 6 55 9 16 17 43 52 7 4 +266,5 6 9 16 17 11 8 +3619,5 6 9 16 17 11 13 +9800,5 6 53 71 36 37 17 10 7 8 +25273,1 6 65 12 11 7 4 +6485,15 49 36 37 74 54 7 4 +9799,5 6 53 71 36 37 17 10 7 4 +20557,1 6 53 53 18 12 16 17 10 7 4 +14870,15 65 9 16 42 16 61 16 17 11 13 +13800,15 55 88 55 57 55 51 52 7 8 +6486,15 49 36 37 74 54 7 8 +26032,1 6 65 90 16 61 16 17 11 13 +26031,1 6 65 90 16 61 16 17 11 8 +3970,1 6 88 55 49 36 37 11 8 +16043,15 53 9 16 17 37 35 54 7 8 +1458,5 6 26 34 35 7 8 +12418,15 55 53 88 9 16 61 16 17 10 7 4 +1459,5 6 26 34 35 7 4 +14711,15 65 12 16 17 19 13 +14088,1 6 53 9 36 16 61 16 17 10 7 8 +12441,15 34 36 37 17 120 7 4 +20317,15 34 36 37 19 58 7 4 +14089,1 6 53 9 36 16 61 16 17 10 7 4 +10072,15 88 65 9 16 17 10 7 8 +12442,15 34 36 37 17 120 7 8 +13699,15 9 36 16 17 37 48 52 7 4 +20318,15 34 36 37 19 58 7 8 +14839,1 6 9 61 62 106 7 8 +22251,15 96 16 36 37 38 19 58 11 56 7 4 +10071,15 88 65 9 16 17 10 7 4 +23431,5 6 86 31 47 42 43 17 75 7 8 +17671,15 96 16 36 37 38 19 58 11 56 7 8 +21058,1 6 9 61 62 106 7 4 +22286,5 6 51 36 37 10 54 7 8 +5720,5 6 55 12 88 55 12 16 17 19 13 +15924,5 6 57 53 9 61 16 17 75 7 4 +5668,15 55 51 47 48 52 7 4 +5669,15 55 51 47 48 52 7 8 +13698,15 9 36 16 17 37 48 52 7 8 +12286,1 6 12 57 9 16 17 10 7 8 +3018,5 6 88 88 57 53 9 10 7 8 +12287,1 6 12 57 9 16 17 10 7 4 +7820,5 6 12 42 16 17 62 10 7 4 +4213,15 73 16 17 62 10 7 4 +7819,5 6 12 42 16 17 62 10 7 8 +9515,15 57 53 12 11 7 4 +12417,15 55 53 88 9 16 61 16 17 10 7 8 +20242,5 6 53 53 54 87 58 7 4 +9516,15 57 53 12 11 7 8 +4085,5 6 55 88 89 7 8 +9075,5 6 53 53 54 87 58 7 8 +25756,5 6 55 88 89 7 4 +4214,15 73 16 17 62 10 7 8 +13294,5 6 67 42 43 17 10 54 7 4 +7949,5 6 64 61 62 37 50 7 4 +16064,1 6 9 16 42 16 17 10 54 54 7 4 +13293,5 6 67 42 43 17 10 54 7 8 +21309,15 55 9 16 17 37 35 87 7 4 +3186,15 51 36 37 17 91 7 8 +7950,5 6 64 61 62 37 50 7 8 +13300,5 6 64 16 42 16 61 16 17 19 13 +6470,1 6 9 16 42 16 17 10 54 54 7 8 +18490,1 6 84 49 50 13 +21310,15 55 9 16 17 37 35 87 7 8 +22974,1 6 86 55 56 13 +11538,1 6 76 16 42 16 17 11 8 +13809,5 6 64 61 62 17 37 52 56 7 8 +10210,5 6 55 53 18 12 11 14 54 7 4 +3187,15 51 36 37 17 91 7 4 +10694,5 6 55 53 18 12 11 14 54 7 8 +13808,5 6 64 61 62 17 37 52 56 7 4 +19558,5 6 55 71 47 48 68 7 8 +15111,1 6 55 53 9 61 16 17 62 10 7 4 +5328,15 12 16 36 16 17 37 52 7 8 +6981,1 6 55 55 53 90 16 17 120 54 54 7 8 +7281,1 6 64 53 18 12 34 35 13 +24090,1 6 76 16 42 16 17 11 13 +4195,5 6 18 12 16 17 17 +3745,1 6 51 36 37 17 10 7 4 +26076,5 6 18 12 16 17 37 68 52 7 8 +1819,1 6 51 36 37 17 10 7 8 +19559,5 6 55 71 47 48 68 7 4 +21278,1 6 31 16 36 37 17 10 7 8 +1491,5 6 55 56 58 7 8 +4660,5 6 55 56 58 7 4 +10242,70 16 36 16 61 16 61 16 17 62 10 7 4 +11075,15 57 9 16 42 16 36 16 17 19 13 +26765,15 12 36 16 61 16 36 37 38 37 48 35 7 8 +3606,15 55 65 88 9 16 17 10 7 4 +6865,5 6 18 12 16 17 69 +2887,15 57 53 9 16 17 10 54 7 8 +2886,15 57 53 9 16 17 10 54 7 4 +3055,1 6 36 16 17 10 7 8 +26764,15 12 36 16 61 16 36 37 38 37 48 35 7 4 +1061,1 6 53 57 58 58 54 7 8 +18777,1 6 86 9 16 42 16 17 10 54 7 4 +10037,1 6 84 51 36 37 17 10 54 7 4 +1060,1 6 53 57 58 58 54 7 4 +16127,5 6 53 90 16 17 10 7 8 +15691,1 6 84 51 36 37 17 10 54 7 8 +19696,1 6 57 9 39 36 16 61 16 17 11 8 +23120,96 16 36 16 17 11 56 7 4 +26164,5 6 31 32 66 7 4 +10241,70 16 36 16 61 16 61 16 17 62 10 7 8 +18920,5 6 92 61 62 48 32 93 7 8 +10348,15 57 53 9 16 17 11 8 +2327,15 12 9 16 36 37 38 17 10 7 4 +11815,5 6 34 36 37 17 62 72 7 4 +305,1 6 12 16 17 19 13 +18921,5 6 92 61 62 48 32 93 7 4 +13238,1 6 12 11 58 11 58 7 8 +2434,5 6 67 68 89 7 8 +2326,15 12 9 16 36 37 38 17 10 7 8 +11659,5 6 34 36 37 17 62 72 7 8 +25632,1 6 12 11 58 11 58 7 4 +2433,5 6 67 68 89 7 4 +26027,1 6 90 91 66 7 8 +25430,1 6 84 12 16 16 21 77 78 82 83 8 +16516,5 6 67 107 108 68 58 7 4 +15951,5 6 67 107 108 68 58 7 8 +19611,5 45 21 22 17 19 56 85 93 27 28 +14851,1 6 9 16 17 37 48 72 7 4 +15681,5 6 84 9 10 58 89 85 54 7 8 +24970,1 6 64 16 36 37 38 11 8 +4834,1 12 36 16 17 37 72 7 4 +15682,5 6 84 9 10 58 89 85 54 7 4 +9238,1 12 36 16 17 37 72 7 8 +12702,1 6 53 9 16 17 37 50 7 8 +12703,1 6 53 9 16 17 37 50 7 4 +24009,96 16 36 16 17 11 56 7 8 +16688,15 55 12 57 55 9 16 36 37 38 17 37 72 7 8 +23126,15 55 12 55 12 16 21 77 78 22 79 4 +5637,1 6 84 18 12 11 14 85 54 7 8 +16689,15 55 12 57 55 9 16 36 37 38 17 37 72 7 4 +1388,5 6 53 9 16 61 16 17 10 7 8 +5634,1 6 84 18 12 11 14 85 54 7 4 +9165,5 6 53 9 16 61 16 17 10 7 4 +10316,1 6 51 47 36 37 69 +13529,15 57 9 16 36 37 38 17 10 54 7 4 +13530,15 57 9 16 36 37 38 17 10 54 7 8 +24377,1 12 16 36 16 17 37 50 54 7 4 +16737,5 6 53 57 9 16 17 10 54 54 7 4 +20687,15 12 16 36 37 38 37 115 68 89 7 8 +852,5 6 9 10 66 11 8 +10492,5 6 9 16 36 37 38 11 8 +14957,5 6 16 17 10 7 4 +12186,5 6 64 16 42 16 17 37 50 11 8 +3363,1 6 12 65 9 16 17 10 7 4 +3082,1 6 12 65 9 16 17 10 7 8 +14958,5 6 16 17 10 7 8 +2667,1 6 9 10 56 89 85 7 8 +1842,15 90 61 62 17 10 7 4 +15238,1 6 92 9 10 14 7 8 +2668,1 6 9 10 56 89 85 7 4 +13070,5 6 49 36 37 19 33 13 +1843,15 90 61 62 17 10 7 8 +15241,1 6 92 9 10 14 7 4 +847,1 6 90 91 66 11 8 +18993,15 55 9 16 39 36 16 42 16 17 19 13 +5,1 12 11 13 +18842,15 34 107 36 37 10 93 7 8 +14548,15 49 117 16 17 11 13 +26421,15 57 53 31 42 43 17 63 7 4 +14547,15 49 117 16 17 11 8 +18843,15 34 107 36 37 10 93 7 4 +15672,5 6 84 88 89 13 +15479,1 6 57 58 89 27 66 7 4 +21867,1 6 51 47 48 72 54 7 4 +4064,1 6 57 12 39 36 16 17 19 13 +10588,1 6 55 12 55 88 57 58 11 8 +26277,1 6 53 34 47 48 32 7 8 +10976,1 6 57 58 89 27 66 7 8 +25313,5 6 31 32 66 7 8 +3590,15 9 16 36 16 17 37 48 32 7 8 +3589,15 9 16 36 16 17 37 48 32 7 4 +14739,5 6 55 34 35 13 +19653,1 6 51 47 48 50 54 7 4 +16158,5 6 12 119 16 17 11 13 +16824,1 6 71 16 17 52 7 8 +19654,1 6 51 47 48 50 54 7 8 +16823,1 6 71 16 17 52 7 4 +24190,1 6 55 67 36 37 17 37 72 7 8 +3895,5 6 12 119 16 17 11 8 +23972,5 6 71 36 37 17 37 32 54 7 8 +1751,5 6 96 16 21 77 78 22 8 +11674,5 6 84 9 10 87 58 85 7 4 +13443,1 6 53 57 57 12 16 17 19 13 +21238,1 6 44 49 47 36 37 17 37 35 87 7 4 +26319,1 6 53 121 122 13 +4042,1 6 76 16 39 36 16 36 16 17 10 7 8 +14893,5 6 12 16 17 19 7 4 +13438,5 6 49 47 47 36 37 19 13 +14892,5 6 12 16 17 19 7 8 +4175,1 6 55 9 61 62 52 7 8 +25208,1 6 55 31 47 36 37 17 11 8 +26238,1 6 49 109 110 13 +4171,1 6 55 9 61 62 52 7 4 +13838,1 6 18 12 16 42 16 17 11 7 4 +3811,5 6 57 57 26 12 16 17 19 13 +14581,15 65 9 61 62 72 7 8 +7565,1 6 88 12 11 58 7 8 +234,1 6 12 16 17 11 8 +14582,15 65 9 61 62 72 7 4 +12040,5 6 53 12 51 109 110 11 8 +21657,1 6 18 12 16 42 16 17 11 7 8 +2334,1 6 12 16 17 11 13 +9779,5 6 84 9 10 87 58 85 7 8 +21416,5 6 55 12 57 58 13 +23341,1 6 53 18 12 16 17 62 10 7 4 +25454,1 6 53 18 12 16 17 62 10 7 8 +21089,5 6 55 57 9 16 17 62 10 7 4 +559,5 6 88 89 56 7 8 +558,5 6 88 89 56 7 4 +6414,1 6 12 34 47 48 32 11 8 +20604,1 6 57 67 68 13 +1893,1 6 53 55 56 13 +5327,15 12 16 36 16 17 37 52 7 4 +15268,5 6 55 56 56 89 13 +20909,5 6 55 57 9 16 17 62 10 7 8 +9836,1 6 71 109 110 13 +17044,1 6 31 42 43 17 37 108 35 54 7 8 +24535,1 6 53 34 12 36 37 63 7 4 +1622,1 6 12 65 66 27 28 +13515,1 6 57 92 12 16 36 16 17 11 8 +17178,1 6 57 92 12 16 36 16 17 11 13 +3640,15 12 36 16 17 37 48 52 54 7 8 +3639,15 12 36 16 17 37 48 52 54 7 4 +12653,5 20 21 22 17 17 54 54 7 4 +17045,1 6 31 42 43 17 37 108 35 54 7 4 +6664,15 12 16 36 16 17 37 35 11 7 8 +21215,1 6 12 57 58 11 7 4 +13040,1 6 12 57 58 11 7 8 +18706,15 57 58 66 11 7 8 +8176,1 6 9 16 17 62 68 7 8 +18418,5 6 55 34 47 36 37 17 63 7 4 +18997,15 12 16 36 16 17 37 35 11 7 4 +11837,1 6 53 90 16 61 16 61 16 17 11 8 +14308,5 6 55 34 47 36 37 17 63 7 8 +11838,1 6 53 90 16 61 16 61 16 17 11 13 +4458,1 6 34 35 66 56 7 4 +23989,1 6 53 65 90 16 17 120 54 7 8 +4459,1 6 34 35 66 56 7 8 +16771,1 6 31 42 43 11 7 8 +18133,1 6 53 65 90 16 17 120 54 7 4 +21819,5 6 12 65 9 16 36 37 38 17 10 7 4 +22014,1 6 12 16 17 7 4 +10618,15 12 16 36 37 38 37 17 52 7 4 +21473,1 6 57 92 71 47 36 37 63 7 4 +16061,1 6 31 42 43 11 7 4 +20647,5 6 84 12 11 11 85 54 7 4 +10617,15 12 16 36 37 38 37 17 52 7 8 +22015,1 6 12 16 17 7 8 +22617,5 6 86 34 47 48 32 7 8 +19454,5 6 64 16 36 16 16 17 11 8 +10527,5 45 21 22 17 100 7 8 +18124,1 6 105 16 17 91 54 7 8 +10526,5 45 21 22 17 100 7 4 +13732,1 6 49 61 62 63 7 4 +3370,1 6 12 31 32 13 +17563,15 57 53 9 16 17 62 10 7 8 +21820,5 6 12 65 9 16 36 37 38 17 10 7 8 +11425,1 6 49 61 62 63 7 8 +16340,15 9 16 17 11 58 7 4 +4673,15 9 16 17 11 58 7 8 +5741,25 26 88 89 66 11 8 +13457,1 6 55 88 34 35 89 56 7 8 +14102,15 31 47 48 68 7 8 +19355,15 55 65 88 57 51 52 7 4 +14591,1 6 64 16 17 120 7 8 +26117,1 6 84 88 57 58 85 85 54 7 4 +21994,1 6 64 16 17 120 7 4 +4216,1 6 53 54 32 56 7 4 +3903,5 6 12 65 67 68 33 13 +12181,1 12 36 37 38 17 62 10 7 4 +1930,15 88 55 57 9 16 61 16 17 19 54 7 8 +16531,15 55 65 88 57 51 52 7 8 +12086,1 12 36 37 38 17 62 10 7 8 +14101,15 31 47 48 68 7 4 +1931,15 88 55 57 9 16 61 16 17 19 54 7 4 +4162,1 6 53 54 32 56 7 8 +3986,116 81 77 78 82 83 8 +4431,15 9 39 36 16 36 16 61 16 17 37 35 7 4 +4430,15 9 39 36 16 36 16 61 16 17 37 35 7 8 +434,5 6 9 10 66 7 4 +12070,1 6 71 117 16 17 19 7 8 +13403,1 6 55 51 36 37 11 13 +19812,15 67 107 108 68 7 4 +23909,5 6 64 16 42 16 17 37 50 7 8 +20907,1 6 71 117 16 17 19 7 4 +13402,1 6 55 51 36 37 11 8 +9295,5 6 64 61 62 37 35 54 7 8 +19811,15 67 107 108 68 7 8 +17650,5 6 34 36 37 74 7 4 +26598,5 6 64 16 42 16 17 37 50 7 4 +4514,5 6 64 61 62 37 35 54 7 4 +22892,5 6 34 36 37 74 7 8 +20892,1 6 12 16 36 37 38 10 7 4 +25637,1 6 55 55 12 90 16 61 16 17 37 72 7 8 +4318,1 6 53 90 16 61 16 17 11 13 +20893,1 6 12 16 36 37 38 10 7 8 +20659,1 6 55 55 12 90 16 61 16 17 37 72 7 4 +13918,1 6 57 92 31 42 43 17 10 93 58 7 4 +24819,1 6 57 53 49 36 37 17 3 8 +23529,1 6 53 9 16 36 37 38 17 10 54 54 7 8 +4192,1 6 53 90 16 61 16 17 11 8 +10558,5 6 49 47 48 48 68 7 8 +10197,15 34 36 16 42 16 17 37 50 7 8 +16450,5 6 49 47 48 48 68 7 4 +24441,5 6 12 16 17 37 68 7 4 +13002,15 34 36 16 42 16 17 37 50 7 4 +24440,5 6 12 16 17 37 68 7 8 +735,1 12 16 61 16 17 10 7 8 +22121,1 6 12 11 54 85 7 8 +23704,1 6 57 65 57 9 16 17 37 72 85 7 8 +294,5 6 9 10 66 7 8 +13428,5 6 67 36 37 17 43 72 7 4 +8714,5 6 53 31 47 48 35 7 4 +17804,1 6 64 61 62 17 37 50 58 54 7 4 +4404,1 6 88 57 58 58 66 7 4 +9153,5 6 53 31 47 48 35 7 8 +14616,1 6 53 55 56 56 7 8 +20121,1 6 88 57 58 58 66 7 8 +14615,1 6 53 55 56 56 7 4 +21474,1 6 57 92 34 36 37 63 7 4 +10652,1 12 36 37 38 17 37 35 7 8 +11276,1 12 36 37 38 17 37 35 7 4 +16220,1 12 16 39 36 16 17 10 7 4 +71,1 6 9 16 17 10 7 8 +8728,1 12 16 39 36 16 17 10 7 8 +16634,5 6 53 64 16 36 16 61 16 17 37 123 7 4 +72,1 6 9 16 17 10 7 4 +19695,1 6 64 61 62 17 37 50 58 54 7 8 +22699,5 6 53 64 16 36 16 61 16 17 37 123 7 8 +2498,5 6 92 9 16 17 37 68 93 58 7 8 +2499,5 6 92 9 16 17 37 68 93 58 7 4 +2065,5 6 88 51 42 43 17 63 7 8 +15993,15 88 9 16 42 16 17 10 7 8 +25977,5 6 88 51 42 43 17 63 7 4 +12481,5 6 53 67 68 56 13 +26668,5 6 12 16 36 37 38 37 115 72 7 4 +3683,1 6 9 10 89 66 7 4 +15992,15 88 9 16 42 16 17 10 7 4 +16326,5 6 9 16 36 16 17 37 48 35 54 7 8 +25286,5 6 53 31 47 47 42 43 17 63 7 4 +19915,1 6 76 42 43 17 106 7 4 +17548,1 6 65 9 16 17 37 52 7 4 +23163,1 6 57 92 84 85 7 4 +19116,5 6 57 58 56 54 7 4 +17549,1 6 65 9 16 17 37 52 7 8 +24400,1 6 49 107 9 117 16 17 37 10 7 4 +787,1 6 18 12 16 17 37 52 7 8 +8435,5 6 9 16 17 43 13 +12114,15 12 36 16 17 37 115 52 7 4 +22582,1 6 41 12 26 9 16 17 11 7 8 +16512,15 53 34 36 37 17 10 7 8 +9668,1 6 57 92 84 85 7 8 +20562,15 53 34 36 37 17 10 7 4 +24188,5 6 55 57 57 49 107 36 37 17 11 13 +16433,1 6 55 88 57 12 9 16 17 19 7 8 +16347,1 6 41 12 26 9 16 17 11 7 4 +24399,1 6 49 107 9 117 16 17 37 10 7 8 +20855,5 6 55 65 66 89 27 28 +786,1 6 18 12 16 17 37 52 7 4 +384,1 6 71 72 13 +12554,15 12 16 36 16 17 43 72 7 4 +26816,1 6 84 53 18 12 16 17 11 8 +6734,1 6 47 36 37 17 63 7 8 +8262,1 6 64 61 62 10 7 8 +20501,5 6 55 57 57 49 107 36 37 17 11 8 +24351,1 6 47 36 37 17 63 7 4 +15464,15 86 53 12 16 36 37 38 17 11 8 +3070,1 6 64 61 62 10 7 4 +15465,15 86 53 12 16 36 37 38 17 11 13 +8438,15 31 36 37 17 75 7 8 +12553,15 12 16 36 16 17 43 72 7 8 +19115,5 6 57 58 56 54 7 8 +8439,15 31 36 37 17 75 7 4 +2291,1 6 65 67 61 62 63 7 8 +22440,5 6 64 61 62 17 37 72 85 54 7 8 +19575,1 6 9 10 85 7 4 +18670,1 6 65 67 61 62 63 7 4 +22441,5 6 64 61 62 17 37 72 85 54 7 4 +19572,1 6 9 10 85 7 8 +23555,15 12 36 37 38 69 +12280,15 65 34 114 36 37 17 10 7 4 +13424,1 12 16 36 39 36 16 17 63 7 4 +26774,15 65 34 114 36 37 17 10 7 8 +380,5 6 64 61 62 17 37 50 11 8 +2996,5 6 9 16 36 16 17 19 7 4 +2416,1 6 57 86 87 7 4 +15503,1 6 55 88 88 9 16 17 10 7 8 +10491,1 6 12 12 16 17 10 7 4 +13580,70 16 99 16 17 37 52 7 8 +2246,1 6 88 57 57 53 67 36 37 17 10 7 8 +2417,1 6 57 86 87 7 8 +10490,1 6 12 12 16 17 10 7 8 +3410,1 6 88 57 57 53 67 36 37 17 10 7 4 +2621,5 6 9 16 36 16 17 19 7 8 +13581,70 16 99 16 17 37 52 7 4 +6613,1 12 11 93 7 4 +2281,5 6 49 114 36 37 17 10 7 4 +2926,1 12 11 93 7 8 +10659,1 6 71 47 42 43 17 10 7 4 +25581,5 6 84 71 36 37 74 85 7 4 +6564,5 6 26 88 9 16 36 37 38 17 10 7 4 +9724,5 6 12 9 16 17 37 32 7 4 +23607,1 6 71 47 42 43 17 10 7 8 +25766,1 6 55 34 107 36 37 11 8 +9723,5 6 12 9 16 17 37 32 7 8 +19914,1 6 76 42 43 17 106 7 8 +23291,5 6 53 67 114 107 36 37 17 63 7 4 +2768,1 6 51 36 37 17 69 +7608,15 96 36 39 36 16 17 19 13 +7386,5 6 12 16 42 16 17 19 13 +14871,15 65 66 11 8 +4729,1 6 51 36 37 19 13 +5496,15 57 12 16 21 77 78 22 79 4 +18199,1 6 57 9 16 42 16 17 10 54 7 8 +12164,70 16 99 16 42 16 17 37 10 7 8 +23542,5 6 12 65 57 9 16 17 11 13 +5492,1 6 57 9 16 42 16 17 10 54 7 4 +19143,5 6 12 65 57 9 16 17 11 8 +12163,70 16 99 16 42 16 17 37 10 7 4 +12296,5 6 18 12 36 37 38 11 8 +9774,1 6 84 57 65 66 13 +12385,1 6 51 36 37 17 94 +13598,15 55 88 34 35 56 7 4 +8111,5 6 64 61 62 17 37 50 7 8 +20196,1 6 9 10 56 66 7 4 +25363,5 6 12 31 47 48 32 11 8 +845,1 6 12 65 66 11 8 +13973,1 6 29 9 16 17 63 93 7 8 +13597,15 55 88 34 35 56 7 8 +4052,5 6 9 16 42 16 17 10 7 4 +9982,1 6 67 36 37 17 3 8 +5209,1 6 67 36 37 17 3 4 +10678,5 6 9 16 42 16 17 10 7 8 +13395,5 6 57 55 16 17 7 4 +20195,1 6 9 10 56 66 7 8 +15148,5 6 12 34 36 37 63 7 4 +23980,5 6 12 34 36 37 63 7 8 +8875,5 6 64 61 62 17 37 48 68 13 +15165,70 16 36 37 38 37 48 52 7 4 +6506,70 39 36 16 61 16 17 62 10 7 4 +6507,70 39 36 16 61 16 17 62 10 7 8 +16808,1 6 53 90 16 17 37 50 7 4 +20226,5 6 67 42 43 17 62 10 7 8 +6967,1 6 53 54 56 13 +24029,1 6 12 9 16 36 37 38 10 7 4 +20225,5 6 67 42 43 17 62 10 7 4 +15166,70 16 36 37 38 37 48 52 7 8 +21271,1 6 53 90 16 17 37 50 7 8 +16209,15 9 16 17 37 72 7 8 +8110,5 6 64 61 62 17 37 50 7 4 +3342,5 6 71 47 48 68 54 7 8 +7069,5 6 55 31 107 36 37 11 8 +22265,15 9 39 36 16 61 16 17 10 7 4 +14332,5 2 16 17 37 35 85 54 7 4 +20842,5 6 31 47 48 32 85 54 7 4 +3341,5 6 71 47 48 68 54 7 4 +22266,15 9 39 36 16 61 16 17 10 7 8 +15547,5 2 16 17 37 35 85 54 7 8 +20843,5 6 31 47 48 32 85 54 7 8 +26190,1 6 57 53 9 16 36 37 38 17 10 54 7 8 +13255,5 6 53 9 16 61 16 17 11 7 8 +15449,1 12 16 39 36 16 117 118 32 54 7 4 +11072,15 55 9 16 17 37 50 7 4 +11073,15 55 9 16 17 37 50 7 8 +6071,5 6 9 16 17 43 48 32 54 7 8 +4337,15 9 16 17 17 10 7 4 +22644,1 6 64 39 36 16 42 16 17 62 10 7 4 +5692,1 6 88 51 67 36 37 17 11 8 +4338,15 9 16 17 17 10 7 8 +22645,1 6 64 39 36 16 42 16 17 62 10 7 8 +668,5 6 64 16 17 63 7 8 +9136,1 6 53 54 58 13 +1943,5 6 84 49 47 48 52 85 54 7 4 +1944,5 6 84 49 47 48 52 85 54 7 8 +8610,5 6 57 12 9 16 17 10 7 8 +18737,1 6 88 51 67 36 37 17 11 13 +14688,1 6 49 107 42 43 17 37 50 54 7 8 +16208,15 9 16 17 37 72 7 4 +17487,15 67 36 37 17 62 10 7 8 +10312,1 6 12 65 66 7 8 +6821,15 55 12 57 9 16 36 37 38 17 10 7 8 +10313,1 6 12 65 66 7 4 +14411,1 6 55 65 66 89 13 +17486,15 67 36 37 17 62 10 7 4 +3775,5 6 53 12 67 61 62 63 7 8 +669,5 6 64 16 17 63 7 4 +3774,5 6 53 12 67 61 62 63 7 4 +632,5 6 71 47 48 68 7 8 +637,5 6 71 47 48 68 7 4 +25161,5 6 49 36 37 17 37 50 7 8 +5656,1 6 36 37 11 8 +7756,5 6 49 36 37 17 37 50 7 4 +17191,1 6 36 37 11 13 +3364,5 6 44 9 16 61 16 17 19 7 8 +6452,5 6 44 9 16 61 16 17 19 7 4 +7252,5 6 12 57 9 16 17 37 72 7 4 +6822,15 55 12 57 9 16 36 37 38 17 10 7 4 +7253,5 6 12 57 9 16 17 37 72 7 8 +3821,5 6 53 16 17 54 7 8 +2909,5 6 67 42 43 17 37 35 7 8 +17245,5 6 64 16 36 37 38 17 37 52 7 8 +7520,5 6 67 42 43 17 37 35 7 4 +25742,5 6 64 16 36 37 38 17 37 52 7 4 +20333,1 6 64 42 16 17 43 10 93 63 7 8 +15147,70 16 36 16 61 16 39 36 16 17 19 7 4 +14620,5 6 9 10 66 56 54 7 4 +5069,15 57 53 9 16 61 16 17 10 7 8 +15167,1 12 16 36 39 36 39 36 16 17 37 72 7 8 +19647,5 6 53 12 16 36 16 61 16 17 19 +18958,1 6 53 55 56 27 54 7 4 +20334,1 6 64 42 16 17 43 10 93 63 7 4 +15146,70 16 36 16 61 16 39 36 16 17 19 7 8 +20749,1 6 124 36 37 19 +14621,5 6 9 10 66 56 54 7 8 +5068,15 57 53 9 16 61 16 17 10 7 4 +20277,1 12 16 36 39 36 39 36 16 17 37 72 7 4 +12912,1 6 53 55 56 27 54 7 8 +16052,15 55 57 9 16 36 16 17 37 72 85 7 4 +16051,15 55 57 9 16 36 16 17 37 72 85 7 8 +20764,5 6 47 48 32 11 7 4 +19274,1 6 55 51 36 37 37 32 54 7 8 +26222,15 55 34 107 108 35 87 56 7 8 +19078,15 49 9 36 37 17 11 13 +19077,15 49 9 36 37 17 11 8 +14735,1 6 55 51 36 37 37 32 54 7 4 +26221,15 55 34 107 108 35 87 56 7 4 +5394,1 6 51 36 37 11 8 +26394,15 67 68 68 54 7 4 +24632,1 6 12 9 34 35 7 4 +2493,1 6 57 92 67 68 7 8 +6305,1 6 51 36 37 11 13 +3820,5 6 53 16 17 54 7 4 +2494,1 6 57 92 67 68 7 4 +5826,1 6 18 12 31 32 7 8 +17015,5 6 34 36 16 17 37 72 54 7 8 +22355,15 31 42 43 17 37 35 54 54 7 8 +19641,1 6 64 16 36 16 42 16 17 11 8 +4970,1 6 84 64 16 36 16 61 16 17 37 35 7 8 +5825,1 6 18 12 31 32 7 4 +22356,15 31 42 43 17 37 35 54 54 7 4 +19642,1 6 64 16 36 16 42 16 17 11 13 +13983,15 9 16 36 37 38 37 72 30 7 8 +13982,15 9 16 36 37 38 37 72 30 7 4 +11421,5 6 12 16 42 16 17 11 13 +3022,1 6 88 88 57 57 53 9 10 54 7 4 +26393,15 67 68 68 54 7 8 +11420,5 6 12 16 42 16 17 11 8 +3023,1 6 88 88 57 57 53 9 10 54 7 8 +572,1 6 64 36 37 38 63 7 8 +6355,1 6 84 64 16 36 16 61 16 17 37 35 7 4 +573,1 6 64 36 37 38 63 7 4 +24371,1 6 64 16 36 37 38 37 52 54 7 8 +10714,1 6 12 65 57 26 9 16 17 11 13 +17667,5 6 55 12 57 58 58 11 8 +6557,25 26 27 56 7 8 +13483,5 6 29 9 61 62 11 8 +14208,1 6 64 16 36 37 38 37 52 54 7 4 +8275,1 6 12 65 57 26 9 16 17 11 8 +9908,15 9 9 9 9 9 16 17 10 7 8 +18096,5 6 29 9 61 62 11 13 +7037,1 6 55 57 86 87 7 4 +9909,15 9 9 9 9 9 16 17 10 7 4 +21689,15 57 12 51 117 16 17 11 8 +21788,1 6 57 67 47 48 72 54 7 4 +14623,1 6 55 88 88 34 35 13 +21690,15 57 12 51 117 16 17 11 13 +3527,1 6 57 31 47 48 48 32 7 4 +1070,5 6 53 57 57 9 16 17 10 7 8 +7746,1 6 64 39 36 16 42 16 17 37 35 7 4 +26463,15 90 36 16 17 11 8 +22254,1 6 57 31 47 48 48 32 7 8 +13236,70 16 36 37 38 37 35 7 8 +1069,5 6 53 57 57 9 16 17 10 7 4 +13237,70 16 36 37 38 37 35 7 4 +21909,1 6 57 34 36 37 17 11 13 +8587,1 6 51 52 56 54 7 4 +3387,5 6 67 42 43 17 37 35 11 8 +26464,15 90 36 16 17 11 13 +8595,1 6 51 52 56 54 7 8 +4501,5 6 67 47 107 36 37 17 63 7 8 +23380,1 6 49 50 93 58 7 8 +24756,5 6 9 16 17 43 48 35 30 7 8 +9661,1 12 11 30 58 7 4 +19832,5 6 67 47 107 36 37 17 63 7 4 +23730,1 6 49 50 93 58 7 4 +23161,1 12 11 30 58 7 8 +10405,5 6 55 55 65 66 56 7 8 +24755,5 6 9 16 17 43 48 35 30 7 4 +7745,1 6 64 39 36 16 42 16 17 37 35 7 8 +26316,1 45 21 22 17 19 56 30 27 28 +1783,15 55 56 13 +21429,15 34 36 37 17 37 48 50 7 8 +1221,1 6 53 9 16 36 16 17 37 50 7 8 +21430,15 34 36 37 17 37 48 50 7 4 +11684,1 6 76 16 117 118 68 7 4 +5574,5 6 44 9 16 17 10 7 8 +1222,1 6 53 9 16 36 16 17 37 50 7 4 +11683,1 6 76 16 117 118 68 7 8 +20070,1 6 12 65 9 16 17 37 35 7 8 +26351,5 6 67 36 37 17 37 52 7 4 +5575,5 6 44 9 16 17 10 7 4 +16662,1 6 34 47 48 35 87 30 7 8 +19186,5 6 55 53 12 16 17 62 10 7 8 +23535,5 6 12 57 58 58 11 8 +8304,1 6 57 67 47 48 72 54 7 8 +6301,1 6 53 51 36 37 69 +11718,1 6 47 48 32 11 8 +15338,5 6 55 53 12 16 17 62 10 7 4 +11707,5 6 55 55 53 9 10 13 +23333,1 6 53 90 16 61 16 17 37 50 7 4 +17489,1 6 84 34 36 37 63 7 4 +19425,1 6 53 90 16 61 16 17 37 50 7 8 +14325,1 6 84 34 36 37 63 7 8 +19416,15 53 12 16 36 16 17 37 50 54 7 8 +24523,15 109 12 16 17 11 8 +7709,1 6 12 88 57 9 16 17 11 8 +2146,5 6 12 55 12 16 17 19 13 +13620,1 6 18 12 16 17 43 32 14 7 8 +3057,95 36 16 17 10 7 4 +13619,1 6 18 12 16 17 43 32 14 7 4 +3056,95 36 16 17 10 7 8 +17590,1 6 105 16 17 19 7 4 +21851,1 6 9 39 36 16 17 19 7 8 +17570,5 6 55 53 51 47 47 36 37 19 +24301,1 6 12 65 57 9 16 61 16 17 11 8 +13035,15 12 16 42 16 17 11 7 4 +22144,5 6 88 55 57 65 67 47 36 37 17 11 8 +24524,15 109 12 16 17 11 13 +6713,5 6 86 9 16 17 11 8 +13499,5 6 53 55 9 16 17 10 7 4 +22591,1 6 57 53 31 61 62 63 7 4 +16133,5 6 53 55 9 16 17 10 7 8 +9776,5 6 84 9 10 87 58 7 4 +3851,1 6 9 10 85 54 7 8 +7607,1 6 84 49 36 39 36 16 17 19 13 +9771,5 6 84 9 10 87 58 7 8 +10427,1 6 9 16 17 10 54 54 7 8 +10428,1 6 9 16 17 10 54 54 7 4 +3850,1 6 9 10 85 54 7 4 +8033,1 6 9 10 110 35 58 7 8 +8037,1 6 9 10 110 35 58 7 4 +3447,1 6 9 9 16 17 11 8 +21602,5 6 55 65 88 89 7 8 +673,1 6 84 53 54 7 8 +4255,1 6 84 53 54 7 4 +15651,1 2 16 17 43 35 11 8 +23749,1 45 21 22 17 19 11 8 +15652,1 2 16 17 43 35 11 13 +19339,1 6 64 16 61 16 36 37 38 10 93 7 8 +26081,1 6 67 36 37 17 19 13 +17711,15 49 36 37 17 11 54 7 8 +18493,15 49 36 37 17 10 85 7 8 +26486,1 6 47 48 32 7 4 +9559,1 6 47 48 32 7 8 +18494,15 49 36 37 17 10 85 7 4 +20633,15 49 36 37 17 11 54 7 4 +19340,1 6 64 16 61 16 36 37 38 10 93 7 4 +18820,5 6 71 47 48 68 11 8 +21451,1 6 57 9 16 42 16 17 37 35 7 8 +23580,1 6 88 65 66 7 4 +21035,5 6 12 16 36 37 38 37 48 35 11 8 +22137,70 16 36 16 17 37 35 54 7 4 +7317,15 53 64 36 37 38 37 35 11 8 +22138,70 16 36 16 17 37 35 54 7 8 +24648,1 6 57 9 16 42 16 17 37 35 7 4 +6951,5 6 64 53 9 10 7 4 +8324,1 6 65 9 16 61 16 17 11 8 +5920,5 6 12 36 37 91 7 8 +10596,5 6 86 9 16 17 37 32 7 8 +20970,5 6 47 48 35 54 7 4 +7114,1 12 9 16 17 43 32 10 54 85 54 7 8 +12851,5 6 64 53 9 10 7 8 +13091,60 16 36 37 38 37 48 50 7 8 +17978,5 6 86 9 16 17 37 32 7 4 +5058,15 67 36 37 17 10 54 7 4 +5919,5 6 12 36 37 91 7 4 +5059,15 67 36 37 17 10 54 7 8 +13090,60 16 36 37 38 37 48 50 7 4 +17867,5 6 53 9 10 110 50 54 7 4 +9964,5 6 84 71 36 37 74 85 7 8 +17866,5 6 53 9 10 110 50 54 7 8 +765,15 65 66 7 4 +17610,70 16 36 37 38 10 54 7 4 +17609,70 16 36 37 38 10 54 7 8 +24265,5 6 64 16 117 118 68 11 7 4 +764,15 65 66 7 8 +21568,5 6 64 16 117 118 68 11 7 8 +12183,15 55 9 16 17 43 68 11 8 +11283,15 55 53 88 89 7 8 +8970,5 6 55 53 18 12 16 17 10 54 7 8 +18765,15 57 57 92 12 11 93 58 7 8 +23188,1 12 16 36 39 36 16 17 63 7 8 +11284,15 55 53 88 89 7 4 +12979,5 6 55 53 18 12 16 17 10 54 7 4 +18764,15 57 57 92 12 11 93 58 7 4 +16192,15 12 16 17 11 7 4 +17915,1 6 65 57 9 16 17 37 48 68 7 4 +13816,15 12 16 17 11 7 8 +10946,5 6 53 88 57 9 16 61 16 17 10 54 54 7 8 +10947,5 6 53 88 57 9 16 61 16 17 10 54 54 7 4 +6437,5 6 12 16 36 37 38 37 48 35 7 8 +11193,5 6 29 9 10 30 93 7 4 +10625,5 6 12 36 37 38 11 7 8 +10182,70 16 99 16 61 16 17 19 13 +21220,5 6 96 16 17 11 13 +11192,5 6 29 9 10 30 93 7 8 +20339,5 6 12 16 36 37 38 37 48 35 7 4 +14778,5 6 57 58 89 54 7 8 +15086,15 55 53 57 58 13 +3182,5 6 9 16 17 19 13 +14536,5 6 64 53 9 10 11 8 +7346,70 16 36 16 17 10 7 8 +26704,15 96 16 36 16 17 100 7 4 +19477,1 6 57 51 36 37 17 11 8 +26703,15 96 16 36 16 17 100 7 8 +6307,5 6 64 16 17 37 50 7 8 +5406,5 6 64 16 17 37 50 7 4 +9865,1 6 9 10 89 66 11 8 +21219,5 6 96 16 17 11 8 +4928,70 16 36 39 36 16 61 16 17 37 35 54 7 8 +15686,5 6 57 58 89 54 7 4 +3879,5 6 67 68 89 13 +23396,1 6 67 68 56 66 58 7 4 +12115,15 12 36 16 17 37 115 52 7 8 +4927,70 16 36 39 36 16 61 16 17 37 35 54 7 4 +23397,1 6 67 68 56 66 58 7 8 +7347,70 16 36 16 17 10 7 4 +16337,5 6 34 36 37 17 37 108 50 7 4 +22985,5 6 53 31 107 108 32 54 7 4 +20765,1 6 53 31 32 56 54 7 4 +23731,1 6 57 92 49 36 37 10 7 4 +11724,1 6 53 31 32 56 54 7 8 +7115,1 12 9 16 17 43 32 10 54 85 54 7 4 +20474,1 6 57 9 16 42 16 17 43 52 58 13 +23461,1 6 90 36 37 38 17 10 7 4 +19960,15 9 16 36 37 38 17 63 93 7 4 +15615,1 6 57 34 36 37 17 11 8 +10468,5 6 49 36 37 19 7 4 +20671,5 6 9 16 36 37 38 37 52 85 54 7 8 +13661,5 6 57 9 16 36 16 17 63 7 8 +10469,5 6 49 36 37 19 7 8 +20670,5 6 9 16 36 37 38 37 52 85 54 7 4 +23460,1 6 90 36 37 38 17 10 7 8 +18505,15 57 9 16 17 75 54 7 4 +15685,15 55 53 88 89 11 13 +15684,15 55 53 88 89 11 8 +19959,15 9 16 36 37 38 17 63 93 7 8 +23007,1 6 84 88 57 58 58 89 13 +18506,15 57 9 16 17 75 54 7 8 +23383,1 6 57 92 49 36 37 10 7 8 +6556,25 26 27 56 7 4 +16147,5 6 9 36 37 17 37 32 7 8 +5691,1 6 67 36 37 17 11 13 +2369,1 6 67 36 37 17 11 8 +16148,5 6 9 36 37 17 37 32 7 4 +15583,1 6 55 12 9 16 17 10 7 4 +17364,5 6 9 16 17 37 48 52 7 4 +5810,1 6 55 12 9 16 17 10 7 8 +1425,1 6 64 16 17 69 +2274,1 12 11 58 89 56 7 4 +7906,1 6 65 57 90 16 17 91 7 8 +2273,1 12 11 58 89 56 7 8 +14456,1 6 64 16 17 59 +6208,5 6 53 49 50 54 54 7 4 +13050,15 44 34 47 36 37 11 13 +22561,5 6 9 16 17 43 48 35 54 7 8 +6207,5 6 53 49 50 54 54 7 8 +13049,15 44 34 47 36 37 11 8 +26413,5 6 53 90 91 54 7 8 +14015,1 6 55 51 36 37 17 10 54 7 4 +16293,5 6 57 71 117 16 17 118 17 11 8 +5238,15 9 16 17 43 32 93 7 4 +16848,1 6 53 55 56 58 89 7 4 +22560,5 6 9 16 17 43 48 35 54 7 4 +5237,15 9 16 17 43 32 93 7 8 +14467,1 6 64 16 17 98 +14014,1 6 55 51 36 37 17 10 54 7 8 +11861,1 6 71 36 37 17 11 13 +13749,1 6 55 53 51 52 7 8 +635,1 6 64 16 17 94 +808,1 6 71 36 37 17 11 8 +8197,15 67 47 48 50 7 4 +25488,1 6 90 91 89 54 54 54 7 4 +26721,1 6 53 55 56 58 89 7 8 +10156,1 6 55 53 57 9 16 17 10 7 4 +8198,15 67 47 48 50 7 8 +9605,1 6 12 49 36 37 69 +9939,15 51 36 37 17 10 85 54 7 8 +10734,5 6 9 16 17 37 48 52 7 8 +7153,1 6 90 91 89 54 54 54 7 8 +19716,1 6 55 53 57 9 16 17 10 7 8 +9940,15 51 36 37 17 10 85 54 7 4 +13928,1 6 53 71 36 37 17 11 8 +23608,1 6 57 12 16 17 69 +3493,15 57 57 9 61 62 17 10 54 7 4 +4217,5 6 55 53 12 16 36 37 38 17 11 8 +9297,1 6 9 16 17 94 +13929,1 6 53 71 36 37 17 11 13 +14170,5 6 92 9 10 54 7 4 +25493,1 6 90 91 89 11 8 +14169,5 6 92 9 10 54 7 8 +317,1 6 9 16 17 69 +13538,5 6 53 49 36 37 19 13 +6841,1 6 9 39 36 16 17 11 13 +10520,15 55 12 55 56 89 110 72 7 4 +6840,1 6 9 39 36 16 17 11 8 +11859,5 6 9 16 36 16 17 37 48 50 7 4 +7682,5 6 9 16 36 16 17 37 48 50 7 8 +4690,1 45 21 22 17 37 108 50 7 4 +5605,1 6 49 109 110 58 7 4 +21386,5 6 64 16 36 37 38 37 48 52 7 4 +2310,15 57 57 9 36 16 61 16 17 19 7 4 +11101,1 6 34 35 58 89 13 +22077,5 6 64 16 17 11 54 7 8 +21385,5 6 64 16 36 37 38 37 48 52 7 8 +2311,15 57 57 9 36 16 61 16 17 19 7 8 +10639,95 16 36 16 17 37 48 72 7 8 +679,1 6 9 61 62 10 7 8 +10640,95 16 36 16 17 37 48 72 7 4 +4691,1 45 21 22 17 37 108 50 7 8 +678,1 6 9 61 62 10 7 4 +9023,5 6 88 89 87 56 7 4 +19937,15 96 16 36 16 17 120 7 8 +9024,5 6 88 89 87 56 7 8 +15797,5 6 57 65 65 88 88 9 16 17 10 7 4 +25596,5 6 53 51 36 37 17 37 52 7 4 +19938,15 96 16 36 16 17 120 7 4 +10732,5 6 57 51 47 48 48 52 7 8 +16410,1 6 9 16 17 19 +26528,1 6 9 16 16 16 16 36 37 38 37 52 7 8 +11197,1 6 9 10 30 93 7 4 +19661,97 16 17 37 52 7 4 +8407,1 6 65 9 16 17 63 7 4 +7762,5 6 12 34 36 37 17 10 7 8 +11198,1 6 9 10 30 93 7 8 +16590,15 9 16 17 37 35 93 58 7 4 +8010,1 6 84 31 32 58 85 54 7 4 +1800,1 6 88 89 66 13 +16591,15 9 16 17 37 35 93 58 7 8 +20621,1 6 9 16 36 37 38 17 63 7 8 +18137,15 57 53 31 107 108 32 54 7 8 +25468,1 6 64 36 16 61 16 61 16 17 11 13 +8003,1 6 84 31 32 58 85 54 7 8 +7455,1 6 64 36 16 61 16 61 16 17 11 8 +20622,1 6 9 16 36 37 38 17 63 7 4 +3492,15 57 57 9 61 62 17 10 54 7 8 +15728,15 57 65 57 58 13 +22788,1 6 84 88 55 12 11 56 89 85 7 8 +18446,5 6 57 57 96 36 37 38 19 33 13 +22789,1 6 84 88 55 12 11 56 89 85 7 4 +19662,97 16 17 37 52 7 8 +5809,1 6 65 9 16 17 63 7 8 +14255,5 6 12 34 36 37 17 10 7 4 +20132,5 6 64 16 36 16 61 16 17 10 54 7 4 +20131,5 6 64 16 36 16 61 16 17 10 54 7 8 +553,5 6 55 56 56 7 8 +2830,5 6 55 56 56 7 4 +22946,1 6 86 53 9 10 54 7 4 +13804,1 6 57 55 53 12 36 37 38 11 13 +20178,1 6 55 56 58 89 7 8 +17615,1 6 9 16 36 16 17 19 7 8 +17656,1 6 105 36 16 17 37 35 7 8 +18589,5 6 51 36 37 17 43 52 7 4 +9327,1 6 55 56 58 89 7 4 +17614,1 6 9 16 36 16 17 19 7 4 +13803,1 6 57 55 53 12 36 37 38 11 8 +7424,5 6 57 51 47 48 48 52 7 4 +5046,1 6 12 49 36 37 11 8 +18121,5 6 53 90 91 54 7 4 +20156,1 6 64 16 117 118 32 54 7 8 +5682,15 57 9 16 17 43 48 52 7 8 +5047,1 6 12 49 36 37 11 13 +20155,1 6 64 16 117 118 32 54 7 4 +789,5 6 12 12 16 36 39 36 16 17 19 13 +22636,15 12 16 36 37 38 63 7 4 +10730,1 6 26 105 16 61 16 17 19 7 4 +13843,15 34 47 36 37 17 10 54 54 7 4 +23362,1 6 53 51 42 43 17 37 35 87 54 7 4 +10729,1 6 26 105 16 61 16 17 19 7 8 +13844,15 34 47 36 37 17 10 54 54 7 8 +25594,1 6 119 16 16 17 17 91 7 8 +26341,1 12 36 37 38 37 48 52 56 54 7 8 +5681,15 57 9 16 17 43 48 52 7 4 +20525,1 6 119 16 16 17 17 91 7 4 +3583,1 6 55 34 47 36 37 17 63 7 4 +6544,1 6 12 90 16 61 16 17 11 13 +18971,1 12 36 37 38 37 48 52 56 54 7 4 +25984,5 6 55 12 55 57 96 36 37 38 19 58 11 8 +8472,1 6 55 34 47 36 37 17 63 7 8 +23361,1 6 53 51 42 43 17 37 35 87 54 7 8 +26846,15 88 57 9 16 61 16 17 11 8 +17842,5 6 84 12 11 11 8 +813,1 6 84 12 16 36 37 38 37 48 68 7 8 +8616,15 55 12 55 56 56 89 56 11 56 7 4 +7781,5 6 34 35 11 8 +10396,5 6 12 9 16 17 37 123 7 8 +812,1 6 84 12 16 36 37 38 37 48 68 7 4 +4304,15 12 16 61 16 17 19 13 +10395,5 6 12 9 16 17 37 123 7 4 +12330,1 6 12 65 9 16 17 63 7 8 +26176,15 12 16 36 37 38 17 11 87 7 8 +18323,5 6 105 16 17 98 +25735,1 6 12 57 58 11 56 7 4 +16163,15 55 12 55 56 56 89 56 11 56 7 8 +4127,1 6 12 57 58 11 56 7 8 +23934,5 6 55 53 96 16 21 77 78 22 79 4 +7433,1 6 64 36 16 17 19 7 8 +862,1 6 12 65 90 16 17 63 7 4 +10894,1 6 71 36 37 17 19 13 +12329,1 6 12 65 9 16 17 63 7 4 +17365,1 6 64 36 16 17 19 7 4 +26129,15 31 36 37 100 7 8 +16961,1 6 86 31 42 43 17 10 7 4 +4235,1 6 88 55 88 9 16 17 10 7 8 +10373,5 6 64 16 36 16 61 16 17 62 10 7 4 +20605,1 12 16 36 37 38 37 35 87 58 7 4 +5438,1 6 88 55 88 9 16 17 10 7 4 +10372,5 6 64 16 36 16 61 16 17 62 10 7 8 +18028,5 6 105 16 17 69 +5709,15 34 107 36 37 38 19 58 11 8 +9651,5 6 53 34 36 37 17 37 35 54 7 4 +26128,15 31 36 37 100 7 4 +855,1 6 44 88 89 13 +17447,1 6 26 34 47 48 32 7 4 +14106,1 6 67 47 47 36 37 17 37 35 7 8 +20908,1 6 55 57 67 114 36 37 17 11 8 +25525,15 65 57 51 52 13 +22677,5 6 53 51 36 37 17 37 52 7 8 +1561,1 6 55 88 89 13 +1617,1 6 71 72 7 4 +24416,1 12 16 36 37 38 37 35 87 58 7 8 +1764,1 6 71 72 7 8 +2113,1 6 61 62 10 7 8 +11323,5 6 53 34 47 48 48 52 7 8 +17446,1 6 26 34 47 48 32 7 8 +14979,1 6 67 47 47 36 37 17 37 35 7 4 +2112,1 6 61 62 10 7 4 +11324,5 6 53 34 47 48 48 52 7 4 +21977,5 6 57 9 16 17 37 52 54 7 4 +17708,5 6 51 52 56 13 +1721,15 88 89 56 11 56 7 8 +10499,5 6 64 16 117 118 68 11 8 +21348,1 6 18 12 16 17 37 68 13 +21379,15 55 88 57 9 36 39 36 16 17 11 8 +25858,5 6 57 9 16 17 37 52 54 7 8 +26157,1 6 64 16 42 16 17 63 7 8 +2977,15 88 89 56 11 56 7 4 +22362,1 6 64 16 42 16 17 63 7 4 +23172,1 6 29 49 36 37 17 10 7 4 +19736,1 6 88 105 16 17 120 7 4 +23173,1 6 29 49 36 37 17 10 7 8 +1182,5 6 34 35 7 4 +55,5 6 34 35 7 8 +1782,15 12 16 17 19 13 +10960,5 6 57 57 57 26 65 66 89 13 +20379,1 6 64 36 37 38 37 35 11 8 +4956,5 6 64 16 36 16 61 16 17 37 35 7 8 +4957,5 6 64 16 36 16 61 16 17 37 35 7 4 +5432,15 53 34 36 37 17 37 35 54 7 4 +19735,1 6 88 105 16 17 120 7 8 +5427,15 53 34 36 37 17 37 35 54 7 8 +6361,5 6 53 12 57 58 11 56 7 4 +20088,15 55 65 51 61 62 63 7 4 +24233,15 55 65 51 61 62 63 7 8 +14437,1 6 12 65 90 16 17 63 7 8 +21216,15 12 11 58 11 7 8 +25577,5 6 64 16 117 118 72 11 7 8 +16678,1 6 53 26 65 9 16 17 37 50 7 4 +19511,15 12 11 58 11 7 4 +3480,5 6 64 16 117 118 72 11 7 4 +25635,5 6 9 16 17 43 35 13 +10310,1 6 64 16 17 13 +22202,1 6 88 88 57 58 13 +19439,5 6 84 88 57 12 39 36 16 17 19 13 +16677,1 6 53 26 65 9 16 17 37 50 7 8 +4259,1 6 92 34 35 13 +26766,15 96 16 36 37 38 19 33 13 +386,1 6 71 72 11 8 +17619,15 12 26 9 16 17 10 54 7 4 +387,1 6 71 72 11 13 +14494,15 9 36 37 38 37 52 7 8 +17620,15 12 26 9 16 17 10 54 7 8 +13215,5 6 88 9 16 17 43 72 11 7 4 +3744,15 34 36 37 17 37 108 35 54 7 8 +3743,15 34 36 37 17 37 108 35 54 7 4 +471,5 6 57 71 72 13 +3600,5 6 55 65 66 13 +23403,15 12 16 16 17 62 10 7 4 +24366,5 6 88 9 16 17 43 72 11 7 8 +16881,1 6 53 90 61 16 17 37 50 7 8 +26798,1 6 88 55 56 58 13 +22295,15 12 16 36 16 17 37 108 68 7 8 +742,15 12 16 61 16 17 11 8 +22764,15 12 11 110 35 7 4 +13224,15 55 12 55 56 11 13 +22296,15 12 16 36 16 17 37 108 68 7 4 +1718,15 55 12 55 56 11 8 +743,15 12 16 61 16 17 11 13 +9876,15 88 9 16 17 63 7 8 +17851,5 6 84 90 91 87 7 8 +22913,1 12 36 16 61 16 39 36 16 17 19 13 +25109,5 6 84 90 91 87 7 4 +22770,15 57 88 57 109 12 16 21 77 78 22 79 4 +15314,15 55 9 16 42 16 21 77 78 22 8 +16877,1 6 65 49 36 37 11 8 +3876,1 6 67 68 56 89 13 +22299,1 6 53 55 34 36 37 17 62 10 7 8 +23315,1 6 53 54 58 11 7 8 +23402,15 12 16 16 17 62 10 7 8 +23316,1 6 53 54 58 11 7 4 +21262,15 9 36 37 63 7 8 +18849,15 31 42 43 17 11 7 8 +21263,15 9 36 37 63 7 4 +17707,70 39 36 16 61 16 17 11 7 8 +4438,15 57 86 87 56 7 8 +12406,5 6 88 89 54 7 8 +15067,70 39 36 16 61 16 17 11 7 4 +4439,15 57 86 87 56 7 4 +12405,5 6 88 89 54 7 4 +10546,1 6 53 55 34 36 37 17 62 10 7 4 +9709,15 31 42 43 17 37 35 93 7 8 +4345,5 6 53 54 63 7 4 +4363,5 6 53 54 63 7 8 +9875,15 88 9 16 17 63 7 4 +9112,5 6 55 12 88 55 56 89 13 +5789,15 12 16 36 16 42 16 17 43 72 7 4 +22765,15 12 11 110 35 7 8 +1003,15 34 47 36 37 63 7 4 +9708,15 31 42 43 17 37 35 93 7 4 +15113,5 6 55 53 9 61 16 17 62 10 7 8 +1002,15 34 47 36 37 63 7 8 +1758,1 6 90 16 61 16 17 11 13 +16882,1 6 53 90 61 16 17 37 50 7 4 +13059,15 44 31 47 36 37 17 11 13 +20124,1 6 31 47 42 43 17 37 72 54 7 4 +9068,5 6 64 61 62 17 37 48 32 7 4 +11770,5 6 49 36 37 17 10 54 7 4 +21160,1 6 31 47 42 43 17 37 72 54 7 8 +24315,15 55 88 57 9 16 36 37 38 37 50 7 4 +2678,5 6 84 12 11 7 4 +11997,5 6 64 61 62 17 37 48 32 7 8 +13054,5 6 12 12 16 36 37 38 37 48 35 11 8 +2677,5 6 84 12 11 7 8 +4249,15 12 16 17 11 8 +21555,1 6 34 36 37 10 54 7 4 +26771,5 6 71 36 37 17 19 7 4 +9268,15 55 65 34 35 7 8 +9267,15 55 65 34 35 7 4 +4781,1 6 53 88 89 66 7 8 +10283,1 6 34 36 37 10 54 7 8 +12810,5 6 47 107 108 48 35 87 7 4 +12811,5 6 47 107 108 48 35 87 7 8 +15983,15 55 88 57 9 16 36 37 38 37 50 7 8 +19926,1 6 57 53 9 61 16 17 10 54 7 8 +7166,5 6 34 35 33 13 +13058,15 44 31 47 36 37 17 11 8 +26470,1 6 53 65 9 16 36 37 38 17 11 8 +23926,15 12 16 99 16 42 16 17 11 8 +15403,15 16 17 11 8 +12025,5 6 86 34 47 48 35 87 7 4 +12832,1 6 55 57 53 9 16 61 16 17 62 10 7 8 +15628,15 55 53 9 16 17 62 10 7 4 +25809,1 6 9 9 16 17 43 17 10 7 8 +15746,5 6 86 34 47 48 35 87 7 8 +642,1 6 64 16 36 37 38 17 63 7 4 +4170,15 55 53 12 16 36 37 38 17 11 13 +4169,15 55 53 12 16 36 37 38 17 11 8 +15404,15 16 17 11 13 +15629,15 55 53 9 16 17 62 10 7 8 +4494,1 6 64 16 36 37 38 17 63 7 8 +10563,5 6 12 65 67 47 117 16 17 11 8 +2685,1 6 84 88 57 9 16 17 11 8 +21501,15 55 12 11 56 7 4 +3985,1 6 84 88 57 9 16 17 11 13 +14970,5 6 49 47 48 48 32 7 8 +3150,5 6 73 74 54 54 7 8 +3151,5 6 73 74 54 54 7 4 +4131,1 6 12 57 58 56 11 8 +4250,15 12 16 17 11 13 +733,15 55 88 55 9 16 17 62 10 7 8 +21502,15 55 12 11 56 7 8 +734,15 55 88 55 9 16 17 62 10 7 4 +12608,15 57 12 39 36 16 21 77 78 22 79 4 +12844,15 42 43 17 3 4 +12845,15 42 43 17 3 8 +20513,15 86 55 49 50 13 +19202,15 55 71 36 37 17 11 8 +22051,15 57 9 16 117 118 72 11 8 +26817,1 6 86 53 12 16 17 120 7 4 +19203,15 55 71 36 37 17 11 13 +17436,5 6 34 35 27 28 +10934,1 6 88 9 16 61 16 36 16 17 37 35 11 8 +14971,5 6 49 47 48 48 32 7 4 +1306,5 6 64 16 42 16 17 37 52 7 4 +12992,5 6 12 11 14 7 4 +21701,1 6 9 10 58 87 56 7 8 +13994,5 6 12 11 14 7 8 +22773,1 6 88 9 16 36 39 36 16 17 10 7 4 +21169,15 55 12 55 88 57 58 89 58 66 56 7 8 +1307,5 6 64 16 42 16 17 37 52 7 8 +11748,15 55 12 55 88 57 58 89 58 66 56 7 4 +12452,1 6 105 36 16 17 37 35 7 4 +12837,1 6 57 57 57 88 71 72 7 4 +13687,5 6 53 12 96 16 21 77 78 22 79 4 +2150,5 6 51 36 37 19 58 11 8 +14448,70 16 36 16 61 16 17 43 32 93 7 8 +16841,5 6 57 53 12 49 50 13 +12458,1 6 12 36 37 17 10 7 8 +6277,15 53 12 16 17 11 8 +2951,5 6 34 36 37 10 93 7 4 +14449,70 16 36 16 61 16 17 43 32 93 7 4 +26606,5 6 34 36 37 10 93 7 8 +90,5 6 29 18 12 16 42 16 17 19 7 8 +2532,1 6 88 9 16 36 39 36 16 17 10 7 8 +89,5 6 29 18 12 16 42 16 17 19 7 4 +1217,5 6 53 90 16 17 37 50 54 7 8 +5713,5 45 21 22 17 37 68 7 4 +20483,15 105 16 61 16 17 91 7 4 +13137,5 6 53 90 16 17 37 50 54 7 4 +25710,15 55 53 92 12 36 37 38 11 13 +6365,5 45 21 22 17 37 68 7 8 +13358,5 6 53 12 34 36 37 91 7 4 +24901,5 6 12 55 56 56 11 56 7 4 +25709,15 55 53 92 12 36 37 38 11 8 +12249,1 6 12 65 9 16 17 43 72 7 4 +15845,1 6 12 65 9 16 17 43 72 7 8 +561,5 6 34 35 89 7 8 +562,5 6 34 35 89 7 4 +9769,1 6 84 57 86 87 13 +20482,15 105 16 61 16 17 91 7 8 +7847,1 6 9 36 16 17 10 7 4 +19592,1 6 57 12 16 36 37 38 17 37 32 7 4 +402,5 6 9 61 62 72 7 8 +17361,15 57 53 53 49 36 37 17 11 8 +19591,1 6 57 12 16 36 37 38 17 37 32 7 8 +1757,1 6 90 16 61 16 17 11 8 +18796,5 6 84 18 12 31 32 7 4 +9958,5 6 84 73 16 17 91 85 7 8 +3632,1 6 9 36 16 17 10 7 8 +15935,5 6 84 18 12 31 32 7 8 +18239,5 6 84 73 16 17 91 85 7 4 +12906,1 6 53 67 47 48 35 54 7 8 +14540,5 6 53 12 47 36 37 10 54 7 8 +14539,5 6 53 12 47 36 37 10 54 7 4 +11398,5 6 55 53 9 61 16 17 10 54 7 8 +10783,1 6 49 42 43 17 10 7 8 +15991,5 6 88 9 16 42 16 17 10 7 4 +10784,1 6 49 42 43 17 10 7 4 +20754,5 6 114 115 13 +401,5 6 9 61 62 72 7 4 +24978,15 31 36 37 17 37 52 7 8 +24212,1 6 105 106 89 13 +22413,1 6 9 39 36 16 36 37 38 17 37 35 7 8 +24977,15 31 36 37 17 37 52 7 4 +20608,5 6 67 47 36 37 17 37 68 58 7 4 +25521,5 6 65 49 107 108 50 7 4 +8906,1 6 12 16 39 36 16 17 10 7 4 +8907,1 6 12 16 39 36 16 17 10 7 8 +8827,1 6 53 67 47 48 68 54 7 4 +3216,5 6 57 55 53 9 16 17 11 13 +8826,1 6 53 67 47 48 68 54 7 8 +2960,5 6 53 18 12 16 17 10 54 54 7 8 +3215,5 6 57 55 53 9 16 17 11 8 +2959,5 6 53 18 12 16 17 10 54 54 7 4 +21831,1 6 64 16 36 37 38 37 115 72 54 7 8 +26086,1 6 12 65 9 16 17 43 72 11 8 +21836,1 6 64 16 36 37 38 37 115 72 54 7 4 +13227,5 6 34 107 107 36 37 19 13 +20083,1 6 55 55 53 31 36 37 17 10 7 8 +2412,15 53 53 16 17 54 54 7 4 +5925,15 42 43 17 11 13 +926,1 6 84 9 10 13 +12656,1 6 55 55 53 31 36 37 17 10 7 4 +7983,1 6 88 89 27 28 +26219,15 57 55 86 87 56 7 4 +6060,5 6 31 47 48 52 7 4 +6970,5 6 55 53 53 54 7 4 +20395,5 6 84 34 35 85 85 54 7 4 +26218,15 57 55 86 87 56 7 8 +14446,5 6 31 47 48 52 7 8 +3750,15 53 53 16 17 54 54 7 8 +19033,1 6 84 55 9 16 36 16 17 11 8 +12141,1 6 53 71 47 36 37 17 10 7 8 +10006,5 6 31 117 16 17 37 35 7 8 +17584,5 6 57 55 9 61 62 68 7 8 +12172,5 6 64 36 16 17 37 108 35 54 7 4 +6926,1 6 53 16 16 17 62 10 7 8 +4061,5 6 31 117 16 17 37 35 7 4 +6686,1 6 53 16 16 17 62 10 7 4 +15058,5 6 49 36 37 17 37 35 7 4 +21141,1 6 18 12 16 17 37 52 52 7 8 +13263,1 6 53 71 47 36 37 17 10 7 4 +17809,1 6 49 36 16 17 11 8 +19322,15 65 57 9 16 17 17 +5924,15 42 43 17 11 8 +20051,5 6 88 12 39 36 16 17 19 13 +22186,1 6 26 57 9 16 42 16 17 11 8 +5581,1 6 84 9 10 7 4 +396,1 6 12 71 36 37 17 11 13 +2767,15 12 39 36 16 17 19 13 +12719,1 6 29 9 10 13 +2792,5 6 49 36 37 17 37 35 7 8 +758,1 6 12 88 12 16 17 19 13 +23998,15 57 9 16 36 16 17 37 52 54 7 8 +21171,15 12 16 36 16 117 118 115 32 7 4 +15392,15 31 9 42 43 17 63 7 8 +19688,5 6 53 9 16 17 37 50 7 4 +14907,1 6 29 9 61 62 17 37 35 30 7 8 +19509,1 6 12 57 58 89 13 +23999,15 57 9 16 36 16 17 37 52 54 7 4 +16488,15 12 16 36 16 117 118 115 32 7 8 +12701,5 6 53 9 16 17 37 50 7 8 +395,1 6 12 71 36 37 17 11 8 +687,1 6 84 9 10 7 8 +11312,15 12 36 37 38 37 52 68 7 4 +20022,15 12 36 37 38 37 52 68 7 8 +3704,15 55 65 88 57 9 16 61 16 17 11 8 +15391,15 31 9 42 43 17 63 7 4 +3564,5 6 9 39 36 16 61 16 17 11 8 +15348,1 6 12 88 89 66 11 56 7 4 +856,5 6 9 10 89 33 7 4 +8488,1 6 12 9 31 32 7 4 +8489,1 6 12 9 31 32 7 8 +8457,1 6 64 61 62 17 43 35 54 7 4 +16322,15 53 9 9 16 17 17 10 7 8 +11657,15 44 49 107 42 43 17 37 52 54 7 4 +9127,5 6 53 9 10 27 54 7 4 +4502,15 67 47 107 36 37 17 63 7 8 +8456,1 6 64 61 62 17 43 35 54 7 8 +4556,1 6 12 57 58 13 +11658,15 44 49 107 42 43 17 37 52 54 7 8 +24581,5 6 53 9 10 27 54 7 8 +7770,15 31 47 48 32 7 4 +7769,15 31 47 48 32 7 8 +1533,1 6 73 74 13 +3705,15 55 65 88 57 9 16 61 16 17 11 13 +3694,1 6 88 89 33 13 +11517,15 12 36 16 17 37 48 68 7 8 +26462,5 6 90 36 16 17 11 8 +3905,15 71 107 108 68 66 11 8 +21997,15 9 39 36 16 17 10 7 4 +4503,15 67 47 107 36 37 17 63 7 4 +11563,15 55 86 34 35 13 +21998,15 9 39 36 16 17 10 7 8 +11518,15 12 36 16 17 37 48 68 7 4 +5760,5 6 49 36 37 17 62 10 7 8 +23148,1 6 55 53 9 16 17 10 7 4 +16321,15 53 9 9 16 17 17 10 7 4 +17107,5 6 49 36 37 17 62 10 7 4 +23147,1 6 55 53 9 16 17 10 7 8 +15899,1 6 34 47 48 108 35 7 4 +13078,1 6 34 47 48 108 35 7 8 +23017,1 6 57 53 9 10 33 13 +8537,15 55 53 9 16 17 10 54 7 8 +24512,5 6 71 107 36 16 17 37 72 56 7 4 +8536,15 55 53 9 16 17 10 54 7 4 +21683,5 6 96 36 16 17 19 11 7 4 +12106,15 12 16 36 39 36 39 36 16 17 19 13 +23642,5 6 67 109 110 11 8 +10822,1 6 12 9 16 17 37 48 35 7 8 +10823,1 6 12 9 16 17 37 48 35 7 4 +19556,5 6 55 9 36 37 38 10 7 4 +24609,5 6 71 47 36 37 17 118 17 10 7 4 +25612,5 6 64 61 16 17 62 10 7 4 +21912,15 12 16 36 37 38 37 35 7 4 +4354,5 6 64 53 9 16 36 37 38 17 10 54 7 8 +3495,5 6 71 47 36 37 17 118 17 10 7 8 +19555,5 6 55 9 36 37 38 10 7 8 +21281,1 6 34 36 37 17 37 17 35 7 4 +11761,1 6 90 16 17 37 50 7 4 +21911,15 12 16 36 37 38 37 35 7 8 +17994,15 105 16 42 16 17 19 7 4 +25528,5 6 55 56 89 66 58 7 4 +11160,1 12 16 36 16 17 37 68 89 7 4 +17995,15 105 16 42 16 17 19 7 8 +4892,15 31 47 107 36 37 17 10 7 8 +25843,1 6 65 9 16 36 16 117 118 32 7 4 +4891,15 31 47 107 36 37 17 10 7 4 +13154,15 9 16 61 16 17 62 10 7 4 +8859,5 2 16 17 43 32 11 13 +9113,15 55 12 88 55 56 89 13 +24923,5 6 53 18 9 36 16 17 91 7 8 +13153,15 9 16 61 16 17 62 10 7 8 +7383,5 2 16 17 43 32 11 8 +20641,1 6 36 37 17 10 7 4 +17121,1 2 16 17 37 48 32 7 8 +22378,1 6 57 92 34 36 37 17 43 32 93 58 7 8 +16580,1 6 57 92 34 36 37 17 43 32 93 58 7 4 +19957,5 6 34 36 37 17 10 93 7 8 +20640,1 6 36 37 17 10 7 8 +25652,5 6 57 57 9 16 17 37 35 7 4 +19956,5 6 34 36 37 17 10 93 7 4 +16111,1 6 57 49 36 37 10 54 7 4 +22646,1 6 57 49 36 37 10 54 7 8 +17120,1 2 16 17 37 48 32 7 4 +12602,1 6 92 57 58 56 93 7 4 +2442,5 6 51 52 27 28 +17989,1 6 92 57 58 56 93 7 8 +8040,1 6 47 48 123 7 4 +15122,1 6 57 12 36 61 16 17 19 13 +8039,1 6 47 48 123 7 8 +12190,15 12 39 36 16 17 11 8 +5796,15 88 96 36 16 17 19 11 56 7 4 +12663,15 12 39 36 16 17 11 13 +4725,15 88 96 36 16 17 19 11 56 7 8 +10217,5 6 18 12 16 17 62 52 7 4 +18867,1 12 11 52 7 4 +10216,5 6 18 12 16 17 62 52 7 8 +18868,1 12 11 52 7 8 +1516,1 6 71 36 37 17 10 93 58 7 4 +12592,1 6 55 57 51 36 37 11 13 +23385,5 6 57 92 49 36 37 10 7 4 +16639,15 31 42 43 17 10 93 7 4 +12591,1 6 55 57 51 36 37 11 8 +23384,5 6 57 92 49 36 37 10 7 8 +4840,15 12 16 36 37 38 37 35 11 8 +24989,5 6 18 12 16 42 16 17 10 7 4 +15215,1 6 12 16 17 19 58 7 8 +1517,1 6 71 36 37 17 10 93 58 7 8 +20944,5 6 18 12 16 42 16 17 10 7 8 +15214,1 6 12 16 17 19 58 7 4 +569,15 34 36 37 63 7 4 +16638,15 31 42 43 17 10 93 7 8 +23272,5 6 49 109 110 54 7 8 +11063,1 6 57 53 9 10 27 28 +570,15 34 36 37 63 7 8 +15520,15 88 57 58 11 7 4 +997,15 55 53 34 35 13 +2949,5 6 92 9 10 13 +26240,15 109 88 57 58 110 50 7 4 +8364,15 88 51 36 37 17 11 13 +26241,15 109 88 57 58 110 50 7 8 +8363,15 88 51 36 37 17 11 8 +7474,15 57 57 26 9 16 17 11 8 +9656,1 6 88 89 23 24 +13195,15 9 16 17 43 48 32 93 7 4 +26212,5 2 16 17 43 32 7 8 +13194,15 9 16 17 43 48 32 93 7 8 +14934,1 6 84 57 88 26 65 66 13 +15016,5 2 16 17 43 32 7 4 +15112,5 6 55 53 9 61 16 17 62 10 7 4 +16913,5 6 71 72 58 56 7 4 +11845,5 6 84 53 34 35 13 +7117,5 6 64 16 42 16 17 10 54 85 54 7 4 +16968,15 71 36 37 17 19 58 11 56 7 8 +5271,5 6 51 42 43 17 37 50 54 7 4 +7118,5 6 64 16 42 16 17 10 54 85 54 7 8 +17385,15 71 36 37 17 19 58 11 56 7 4 +5270,5 6 51 42 43 17 37 50 54 7 8 +21272,15 34 107 36 37 38 17 3 8 +21699,5 6 86 57 58 13 +7077,5 6 84 51 52 13 +1496,1 6 57 57 57 65 66 13 +5417,95 36 37 38 17 10 7 8 +7475,15 57 57 26 9 16 17 11 13 +21792,15 34 107 36 37 38 17 3 4 +6780,5 6 64 16 42 16 17 11 13 +1138,5 6 53 57 58 13 +9085,1 6 9 16 39 36 39 36 16 17 19 7 4 +24635,5 6 34 47 48 32 10 7 4 +25482,1 6 57 9 61 62 17 62 10 7 4 +5416,95 36 37 38 17 10 7 4 +15915,5 6 84 55 9 16 17 10 85 54 7 4 +6779,5 6 64 16 42 16 17 11 8 +1997,15 12 16 99 16 42 16 17 19 13 +15176,5 6 92 9 10 93 58 7 8 +15916,5 6 84 55 9 16 17 10 85 54 7 8 +6185,15 55 67 42 43 17 43 68 7 8 +21201,5 6 53 12 16 36 16 61 16 17 19 13 +4947,5 6 84 12 11 54 7 8 +6184,15 55 67 42 43 17 43 68 7 4 +12173,5 6 64 36 16 17 37 108 35 54 7 8 +516,5 6 18 12 11 14 7 8 +5808,15 86 12 16 36 16 21 77 78 22 8 +4964,5 6 84 12 11 54 7 4 +13925,1 6 64 16 42 16 17 43 32 93 58 7 4 +5217,15 12 36 16 17 10 7 4 +13926,1 6 64 16 42 16 17 43 32 93 58 7 8 +5218,15 12 36 16 17 10 7 8 +14803,1 6 65 51 52 13 +6612,1 6 57 92 12 16 17 11 13 +17430,1 6 55 88 57 9 16 36 16 17 11 8 +6036,5 6 51 52 58 66 7 8 +18007,1 6 88 90 16 61 16 17 11 8 +6015,5 6 51 52 58 66 7 4 +6611,1 6 57 92 12 16 17 11 8 +19391,15 53 31 47 107 36 37 94 +25151,1 6 84 51 47 36 37 17 10 85 54 7 8 +281,5 6 18 12 11 14 7 4 +9941,1 6 84 51 47 36 37 17 10 85 54 7 4 +4709,1 6 67 47 48 48 50 58 7 4 +23578,15 96 36 16 17 37 48 50 7 8 +4710,1 6 67 47 48 48 50 58 7 8 +23579,15 96 36 16 17 37 48 50 7 4 +2846,15 31 42 43 17 10 7 4 +6614,15 53 12 16 17 11 93 7 8 +17629,15 31 42 43 17 37 108 48 72 54 7 4 +2845,15 31 42 43 17 10 7 8 +24918,5 6 92 51 36 37 10 7 8 +4670,5 6 12 34 35 13 +3307,15 57 58 13 +17630,15 31 42 43 17 37 108 48 72 54 7 8 +21770,1 6 65 12 71 72 7 4 +17775,1 6 88 89 11 13 +6279,5 6 41 88 89 13 +23241,1 6 65 12 71 72 7 8 +19837,5 6 49 50 58 54 7 4 +13225,1 6 67 36 37 19 58 11 8 +25045,1 6 9 61 62 17 63 7 4 +16354,5 6 71 36 37 17 10 93 58 7 8 +24919,5 6 92 51 36 37 10 7 4 +1660,1 6 88 89 11 8 +3487,5 6 53 57 58 54 7 8 +1515,5 6 71 36 37 17 10 93 58 7 4 +8707,5 6 31 61 62 17 37 52 7 8 +1056,5 6 53 57 58 54 7 4 +3824,1 6 12 11 54 7 8 +11430,1 6 34 36 37 17 37 68 7 8 +9500,1 6 53 18 12 16 17 91 54 7 4 +11078,1 6 34 36 37 17 37 68 7 4 +25770,1 6 53 18 12 16 17 91 54 7 8 +19836,5 6 49 50 58 54 7 8 +14724,5 6 73 16 36 37 38 37 35 54 7 4 +14725,5 6 73 16 36 37 38 37 35 54 7 8 +3333,5 6 53 67 68 7 8 +10781,1 6 88 55 67 61 62 63 7 8 +3339,5 6 53 67 68 7 4 +8337,5 6 55 55 53 9 16 61 16 17 11 8 +11649,1 6 64 61 62 17 37 108 52 54 7 8 +3372,1 6 12 11 54 7 4 +2091,1 81 82 111 +25100,1 6 55 49 36 37 17 10 7 8 +23292,1 6 31 42 43 17 37 108 115 72 54 7 4 +25188,5 6 12 55 56 58 11 8 +8724,1 6 88 55 67 61 62 63 7 4 +85,5 6 29 18 12 16 17 43 32 30 7 4 +19842,1 6 53 57 57 49 107 36 37 17 10 7 8 +19843,1 6 53 57 57 49 107 36 37 17 10 7 4 +21732,5 6 29 18 12 16 17 43 32 30 7 8 +18575,15 88 57 57 9 16 36 37 38 17 10 7 8 +22703,1 6 88 55 56 89 13 +24403,15 12 36 16 17 37 108 50 7 4 +22883,15 9 16 61 16 17 37 35 7 4 +18576,15 88 57 57 9 16 36 37 38 17 10 7 4 +7615,5 6 113 61 62 17 11 13 +23942,5 6 71 36 16 61 16 17 11 8 +16680,1 6 57 9 36 16 61 16 17 11 13 +658,5 6 53 9 16 17 37 48 72 7 8 +659,5 6 53 9 16 17 37 48 72 7 4 +7080,1 6 57 9 36 16 61 16 17 11 8 +22882,15 9 16 61 16 17 37 35 7 8 +6241,15 55 12 11 7 8 +8706,5 6 31 61 62 17 37 52 7 4 +20551,5 6 84 67 107 107 107 36 37 17 11 8 +20552,5 6 84 67 107 107 107 36 37 17 11 13 +6242,15 55 12 11 7 4 +17923,1 6 57 9 16 17 75 7 4 +19446,5 6 53 49 50 11 7 8 +2137,5 6 29 42 43 10 7 8 +1109,5 6 88 55 51 61 62 63 7 8 +25249,5 6 34 36 37 17 11 7 4 +25458,5 6 29 42 43 10 7 4 +13594,5 6 88 55 51 61 62 63 7 4 +2832,15 55 57 71 47 48 68 7 8 +17949,5 6 64 61 62 17 37 48 52 54 7 4 +11098,15 65 71 47 48 68 7 4 +2833,15 55 57 71 47 48 68 7 4 +11099,15 65 71 47 48 68 7 8 +18568,5 6 29 12 16 36 16 17 69 +22041,15 57 53 12 51 61 62 63 7 8 +8060,1 6 76 36 16 17 37 108 123 7 8 +22042,15 57 53 12 51 61 62 63 7 4 +24880,15 65 9 16 42 16 61 16 17 10 7 8 +24879,15 65 9 16 42 16 61 16 17 10 7 4 +2283,1 6 49 114 36 37 17 10 7 8 +10670,5 6 9 16 17 37 108 35 7 4 +17252,1 6 12 65 71 36 37 11 8 +7378,5 6 9 16 17 37 108 35 7 8 +18912,5 6 53 57 57 49 50 7 4 +4451,1 6 53 9 36 16 17 37 50 54 7 8 +9262,1 6 53 9 36 16 17 37 50 54 7 4 +16226,5 6 57 53 9 61 16 17 10 54 7 8 +3206,5 6 12 55 56 58 7 4 +11714,5 6 55 55 53 9 16 61 16 17 19 13 +10620,5 6 64 16 42 16 17 19 13 +6789,1 6 65 34 35 7 4 +2753,1 6 55 71 47 48 68 56 89 7 8 +1143,5 6 53 57 31 32 54 7 4 +6790,1 6 65 34 35 7 8 +26404,1 6 64 61 62 17 37 68 13 +2282,1 6 49 114 36 37 17 10 7 4 +16740,1 6 55 12 88 89 89 7 8 +26204,5 6 53 12 16 36 16 17 37 35 54 7 8 +3205,5 6 12 55 56 58 7 8 +26425,1 6 55 12 88 89 89 7 4 +9182,1 6 55 12 88 57 58 11 8 +14246,5 6 88 9 16 17 91 54 7 8 +23281,1 6 9 16 17 43 52 56 7 4 +8067,5 6 109 110 58 7 8 +12646,1 6 64 61 62 17 91 54 54 7 4 +15417,15 12 16 36 37 38 37 35 11 54 7 4 +4841,15 12 16 36 37 38 37 35 11 54 7 8 +5290,1 6 64 61 62 17 91 54 54 7 8 +11557,5 6 64 61 62 17 37 48 52 54 7 8 +14247,5 6 88 9 16 17 91 54 7 4 +25983,5 6 57 53 9 61 16 17 10 54 7 4 +21485,15 42 43 17 37 35 93 58 7 8 +21486,15 42 43 17 37 35 93 58 7 4 +22709,1 6 31 36 37 37 54 54 7 8 +24800,5 6 34 36 37 38 10 30 7 4 +8061,5 6 76 36 16 17 37 108 123 7 8 +7633,15 86 34 36 37 10 54 7 4 +17975,1 6 55 57 57 86 87 7 8 +8062,5 6 76 36 16 17 37 108 123 7 4 +22809,15 86 34 36 37 10 54 7 8 +24799,5 6 34 36 37 38 10 30 7 8 +3573,5 6 53 9 31 32 33 13 +9058,15 53 86 34 47 36 37 63 7 8 +26491,1 6 55 57 57 86 87 7 4 +11760,1 6 90 16 17 37 50 7 8 +7477,5 6 12 9 16 61 16 17 10 7 8 +9397,15 105 42 16 17 19 7 4 +22224,15 9 16 61 16 17 10 54 7 4 +7478,5 6 12 9 16 61 16 17 10 7 4 +9398,15 105 42 16 17 19 7 8 +22223,15 9 16 61 16 17 10 54 7 8 +19368,5 6 9 9 9 9 9 9 16 17 10 7 4 +12574,1 6 51 36 37 38 37 68 7 8 +19335,1 6 71 36 37 17 3 8 +23543,5 6 9 9 9 9 9 9 16 17 10 7 8 +7837,15 34 107 108 35 93 7 4 +15276,1 6 71 36 37 17 3 4 +7838,15 34 107 108 35 93 7 8 +20916,1 6 64 61 62 17 37 48 72 11 7 4 +15841,1 6 53 9 36 37 38 10 54 54 7 4 +15701,1 6 57 53 12 11 54 7 8 +17710,1 6 57 53 12 11 54 7 4 +21589,15 65 88 9 16 17 37 72 7 4 +2444,1 6 88 26 51 36 37 17 11 8 +21590,15 65 88 9 16 17 37 72 7 8 +5219,5 6 55 9 16 61 16 17 19 13 +17818,1 6 49 16 17 50 58 7 4 +22405,15 34 107 36 37 38 19 56 89 13 +4019,5 6 53 34 36 16 61 16 17 10 54 7 4 +17819,1 6 49 16 17 50 58 7 8 +23468,5 6 86 12 16 36 37 38 17 19 +11058,5 6 113 61 62 17 3 4 +4641,1 6 65 9 16 17 37 32 7 4 +2099,5 6 113 61 62 17 3 8 +19404,1 6 53 57 9 16 17 37 108 35 54 7 4 +19469,5 6 124 36 37 17 63 7 8 +10320,70 36 37 38 91 7 8 +10089,5 6 57 67 61 62 63 7 8 +10319,70 36 37 38 91 7 4 +5169,15 53 86 34 47 36 37 63 7 4 +20554,15 9 16 36 16 17 37 72 56 7 8 +16631,5 6 124 36 37 17 63 7 4 +18791,15 9 16 36 16 17 37 72 56 7 4 +2453,5 6 18 12 16 17 37 115 50 89 7 8 +3902,1 6 12 65 67 68 33 13 +22449,1 6 90 36 16 17 37 72 7 8 +8560,5 6 57 67 61 62 63 7 4 +17540,1 6 53 9 36 37 38 10 54 54 7 8 +7469,15 55 88 57 9 16 16 17 10 7 4 +5292,5 6 64 61 62 17 91 54 54 7 4 +15989,15 55 88 57 9 16 16 17 10 7 8 +5291,5 6 64 61 62 17 91 54 54 7 8 +878,1 6 88 89 7 8 +9792,5 6 84 57 65 9 16 17 37 72 58 7 4 +26216,5 6 65 34 35 56 7 8 +134,5 6 49 50 13 +17180,15 31 42 43 17 37 35 93 58 7 8 +21140,1 6 18 12 16 17 37 52 13 +17181,15 31 42 43 17 37 35 93 58 7 4 +879,1 6 88 89 7 4 +13714,5 6 84 57 65 9 16 17 37 72 58 7 8 +26215,5 6 65 34 35 56 7 4 +25616,5 6 12 26 65 66 54 7 4 +12410,5 6 12 26 65 66 54 7 8 +24132,1 6 18 12 16 17 43 52 89 13 +7614,5 6 113 61 62 17 11 8 +18138,15 31 107 108 32 54 7 8 +19888,1 6 65 57 58 56 7 8 +18139,15 31 107 108 32 54 7 4 +25563,1 6 53 9 16 36 16 17 37 52 85 54 7 4 +19876,1 6 65 57 58 56 7 4 +5274,5 6 67 42 43 17 43 52 7 4 +11400,15 55 53 9 61 16 17 10 54 7 4 +11399,15 55 53 9 61 16 17 10 54 7 8 +5275,5 6 67 42 43 17 43 52 7 8 +11648,1 6 64 61 62 17 37 108 52 54 7 4 +20111,15 12 26 9 16 17 62 10 7 4 +22577,1 6 84 12 51 52 13 +4633,1 6 90 91 89 7 4 +20110,15 12 26 9 16 17 62 10 7 8 +4632,1 6 90 91 89 7 8 +7549,1 6 67 51 16 17 10 7 8 +18363,1 6 57 53 9 10 54 54 7 8 +2778,5 6 55 49 36 37 17 11 8 +7548,1 6 67 51 16 17 10 7 4 +10985,1 6 57 53 9 10 54 54 7 4 +2681,1 6 84 18 12 16 17 10 7 8 +2680,1 6 84 18 12 16 17 10 7 4 +17794,5 6 55 31 36 37 11 8 +8798,1 6 64 36 16 17 37 48 35 87 7 8 +22094,1 6 55 53 53 54 13 +6969,5 6 55 53 53 54 7 8 +7684,15 9 16 36 16 17 37 48 50 7 4 +11830,15 57 34 36 16 17 91 7 8 +26014,5 6 90 16 39 36 16 17 98 +24194,15 96 16 36 37 38 17 19 58 11 56 7 8 +7683,15 9 16 36 16 17 37 48 50 7 8 +11082,15 12 39 36 16 36 16 42 16 17 37 35 7 8 +3181,15 96 16 36 37 38 17 19 58 11 56 7 4 +15202,1 6 55 9 16 17 11 7 4 +12545,5 6 53 9 16 61 16 61 16 17 11 13 +365,15 71 47 48 68 54 7 4 +16939,5 6 9 61 62 48 32 7 4 +364,15 71 47 48 68 54 7 8 +20020,5 6 71 36 16 17 11 8 +25034,15 57 53 12 49 36 37 17 3 8 +26542,1 6 64 16 36 16 61 16 17 63 7 8 +16676,5 6 53 26 65 9 16 17 37 50 7 8 +10994,5 6 9 61 62 48 32 7 8 +18391,5 6 53 12 16 61 16 17 19 54 7 4 +26107,5 6 12 16 17 37 48 32 11 7 4 +2858,5 6 51 42 43 17 10 7 8 +670,5 6 53 84 85 7 8 +24261,5 6 9 16 36 16 117 118 32 7 8 +2859,5 6 51 42 43 17 10 7 4 +12544,5 6 53 9 16 61 16 61 16 17 11 8 +18392,5 6 53 12 16 61 16 17 19 54 7 8 +686,5 6 53 84 85 7 4 +6832,1 6 57 9 16 36 37 38 10 7 4 +2843,15 57 9 16 17 10 54 7 4 +10682,5 6 65 88 9 16 17 11 8 +2842,15 57 9 16 17 10 54 7 8 +10202,15 42 43 17 43 13 +21713,1 6 34 53 12 16 16 17 19 13 +3725,1 6 53 90 16 36 16 61 16 17 19 7 4 +25374,5 6 12 16 17 37 48 32 11 7 8 +3726,1 6 53 90 16 36 16 61 16 17 19 7 8 +17381,5 6 53 18 12 16 17 37 108 48 68 13 +10158,1 6 71 47 48 68 54 7 8 +15954,5 6 67 107 108 108 68 58 7 8 +17411,1 6 9 9 16 17 10 93 7 8 +3340,1 6 71 47 48 68 54 7 4 +14610,1 6 55 65 86 87 13 +25082,1 6 26 9 16 17 63 7 8 +25081,1 6 26 9 16 17 63 7 4 +15979,15 67 47 48 52 11 8 +6172,1 6 55 67 42 43 17 11 8 +10683,5 6 65 88 9 16 17 11 13 +19329,1 6 88 55 56 7 8 +24685,5 6 65 9 16 17 98 +18301,5 6 90 16 36 16 61 16 17 37 35 7 4 +17887,15 53 51 36 37 11 8 +191,1 6 67 61 62 63 7 4 +6545,1 6 88 55 56 7 4 +9570,1 6 84 55 56 85 54 7 8 +16517,5 6 67 107 108 108 68 58 7 4 +18302,5 6 90 16 36 16 61 16 17 37 35 7 8 +6622,5 6 55 56 54 7 8 +9064,5 6 55 56 54 7 4 +16223,1 6 88 12 16 17 19 13 +4248,15 42 43 17 10 7 4 +3996,15 57 53 84 85 7 8 +4247,15 42 43 17 10 7 8 +9569,1 6 84 55 56 85 54 7 4 +3540,1 6 49 61 62 75 7 4 +3997,15 57 53 84 85 7 4 +18062,15 88 57 9 16 17 37 52 7 4 +5335,1 6 55 90 16 17 11 8 +14093,1 6 55 88 88 88 9 16 17 10 7 8 +14111,5 6 18 12 16 17 118 17 91 7 8 +18061,15 88 57 9 16 17 37 52 7 8 +14092,1 6 55 88 88 88 9 16 17 10 7 4 +22937,1 6 53 31 42 43 17 43 50 7 4 +26066,1 6 84 49 50 85 85 54 7 8 +14112,5 6 18 12 16 17 118 17 91 7 4 +24684,5 6 65 9 16 17 69 +9890,5 6 12 65 66 27 11 8 +22771,5 6 9 36 37 38 37 48 50 7 4 +10828,96 16 36 16 61 16 17 19 +20468,1 12 11 110 72 89 66 7 8 +24375,5 6 53 18 12 16 61 16 117 118 52 54 7 4 +2524,5 6 9 36 37 38 37 48 50 7 8 +19145,1 6 12 65 57 9 16 17 11 13 +192,1 6 67 61 62 63 7 8 +24376,5 6 53 18 12 16 61 16 117 118 52 54 7 8 +13249,1 6 65 12 11 87 7 8 +13248,1 6 65 12 11 87 7 4 +19144,1 6 12 65 57 9 16 17 11 8 +10689,5 6 9 16 17 37 48 50 7 4 +6583,5 6 65 9 16 42 16 17 19 7 8 +11121,5 6 67 68 66 58 89 13 +11270,5 6 65 9 16 42 16 17 19 7 4 +23217,1 6 53 71 114 115 68 54 7 8 +1988,70 16 17 11 8 +19609,5 6 84 55 56 85 93 27 28 +21824,1 6 53 71 114 115 68 54 7 4 +651,1 6 67 47 36 37 17 63 7 8 +22170,70 16 17 11 13 +5471,5 6 88 57 9 16 17 69 +21614,5 6 88 55 65 66 7 4 +12503,1 6 55 31 36 37 17 11 8 +14848,1 6 67 47 36 37 17 63 7 4 +19686,5 6 57 53 9 16 61 16 17 75 7 4 +23981,5 6 55 53 57 9 16 17 10 7 8 +6364,15 53 12 96 36 16 17 19 58 11 54 7 8 +3327,5 6 55 53 57 9 16 17 10 7 4 +13548,5 6 53 51 36 16 61 16 17 37 52 11 8 +19045,1 6 119 16 42 16 17 11 13 +19044,1 6 119 16 42 16 17 11 8 +7279,5 6 57 53 9 16 61 16 17 75 7 8 +10690,5 6 9 16 17 37 48 50 7 8 +17176,1 6 57 92 12 36 16 42 16 17 37 32 93 58 7 8 +13221,15 34 107 36 37 38 19 58 89 13 +17175,1 6 57 92 12 36 16 42 16 17 37 32 93 58 7 4 +12988,5 6 92 9 10 56 7 4 +26443,5 2 16 17 43 17 10 7 8 +12987,5 6 92 9 10 56 7 8 +25598,1 12 36 16 17 37 68 7 8 +6188,1 6 12 12 16 36 37 38 17 +10684,1 12 36 16 17 37 68 7 4 +12490,1 6 57 9 16 36 37 38 10 7 8 +22912,15 90 61 62 17 3 8 +22911,15 90 61 62 17 3 4 +17434,15 55 53 34 36 37 11 8 +18928,15 31 36 37 17 62 93 7 4 +23204,1 6 57 9 16 36 16 17 37 48 50 7 4 +18927,15 31 36 37 17 62 93 7 8 +23205,1 6 57 9 16 36 16 17 37 48 50 7 8 +8436,15 9 16 17 43 17 10 7 4 +20728,1 6 90 16 17 120 7 4 +6777,15 9 16 17 43 17 10 7 8 +3598,5 6 67 47 48 68 7 4 +24033,1 6 90 16 17 120 7 8 +5282,5 6 88 57 58 66 7 4 +19730,1 6 73 39 36 16 17 63 7 4 +24274,5 6 18 12 16 17 37 35 87 56 7 8 +768,5 6 88 57 58 66 7 8 +23153,5 6 18 12 16 17 37 35 87 56 7 4 +25271,5 6 92 12 16 21 77 78 22 8 +15894,5 6 67 51 36 37 17 3 8 +18447,1 6 57 57 96 36 37 38 19 33 13 +3571,15 44 31 42 43 17 63 7 8 +15895,5 6 67 51 36 37 17 3 4 +20082,1 6 51 52 56 66 7 4 +3599,5 6 67 47 48 68 7 8 +7301,15 34 36 37 63 54 7 8 +19075,5 6 9 10 50 11 7 8 +7300,15 34 36 37 63 54 7 4 +1760,1 6 64 61 62 17 106 7 8 +20081,1 6 51 52 56 66 7 8 +1601,1 6 64 61 62 17 106 7 4 +3572,15 44 31 42 43 17 63 7 4 +8737,15 44 51 52 56 7 8 +15748,1 6 76 61 62 37 48 35 87 7 4 +3251,15 57 9 16 17 37 35 7 8 +8736,15 44 51 52 56 7 4 +3252,15 57 9 16 17 37 35 7 4 +14233,5 6 12 16 17 75 7 8 +18328,15 9 16 17 43 48 72 7 4 +18329,15 9 16 17 43 48 72 7 8 +22324,5 6 12 16 61 16 61 16 17 10 7 8 +21613,5 6 88 55 65 66 7 8 +22323,5 6 12 16 61 16 61 16 17 10 7 4 +4510,5 6 31 42 43 17 10 7 8 +22416,5 6 53 9 16 17 43 32 54 7 8 +16790,15 86 34 42 43 17 11 8 +8294,1 6 55 12 88 57 58 7 8 +14234,5 6 12 16 17 75 7 4 +21369,1 6 67 47 61 62 63 7 4 +1322,5 6 31 42 43 17 10 7 4 +7269,5 6 53 9 16 17 43 32 54 7 4 +3497,15 71 47 36 37 17 118 17 10 7 4 +9550,5 6 76 16 42 16 17 37 72 7 8 +25883,5 6 12 16 39 36 16 17 10 7 8 +3496,15 71 47 36 37 17 118 17 10 7 8 +23036,1 6 53 9 39 36 16 17 37 72 7 8 +8905,5 6 12 16 39 36 16 17 10 7 4 +13480,5 6 29 86 61 62 10 7 8 +14670,5 6 76 16 42 16 17 37 72 7 4 +17760,15 55 9 16 17 37 48 72 7 8 +7629,15 12 36 16 17 37 32 7 8 +17761,15 55 9 16 17 37 48 72 7 4 +25782,5 6 67 47 48 68 11 8 +26810,15 55 53 9 16 17 37 32 7 8 +21492,1 6 53 18 12 16 61 61 16 17 10 7 8 +14281,15 34 36 37 17 37 72 54 7 4 +4272,1 6 84 12 11 13 +3690,15 55 9 16 39 36 16 17 10 7 8 +9586,15 67 107 36 16 17 19 13 +22402,5 6 55 12 55 55 88 55 56 11 8 +3689,15 55 9 16 39 36 16 17 10 7 4 +14280,15 34 36 37 17 37 72 54 7 8 +10699,5 6 55 12 55 109 110 13 +11415,5 6 64 16 42 16 17 43 13 +12095,1 6 49 61 62 75 7 8 +22904,15 55 56 11 7 8 +10222,1 6 9 36 37 38 37 50 54 7 4 +16880,5 6 53 90 61 16 17 37 50 7 8 +3322,5 6 88 9 39 36 16 17 10 7 8 +21493,1 6 53 18 12 16 61 61 16 17 10 7 4 +20480,1 6 55 56 27 7 8 +13716,5 6 88 88 57 9 16 42 16 17 37 35 7 4 +12577,1 6 55 56 27 7 4 +26024,5 6 84 9 10 66 27 58 89 58 85 7 8 +13717,5 6 88 88 57 9 16 42 16 17 37 35 7 8 +9426,5 6 57 9 36 37 38 37 52 7 8 +20761,5 6 129 12 16 17 11 8 +16072,1 6 92 31 42 43 17 37 32 93 7 8 +12121,1 12 36 16 42 16 17 19 13 +8226,5 6 57 92 9 16 17 10 7 4 +2527,15 51 36 37 10 7 4 +2528,15 51 36 37 10 7 8 +18203,5 6 53 31 47 42 43 17 63 7 8 +1010,15 9 16 17 43 32 10 54 7 8 +10300,5 6 53 67 47 107 36 37 17 10 7 8 +22825,1 6 88 9 16 61 16 17 10 7 8 +15635,1 6 51 61 62 17 37 32 54 7 4 +17574,1 2 16 17 37 48 35 7 4 +1011,15 9 16 17 43 32 10 54 7 4 +22679,5 6 53 67 47 107 36 37 17 10 7 4 +22826,1 6 88 9 16 61 16 17 10 7 4 +4298,15 57 9 16 17 62 10 7 4 +11693,15 90 61 62 17 11 8 +4299,15 57 9 16 17 62 10 7 8 +3665,15 55 12 11 11 8 +15636,1 6 51 61 62 17 37 32 54 7 8 +3294,1 12 16 39 36 16 36 16 17 37 50 7 4 +11233,15 88 9 36 37 38 10 7 8 +18688,15 71 36 37 17 37 35 7 4 +18978,1 6 34 35 56 89 13 +11232,15 88 9 36 37 38 10 7 4 +16156,1 12 16 39 36 16 36 16 17 37 50 7 8 +18689,15 71 36 37 17 37 35 7 8 +22950,1 6 53 12 124 36 37 17 11 8 +16844,15 57 53 12 49 36 37 17 11 8 +2368,1 6 57 9 16 36 37 38 17 37 32 7 4 +6070,1 6 71 36 37 19 33 13 +26630,5 6 92 57 9 16 17 10 7 8 +25876,1 6 12 12 39 36 16 36 16 17 63 7 4 +11103,5 6 88 57 34 36 37 17 11 8 +25944,1 6 53 12 9 16 17 10 7 8 +26438,5 6 12 9 16 17 43 17 10 7 8 +9069,1 6 64 61 62 17 37 48 32 7 4 +8870,1 6 53 67 47 36 37 63 54 7 4 +12215,1 6 53 67 47 36 37 63 54 7 8 +12716,5 6 29 51 52 13 +23719,5 6 73 74 89 11 56 7 8 +2787,5 6 51 36 37 17 37 35 7 8 +14975,5 6 51 47 48 48 32 7 8 +24110,5 6 55 88 88 88 12 9 16 17 11 13 +2788,5 6 51 36 37 17 37 35 7 4 +16256,5 6 64 61 16 17 10 54 7 8 +26639,5 6 57 57 26 65 66 13 +2367,1 6 57 9 16 36 37 38 17 37 32 7 8 +3184,5 6 34 36 37 17 10 7 8 +18697,5 6 51 61 62 91 7 8 +19565,1 6 113 61 62 17 37 48 72 7 4 +18698,5 6 51 61 62 91 7 4 +19564,1 6 113 61 62 17 37 48 72 7 8 +1413,5 6 64 16 36 37 38 17 63 7 4 +10717,1 6 53 55 53 9 16 61 16 17 62 10 7 4 +4937,1 6 53 12 11 85 54 7 8 +1183,5 6 34 36 37 17 10 7 4 +17608,15 9 16 36 37 38 10 54 7 8 +16171,5 6 64 61 62 17 37 35 58 89 7 8 +25204,1 6 55 34 47 36 37 17 11 8 +4963,1 6 53 12 11 85 54 7 4 +22373,15 9 16 17 43 32 54 54 7 8 +2289,1 6 86 34 36 37 69 +11105,15 57 34 36 37 17 11 13 +23534,1 6 12 57 58 58 11 8 +24712,15 57 55 57 96 16 21 77 78 22 79 4 +7628,15 12 36 16 17 37 32 7 4 +12723,5 6 29 51 47 48 72 30 7 8 +13308,5 6 84 55 73 16 36 16 17 11 8 +5754,5 6 57 57 12 16 17 19 13 +11104,15 57 34 36 37 17 11 8 +22374,15 9 16 17 43 32 54 54 7 4 +7494,5 6 53 49 47 36 37 17 10 7 4 +13107,1 6 90 16 61 16 17 37 35 7 4 +22455,5 6 53 49 47 36 37 17 10 7 8 +6860,5 6 57 34 47 36 37 94 +7473,5 6 88 57 57 26 9 16 17 11 8 +25074,5 45 21 22 17 37 48 35 11 8 +16992,15 57 65 67 61 62 63 7 8 +19626,1 6 31 47 48 48 32 54 7 8 +17556,1 6 53 12 16 61 16 17 59 +26264,1 6 31 47 48 48 32 54 7 4 +10545,1 6 53 12 16 61 16 17 69 +6827,1 6 65 9 16 17 37 108 35 7 4 +22835,1 6 53 53 9 16 17 10 7 8 +17427,5 6 88 9 16 36 16 17 37 50 7 4 +11668,1 6 53 53 9 16 17 10 7 4 +551,15 55 51 61 62 63 7 8 +5664,15 9 16 36 61 16 17 37 7 8 +13106,1 6 90 16 61 16 17 37 35 7 8 +550,15 55 51 61 62 63 7 4 +17193,15 9 16 36 61 16 17 37 7 4 +17504,15 57 65 67 61 62 63 7 4 +18131,15 9 16 17 91 54 7 4 +408,1 6 76 61 62 17 37 72 7 8 +6534,15 90 36 37 38 17 11 8 +407,1 6 76 61 62 17 37 72 7 4 +7644,1 6 64 16 17 37 35 87 7 8 +18132,15 9 16 17 91 54 7 8 +18572,5 6 51 47 48 48 32 7 4 +7643,1 6 64 16 17 37 35 87 7 4 +15498,1 6 84 73 16 36 16 36 16 17 11 8 +7188,5 6 53 9 36 16 61 16 17 11 8 +18874,1 6 12 9 36 37 38 10 7 8 +7189,5 6 53 9 36 16 61 16 17 11 13 +11226,5 6 55 9 16 17 19 7 4 +26852,1 6 64 16 39 36 16 42 16 17 37 35 7 8 +10948,1 6 12 9 36 37 38 10 7 4 +11227,5 6 55 9 16 17 19 7 8 +21807,1 6 64 16 39 36 16 42 16 17 37 35 7 4 +25490,5 6 9 36 16 17 43 50 7 4 +3506,15 53 51 61 62 63 7 4 +3507,15 53 51 61 62 63 7 8 +23686,15 96 16 36 37 38 17 19 58 27 11 8 +22995,5 6 64 16 36 16 61 16 17 37 72 66 11 7 4 +15525,1 6 53 71 47 36 37 63 7 4 +4770,5 6 12 16 17 37 48 68 7 4 +18909,1 6 53 71 47 36 37 63 7 8 +4771,5 6 12 16 17 37 48 68 7 8 +24833,1 6 16 17 17 54 7 4 +24834,1 6 16 17 17 54 7 8 +11818,5 6 34 107 36 37 94 +9654,1 6 26 65 66 7 4 +1228,1 6 26 65 66 7 8 +23031,1 6 90 16 61 16 17 62 10 7 8 +23030,1 6 90 16 61 16 17 62 10 7 4 +7468,15 49 36 16 17 17 10 7 4 +3938,15 71 36 37 17 10 54 7 8 +5511,5 6 34 107 36 37 69 +7467,15 49 36 16 17 17 10 7 8 +3939,15 71 36 37 17 10 54 7 4 +664,5 6 51 52 11 8 +4378,5 6 51 52 11 13 +1405,15 12 36 37 38 37 68 7 8 +1404,15 12 36 37 38 37 68 7 4 +19943,1 6 73 16 36 37 38 37 35 54 7 8 +12270,5 6 71 47 48 115 68 7 8 +12124,15 88 89 89 66 56 7 8 +3124,1 6 12 9 16 36 16 17 37 52 7 8 +6891,15 88 89 89 66 56 7 4 +22862,1 6 55 67 36 37 17 10 7 4 +12486,1 6 55 67 36 37 17 10 7 8 +3503,5 6 51 52 54 54 7 8 +3504,5 6 51 52 54 54 7 4 +2300,5 6 65 49 47 48 32 7 4 +3125,1 6 12 9 16 36 16 17 37 52 7 4 +484,15 55 57 9 16 36 37 38 17 10 85 7 4 +14723,1 6 73 16 36 37 38 37 35 54 7 4 +483,15 55 57 9 16 36 37 38 17 10 85 7 8 +18979,1 6 34 35 56 89 7 8 +22712,1 6 64 61 62 37 32 7 8 +5319,1 6 51 47 48 72 7 8 +18694,1 6 18 9 16 17 43 32 10 7 8 +3755,15 53 31 32 13 +22682,1 6 64 61 62 37 32 7 4 +14300,1 6 51 47 48 72 7 4 +18695,1 6 18 9 16 17 43 32 10 7 4 +2828,1 6 71 72 58 13 +9418,5 6 51 36 37 17 10 54 7 4 +25146,5 6 51 36 37 17 10 54 7 8 +22227,5 6 12 9 16 17 37 52 7 4 +6423,5 6 34 47 48 35 54 7 4 +22228,5 6 12 9 16 17 37 52 7 8 +25797,70 16 36 16 36 16 61 16 17 37 35 7 8 +2126,1 6 29 9 10 7 4 +11218,70 16 17 19 13 +16647,1 6 88 9 16 17 43 72 11 7 4 +52,1 6 29 9 10 7 8 +14927,5 6 84 57 58 85 7 4 +25796,70 16 36 16 36 16 61 16 17 37 35 7 4 +8228,1 6 57 92 9 16 17 10 7 8 +1706,15 51 47 36 37 17 10 7 8 +25898,5 6 73 16 42 16 17 37 72 7 8 +8227,1 6 57 92 9 16 17 10 7 4 +1707,15 51 47 36 37 17 10 7 4 +14963,15 9 16 36 16 61 16 17 19 7 4 +4432,15 9 16 36 16 61 16 17 19 7 8 +1414,5 6 64 16 36 37 38 17 63 7 8 +22216,1 6 12 65 88 88 9 16 17 91 7 8 +241,5 6 51 52 7 4 +14879,1 6 12 65 88 88 9 16 17 91 7 4 +111,5 6 51 52 7 8 +25285,5 6 53 34 47 48 48 32 54 7 8 +11049,15 9 16 36 16 61 16 17 37 48 7 8 +25410,1 6 12 16 17 37 35 87 7 8 +24332,1 6 26 55 34 35 13 +21914,5 6 53 34 47 48 48 32 54 7 4 +2557,15 86 31 32 13 +18606,5 6 55 88 88 88 12 9 16 17 11 8 +16636,70 16 36 16 61 16 17 37 123 7 8 +12197,1 12 11 123 7 4 +16635,70 16 36 16 61 16 17 37 123 7 4 +26303,1 6 31 47 107 36 37 69 +25411,1 6 12 16 17 37 35 87 7 4 +17844,1 6 57 51 36 37 17 91 85 7 4 +14939,5 6 84 57 58 85 7 8 +10701,15 109 88 55 57 96 16 21 77 78 22 8 +7685,5 6 9 16 36 16 17 37 48 52 7 8 +26436,1 6 12 9 16 17 43 13 +14381,1 6 57 51 36 37 17 91 85 7 8 +22346,1 6 12 57 109 96 16 21 77 78 22 8 +25907,5 6 57 55 53 9 16 61 16 17 19 13 +18026,97 16 17 106 7 4 +1289,5 6 53 34 36 16 17 37 35 7 4 +22214,15 55 12 55 12 36 39 36 16 17 19 13 +9070,1 6 64 61 62 17 37 48 32 7 8 +12321,5 6 53 34 36 16 17 37 35 7 8 +3231,15 44 71 47 36 37 10 54 7 4 +6177,1 6 57 53 9 10 7 8 +24228,5 6 55 55 53 34 36 37 94 +16544,5 6 57 9 16 42 16 17 37 52 7 8 +18027,97 16 17 106 7 8 +3232,15 44 71 47 36 37 10 54 7 8 +14635,1 6 57 53 9 10 7 4 +7877,1 6 105 16 17 74 7 4 +18258,5 6 88 51 61 62 10 7 4 +7876,1 6 105 16 17 74 7 8 +18259,5 6 88 51 61 62 10 7 8 +23318,1 6 12 57 53 9 10 13 +25546,1 6 12 90 61 39 36 16 17 19 7 4 +25545,1 6 12 90 61 39 36 16 17 19 7 8 +22408,1 6 67 114 115 72 7 8 +13400,1 6 53 54 17 56 7 8 +20013,1 6 57 12 49 50 7 8 +6089,1 6 53 9 16 21 77 78 22 79 4 +13399,1 6 53 54 17 56 7 4 +16389,1 6 57 53 67 36 37 17 10 7 8 +7941,5 6 53 34 107 108 35 54 7 4 +18388,5 6 86 9 39 36 16 17 10 54 7 8 +11775,5 6 53 34 107 108 35 54 7 8 +12627,5 6 31 61 62 10 7 8 +21085,1 6 57 58 89 89 7 8 +2187,1 6 64 61 62 17 37 35 93 58 7 4 +12628,5 6 31 61 62 10 7 4 +23721,15 88 73 16 61 16 36 16 17 11 8 +11565,5 6 96 16 36 16 17 37 35 87 56 7 4 +19222,1 12 16 36 16 17 37 48 52 54 7 4 +5868,1 6 55 53 51 52 13 +207,5 6 34 36 37 17 11 8 +12273,1 6 57 58 89 89 7 4 +19225,1 12 16 36 16 17 37 48 52 54 7 8 +208,5 6 34 36 37 17 11 13 +18693,5 6 18 9 16 17 43 32 10 7 8 +16236,5 6 96 16 36 16 17 37 35 87 56 7 8 +2186,1 6 64 61 62 17 37 35 93 58 7 8 +15099,15 57 88 55 53 53 54 7 4 +19267,15 57 88 55 53 53 54 7 8 +22567,1 6 84 53 9 10 54 7 4 +23511,15 12 36 16 17 43 50 7 8 +12944,1 6 88 57 9 16 39 36 16 17 37 52 56 7 8 +23401,1 12 16 16 17 62 10 7 8 +2068,1 6 12 57 9 16 17 43 52 7 4 +6725,5 6 55 57 53 9 16 17 10 54 7 8 +11435,1 6 64 61 62 17 37 35 11 85 54 7 4 +6726,5 6 55 57 53 9 16 17 10 54 7 4 +2057,1 6 64 61 62 17 37 35 11 85 54 7 8 +23722,15 88 73 16 61 16 36 16 17 11 13 +23606,5 6 57 57 65 9 16 17 10 7 8 +12128,1 6 55 12 55 56 89 11 8 +9955,5 6 84 57 58 87 7 8 +17845,5 6 84 57 58 87 7 4 +8767,5 6 86 9 39 36 16 17 10 54 7 4 +14492,15 51 36 37 17 19 33 13 +2597,15 49 107 108 52 54 7 4 +21635,15 12 36 16 36 16 61 16 17 19 13 +23390,1 6 41 88 12 26 9 16 17 62 17 10 7 4 +2598,15 49 107 108 52 54 7 8 +3304,1 6 55 88 57 58 13 +6921,5 6 9 16 17 43 7 8 +16576,5 6 57 92 31 36 16 17 63 7 8 +25017,1 6 12 57 9 16 17 43 52 7 8 +21935,5 6 53 55 9 16 17 37 68 7 8 +23391,1 6 41 88 12 26 9 16 17 62 17 10 7 8 +6920,5 6 9 16 17 43 7 4 +22376,5 6 57 92 31 36 16 17 63 7 4 +22932,5 6 53 55 9 16 17 37 68 7 4 +26789,5 6 18 12 16 17 10 93 7 8 +22056,5 6 71 117 16 17 10 7 4 +21860,15 57 67 68 7 4 +4657,5 6 76 16 42 16 17 19 7 4 +24442,5 6 71 117 16 17 10 7 8 +21859,15 57 67 68 7 8 +5240,5 6 76 16 42 16 17 19 7 8 +26788,5 6 18 12 16 17 10 93 7 4 +2809,1 6 67 68 58 7 8 +102,1 6 9 10 13 +10204,1 6 26 65 66 11 8 +24127,95 16 36 16 17 37 108 52 7 8 +2808,1 6 67 68 58 7 4 +1795,1 6 41 12 26 9 34 35 7 4 +1794,1 6 41 12 26 9 34 35 7 8 +24128,95 16 36 16 17 37 108 52 7 4 +5755,15 57 57 12 16 17 19 13 +26476,1 6 53 55 9 16 36 37 38 37 35 54 7 8 +16862,5 6 9 36 16 17 19 7 8 +25280,1 6 12 16 36 16 17 37 35 11 7 8 +2069,5 6 12 57 9 16 17 43 52 7 4 +3104,5 6 9 36 16 17 19 7 4 +2070,5 6 12 57 9 16 17 43 52 7 8 +8165,1 6 84 12 61 16 17 19 13 +26848,1 6 53 55 9 16 36 37 38 37 35 54 7 4 +21464,5 6 57 92 71 47 48 68 93 58 7 8 +10975,1 6 57 58 89 27 28 +22490,5 6 9 10 58 89 66 7 4 +18260,5 6 57 9 61 62 17 37 35 54 7 4 +16382,5 6 9 61 62 108 50 66 11 8 +26611,1 6 55 12 57 96 36 16 17 37 72 7 8 +21937,1 6 53 55 9 16 17 37 68 7 4 +8532,15 55 53 49 50 54 7 4 +14412,15 88 65 57 58 7 4 +24463,5 6 86 31 47 42 43 17 10 7 4 +21936,1 6 53 55 9 16 17 37 68 7 8 +8177,15 9 16 17 62 68 7 8 +8531,15 55 53 49 50 54 7 8 +14413,15 88 65 57 58 7 8 +14798,5 6 9 61 62 108 72 66 11 8 +9706,70 16 36 37 38 17 63 7 4 +15703,15 57 53 12 11 54 7 4 +21376,1 6 88 9 36 37 38 37 50 7 4 +14145,5 6 9 16 17 43 11 8 +15702,15 57 53 12 11 54 7 8 +9705,70 16 36 37 38 17 63 7 8 +16563,1 6 57 9 36 37 38 17 37 68 7 4 +26843,5 6 53 88 57 9 16 36 37 38 37 35 54 7 8 +22571,1 6 53 31 36 16 17 10 54 85 54 7 4 +24148,15 51 36 37 11 7 4 +6161,5 6 12 16 17 74 7 8 +10830,15 51 36 37 11 7 8 +4865,1 6 53 18 9 16 17 11 8 +21038,1 6 12 34 47 36 37 17 10 7 8 +16374,15 12 16 17 37 35 54 7 8 +26329,5 6 29 12 11 7 8 +5918,1 6 12 36 37 91 7 4 +17982,15 55 53 96 16 21 77 78 22 79 4 +24119,5 6 51 107 108 48 35 7 8 +23299,1 6 12 36 37 91 7 8 +6162,5 6 12 16 17 74 7 4 +12300,1 6 18 12 36 37 38 37 52 7 4 +12313,15 9 16 17 43 72 11 7 8 +20391,1 6 84 18 12 11 14 85 85 54 7 8 +12301,1 6 18 12 36 37 38 37 52 7 8 +16373,15 12 16 17 37 35 54 7 4 +26328,5 6 29 12 11 7 4 +20390,1 6 84 18 12 11 14 85 85 54 7 4 +11446,1 6 64 61 62 10 54 54 7 4 +2243,1 6 88 57 53 67 68 54 7 4 +7173,5 6 34 36 37 17 3 4 +11445,1 6 64 61 62 10 54 54 7 8 +21214,1 6 9 16 36 37 38 11 8 +24027,15 9 16 17 43 72 11 7 4 +13274,5 6 34 36 37 17 3 8 +3409,1 6 88 57 53 67 68 54 7 8 +25425,5 6 84 12 51 36 37 10 7 8 +10068,1 6 57 9 36 37 38 17 37 68 7 8 +16225,15 57 55 53 9 10 13 +11493,15 31 114 115 32 87 7 4 +24159,15 31 117 16 17 37 48 32 7 4 +11492,15 31 114 115 32 87 7 8 +21888,1 6 86 12 96 16 21 77 78 22 8 +13686,5 6 41 12 26 9 16 17 11 13 +24158,15 31 117 16 17 37 48 32 7 8 +13685,5 6 41 12 26 9 16 17 11 8 +19436,1 6 84 18 12 16 17 37 35 58 89 85 7 8 +12056,1 6 88 89 89 13 +5747,5 6 57 9 36 37 38 10 7 4 +8621,5 6 67 61 62 91 7 8 +3558,5 6 57 9 36 37 38 10 7 8 +1838,5 6 67 61 62 91 7 4 +20544,5 6 84 67 107 108 108 72 85 54 7 4 +9396,1 6 105 42 16 17 19 7 4 +22983,5 6 86 55 56 13 +18491,5 6 84 49 50 13 +15974,1 6 105 42 16 17 19 7 8 +24412,5 6 55 55 55 57 55 96 36 37 38 19 13 +25353,1 6 29 51 36 37 17 10 7 4 +19437,1 6 84 18 12 16 17 37 35 58 89 85 7 4 +4567,5 6 53 9 16 21 77 78 22 79 4 +9697,1 6 29 51 36 37 17 10 7 8 +22023,1 6 57 92 31 36 16 17 63 7 8 +1892,5 6 53 55 56 13 +18386,1 6 12 16 36 16 61 61 16 17 62 10 7 4 +12112,1 6 71 114 36 37 11 8 +18387,1 6 12 16 36 16 61 61 16 17 62 10 7 8 +20603,5 6 57 67 68 13 +1318,1 6 12 16 17 11 7 8 +20503,1 6 55 57 57 49 107 36 37 17 11 13 +12171,1 6 64 36 16 17 37 108 35 54 7 4 +20502,1 6 55 57 57 49 107 36 37 17 11 8 +514,1 6 12 16 17 11 7 4 +17829,1 6 92 31 42 43 17 10 93 7 4 +21539,15 42 43 17 11 7 4 +25145,15 42 43 17 11 7 8 +16637,1 6 92 31 42 43 17 10 93 7 8 +24771,5 6 31 42 43 17 11 7 8 +5082,1 6 88 57 49 36 37 10 7 4 +23655,5 6 71 109 110 13 +10085,5 6 31 42 43 17 11 7 4 +15150,5 6 51 36 37 17 62 10 7 4 +17238,5 6 57 9 16 36 37 38 17 11 8 +7705,15 9 16 17 43 72 11 11 8 +15151,5 6 51 36 37 17 62 10 7 8 +19438,1 6 84 88 57 12 39 36 16 17 19 13 +24137,1 6 57 53 9 16 17 75 7 4 +20400,1 6 57 53 9 16 17 75 7 8 +24321,1 6 71 72 11 54 7 4 +26320,5 6 53 121 122 13 +25967,5 6 49 109 110 13 +20179,5 6 49 107 36 37 17 11 8 +22422,5 6 53 88 71 72 7 4 +5078,1 6 88 57 49 36 37 10 7 8 +22421,5 6 53 88 71 72 7 8 +4597,15 34 36 37 17 37 68 7 4 +17885,1 12 9 31 42 43 17 37 35 54 7 4 +4596,15 34 36 37 17 37 68 7 8 +21468,15 67 47 107 108 48 72 93 58 7 4 +4436,5 6 12 31 32 13 +23295,5 6 92 9 10 27 56 7 4 +7722,1 12 9 31 42 43 17 37 35 54 7 8 +4993,5 6 64 61 62 10 54 7 8 +23986,5 6 55 53 9 10 13 +24050,5 6 65 66 56 89 7 8 +7488,1 6 18 9 16 17 11 8 +4252,5 6 64 61 62 10 54 7 4 +3697,5 6 65 66 56 89 7 4 +7065,15 55 57 57 86 87 7 8 +9339,1 6 55 71 36 37 17 11 8 +15541,1 6 92 57 9 36 37 38 37 48 72 7 8 +7064,15 55 57 57 86 87 7 4 +21469,15 67 47 107 108 48 72 93 58 7 8 +9340,1 6 55 71 36 37 17 11 13 +13776,1 6 92 57 9 36 37 38 37 48 72 7 4 +4327,1 6 18 9 16 17 10 7 4 +7085,5 6 51 52 66 7 8 +9868,5 6 12 65 88 9 16 17 11 8 +23382,5 6 49 50 93 58 7 4 +4328,1 6 18 9 16 17 10 7 8 +9869,5 6 12 65 88 9 16 17 11 13 +4837,1 6 53 12 34 36 37 17 11 8 +24812,5 6 34 109 110 11 8 +22618,1 12 16 17 17 10 7 4 +21616,5 6 65 88 89 7 8 +3791,15 88 57 9 36 37 38 10 7 8 +9620,15 57 12 36 61 16 17 19 13 +7445,15 88 57 9 36 37 38 10 7 4 +16565,1 6 12 55 56 11 8 +9581,5 6 67 107 36 37 17 19 13 +20426,1 6 12 55 56 11 13 +16230,1 6 57 9 16 42 16 17 43 32 93 7 8 +17440,1 6 26 34 47 48 35 7 4 +23381,5 6 49 50 93 58 7 8 +20610,15 67 47 36 37 17 37 68 58 7 8 +22457,1 6 53 49 47 36 37 17 10 7 4 +17441,1 6 26 34 47 48 35 7 8 +20609,15 67 47 36 37 17 37 68 58 7 4 +2479,5 6 65 66 89 7 4 +2478,5 6 65 66 89 7 8 +19594,5 6 18 12 16 17 37 52 58 7 8 +9427,5 6 57 9 36 37 38 37 52 7 4 +3408,1 6 57 58 89 7 4 +19595,5 6 18 12 16 17 37 52 58 7 4 +2235,1 6 57 58 89 7 8 +13946,5 6 57 92 31 32 7 4 +17922,1 12 9 16 61 16 17 37 35 11 7 8 +14445,5 6 57 92 31 32 7 8 +10064,5 6 57 58 58 89 56 13 +11389,5 6 9 10 63 7 4 +11390,5 6 9 10 63 7 8 +19390,1 6 53 31 47 107 36 37 94 +11294,1 6 53 88 26 65 9 16 17 37 50 7 8 +2970,1 6 12 16 61 16 17 11 8 +6217,5 6 53 51 36 37 10 7 4 +16618,1 6 88 57 9 16 17 62 10 7 4 +11314,1 6 12 16 61 16 17 11 13 +14655,5 6 64 36 16 17 37 35 54 7 4 +21617,5 6 65 88 89 7 4 +21061,1 6 53 67 47 42 43 17 10 7 8 +23600,1 6 57 58 27 56 54 7 4 +3897,1 6 12 119 16 17 11 13 +7944,5 6 53 51 36 37 10 7 8 +17638,1 12 9 16 61 16 17 37 35 11 7 4 +13901,5 6 55 26 88 89 66 13 +24945,1 6 64 16 42 16 17 43 68 11 7 4 +20601,1 6 57 58 27 56 54 7 8 +17182,1 6 9 16 17 43 32 93 58 7 8 +3896,1 6 12 119 16 17 11 8 +26364,1 6 9 16 17 43 48 32 75 7 4 +25431,5 6 64 36 16 17 37 35 54 7 8 +23811,15 55 57 12 16 17 11 8 +21240,5 6 44 49 47 36 37 17 37 35 87 7 8 +24245,15 31 47 42 43 17 11 8 +3228,1 6 71 72 33 13 +13688,1 6 53 12 96 16 21 77 78 22 79 4 +20759,1 6 124 36 16 17 11 8 +15740,15 57 51 36 37 17 62 10 7 4 +18864,1 6 31 42 43 17 37 108 48 72 7 4 +9830,15 71 109 110 11 8 +14543,5 6 57 9 16 117 118 50 7 4 +10643,1 6 31 42 43 17 37 108 48 72 7 8 +15741,15 57 51 36 37 17 62 10 7 8 +18200,1 6 55 12 57 9 39 36 16 17 19 7 4 +24246,15 31 47 42 43 17 11 13 +9417,5 6 53 57 58 56 7 8 +16547,1 6 55 12 57 9 39 36 16 17 19 7 8 +21239,5 6 44 49 47 36 37 17 37 35 87 7 4 +21161,5 6 49 47 47 36 37 38 19 13 +9416,5 6 53 57 58 56 7 4 +3663,1 6 12 11 56 7 4 +12693,1 6 96 36 37 38 19 10 54 7 4 +23088,1 6 12 55 56 7 4 +348,1 6 12 11 56 7 8 +17542,1 6 26 65 66 27 28 +24016,1 6 96 36 37 38 19 10 54 7 8 +17158,5 6 64 61 62 17 37 35 93 7 8 +17159,5 6 64 61 62 17 37 35 93 7 4 +23089,1 6 12 55 56 7 8 +9236,15 12 36 16 17 37 48 68 89 13 +17195,5 6 57 57 9 61 62 17 10 54 7 8 +18562,1 6 29 9 10 33 13 +15668,5 6 26 55 9 16 17 10 93 7 4 +20879,1 6 57 58 89 11 8 +15667,5 6 26 55 9 16 17 10 93 7 8 +1049,1 12 11 54 7 8 +1048,1 12 11 54 7 4 +18298,1 6 9 16 39 36 16 17 62 10 7 4 +13921,5 6 9 16 17 43 32 93 58 7 4 +23647,5 6 12 109 110 58 11 7 8 +18905,1 12 39 36 16 17 19 56 7 8 +24134,5 6 18 12 16 17 43 52 89 7 8 +23545,1 6 57 53 53 9 10 13 +17183,5 6 9 16 17 43 32 93 58 7 8 +13202,1 12 39 36 16 17 19 56 7 4 +7086,5 6 51 52 66 7 4 +16791,5 6 29 29 30 7 4 +14894,5 6 29 29 30 7 8 +21665,1 6 88 57 58 27 56 54 7 4 +10374,5 6 86 34 36 37 17 10 7 4 +24891,1 6 84 12 49 50 13 +24758,5 6 67 47 42 43 17 37 50 7 4 +4009,1 6 12 90 16 61 16 17 11 8 +1746,1 6 12 9 16 17 11 8 +18536,5 6 84 57 9 16 16 17 37 48 50 85 7 4 +1909,1 6 12 9 16 17 11 13 +9224,5 6 86 34 36 37 17 10 7 8 +9783,5 6 84 57 86 9 16 17 10 85 7 4 +17174,5 6 57 92 12 36 16 42 16 17 37 32 93 58 7 4 +8178,15 9 16 17 62 68 7 4 +13301,1 6 57 57 57 88 89 66 13 +15340,5 6 53 9 16 61 16 61 16 17 19 13 +24318,1 6 65 26 9 16 17 10 7 8 +19813,5 6 67 107 36 37 17 11 8 +7737,5 6 34 36 37 17 19 13 +25497,15 88 90 16 61 16 17 11 8 +26686,1 6 76 16 36 16 61 16 17 11 7 4 +5654,5 6 64 61 62 37 35 27 28 +12401,5 6 53 12 67 36 37 10 7 8 +12640,1 6 9 16 39 36 16 17 37 35 7 8 +25113,1 6 84 90 16 36 16 17 10 85 7 4 +20584,1 6 9 16 39 36 16 17 37 35 7 4 +10592,5 6 55 12 57 55 9 16 36 37 38 17 37 108 35 7 8 +17960,1 6 84 12 11 56 89 85 7 8 +478,5 6 84 64 16 17 10 85 7 4 +609,15 44 9 16 17 43 32 11 7 4 +6255,15 26 88 89 7 8 +477,5 6 84 64 16 17 10 85 7 8 +15231,15 44 9 16 17 43 32 11 7 8 +6256,15 26 88 89 7 4 +21047,1 6 84 12 11 56 89 85 7 4 +25213,15 12 16 39 36 16 61 16 17 37 48 35 7 4 +26088,5 6 12 65 9 16 17 43 72 11 7 4 +9159,5 6 53 12 61 16 17 37 48 32 7 4 +25212,15 12 16 39 36 16 61 16 17 37 48 35 7 8 +22640,1 6 9 16 17 43 52 58 7 4 +14918,1 6 65 51 61 62 10 7 4 +5662,5 6 53 90 61 16 17 10 7 8 +10185,15 9 36 37 38 37 48 52 13 +5663,5 6 53 90 61 16 17 10 7 4 +25327,5 6 88 9 16 61 16 17 10 7 4 +7687,15 9 16 36 16 17 37 48 52 7 4 +7720,5 6 64 36 16 17 63 7 8 +7721,5 6 64 36 16 17 63 7 4 +14865,5 6 88 9 16 61 16 17 10 7 8 +18011,1 6 96 16 21 77 101 102 103 +7686,15 9 16 36 16 17 37 48 52 7 8 +9158,5 6 53 12 61 16 17 37 48 32 7 8 +22454,15 55 12 55 57 9 36 16 17 10 7 4 +16546,15 57 9 16 42 16 17 37 52 7 4 +16545,15 57 9 16 42 16 17 37 52 7 8 +22453,15 55 12 55 57 9 36 16 17 10 7 8 +18144,15 57 53 9 16 17 91 54 7 8 +7196,5 6 88 57 58 66 27 28 +12299,5 6 18 12 36 37 38 37 52 7 4 +9860,1 6 64 61 62 17 37 11 8 +7197,5 6 88 57 58 66 27 13 +20105,5 6 53 55 12 16 17 10 7 8 +25336,5 6 55 55 88 57 58 7 8 +10461,15 86 34 47 48 35 7 8 +17337,5 6 55 9 16 36 16 17 37 52 54 7 8 +5094,15 86 34 47 48 35 7 4 +13934,5 6 55 9 16 36 16 17 37 52 54 7 4 +23192,5 6 55 55 88 57 58 7 4 +18035,70 16 16 17 98 +24136,5 6 53 12 67 36 37 10 7 4 +13060,5 6 12 12 16 36 37 38 37 48 32 11 8 +470,5 6 51 52 13 +25498,15 88 90 16 61 16 17 11 13 +6741,5 6 9 36 16 17 11 8 +16397,5 6 53 12 16 17 91 7 8 +18925,1 6 64 61 62 17 37 35 93 7 4 +17670,15 96 16 36 37 38 19 58 11 8 +16034,5 6 53 55 12 16 17 10 7 4 +17157,1 6 64 61 62 17 37 35 93 7 8 +23344,1 6 55 65 55 56 7 4 +5462,1 6 57 58 56 89 7 4 +12500,1 6 57 53 12 16 36 37 38 17 11 8 +7472,1 6 65 26 9 16 17 10 7 4 +16759,1 6 57 57 57 9 16 17 11 13 +24953,5 6 53 12 16 17 91 7 4 +7662,5 6 51 47 48 68 7 4 +6710,1 6 57 57 57 9 16 17 11 8 +21033,5 6 12 34 47 36 37 17 10 7 4 +6688,15 53 16 16 17 62 10 7 8 +7661,5 6 51 47 48 68 7 8 +19900,5 6 53 18 12 11 54 85 7 4 +21034,5 6 12 34 47 36 37 17 10 7 8 +14765,1 6 51 52 85 54 7 4 +6687,15 53 16 16 17 62 10 7 4 +22115,5 6 53 18 12 11 54 85 7 8 +9918,1 6 71 72 27 28 +26687,5 6 53 67 47 107 36 37 10 7 4 +26565,1 6 71 42 43 17 106 7 4 +4455,1 6 55 65 66 56 7 4 +4456,1 6 55 65 66 56 7 8 +11497,1 6 86 31 114 115 32 87 7 4 +18804,1 6 51 52 85 54 7 8 +9645,1 6 57 53 34 35 54 7 4 +15210,1 6 57 53 34 35 54 7 8 +23313,5 6 53 54 58 11 8 +17169,1 6 57 92 31 47 42 43 17 63 7 8 +19090,5 6 64 16 117 118 72 7 4 +24720,1 6 57 92 31 47 42 43 17 63 7 4 +16496,5 6 64 16 117 118 72 7 8 +20181,15 49 107 36 37 17 11 13 +1082,5 6 55 67 61 62 63 7 4 +6159,1 6 53 9 16 17 11 7 4 +20996,5 6 12 55 88 55 51 61 62 63 7 4 +20180,15 49 107 36 37 17 11 8 +9991,5 6 12 90 16 17 120 7 4 +388,1 6 73 74 11 8 +5629,1 6 53 9 16 17 11 7 8 +8179,1 6 57 9 16 36 16 61 16 17 19 7 4 +1447,5 6 55 67 61 62 63 7 8 +6213,5 6 53 9 36 37 38 10 54 54 7 4 +18058,1 6 57 9 16 36 16 61 16 17 19 7 8 +12065,5 6 65 88 88 57 9 16 117 118 72 11 8 +15385,5 6 53 9 36 37 38 10 54 54 7 8 +11355,1 45 21 22 17 37 50 11 7 4 +12880,5 6 55 12 67 68 56 7 8 +8487,5 6 12 9 31 32 7 4 +8413,5 6 12 16 39 36 16 21 77 78 22 8 +5467,5 6 65 57 58 89 7 4 +19554,1 6 55 9 36 37 38 10 7 8 +18382,15 55 88 57 57 9 36 16 17 37 50 7 4 +5670,5 6 57 9 16 17 37 50 7 8 +5931,1 6 90 36 16 42 16 17 11 13 +16560,15 55 88 57 57 9 36 16 17 37 50 7 8 +22256,15 31 47 48 48 32 7 4 +831,5 6 57 58 58 89 7 4 +5930,1 6 90 36 16 42 16 17 11 8 +24551,5 6 57 9 16 61 16 36 16 17 19 7 8 +1532,15 49 42 43 17 10 7 4 +21481,1 6 64 36 37 38 37 35 93 58 7 4 +7480,5 6 57 9 16 17 37 50 7 4 +1531,15 49 42 43 17 10 7 8 +22255,15 31 47 48 48 32 7 8 +21480,1 6 64 36 37 38 37 35 93 58 7 8 +784,5 6 65 57 57 12 16 36 37 38 37 50 7 8 +1864,5 6 53 12 16 61 16 17 19 13 +23560,5 6 55 88 57 58 58 66 7 8 +18219,15 57 88 57 58 58 89 7 8 +19877,5 6 55 88 57 58 58 66 7 4 +2320,15 57 88 57 58 58 89 7 4 +18342,15 12 36 16 36 16 17 11 8 +783,5 6 65 57 57 12 16 36 37 38 37 50 7 4 +13525,5 6 12 9 31 32 7 8 +6163,1 6 53 34 36 37 10 54 7 8 +12881,5 6 55 12 67 68 56 7 4 +11924,15 31 47 36 37 17 10 7 4 +8601,5 6 9 16 61 16 17 19 7 8 +24957,1 6 53 12 12 11 11 54 7 8 +8600,5 6 9 16 61 16 17 19 7 4 +15637,5 6 86 53 9 16 17 120 7 4 +13634,5 6 12 36 37 38 17 11 8 +11925,15 31 47 36 37 17 10 7 8 +20044,5 6 86 53 9 16 17 120 7 8 +127,5 6 53 54 58 7 4 +3479,5 6 64 16 117 118 72 11 8 +488,5 6 53 54 58 7 8 +4079,5 6 12 65 66 89 7 8 +4080,5 6 12 65 66 89 7 4 +23408,15 55 65 67 61 62 63 7 8 +26626,5 6 65 57 58 58 11 7 4 +3645,5 6 67 47 36 37 11 8 +13754,1 6 34 47 48 48 52 54 7 4 +13755,1 6 34 47 48 48 52 54 7 8 +5657,5 6 36 37 11 8 +67,1 6 9 39 36 16 17 10 7 8 +5658,5 6 36 37 11 13 +6909,1 6 9 39 36 16 17 10 7 4 +11918,5 6 65 57 58 58 11 7 8 +6134,5 6 67 47 36 37 11 13 +20748,5 6 124 36 37 19 +17911,5 6 88 89 66 89 7 8 +6016,1 6 51 52 58 66 7 4 +24630,5 6 88 89 66 89 7 4 +11629,1 6 55 53 53 54 7 4 +3155,1 6 55 53 53 54 7 8 +6017,1 6 51 52 58 66 7 8 +11610,5 6 53 16 17 10 7 4 +453,1 6 84 9 10 87 85 7 4 +25951,5 6 84 31 32 7 4 +15693,5 6 53 16 17 10 7 8 +454,1 6 84 9 10 87 85 7 8 +20838,5 6 84 31 32 7 8 +20700,5 6 64 16 17 37 32 10 7 8 +7836,5 6 92 34 107 108 35 93 7 4 +18817,1 6 53 9 16 61 16 17 19 54 7 4 +24537,5 6 92 31 42 43 17 37 32 93 7 4 +9137,5 6 53 54 58 13 +9187,1 6 55 12 57 9 36 16 17 37 35 7 8 +23630,1 6 53 9 16 61 16 17 19 54 7 8 +587,5 6 64 61 62 17 37 48 72 54 7 8 +17602,1 6 57 34 36 37 10 7 8 +1338,5 6 64 61 62 17 37 48 72 54 7 4 +22185,1 6 57 58 27 7 8 +6464,15 86 9 16 17 11 8 +20701,5 6 64 16 17 37 32 10 7 4 +12242,1 6 53 9 36 16 61 16 17 37 35 56 7 8 +22616,1 6 57 34 36 37 10 7 4 +11929,15 57 9 16 36 16 117 118 32 7 4 +2029,15 44 9 16 36 16 17 63 7 4 +11928,15 57 9 16 36 16 117 118 32 7 8 +4655,1 6 9 16 17 43 32 7 8 +26439,15 34 36 16 42 16 17 19 7 8 +4656,1 6 9 16 17 43 32 7 4 +4202,5 6 64 61 62 17 37 50 54 54 7 4 +46,1 12 11 14 30 7 4 +14457,1 6 34 107 36 37 17 63 7 4 +11914,15 12 57 58 58 66 13 +14285,15 55 55 56 56 54 7 4 +4495,1 6 34 107 36 37 17 63 7 8 +3643,5 6 64 61 62 17 37 48 50 54 7 8 +25372,1 6 12 16 17 37 48 32 11 8 +10264,15 88 65 88 9 16 42 16 17 37 35 87 7 4 +20550,1 6 84 67 107 107 107 36 37 17 11 8 +10265,15 88 65 88 9 16 42 16 17 37 35 87 7 8 +17363,15 53 49 36 37 17 11 7 8 +14284,15 55 55 56 56 54 7 8 +11051,70 16 36 16 61 16 17 37 48 7 4 +26571,5 6 84 57 9 16 17 37 35 7 4 +7040,5 6 53 54 87 58 7 4 +19690,5 6 53 55 56 58 7 4 +6968,5 6 53 54 56 13 +24830,5 6 55 53 9 16 36 37 38 17 10 54 7 4 +14311,5 6 53 55 56 58 7 8 +22945,5 6 53 54 87 58 7 8 +10759,1 6 12 12 16 36 37 38 17 11 13 +12054,5 6 88 89 89 58 7 4 +10758,1 6 12 12 16 36 37 38 17 11 8 +12055,5 6 88 89 89 58 7 8 +18362,1 6 55 53 9 10 54 54 7 8 +18361,1 6 55 53 9 10 54 54 7 4 +2030,15 44 9 16 36 16 17 63 7 8 +11050,70 16 36 16 61 16 17 37 48 7 8 +9812,1 6 53 9 36 16 61 16 17 37 35 56 7 4 +4863,5 6 53 12 16 61 16 17 11 13 +6465,15 86 9 16 17 11 13 +9464,1 6 84 71 47 48 68 85 54 7 4 +14074,5 6 16 17 54 54 7 8 +26454,5 6 53 12 36 37 63 54 7 4 +11320,1 6 84 71 47 48 68 85 54 7 8 +15863,5 6 16 17 54 54 7 4 +24672,1 6 12 65 9 12 51 52 7 8 +2438,1 6 88 67 114 36 37 17 11 8 +4026,5 6 53 12 16 61 16 17 11 8 +4427,15 12 16 17 19 7 4 +16846,1 6 64 61 62 17 37 50 11 54 7 4 +2976,15 34 36 37 19 58 11 56 7 8 +7351,15 12 16 17 19 7 8 +17712,1 6 64 61 62 17 37 50 11 54 7 8 +988,15 34 36 37 10 54 7 4 +15722,15 121 121 9 16 17 10 7 4 +2080,15 34 36 37 19 58 11 56 7 4 +15723,15 121 121 9 16 17 10 7 8 +26449,5 6 53 12 36 37 63 54 7 8 +19680,5 6 55 53 9 16 36 37 38 17 10 54 7 8 +21355,5 6 12 36 37 38 17 3 8 +19618,5 6 34 36 37 17 17 11 8 +15480,15 65 26 88 57 9 16 17 10 7 4 +18459,1 6 64 36 16 117 118 10 7 4 +24910,1 6 64 36 16 117 118 10 7 8 +18684,5 6 12 36 37 38 17 3 4 +6421,70 36 37 38 17 63 7 4 +11334,1 6 57 58 27 11 8 +14732,1 6 18 12 16 17 62 17 11 8 +14733,1 6 18 12 16 17 62 17 11 13 +24671,1 6 12 65 9 12 51 52 7 4 +6420,70 36 37 38 17 63 7 8 +19004,1 6 53 12 9 16 17 11 54 7 4 +12557,5 6 55 57 86 87 13 +6291,1 6 53 12 9 16 17 11 54 7 8 +13534,1 6 55 67 47 42 43 17 37 68 54 7 8 +25724,5 6 18 12 16 17 17 54 54 7 4 +26096,1 6 55 67 47 42 43 17 37 68 54 7 4 +5805,5 6 12 96 16 21 77 78 22 8 +23654,1 6 9 10 110 72 7 8 +607,1 6 9 16 17 43 32 11 8 +25610,1 6 55 51 52 7 4 +23893,15 88 90 36 16 17 37 50 7 4 +21643,1 6 55 51 52 7 8 +13677,1 6 53 12 51 52 11 54 7 8 +10531,1 6 73 74 7 4 +12430,1 6 73 74 7 8 +12063,5 6 65 88 88 12 71 72 7 8 +26617,1 6 53 12 51 52 11 54 7 4 +12064,5 6 65 88 88 12 71 72 7 4 +5105,5 6 67 47 36 37 19 13 +19697,5 6 57 9 39 36 16 61 16 17 11 8 +8160,70 16 36 16 61 16 21 77 78 22 8 +19698,5 6 57 9 39 36 16 61 16 17 11 13 +5465,5 6 67 47 36 37 17 69 +3642,5 6 64 61 62 17 37 48 50 54 7 4 +21440,1 6 53 34 47 36 37 17 11 8 +419,5 6 12 16 21 77 78 22 79 4 +23894,15 88 90 36 16 17 37 50 7 8 +15650,5 2 16 17 43 35 11 8 +6114,1 6 9 16 39 36 16 17 10 7 8 +1677,15 55 12 57 58 11 8 +20041,5 2 16 17 43 35 11 13 +19519,15 55 12 96 36 16 17 19 58 11 8 +14427,1 6 9 10 58 89 66 7 4 +25364,5 6 12 34 47 48 32 11 8 +6113,1 6 9 16 39 36 16 17 10 7 4 +11901,5 6 64 16 117 118 108 72 66 11 8 +11109,15 65 67 47 36 37 17 11 13 +19800,5 6 88 73 36 16 42 16 17 37 48 35 7 8 +10778,1 6 12 16 36 16 17 37 48 32 54 7 4 +11108,15 65 67 47 36 37 17 11 8 +15869,1 6 53 12 11 13 +7609,1 45 21 22 17 37 52 85 7 4 +24319,1 6 88 57 57 26 9 16 17 11 8 +24217,5 6 88 105 16 61 16 17 19 7 4 +17643,5 6 53 54 56 89 13 +5028,5 6 57 51 61 62 63 7 8 +11190,5 6 29 86 34 35 13 +13296,1 12 16 39 36 16 17 43 68 7 8 +8588,5 6 51 52 56 54 7 4 +13161,15 53 53 16 17 54 7 8 +12575,15 51 36 37 38 37 68 7 8 +5957,5 6 53 65 57 58 13 +1431,70 16 36 37 38 17 37 68 7 4 +1430,70 16 36 37 38 17 37 68 7 8 +6678,15 53 53 16 17 54 7 4 +11494,5 6 86 31 114 42 43 17 75 7 4 +16751,5 6 12 57 96 16 21 77 78 22 79 4 +746,1 6 9 10 58 13 +7711,5 6 12 88 57 9 16 17 11 13 +15405,1 6 34 47 48 50 11 8 +8589,5 6 51 52 56 54 7 8 +4527,1 6 41 12 16 17 11 8 +8323,5 6 57 51 61 62 63 7 4 +23903,15 57 53 9 16 17 43 32 54 7 8 +9299,1 6 41 12 16 17 11 13 +11102,1 6 34 35 58 89 7 8 +24539,1 6 18 9 16 17 11 7 4 +22046,1 6 51 61 62 91 7 4 +10999,1 6 34 47 61 62 10 7 8 +7489,1 6 18 9 16 17 11 7 8 +18696,1 6 51 61 62 91 7 8 +19724,15 88 55 88 89 56 89 7 8 +10998,1 6 34 47 61 62 10 7 4 +21298,5 6 12 57 9 16 61 16 17 10 7 4 +24658,1 6 26 86 34 35 13 +8476,5 6 12 16 17 37 35 54 7 8 +8475,5 6 12 16 17 37 35 54 7 4 +25187,1 6 12 55 56 58 11 8 +7710,5 6 12 88 57 9 16 17 11 8 +19529,60 16 36 37 38 37 68 7 8 +21442,15 51 107 36 37 17 10 7 8 +16595,5 6 67 47 61 62 63 7 8 +21198,1 6 67 107 36 37 17 11 8 +12576,15 51 36 37 38 37 68 7 4 +721,1 6 9 10 56 13 +11260,1 6 34 36 37 17 37 48 35 54 7 4 +15427,1 6 76 16 17 63 7 4 +12699,1 6 57 53 9 16 61 16 17 75 7 8 +4672,5 6 53 9 16 17 11 8 +2331,1 6 57 53 9 16 61 16 17 75 7 4 +21297,5 6 12 57 9 16 61 16 17 10 7 8 +21370,5 6 67 47 61 62 63 7 4 +6086,15 44 96 36 16 21 77 78 22 8 +15428,1 6 76 16 17 63 7 8 +8773,5 6 53 9 16 17 11 13 +19528,60 16 36 37 38 37 68 7 4 +989,15 34 36 37 10 54 7 8 +866,5 6 12 65 9 16 17 37 52 7 8 +5253,1 6 53 18 12 16 61 16 17 10 7 8 +19011,5 6 57 9 16 17 19 7 4 +5731,1 6 53 18 12 16 61 16 17 10 7 4 +13172,1 6 92 31 32 7 4 +20676,1 6 90 16 61 16 36 16 17 37 35 87 7 8 +13181,1 6 92 31 32 7 8 +8632,1 6 90 16 61 16 36 16 17 37 35 87 7 4 +21443,15 51 107 36 37 17 10 7 4 +3406,15 9 36 16 17 19 7 4 +3074,5 6 88 9 61 16 17 19 7 8 +23880,1 6 84 71 36 37 17 91 85 7 8 +26208,5 6 53 18 9 16 17 62 10 7 4 +3075,5 6 88 9 61 16 17 19 7 4 +26209,5 6 53 18 9 16 17 62 10 7 8 +3407,15 9 36 16 17 19 7 8 +4325,1 6 31 42 43 17 11 7 8 +16978,5 6 12 65 9 16 17 37 52 7 4 +14468,1 6 31 42 43 17 11 7 4 +23303,15 86 96 16 21 77 78 22 79 4 +10518,1 6 55 12 55 109 110 13 +18485,1 6 84 71 36 37 17 91 85 7 4 +23186,15 57 67 117 16 17 11 8 +4070,15 9 16 36 16 17 37 52 68 7 8 +12295,5 6 67 51 16 17 10 7 8 +8669,1 6 90 16 39 36 16 17 69 +11863,15 88 89 66 56 27 7 8 +11920,5 6 9 10 58 66 13 +3687,15 9 16 36 16 17 37 52 68 7 4 +1833,15 88 89 66 56 27 7 4 +23187,15 57 67 117 16 17 11 13 +9759,1 6 84 55 73 16 36 16 17 11 8 +20142,15 42 43 17 37 10 54 7 8 +7547,5 6 67 51 16 17 10 7 4 +282,1 6 18 12 11 14 7 4 +23248,1 6 84 9 10 56 89 85 7 4 +283,1 6 18 12 11 14 7 8 +23249,1 6 84 9 10 56 89 85 7 8 +18500,1 6 18 12 16 17 63 54 7 4 +20143,15 42 43 17 37 10 54 7 4 +18499,1 6 18 12 16 17 63 54 7 8 +9735,1 6 12 16 17 37 50 7 8 +9734,1 6 12 16 17 37 50 7 4 +17976,1 6 55 31 36 37 11 8 +20795,15 49 36 37 17 91 54 7 4 +5307,15 31 42 43 17 37 32 54 7 8 +20796,15 49 36 37 17 91 54 7 8 +21428,5 6 86 34 36 37 17 37 48 50 7 8 +5308,15 31 42 43 17 37 32 54 7 4 +12889,5 6 53 9 36 16 17 37 52 7 8 +12676,5 6 31 47 36 37 17 10 7 8 +12888,5 6 53 9 36 16 17 37 52 7 4 +9065,5 6 31 47 36 37 17 10 7 4 +3812,1 6 51 42 43 17 10 7 4 +21989,15 55 88 51 52 7 4 +1062,5 6 53 9 10 58 54 7 8 +14324,5 6 90 91 85 54 7 8 +14194,5 6 65 9 16 17 10 93 7 8 +13105,5 6 90 16 61 16 17 37 35 7 8 +2857,1 6 51 42 43 17 10 7 8 +14323,5 6 90 91 85 54 7 4 +14195,5 6 65 9 16 17 10 93 7 4 +15640,1 6 119 16 42 16 17 10 7 4 +3222,5 6 53 12 16 61 16 21 77 78 22 8 +21988,15 55 88 51 52 7 8 +1786,5 6 53 9 10 58 54 7 4 +15712,1 6 9 10 66 13 +19840,15 34 107 108 50 7 4 +11686,15 55 9 16 17 118 17 37 48 35 11 8 +19839,15 34 107 108 50 7 8 +13365,5 6 53 51 36 37 10 54 7 8 +11207,5 6 92 12 16 17 10 93 7 4 +13366,5 6 53 51 36 37 10 54 7 4 +11206,5 6 92 12 16 17 10 93 7 8 +3429,1 6 64 16 36 37 38 37 52 7 4 +83,1 2 16 17 10 7 8 +1972,15 49 61 62 10 7 8 +6738,5 6 9 16 36 16 17 37 32 7 8 +26201,1 6 53 12 16 17 19 7 8 +3428,1 6 64 16 36 37 38 37 52 7 8 +5740,5 6 12 65 66 89 11 8 +1971,15 49 61 62 10 7 4 +3324,1 6 88 9 39 36 16 17 10 7 4 +5811,15 55 12 9 16 17 10 7 8 +7602,5 6 84 51 36 37 38 37 50 85 7 8 +11750,15 9 9 61 62 32 54 7 8 +3323,1 6 88 9 39 36 16 17 10 7 8 +5812,15 55 12 9 16 17 10 7 4 +7598,5 6 84 51 36 37 38 37 50 85 7 4 +11751,15 9 9 61 62 32 54 7 4 +23048,5 6 53 55 57 9 16 17 63 7 8 +16,1 2 16 17 10 7 4 +12999,5 6 76 16 36 37 38 17 11 13 +1286,5 6 64 16 17 37 35 54 7 8 +5676,5 6 64 16 17 37 35 54 7 4 +24006,1 6 53 12 9 16 17 19 +13253,15 57 55 53 9 10 54 7 4 +19447,1 6 53 12 16 36 16 17 37 50 54 7 8 +4540,15 12 16 39 36 16 17 98 +1000,15 34 47 48 35 54 7 4 +13254,15 57 55 53 9 10 54 7 8 +999,15 34 47 48 35 54 7 8 +1106,5 6 76 16 36 37 38 17 11 8 +842,5 6 18 12 16 17 37 72 7 8 +24256,15 9 16 17 37 32 54 54 7 4 +5030,15 57 51 61 62 63 7 4 +20416,1 6 64 36 16 17 91 7 8 +5029,15 57 51 61 62 63 7 8 +24257,15 9 16 17 37 32 54 54 7 8 +11215,5 6 57 9 16 17 19 7 8 +12629,1 6 29 9 61 16 17 10 7 8 +10474,5 6 18 12 16 17 17 10 7 4 +16910,5 6 36 37 10 7 8 +10475,5 6 18 12 16 17 17 10 7 8 +987,1 6 53 34 36 37 10 54 7 4 +5948,1 6 90 16 36 16 17 17 91 7 4 +8751,15 12 16 39 36 16 17 19 +7074,1 6 86 9 16 17 37 108 32 7 4 +18223,15 51 47 36 37 17 69 +25008,5 6 64 36 61 16 17 11 8 +11889,1 6 53 57 58 56 7 8 +16493,1 6 67 114 36 37 17 11 8 +19089,1 6 67 114 36 37 17 11 13 +14554,15 12 12 16 21 77 78 22 79 4 +25009,5 6 64 36 61 16 17 11 13 +9415,1 6 53 57 58 56 7 4 +843,5 6 18 12 16 17 37 72 7 4 +26803,1 6 65 88 57 9 16 36 16 17 37 52 13 +2242,5 6 57 58 58 89 7 8 +6712,1 6 86 9 16 17 11 8 +5673,5 6 9 16 36 16 36 37 38 17 10 7 8 +7481,5 6 9 16 36 16 36 37 38 17 10 7 4 +8943,1 6 86 9 16 17 11 13 +3417,1 6 49 47 48 52 7 4 +757,5 6 12 88 12 16 17 19 13 +7075,1 6 86 9 16 17 37 108 32 7 8 +18221,1 6 49 47 48 52 7 8 +25683,5 6 26 9 16 17 63 7 8 +1738,15 96 36 16 17 37 108 35 7 4 +25080,5 6 26 9 16 17 63 7 4 +21557,5 6 12 9 16 36 16 61 16 17 37 35 54 7 8 +18596,1 6 55 57 53 9 16 61 16 17 19 7 4 +18479,1 6 84 90 91 66 85 7 4 +21558,5 6 12 9 16 36 16 61 16 17 37 35 54 7 4 +1140,1 6 53 57 31 32 54 7 8 +9539,5 6 9 10 58 58 13 +18244,1 6 92 31 36 16 42 16 17 37 35 93 7 8 +20360,1 6 55 57 53 9 16 61 16 17 19 7 8 +1737,15 96 36 16 17 37 108 35 7 8 +22819,1 6 53 57 31 32 54 7 4 +25037,1 6 67 42 43 17 37 68 7 4 +3204,1 6 12 55 56 58 7 8 +8624,15 90 61 62 17 106 7 4 +7910,5 6 67 42 43 17 91 7 4 +8623,15 90 61 62 17 106 7 8 +11535,1 6 12 55 56 58 7 4 +7911,5 6 67 42 43 17 91 7 8 +10430,5 6 53 49 50 58 54 54 7 4 +11867,5 6 53 49 50 58 54 54 7 8 +4275,1 6 53 9 16 17 10 7 4 +2698,1 6 53 9 16 17 10 7 8 +18488,1 6 84 90 91 66 85 7 8 +770,15 12 57 58 58 89 13 +14026,1 6 55 9 16 36 16 17 37 52 7 4 +14027,1 6 55 9 16 36 16 17 37 52 7 8 +13414,1 6 16 53 12 36 16 61 16 17 11 13 +21014,15 34 107 108 48 35 7 8 +7456,70 16 61 16 61 16 17 11 8 +12721,1 6 29 71 72 13 +21015,15 34 107 108 48 35 7 4 +1087,5 6 53 54 13 +13413,1 6 16 53 12 36 16 61 16 17 11 8 +12507,1 6 55 53 12 16 39 36 16 17 37 32 7 4 +12508,1 6 55 53 12 16 39 36 16 17 37 32 7 8 +13539,1 6 53 49 36 37 19 13 +956,5 6 84 9 16 17 10 85 7 8 +8147,70 16 36 16 17 37 35 7 4 +8148,70 16 36 16 17 37 35 7 8 +7457,70 16 61 16 61 16 17 11 13 +7505,5 6 65 9 16 17 106 7 4 +9162,5 6 9 61 62 10 7 8 +22021,1 6 12 55 67 47 48 68 7 4 +21980,1 6 12 16 36 16 36 37 38 17 11 13 +2972,1 6 51 36 37 19 58 11 8 +5190,1 6 64 16 17 75 7 4 +442,1 6 84 71 72 13 +18570,1 6 29 12 16 36 16 17 98 +6877,1 6 64 61 62 17 37 35 87 7 4 +7979,1 6 90 91 27 28 +14177,1 6 92 9 10 54 7 4 +15619,5 6 12 16 36 37 38 17 37 35 87 7 8 +4153,5 6 119 120 13 +6878,1 6 64 61 62 17 37 35 87 7 8 +10544,5 6 53 12 16 61 16 17 69 +5191,1 6 64 16 17 75 7 8 +15571,5 6 57 9 16 39 36 16 17 10 7 4 +17555,5 6 53 12 16 61 16 17 59 +16567,1 6 12 55 67 47 48 68 7 8 +9666,15 12 11 14 30 58 7 4 +1623,1 6 12 65 66 27 11 8 +22728,5 6 49 107 36 37 17 59 +4074,1 6 88 55 9 16 36 16 17 10 7 4 +9667,15 12 11 14 30 58 7 8 +14168,1 6 92 9 10 54 7 8 +8966,15 34 47 48 32 54 54 7 8 +21322,15 71 47 48 52 85 93 7 8 +8965,15 34 47 48 32 54 54 7 4 +20968,15 55 34 47 36 37 17 11 8 +677,5 6 9 61 62 10 7 4 +20969,15 55 34 47 36 37 17 11 13 +21979,1 6 12 16 36 16 36 37 38 17 11 8 +26633,15 57 9 16 17 37 32 7 4 +2769,15 51 36 37 17 69 +17315,1 6 53 9 36 16 61 16 17 62 10 7 8 +7504,15 9 36 37 38 37 52 68 7 8 +15762,1 6 64 61 62 106 7 8 +3318,15 9 36 37 38 37 52 68 7 4 +21321,15 71 47 48 52 85 93 7 4 +26634,15 57 9 16 17 37 32 7 8 +22010,1 6 12 16 21 77 78 82 111 +17585,1 6 64 61 62 106 7 4 +19083,5 6 12 16 17 37 32 10 7 4 +5717,1 6 12 55 56 89 13 +19084,5 6 12 16 17 37 32 10 7 8 +21821,5 6 71 36 16 17 10 7 4 +21947,1 6 12 96 36 37 38 17 19 56 11 8 +8954,70 16 36 16 17 62 10 7 8 +8955,70 16 36 16 17 62 10 7 4 +4135,15 34 36 16 17 37 68 7 8 +23029,5 6 90 16 61 16 17 62 10 7 4 +19472,5 6 49 114 115 68 7 4 +9720,5 6 64 16 39 36 16 42 16 17 43 32 93 7 4 +2435,5 6 49 114 115 68 7 8 +4715,15 51 36 37 19 13 +9719,5 6 64 16 39 36 16 42 16 17 43 32 93 7 8 +21886,5 6 86 12 96 16 21 77 78 22 79 4 +12896,5 6 55 34 36 37 63 7 4 +20545,1 6 84 67 107 108 108 72 85 54 7 4 +20034,1 6 57 53 9 10 58 56 54 7 4 +2763,5 6 55 9 16 17 37 48 72 56 89 7 4 +20546,1 6 84 67 107 108 108 72 85 54 7 8 +18515,5 6 51 47 61 62 63 7 8 +12712,15 57 53 90 91 66 54 7 4 +9143,1 6 53 18 12 11 14 54 7 4 +22487,5 6 84 12 16 36 37 38 17 11 13 +9144,1 6 53 18 12 11 14 54 7 8 +26060,5 6 12 12 16 36 37 38 17 19 +21543,15 9 61 62 32 10 7 8 +25079,5 6 57 92 9 10 27 7 4 +12895,5 6 55 34 36 37 63 7 8 +21544,15 9 61 62 32 10 7 4 +18514,5 6 51 47 61 62 63 7 4 +12713,15 57 53 90 91 66 54 7 8 +19230,1 6 9 36 16 61 16 17 62 10 7 8 +7283,1 2 16 17 11 7 8 +5241,5 6 12 36 37 17 11 8 +19231,1 6 9 36 16 61 16 17 62 10 7 4 +9790,15 86 9 16 36 37 38 17 10 85 7 4 +12997,1 6 92 55 9 16 21 77 78 22 8 +9789,15 86 9 16 36 37 38 17 10 85 7 8 +1205,1 2 16 17 11 7 4 +2317,1 6 88 57 58 66 7 8 +3418,15 49 47 48 52 7 4 +15301,15 12 39 36 16 36 16 61 16 17 62 10 7 4 +3453,15 96 16 21 77 101 102 103 +25449,5 6 57 55 67 68 13 +3419,15 49 47 48 52 7 8 +6186,1 6 88 57 58 66 7 4 +12011,5 6 64 61 62 17 37 72 54 54 7 4 +15302,15 12 39 36 16 36 16 61 16 17 62 10 7 8 +12012,5 6 64 61 62 17 37 72 54 54 7 8 +8305,15 57 67 47 48 72 54 7 8 +9676,5 6 29 12 16 17 11 13 +16851,5 6 53 55 56 58 89 7 8 +17812,5 6 18 12 11 7 4 +25826,5 6 53 55 56 58 89 7 4 +8980,5 6 119 120 89 13 +8306,15 57 67 47 48 72 54 7 4 +3114,5 6 88 57 58 58 89 13 +23505,5 6 18 12 11 7 8 +9675,5 6 29 12 16 17 11 8 +15027,5 6 53 71 36 37 17 11 13 +13927,5 6 53 71 36 37 17 11 8 +6745,15 31 42 43 17 37 48 35 7 8 +18865,1 6 53 34 36 16 17 37 35 7 8 +1374,5 6 53 53 54 13 +6752,1 6 18 12 42 16 17 43 32 7 8 +198,15 12 11 7 8 +22714,1 6 64 39 36 36 61 16 17 37 50 7 8 +199,15 12 11 7 4 +19583,5 6 55 57 12 16 36 37 38 17 11 8 +22715,1 6 64 39 36 36 61 16 17 37 50 7 4 +2806,5 6 57 65 66 13 +15189,1 6 18 12 16 17 43 32 93 58 7 4 +6746,15 31 42 43 17 37 48 35 7 4 +18236,16 16 17 11 13 +18235,16 16 17 11 8 +21261,5 6 53 9 36 37 63 7 8 +22602,1 6 9 10 48 13 +26401,1 6 53 67 67 36 37 63 54 7 8 +19264,5 6 9 61 62 68 89 7 4 +20989,5 6 64 16 42 16 17 37 7 4 +21612,1 6 88 55 65 66 7 8 +15092,5 6 9 61 62 68 89 7 8 +5470,1 6 88 57 9 16 17 69 +20988,5 6 64 16 42 16 17 37 7 8 +18305,1 6 65 88 9 16 17 10 7 8 +24908,5 6 64 9 36 37 38 17 11 13 +3691,1 6 65 88 9 16 17 10 7 4 +23444,1 6 51 114 36 37 17 11 13 +26172,5 6 92 9 10 27 54 7 4 +26171,5 6 92 9 10 27 54 7 8 +11404,5 6 64 9 36 37 38 17 11 8 +23386,1 6 57 92 9 36 16 17 37 50 7 8 +23443,1 6 51 114 36 37 17 11 8 +23732,1 6 57 92 9 36 16 17 37 50 7 4 +26012,97 16 17 37 11 8 +6253,15 57 12 16 36 37 38 17 37 48 35 7 4 +6252,15 57 12 16 36 37 38 17 37 48 35 7 8 +23055,5 6 64 61 62 17 118 17 10 54 7 8 +9022,1 6 88 89 87 56 7 4 +22606,15 49 47 9 36 37 17 10 7 8 +6938,5 6 53 119 120 13 +23113,1 6 88 89 87 56 7 8 +22605,15 49 47 9 36 37 17 10 7 4 +13727,5 6 12 9 16 17 37 48 35 7 4 +14791,15 53 34 107 107 36 37 17 62 10 7 4 +26170,15 53 53 49 36 37 17 10 7 4 +11196,5 6 9 10 30 93 7 4 +10821,5 6 12 9 16 17 37 48 35 7 8 +19236,5 6 65 9 16 17 74 85 7 4 +16195,5 6 9 10 30 93 7 8 +15487,5 6 65 9 16 17 74 85 7 8 +7224,1 6 34 47 48 50 7 8 +13909,15 12 36 16 17 37 48 72 7 4 +7223,1 6 34 47 48 50 7 4 +18569,1 6 29 12 16 36 16 17 69 +13908,15 12 36 16 17 37 48 72 7 8 +14792,15 53 34 107 107 36 37 17 62 10 7 8 +25648,1 12 16 17 37 50 85 54 7 4 +3653,15 51 36 37 11 13 +25649,1 12 16 17 37 50 85 54 7 8 +24124,15 51 47 107 36 37 11 13 +3652,15 51 36 37 11 8 +6751,1 6 18 12 42 16 17 43 32 7 4 +24123,15 51 47 107 36 37 11 8 +25376,1 6 51 36 37 19 58 7 4 +26104,15 55 12 55 56 58 11 56 7 4 +4600,1 6 119 61 16 17 11 8 +23269,1 6 12 9 16 17 43 32 7 4 +413,1 21 22 46 8 +22696,1 6 113 61 62 17 37 35 11 54 7 4 +414,1 21 22 46 4 +9319,1 6 113 61 62 17 37 35 11 54 7 8 +5171,5 6 53 16 17 17 54 7 4 +3975,15 12 39 36 16 36 37 38 11 8 +14821,15 9 61 62 72 66 7 4 +14822,15 9 61 62 72 66 7 8 +19659,5 6 51 36 37 63 7 4 +5625,5 6 53 16 17 17 54 7 8 +19660,5 6 51 36 37 63 7 8 +15947,1 6 64 61 62 17 37 32 85 54 7 8 +15948,1 6 64 61 62 17 37 32 85 54 7 4 +9571,5 6 84 55 65 66 56 85 54 7 4 +10317,15 51 47 36 37 69 +16370,15 53 49 36 37 17 10 7 4 +22238,5 6 84 55 65 66 56 85 54 7 8 +3976,15 12 39 36 16 36 37 38 11 13 +16371,15 53 49 36 37 17 10 7 8 +12245,1 6 57 12 9 16 17 10 7 8 +4751,1 6 12 96 16 21 77 78 22 79 4 +17081,1 12 36 16 17 37 115 72 89 7 8 +26834,5 6 53 88 65 9 16 36 37 38 17 11 8 +9578,1 6 34 107 108 68 7 8 +12320,1 6 12 65 67 107 117 16 17 11 8 +5340,15 55 49 36 37 11 7 8 +5514,5 6 64 16 16 17 37 108 35 7 4 +5515,5 6 64 16 16 17 37 108 35 7 8 +17533,1 6 64 16 17 17 11 85 54 7 8 +23994,5 6 57 9 16 17 37 72 54 7 8 +11955,1 6 57 9 16 17 10 85 54 7 4 +12307,5 6 65 66 66 58 7 4 +17022,1 6 57 9 16 17 10 85 54 7 8 +19443,1 6 53 65 9 16 17 11 8 +12306,5 6 65 66 66 58 7 8 +14969,1 6 49 47 48 48 32 7 8 +19444,1 6 53 65 9 16 17 11 13 +4071,1 6 88 57 9 16 36 16 17 37 50 7 4 +18571,1 6 49 47 48 48 32 7 4 +5714,1 45 21 22 17 37 68 7 4 +15591,15 12 36 37 38 37 48 52 7 4 +19978,1 6 53 9 39 36 16 17 63 7 8 +26182,1 6 49 36 37 120 7 4 +6521,1 6 12 11 85 54 7 8 +26801,15 65 88 57 57 9 16 36 37 38 17 10 7 8 +6520,1 6 12 11 85 54 7 4 +21861,5 6 57 34 36 37 17 62 10 7 8 +21963,15 86 34 107 36 37 11 8 +5715,1 45 21 22 17 37 68 7 8 +17956,1 6 57 12 26 65 9 16 17 91 7 4 +14410,15 55 65 66 89 13 +11183,1 6 9 10 23 24 +18256,5 6 57 34 36 37 17 62 10 7 4 +21299,1 6 12 57 9 16 17 37 35 7 8 +26802,15 65 88 57 57 9 16 36 37 38 17 10 7 4 +4006,1 6 90 91 11 8 +15219,5 6 12 11 11 7 8 +21777,15 9 16 17 43 72 11 66 89 7 8 +9503,15 57 86 87 7 4 +4976,15 53 34 35 13 +9504,15 57 86 87 7 8 +4966,1 6 53 12 16 17 10 85 54 7 4 +14496,15 96 16 36 37 38 37 52 7 4 +4967,1 6 53 12 16 17 10 85 54 7 8 +12200,5 6 12 11 11 7 4 +14495,15 96 16 36 37 38 37 52 7 8 +15658,15 51 107 108 108 50 7 8 +4870,1 6 34 107 108 48 35 87 7 8 +15659,15 51 107 108 108 50 7 4 +22155,5 6 9 16 36 16 17 43 52 7 8 +23594,1 6 34 107 108 48 35 87 7 4 +21347,5 6 18 12 16 17 37 68 13 +24563,1 6 86 9 16 17 37 48 52 7 8 +24561,1 6 86 9 16 17 37 48 52 7 4 +17062,15 57 71 61 62 75 7 4 +13436,1 6 9 16 36 37 38 37 52 7 4 +18231,5 6 96 16 36 16 17 19 89 7 4 +22322,1 6 12 16 61 16 61 16 17 10 7 4 +24592,1 45 21 22 17 37 32 93 7 8 +4059,5 6 18 12 16 17 118 17 11 8 +17061,15 57 71 61 62 75 7 8 +3129,1 12 36 16 17 19 13 +13867,1 6 34 47 48 48 50 7 8 +4060,5 6 18 12 16 17 118 17 11 13 +5725,1 6 9 16 36 37 38 37 52 7 8 +15001,1 6 55 53 12 11 54 7 8 +18232,5 6 96 16 36 16 17 19 89 7 8 +23588,1 6 12 16 61 16 61 16 17 10 7 8 +18353,15 86 31 36 37 17 37 35 66 87 7 4 +772,1 6 12 11 58 11 8 +13286,1 6 57 9 16 36 37 38 17 10 54 7 8 +14358,15 53 55 53 12 16 36 37 38 37 35 54 7 8 +18344,15 86 31 36 37 17 37 35 66 87 7 8 +8018,1 6 12 9 16 61 16 17 10 7 4 +7476,1 6 12 9 16 61 16 17 10 7 8 +2201,5 6 88 12 26 65 66 11 89 13 +25675,15 9 16 17 11 14 7 8 +13285,1 6 57 9 16 36 37 38 17 10 54 7 4 +14614,5 6 53 55 56 56 7 4 +18267,1 6 57 53 12 49 50 13 +2854,5 6 57 9 16 17 37 50 54 7 4 +10512,15 34 107 36 37 10 7 4 +20684,1 6 88 51 114 36 37 17 11 13 +16611,5 6 53 55 56 56 7 8 +3444,5 6 57 9 16 17 37 50 54 7 8 +26487,1 6 51 36 37 17 37 68 7 8 +8404,1 6 12 12 67 61 62 63 7 8 +7592,15 31 42 43 10 7 8 +12519,5 6 12 109 110 11 8 +7796,5 6 86 34 36 37 10 7 8 +15590,15 12 36 37 38 37 48 52 7 8 +18724,5 6 86 34 36 37 10 7 4 +23582,15 88 65 66 7 8 +3675,15 57 9 16 36 37 38 37 48 35 7 8 +7591,15 31 42 43 10 7 4 +23581,15 88 65 66 7 4 +3676,15 57 9 16 36 37 38 37 48 35 7 4 +10511,15 34 107 36 37 10 7 8 +9551,1 6 76 16 42 16 17 37 72 7 8 +18211,5 6 92 64 16 42 16 17 10 93 7 4 +16654,1 21 22 17 11 11 8 +19076,15 12 49 9 36 37 17 11 8 +15599,15 88 57 58 58 89 56 54 85 54 7 4 +9552,1 6 76 16 42 16 17 37 72 7 4 +21103,15 53 49 47 48 48 50 54 7 4 +24542,5 6 92 64 16 42 16 17 10 93 7 8 +6206,1 6 53 49 50 54 54 7 8 +15600,15 88 57 58 58 89 56 54 85 54 7 8 +24543,15 55 49 36 37 11 7 4 +21100,15 53 49 47 48 48 50 54 7 8 +5626,1 6 53 16 17 17 54 7 8 +26437,5 6 12 9 16 17 43 13 +886,1 6 67 42 43 17 10 7 4 +4402,5 6 88 57 58 58 66 13 +9556,1 6 51 36 37 17 37 68 7 4 +11613,1 6 53 16 17 17 54 7 4 +10278,1 6 53 49 50 54 54 7 4 +20683,1 6 88 51 114 36 37 17 11 8 +6540,1 6 67 42 43 17 10 7 8 +1016,15 9 39 36 16 61 16 17 62 10 7 4 +23180,1 6 12 16 17 17 7 4 +8525,1 6 12 16 61 16 17 98 +26524,15 34 36 16 42 16 17 11 8 +1017,15 9 39 36 16 61 16 17 62 10 7 8 +593,1 6 9 10 33 13 +4687,1 6 12 11 58 7 4 +6870,5 6 18 12 16 36 16 61 16 17 19 13 +4688,1 6 12 11 58 7 8 +11506,1 6 9 36 16 61 16 17 10 54 7 8 +4938,5 6 53 12 11 85 54 7 8 +20273,1 6 88 12 16 36 16 17 37 50 7 8 +4939,5 6 53 12 11 85 54 7 4 +20274,1 6 88 12 16 36 16 17 37 50 7 4 +4483,15 88 55 9 16 17 10 7 8 +21319,15 71 36 37 10 85 93 7 4 +4484,15 88 55 9 16 17 10 7 4 +5599,1 6 9 16 17 10 85 54 7 8 +6618,5 6 55 26 88 89 7 8 +5600,1 6 9 16 17 10 85 54 7 4 +21318,15 71 36 37 10 85 93 7 8 +2590,15 71 47 48 48 68 7 8 +7049,1 6 53 18 12 16 61 16 17 11 7 8 +2591,15 71 47 48 48 68 7 4 +233,1 6 53 18 12 16 61 16 17 11 7 4 +20268,5 6 57 9 61 62 17 62 10 7 8 +24342,1 6 31 114 36 37 17 19 13 +3502,1 6 51 52 54 54 7 8 +2916,1 6 57 9 16 17 37 72 7 4 +12356,1 6 53 9 16 36 16 17 37 50 85 7 4 +1468,5 6 34 47 47 36 37 17 11 13 +2915,1 6 57 9 16 17 37 72 7 8 +12355,1 6 53 9 16 36 16 17 37 50 85 7 8 +5142,1 6 51 52 54 54 7 4 +17572,1 6 55 53 57 58 13 +23273,1 6 49 109 110 54 7 8 +1467,5 6 34 47 47 36 37 17 11 8 +1821,5 6 64 61 62 17 37 52 93 58 7 4 +8885,5 6 49 107 36 37 11 8 +23274,1 6 49 109 110 54 7 4 +23556,5 6 49 107 36 37 11 13 +13691,5 6 64 61 62 17 37 52 93 58 7 8 +8208,5 6 57 49 36 37 17 11 8 +22864,1 6 12 16 17 17 3 8 +12642,95 16 39 36 16 17 37 35 7 4 +13577,15 65 26 9 16 17 100 7 8 +14691,5 6 9 9 16 17 43 108 50 7 8 +22865,1 6 12 16 17 17 3 4 +12641,95 16 39 36 16 17 37 35 7 8 +748,5 6 9 10 58 89 13 +15539,5 6 92 57 9 36 37 38 10 93 7 8 +10611,15 51 16 17 72 7 4 +26607,5 6 92 57 9 36 37 38 10 93 7 4 +1544,1 6 76 16 42 16 17 10 7 8 +13615,1 12 36 16 17 11 8 +3482,5 6 18 12 16 17 118 17 3 4 +3483,5 6 18 12 16 17 118 17 3 8 +11504,1 6 76 16 42 16 17 10 7 4 +22319,1 6 12 26 65 9 16 17 37 52 7 4 +8170,15 9 39 36 16 61 16 17 37 35 7 4 +22318,1 6 12 26 65 9 16 17 37 52 7 8 +8171,15 9 39 36 16 61 16 17 37 35 7 8 +2076,15 86 34 35 13 +10861,5 6 53 9 10 66 7 8 +21863,5 6 12 88 9 16 36 37 38 17 10 7 4 +24659,5 6 90 36 37 38 91 7 8 +26312,1 6 26 29 30 7 4 +10610,15 51 16 17 72 7 8 +26309,1 6 26 29 30 7 8 +17366,5 6 57 34 107 108 108 35 7 8 +13578,15 65 26 9 16 17 100 7 4 +9842,5 6 34 107 108 35 11 54 7 8 +6292,5 6 53 12 16 17 37 50 7 4 +24526,5 6 34 107 108 35 11 54 7 4 +19679,1 6 55 31 107 108 32 7 4 +22411,1 6 53 55 57 9 16 36 37 38 17 10 7 8 +15871,5 6 53 12 16 17 37 50 7 8 +25626,1 6 53 55 57 9 16 36 37 38 17 10 7 4 +606,1 6 90 91 7 8 +13167,1 6 55 31 107 108 32 7 8 +40,1 6 9 10 27 28 +605,1 6 90 91 7 4 +20401,15 57 53 9 16 17 75 7 8 +20514,1 6 90 91 50 56 7 4 +25115,5 6 53 55 34 35 54 7 4 +5242,1 6 12 36 37 17 11 8 +20402,15 57 53 9 16 17 75 7 4 +20520,1 6 90 91 50 56 7 8 +26185,5 6 65 88 55 56 7 8 +17918,5 6 65 88 55 56 7 4 +5243,1 6 12 36 37 17 11 13 +19581,5 6 57 12 11 58 7 4 +19582,5 6 57 12 11 58 7 8 +8878,1 6 64 42 16 17 62 10 7 4 +12220,1 6 64 42 16 17 62 10 7 8 +12388,95 16 36 37 38 37 48 68 7 8 +994,5 6 53 54 56 7 4 +1703,5 6 9 10 58 11 8 +12389,95 16 36 37 38 37 48 68 7 4 +995,5 6 53 54 56 7 8 +24838,70 16 17 17 37 35 7 8 +18031,70 16 17 17 37 35 7 4 +15434,1 6 64 16 36 37 38 17 10 93 7 4 +11759,5 6 90 16 17 37 50 7 8 +25697,1 6 9 61 62 48 52 7 4 +20477,5 6 84 12 9 16 17 37 35 85 54 7 4 +15433,1 6 64 16 36 37 38 17 10 93 7 8 +13043,15 44 31 47 48 35 11 8 +14852,1 12 9 16 17 37 48 72 7 4 +6039,1 6 65 57 58 58 7 8 +3229,5 6 67 47 48 72 7 4 +10658,5 6 67 47 48 72 7 8 +15768,1 6 12 36 37 11 13 +14297,5 6 12 16 36 16 17 63 7 8 +10016,1 6 12 36 37 11 8 +25435,1 6 57 55 49 47 48 68 7 8 +17352,1 6 57 55 49 47 48 68 7 4 +23092,1 6 55 51 47 48 35 7 8 +5962,5 6 53 86 87 7 4 +23091,1 6 55 51 47 48 35 7 4 +24427,5 6 65 9 39 36 16 36 16 17 37 115 32 7 4 +5963,5 6 53 86 87 7 8 +315,1 6 64 16 17 10 7 4 +25737,15 57 9 16 17 19 7 8 +25736,15 57 9 16 17 19 7 4 +25564,1 6 53 9 16 36 16 17 37 52 85 54 7 8 +316,1 6 64 16 17 10 7 8 +4864,5 6 53 18 9 16 17 11 8 +8465,1 6 92 9 10 27 54 7 4 +23354,15 51 47 36 16 17 10 7 4 +26426,1 6 88 88 96 16 21 77 78 22 79 4 +12289,5 6 9 16 17 37 115 50 66 7 8 +4426,15 12 11 33 13 +8461,1 6 92 9 10 27 54 7 8 +23442,5 6 51 114 36 37 17 11 8 +2168,15 57 65 55 56 13 +15213,5 6 12 16 17 19 58 7 4 +24909,1 6 88 55 9 16 17 37 35 7 4 +11157,1 12 16 36 16 17 37 115 68 89 7 8 +24969,70 16 36 16 61 16 61 16 17 19 13 +12133,1 6 12 12 16 36 37 38 37 35 87 7 8 +18763,1 6 57 57 92 12 11 93 58 7 4 +7195,1 6 88 57 58 66 27 28 +12134,1 6 12 12 16 36 37 38 37 35 87 7 4 +7871,5 6 96 16 17 69 +12941,5 6 55 9 16 17 37 48 50 7 4 +15252,5 6 18 9 16 17 10 93 7 8 +515,5 6 12 16 17 11 7 8 +15251,5 6 18 9 16 17 10 93 7 4 +15265,1 6 55 12 88 55 56 89 56 7 4 +2860,15 57 9 16 17 11 8 +22002,1 6 88 57 58 66 27 13 +26821,15 119 16 42 16 17 11 8 +16012,15 44 31 47 48 35 7 4 +26822,15 119 16 42 16 17 11 13 +3587,15 55 34 36 37 17 69 +19146,1 6 12 12 71 72 7 8 +7692,1 6 12 12 71 72 7 4 +18325,70 16 16 17 11 8 +26761,15 12 36 16 61 16 36 37 38 37 68 54 7 8 +6083,5 6 12 16 17 11 7 4 +26762,15 12 36 16 61 16 36 37 38 37 68 54 7 4 +21794,5 6 67 47 48 72 11 8 +11411,5 6 53 55 9 16 17 69 +9753,5 6 84 55 9 16 42 16 17 37 72 85 7 4 +15929,15 55 34 36 37 19 13 +3805,15 12 11 27 28 +15934,15 34 107 36 37 38 17 62 10 7 4 +21932,5 6 57 9 36 37 38 17 10 54 7 4 +19765,15 86 34 36 37 17 106 7 8 +17165,5 6 57 92 31 36 37 11 8 +16013,15 44 31 47 48 35 7 8 +22931,5 6 57 9 36 37 38 17 10 54 7 8 +8342,15 55 53 31 32 13 +11822,5 6 57 34 36 37 94 +1481,1 12 11 14 54 54 7 8 +4237,5 6 88 55 88 9 16 17 10 7 4 +20324,15 57 96 36 16 17 37 48 35 7 8 +2861,15 57 9 16 17 11 13 +4236,5 6 88 55 88 9 16 17 10 7 8 +20323,15 57 96 36 16 17 37 48 35 7 4 +6229,5 6 34 36 37 19 89 7 8 +1375,1 12 11 14 54 54 7 4 +4716,5 6 34 36 37 19 89 7 4 +15461,5 6 53 54 56 66 7 4 +15457,5 6 53 54 56 66 7 8 +20891,5 6 12 16 36 37 38 10 7 4 +16760,1 6 73 74 11 56 7 4 +11584,15 31 114 115 115 32 7 8 +197,1 6 12 11 13 +2026,5 6 64 16 36 16 17 37 35 7 8 +9750,5 6 57 9 16 17 43 72 85 7 4 +2027,5 6 64 16 36 16 17 37 35 7 4 +24222,5 6 64 36 37 38 37 35 93 58 7 4 +15000,15 55 53 12 34 35 33 13 +26745,1 6 53 51 36 37 17 37 52 7 4 +2087,15 34 107 36 37 38 17 37 35 7 4 +14517,5 6 124 9 16 17 10 54 7 4 +17235,1 6 55 53 57 58 56 54 7 4 +21479,5 6 64 36 37 38 37 35 93 58 7 8 +24040,1 6 53 51 36 37 17 37 52 7 8 +14272,1 6 55 53 57 58 56 54 7 8 +14511,5 6 124 9 16 17 10 54 7 8 +12499,1 6 53 18 12 61 16 17 11 7 4 +11585,15 31 114 115 115 32 7 4 +2814,15 55 57 67 47 36 37 17 11 8 +2815,15 55 57 67 47 36 37 17 11 13 +16885,5 6 88 89 54 54 7 8 +26087,5 6 12 65 9 16 17 43 72 11 8 +4103,5 6 88 65 9 16 17 43 72 7 8 +26746,15 12 16 61 16 21 77 78 22 79 4 +6587,5 6 64 61 62 17 37 48 35 11 8 +16102,1 6 57 58 93 7 4 +22407,15 96 36 37 38 19 56 89 56 11 8 +14055,15 57 88 12 26 9 16 17 11 54 7 4 +16103,1 6 57 58 93 7 8 +25820,5 6 53 36 37 17 11 8 +913,15 55 9 16 17 10 7 4 +912,15 55 9 16 17 10 7 8 +19055,1 6 18 12 16 42 16 17 37 108 72 7 4 +21885,5 6 76 42 43 17 10 7 4 +6852,5 6 57 34 36 37 17 63 7 4 +21674,5 6 76 42 43 17 10 7 8 +22180,15 12 16 36 16 17 19 56 7 4 +26854,5 6 53 57 9 16 17 10 7 4 +22181,15 12 16 36 16 17 19 56 7 8 +6855,5 6 57 34 36 37 17 63 7 8 +6869,5 6 18 12 16 36 16 17 37 50 7 4 +22836,5 6 12 90 61 16 17 11 8 +24544,1 12 11 58 89 58 7 8 +21658,5 6 51 47 48 32 54 7 4 +9588,5 6 86 87 54 7 4 +144,5 6 9 10 58 7 4 +10357,5 6 86 87 54 7 8 +143,5 6 9 10 58 7 8 +5736,25 26 27 13 +14374,1 6 55 9 16 17 37 35 54 7 8 +11561,1 6 55 86 87 13 +16890,15 55 34 36 37 11 13 +16889,15 55 34 36 37 11 8 +25021,5 6 65 96 36 37 38 19 66 58 7 4 +12250,5 6 12 65 9 16 17 43 72 7 4 +9948,1 6 84 90 91 7 4 +16575,5 6 57 92 31 36 37 17 69 +9478,5 6 12 16 36 16 17 63 7 4 +26638,1 6 57 57 26 65 66 13 +15920,5 6 34 107 36 16 61 16 17 94 +18403,5 6 64 61 62 17 37 48 35 7 4 +26773,1 6 71 36 37 17 19 7 8 +18404,5 6 64 61 62 17 37 48 35 7 8 +26772,1 6 71 36 37 17 19 7 4 +23611,1 6 55 9 16 17 37 35 54 7 4 +14853,1 12 9 16 17 37 48 72 7 8 +22880,5 6 64 16 36 16 17 62 10 7 4 +18600,5 6 55 53 57 9 16 61 16 17 62 10 7 4 +23178,1 6 9 10 58 89 27 56 7 8 +4885,70 16 36 16 61 16 17 37 50 7 8 +17236,5 6 55 53 57 9 16 61 16 17 62 10 7 8 +12251,5 6 12 65 9 16 17 43 72 7 8 +6563,1 6 9 10 58 89 27 56 7 4 +931,1 6 84 90 91 7 8 +4886,70 16 36 16 61 16 17 37 50 7 4 +23064,15 12 57 9 16 36 37 38 17 10 7 4 +25015,1 6 88 51 42 43 17 10 7 8 +23065,15 12 57 9 16 36 37 38 17 10 7 8 +25016,1 6 88 51 42 43 17 10 7 4 +21019,5 6 53 9 10 10 54 54 7 4 +22058,1 6 71 117 16 17 10 7 8 +22879,5 6 64 16 36 16 17 62 10 7 8 +14077,5 6 53 9 10 10 54 54 7 8 +22057,1 6 71 117 16 17 10 7 4 +11297,1 6 88 9 16 61 16 17 62 10 7 8 +13315,5 6 64 61 62 17 91 54 7 8 +6236,5 6 64 16 36 37 38 17 37 108 35 7 4 +13316,5 6 64 61 62 17 91 54 7 4 +8075,5 6 53 67 47 36 37 10 7 8 +10725,1 6 105 106 27 28 +8079,5 6 53 67 47 36 37 10 7 4 +11224,1 6 99 16 17 17 19 13 +22760,1 12 109 110 58 11 8 +22964,15 65 88 67 68 7 4 +2954,5 45 21 22 17 37 35 93 7 8 +21434,1 12 16 39 36 16 61 16 17 19 13 +22965,15 65 88 67 68 7 8 +6505,5 6 64 61 62 17 17 37 32 54 7 4 +17789,15 57 88 89 56 7 8 +19615,1 6 64 53 84 85 7 4 +22269,5 6 65 9 16 17 37 72 7 4 +6504,5 6 64 61 62 17 17 37 32 54 7 8 +17790,15 57 88 89 56 7 4 +22268,5 6 65 9 16 17 37 72 7 8 +21200,5 6 53 49 36 37 74 54 7 4 +11934,15 67 47 48 72 85 54 7 8 +26272,5 6 53 49 36 37 74 54 7 8 +24857,5 6 67 42 43 17 37 52 54 7 8 +11935,15 67 47 48 72 85 54 7 4 +20651,1 6 57 9 16 36 16 61 16 17 11 8 +21746,1 6 12 34 35 27 11 8 +24370,1 6 9 36 16 61 16 17 37 32 7 4 +16865,15 31 36 37 37 35 87 54 7 4 +19135,1 6 9 36 16 61 16 17 37 32 7 8 +24341,5 6 31 114 36 37 17 19 13 +2504,15 34 36 37 38 19 89 11 8 +26392,1 6 57 9 16 36 16 61 16 17 11 13 +19748,1 6 88 9 16 42 16 17 10 7 4 +3511,15 53 53 16 17 62 10 7 8 +1859,15 53 53 16 17 62 10 7 4 +16866,15 31 36 37 37 35 87 54 7 8 +25099,5 6 9 16 17 43 68 11 7 8 +1132,1 6 53 31 36 37 17 10 7 4 +22531,15 9 61 62 72 66 11 8 +4565,5 6 41 88 12 26 9 16 17 11 8 +14919,5 6 65 51 61 62 10 7 4 +832,1 6 57 9 16 17 10 7 8 +23587,5 6 96 16 21 77 101 102 103 +23760,1 6 53 55 12 11 56 54 7 8 +51,5 6 29 31 32 33 13 +1133,1 6 53 31 36 37 17 10 7 8 +14920,5 6 65 51 61 62 10 7 8 +1592,1 6 57 9 16 17 10 7 4 +567,1 6 53 71 47 48 68 54 7 4 +566,1 6 53 71 47 48 68 54 7 8 +15336,1 6 53 9 16 39 36 16 17 10 7 4 +6226,5 6 53 9 36 16 17 37 50 7 8 +6784,1 6 53 9 16 39 36 16 17 10 7 8 +6225,5 6 53 9 36 16 17 37 50 7 4 +2606,5 6 57 49 50 7 4 +9048,15 57 9 16 36 16 17 11 13 +9047,15 57 9 16 36 16 17 11 8 +19087,5 6 64 16 36 16 117 118 32 7 8 +7660,1 6 51 47 48 68 7 8 +10183,1 6 51 47 48 68 7 4 +2607,5 6 57 49 50 7 8 +26647,5 6 34 35 93 58 7 4 +21228,5 6 9 10 66 89 11 7 4 +14585,15 12 16 61 16 36 16 17 19 13 +7789,15 53 12 16 17 37 32 7 4 +7790,15 53 12 16 17 37 32 7 8 +20681,15 57 51 42 43 17 11 8 +2907,1 6 53 12 16 39 36 16 17 10 7 8 +12914,1 6 53 26 55 71 72 13 +25912,1 12 31 31 42 43 17 63 7 8 +2908,1 6 53 12 16 39 36 16 17 10 7 4 +20682,15 57 51 42 43 17 11 13 +19088,5 6 64 16 36 16 117 118 32 7 4 +5200,15 34 36 37 38 19 89 7 8 +26845,15 88 57 9 16 36 37 38 37 35 54 7 4 +8912,15 12 11 11 13 +1615,15 12 11 11 8 +26844,15 88 57 9 16 36 37 38 37 35 54 7 8 +12411,1 6 12 26 65 66 54 7 8 +12174,1 6 64 39 36 16 17 63 7 8 +21857,15 12 88 9 16 36 37 38 37 52 7 4 +21858,15 12 88 9 16 36 37 38 37 52 7 8 +22420,1 6 53 88 71 72 7 8 +8988,1 6 53 67 36 37 17 10 7 4 +1201,15 31 36 16 61 16 17 37 32 7 8 +8989,1 6 53 67 36 37 17 10 7 8 +10742,1 6 9 16 61 16 39 36 16 17 19 7 4 +1747,5 6 12 9 16 17 11 8 +17679,5 6 34 35 93 58 7 8 +12412,1 6 12 26 65 66 54 7 4 +26717,1 6 9 16 61 16 39 36 16 17 19 7 8 +19763,1 6 105 106 33 13 +20272,5 6 88 12 16 36 16 17 37 50 7 8 +22236,5 6 34 36 16 17 10 7 8 +11267,1 6 9 36 16 36 39 36 16 17 19 7 4 +19046,1 6 55 12 57 9 36 16 17 37 108 35 7 8 +21949,1 6 55 12 55 96 16 21 77 78 22 79 4 +16596,15 67 47 61 62 63 7 8 +16597,15 67 47 61 62 63 7 4 +4329,5 6 18 9 16 17 10 7 8 +452,5 6 84 9 10 87 85 7 4 +24362,1 6 18 12 16 42 16 17 37 7 8 +4282,1 6 55 67 61 62 63 7 4 +7712,5 6 84 9 10 87 85 7 8 +1748,5 6 12 9 16 17 11 13 +26473,1 6 53 88 9 16 36 37 38 37 48 35 54 7 4 +1085,1 6 55 67 61 62 63 7 8 +4326,5 6 18 9 16 17 10 7 4 +26847,1 6 53 88 9 16 36 37 38 37 48 35 54 7 8 +20328,1 12 16 17 11 54 7 4 +3413,1 12 16 17 11 54 7 8 +13472,5 6 18 12 9 16 17 62 10 7 8 +14854,5 6 9 9 9 9 9 16 17 43 32 7 4 +802,5 6 84 12 16 36 37 38 17 11 8 +17123,5 6 9 9 9 9 9 16 17 43 32 7 8 +7830,1 6 49 47 48 50 7 8 +7829,1 6 49 47 48 50 7 4 +18415,15 57 26 65 9 16 17 11 8 +18657,1 6 49 107 108 48 35 7 4 +11983,1 6 55 12 57 9 16 17 19 7 4 +14931,1 6 84 57 88 89 13 +23778,1 6 55 57 9 16 36 16 17 37 72 85 7 4 +20282,1 6 55 57 9 16 36 16 17 37 72 85 7 8 +15654,1 6 49 107 108 48 35 7 8 +18470,1 6 88 89 89 66 7 4 +1353,1 12 9 16 61 16 17 11 13 +1352,1 12 9 16 61 16 17 11 8 +6218,1 6 53 51 36 37 10 7 4 +26217,5 6 57 55 86 87 56 7 8 +6219,1 6 53 51 36 37 10 7 8 +13206,1 6 88 89 89 66 7 8 +11360,5 6 86 34 42 43 17 10 7 4 +14630,15 9 61 62 68 54 7 8 +6800,1 6 34 36 37 17 35 7 4 +7575,5 6 53 51 36 37 11 89 7 4 +14631,15 9 61 62 68 54 7 4 +19771,15 44 105 16 36 16 17 10 7 8 +21449,15 31 42 43 17 37 108 50 54 7 4 +19770,15 44 105 16 36 16 17 10 7 4 +21448,15 31 42 43 17 37 108 50 54 7 8 +17693,70 16 36 16 17 37 32 7 4 +394,5 6 12 71 36 37 17 11 8 +17692,70 16 36 16 17 37 32 7 8 +116,5 6 53 54 7 4 +12028,5 6 86 34 47 36 37 17 69 +115,5 6 53 54 7 8 +15089,15 57 88 55 53 9 10 87 58 54 54 7 8 +11171,15 55 12 88 9 16 39 36 16 17 19 7 4 +21765,1 6 88 88 65 66 7 8 +12502,5 6 57 53 12 16 36 37 38 17 11 13 +11170,15 55 12 88 9 16 39 36 16 17 19 7 8 +13900,1 6 55 26 88 89 66 13 +23238,1 6 88 88 65 66 7 4 +4694,15 34 107 108 35 54 54 7 4 +4693,15 34 107 108 35 54 54 7 8 +22556,1 6 12 49 50 11 7 4 +26406,5 6 64 61 62 17 37 68 68 54 7 8 +21941,5 6 55 12 88 57 58 11 8 +25963,5 6 31 32 58 7 4 +11020,1 6 31 9 42 43 17 63 7 8 +26693,1 6 73 16 42 16 17 37 10 7 4 +22343,1 45 21 22 17 19 110 35 7 4 +12501,5 6 57 53 12 16 36 37 38 17 11 8 +22336,1 45 21 22 17 19 110 35 7 8 +16640,5 6 55 57 9 16 17 43 32 93 7 4 +15394,1 6 31 9 42 43 17 63 7 4 +16570,5 6 57 92 34 35 93 58 7 4 +2173,5 6 57 92 34 35 93 58 7 8 +10752,1 12 16 42 16 17 11 8 +10753,1 12 16 42 16 17 11 13 +20929,5 6 12 12 16 36 37 38 37 48 72 11 7 8 +7498,15 67 51 36 37 10 7 4 +3955,1 6 84 9 10 11 8 +17405,1 6 42 43 17 37 87 30 7 4 +7499,15 67 51 36 37 10 7 8 +5491,5 6 53 9 31 32 7 8 +1321,5 6 53 9 31 32 7 4 +13608,5 6 18 31 32 7 8 +21293,5 6 12 88 55 9 16 17 10 7 4 +9662,15 12 11 30 58 7 4 +9663,15 12 11 30 58 7 8 +18716,15 57 55 31 47 48 32 7 4 +18715,15 57 55 31 47 48 32 7 8 +24206,5 6 12 65 88 9 16 17 91 7 8 +19646,1 6 53 12 16 36 16 61 16 17 19 +19453,5 6 64 61 16 17 17 37 35 11 7 8 +26340,1 6 53 26 55 34 36 37 11 8 +935,1 6 84 73 74 13 +4961,5 6 31 32 56 7 4 +13772,1 6 92 57 9 36 37 38 37 35 7 4 +3577,5 6 31 32 56 7 8 +9357,15 12 16 36 37 38 37 32 54 7 4 +26608,1 6 92 57 9 36 37 38 37 35 7 8 +17147,5 6 92 34 42 43 17 63 7 8 +18122,1 6 53 90 91 54 7 4 +172,1 6 65 49 50 13 +18123,1 6 53 90 91 54 7 8 +14236,15 49 42 43 17 11 7 4 +18628,15 49 42 43 17 11 7 8 +1925,15 53 9 16 17 10 54 7 4 +14471,15 49 107 108 68 7 4 +2942,5 6 9 16 17 62 32 54 7 4 +17691,1 6 96 16 36 16 17 37 32 7 8 +9157,1 6 53 12 61 16 17 37 48 32 7 8 +3356,15 53 9 16 17 10 54 7 8 +2943,5 6 9 16 17 62 32 54 7 8 +16175,5 6 64 61 62 17 62 68 7 8 +16172,5 6 64 61 62 17 62 68 7 4 +24227,1 6 96 16 36 16 17 37 32 7 4 +14036,70 16 36 16 117 118 32 7 4 +14037,70 16 36 16 117 118 32 7 8 +2925,1 6 92 31 32 13 +15769,5 6 12 36 16 61 16 17 19 13 +21906,5 6 51 47 48 50 56 89 7 8 +2141,1 6 12 55 56 13 +14470,15 49 107 108 68 7 8 +347,5 6 55 56 13 +10751,5 6 53 12 31 42 43 17 63 7 8 +351,1 6 9 16 17 43 35 7 8 +11575,1 6 9 16 17 43 35 7 4 +5431,15 57 55 53 12 39 36 16 36 37 38 17 37 35 54 7 8 +17968,5 6 26 65 66 11 7 8 +5430,15 57 55 53 12 39 36 16 36 37 38 17 37 35 54 7 4 +10206,5 6 26 65 66 11 7 4 +25195,15 57 55 55 67 61 62 63 7 4 +25194,15 57 55 55 67 61 62 63 7 8 +13302,5 6 57 57 57 88 89 66 13 +15708,5 6 57 53 57 57 9 16 17 69 +24041,1 6 65 71 47 48 72 7 8 +22868,1 6 65 9 16 17 37 48 50 7 8 +24458,1 6 65 71 47 48 72 7 4 +10321,1 6 65 9 16 17 37 48 50 7 4 +5752,15 12 11 58 13 +22188,5 6 26 57 9 16 42 16 17 11 13 +19119,15 55 53 88 55 57 12 11 58 7 4 +8915,1 6 53 57 58 66 54 7 4 +24232,95 36 37 38 19 7 4 +6717,1 45 21 22 17 10 7 4 +19118,15 55 53 88 55 57 12 11 58 7 8 +22187,5 6 26 57 9 16 42 16 17 11 8 +5155,1 6 53 57 58 66 54 7 8 +24231,95 36 37 38 19 7 8 +9274,1 45 21 22 17 10 7 8 +15923,1 6 12 36 37 38 37 35 7 4 +5954,1 6 12 36 37 38 37 35 7 8 +24652,1 6 57 9 16 36 16 17 37 52 7 4 +13045,5 6 12 34 47 48 35 11 8 +15445,5 6 57 53 9 16 61 16 17 10 7 4 +21907,5 6 51 47 48 50 56 89 7 4 +13178,5 6 92 31 47 42 43 17 10 7 8 +21056,5 6 86 9 16 17 69 +18918,5 6 92 31 47 42 43 17 10 7 4 +26166,5 6 57 53 9 16 61 16 17 10 7 8 +7508,1 6 105 16 17 10 7 4 +8414,1 12 11 66 58 7 8 +2999,1 6 105 16 17 10 7 8 +5351,1 6 12 16 21 77 78 22 8 +8701,1 12 16 39 36 16 17 37 50 7 4 +14054,15 57 88 12 26 9 16 17 11 8 +4817,1 6 88 51 36 37 11 8 +16295,1 12 11 66 58 7 4 +23793,5 6 34 36 37 17 37 72 7 8 +25466,5 6 53 9 16 17 37 52 7 4 +17896,5 6 53 9 16 17 37 52 7 8 +13141,1 6 9 16 17 17 91 7 4 +23794,15 34 36 37 17 37 72 7 8 +11609,1 6 84 18 12 11 85 54 7 4 +17944,1 12 16 39 36 16 17 37 50 7 8 +13140,1 6 9 16 17 17 91 7 8 +10898,1 6 84 18 12 11 85 54 7 8 +22521,5 6 9 36 16 17 37 35 11 8 +19628,15 31 47 48 48 32 54 7 4 +14916,5 6 96 36 16 17 37 35 30 7 4 +19627,15 31 47 48 48 32 54 7 8 +23795,15 34 36 37 17 37 72 7 4 +22468,5 6 88 12 57 9 16 61 16 17 11 8 +7288,1 6 9 16 17 43 35 11 8 +14915,5 6 96 36 16 17 37 35 30 7 8 +4818,1 6 88 51 36 37 11 13 +1351,5 6 53 9 16 61 16 17 11 8 +19038,5 6 64 16 17 106 7 4 +1712,15 55 12 55 56 89 11 8 +9101,5 6 53 55 49 50 56 54 7 4 +19039,5 6 64 16 17 106 7 8 +3679,5 6 88 57 58 13 +2594,5 6 53 51 52 13 +17429,1 6 88 9 16 36 16 17 37 50 7 8 +6724,1 6 55 57 53 9 16 17 10 54 7 8 +3965,5 6 55 56 89 13 +9276,1 6 55 57 53 9 16 17 10 54 7 4 +21364,1 6 12 36 37 38 37 35 85 54 7 8 +14613,1 6 9 10 87 66 56 54 7 4 +17428,1 6 88 9 16 36 16 17 37 50 7 4 +14612,1 6 9 10 87 66 56 54 7 8 +25281,5 6 12 16 36 16 17 37 35 11 7 4 +13644,1 6 67 114 115 68 7 4 +13638,1 6 67 114 115 68 7 8 +20881,5 6 57 58 89 11 7 4 +10771,1 12 16 39 36 16 61 16 17 11 8 +5647,25 26 27 58 89 7 4 +4608,5 6 64 61 62 17 37 35 30 7 4 +5533,1 6 34 47 48 52 7 4 +15388,1 12 31 32 13 +5648,25 26 27 58 89 7 8 +25152,5 6 84 9 16 36 37 38 37 52 85 54 7 8 +20032,5 6 55 53 71 72 13 +10279,5 6 53 9 16 17 10 54 54 7 4 +9944,5 6 84 9 16 36 37 38 37 52 85 54 7 4 +22183,1 6 55 96 16 21 77 101 102 103 +8021,5 6 53 9 16 17 10 54 54 7 8 +20632,5 6 119 16 42 16 17 11 13 +9499,1 6 53 90 91 89 54 54 7 4 +17318,5 6 12 36 16 61 16 17 11 8 +5287,1 6 53 90 91 89 54 54 7 8 +12657,5 6 55 55 53 31 36 37 17 10 7 4 +1206,5 6 12 16 17 10 7 8 +12658,5 6 55 55 53 31 36 37 17 10 7 8 +11423,5 6 9 36 16 17 37 35 7 8 +19043,5 6 119 16 42 16 17 11 8 +11422,5 6 9 36 16 17 37 35 7 4 +12376,5 6 67 68 11 7 4 +14666,5 6 57 58 27 56 54 7 4 +15963,5 6 9 16 39 36 16 17 19 7 8 +4950,15 57 9 16 17 11 85 54 7 8 +18664,5 6 73 16 17 11 8 +20848,1 6 57 57 12 16 17 19 13 +7992,5 6 57 58 27 56 54 7 8 +16520,5 6 9 16 39 36 16 17 19 7 4 +1319,5 6 12 16 17 10 7 4 +24994,1 12 16 17 37 68 7 8 +20309,1 12 16 17 37 68 7 4 +14214,70 16 39 36 39 36 16 17 37 50 7 8 +23960,15 55 12 55 56 89 7 4 +14215,70 16 39 36 39 36 16 17 37 50 7 4 +1599,1 6 105 106 7 4 +11454,15 55 12 57 96 36 16 17 19 58 11 56 7 4 +1600,1 6 105 106 7 8 +12279,15 49 114 115 35 66 7 8 +16007,15 12 39 36 16 21 77 78 22 79 4 +11375,5 6 31 47 48 50 7 4 +4989,5 6 9 10 110 48 35 54 7 4 +12278,15 49 114 115 35 66 7 4 +11374,5 6 31 47 48 50 7 8 +4990,5 6 9 10 110 48 35 54 7 8 +23237,15 55 12 57 96 36 16 17 19 58 11 56 7 8 +18545,1 12 9 16 17 43 32 54 7 4 +19997,1 6 53 31 47 36 37 17 37 35 54 7 4 +3393,1 6 53 18 12 16 17 37 35 11 54 7 4 +18544,1 12 9 16 17 43 32 54 7 8 +12445,70 36 37 38 17 11 13 +18953,5 6 12 61 36 61 16 17 19 13 +12444,70 36 37 38 17 11 8 +21311,5 6 57 9 36 37 38 37 48 72 54 7 4 +25491,15 96 16 39 36 16 17 10 7 4 +20371,5 6 29 9 16 17 37 35 87 30 7 8 +17415,5 6 57 9 36 37 38 37 48 72 54 7 8 +25492,15 96 16 39 36 16 17 10 7 8 +20372,5 6 29 9 16 17 37 35 87 30 7 4 +17497,5 6 53 9 10 58 87 58 56 54 7 8 +19598,1 6 64 42 16 17 11 7 8 +17498,5 6 53 9 10 58 87 58 56 54 7 4 +21184,1 6 64 42 16 17 11 7 4 +15805,1 6 88 57 9 16 17 10 7 8 +15039,1 6 92 9 10 56 7 4 +21362,5 6 34 36 37 11 85 54 7 4 +15059,5 6 9 36 16 17 62 10 7 4 +5298,5 6 12 16 17 43 32 54 7 8 +23953,5 6 51 52 56 54 54 7 8 +13486,5 6 9 36 16 17 62 10 7 8 +19939,15 53 34 36 37 17 37 35 7 4 +13378,5 6 12 16 17 43 32 54 7 4 +14122,1 6 88 57 9 16 17 10 7 4 +6192,5 6 55 57 67 61 62 63 7 8 +12035,15 34 47 36 16 61 16 17 19 89 7 4 +8384,5 6 67 68 11 11 8 +12986,1 6 92 9 10 56 7 8 +18164,5 6 55 31 36 37 17 11 8 +18242,1 6 57 9 16 17 37 32 93 7 8 +7331,1 6 57 9 16 17 37 32 93 7 4 +5617,1 6 9 36 16 61 16 17 19 7 8 +1267,5 6 64 61 62 17 37 10 54 7 4 +5618,1 6 9 36 16 61 16 17 19 7 4 +723,5 6 9 10 56 89 13 +21702,5 6 9 10 58 87 56 7 8 +1180,1 6 53 34 42 43 17 63 7 4 +20941,1 6 18 12 16 17 43 48 72 7 4 +23585,1 6 18 12 16 17 43 17 10 7 4 +2210,5 6 9 10 58 27 28 +4029,5 6 55 53 12 16 17 19 13 +14995,15 49 107 36 37 19 33 13 +22462,1 6 18 12 16 17 43 17 10 7 8 +21703,5 6 9 10 58 87 56 7 4 +9788,5 6 57 86 9 16 36 37 38 17 10 85 7 8 +19035,5 6 64 16 36 16 61 16 17 37 35 54 7 8 +2646,5 6 53 31 42 43 17 10 54 7 4 +26203,5 6 53 12 16 17 19 7 4 +21353,1 12 36 16 17 37 68 89 7 4 +22805,70 36 16 61 16 17 19 54 7 4 +1136,5 6 64 61 62 17 37 32 54 7 4 +11676,5 6 57 86 9 16 36 37 38 17 10 85 7 4 +22847,1 6 18 12 16 17 43 48 72 7 8 +1137,5 6 64 61 62 17 37 32 54 7 8 +12864,5 6 64 16 36 16 61 16 17 37 35 54 7 4 +1181,1 6 53 34 42 43 17 63 7 8 +26202,5 6 53 12 16 17 19 7 8 +25619,1 6 67 51 36 37 17 3 4 +15893,1 6 67 51 36 37 17 3 8 +5309,5 6 53 31 42 43 17 10 54 7 8 +18923,15 31 47 61 62 63 7 4 +22804,70 36 16 61 16 17 19 54 7 8 +18924,15 31 47 61 62 63 7 8 +25258,1 6 55 56 89 58 56 7 8 +23833,15 34 114 36 37 10 7 8 +23834,15 34 114 36 37 10 7 4 +23959,15 53 34 36 37 17 62 10 7 8 +23653,1 6 9 10 110 72 7 4 +12152,5 6 71 72 66 7 4 +7212,1 12 36 16 17 37 68 89 7 8 +8209,15 57 49 36 37 17 11 8 +10063,1 6 57 58 58 89 56 13 +1023,1 6 9 10 89 13 +8210,15 57 49 36 37 17 11 13 +1324,1 6 31 42 43 17 10 7 8 +1323,1 6 31 42 43 17 10 7 4 +2718,1 12 9 16 17 10 7 8 +23985,5 6 12 16 36 39 36 16 17 37 68 7 4 +2717,1 12 9 16 17 10 7 4 +23984,5 6 12 16 36 39 36 16 17 37 68 7 8 +16925,1 6 53 18 12 16 17 37 35 54 7 4 +3977,5 6 18 12 16 17 37 50 56 7 8 +13537,5 6 64 61 62 17 37 52 58 54 7 4 +10880,1 6 53 18 12 16 17 37 35 54 7 8 +11895,5 6 64 61 62 17 37 52 58 54 7 8 +10736,1 6 53 9 36 16 17 37 50 85 54 7 4 +19326,5 6 57 9 16 17 37 72 56 7 8 +22090,15 55 53 57 9 16 17 37 50 54 7 4 +1366,1 6 53 9 36 16 17 37 50 85 54 7 8 +24169,1 6 9 36 16 16 17 37 32 7 4 +22091,15 55 53 57 9 16 17 37 50 54 7 8 +25427,1 6 9 36 16 16 17 37 32 7 8 +12269,15 67 114 115 72 7 4 +17821,1 6 49 16 17 17 50 58 7 8 +17822,1 6 49 16 17 17 50 58 7 4 +22587,5 6 18 12 16 17 37 72 56 7 4 +20403,5 6 18 12 16 17 37 72 56 7 8 +23958,15 53 34 36 37 17 62 10 7 4 +14217,15 12 36 37 38 37 48 50 7 4 +25423,1 6 84 18 12 16 17 10 85 7 8 +23253,1 6 84 18 12 16 17 10 85 7 4 +23526,5 6 53 53 51 36 37 17 10 54 54 7 4 +5010,5 6 29 31 32 7 8 +13591,1 6 55 53 57 9 16 17 37 48 72 54 7 8 +12268,15 67 114 115 72 7 8 +5009,5 6 29 31 32 7 4 +23714,1 6 55 53 57 9 16 17 37 48 72 54 7 4 +7278,1 6 55 53 12 16 39 36 16 17 62 10 7 4 +15965,5 6 55 12 57 96 36 37 38 37 72 7 4 +3201,15 9 16 36 16 17 10 7 4 +21048,1 6 92 65 66 7 4 +5382,1 6 53 90 16 61 16 61 16 17 62 10 7 4 +16185,15 57 9 16 36 16 42 16 17 37 35 7 4 +5446,15 9 16 36 16 17 10 7 8 +10155,15 12 36 16 17 37 35 7 4 +1926,15 53 9 16 17 62 10 7 8 +14800,1 6 92 65 66 7 8 +16186,15 57 9 16 36 16 42 16 17 37 35 7 8 +2153,5 6 55 12 57 96 36 37 38 37 72 7 8 +10623,15 12 36 16 17 37 35 7 8 +17575,5 2 16 17 37 48 35 7 4 +6209,5 6 64 61 62 17 37 50 54 54 7 8 +19112,1 6 55 53 55 56 89 13 +5381,1 6 53 90 16 61 16 61 16 17 62 10 7 8 +5556,15 53 9 16 17 62 10 7 4 +13152,1 6 55 53 12 16 39 36 16 17 62 10 7 8 +17576,5 2 16 17 37 48 35 7 8 +23559,70 39 36 39 36 16 42 16 17 37 108 52 7 8 +20137,15 9 36 37 69 +23558,70 39 36 39 36 16 42 16 17 37 108 52 7 4 +8639,15 12 16 17 19 11 8 +1268,5 6 64 61 62 17 37 10 54 7 8 +548,5 6 53 9 36 16 17 10 7 8 +17099,5 6 12 16 36 16 17 43 32 66 7 8 +547,5 6 53 9 36 16 17 10 7 4 +26232,5 6 12 16 36 16 17 43 32 66 7 4 +1573,1 6 9 16 36 37 38 37 50 7 8 +24527,15 55 88 57 9 16 17 37 68 7 4 +7755,1 6 9 16 36 37 38 37 50 7 4 +21144,5 6 55 53 12 16 17 11 8 +22994,5 6 64 16 36 16 61 16 17 37 72 66 11 8 +22476,15 55 53 12 57 96 16 21 77 78 22 79 4 +9993,1 6 12 90 16 17 120 7 8 +9992,1 6 12 90 16 17 120 7 4 +14980,5 6 9 16 36 16 36 16 17 11 8 +5495,1 6 12 26 65 9 16 17 37 50 7 8 +6916,5 6 9 16 42 16 17 19 7 8 +9617,15 12 36 16 17 62 10 7 4 +640,15 67 47 36 37 17 63 7 4 +9618,15 12 36 16 17 62 10 7 8 +17265,5 6 57 96 36 16 61 16 17 10 7 8 +641,15 67 47 36 37 17 63 7 8 +3561,1 6 12 26 65 9 16 17 37 50 7 4 +8801,1 6 67 42 43 17 62 17 37 54 7 8 +19860,5 6 57 9 61 62 50 7 8 +11962,5 6 9 16 42 16 17 19 7 4 +18573,5 6 9 16 36 16 36 16 17 11 13 +8312,5 6 57 9 61 62 50 7 4 +21437,1 6 42 43 17 10 7 4 +12208,5 6 57 71 36 37 17 10 85 7 4 +22787,5 6 84 88 55 12 11 56 89 85 7 8 +18390,1 6 53 12 16 61 16 17 19 54 7 4 +7934,5 6 57 71 36 37 17 10 85 7 8 +25792,5 6 84 88 55 12 11 56 89 85 7 4 +12879,1 6 55 12 67 68 56 7 8 +13479,1 6 92 9 61 62 87 30 7 8 +13478,1 6 92 9 61 62 87 30 7 4 +23590,15 53 9 16 17 37 35 7 4 +9497,15 12 11 56 13 +14218,15 12 36 37 38 37 48 50 7 8 +17266,5 6 57 96 36 16 61 16 17 10 7 4 +12369,5 6 18 9 16 17 11 7 4 +19327,5 6 57 9 16 17 37 72 56 7 4 +24627,15 9 16 36 37 38 37 48 32 7 8 +2542,1 6 53 51 36 37 17 10 7 8 +3253,1 6 42 43 17 10 7 8 +24628,15 9 16 36 37 38 37 48 32 7 4 +2543,1 6 53 51 36 37 17 10 7 4 +8410,1 45 21 22 17 37 48 72 7 8 +15717,1 6 57 57 121 122 13 +6249,15 49 47 36 37 17 11 56 7 8 +20831,1 6 55 12 16 39 36 16 17 19 13 +5821,1 45 21 22 17 37 48 72 7 4 +24393,1 6 18 12 16 17 118 17 62 10 7 4 +6247,15 49 47 36 37 17 11 56 7 4 +6859,1 6 57 34 47 36 37 94 +24394,1 6 18 12 16 17 118 17 62 10 7 8 +16451,1 6 29 9 16 17 11 93 7 8 +16196,1 6 29 9 16 17 11 93 7 4 +12151,5 6 71 72 66 7 8 +21097,15 53 49 47 48 50 54 7 4 +25831,15 31 47 47 47 47 36 37 17 11 13 +14282,1 6 55 53 55 56 13 +25588,5 6 57 67 47 117 16 17 118 17 11 13 +2558,15 86 31 36 37 10 7 4 +11916,1 6 65 57 58 58 11 8 +16715,1 6 29 9 10 54 7 4 +8164,5 6 84 12 61 16 17 19 13 +8921,15 86 31 36 37 10 7 8 +16716,1 6 29 9 10 54 7 8 +12928,1 12 39 36 39 36 16 61 16 17 19 13 +19758,5 6 57 67 47 117 16 17 118 17 11 8 +24900,5 6 12 55 56 56 11 8 +19401,15 53 49 36 37 17 11 13 +11131,15 55 88 9 16 17 10 7 8 +25906,1 6 57 55 53 9 16 61 16 17 19 13 +17362,15 53 49 36 37 17 11 8 +13905,5 6 65 88 9 16 17 37 50 7 4 +13906,5 6 65 88 9 16 17 37 50 7 8 +2714,1 12 9 16 17 10 54 7 4 +18756,1 6 64 61 62 17 37 48 52 56 89 7 8 +18757,1 6 64 61 62 17 37 48 52 56 89 7 4 +25830,15 31 47 47 47 47 36 37 17 11 8 +11130,15 55 88 9 16 17 10 7 4 +2715,1 12 9 16 17 10 54 7 8 +19452,5 6 64 61 16 17 17 37 35 11 8 +13629,1 6 64 61 62 17 43 32 10 54 7 4 +9245,15 96 16 36 37 38 37 50 7 4 +10180,15 9 16 17 62 72 7 4 +9244,15 96 16 36 37 38 37 50 7 8 +10179,15 9 16 17 62 72 7 8 +26458,1 6 64 61 62 17 43 32 10 54 7 8 +4505,5 6 64 16 36 37 38 37 108 35 7 8 +4506,5 6 64 16 36 37 38 37 108 35 7 4 +24697,1 6 86 53 64 16 17 10 7 4 +24764,15 86 31 36 37 17 10 7 4 +24044,5 6 12 36 37 38 37 48 35 7 8 +2390,15 51 107 36 16 17 37 35 54 7 8 +25032,5 6 12 36 37 38 37 48 35 7 4 +26651,15 51 107 36 16 17 37 35 54 7 4 +7729,5 6 76 61 62 17 10 54 7 4 +25225,1 6 9 10 27 58 13 +371,5 6 9 10 56 7 4 +11885,5 6 57 51 52 58 13 +7730,5 6 76 61 62 17 10 54 7 8 +666,5 6 9 10 56 7 8 +23692,15 96 16 36 37 38 17 19 89 27 7 8 +11292,15 88 26 65 66 27 89 54 7 8 +20518,15 49 90 16 17 120 7 4 +26080,15 96 16 36 37 38 17 19 89 27 7 4 +10294,5 6 53 67 47 107 108 48 72 54 7 4 +13261,5 6 53 67 47 107 108 48 72 54 7 8 +20519,15 49 90 16 17 120 7 8 +25496,5 6 12 88 90 16 61 16 17 11 8 +22553,15 31 47 42 43 17 10 54 7 8 +15641,15 119 16 42 16 17 10 7 4 +19107,5 6 55 53 57 12 11 58 7 4 +3882,5 6 53 51 36 37 17 3 4 +22552,15 31 47 42 43 17 10 54 7 4 +4437,1 6 57 86 87 56 7 8 +15642,15 119 16 42 16 17 10 7 8 +4783,15 53 88 89 66 7 4 +15273,1 6 76 16 36 16 17 62 10 7 4 +4782,15 53 88 89 66 7 8 +5330,1 12 16 36 16 42 16 17 19 13 +23829,15 86 49 114 115 35 87 7 8 +23676,5 6 9 16 16 17 10 7 8 +10097,1 6 41 12 9 16 17 10 30 7 8 +10098,1 6 41 12 9 16 17 10 30 7 4 +16305,1 6 9 16 36 16 17 62 10 7 4 +26235,1 6 53 12 16 42 16 21 77 78 22 8 +10337,1 6 9 16 36 16 17 62 10 7 8 +22831,5 6 9 16 16 17 10 7 4 +15444,5 6 65 9 61 62 72 7 4 +7856,5 6 53 34 107 108 108 48 72 54 7 4 +26428,1 6 55 12 88 55 12 16 17 19 13 +25131,5 6 65 9 61 62 72 7 8 +23927,70 16 99 16 42 16 17 11 8 +25418,15 12 16 36 39 36 16 17 10 7 4 +9777,1 6 57 86 87 13 +23928,70 16 99 16 42 16 17 11 13 +7090,15 88 57 57 34 35 7 4 +17784,1 6 55 53 18 12 11 14 54 7 8 +7089,15 88 57 57 34 35 7 8 +25417,15 12 16 36 39 36 16 17 10 7 8 +5862,1 6 55 53 18 12 11 14 54 7 4 +8093,5 6 57 92 51 36 37 17 10 7 8 +8717,15 34 47 36 37 17 10 7 4 +20208,15 57 55 9 61 62 52 7 4 +8094,5 6 57 92 51 36 37 17 10 7 4 +8718,15 34 47 36 37 17 10 7 8 +20209,15 57 55 9 61 62 52 7 8 +3002,5 6 71 42 43 17 106 7 8 +6319,5 6 9 10 56 11 8 +24816,1 6 57 65 65 88 88 9 16 17 10 7 8 +20233,15 71 117 16 36 37 38 17 118 17 10 7 4 +7484,1 6 88 12 26 9 16 17 62 10 7 8 +9828,15 55 12 16 39 36 16 17 19 13 +17283,1 6 64 36 37 38 37 32 54 54 7 8 +8024,5 6 57 34 35 7 4 +10090,1 6 88 12 26 9 16 17 62 10 7 4 +8973,5 6 53 9 16 36 37 38 17 11 8 +17284,1 6 64 36 37 38 37 32 54 54 7 4 +8036,5 6 57 34 35 7 8 +9381,5 6 53 9 16 36 37 38 17 11 13 +9311,15 51 61 62 112 7 8 +9312,15 51 61 62 112 7 4 +1808,1 6 9 10 93 58 7 8 +20232,15 71 117 16 36 37 38 17 118 17 10 7 8 +1818,1 6 9 10 93 58 7 4 +23697,5 6 84 57 58 66 85 7 8 +4872,15 34 107 108 48 35 87 7 4 +11385,5 6 53 34 47 48 52 7 4 +20739,1 6 49 107 36 37 17 11 8 +13475,1 6 29 12 61 16 17 19 13 +23698,5 6 84 57 58 66 85 7 4 +24904,5 6 53 34 47 48 52 7 8 +24367,5 6 57 88 88 9 16 42 16 17 19 7 4 +3213,5 6 55 56 58 13 +21778,5 6 57 88 88 9 16 42 16 17 19 7 8 +13171,5 6 26 88 12 36 37 38 11 8 +20710,1 6 71 47 48 35 54 54 7 4 +26021,1 6 84 57 88 57 58 13 +21983,1 6 76 16 36 16 17 37 35 7 4 +7349,15 42 43 17 37 35 93 7 8 +15616,1 6 76 16 36 16 17 37 35 7 8 +23821,1 6 49 107 36 37 17 11 13 +7348,15 42 43 17 37 35 93 7 4 +4871,15 34 107 108 48 35 87 7 8 +10628,1 6 12 39 36 16 17 37 68 7 4 +15415,15 9 16 17 37 48 35 7 8 +15414,15 9 16 17 37 48 35 7 4 +11996,5 6 9 16 36 16 17 37 52 54 7 8 +9060,5 6 9 16 36 16 17 37 52 54 7 4 +20130,1 6 64 16 36 16 61 16 17 10 54 7 8 +8314,15 57 9 61 62 50 7 8 +21985,1 6 64 16 36 16 61 16 17 10 54 7 4 +8313,15 57 9 61 62 50 7 4 +22794,5 6 55 12 88 55 56 89 56 7 8 +3144,5 6 55 56 56 13 +26612,5 6 84 53 9 10 54 7 4 +10383,15 9 16 17 37 32 54 7 4 +17028,5 6 57 34 36 37 63 7 4 +8385,5 6 65 86 87 13 +4650,15 9 16 17 43 32 7 8 +17029,5 6 57 34 36 37 63 7 8 +4651,15 9 16 17 43 32 7 4 +3765,5 6 53 64 16 17 69 +4647,1 6 76 16 36 16 17 75 7 4 +1584,1 6 9 10 27 58 7 4 +17604,15 57 34 36 37 10 7 4 +3684,1 6 9 10 27 58 7 8 +18848,15 57 9 36 37 38 37 108 35 7 8 +22928,1 6 41 88 12 26 9 16 17 10 7 8 +18847,15 57 9 36 37 38 37 108 35 7 4 +22927,1 6 41 88 12 26 9 16 17 10 7 4 +9424,15 49 47 36 37 10 54 7 4 +11968,1 6 64 16 36 16 61 16 17 62 10 7 4 +16091,5 6 92 57 58 7 8 +17603,15 57 34 36 37 10 7 8 +19212,1 6 55 65 34 35 7 8 +21516,5 6 55 12 9 61 62 68 7 8 +9423,15 49 47 36 37 10 54 7 8 +10371,1 6 64 16 36 16 61 16 17 62 10 7 8 +16499,1 12 16 36 16 17 37 68 7 8 +15941,5 6 31 42 43 17 10 85 54 7 8 +1178,1 6 64 16 17 63 7 4 +15940,5 6 31 42 43 17 10 85 54 7 4 +24541,5 6 49 42 43 17 75 7 4 +667,1 6 64 16 17 63 7 8 +18668,1 6 12 16 17 91 7 8 +1019,5 6 64 36 16 61 16 17 11 8 +1020,5 6 64 36 16 61 16 17 11 13 +2912,5 6 71 36 37 17 10 7 4 +18667,1 6 12 16 17 91 7 4 +837,5 6 71 36 37 17 10 7 8 +22442,5 6 57 57 9 16 61 16 17 19 7 8 +22156,15 9 16 36 16 17 43 52 7 8 +20776,15 88 55 56 93 7 4 +22157,15 9 16 36 16 17 43 52 7 4 +6031,1 12 16 36 39 36 16 61 16 17 11 8 +18250,5 6 57 53 51 61 62 63 7 8 +22546,1 6 88 9 16 17 118 17 10 7 8 +10382,15 9 16 17 37 32 54 7 8 +26479,5 6 53 57 9 16 36 37 38 37 35 54 7 8 +1882,15 96 36 16 61 16 17 19 13 +2089,15 96 36 37 38 17 37 35 7 8 +8926,1 12 16 36 16 17 37 68 7 4 +22545,1 6 88 9 16 17 118 17 10 7 4 +20775,15 88 55 56 93 7 8 +2088,15 96 36 37 38 17 37 35 7 4 +7961,5 2 16 17 37 72 7 8 +8693,1 6 64 16 36 37 38 37 48 72 54 7 8 +24617,5 6 53 18 12 16 61 16 17 10 85 54 7 8 +8686,1 6 64 16 36 37 38 37 48 72 54 7 4 +23631,1 6 51 47 36 37 17 10 7 4 +4389,15 49 42 43 17 91 7 4 +20312,1 6 51 47 36 37 17 10 7 8 +4388,15 49 42 43 17 91 7 8 +16426,15 53 67 36 37 17 62 10 7 8 +26167,1 6 9 117 16 17 19 7 8 +18465,1 6 9 117 16 17 19 7 4 +24801,5 6 29 18 12 16 17 37 35 7 4 +14805,1 6 92 86 87 7 8 +25801,5 6 29 18 12 16 17 37 35 7 8 +17229,1 6 53 18 9 16 36 61 16 17 10 54 7 4 +4414,1 6 53 31 36 16 17 63 7 4 +5779,15 12 16 36 16 36 37 38 37 52 7 4 +13869,5 6 34 47 48 48 50 7 4 +21052,1 6 92 86 87 7 4 +16001,1 6 53 31 36 16 17 63 7 8 +13868,5 6 34 47 48 48 50 7 8 +20285,15 12 16 36 16 36 37 38 37 52 7 8 +4955,1 6 64 16 36 16 61 16 17 37 35 7 8 +20076,1 6 12 88 55 9 16 17 43 48 52 7 8 +26830,5 6 88 89 89 54 7 4 +6631,5 6 53 71 72 7 4 +26812,1 6 71 117 16 17 11 8 +17228,1 6 53 18 9 16 36 61 16 17 10 54 7 8 +3336,5 6 53 71 72 7 8 +19407,15 53 31 47 107 36 16 17 37 35 54 7 4 +10535,5 6 53 9 16 17 69 +3390,1 6 53 12 34 36 37 10 7 8 +3405,1 6 9 36 16 17 19 7 4 +5236,5 6 9 16 17 43 32 93 7 8 +2395,15 55 53 12 16 39 36 16 17 62 10 7 8 +13373,1 6 9 36 16 17 19 7 8 +23177,5 6 55 26 88 89 13 +6308,5 6 55 12 88 57 58 58 11 8 +21866,1 6 53 71 42 43 17 63 7 4 +6411,1 6 12 12 11 58 11 7 8 +10723,5 6 26 12 65 9 16 17 37 52 7 8 +2394,15 55 53 12 16 39 36 16 17 62 10 7 4 +10724,5 6 26 12 65 9 16 17 37 52 7 4 +13041,1 6 12 12 11 58 11 7 4 +16427,15 53 67 36 37 17 62 10 7 4 +3273,15 65 57 58 56 7 4 +25682,1 6 57 92 9 10 27 7 8 +3274,15 65 57 58 56 7 8 +9717,5 6 9 16 17 43 32 93 7 4 +10925,15 96 36 37 38 17 62 10 7 4 +19387,1 6 53 34 107 108 48 32 7 4 +7960,5 2 16 17 37 72 7 4 +10926,15 96 36 37 38 17 62 10 7 8 +16530,15 55 88 89 66 56 7 4 +11162,15 12 16 36 16 17 37 68 89 7 8 +22736,5 6 105 16 61 16 17 91 7 8 +10902,1 6 84 12 11 14 85 54 7 8 +22735,5 6 105 16 61 16 17 91 7 4 +15115,5 6 53 9 61 16 17 19 13 +11161,15 12 16 36 16 17 37 68 89 7 4 +21006,1 6 67 47 48 32 7 8 +26586,15 12 39 36 16 61 16 17 37 32 7 4 +7039,5 6 55 57 86 87 7 8 +26587,15 12 39 36 16 61 16 17 37 32 7 8 +7038,5 6 55 57 86 87 7 4 +3111,15 88 88 57 58 89 13 +7305,1 6 92 12 36 37 63 54 7 8 +15035,5 6 57 9 16 42 16 17 43 32 93 7 4 +4667,5 6 49 107 108 50 7 4 +6496,15 57 55 73 36 16 36 37 38 69 +7823,1 6 92 12 36 37 63 54 7 4 +13265,5 6 57 9 16 42 16 17 43 32 93 7 8 +12123,5 6 49 107 108 50 7 8 +15680,1 6 84 9 10 58 89 85 54 7 8 +10903,1 6 84 12 11 14 85 54 7 4 +16529,15 55 88 89 66 56 7 8 +25347,1 6 84 9 10 58 89 85 54 7 4 +26829,5 6 88 89 89 54 7 8 +3377,5 6 53 49 36 37 10 54 7 4 +26223,5 6 86 34 107 108 108 35 66 7 4 +13362,5 6 53 49 36 37 10 54 7 8 +5613,1 6 53 109 9 16 17 37 52 7 4 +5612,1 6 53 109 9 16 17 37 52 7 8 +11306,70 36 16 17 11 13 +24424,5 6 31 114 115 115 32 7 4 +2272,5 6 55 88 57 58 89 56 7 4 +2271,5 6 55 88 57 58 89 56 7 8 +25657,5 6 55 55 53 9 16 61 16 17 37 35 11 8 +2891,1 6 9 16 36 16 17 10 7 4 +21577,1 6 53 67 47 36 37 10 54 7 8 +18113,1 6 55 57 9 36 16 17 37 72 7 8 +10693,15 9 36 16 36 16 17 11 13 +15312,1 6 55 9 16 42 16 21 77 78 22 79 4 +24744,15 53 49 36 37 10 7 8 +16834,1 6 57 49 36 37 17 11 8 +21538,1 6 53 67 47 36 37 10 54 7 4 +18529,15 44 49 47 48 52 85 7 4 +21668,15 34 36 16 61 16 17 10 7 4 +25620,5 6 9 16 17 11 54 7 4 +9489,5 6 55 12 57 9 39 36 16 17 19 7 8 +18528,15 44 49 47 48 52 85 7 8 +24476,1 6 31 47 48 68 54 54 7 4 +5695,1 12 16 36 37 38 37 68 89 7 4 +6511,5 6 55 12 57 9 39 36 16 17 19 7 4 +24475,1 6 31 47 48 68 54 54 7 8 +3889,5 6 119 120 11 8 +16788,1 12 16 36 37 38 37 68 89 7 8 +5268,1 6 9 16 36 16 17 10 7 8 +16157,5 6 119 120 11 13 +25116,15 55 34 35 54 7 4 +1906,1 6 76 16 61 62 17 10 54 7 8 +10220,15 57 58 11 56 7 4 +23135,5 2 16 17 43 32 10 54 7 8 +25117,15 55 34 35 54 7 8 +6815,15 57 58 11 56 7 8 +24034,1 6 9 39 36 16 17 43 35 87 7 8 +3711,1 6 88 12 16 36 37 38 17 11 8 +9861,5 6 64 61 62 17 37 11 8 +7843,5 6 53 64 36 37 38 37 108 35 93 7 8 +13750,15 55 53 51 52 7 8 +24781,5 2 16 17 118 17 3 4 +13751,15 55 53 51 52 7 4 +24782,5 2 16 17 118 17 3 8 +10692,15 9 36 16 36 16 17 11 8 +16059,5 6 53 64 36 37 38 37 108 35 93 7 4 +11416,1 6 64 16 42 16 17 43 13 +21723,5 6 31 47 36 37 10 7 8 +26205,1 6 53 12 16 36 16 17 37 35 54 7 8 +26206,1 6 53 12 16 36 16 17 37 35 54 7 4 +13960,1 6 57 96 16 36 37 38 17 63 7 4 +11369,1 6 57 34 36 37 17 62 10 7 4 +18237,5 20 21 22 17 19 13 +2128,1 6 41 12 26 9 16 17 10 30 7 4 +7066,5 6 55 31 107 108 32 7 4 +15453,1 6 53 18 12 16 61 16 17 118 17 11 8 +2129,1 6 41 12 26 9 16 17 10 30 7 8 +15454,1 6 53 18 12 16 61 16 17 118 17 11 13 +13974,15 9 16 17 63 93 7 8 +16853,5 6 65 57 57 9 16 36 16 17 11 8 +13959,1 6 57 96 16 36 37 38 17 63 7 8 +7510,15 105 16 17 10 7 8 +13975,15 9 16 17 63 93 7 4 +7509,15 105 16 17 10 7 4 +26195,70 16 36 37 38 37 52 11 7 8 +12422,15 51 36 37 19 33 13 +25786,1 6 53 64 16 117 118 32 7 8 +21971,5 6 26 12 65 9 16 17 37 52 33 13 +6088,1 6 41 88 12 26 9 16 17 11 7 4 +10451,5 6 51 52 58 89 13 +21000,1 6 67 47 48 32 7 4 +24745,15 53 49 36 37 10 7 4 +16399,1 6 53 12 16 17 91 7 4 +16398,1 6 53 12 16 17 91 7 8 +24656,15 57 9 16 36 16 17 37 48 35 7 4 +24657,15 57 9 16 36 16 17 37 48 35 7 8 +13719,1 6 64 36 16 17 10 7 4 +25785,1 6 53 64 16 117 118 32 7 4 +9016,5 6 119 120 7 4 +2878,1 6 53 18 12 16 17 10 7 8 +26138,1 6 9 9 9 9 9 9 16 17 10 7 8 +9017,5 6 119 120 7 8 +1317,5 6 88 49 36 37 11 13 +1316,5 6 88 49 36 37 11 8 +1444,1 6 53 18 12 16 17 10 7 4 +6303,5 6 53 51 36 37 17 11 8 +11652,5 6 53 51 36 37 17 11 13 +23912,5 6 26 12 65 9 16 17 37 52 52 7 8 +14715,15 34 36 37 17 106 7 4 +14716,15 34 36 37 17 106 7 8 +17517,15 55 9 16 42 16 17 63 7 4 +3706,15 12 11 89 13 +823,1 12 11 14 85 54 7 4 +17518,15 55 9 16 42 16 17 63 7 8 +820,1 12 11 14 85 54 7 8 +19085,1 6 64 16 36 16 17 37 52 7 8 +9826,1 6 88 12 16 36 37 38 17 11 13 +16481,1 6 64 16 36 16 17 37 52 7 4 +3740,15 53 34 107 36 37 17 11 8 +25832,5 6 26 55 56 7 8 +8673,5 6 67 51 36 37 10 7 8 +24882,5 6 64 16 39 36 16 61 16 17 62 10 7 4 +17834,15 55 57 9 16 17 37 72 7 4 +17835,15 55 57 9 16 17 37 72 7 8 +7497,5 6 67 51 36 37 10 7 4 +11864,5 6 90 61 62 17 10 7 4 +6451,5 6 90 61 62 17 10 7 8 +11234,5 6 53 57 9 39 36 16 17 10 7 4 +13720,1 6 64 36 16 17 10 7 8 +21041,15 12 16 36 37 38 37 48 35 11 8 +1641,5 6 71 61 62 10 7 8 +1770,5 6 71 61 62 10 7 4 +24157,1 6 53 31 117 16 17 37 48 32 7 8 +8543,5 6 53 54 54 7 4 +23191,15 55 65 9 16 17 10 7 4 +8542,5 6 53 54 54 7 8 +11605,15 34 36 16 42 16 17 37 35 7 8 +12059,5 6 57 88 88 9 16 17 10 7 8 +13212,5 6 57 88 88 9 16 17 10 7 4 +23199,15 55 65 9 16 17 10 7 8 +3741,15 53 34 107 36 37 17 11 13 +13528,15 55 67 47 48 68 7 8 +13527,15 55 67 47 48 68 7 4 +24852,15 55 9 16 117 118 32 7 8 +18320,5 6 67 47 42 43 17 106 7 4 +7112,1 6 84 51 36 37 17 10 7 4 +24851,15 55 9 16 117 118 32 7 4 +17014,5 6 64 61 62 17 37 50 30 7 4 +10760,1 6 53 34 36 16 61 16 17 10 54 7 8 +19703,15 55 53 57 9 16 17 10 54 7 4 +21894,15 55 88 57 58 7 4 +18513,1 6 51 47 61 62 63 7 4 +7111,1 6 84 51 36 37 17 10 7 8 +16804,1 6 9 16 17 43 35 87 30 7 4 +4627,5 6 64 61 62 17 37 50 30 7 8 +24665,1 6 88 90 39 36 16 17 10 7 8 +25930,1 6 55 9 16 36 16 17 37 52 54 7 4 +16803,1 6 9 16 17 43 35 87 30 7 8 +19702,15 55 53 57 9 16 17 10 54 7 8 +5722,5 20 21 22 17 11 8 +19191,5 6 57 65 9 16 17 37 68 7 8 +6535,15 90 36 37 38 17 11 85 54 7 8 +12001,15 90 36 37 38 17 11 85 54 7 4 +21895,15 55 88 57 58 7 8 +4242,5 6 64 16 36 16 17 37 108 35 7 4 +887,5 6 67 42 43 17 10 7 4 +20422,1 6 53 55 53 31 32 13 +26831,1 6 65 66 89 54 7 8 +888,5 6 67 42 43 17 10 7 8 +23924,15 55 12 57 96 36 37 38 19 56 89 13 +19522,15 12 16 39 36 39 36 16 17 37 72 7 8 +4243,5 6 64 16 36 16 17 37 108 35 7 8 +18717,5 6 31 47 47 36 37 17 91 7 4 +25481,1 6 88 51 61 62 10 7 8 +9583,15 34 36 16 61 16 17 37 108 35 7 4 +7390,15 57 53 9 16 17 10 7 8 +14436,5 6 84 73 16 36 16 17 37 72 85 7 4 +20734,15 9 16 17 43 11 54 7 4 +18553,1 6 64 16 61 62 17 10 54 7 4 +7389,15 57 53 9 16 17 10 7 4 +13097,15 12 16 36 37 38 37 48 35 7 4 +15877,15 9 16 17 43 11 54 7 8 +18554,1 6 64 16 61 62 17 10 54 7 8 +18257,1 6 88 51 61 62 10 7 4 +13100,15 12 16 36 37 38 37 48 35 7 8 +25852,5 6 55 88 57 58 58 66 58 7 4 +23042,1 6 65 66 58 7 8 +21409,5 6 55 88 57 58 58 66 58 7 8 +23039,1 6 65 66 58 7 4 +19884,5 6 9 10 58 58 89 56 7 8 +12518,5 6 12 51 109 110 11 7 4 +26600,1 12 11 56 89 7 8 +9374,1 12 11 89 89 7 4 +8121,1 12 11 89 89 7 8 +24069,1 2 16 17 82 8 +499,5 6 64 61 62 17 10 54 7 8 +21151,1 12 11 56 89 7 4 +500,5 6 64 61 62 17 10 54 7 4 +8846,1 6 53 9 16 36 16 17 63 7 4 +13820,1 6 53 9 16 36 16 17 63 7 8 +21897,5 6 34 35 58 89 33 7 4 +21411,5 6 9 10 58 58 89 56 7 4 +26790,1 6 92 9 16 17 11 8 +1726,15 55 12 55 88 55 56 56 11 56 7 4 +12042,5 6 53 12 109 110 7 8 +4496,15 34 107 36 37 17 63 7 8 +23518,5 6 53 12 109 110 7 4 +4497,15 34 107 36 37 17 63 7 4 +18914,1 6 53 57 57 49 50 7 8 +21898,5 6 34 35 58 89 33 7 8 +18913,1 6 53 57 57 49 50 7 4 +7889,15 9 16 17 43 52 11 11 8 +9380,5 6 55 57 12 16 17 10 54 7 8 +7106,1 6 84 53 9 10 11 8 +9379,5 6 55 57 12 16 17 10 54 7 4 +21553,15 55 53 34 35 7 8 +21552,15 55 53 34 35 7 4 +7493,1 6 53 49 47 48 50 54 7 8 +12555,5 6 18 12 16 42 16 17 19 13 +17495,5 6 57 86 57 58 13 +1921,15 55 53 57 58 56 54 7 8 +7492,1 6 53 49 47 48 50 54 7 4 +1920,15 55 53 57 58 56 54 7 4 +11909,1 12 36 37 38 37 72 7 4 +18811,1 6 9 16 17 37 10 7 8 +23233,1 6 55 9 36 37 38 17 10 7 4 +11906,1 12 36 37 38 37 72 7 8 +8076,1 6 53 55 57 9 36 37 38 17 10 7 4 +10161,1 6 53 12 16 36 16 17 10 7 4 +23284,1 6 55 9 36 37 38 17 10 7 8 +10160,1 6 53 12 16 36 16 17 10 7 8 +22877,1 6 9 16 17 37 10 7 4 +2716,15 53 9 16 17 10 7 4 +5614,15 53 9 16 17 10 7 8 +6212,1 6 34 36 37 10 54 54 7 4 +9151,5 6 31 32 54 7 4 +10269,1 6 88 71 47 48 52 7 8 +3004,15 71 42 43 17 106 7 4 +141,5 6 57 58 13 +6211,1 6 34 36 37 10 54 54 7 8 +9152,5 6 31 32 54 7 8 +19177,1 6 88 71 47 48 52 7 4 +3003,15 71 42 43 17 106 7 8 +20702,5 6 57 53 57 58 13 +19476,1 6 57 9 16 61 16 36 16 17 37 35 7 4 +1585,5 6 18 12 16 17 37 68 7 8 +9451,1 6 57 9 16 36 37 38 37 10 7 8 +19954,5 6 18 12 16 17 37 32 54 7 8 +21628,1 6 55 57 12 16 17 10 54 7 8 +8464,1 6 49 36 37 17 10 93 7 8 +1035,5 6 18 12 16 17 37 68 7 4 +19953,5 6 18 12 16 17 37 32 54 7 4 +8731,15 57 53 9 16 61 16 61 16 17 19 13 +9637,1 6 92 34 36 37 17 10 7 4 +8463,1 6 49 36 37 17 10 93 7 4 +9638,1 6 92 34 36 37 17 10 7 8 +16868,5 6 86 49 50 13 +17935,15 71 117 16 17 19 7 4 +9132,15 34 107 108 108 35 54 7 8 +17936,15 71 117 16 17 19 7 8 +5354,5 6 55 56 27 28 +25229,15 55 53 9 16 61 16 17 11 7 8 +9133,15 34 107 108 108 35 54 7 4 +9454,1 6 57 9 16 36 37 38 37 10 7 4 +728,5 6 88 55 56 13 +9378,1 6 55 57 12 16 17 10 54 7 4 +2592,5 6 53 49 50 13 +4830,5 6 88 71 36 37 11 13 +9460,1 6 84 67 68 13 +6509,15 96 16 36 37 38 10 7 4 +8245,5 6 41 88 89 56 7 4 +9330,5 6 55 55 56 13 +6510,15 96 16 36 37 38 10 7 8 +1077,5 6 64 61 62 17 37 35 11 8 +15309,1 6 84 53 9 10 7 4 +8246,5 6 41 88 89 56 7 8 +7028,1 6 84 53 9 10 7 8 +7825,1 6 92 12 34 36 37 63 54 7 8 +19442,5 6 53 65 9 16 17 11 8 +4829,5 6 88 71 36 37 11 8 +11180,1 6 92 12 34 36 37 63 54 7 4 +18746,1 6 55 55 51 52 13 +177,1 12 16 36 37 38 17 11 8 +25326,1 6 9 10 58 89 54 7 8 +21107,1 6 34 36 37 17 35 54 7 4 +20593,15 34 12 36 37 63 7 4 +18429,1 6 9 10 58 89 54 7 4 +20592,15 34 12 36 37 63 7 8 +16406,15 126 51 42 43 17 37 35 11 54 7 4 +24947,15 126 51 42 43 17 37 35 11 54 7 8 +5097,1 6 57 34 47 36 37 19 13 +7099,1 6 57 51 61 62 63 7 8 +12051,15 65 66 13 +7100,1 6 57 51 61 62 63 7 4 +11985,15 55 12 57 9 16 17 19 7 8 +26004,1 45 21 22 17 37 108 35 87 7 4 +11984,15 55 12 57 9 16 17 19 7 4 +4128,5 6 67 36 37 19 58 11 8 +20686,15 12 16 36 37 38 37 115 68 89 13 +7964,5 6 53 57 57 9 16 17 63 7 8 +25089,15 12 31 42 43 17 3 4 +7965,5 6 53 57 57 9 16 17 63 7 4 +21396,15 12 31 42 43 17 3 8 +1408,1 6 64 16 17 37 68 7 4 +1407,1 6 64 16 17 37 68 7 8 +15277,15 71 36 37 17 3 4 +23570,5 6 67 47 48 48 68 58 7 8 +6216,5 6 64 61 62 17 37 35 7 4 +15278,15 71 36 37 17 3 8 +23569,5 6 67 47 48 48 68 58 7 4 +3969,1 6 88 55 49 50 13 +817,1 45 21 22 17 37 72 7 4 +4015,5 6 64 61 62 17 37 35 7 8 +12862,15 55 57 53 34 35 13 +14056,1 6 64 61 62 17 11 54 7 8 +3950,1 45 21 22 17 37 72 7 8 +17925,5 6 57 9 16 17 75 7 8 +20052,15 88 12 39 36 16 17 19 13 +17924,5 6 57 9 16 17 75 7 4 +16613,5 6 55 88 88 34 36 37 63 7 4 +5883,15 55 53 18 12 16 17 37 108 50 54 7 8 +8327,5 6 55 12 55 56 89 56 11 8 +4374,1 6 53 18 12 61 16 17 10 7 4 +5659,1 6 53 18 12 61 16 17 10 7 8 +8297,1 6 64 61 62 17 11 54 7 4 +3522,1 6 57 31 32 58 7 4 +3523,1 6 57 31 32 58 7 8 +7315,5 6 92 12 34 36 37 63 54 7 4 +21853,15 9 39 36 16 17 19 7 4 +26289,1 6 96 16 36 16 61 16 17 37 35 7 4 +5882,15 55 53 18 12 16 17 37 108 50 54 7 4 +7311,5 6 92 12 34 36 37 63 54 7 8 +21852,15 9 39 36 16 17 19 7 8 +22027,1 6 96 16 36 16 61 16 17 37 35 7 8 +2923,15 55 9 16 36 16 17 11 13 +2922,15 55 9 16 36 16 17 11 8 +9237,15 12 36 16 17 37 48 68 89 7 4 +2259,1 6 53 54 58 87 7 4 +4844,1 6 12 49 50 13 +2260,1 6 53 54 58 87 7 8 +13111,15 34 107 108 123 11 8 +3427,5 6 64 16 36 37 38 37 52 7 8 +11305,70 36 16 17 11 8 +12157,1 6 99 100 17 11 8 +24757,5 6 64 16 36 37 38 37 52 7 4 +15084,5 6 53 53 54 56 89 7 8 +15081,5 6 53 53 54 56 89 7 4 +25730,5 6 53 9 16 36 37 38 17 10 54 54 7 4 +8591,15 55 51 36 37 94 +17109,1 6 12 65 9 16 17 37 108 52 7 8 +16455,1 6 12 65 9 16 17 37 108 52 7 4 +9318,1 6 113 61 62 17 37 35 11 8 +1867,15 9 36 37 19 13 +8760,15 9 36 37 17 69 +1176,104 101 102 103 +26445,1 2 16 17 43 17 10 7 4 +23234,5 6 55 9 36 37 38 17 10 7 4 +10621,1 6 64 16 42 16 17 19 13 +23235,5 6 55 9 36 37 38 17 10 7 8 +12774,15 12 16 17 19 14 54 7 4 +1951,5 6 84 51 47 47 47 109 110 13 +12773,15 12 16 17 19 14 54 7 8 +5595,1 6 53 9 16 17 10 85 54 7 8 +10503,15 9 16 17 43 52 11 7 4 +21691,1 6 53 9 16 17 10 85 54 7 4 +16432,15 9 16 17 43 52 11 7 8 +14858,15 65 66 56 7 4 +3781,104 101 102 78 +14857,15 65 66 56 7 8 +6682,5 6 12 51 36 37 17 11 8 +20361,1 6 29 9 16 36 37 38 17 10 7 8 +21659,15 51 47 48 32 54 7 4 +8860,1 12 9 31 42 43 63 7 8 +21660,15 51 47 48 32 54 7 8 +21183,1 12 9 31 42 43 63 7 4 +20623,5 6 12 51 109 110 11 7 8 +22706,5 6 88 55 55 65 9 16 17 10 7 8 +7932,15 55 57 9 16 17 63 85 7 8 +166,5 6 64 61 62 17 62 10 7 8 +7933,15 55 57 9 16 17 63 85 7 4 +21043,1 6 12 16 17 37 48 35 11 8 +1086,5 6 64 61 62 17 62 10 7 4 +18073,15 51 36 16 61 16 17 62 10 7 4 +1172,1 12 16 36 37 38 17 3 4 +22648,1 6 9 16 36 16 17 43 52 7 8 +24095,15 65 55 56 7 8 +9360,15 51 36 16 61 16 17 62 10 7 8 +21591,1 12 16 36 37 38 17 3 8 +24094,15 65 55 56 7 4 +26444,1 2 16 17 43 17 10 7 8 +14834,5 6 86 9 16 17 37 35 93 7 8 +7653,5 6 9 10 66 56 7 4 +12312,15 57 9 16 17 91 7 8 +21217,15 34 107 36 37 11 13 +25173,5 6 64 36 37 38 37 11 8 +12311,15 57 9 16 17 91 7 4 +14835,5 6 86 9 16 17 37 35 93 7 4 +7639,5 6 9 10 66 56 7 8 +20662,15 34 107 36 37 11 8 +6731,5 6 34 47 48 7 8 +4893,5 6 9 16 36 37 38 37 35 7 8 +12604,5 6 92 57 58 56 93 7 8 +17485,1 6 67 36 37 17 62 10 7 4 +25160,5 6 9 16 36 37 38 37 35 7 4 +12603,5 6 92 57 58 56 93 7 4 +14700,5 6 41 12 16 17 62 10 7 4 +14701,5 6 41 12 16 17 62 10 7 8 +2804,1 6 76 61 62 17 11 8 +1736,15 34 36 16 17 37 108 35 7 8 +15362,15 34 36 16 17 37 108 35 7 4 +2805,1 6 76 61 62 17 11 13 +3241,15 12 36 16 17 37 35 54 7 8 +809,15 71 36 37 17 11 8 +14183,1 6 53 49 50 93 7 8 +810,15 71 36 37 17 11 13 +25354,5 6 9 9 16 17 43 52 7 4 +14182,1 6 53 49 50 93 7 4 +11633,5 6 9 10 11 56 7 8 +24804,5 6 9 9 16 17 43 52 7 8 +4733,1 6 55 12 11 58 7 4 +6816,5 6 9 10 11 56 7 4 +4916,70 16 36 37 38 37 50 7 8 +2125,1 6 9 10 27 11 8 +4917,70 16 36 37 38 37 50 7 4 +3242,15 12 36 16 17 37 35 54 7 4 +16935,1 6 55 12 11 58 7 8 +22209,1 6 12 55 56 11 56 7 8 +3835,5 2 16 17 17 54 54 7 8 +22785,1 6 12 55 56 11 56 7 4 +3967,1 6 55 56 89 7 4 +14683,1 6 55 53 9 16 17 19 7 4 +4226,1 6 55 56 89 7 8 +1975,15 55 9 61 62 17 10 7 8 +6868,5 6 18 12 16 17 37 48 35 7 8 +7573,1 6 53 51 36 37 11 8 +1974,15 55 9 61 62 17 10 7 4 +6867,5 6 18 12 16 17 37 48 35 7 4 +18934,5 6 55 96 16 21 77 78 22 8 +3834,5 2 16 17 17 54 54 7 4 +16494,5 6 67 114 36 37 17 11 8 +23009,5 6 84 88 57 58 58 89 85 54 7 8 +22622,1 6 64 16 16 36 37 38 37 32 87 7 8 +530,1 6 53 51 52 7 4 +7817,15 9 16 17 43 32 11 13 +25469,5 6 84 88 57 58 58 89 85 54 7 4 +5793,1 6 18 12 16 42 16 17 37 52 7 4 +7816,15 9 16 17 43 32 11 8 +14755,5 6 55 53 12 36 37 38 37 48 35 54 7 4 +1212,1 6 53 51 52 7 8 +25835,5 6 9 10 56 27 28 +19951,1 6 55 9 16 36 37 38 17 11 8 +5794,1 6 18 12 16 42 16 17 37 52 7 8 +14754,5 6 55 53 12 36 37 38 37 48 35 54 7 8 +10524,1 6 99 100 17 19 13 +21037,1 6 12 16 36 37 38 37 48 35 11 7 4 +8571,5 6 53 53 54 58 7 8 +19102,15 44 34 36 16 61 16 17 11 8 +22479,5 6 64 16 61 16 21 77 78 22 8 +2297,5 6 49 50 66 7 8 +8963,5 6 53 53 54 58 7 4 +15586,15 9 36 37 11 13 +15585,15 9 36 37 11 8 +17737,1 6 64 16 42 16 17 43 93 7 8 +4724,15 88 96 36 16 17 19 11 8 +23661,15 57 65 66 89 13 +16440,1 6 67 42 43 17 91 7 8 +23242,5 6 57 88 88 9 16 117 118 72 11 8 +7909,1 6 67 42 43 17 91 7 4 +8787,15 34 47 48 54 7 4 +16511,1 6 67 36 37 17 37 35 7 8 +821,15 12 11 14 85 54 7 8 +16510,1 6 67 36 37 17 37 35 7 4 +15985,15 88 57 9 16 36 37 38 37 50 7 4 +25196,1 6 90 61 62 17 3 8 +15984,15 88 57 9 16 36 37 38 37 50 7 8 +5352,1 6 9 10 27 7 4 +6778,1 6 64 16 42 16 17 11 8 +7325,1 6 92 34 35 93 7 4 +4880,5 6 49 50 66 7 4 +1235,1 6 9 10 27 7 8 +7324,1 6 92 34 35 93 7 8 +8697,1 6 64 16 42 16 17 11 13 +2831,5 6 55 57 71 47 48 68 7 8 +15783,1 6 90 91 89 87 7 4 +25375,1 6 55 56 89 11 8 +822,15 12 11 14 85 54 7 4 +15996,1 6 90 91 89 87 7 8 +16574,1 6 57 92 31 36 37 17 69 +8788,15 34 47 48 54 7 8 +4257,5 6 53 9 10 93 63 7 8 +4258,5 6 53 9 10 93 63 7 4 +16495,5 6 67 114 36 37 17 11 13 +14695,1 6 76 16 39 36 16 42 16 17 19 13 +611,1 6 12 16 42 16 17 91 7 4 +23864,1 6 53 51 52 11 8 +612,1 6 12 16 42 16 17 91 7 8 +11524,1 6 12 34 47 36 37 17 11 8 +20568,15 34 36 37 38 17 62 10 7 8 +7867,5 6 53 34 107 107 107 36 37 10 7 8 +10924,15 34 36 37 38 17 62 10 7 4 +23865,1 6 53 51 52 11 13 +5891,1 6 64 36 42 16 17 11 8 +6876,5 6 64 61 62 17 37 35 87 7 4 +15069,5 6 18 12 16 42 16 17 19 7 4 +14952,5 6 18 12 16 42 16 17 19 7 8 +7779,5 6 64 61 62 17 37 35 87 7 8 +20364,5 6 31 42 43 17 37 35 87 30 7 8 +18512,15 57 9 61 62 48 52 7 8 +22050,1 6 12 65 9 16 36 37 38 17 10 7 8 +18511,15 57 9 61 62 48 52 7 4 +21818,1 6 12 65 9 16 36 37 38 17 10 7 4 +7742,5 6 64 16 61 16 17 10 7 8 +9361,1 6 57 57 49 50 7 8 +14184,5 6 92 49 36 37 17 10 93 7 8 +9352,1 6 53 51 36 37 17 69 +10892,15 71 36 37 17 19 13 +13540,1 6 53 51 36 37 19 13 +7263,15 9 16 39 36 16 17 19 7 4 +7743,5 6 64 16 61 16 17 10 7 4 +15431,5 6 92 49 36 37 17 10 93 7 4 +18890,1 6 84 9 36 16 17 37 48 72 85 54 7 4 +9364,1 6 57 57 49 50 7 4 +18893,1 6 84 9 36 16 17 37 48 72 85 54 7 8 +20876,15 57 57 92 9 61 16 17 75 7 4 +10843,1 6 53 51 36 37 17 59 +26650,5 6 34 36 37 17 19 33 13 +20524,1 6 57 9 16 17 17 91 7 4 +25371,5 6 12 57 12 16 36 37 38 37 48 35 11 7 8 +13066,5 6 12 57 12 16 36 37 38 37 48 35 11 7 4 +20877,15 57 57 92 9 61 16 17 75 7 8 +26820,15 31 42 43 17 11 54 7 8 +14165,1 6 92 9 10 66 7 8 +2081,1 6 55 12 57 96 36 37 38 19 11 8 +23938,1 6 64 61 62 17 131 17 7 8 +3892,5 6 18 12 16 17 120 7 4 +20690,1 6 57 71 36 37 17 63 85 7 8 +24965,1 6 64 16 42 16 17 10 93 7 4 +4012,1 6 34 35 54 7 8 +23937,1 6 64 61 62 17 131 17 7 4 +6753,5 6 18 12 16 42 16 17 11 8 +10168,5 6 18 12 16 17 120 7 8 +18016,1 6 119 39 36 16 17 69 +22824,5 6 88 9 16 36 39 36 16 17 10 7 4 +19234,5 6 18 12 16 42 16 17 11 13 +19531,1 6 64 36 42 16 17 11 13 +20523,1 6 57 9 16 17 17 91 7 8 +22724,1 6 64 16 42 16 17 10 93 7 8 +9145,1 6 34 35 54 7 4 +7264,15 9 16 39 36 16 17 19 7 8 +479,1 6 57 71 36 37 17 63 85 7 4 +6395,15 55 57 9 16 36 16 61 16 17 37 50 7 8 +21833,5 6 64 16 36 37 38 37 115 72 54 7 4 +25012,15 34 36 37 38 17 37 35 7 8 +21647,1 12 16 17 11 93 58 7 4 +13333,1 6 105 61 16 17 62 10 7 8 +14035,15 12 16 36 16 117 118 32 7 4 +6609,1 12 16 17 11 93 58 7 8 +13692,5 6 64 61 62 17 37 50 93 58 7 8 +5077,5 6 88 57 58 56 7 8 +21832,5 6 64 16 36 37 38 37 115 72 54 7 8 +1811,5 6 64 61 62 17 37 50 93 58 7 4 +13332,1 6 105 61 16 17 62 10 7 4 +7963,1 6 53 57 57 9 16 17 63 7 8 +24365,5 6 64 36 16 17 11 13 +438,1 6 84 9 10 58 85 7 4 +15832,1 6 12 9 16 17 43 32 93 7 4 +8517,1 6 53 57 57 9 16 17 63 7 4 +7782,5 6 34 35 11 7 8 +5081,5 6 88 57 58 56 7 4 +15833,1 6 12 9 16 17 43 32 93 7 8 +14254,5 6 34 35 11 7 4 +7806,15 96 36 16 17 37 50 7 8 +14346,5 6 64 36 16 17 11 8 +6195,1 12 16 17 37 10 7 8 +22730,15 12 16 36 16 117 118 32 7 8 +11692,1 6 90 61 62 17 11 8 +449,1 6 84 9 10 58 85 7 8 +17339,1 6 84 57 65 9 16 17 10 85 7 4 +6740,15 9 16 36 16 17 37 32 7 4 +2496,5 6 67 36 37 10 7 4 +6739,15 9 16 36 16 17 37 32 7 8 +16414,15 65 9 16 17 37 52 7 8 +2495,5 6 67 36 37 10 7 8 +23546,5 6 55 53 57 9 16 17 10 54 7 8 +16413,15 65 9 16 17 37 52 7 4 +24152,5 6 55 53 57 9 16 17 10 54 7 4 +1551,15 73 16 42 16 17 37 10 7 8 +1552,15 73 16 42 16 17 37 10 7 4 +19538,15 88 57 58 87 7 8 +16926,15 53 9 16 36 16 17 63 7 8 +19537,15 88 57 58 87 7 4 +9147,5 6 53 67 61 62 63 7 8 +3702,15 44 9 16 17 10 7 8 +11368,5 6 53 67 61 62 63 7 4 +3703,15 44 9 16 17 10 7 4 +7805,15 96 36 16 17 37 50 7 4 +14977,1 6 51 47 48 48 32 7 4 +14976,1 6 51 47 48 48 32 7 8 +15891,15 88 88 57 58 66 13 +13321,5 6 53 90 91 66 54 7 4 +5554,5 6 41 12 16 17 10 54 7 4 +18593,1 6 53 9 16 17 75 7 4 +24410,5 6 49 47 36 37 19 56 7 8 +11307,1 6 67 51 36 37 11 8 +14321,1 6 31 107 108 52 85 54 7 8 +24411,5 6 49 47 36 37 19 56 7 4 +13320,5 6 53 90 91 66 54 7 8 +14320,1 6 31 107 108 52 85 54 7 4 +4553,5 6 53 9 16 17 63 7 4 +18594,1 6 53 9 16 17 75 7 8 +5555,5 6 41 12 16 17 10 54 7 8 +4552,5 6 53 9 16 17 63 7 8 +19094,1 6 71 117 16 17 37 52 7 8 +18156,15 53 57 34 35 54 54 7 4 +17124,1 6 57 71 36 37 17 10 7 8 +18157,15 53 57 34 35 54 54 7 8 +13743,1 6 57 71 36 37 17 10 7 4 +6436,5 6 31 36 37 17 11 54 7 4 +10030,15 12 11 58 89 27 13 +18071,5 6 31 36 37 17 11 54 7 8 +24867,5 6 86 9 16 17 37 52 7 4 +24866,5 6 86 9 16 17 37 52 7 8 +10029,15 12 11 58 89 27 28 +14983,1 6 88 88 55 56 58 89 13 +19182,5 6 88 9 36 37 38 10 7 4 +25670,1 6 31 42 43 17 37 48 72 54 7 8 +14442,5 6 64 16 117 118 72 11 66 11 8 +1032,5 6 88 9 36 37 38 10 7 8 +20297,5 6 88 12 26 9 16 17 10 7 8 +21435,15 12 16 39 36 16 61 16 17 19 13 +23102,5 6 88 12 26 9 16 17 10 7 4 +9037,1 6 88 9 16 17 120 7 8 +23279,5 6 9 10 110 50 54 7 8 +20199,5 6 53 12 36 16 17 37 72 7 4 +24696,5 6 9 16 42 16 17 11 13 +15617,5 6 76 16 36 16 17 37 35 7 8 +15618,5 6 76 16 36 16 17 37 35 7 4 +984,1 12 9 31 42 43 17 63 7 4 +1772,1 12 9 31 42 43 17 63 7 8 +36,1 6 9 10 7 4 +23280,5 6 9 10 110 50 54 7 4 +20200,5 6 53 12 36 16 17 37 72 7 8 +33,1 6 9 10 7 8 +20628,5 6 90 16 17 106 7 4 +3607,15 65 88 9 16 17 10 7 4 +3608,15 65 88 9 16 17 10 7 8 +14009,5 6 51 52 58 11 8 +7698,5 6 12 88 57 9 16 17 91 7 8 +13391,5 6 34 36 37 17 19 7 4 +10916,1 6 90 36 16 61 16 17 19 7 8 +4331,5 6 9 16 42 16 17 11 8 +11301,5 6 71 36 37 69 +25447,5 6 90 16 17 106 7 8 +25846,1 6 26 9 16 17 118 17 11 8 +1607,5 6 34 36 37 17 19 7 8 +7697,5 6 12 88 57 9 16 17 91 7 4 +10917,1 6 90 36 16 61 16 17 19 7 4 +18332,1 6 18 12 16 42 16 17 100 7 4 +3935,15 9 16 36 37 38 37 48 72 54 7 8 +3934,15 9 16 36 37 38 37 48 72 54 7 4 +12132,5 6 12 12 16 36 37 38 37 35 87 7 8 +20819,1 6 53 51 47 48 72 54 7 8 +18331,1 6 18 12 16 42 16 17 100 7 8 +19219,1 6 53 51 47 48 72 54 7 4 +21982,1 6 55 56 56 89 11 8 +533,5 6 9 10 54 7 4 +20412,5 6 55 51 42 43 17 37 32 54 7 8 +524,5 6 9 10 54 7 8 +12093,1 6 88 12 65 9 16 17 10 7 8 +11475,5 6 9 16 17 43 17 10 7 8 +2212,1 6 88 12 65 9 16 17 10 7 4 +17807,5 6 49 36 37 19 +12852,5 6 9 16 17 43 17 10 7 4 +7734,5 6 55 51 42 43 17 37 32 54 7 4 +15862,1 6 67 42 43 17 37 68 54 7 4 +26474,5 6 53 88 9 16 36 37 38 37 48 35 54 7 4 +15861,1 6 67 42 43 17 37 68 54 7 8 +357,5 6 55 12 16 17 19 13 +9356,1 6 53 12 16 36 37 38 37 35 7 8 +26475,5 6 53 88 9 16 36 37 38 37 48 35 54 7 8 +12448,5 6 90 36 16 17 37 35 7 8 +17880,5 6 53 49 47 36 37 10 7 4 +14211,5 6 49 36 37 69 +7533,5 6 121 122 58 13 +8505,15 12 36 37 38 37 68 13 +23142,5 6 55 53 49 47 48 35 7 4 +12447,5 6 90 36 16 17 37 35 7 4 +23141,5 6 55 53 49 47 48 35 7 8 +25298,1 6 53 51 47 48 50 54 7 4 +9355,1 6 53 12 16 36 37 38 37 35 7 4 +2604,5 6 51 107 36 37 17 19 13 +10136,5 6 51 36 37 17 63 7 4 +13871,15 12 16 36 37 38 37 48 32 7 8 +8105,15 55 49 36 16 17 10 7 8 +25299,1 6 53 51 47 48 50 54 7 8 +19347,5 6 53 34 42 43 17 37 32 54 7 8 +4508,1 12 9 16 17 37 108 48 72 7 4 +26767,15 49 36 37 38 17 37 10 7 4 +10096,5 6 41 12 9 16 17 10 30 7 8 +4509,1 12 9 16 17 37 108 48 72 7 8 +10107,5 6 41 12 9 16 17 10 30 7 4 +14178,5 6 92 51 36 37 17 10 93 7 4 +18327,5 6 9 16 17 43 48 72 7 4 +19346,5 6 53 34 42 43 17 37 32 54 7 4 +5419,15 67 47 36 37 38 17 10 7 8 +15177,1 6 92 9 10 93 58 7 8 +13756,5 6 41 12 11 13 +15275,5 6 76 16 36 16 17 62 10 7 8 +5415,15 67 47 36 37 38 17 10 7 4 +15178,1 6 92 9 10 93 58 7 4 +15274,5 6 76 16 36 16 17 62 10 7 4 +22676,1 6 29 9 16 17 62 10 7 8 +22659,1 6 29 9 16 17 62 10 7 4 +15595,15 55 88 57 58 89 56 54 85 54 7 8 +22544,5 6 88 9 16 17 118 17 10 7 4 +17198,15 55 9 16 117 118 35 7 8 +20260,1 6 64 61 62 17 37 48 35 11 7 8 +12633,1 6 47 107 36 37 10 30 7 8 +5027,5 6 51 52 58 7 4 +17199,15 55 9 16 117 118 35 7 4 +25691,5 6 53 12 16 17 10 54 7 4 +5026,5 6 51 52 58 7 8 +9389,5 6 9 9 16 17 69 +1664,15 34 107 36 37 19 13 +14522,1 6 53 9 16 36 37 38 +861,15 51 36 37 17 10 7 8 +1541,1 6 18 12 16 17 43 50 7 8 +2514,15 49 47 48 68 7 4 +25370,5 6 12 12 16 36 37 38 37 48 32 11 7 4 +10075,1 6 18 12 16 17 43 50 7 4 +8434,15 44 49 47 36 16 17 91 7 4 +17023,5 6 9 9 16 17 62 10 7 4 +4143,1 6 88 31 36 37 11 13 +16934,1 6 53 9 36 16 17 37 68 54 7 8 +19708,1 6 53 36 37 11 8 +6634,1 6 53 9 36 16 17 37 68 54 7 4 +4142,1 6 88 31 36 37 11 8 +10773,15 12 16 39 36 16 61 16 17 11 13 +10772,15 12 16 39 36 16 61 16 17 11 8 +6692,5 6 88 89 89 56 7 4 +10175,1 6 76 61 62 17 3 4 +21494,5 6 9 9 16 17 62 10 7 8 +12533,1 6 76 61 62 17 3 8 +12045,5 6 9 10 110 52 7 8 +20851,1 6 9 16 17 37 35 87 7 4 +13219,1 6 64 42 16 17 74 7 8 +17458,1 6 26 31 47 36 37 11 13 +17727,1 6 92 42 43 17 37 35 93 7 4 +8629,1 6 9 16 17 37 35 87 7 8 +10135,5 6 51 36 37 17 63 7 8 +17457,1 6 26 31 47 36 37 11 8 +9639,1 6 92 42 43 17 37 35 93 7 8 +19536,1 6 86 87 89 58 13 +16126,5 6 9 10 110 52 7 4 +4209,1 6 64 42 16 17 74 7 4 +20470,1 6 67 68 54 54 7 4 +24713,15 57 55 57 96 16 21 77 78 22 8 +13759,15 12 16 17 19 +1564,5 6 9 10 58 89 56 7 4 +8895,1 12 36 37 38 37 72 85 54 7 4 +24122,1 6 12 51 47 107 36 37 11 8 +3784,5 6 9 10 58 89 56 7 8 +8892,1 12 36 37 38 37 72 85 54 7 8 +15864,1 6 67 68 54 54 7 8 +2810,5 6 55 55 71 47 48 68 7 4 +24649,1 6 67 107 108 50 7 8 +13768,15 57 9 36 37 38 10 93 7 8 +16155,5 6 55 55 71 47 48 68 7 8 +20736,1 6 67 107 108 50 7 4 +26492,1 6 51 42 43 63 7 8 +2515,15 49 47 48 68 7 8 +13767,15 57 9 36 37 38 10 93 7 4 +860,15 51 36 37 17 10 7 4 +4164,5 6 53 54 32 56 7 4 +10629,5 6 12 39 36 16 17 37 68 7 4 +14210,5 6 64 16 36 37 38 37 52 54 7 8 +3738,15 12 16 17 59 +4163,5 6 53 54 32 56 7 8 +14209,5 6 64 16 36 37 38 37 52 54 7 4 +5012,1 6 9 16 17 10 30 7 8 +10486,1 6 51 42 43 63 7 4 +10708,15 55 57 12 16 21 77 78 22 8 +2130,1 6 9 16 17 10 30 7 4 +7143,15 57 9 16 17 37 72 85 7 4 +10630,5 6 12 39 36 16 17 37 68 7 8 +7142,15 57 9 16 17 37 72 85 7 8 +21193,1 6 119 120 89 7 4 +12578,5 6 26 57 58 56 13 +1220,5 6 53 9 16 36 16 17 37 50 7 8 +1494,1 6 53 9 10 54 54 7 4 +7447,1 6 86 31 36 37 63 7 4 +1483,1 6 53 9 10 54 54 7 8 +14566,15 57 55 71 36 37 11 13 +21258,1 6 67 42 43 17 37 35 54 7 4 +14565,15 57 55 71 36 37 11 8 +5702,15 12 39 36 39 36 16 17 19 13 +23485,1 12 11 56 89 27 28 +24467,1 6 86 34 36 37 91 7 8 +21257,1 6 67 42 43 17 37 35 54 7 8 +22078,1 6 119 120 89 7 8 +8135,15 65 9 16 61 16 17 11 8 +16206,5 6 53 57 58 66 54 7 4 +2203,25 26 27 33 7 8 +26849,1 6 9 16 17 43 30 7 8 +8136,15 65 9 16 61 16 17 11 13 +18886,15 67 47 36 37 10 85 54 7 4 +3250,5 6 57 9 16 17 37 35 7 8 +10101,1 6 9 16 17 43 30 7 4 +9053,5 6 53 57 58 66 54 7 8 +2204,25 26 27 33 7 4 +4747,1 6 88 12 96 16 21 77 78 22 79 4 +6594,5 6 55 12 16 17 11 8 +11122,5 6 67 68 66 58 89 7 4 +11106,5 6 57 9 16 17 37 35 7 4 +4879,15 90 61 62 17 37 35 87 7 4 +8511,15 9 16 36 37 38 17 10 54 7 4 +13828,5 6 12 65 71 36 37 11 8 +18885,15 67 47 36 37 10 85 54 7 8 +4878,15 90 61 62 17 37 35 87 7 8 +8510,15 9 16 36 37 38 17 10 54 7 8 +16991,5 6 57 9 16 17 62 10 7 4 +18624,1 6 53 9 10 87 54 7 8 +22152,5 6 9 9 16 17 37 35 7 4 +23115,1 6 88 9 16 17 120 7 4 +15162,5 6 57 9 16 17 62 10 7 8 +4088,5 6 88 89 89 56 7 8 +26179,5 6 71 36 37 17 37 50 54 7 4 +12522,5 6 9 10 110 52 11 8 +13876,1 6 65 9 16 36 37 38 17 11 8 +17402,5 6 9 16 36 37 38 17 37 7 8 +26178,5 6 71 36 37 17 37 50 54 7 8 +7536,5 6 9 10 122 7 4 +4,1 6 9 10 11 8 +7540,5 6 9 10 122 7 8 +11245,1 6 9 10 11 13 +11603,5 6 12 16 36 16 17 43 32 10 7 8 +20756,1 12 11 115 7 4 +14241,1 6 53 9 10 87 54 7 4 +11604,5 6 12 16 36 16 17 43 32 10 7 4 +5036,5 6 64 61 62 37 50 54 7 4 +5225,5 6 92 9 16 17 63 7 4 +5035,5 6 64 61 62 37 50 54 7 8 +16358,5 6 53 53 49 50 54 54 7 8 +26652,5 6 53 53 49 50 54 54 7 4 +20061,1 6 49 47 42 43 17 37 48 52 7 4 +1257,15 57 53 31 32 13 +5226,5 6 92 9 16 17 63 7 8 +4513,15 9 9 9 9 16 17 43 32 7 4 +17688,1 6 57 92 31 36 37 17 10 7 8 +26054,15 9 16 36 16 42 16 17 37 123 7 4 +24775,5 6 12 65 9 16 17 37 50 7 8 +5450,15 57 12 16 21 77 101 102 103 +4512,15 9 9 9 9 16 17 43 32 7 8 +3309,15 55 88 57 58 58 13 +26649,1 6 57 92 31 36 37 17 10 7 4 +13559,5 6 57 9 16 61 16 17 19 7 8 +25865,5 6 64 42 16 17 43 32 93 7 4 +13558,5 6 57 9 16 61 16 17 19 7 4 +25866,5 6 64 42 16 17 43 32 93 7 8 +8230,5 6 57 92 67 68 7 4 +25087,15 57 9 16 39 36 16 42 16 17 37 35 7 4 +2492,5 6 57 92 67 68 7 8 +9565,1 12 16 36 16 17 37 48 35 7 8 +11860,1 12 16 36 16 17 37 48 35 7 4 +25088,15 57 9 16 39 36 16 42 16 17 37 35 7 8 +16952,1 6 55 31 42 43 17 10 7 8 +26053,15 9 16 36 16 42 16 17 37 123 7 8 +13623,5 6 53 18 12 36 37 38 11 8 +16289,5 6 55 9 16 117 118 48 72 7 8 +15674,5 6 84 88 57 58 85 54 7 4 +21202,5 6 12 65 9 16 17 37 50 7 4 +23006,5 6 84 88 57 58 85 54 7 8 +25154,1 6 55 12 57 96 36 37 38 37 72 7 4 +11026,5 6 57 51 52 7 8 +18601,15 55 55 57 9 16 61 16 17 19 54 7 4 +9183,15 55 12 88 57 58 11 8 +11477,5 6 57 51 52 7 4 +11244,15 44 9 16 36 16 17 10 7 8 +614,1 6 90 16 17 11 8 +25960,1 6 57 9 16 117 118 72 7 4 +8844,15 44 9 36 16 17 37 108 48 68 13 +19163,1 6 84 9 16 17 62 10 7 8 +25959,1 6 57 9 16 117 118 72 7 8 +615,1 6 90 16 17 11 13 +5377,1 6 53 12 16 61 16 61 16 17 62 10 7 4 +20772,1 6 84 9 16 17 62 10 7 4 +11243,15 44 9 16 36 16 17 10 7 4 +18276,15 55 53 31 61 62 63 7 4 +18602,15 55 55 57 9 16 61 16 17 19 54 7 8 +22854,5 6 26 34 47 48 32 7 4 +4480,15 65 57 58 58 7 4 +17445,5 6 26 34 47 48 32 7 8 +1092,5 6 51 52 56 89 13 +16267,1 6 49 50 56 66 7 4 +6040,15 65 57 58 58 7 8 +12291,15 9 16 17 37 115 50 66 7 4 +16266,1 6 49 50 56 66 7 8 +24118,15 34 47 48 52 11 7 8 +12290,15 9 16 17 37 115 50 66 7 8 +19890,15 86 31 36 37 17 37 68 7 8 +12009,1 6 53 71 36 37 10 7 8 +16625,1 6 71 72 58 89 7 4 +23806,1 12 16 36 16 17 37 115 72 7 8 +23803,1 12 16 36 16 17 37 115 72 7 4 +21412,15 86 31 36 37 17 37 68 7 4 +10433,1 6 53 57 49 47 48 32 7 8 +23214,1 6 53 67 114 107 36 37 17 63 7 8 +16985,15 57 58 66 58 7 4 +24661,1 6 90 36 37 38 91 7 4 +16984,15 57 58 66 58 7 8 +24660,1 6 90 36 37 38 91 7 8 +12008,1 6 53 71 36 37 10 7 4 +4972,15 55 53 12 11 54 7 8 +2376,5 6 49 107 108 52 7 4 +4973,15 55 53 12 11 54 7 4 +16252,5 20 21 22 17 82 8 +22175,5 6 92 31 36 37 17 62 93 7 8 +2377,5 6 49 107 108 52 7 8 +6342,1 6 84 67 36 37 17 19 33 13 +14535,1 6 64 53 9 10 11 8 +3188,5 6 55 56 11 8 +16444,1 6 31 36 37 17 3 8 +13251,1 6 86 12 16 36 37 38 17 11 13 +19134,1 6 31 36 37 17 3 4 +13655,15 9 36 16 17 43 50 7 4 +19244,5 6 64 16 17 37 72 7 8 +6021,1 6 67 68 58 66 7 8 +26043,5 6 53 67 47 36 37 17 63 93 7 8 +12391,1 6 53 9 10 10 54 7 8 +11776,5 6 53 67 47 36 37 17 63 93 7 4 +6010,1 6 67 68 58 66 7 4 +7935,15 55 9 16 36 16 36 16 36 37 38 17 10 85 7 8 +21919,15 31 47 47 42 43 17 63 7 4 +13654,15 9 36 16 17 43 50 7 8 +1158,15 12 36 37 38 11 8 +7936,15 55 9 16 36 16 36 16 36 37 38 17 10 85 7 4 +1159,15 12 36 37 38 11 13 +20875,5 6 57 57 92 9 61 16 17 75 7 4 +23954,1 6 51 52 56 54 54 7 8 +5934,5 45 21 22 17 19 87 7 4 +23955,1 6 51 52 56 54 54 7 4 +5933,5 45 21 22 17 19 87 7 8 +14994,1 6 49 107 36 37 19 33 13 +24369,1 6 113 61 62 17 37 11 54 7 4 +9903,15 9 16 36 16 17 62 10 7 8 +9902,15 9 16 36 16 17 62 10 7 4 +5902,5 6 53 88 89 11 8 +12605,5 45 21 22 17 10 93 7 4 +12384,15 9 16 36 37 38 17 37 35 7 4 +7274,1 6 90 91 11 7 4 +7308,5 6 53 64 36 37 38 37 35 93 7 8 +4773,104 101 102 78 22 8 +7894,1 6 90 91 11 7 8 +9498,5 6 53 88 89 11 13 +14429,1 6 57 58 89 56 66 7 4 +21395,5 6 53 12 9 16 17 11 54 7 8 +14421,1 6 57 58 89 56 66 7 8 +15040,5 45 21 22 17 10 93 7 8 +15870,5 6 53 12 9 16 17 11 54 7 4 +26713,1 6 53 12 39 36 61 16 17 62 10 7 4 +17993,1 6 105 16 42 16 17 19 7 4 +16260,5 6 53 64 36 37 38 37 35 93 7 4 +2104,1 6 9 10 30 7 8 +14060,15 67 47 36 37 17 37 48 72 7 4 +26712,1 6 53 12 39 36 61 16 17 62 10 7 8 +2103,1 6 9 10 30 7 4 +14059,15 67 47 36 37 17 37 48 72 7 8 +6123,1 6 26 12 65 26 9 16 17 10 7 4 +17207,1 2 16 17 43 32 93 7 8 +17208,1 2 16 17 43 32 93 7 4 +6952,1 6 64 53 9 10 7 4 +16497,1 6 64 16 117 118 72 7 8 +25726,1 6 18 12 16 17 17 54 54 7 8 +21918,15 31 47 47 42 43 17 63 7 8 +25412,1 12 16 36 37 38 37 35 87 7 8 +6953,1 6 64 53 9 10 7 8 +26207,1 6 53 18 9 16 17 62 10 7 4 +5686,15 88 67 68 52 7 8 +16498,1 6 64 16 117 118 72 7 4 +25725,1 6 18 12 16 17 17 54 54 7 4 +123,5 6 55 56 7 8 +13250,1 6 86 12 16 36 37 38 17 11 8 +122,5 6 55 56 7 4 +6124,1 6 26 12 65 26 9 16 17 10 7 8 +16665,15 86 34 47 36 37 17 11 8 +5687,15 88 67 68 52 7 4 +8047,5 6 124 107 108 123 7 8 +20563,1 6 34 47 42 43 17 37 35 7 8 +3032,5 6 9 16 17 37 68 7 8 +3031,5 6 9 16 17 37 68 7 4 +20145,5 6 57 9 16 17 10 54 7 8 +8073,15 12 11 110 7 4 +24296,1 6 57 58 58 89 56 7 8 +5440,5 6 64 16 17 37 108 35 7 4 +18464,5 6 12 9 16 17 118 17 10 7 4 +3168,5 6 64 16 17 37 108 35 7 8 +3593,15 9 16 36 16 17 37 35 7 4 +15826,5 6 57 9 16 17 10 54 7 4 +16075,5 45 21 22 17 43 32 93 7 4 +17912,5 6 88 65 88 9 16 17 10 7 8 +3592,15 9 16 36 16 17 37 35 7 8 +12383,15 9 16 36 37 38 17 37 35 7 8 +18463,5 6 12 9 16 17 118 17 10 7 8 +4788,5 6 53 88 89 7 4 +2335,1 6 53 9 10 87 7 4 +4789,5 6 53 88 89 7 8 +23796,1 6 12 36 16 36 37 38 17 3 4 +7632,1 6 53 9 10 87 7 8 +9200,5 6 49 47 48 32 7 8 +7996,1 6 84 57 58 85 54 7 8 +24538,5 45 21 22 17 43 32 93 7 8 +8002,1 6 84 57 58 85 54 7 4 +1301,70 36 16 17 63 7 4 +9201,5 6 49 47 48 32 7 4 +8009,1 6 84 34 35 58 85 54 7 4 +17302,5 6 12 57 9 16 17 120 7 8 +20239,15 31 47 36 37 17 63 7 8 +7999,1 6 84 34 35 58 85 54 7 8 +17301,5 6 12 57 9 16 17 120 7 4 +10797,15 49 107 36 37 17 10 7 4 +20240,15 31 47 36 37 17 63 7 4 +22109,1 45 21 22 17 19 50 58 7 8 +22110,1 45 21 22 17 19 50 58 7 4 +8074,15 12 11 110 7 8 +8567,15 55 53 34 35 33 13 +18246,1 6 9 36 16 36 16 17 37 35 7 8 +3478,1 6 64 16 117 118 72 11 8 +7342,1 6 9 36 16 36 16 17 37 35 7 4 +5529,95 16 36 16 17 17 91 7 8 +16742,15 55 12 88 89 89 7 4 +5528,95 16 36 16 17 17 91 7 4 +16741,15 55 12 88 89 89 7 8 +8048,5 6 124 107 108 123 7 4 +816,1 6 31 36 37 17 11 13 +17934,15 55 88 9 16 17 75 7 8 +18755,5 6 64 61 62 17 37 48 52 56 89 7 8 +815,1 6 31 36 37 17 11 8 +8296,15 55 12 88 57 58 7 4 +6817,5 6 34 107 107 36 37 17 10 7 8 +21023,15 42 43 17 37 50 7 8 +8295,15 55 12 88 57 58 7 8 +21024,15 42 43 17 37 50 7 4 +11954,1 6 57 57 57 26 65 9 16 17 11 8 +17933,15 55 88 9 16 17 75 7 4 +17369,1 6 34 107 107 36 37 10 7 8 +9000,15 31 42 43 17 37 35 87 7 4 +16119,1 6 71 107 42 43 17 37 50 93 7 8 +10740,15 9 16 36 37 38 17 62 10 7 4 +10798,15 49 107 36 37 17 10 7 8 +10741,15 9 16 36 37 38 17 62 10 7 8 +20117,5 6 65 57 58 58 89 7 8 +22940,5 6 65 26 9 16 17 11 8 +1302,70 36 16 17 63 7 8 +9001,15 31 42 43 17 37 35 87 7 8 +16728,1 6 71 107 42 43 17 37 50 93 7 4 +1691,5 6 88 9 16 17 11 8 +15211,5 6 57 53 34 35 54 7 8 +12894,1 6 55 34 36 37 63 7 8 +8019,5 6 88 9 16 17 11 13 +14401,1 6 55 34 36 37 63 7 4 +4562,1 12 11 89 58 11 7 8 +7461,1 12 11 89 58 11 7 4 +15212,5 6 57 53 34 35 54 7 4 +18037,1 6 99 100 17 91 7 4 +24055,1 6 44 9 16 61 16 17 11 8 +5070,5 6 55 9 16 17 10 7 4 +911,5 6 55 9 16 17 10 7 8 +24056,1 6 44 9 16 61 16 17 11 13 +8028,1 6 34 109 110 123 7 4 +8029,1 6 34 109 110 123 7 8 +10676,15 55 12 9 16 17 43 32 7 8 +10677,15 55 12 9 16 17 43 32 7 4 +629,1 6 31 42 16 17 11 8 +15369,1 6 71 47 47 36 37 17 11 8 +12890,1 6 64 61 62 17 37 68 11 8 +5065,5 6 53 12 16 36 37 38 37 68 54 7 8 +3854,1 6 49 50 85 54 7 4 +23839,5 6 9 36 16 17 37 115 50 87 7 4 +3853,1 6 49 50 85 54 7 8 +5066,5 6 53 12 16 36 37 38 37 68 54 7 4 +7500,5 6 55 88 57 9 36 37 38 37 52 13 +24791,5 6 9 10 87 58 87 7 8 +15840,5 6 41 88 89 58 7 4 +15875,15 12 42 43 17 3 8 +26501,1 6 12 16 36 16 17 43 50 7 8 +15874,15 12 42 43 17 3 4 +24325,1 6 12 34 114 36 37 17 63 7 4 +10549,1 6 53 31 36 37 17 11 13 +13183,1 6 34 36 16 17 11 8 +15839,5 6 41 88 89 58 7 8 +14265,5 6 57 53 55 56 13 +4312,1 12 11 89 23 7 8 +6227,1 6 64 61 62 91 7 8 +23190,5 6 55 88 57 58 58 58 89 13 +4313,1 12 11 89 23 7 4 +16015,15 44 31 47 48 32 7 4 +7923,5 6 84 9 10 56 85 7 8 +16014,15 44 31 47 48 32 7 8 +5644,1 6 64 61 62 91 7 4 +13726,5 6 51 52 27 66 7 4 +8774,1 6 53 31 36 37 17 11 8 +7130,5 6 84 9 10 56 85 7 4 +3873,5 6 84 109 9 16 17 10 7 8 +14158,5 6 84 109 9 16 17 10 7 4 +23480,1 6 53 53 55 56 13 +24605,1 6 65 88 12 16 17 19 13 +13401,5 6 55 51 36 37 11 8 +22596,15 34 47 48 32 87 7 4 +12547,1 21 22 17 17 7 8 +329,1 6 53 9 10 13 +22595,15 34 47 48 32 87 7 8 +11088,15 55 56 89 7 4 +17494,15 55 57 58 7 4 +3299,1 6 64 61 62 17 37 68 7 8 +11118,15 55 56 89 7 8 +17493,15 55 57 58 7 8 +3298,1 6 64 61 62 17 37 68 7 4 +3914,15 9 61 62 108 72 66 11 8 +21477,1 6 64 36 37 38 37 48 68 93 58 7 8 +23447,15 12 16 36 16 17 37 115 68 7 8 +21476,1 6 64 36 37 38 37 48 68 93 58 7 4 +22615,5 6 57 34 35 58 7 4 +23452,15 9 16 36 39 36 16 61 16 17 37 48 32 7 4 +23446,15 12 16 36 16 17 37 115 68 7 4 +5915,1 6 9 10 27 89 13 +8841,5 6 53 71 47 107 107 36 37 17 10 54 7 8 +13197,15 57 9 16 42 16 17 37 32 93 7 4 +21287,1 6 31 36 37 17 37 32 7 8 +11667,15 53 51 52 7 4 +25744,5 6 65 9 16 42 16 17 62 75 7 8 +11666,15 53 51 52 7 8 +12965,5 6 64 16 17 43 68 11 7 8 +14048,5 6 41 88 89 58 11 8 +2889,15 57 53 51 36 37 17 10 7 4 +3015,5 6 57 58 89 13 +2890,15 57 53 51 36 37 17 10 7 8 +13198,15 57 9 16 42 16 17 37 32 93 7 8 +10397,1 6 55 12 39 36 16 17 19 13 +22996,1 6 55 88 34 35 58 7 8 +6259,5 6 26 65 66 13 +18749,15 44 51 52 56 89 7 4 +12548,1 21 22 17 17 7 4 +18748,15 44 51 52 56 89 7 8 +16383,15 9 61 62 108 50 66 11 8 +23787,1 6 9 16 36 16 17 37 68 85 7 8 +8842,5 6 53 71 47 107 107 36 37 17 10 54 7 4 +23788,1 6 9 16 36 16 17 37 68 85 7 4 +685,5 6 64 16 61 62 17 10 54 85 54 7 8 +684,5 6 64 16 61 62 17 10 54 85 54 7 4 +12991,1 6 26 9 16 17 10 93 7 4 +16213,1 6 55 57 9 16 36 16 17 37 72 7 4 +12990,1 6 26 9 16 17 10 93 7 8 +5337,15 55 90 16 17 11 7 8 +7587,1 6 53 54 58 89 7 4 +4823,5 6 88 51 67 36 37 11 8 +7588,1 6 53 54 58 89 7 8 +4824,5 6 88 51 67 36 37 11 13 +16655,15 86 34 47 48 32 30 7 4 +6515,5 6 64 16 36 37 38 37 50 7 8 +1417,5 6 64 16 36 37 38 37 50 7 4 +26099,5 6 67 47 36 37 17 37 48 72 7 4 +5628,1 6 53 12 16 17 11 13 +14058,5 6 67 47 36 37 17 37 48 72 7 8 +25584,5 6 12 34 114 36 37 17 63 7 8 +2745,1 6 55 88 55 56 7 4 +17378,5 6 64 16 36 37 38 37 48 68 13 +19827,5 6 64 16 17 37 72 7 4 +26237,5 6 55 12 109 110 13 +11819,5 6 57 34 35 58 7 8 +1530,5 6 49 42 43 17 10 7 8 +25231,5 6 64 16 61 62 17 10 54 7 8 +7290,15 9 16 17 43 35 11 13 +12451,5 6 73 36 16 17 37 35 7 4 +18552,5 6 64 16 61 62 17 10 54 7 4 +7289,15 9 16 17 43 35 11 8 +12450,5 6 73 36 16 17 37 35 7 8 +6575,5 6 49 42 43 17 10 7 4 +24085,1 6 84 49 36 16 17 37 52 85 7 8 +6683,15 51 36 37 17 11 7 8 +22801,1 6 12 12 36 16 17 37 50 11 7 4 +3959,1 6 12 16 17 37 52 7 8 +3958,1 6 12 16 17 37 52 7 4 +9315,5 6 113 61 62 11 13 +11371,15 57 34 36 37 17 62 10 7 8 +19141,1 6 12 65 9 16 17 11 13 +26125,5 6 9 10 58 89 85 85 54 7 4 +11370,15 57 34 36 37 17 62 10 7 4 +21634,15 12 36 16 17 69 +24305,1 6 65 57 57 9 61 16 17 11 13 +26124,5 6 9 10 58 89 85 85 54 7 8 +5229,1 6 53 31 36 37 17 19 13 +24595,5 6 12 16 36 16 61 16 17 63 7 8 +17747,5 6 12 16 36 16 61 16 17 63 7 4 +2396,5 6 9 61 62 63 7 4 +25567,5 6 51 52 125 7 4 +2486,1 6 71 36 37 10 7 8 +14965,1 6 65 57 57 9 61 16 17 11 8 +6632,1 6 71 36 37 10 7 4 +3088,5 6 9 61 62 63 7 8 +19140,1 6 12 65 9 16 17 11 8 +25566,5 6 51 52 125 7 8 +9314,5 6 113 61 62 11 8 +9622,1 6 92 31 36 37 19 7 4 +19211,1 6 65 66 56 7 8 +6336,15 96 36 16 39 36 16 17 19 7 8 +5384,5 6 55 55 53 73 16 61 16 17 11 8 +18976,1 6 64 61 62 17 37 35 56 54 7 8 +4485,5 6 55 9 16 17 43 72 7 8 +6335,15 96 36 16 39 36 16 17 19 7 4 +5385,5 6 55 55 53 73 16 61 16 17 11 13 +15124,1 6 92 31 36 37 19 7 8 +18975,1 6 64 61 62 17 37 35 56 54 7 4 +7975,5 6 55 9 16 17 43 72 7 4 +9399,5 6 9 10 123 7 4 +19210,1 6 65 66 56 7 4 +14507,5 6 9 10 123 7 8 +2986,15 55 12 57 96 36 16 17 37 35 7 8 +21510,5 6 65 88 55 65 66 7 8 +23024,1 6 65 55 56 7 4 +2987,15 55 12 57 96 36 16 17 37 35 7 4 +18648,5 6 88 57 58 56 89 13 +3829,15 51 36 37 17 11 7 4 +23023,1 6 65 55 56 7 8 +6984,5 6 55 71 36 37 17 91 54 54 7 4 +19507,5 6 88 9 16 17 37 48 35 7 4 +26708,5 6 88 9 16 17 37 48 35 7 8 +8393,1 6 107 108 7 4 +18726,5 6 34 42 43 17 10 54 7 4 +8392,1 6 107 108 7 8 +352,15 9 16 17 43 35 7 8 +1256,1 6 57 53 31 32 13 +13385,5 6 34 42 43 17 10 54 7 8 +25924,5 6 12 16 36 37 38 17 11 58 7 8 +353,15 9 16 17 43 35 7 4 +6126,1 6 57 9 16 117 118 72 11 8 +6679,1 6 12 51 52 13 +10153,15 34 47 47 36 37 11 13 +10152,15 34 47 47 36 37 11 8 +15008,5 6 53 18 12 16 17 37 35 11 54 7 4 +15224,5 6 9 16 39 36 39 36 16 17 19 7 4 +3414,1 6 53 12 16 17 11 8 +2078,15 86 34 36 37 19 58 11 8 +21843,5 6 53 18 12 16 17 37 35 11 54 7 8 +9350,15 88 57 57 9 16 17 37 35 7 8 +13159,5 6 18 12 16 17 37 48 50 89 7 8 +9351,15 88 57 57 9 16 17 37 35 7 4 +12706,5 6 53 105 106 7 4 +12707,5 6 53 105 106 7 8 +2406,15 55 12 57 96 36 37 38 19 58 11 8 +25700,5 6 9 16 36 16 17 37 48 72 54 7 4 +13014,1 6 53 44 9 16 17 10 54 7 8 +1962,15 109 96 36 16 17 19 110 48 52 85 54 7 8 +19988,1 6 53 44 9 16 17 10 54 7 4 +1963,15 109 96 36 16 17 19 110 48 52 85 54 7 4 +13160,5 6 18 12 16 17 37 48 50 89 7 4 +9324,5 6 12 16 36 16 61 61 16 17 11 8 +14503,5 6 12 16 36 16 61 61 16 17 11 13 +14859,1 6 55 88 89 66 56 7 8 +12848,5 6 18 12 16 17 43 17 3 4 +14622,5 6 55 88 88 34 35 13 +19354,1 6 55 88 89 66 56 7 4 +24610,5 6 84 88 55 12 11 58 89 85 7 4 +25025,5 6 88 9 16 17 106 7 4 +26702,15 12 16 36 16 17 100 7 8 +17963,5 6 84 88 55 12 11 58 89 85 7 8 +23423,5 6 88 9 16 17 106 7 8 +5128,1 12 9 16 42 16 17 10 54 54 7 4 +5207,5 6 53 12 16 17 62 10 7 4 +25047,15 9 61 62 17 63 7 8 +5129,1 12 9 16 42 16 17 10 54 54 7 8 +5208,5 6 53 12 16 17 62 10 7 8 +22061,1 6 88 96 16 21 77 78 22 79 4 +25046,15 9 61 62 17 63 7 4 +9097,5 6 53 55 56 54 7 8 +11904,15 44 67 107 117 16 17 11 8 +23516,15 65 9 16 42 16 17 62 75 7 4 +23515,15 65 9 16 42 16 17 62 75 7 8 +16822,5 6 71 16 17 52 7 4 +6251,5 6 57 12 16 36 37 38 17 37 48 35 7 8 +8999,1 6 31 42 43 17 37 35 87 7 4 +6004,1 6 57 9 16 17 37 50 58 54 7 8 +15655,5 6 49 107 108 48 35 7 8 +15656,5 6 49 107 108 48 35 7 4 +17448,1 6 31 32 27 7 4 +11905,15 44 67 107 117 16 17 11 13 +14153,5 6 109 110 85 54 7 8 +15264,1 6 55 88 89 11 56 7 8 +3858,5 6 109 110 85 54 7 4 +20574,15 55 88 9 36 37 10 7 8 +19904,5 6 9 10 54 85 7 4 +16112,1 6 57 9 16 17 37 50 58 54 7 4 +20573,15 55 88 9 36 37 10 7 4 +155,5 6 64 61 62 17 37 48 32 54 7 8 +2191,15 9 16 39 36 16 61 16 17 37 35 7 4 +156,5 6 64 61 62 17 37 48 32 54 7 4 +2192,15 9 16 39 36 16 61 16 17 37 35 7 8 +9100,5 6 53 55 56 54 7 4 +4805,5 6 9 10 66 54 7 4 +7658,15 51 36 37 17 37 68 7 8 +1394,15 12 16 17 69 +7659,15 51 36 37 17 37 68 7 4 +24182,1 6 84 12 16 16 17 19 13 +4804,5 6 9 10 66 54 7 8 +18856,1 6 53 12 16 36 37 38 37 72 54 7 4 +19905,5 6 9 10 54 85 7 8 +21952,5 6 57 57 65 9 16 17 19 7 8 +24115,15 12 16 17 94 +13306,5 6 18 12 16 17 10 85 7 4 +9747,5 6 18 12 16 17 10 85 7 8 +14292,1 6 57 53 9 10 56 54 7 8 +3633,5 6 9 36 16 17 10 7 8 +18674,1 12 39 36 16 61 16 36 37 38 62 10 7 8 +25957,5 6 57 57 65 9 16 17 19 7 4 +3634,5 6 9 36 16 17 10 7 4 +5546,5 6 53 90 16 17 91 54 7 8 +10955,5 2 16 17 37 50 54 7 8 +5545,5 6 53 90 16 17 91 54 7 4 +18680,15 31 47 107 107 36 16 17 37 48 35 7 4 +5060,1 6 53 12 16 36 37 38 37 72 54 7 8 +1987,15 12 16 17 98 +18665,1 6 73 16 17 11 58 7 4 +10956,5 2 16 17 37 50 54 7 4 +11311,15 12 36 37 38 37 52 13 +19593,1 6 18 12 16 17 37 52 58 7 8 +18798,5 6 84 12 34 36 37 17 63 85 54 7 8 +8935,15 12 16 36 16 36 16 17 19 13 +17782,1 6 65 57 57 9 16 17 63 7 8 +22104,15 34 36 37 10 54 54 7 8 +4945,5 6 84 12 34 36 37 17 63 85 54 7 4 +22103,15 34 36 37 10 54 54 7 4 +2323,5 6 9 10 58 89 58 7 8 +6758,1 6 55 12 11 56 7 4 +13175,5 6 31 47 48 32 93 7 8 +5557,1 6 53 12 16 17 19 13 +24997,5 6 9 10 58 66 89 7 4 +17783,1 6 65 57 57 9 16 17 63 7 4 +13182,5 6 31 47 48 32 93 7 4 +9005,1 6 64 16 42 16 17 74 7 8 +2322,5 6 9 10 58 89 58 7 4 +6757,1 6 55 12 11 56 7 8 +9004,1 6 64 16 42 16 17 74 7 4 +25864,1 6 64 42 16 17 43 32 93 7 4 +8816,5 6 53 12 16 36 16 17 63 7 8 +5730,1 6 53 90 16 17 37 72 7 4 +7634,1 6 55 56 87 7 4 +21106,15 49 47 47 47 47 36 37 17 10 54 7 4 +5729,1 6 53 90 16 17 37 72 7 8 +7652,1 6 55 56 87 7 8 +8817,5 6 53 12 16 36 16 17 63 7 4 +15361,5 6 55 12 57 9 36 16 17 37 35 7 4 +6328,5 6 55 12 57 9 36 16 17 37 35 7 8 +21105,15 49 47 47 47 47 36 37 17 10 54 7 8 +13149,5 6 84 9 10 11 85 54 7 8 +9072,1 6 9 16 36 16 17 37 35 7 4 +3591,1 6 9 16 36 16 17 37 35 7 8 +4187,1 6 57 92 57 58 7 8 +14139,15 65 86 9 16 17 10 7 8 +8400,15 65 86 9 16 17 10 7 4 +9337,5 6 88 57 58 58 7 4 +9336,5 6 88 57 58 58 7 8 +4186,1 6 57 92 57 58 7 4 +7939,15 86 12 16 36 37 38 17 11 8 +17503,5 6 18 12 16 17 43 17 11 8 +11653,1 6 57 9 16 36 37 38 17 11 8 +17355,5 6 71 72 58 66 7 4 +15372,1 6 88 9 16 17 37 48 35 7 8 +13949,1 6 9 61 62 48 32 93 58 7 8 +16280,5 6 71 72 58 66 7 8 +12262,1 2 16 17 43 48 11 8 +2984,15 96 36 16 17 37 52 7 8 +12263,1 2 16 17 43 48 11 13 +11498,5 6 86 31 114 42 43 17 63 7 4 +26511,15 34 47 36 16 17 75 7 8 +21432,15 12 16 39 36 16 36 16 36 37 38 17 11 8 +14447,1 6 9 61 62 48 32 93 58 7 4 +21433,15 12 16 39 36 16 36 16 36 37 38 17 11 13 +25421,15 65 9 16 17 37 50 7 8 +11418,5 6 53 18 9 16 17 11 7 4 +25420,15 65 9 16 17 37 50 7 4 +20781,5 6 57 67 68 56 7 8 +10083,5 6 12 16 61 16 36 37 38 17 11 13 +20236,15 71 117 16 39 36 16 17 19 7 4 +10082,5 6 12 16 61 16 36 37 38 17 11 8 +13872,15 12 16 36 37 38 37 48 32 7 4 +10184,5 6 9 36 37 38 37 48 52 13 +2834,5 6 55 55 67 47 36 37 17 11 8 +17106,5 6 49 61 62 63 7 4 +11386,15 34 47 48 52 7 4 +14825,15 71 61 62 106 7 4 +15398,5 6 64 16 42 16 17 13 +14824,15 71 61 62 106 7 8 +20564,15 34 47 42 43 17 37 35 7 8 +2983,15 96 36 16 17 37 52 7 4 +2346,5 6 49 61 62 63 7 8 +4302,15 12 16 61 16 17 62 10 7 8 +20565,15 34 47 42 43 17 37 35 7 4 +4301,15 12 16 61 16 17 62 10 7 4 +23734,1 6 55 57 67 47 36 37 11 8 +8367,5 6 18 12 16 17 37 48 50 89 27 28 +26645,1 12 36 37 38 37 68 89 13 +26422,5 6 53 119 16 61 16 17 43 32 54 7 8 +7234,15 12 36 37 38 17 37 52 7 4 +9257,15 71 47 47 47 47 36 37 17 10 54 7 4 +7235,15 12 36 37 38 17 37 52 7 8 +9256,15 71 47 47 47 47 36 37 17 10 54 7 8 +4262,15 57 9 16 17 93 63 7 8 +11387,15 34 47 48 52 7 8 +1252,15 57 9 61 62 52 7 8 +1311,1 6 64 61 62 17 43 17 43 32 54 7 4 +1253,15 57 9 61 62 52 7 4 +20966,1 6 34 35 56 11 7 4 +14891,1 6 12 16 17 19 7 8 +23713,15 55 9 16 42 16 61 16 17 11 7 8 +8187,1 6 64 16 42 16 17 37 72 7 4 +18010,1 6 12 16 17 19 7 4 +18467,15 9 117 16 17 19 7 8 +17263,1 6 64 16 42 16 17 37 72 7 8 +18466,15 9 117 16 17 19 7 4 +21585,5 6 12 55 9 61 62 72 7 4 +4263,15 57 9 16 17 93 63 7 4 +5098,15 57 34 47 36 37 19 13 +21944,15 51 36 37 19 11 8 +25168,5 6 9 16 39 36 16 36 37 38 17 37 50 7 8 +25167,5 6 9 16 39 36 16 36 37 38 17 37 50 7 4 +11805,5 6 26 88 71 36 37 17 11 8 +11150,15 12 36 16 36 37 38 17 11 13 +17806,5 6 64 61 62 17 37 50 58 54 7 8 +17805,5 6 64 61 62 17 37 50 58 54 7 4 +11149,15 12 36 16 36 37 38 17 11 8 +18228,70 16 36 16 17 91 7 4 +4172,15 55 9 61 62 52 7 4 +21870,1 6 67 47 48 48 52 54 7 4 +1722,1 6 55 12 55 56 11 8 +16894,5 6 53 12 16 17 37 35 7 4 +4173,15 55 9 61 62 52 7 8 +25931,1 6 67 47 48 48 52 54 7 8 +20235,15 71 117 16 39 36 16 17 19 7 8 +6350,1 6 53 12 31 32 13 +9594,5 6 53 12 16 17 37 35 7 8 +20343,5 6 86 34 36 37 17 69 +2632,15 34 107 36 37 63 7 8 +2633,15 34 107 36 37 63 7 4 +6367,5 6 86 34 36 37 19 13 +24117,15 34 47 48 52 11 8 +23069,1 6 12 51 36 37 11 8 +13441,5 6 9 10 11 54 7 8 +18229,70 16 36 16 17 91 7 8 +25893,5 6 64 39 36 36 61 16 17 37 72 7 8 +12400,5 6 9 10 11 54 7 4 +13854,5 6 53 9 16 36 16 17 37 48 35 54 54 7 4 +14764,5 6 12 34 36 37 17 63 85 54 7 8 +25894,5 6 64 39 36 36 61 16 17 37 72 7 4 +6405,15 44 31 47 48 32 11 8 +10889,15 9 16 39 36 16 61 16 17 62 10 7 8 +6482,5 6 53 73 74 56 13 +10890,15 9 16 39 36 16 61 16 17 62 10 7 4 +22631,1 6 88 67 42 43 17 37 35 58 7 4 +19894,1 12 11 54 85 7 8 +22632,1 6 88 67 42 43 17 37 35 58 7 8 +22113,1 12 11 54 85 7 4 +20733,5 6 53 12 42 43 17 3 8 +9999,15 9 16 17 118 17 10 7 4 +9998,15 9 16 17 118 17 10 7 8 +9462,15 71 47 48 68 85 54 7 4 +9463,15 71 47 48 68 85 54 7 8 +14422,5 6 57 58 89 56 66 7 8 +18881,5 6 53 9 16 36 16 17 37 52 7 4 +12066,1 6 65 88 88 57 9 16 117 118 72 11 8 +18397,5 6 53 9 16 36 16 17 37 52 7 8 +3061,1 12 39 36 16 61 16 17 19 13 +10868,1 6 53 9 16 17 37 35 7 8 +1291,70 36 16 17 37 35 7 8 +25218,1 6 53 9 16 17 37 35 7 4 +1290,70 36 16 17 37 35 7 4 +1960,5 6 84 49 47 47 47 109 110 13 +4032,5 6 76 16 17 69 +17479,1 6 88 88 90 16 17 106 7 4 +17480,1 6 88 88 90 16 17 106 7 8 +20707,5 6 51 47 48 35 54 54 7 8 +20708,5 6 51 47 48 35 54 54 7 4 +17093,15 88 65 55 9 16 17 37 35 7 8 +2213,5 6 88 12 65 9 16 17 10 7 4 +14179,1 6 92 51 36 37 17 10 93 7 4 +7062,5 6 64 61 62 62 10 7 4 +17092,15 88 65 55 9 16 17 37 35 7 4 +2214,5 6 88 12 65 9 16 17 10 7 8 +14180,1 6 92 51 36 37 17 10 93 7 8 +14423,5 6 57 58 89 56 66 7 4 +4994,5 6 64 61 62 62 10 7 8 +20952,1 6 9 16 17 118 17 3 4 +1886,1 6 71 47 48 72 7 4 +20951,1 6 9 16 17 118 17 3 8 +15419,1 6 71 47 48 72 7 8 +9670,5 6 57 92 84 85 7 4 +14558,1 6 65 55 56 58 7 8 +20126,15 44 31 47 42 43 17 37 72 54 7 8 +420,5 6 12 16 21 77 78 22 8 +23079,5 6 53 18 12 16 17 37 108 48 68 54 7 4 +9669,5 6 57 92 84 85 7 8 +17348,1 6 65 55 56 58 7 4 +24326,15 34 114 36 37 17 63 7 4 +1766,1 6 9 10 33 7 8 +14981,1 6 9 16 36 16 36 16 17 11 8 +14982,1 6 9 16 36 16 36 16 17 11 13 +16870,15 86 34 47 48 50 87 7 8 +20125,15 44 31 47 42 43 17 37 72 54 7 4 +24327,15 34 114 36 37 17 63 7 8 +20976,1 6 64 16 36 16 17 37 48 7 8 +20977,1 6 64 16 36 16 17 37 48 7 4 +11527,1 6 55 9 16 17 37 48 35 11 7 4 +1626,1 6 9 10 33 7 4 +5303,1 6 31 36 37 17 10 54 7 8 +19651,1 6 55 53 49 50 7 8 +11135,1 6 64 92 9 10 93 63 7 8 +302,15 65 9 16 17 11 8 +818,5 45 21 22 17 37 72 7 4 +319,1 6 31 36 37 17 10 54 7 4 +19927,1 6 55 53 49 50 7 4 +12343,1 6 64 92 9 10 93 63 7 4 +11272,1 12 9 31 42 43 17 37 48 72 54 7 4 +819,5 45 21 22 17 37 72 7 8 +2464,1 6 88 89 23 7 4 +22065,15 86 34 47 48 50 87 7 4 +303,15 65 9 16 17 11 13 +8694,1 12 9 31 42 43 17 37 48 72 54 7 8 +517,5 6 51 52 56 7 8 +3894,1 6 18 12 16 17 120 7 8 +12489,5 6 57 9 16 36 37 38 10 7 8 +4435,1 6 88 89 23 7 8 +1236,5 6 51 52 56 7 4 +13375,5 6 57 9 16 36 37 38 10 7 4 +3893,1 6 18 12 16 17 120 7 4 +17686,5 6 31 32 93 58 7 8 +7681,15 34 47 9 36 37 17 11 13 +6076,5 6 96 36 16 17 37 72 7 8 +24985,1 6 55 49 36 37 69 +6077,5 6 96 36 16 17 37 72 7 4 +16232,1 6 64 16 117 118 72 11 66 11 8 +2241,5 6 57 58 58 13 +23965,1 6 31 36 37 10 7 8 +14057,1 6 12 16 61 16 17 62 10 7 8 +9290,1 6 53 9 16 17 62 10 7 8 +9877,1 6 31 36 37 10 7 4 +24709,15 55 12 109 88 57 58 13 +5582,5 6 84 34 35 54 7 8 +19486,5 6 84 34 35 54 7 4 +26658,5 6 57 9 39 36 16 36 37 38 10 7 4 +17941,70 36 16 17 62 10 7 4 +5161,5 6 53 86 87 54 7 4 +11795,5 6 12 12 11 11 7 8 +7186,1 6 53 9 16 17 62 10 7 4 +17942,70 36 16 17 62 10 7 8 +26625,1 6 12 57 58 58 66 13 +16021,15 12 16 36 16 17 37 48 32 7 4 +21625,5 6 64 61 62 37 52 54 7 4 +11146,5 6 64 92 9 42 16 17 19 7 8 +18626,5 6 9 16 17 37 72 54 7 4 +16022,15 12 16 36 16 17 37 48 32 7 8 +11145,5 6 64 92 9 42 16 17 19 7 4 +14248,5 6 9 16 17 37 72 54 7 8 +2500,5 6 12 12 11 11 7 4 +21109,15 34 36 37 17 35 54 7 8 +20569,5 6 64 61 62 37 52 54 7 8 +19480,1 6 84 9 10 58 89 7 4 +2617,5 6 49 47 47 36 37 17 10 7 4 +12639,1 6 18 12 16 17 37 108 35 7 8 +15842,5 6 64 61 62 37 35 7 4 +4897,1 6 18 12 16 17 37 108 35 7 4 +19257,5 6 64 61 62 37 35 7 8 +24262,1 6 9 16 36 16 117 118 32 7 8 +21108,15 34 36 37 17 35 54 7 4 +2616,5 6 49 47 47 36 37 17 10 7 8 +24263,1 6 9 16 36 16 117 118 32 7 4 +17687,5 6 31 32 93 58 7 4 +7680,15 34 47 9 36 37 17 11 8 +6038,5 6 57 58 56 13 +14402,1 6 53 9 36 16 17 37 35 56 7 8 +12145,15 57 9 16 36 37 38 37 108 48 72 54 7 8 +12754,1 6 67 36 37 37 11 8 +21222,5 6 12 88 89 13 +12146,15 57 9 16 36 37 38 37 108 48 72 54 7 4 +19243,15 51 114 36 37 11 13 +22049,5 6 9 10 89 27 33 13 +19242,15 51 114 36 37 11 8 +18620,70 16 36 16 61 16 61 16 17 10 7 4 +18619,70 16 36 16 61 16 61 16 17 10 7 8 +10915,5 6 90 36 16 61 16 17 19 7 8 +10028,1 12 11 58 89 27 28 +766,1 6 88 57 58 66 13 +15906,5 6 90 36 16 61 16 17 19 7 4 +9049,1 6 12 16 61 16 17 62 10 7 4 +20230,15 34 36 37 17 118 17 10 7 4 +20229,15 34 36 37 17 118 17 10 7 8 +11957,15 67 47 36 37 17 10 85 54 7 4 +11958,15 67 47 36 37 17 10 85 54 7 8 +23332,15 57 96 36 37 38 37 48 35 7 4 +24289,1 6 31 36 37 17 37 35 7 4 +2277,5 6 9 10 11 58 89 56 7 8 +23331,15 57 96 36 37 38 37 48 35 7 8 +14352,15 57 53 9 16 17 69 +3547,5 6 9 10 11 58 89 56 7 4 +17033,1 6 67 47 47 42 43 17 11 8 +24958,5 6 53 34 36 37 75 54 7 8 +14302,1 6 9 10 58 56 7 8 +23915,1 6 9 10 58 56 7 4 +20385,5 6 84 84 85 7 8 +18292,1 6 12 51 117 16 17 11 13 +20382,5 6 84 84 85 7 4 +14460,60 16 36 16 17 37 48 72 7 4 +18291,1 6 12 51 117 16 17 11 8 +14459,60 16 36 16 17 37 48 72 7 8 +25440,1 6 9 16 17 118 17 11 13 +6553,1 6 26 88 89 13 +26348,1 6 67 16 36 37 17 37 52 7 4 +14560,15 65 55 56 58 7 4 +14559,15 65 55 56 58 7 8 +21915,1 6 53 34 47 48 48 32 54 7 4 +21916,1 6 53 34 47 48 48 32 54 7 8 +7238,70 36 37 38 17 37 50 7 4 +18198,5 6 84 88 57 9 16 17 37 35 7 4 +20862,1 6 96 16 36 16 61 16 17 19 33 13 +16084,5 6 55 12 57 96 16 21 77 78 22 79 4 +1594,5 6 57 9 16 17 10 7 8 +7237,70 36 37 38 17 37 50 7 8 +18197,5 6 84 88 57 9 16 17 37 35 7 8 +1593,5 6 57 9 16 17 10 7 4 +6961,1 6 57 57 57 65 9 16 17 11 8 +18926,1 6 92 31 36 37 17 62 93 7 8 +25557,1 6 92 31 36 37 17 62 93 7 4 +3081,15 51 36 37 69 +21315,1 6 92 84 85 7 8 +22423,1 6 57 57 34 35 7 4 +9054,5 6 53 86 87 54 7 8 +738,5 6 88 55 9 16 17 62 10 7 4 +21314,1 6 92 84 85 7 4 +16166,1 6 57 57 34 35 7 8 +15801,5 6 90 16 42 16 17 19 7 4 +16020,1 12 16 36 16 17 37 48 32 7 4 +18630,1 6 55 88 88 57 58 89 13 +24855,5 6 67 42 43 17 37 50 54 7 8 +15038,1 6 55 56 93 7 8 +12983,1 6 55 56 93 7 4 +15970,1 6 9 16 17 118 17 11 8 +24856,5 6 67 42 43 17 37 50 54 7 4 +1848,1 6 12 16 61 16 17 19 13 +8006,1 6 84 57 34 47 48 32 85 54 7 4 +13085,1 6 31 47 36 37 17 11 8 +18369,1 6 53 9 10 89 58 7 8 +24404,5 6 88 71 47 48 52 7 8 +13473,1 6 18 12 9 16 17 62 10 7 8 +20375,5 6 88 34 35 89 7 8 +13086,1 6 31 47 36 37 17 11 13 +8011,1 6 84 57 34 47 48 32 85 54 7 8 +19350,5 6 64 16 36 16 42 16 17 37 72 7 4 +13474,1 6 18 12 9 16 17 62 10 7 4 +5410,70 36 16 17 10 54 7 4 +12314,5 6 90 16 42 16 17 19 7 8 +19349,5 6 64 16 36 16 42 16 17 37 72 7 8 +19969,15 12 36 37 38 17 43 68 7 8 +3815,1 6 18 12 16 17 43 52 7 8 +5411,70 36 16 17 10 54 7 8 +19970,15 12 36 37 38 17 43 68 7 4 +19603,15 44 96 16 21 77 78 22 8 +8106,1 6 53 9 16 17 37 35 11 8 +7786,1 6 31 36 37 17 62 10 7 4 +3814,1 6 18 12 16 17 43 52 7 4 +17939,70 36 16 17 37 35 11 8 +1999,5 6 53 9 10 58 7 8 +22935,15 55 9 16 42 16 17 10 54 7 4 +4018,5 6 53 9 10 58 7 4 +22934,15 55 9 16 42 16 17 10 54 7 8 +14379,1 6 9 96 36 37 38 17 19 10 7 4 +20374,5 6 88 34 35 89 7 4 +24711,15 55 12 55 56 58 89 110 72 7 8 +9841,15 55 12 55 56 58 89 110 72 7 4 +13020,5 6 88 71 47 48 52 7 4 +13649,15 9 16 17 37 115 68 7 8 +7866,5 6 53 67 47 107 108 108 48 72 54 7 4 +18456,5 6 88 55 9 16 17 37 35 7 8 +26229,1 6 18 12 16 17 37 108 35 87 7 4 +19020,5 6 88 55 9 16 17 37 35 7 4 +26228,1 6 18 12 16 17 37 108 35 87 7 8 +14380,1 6 9 96 36 37 38 17 19 10 7 8 +26794,1 6 88 57 58 58 13 +24911,1 6 12 9 16 17 118 17 10 7 4 +2342,15 65 9 16 17 63 7 4 +25681,15 57 9 39 36 16 42 16 17 11 13 +18462,1 6 12 9 16 17 118 17 10 7 8 +18430,5 6 9 10 58 89 54 7 4 +2343,15 65 9 16 17 63 7 8 +15754,5 6 64 61 62 37 48 35 87 7 4 +18431,5 6 9 10 58 89 54 7 8 +22822,1 6 9 36 37 38 37 48 50 7 4 +25680,15 57 9 39 36 16 42 16 17 11 8 +14643,1 6 57 9 36 37 38 37 108 35 54 7 8 +21188,5 6 88 89 35 87 7 4 +21189,5 6 88 89 35 87 7 8 +9665,1 12 11 14 30 58 7 4 +23162,1 12 11 14 30 58 7 8 +10576,1 6 12 16 36 16 17 37 48 72 7 4 +22069,1 12 16 17 118 17 11 8 +11408,5 6 53 18 12 16 17 37 48 35 54 7 8 +16998,1 6 53 18 12 61 16 61 16 17 11 13 +11409,5 6 53 18 12 16 17 37 48 35 54 7 4 +7771,5 6 86 34 36 37 17 19 13 +5075,1 6 88 57 58 56 13 +25176,5 6 57 65 9 16 17 10 7 8 +13592,15 55 53 57 9 16 17 37 48 72 54 7 8 +24077,5 6 84 67 47 48 72 85 54 7 4 +13593,15 55 53 57 9 16 17 37 48 72 54 7 4 +24076,5 6 84 67 47 48 72 85 54 7 8 +4589,5 6 67 36 37 17 37 68 7 4 +5844,15 55 9 16 17 10 54 7 8 +25055,15 12 11 27 89 7 4 +14395,5 6 57 65 9 16 17 10 7 4 +5845,15 55 9 16 17 10 54 7 4 +11429,5 6 67 36 37 17 37 68 7 8 +20246,15 12 11 27 89 7 8 +16997,1 6 53 18 12 61 16 61 16 17 11 8 +15815,5 6 57 53 12 11 54 7 8 +2459,1 12 16 36 16 17 37 72 7 8 +21620,1 6 53 12 49 36 37 17 11 8 +8371,1 12 16 36 16 17 37 72 7 4 +26090,5 6 55 57 9 16 17 11 8 +16957,5 6 57 53 9 61 16 61 16 17 19 13 +18835,15 65 9 16 42 16 17 62 10 7 8 +16620,5 6 71 72 58 89 13 +18836,15 65 9 16 42 16 17 62 10 7 4 +24886,5 6 84 12 11 85 85 54 7 8 +24887,5 6 84 12 11 85 85 54 7 4 +1610,1 6 96 16 36 37 38 17 62 10 7 8 +16632,1 6 124 36 37 17 63 7 4 +1763,1 6 96 16 36 37 38 17 62 10 7 4 +16633,1 6 124 36 37 17 63 7 8 +584,1 6 53 67 47 36 37 63 7 4 +15969,15 12 16 36 16 117 118 35 7 8 +16758,1 6 12 65 71 117 16 17 11 8 +574,1 6 53 67 47 36 37 63 7 8 +15968,15 12 16 36 16 117 118 35 7 4 +5866,15 55 53 49 50 7 4 +9760,15 55 73 16 36 16 17 11 8 +24567,1 6 71 72 27 89 7 8 +9761,15 55 73 16 36 16 17 11 13 +5867,15 55 53 49 50 7 8 +9919,1 6 71 72 27 89 7 4 +5425,15 53 55 56 58 13 +17140,1 6 12 36 16 17 62 10 7 4 +10641,95 16 36 16 17 63 7 4 +17141,1 6 12 36 16 17 62 10 7 8 +10642,95 16 36 16 17 63 7 8 +23416,5 6 12 51 42 43 17 56 7 4 +19414,15 53 64 36 16 17 37 50 54 7 4 +8095,5 6 88 9 16 17 62 10 7 8 +13230,15 96 36 37 38 37 68 7 4 +18649,1 6 67 68 66 58 89 7 8 +19415,15 53 64 36 16 17 37 50 54 7 8 +5814,1 6 65 9 16 17 11 13 +5813,1 6 65 9 16 17 11 8 +15634,5 6 51 61 62 17 37 32 54 7 4 +13231,15 96 36 37 38 37 68 7 8 +20713,5 6 64 36 16 17 37 48 72 7 4 +23415,5 6 12 51 42 43 17 56 7 8 +1650,15 9 16 17 63 7 8 +25954,15 96 16 36 16 17 37 32 7 4 +1649,15 9 16 17 63 7 4 +15857,5 6 67 42 43 17 37 72 54 7 8 +22837,1 6 12 90 61 16 17 11 8 +25106,5 6 67 42 43 17 37 72 54 7 4 +749,5 6 9 61 62 68 7 8 +22838,1 6 12 90 61 16 17 11 13 +25729,1 6 53 53 51 36 37 17 10 54 54 7 8 +724,5 6 9 61 62 68 7 4 +7589,15 88 57 53 31 32 13 +17902,5 6 53 57 9 16 17 37 52 7 8 +23375,5 6 51 52 93 58 7 4 +10388,5 6 57 96 16 36 16 16 17 19 7 8 +14081,5 6 53 57 9 16 17 37 52 7 4 +15022,5 6 84 57 12 11 58 85 7 8 +12352,1 6 65 49 47 48 50 7 8 +16473,5 6 9 16 61 16 17 10 7 8 +22280,15 55 57 9 61 62 72 7 8 +11626,1 6 65 49 47 48 50 7 4 +22279,15 55 57 9 61 62 72 7 4 +25573,5 6 9 16 61 16 17 10 7 4 +1512,1 6 57 92 9 16 17 63 7 8 +9641,5 6 92 42 43 17 37 35 93 7 4 +25253,5 6 55 57 88 89 11 8 +13671,1 6 57 92 9 16 17 63 7 4 +9640,5 6 92 42 43 17 37 35 93 7 8 +25955,15 96 16 36 16 17 37 32 7 8 +13657,15 65 9 16 42 16 17 37 35 7 4 +15194,5 6 41 9 16 17 11 7 8 +23215,15 67 114 107 36 37 17 63 7 8 +26366,5 6 9 16 17 43 48 32 75 7 8 +1245,1 6 53 9 16 17 10 54 7 4 +23216,15 67 114 107 36 37 17 63 7 4 +1246,1 6 53 9 16 17 10 54 7 8 +15071,1 6 53 12 34 36 37 17 91 7 8 +26365,5 6 9 16 17 43 48 32 75 7 4 +3721,1 6 53 12 34 36 37 17 91 7 4 +10577,1 6 12 16 36 16 17 37 48 72 7 8 +12764,5 6 88 9 16 17 62 10 7 4 +13658,15 65 9 16 42 16 17 37 35 7 8 +17136,1 6 12 36 16 17 37 35 7 4 +23376,5 6 51 52 93 58 7 8 +7109,1 6 84 49 36 37 17 10 7 8 +13814,5 6 12 11 56 54 7 4 +7108,1 6 84 49 36 37 17 10 7 4 +17379,5 6 64 16 36 37 38 37 48 68 54 7 8 +5763,5 6 12 9 16 17 37 50 7 4 +16262,1 6 67 68 56 66 7 8 +5344,5 6 12 9 16 17 37 50 7 8 +6925,1 2 16 17 17 54 54 7 8 +17162,5 6 31 47 48 32 93 58 7 4 +3833,1 2 16 17 17 54 54 7 4 +14568,1 12 39 36 16 61 16 17 11 8 +17350,1 6 67 68 56 66 7 4 +18141,5 6 57 53 90 16 17 10 54 7 4 +20497,1 6 49 50 58 66 7 4 +24718,5 6 31 47 48 32 93 58 7 8 +13080,5 6 34 47 48 108 35 7 4 +20484,1 6 49 50 58 66 7 8 +25678,5 6 53 26 9 16 61 16 17 10 7 8 +25677,5 6 53 26 9 16 61 16 17 10 7 4 +13079,5 6 34 47 48 108 35 7 8 +21847,15 34 88 90 16 17 11 7 8 +4049,1 6 64 36 16 17 43 35 7 8 +15695,5 6 9 16 17 17 54 54 7 8 +1575,15 9 16 36 37 38 37 50 7 4 +4533,15 12 16 36 61 16 17 62 10 7 4 +18477,15 61 62 63 7 8 +1574,15 9 16 36 37 38 37 50 7 8 +3226,15 9 9 9 9 9 16 17 62 10 7 8 +9300,15 12 16 36 61 16 17 62 10 7 8 +24793,1 6 9 10 87 58 87 7 4 +3225,15 9 9 9 9 9 16 17 62 10 7 4 +24792,1 6 9 10 87 58 87 7 8 +13165,5 6 9 16 17 17 54 54 7 4 +23278,1 6 9 10 110 50 54 7 8 +19343,15 55 55 12 16 36 37 38 17 11 8 +11042,1 6 47 48 50 7 4 +5820,5 6 12 16 36 37 38 17 3 4 +18478,15 61 62 63 7 4 +5819,5 6 12 16 36 37 38 17 3 8 +16307,15 88 89 11 7 8 +5737,15 88 89 11 7 4 +19344,15 55 55 12 16 36 37 38 17 11 13 +17652,15 34 36 37 120 7 4 +17653,15 34 36 37 120 7 8 +1776,1 6 53 31 47 42 43 17 63 7 8 +15208,5 6 53 18 9 16 17 10 7 4 +25261,1 6 53 31 47 42 43 17 63 7 4 +13815,5 6 12 11 56 54 7 8 +2689,5 6 12 16 21 77 78 82 83 8 +23740,15 65 55 9 61 62 72 7 8 +17226,5 6 53 18 9 16 17 10 7 8 +2746,15 55 88 55 56 7 4 +8931,5 6 34 36 37 17 37 10 7 4 +8930,5 6 34 36 37 17 37 10 7 8 +11337,5 6 12 26 57 9 16 61 16 17 11 8 +8264,5 6 26 57 58 7 4 +18543,1 6 53 9 16 17 43 32 54 7 8 +7262,1 6 9 16 39 36 16 17 19 7 4 +4754,5 6 57 58 66 13 +20134,5 6 76 61 62 17 37 32 7 8 +21862,1 6 53 9 16 17 43 32 54 7 4 +24078,1 6 84 51 36 16 17 37 50 85 7 8 +16607,5 6 57 53 49 50 7 8 +11338,5 6 12 26 57 9 16 61 16 17 11 13 +24084,1 6 84 51 36 16 17 37 50 85 7 4 +21865,1 6 12 88 9 16 36 37 38 17 10 7 8 +2747,15 55 88 55 56 7 8 +9866,5 6 26 57 58 7 8 +12477,1 6 9 16 39 36 16 17 19 7 8 +21864,1 6 12 88 9 16 36 37 38 17 10 7 4 +12871,5 6 65 57 57 9 16 17 11 8 +18840,5 6 65 57 57 9 16 17 11 13 +24546,15 12 11 58 89 58 7 4 +20135,5 6 76 61 62 17 37 32 7 4 +24545,15 12 11 58 89 58 7 8 +3152,5 6 64 61 62 74 7 8 +3159,5 6 64 61 62 74 7 4 +26395,5 6 53 67 67 36 37 63 54 7 4 +10415,15 65 26 34 35 7 8 +26282,1 6 49 107 108 68 7 8 +23245,5 6 12 16 36 37 38 17 11 66 7 4 +19456,1 6 49 107 108 68 7 4 +10414,15 65 26 34 35 7 4 +10866,1 6 65 9 16 17 10 54 7 8 +21629,1 6 53 34 36 37 94 +10867,1 6 65 9 16 17 10 54 7 4 +5509,5 6 51 47 48 52 7 4 +7811,15 96 39 36 16 36 16 21 77 78 22 79 4 +7527,1 6 88 65 9 16 17 43 72 7 4 +5508,5 6 51 47 48 52 7 8 +6760,15 88 89 11 11 8 +2321,1 6 9 10 58 89 58 7 4 +22375,1 6 12 51 52 11 7 4 +18220,1 6 9 10 58 89 58 7 8 +1279,1 6 53 34 36 37 69 +12515,1 6 12 51 52 11 7 8 +24156,70 16 36 39 36 16 17 63 7 4 +2177,5 6 76 16 17 94 +3207,5 6 51 52 56 11 8 +24155,70 16 36 39 36 16 17 63 7 8 +8068,1 6 109 110 58 7 8 +20649,1 6 84 18 12 16 61 16 17 62 10 7 4 +8069,1 6 109 110 58 7 4 +16900,1 6 53 12 47 36 37 10 54 7 8 +6084,1 6 71 36 16 21 77 78 22 79 4 +18364,5 6 65 57 58 58 89 7 4 +3549,5 6 57 57 65 66 13 +8455,5 6 64 61 62 17 43 35 54 7 8 +21320,1 6 84 71 47 48 52 85 93 7 4 +17358,5 6 57 53 53 54 13 +9458,15 57 9 16 17 10 85 54 7 8 +780,15 51 36 37 17 11 8 +9457,15 57 9 16 17 10 85 54 7 4 +781,15 51 36 37 17 11 13 +4122,5 6 55 12 57 96 36 16 17 37 72 7 4 +1047,1 6 67 68 56 7 8 +13784,16 36 37 38 17 10 54 7 8 +16815,1 6 55 88 55 57 55 67 68 56 7 8 +13783,16 36 37 38 17 10 54 7 4 +21113,1 6 55 88 55 57 55 67 68 56 7 4 +10322,5 6 65 9 16 17 37 48 50 7 4 +26488,5 6 31 42 43 17 37 10 7 4 +10323,5 6 65 9 16 17 37 48 50 7 8 +24205,5 6 88 89 66 11 7 8 +13298,15 12 16 39 36 16 17 43 68 7 4 +1044,1 6 67 68 56 7 4 +13297,15 12 16 39 36 16 17 43 68 7 8 +804,1 6 84 12 16 36 37 38 17 11 13 +18081,1 6 53 18 96 16 17 69 +4545,5 6 76 42 43 17 3 4 +2372,5 6 12 16 36 37 38 17 11 8 +4544,5 6 76 42 43 17 3 8 +15406,15 34 47 48 50 11 8 +8734,5 6 55 51 52 13 +5013,5 6 9 16 17 43 32 30 7 8 +740,15 55 9 16 17 62 10 7 8 +739,15 55 9 16 17 62 10 7 4 +18860,1 6 64 61 62 17 11 58 7 8 +15505,1 6 49 61 62 10 7 4 +3612,5 6 12 16 36 37 38 17 11 13 +20954,1 6 31 117 16 17 19 13 +24860,1 6 49 61 62 10 7 8 +19466,5 6 51 42 43 17 37 35 54 7 8 +19467,5 6 51 42 43 17 37 35 54 7 4 +10212,1 6 55 53 49 50 13 +7993,1 6 55 26 88 34 35 58 7 8 +5261,5 6 9 16 17 43 32 30 7 4 +14538,1 6 53 12 47 36 37 10 54 7 4 +7991,5 6 57 58 27 28 +16085,1 6 67 51 36 37 10 7 4 +18880,15 57 49 47 48 32 54 7 8 +22750,15 31 36 37 19 33 13 +8804,1 6 67 51 36 37 10 7 8 +18879,15 57 49 47 48 32 54 7 4 +12229,5 6 57 92 9 61 16 17 10 93 58 7 4 +20650,1 6 84 18 12 16 61 16 17 62 10 7 8 +20624,5 6 12 109 110 11 7 4 +15631,15 55 53 9 16 61 16 17 10 54 54 7 4 +26752,1 6 57 57 49 50 13 +12959,5 6 64 16 42 16 17 37 68 11 7 8 +20526,15 119 16 16 17 17 91 7 4 +20527,15 119 16 16 17 17 91 7 8 +19445,5 6 53 86 34 36 37 17 10 7 4 +2732,1 6 57 57 92 9 16 61 16 17 75 7 4 +16352,15 9 36 16 61 16 17 37 7 4 +16351,15 9 36 16 61 16 17 37 7 8 +24740,1 6 49 50 54 54 7 4 +7051,15 53 16 17 17 10 7 8 +19366,1 6 57 57 121 121 9 16 17 10 7 8 +22840,1 6 53 55 57 9 16 17 10 7 4 +15721,1 6 57 57 121 121 9 16 17 10 7 4 +440,5 6 84 9 10 58 85 7 8 +439,5 6 84 9 10 58 85 7 4 +15632,15 55 53 9 16 61 16 17 10 54 54 7 8 +5063,5 6 53 67 47 36 37 17 11 8 +21607,5 6 55 56 89 66 7 4 +13786,15 9 16 36 37 38 37 52 7 4 +21606,5 6 55 56 89 66 7 8 +7179,15 55 9 16 17 37 35 7 4 +25942,1 6 31 36 37 11 7 8 +21990,1 6 53 57 9 16 61 16 17 37 52 89 7 8 +24951,5 6 51 42 43 17 37 68 54 7 8 +13662,15 57 9 16 36 16 17 63 7 8 +24952,5 6 51 42 43 17 37 68 54 7 4 +7052,15 53 16 17 17 10 7 4 +13663,15 57 9 16 36 16 17 63 7 4 +1261,5 6 53 9 10 48 13 +20367,15 86 34 36 37 17 10 30 7 4 +23598,5 6 31 47 107 36 37 17 10 7 8 +21326,1 6 84 71 47 48 52 85 93 7 8 +4890,5 6 31 47 107 36 37 17 10 7 4 +18120,1 6 53 34 107 36 37 10 7 8 +21945,15 51 36 37 19 11 7 4 +13317,5 6 55 53 65 66 13 +7178,15 55 9 16 17 37 35 7 8 +25473,1 6 53 34 107 36 37 10 7 4 +4867,15 86 34 47 48 32 7 8 +13785,15 9 16 36 37 38 37 52 7 8 +12808,15 86 34 47 48 32 7 4 +6100,1 6 9 10 11 14 7 4 +1326,5 6 57 9 16 42 16 17 10 54 7 4 +5185,15 55 49 50 13 +9692,15 57 57 92 9 10 7 8 +20897,5 6 65 66 11 7 8 +10770,1 6 53 16 17 17 54 54 7 4 +24917,1 6 92 51 36 37 10 7 8 +17251,5 6 65 66 11 7 4 +26092,15 55 57 9 16 17 11 56 7 8 +18454,5 6 57 9 16 42 16 17 10 54 7 8 +3400,5 6 65 34 36 37 17 69 +4848,15 51 36 37 17 19 13 +11361,5 6 12 39 36 16 42 16 17 37 35 7 4 +17293,15 12 26 9 16 17 10 7 4 +25687,5 6 55 88 57 9 16 36 37 38 37 50 7 8 +17292,15 12 26 9 16 17 10 7 8 +9693,15 57 57 92 9 10 7 4 +17464,5 6 57 12 36 37 38 37 48 35 7 8 +17465,5 6 57 12 36 37 38 37 48 35 7 4 +26722,5 6 53 57 9 16 61 16 17 11 13 +5797,5 6 34 36 37 19 7 4 +15127,5 6 96 16 36 16 17 63 7 4 +12192,5 6 34 36 37 19 7 8 +10769,1 6 53 16 17 17 54 54 7 8 +3066,5 6 53 57 9 16 61 16 17 11 8 +6671,5 6 96 16 36 16 17 63 7 8 +14984,5 6 88 88 55 56 58 89 13 +1142,15 57 31 32 54 7 4 +19237,1 6 90 16 36 16 17 37 72 85 7 4 +17303,5 6 12 16 36 37 38 17 19 13 +1141,15 57 31 32 54 7 8 +15495,1 6 90 16 36 16 17 37 72 85 7 8 +4021,70 36 16 61 16 17 10 54 7 8 +24208,1 6 12 65 88 9 16 17 91 7 4 +22038,1 6 53 12 51 61 62 63 7 4 +24207,1 6 12 65 88 9 16 17 91 7 8 +25135,1 6 55 88 57 58 56 89 7 8 +20252,15 88 26 12 36 37 38 11 13 +19281,1 6 55 88 57 58 56 89 7 4 +22039,1 6 53 12 51 61 62 63 7 8 +20251,15 88 26 12 36 37 38 11 8 +4020,70 36 16 61 16 17 10 54 7 4 +14269,5 6 57 53 9 10 58 56 54 7 4 +311,1 6 9 16 17 63 7 4 +24940,5 6 57 53 9 10 58 56 54 7 8 +2010,1 6 9 16 17 63 7 8 +25622,15 55 12 57 96 36 37 38 19 56 11 8 +6514,1 12 36 37 38 37 68 7 8 +23851,5 6 12 34 36 16 17 11 8 +2802,1 6 61 62 75 7 8 +2801,1 6 61 62 75 7 4 +1403,1 12 36 37 38 37 68 7 4 +7126,5 6 26 86 9 16 17 11 8 +24457,1 12 16 36 16 17 37 115 68 7 8 +23445,1 12 16 36 16 17 37 115 68 7 4 +24043,15 65 71 47 48 72 7 4 +19018,5 6 9 61 62 10 54 7 4 +24042,15 65 71 47 48 72 7 8 +6949,15 49 42 43 17 10 54 7 4 +13852,5 6 53 34 47 48 35 54 54 7 4 +6950,15 49 42 43 17 10 54 7 8 +8257,1 6 53 90 16 61 16 17 62 10 7 8 +13845,5 6 53 34 47 48 35 54 54 7 8 +8258,1 6 53 90 16 61 16 17 62 10 7 4 +3353,5 6 67 42 43 17 37 48 72 54 7 8 +8453,15 9 16 17 37 48 32 7 8 +3354,5 6 67 42 43 17 37 48 72 54 7 4 +8454,15 9 16 17 37 48 32 7 4 +12227,1 6 57 57 92 9 10 13 +21167,5 6 34 36 37 19 11 8 +1526,5 6 9 61 62 32 54 7 8 +23523,5 6 53 53 51 52 54 54 7 8 +20000,1 6 53 34 47 48 52 7 8 +492,5 6 9 61 62 32 54 7 4 +26818,15 86 53 12 16 17 120 7 4 +26819,15 86 53 12 16 17 120 7 8 +3033,1 6 67 68 56 11 8 +9436,5 6 34 47 48 68 58 54 7 4 +803,1 6 84 12 16 36 37 38 17 11 8 +10122,15 55 9 16 17 43 32 54 7 8 +7555,1 6 53 9 10 11 7 4 +12869,15 55 88 57 58 89 13 +23832,15 86 34 114 36 37 10 7 8 +25980,1 6 55 34 36 37 17 10 54 7 4 +25981,1 6 55 34 36 37 17 10 54 7 8 +18641,5 6 71 36 37 17 19 58 11 8 +5127,5 6 9 16 42 16 17 10 54 54 7 4 +17815,5 6 57 12 16 21 77 78 22 79 4 +21562,5 6 9 16 42 16 17 10 54 54 7 8 +20009,1 6 57 9 16 17 37 48 68 7 8 +20010,1 6 57 9 16 17 37 48 68 7 4 +15563,1 6 9 16 17 10 93 7 4 +25284,1 6 12 57 58 58 89 13 +13990,1 6 9 16 17 10 93 7 8 +20329,1 6 92 42 43 63 7 4 +3218,15 57 55 51 61 62 63 7 4 +18116,5 6 64 16 17 37 48 52 7 8 +10123,15 55 9 16 17 43 32 54 7 4 +3219,15 57 55 51 61 62 63 7 8 +9437,5 6 34 47 48 68 58 54 7 8 +464,1 6 86 87 13 +24493,1 6 88 65 9 16 17 37 52 7 8 +22482,1 6 53 90 16 61 16 17 37 35 7 4 +22481,1 6 53 90 16 61 16 17 37 35 7 8 +827,1 6 88 57 58 89 13 +7334,5 6 92 31 42 43 17 10 7 4 +16181,1 6 67 42 43 17 3 4 +1171,5 6 12 31 36 37 17 11 13 +16182,1 6 67 42 43 17 3 8 +1170,5 6 12 31 36 37 17 11 8 +22026,5 6 34 36 37 19 33 13 +24935,5 6 53 31 32 56 7 8 +24936,5 6 53 31 32 56 7 4 +9633,1 6 9 16 17 43 93 7 8 +9632,1 6 9 16 17 43 93 7 4 +18243,5 6 92 31 42 43 17 10 7 8 +14693,1 6 9 9 16 17 43 108 50 7 4 +14692,1 6 9 9 16 17 43 108 50 7 8 +15197,15 57 55 9 16 17 11 8 +23815,5 2 16 17 37 10 7 8 +23814,5 2 16 17 37 10 7 4 +523,1 6 53 49 50 7 4 +20680,1 6 57 51 42 43 17 11 8 +522,1 6 53 49 50 7 8 +3389,1 6 34 35 58 7 8 +2019,1 6 34 35 58 7 4 +24024,5 6 57 57 88 71 72 7 4 +14267,15 55 57 58 56 54 7 8 +14268,15 55 57 58 56 54 7 4 +15198,15 57 55 9 16 17 11 13 +7637,1 6 86 55 65 66 13 +17017,95 36 16 17 37 72 54 7 4 +17016,95 36 16 17 37 72 54 7 8 +25643,1 6 55 57 53 12 16 61 16 17 62 10 7 4 +2262,1 6 55 57 53 12 16 61 16 17 62 10 7 8 +21204,1 6 12 65 9 16 17 37 50 7 8 +14636,1 6 55 55 51 61 62 63 7 8 +10874,5 6 86 9 16 17 37 32 54 7 8 +21203,1 6 12 65 9 16 17 37 50 7 4 +16439,15 90 16 17 63 7 8 +15337,1 6 55 55 51 61 62 63 7 4 +10754,1 6 12 51 36 37 17 11 8 +16438,15 90 16 17 63 7 4 +9194,15 34 107 36 16 39 36 16 17 19 7 4 +7905,1 6 90 91 58 89 7 8 +22085,70 36 16 61 16 17 37 35 7 8 +7904,1 6 90 91 58 89 7 4 +22086,70 36 16 61 16 17 37 35 7 4 +19893,1 6 44 9 16 36 16 42 16 17 11 13 +10530,15 88 57 58 11 54 7 4 +12755,15 67 36 37 37 11 8 +24920,1 6 53 18 9 36 16 17 37 52 54 7 8 +16954,1 6 9 16 36 37 38 17 43 32 56 7 4 +23906,1 6 18 12 16 17 37 48 52 7 4 +15918,1 6 64 16 16 17 37 108 35 7 8 +16422,1 6 9 16 36 37 38 17 43 32 56 7 8 +5513,1 6 64 16 16 17 37 108 35 7 4 +13495,1 6 44 9 16 36 16 42 16 17 11 8 +9602,1 6 53 49 50 11 8 +24803,1 6 29 18 12 16 17 37 35 7 8 +6570,1 6 57 58 87 7 4 +19175,5 6 64 61 62 17 43 50 7 4 +24802,1 6 29 18 12 16 17 37 35 7 4 +6571,1 6 57 58 87 7 8 +13337,1 6 49 36 37 17 37 32 54 54 7 8 +13722,5 6 64 61 62 17 43 50 7 8 +6352,5 6 53 12 16 17 10 85 54 7 8 +19491,1 6 18 12 16 17 37 32 11 8 +23633,1 6 55 12 57 9 16 36 16 17 37 35 7 8 +9429,1 6 53 55 9 16 17 37 48 68 7 8 +4965,5 6 53 12 16 17 10 85 54 7 4 +21917,1 6 53 31 47 47 42 43 17 63 7 8 +9430,1 6 53 55 9 16 17 37 48 68 7 4 +3118,15 51 36 37 17 3 8 +5580,1 6 84 9 10 54 7 4 +13964,1 6 57 58 66 58 7 4 +8993,5 6 53 9 10 58 13 +24566,5 6 12 16 21 77 78 82 8 +5579,1 6 84 9 10 54 7 8 +2879,1 6 67 42 43 17 11 8 +5263,1 6 67 42 43 17 11 13 +3119,15 51 36 37 17 3 4 +14004,5 6 12 36 37 17 63 7 4 +15446,5 6 55 9 16 36 37 38 17 11 8 +11824,1 6 53 18 12 16 17 37 108 35 7 4 +18063,5 6 12 36 37 17 63 7 8 +1969,15 55 9 61 62 50 7 4 +11378,15 12 36 37 38 37 52 7 8 +1968,15 55 9 61 62 50 7 8 +19825,1 6 64 16 39 36 39 36 16 17 37 50 7 8 +11377,15 12 36 37 38 37 52 7 4 +15564,1 6 55 9 16 42 16 17 10 93 7 4 +20919,1 6 71 47 48 48 68 11 7 8 +26631,1 6 55 9 16 42 16 17 10 93 7 8 +13568,60 16 36 16 61 16 17 98 +13969,1 6 57 58 66 58 7 8 +25141,1 6 71 47 48 48 68 11 7 4 +4997,5 6 76 42 43 17 11 8 +20590,1 12 11 35 54 7 4 +26710,1 6 34 35 58 11 7 4 +15678,15 88 57 58 58 89 85 54 7 4 +15679,15 88 57 58 58 89 85 54 7 8 +25810,15 44 34 36 16 42 16 17 19 7 8 +20307,5 6 12 16 61 16 36 37 38 11 8 +17271,5 6 53 31 47 36 37 75 7 4 +11568,5 6 76 42 43 17 11 13 +20308,5 6 12 16 61 16 36 37 38 11 13 +23540,1 6 34 35 58 11 7 8 +26747,5 6 55 9 16 17 37 52 7 8 +16008,15 44 9 16 17 11 8 +16009,15 44 9 16 17 11 13 +26355,5 6 55 9 16 17 37 52 7 4 +4861,70 36 16 61 16 17 62 10 7 4 +4860,70 36 16 61 16 17 62 10 7 8 +20589,1 12 11 35 54 7 8 +13967,1 6 57 65 57 86 87 13 +11586,1 6 31 114 115 115 32 7 4 +21742,5 6 55 55 53 55 88 89 11 8 +19305,1 6 86 26 9 16 17 10 54 7 8 +1433,1 6 18 12 16 17 37 32 7 8 +25226,1 6 86 26 9 16 17 10 54 7 4 +1434,1 6 18 12 16 17 37 32 7 4 +11583,1 6 31 114 115 115 32 7 8 +24297,1 6 57 58 89 27 7 4 +12683,1 12 16 36 16 17 37 68 89 13 +16907,5 6 113 61 62 17 37 48 123 7 8 +2193,15 12 16 39 36 16 21 77 78 22 79 4 +21213,1 6 47 61 62 63 7 8 +18828,5 6 76 16 61 16 17 19 13 +21212,1 6 47 61 62 63 7 4 +4679,1 6 64 36 37 38 17 10 54 54 7 8 +25723,15 12 16 39 36 16 21 77 78 82 111 +4678,1 6 64 36 37 38 17 10 54 54 7 4 +25003,5 6 65 57 9 16 17 118 17 10 7 4 +8793,5 6 86 53 9 10 13 +20101,1 12 36 16 17 43 72 7 4 +26568,5 6 55 53 71 36 37 17 10 54 7 8 +14443,1 6 18 12 16 17 118 17 91 7 4 +16419,5 6 55 53 71 36 37 17 10 54 7 4 +23327,15 55 12 96 36 37 38 37 48 50 7 4 +3933,1 6 53 9 16 36 37 38 37 48 72 54 7 4 +25002,5 6 65 57 9 16 17 118 17 10 7 8 +25332,15 44 49 47 36 37 11 13 +25331,15 44 49 47 36 37 11 8 +26200,1 6 49 42 43 17 75 7 4 +3940,1 6 53 9 16 36 37 38 37 48 72 54 7 8 +18208,1 6 49 42 43 17 75 7 8 +9685,5 6 57 57 29 30 7 8 +14441,1 6 12 65 12 71 72 13 +26635,5 6 57 57 29 30 7 4 +3394,5 6 57 9 36 16 61 16 17 11 8 +657,1 6 53 9 16 17 37 48 72 7 8 +3656,15 34 47 48 50 7 4 +16211,1 6 18 12 16 17 37 72 58 7 8 +5422,5 6 53 54 56 54 7 4 +26410,1 6 51 47 42 43 17 37 68 54 7 4 +3655,15 34 47 48 50 7 8 +16212,1 6 18 12 16 17 37 72 58 7 4 +8703,15 12 16 39 36 16 17 37 50 7 8 +8702,15 12 16 39 36 16 17 37 50 7 4 +10479,5 6 57 57 9 16 61 16 17 11 8 +14110,1 6 18 12 16 17 118 17 91 7 8 +19258,5 6 53 12 39 36 61 16 17 11 8 +25625,5 6 57 57 9 16 61 16 17 11 13 +13476,5 6 29 12 61 16 17 19 13 +24000,5 6 53 57 9 16 36 16 17 10 7 4 +11414,15 9 16 17 43 17 37 35 54 7 4 +23539,1 6 34 35 58 11 8 +26736,5 6 12 16 21 77 78 82 111 +21457,15 9 16 17 43 17 37 35 54 7 8 +21461,5 6 57 92 71 72 13 +5421,5 6 53 54 56 54 7 8 +7245,1 6 9 16 17 62 50 7 4 +6239,1 6 53 9 16 17 37 48 72 7 4 +15536,5 6 57 9 36 16 61 16 17 11 13 +4792,1 6 88 57 58 7 8 +4791,1 6 88 57 58 7 4 +22210,15 12 11 56 11 7 4 +8654,5 6 12 9 16 61 16 17 63 7 8 +22658,1 6 113 61 62 17 10 7 8 +7332,15 57 9 16 17 37 32 93 7 4 +1055,1 6 53 12 34 35 13 +12966,1 6 113 61 62 17 10 7 4 +7333,15 57 9 16 17 37 32 93 7 8 +12126,1 6 55 12 88 89 13 +3013,1 6 88 89 89 7 4 +20478,1 6 84 12 9 16 17 37 35 85 54 7 4 +2145,15 12 11 56 11 7 8 +20479,1 6 84 12 9 16 17 37 35 85 54 7 8 +3012,1 6 88 89 89 7 8 +9733,5 6 12 16 17 37 50 7 4 +17082,15 12 36 16 17 37 115 72 89 7 8 +10057,5 6 12 16 17 37 50 7 8 +17083,15 12 36 16 17 37 115 72 89 7 4 +16105,1 6 53 9 16 61 16 17 62 10 7 8 +26678,15 12 11 89 11 7 4 +25611,5 6 9 16 17 37 72 7 8 +25108,5 6 84 57 58 66 87 7 4 +7046,1 6 53 9 16 61 16 17 62 10 7 4 +21210,15 9 61 62 48 52 7 8 +11690,5 6 67 117 16 17 11 13 +11689,5 6 67 117 16 17 11 8 +17848,5 6 84 57 58 66 87 7 8 +19139,5 6 12 65 9 16 17 11 8 +22080,1 6 64 16 36 16 17 37 50 11 8 +9471,5 6 53 88 57 58 54 54 7 4 +9470,5 6 53 88 57 58 54 54 7 8 +23933,15 55 53 55 56 58 54 7 4 +20758,15 12 11 115 7 8 +23932,15 55 53 55 56 58 54 7 8 +20757,15 12 11 115 7 4 +1277,1 6 64 16 36 16 61 16 17 11 13 +6927,1 6 53 12 16 61 16 17 62 10 7 4 +1276,1 6 64 16 36 16 61 16 17 11 8 +7623,5 6 31 47 36 37 17 3 4 +3839,1 6 53 12 16 61 16 17 62 10 7 8 +6463,1 6 26 86 9 16 17 11 8 +21209,15 9 61 62 48 52 7 4 +755,15 12 11 89 11 7 8 +7773,5 6 31 47 36 37 17 3 8 +26226,15 55 86 34 107 107 36 37 17 10 7 4 +13748,5 6 64 61 62 17 37 32 7 4 +20661,1 6 34 107 36 37 11 8 +17611,1 6 53 9 39 36 16 61 16 17 37 35 7 4 +7740,15 96 16 36 37 38 17 19 13 +13747,5 6 64 61 62 17 37 32 7 8 +13972,15 65 57 65 57 86 87 13 +19451,1 6 64 61 16 17 17 37 35 11 8 +22870,5 6 55 51 36 37 17 10 54 7 4 +2580,15 9 16 17 43 32 10 7 8 +14013,5 6 55 51 36 37 17 10 54 7 8 +21632,1 6 71 47 36 37 11 8 +5228,5 6 53 31 36 37 17 19 13 +2581,15 9 16 17 43 32 10 7 4 +25257,1 6 55 56 89 58 13 +1711,15 55 12 55 56 89 13 +14876,1 6 88 89 89 11 8 +12483,1 6 9 10 58 54 7 8 +21653,5 6 34 36 37 17 10 30 7 8 +13374,1 6 9 10 58 54 7 4 +26063,5 6 34 36 37 17 10 30 7 4 +11328,1 6 9 16 17 43 48 35 54 7 4 +17715,15 31 107 108 32 7 4 +1161,15 9 16 36 16 61 16 17 37 35 7 4 +25282,1 6 9 16 17 43 48 35 54 7 8 +6244,1 6 55 12 11 13 +17714,15 31 107 108 32 7 8 +1168,15 9 16 36 16 61 16 17 37 35 7 8 +24149,5 6 64 61 62 37 52 11 54 7 4 +25605,5 6 53 57 9 16 61 16 17 37 68 89 7 8 +15811,1 6 53 53 51 61 62 63 7 8 +4908,1 6 12 16 36 16 21 77 78 22 79 4 +9148,1 6 53 67 61 62 63 7 8 +10187,5 6 9 16 17 106 7 4 +9149,1 6 53 67 61 62 63 7 4 +16467,5 6 55 53 12 36 16 61 16 17 11 8 +9872,1 6 26 57 58 66 11 8 +25606,5 6 53 57 9 16 61 16 17 37 68 89 7 4 +11796,1 6 53 18 12 31 32 13 +24450,1 6 53 53 51 61 62 63 7 4 +4254,1 6 64 61 62 10 54 7 8 +15379,5 6 88 65 9 16 17 10 7 8 +9338,5 6 55 71 36 37 17 11 8 +4253,1 6 64 61 62 10 54 7 4 +10234,5 6 9 16 17 106 7 8 +836,15 12 9 16 17 10 7 8 +6610,5 6 57 92 12 16 17 11 8 +835,15 12 9 16 17 10 7 4 +12621,5 6 34 107 108 48 10 7 4 +18295,5 6 55 57 92 31 32 13 +12622,5 6 34 107 108 48 10 7 8 +9173,15 12 16 36 16 17 37 35 7 4 +24621,15 53 9 16 17 10 85 54 7 4 +24620,15 53 9 16 17 10 85 54 7 8 +16938,1 6 31 32 30 7 8 +15526,15 71 47 36 37 63 7 4 +6434,70 16 36 37 38 37 48 68 7 4 +15475,5 6 64 16 36 16 17 37 48 52 7 4 +15527,15 71 47 36 37 63 7 8 +9512,5 6 57 53 12 34 35 13 +9174,15 12 16 36 16 17 37 35 7 8 +15474,5 6 64 16 36 16 17 37 48 52 7 8 +16937,1 6 31 32 30 7 4 +9391,1 6 76 42 43 106 7 4 +18365,1 6 65 57 58 58 89 7 4 +24013,5 6 53 12 90 16 17 19 +9392,1 6 76 42 43 106 7 8 +1169,1 6 12 31 36 37 17 11 8 +16917,1 6 57 86 34 35 13 +18366,1 6 65 57 58 58 89 7 8 +17921,1 6 53 9 16 61 16 17 37 35 11 8 +18809,1 6 12 31 36 37 17 11 13 +12670,1 6 55 53 34 35 33 13 +21597,15 34 114 47 48 35 87 7 4 +13235,5 6 9 16 36 37 38 17 106 7 8 +21596,15 34 114 47 48 35 87 7 8 +23757,15 53 55 12 11 56 54 7 4 +16150,1 6 88 26 51 47 48 72 7 8 +7921,15 34 107 36 37 38 37 35 7 8 +23758,15 53 55 12 11 56 54 7 8 +9920,1 6 88 26 51 47 48 72 7 4 +10646,1 6 67 47 48 35 7 8 +10128,1 6 67 47 48 35 7 4 +10972,5 6 65 26 88 89 13 +26685,15 31 36 37 17 3 4 +26684,15 31 36 37 17 3 8 +2969,5 6 12 16 61 16 17 11 8 +10838,5 6 12 16 61 16 17 11 13 +25265,15 51 36 37 17 10 93 7 4 +980,5 6 53 9 10 11 8 +25264,15 51 36 37 17 10 93 7 8 +14527,15 34 47 36 37 10 7 4 +14528,15 34 47 36 37 10 7 8 +12168,5 6 64 36 16 17 37 108 48 72 54 7 4 +6435,70 16 36 37 38 37 48 68 7 8 +9138,1 6 57 53 34 35 13 +6638,5 6 71 47 48 52 7 8 +17762,15 67 47 36 16 17 19 13 +6637,5 6 71 47 48 52 7 4 +19056,5 6 18 12 16 42 16 17 37 108 72 7 4 +20428,15 67 36 37 19 11 7 4 +22874,1 6 64 16 36 16 61 16 17 19 13 +19057,5 6 18 12 16 42 16 17 37 108 72 7 8 +650,95 16 36 37 38 17 37 48 72 7 8 +6663,15 12 16 36 16 17 37 35 11 8 +18047,15 55 57 67 114 36 37 17 11 13 +13834,5 6 53 9 16 17 37 72 66 11 8 +10954,1 2 16 17 37 50 54 7 8 +18046,15 55 57 67 114 36 37 17 11 8 +22635,5 6 57 53 34 35 7 4 +25035,15 57 55 57 9 16 61 16 17 11 8 +21491,5 6 53 18 12 16 61 61 16 17 10 7 8 +22047,5 6 64 16 36 16 61 16 17 19 7 4 +1644,5 6 57 9 61 62 17 10 7 4 +11001,5 6 9 16 17 17 10 7 4 +19494,5 6 64 16 36 16 61 16 17 19 7 8 +25036,15 57 55 57 9 16 61 16 17 11 13 +16054,1 6 84 9 16 36 16 17 11 8 +8523,5 6 57 9 61 62 17 10 7 8 +11216,1 6 57 9 16 17 19 7 8 +11002,5 6 9 16 17 17 10 7 8 +6500,5 6 53 31 36 37 17 11 8 +11217,1 6 57 9 16 17 19 7 4 +11499,15 31 114 42 43 17 63 7 4 +20342,15 34 107 108 35 87 7 4 +26158,5 6 53 31 36 37 17 11 13 +6460,5 6 65 12 16 17 10 7 4 +20341,15 34 107 108 35 87 7 8 +4856,1 6 9 10 14 54 7 8 +24843,5 6 55 9 16 36 37 38 37 10 7 8 +25863,1 6 92 31 42 43 63 7 8 +6501,15 31 36 37 17 11 8 +22634,5 6 57 53 34 35 7 8 +20104,5 6 53 9 16 17 37 35 54 7 8 +4857,1 6 9 10 14 54 7 4 +11500,15 31 114 42 43 17 63 7 8 +649,95 16 36 37 38 17 37 48 72 7 4 +14550,15 12 12 16 17 19 13 +6802,15 34 36 37 17 35 7 8 +8479,1 6 64 16 36 16 17 37 48 32 7 8 +8478,1 6 64 16 36 16 17 37 48 32 7 4 +13382,5 6 53 9 16 17 37 35 54 7 4 +19584,15 55 57 12 16 36 37 38 17 11 8 +5653,1 6 64 61 62 37 35 27 28 +6801,15 34 36 37 17 35 7 4 +20059,15 12 36 16 17 75 7 4 +309,5 6 53 9 10 7 8 +20060,15 12 36 16 17 75 7 8 +310,5 6 53 9 10 7 4 +10609,1 6 51 16 17 72 7 8 +24242,1 6 12 9 16 17 37 87 7 8 +11124,1 6 51 16 17 72 7 4 +24243,1 6 12 9 16 17 37 87 7 4 +5505,5 6 53 12 16 61 16 61 16 17 19 13 +17628,1 6 53 31 42 43 17 37 108 48 72 54 7 4 +19585,15 55 57 12 16 36 37 38 17 11 13 +3509,1 6 18 12 16 17 54 54 7 4 +4394,15 119 16 42 16 17 37 35 7 8 +2009,5 6 53 9 10 33 13 +13601,1 6 55 34 107 108 35 89 7 4 +24060,1 6 53 12 51 107 108 52 11 8 +5204,5 6 12 57 58 11 56 7 4 +22297,5 6 34 35 56 54 7 8 +13602,1 6 55 34 107 108 35 89 7 8 +19255,1 6 51 117 16 17 19 13 +2913,1 6 71 36 37 17 10 7 8 +22747,5 6 34 36 37 17 91 7 4 +12870,5 6 88 9 16 36 37 38 17 10 7 8 +2324,1 6 71 36 37 17 10 7 4 +3488,5 6 51 61 62 10 7 8 +4395,15 119 16 42 16 17 37 35 7 4 +22748,5 6 34 36 37 17 91 7 8 +6019,15 65 57 58 7 8 +1406,5 6 64 16 17 37 68 7 8 +9269,5 6 51 61 62 10 7 4 +20006,15 44 49 47 36 37 10 7 4 +6020,15 65 57 58 7 4 +14600,5 6 64 16 17 37 68 7 4 +20005,15 44 49 47 36 37 10 7 8 +1896,5 6 53 9 10 56 54 7 8 +21551,1 6 55 53 34 35 7 4 +1486,15 67 61 62 63 7 8 +8550,5 6 55 65 31 32 66 56 7 8 +23854,1 6 88 55 9 16 17 11 7 4 +24353,1 6 9 16 36 16 17 37 32 7 4 +18805,1 6 12 31 32 11 7 4 +19246,1 6 64 16 17 37 72 7 4 +1487,15 67 61 62 63 7 4 +16629,5 6 53 12 34 36 37 17 10 7 8 +22816,15 88 90 16 17 11 8 +8408,1 6 88 55 9 16 17 11 7 8 +26089,5 6 55 65 31 32 66 56 7 4 +1128,1 6 12 31 32 11 7 8 +19245,1 6 64 16 17 37 72 7 8 +10351,5 6 53 12 34 36 37 17 10 7 4 +7015,15 31 36 37 17 11 13 +19841,5 6 53 57 57 49 107 36 37 17 10 7 8 +22427,5 6 57 96 36 16 17 37 48 35 7 8 +4609,1 6 64 61 62 17 37 35 30 7 4 +22817,15 88 90 16 17 11 13 +4610,1 6 64 61 62 17 37 35 30 7 8 +1895,5 6 53 9 10 56 54 7 4 +20995,1 6 51 52 56 89 56 7 8 +14875,1 6 12 88 89 66 11 8 +24389,5 6 64 16 61 16 117 118 10 54 7 8 +23062,5 6 57 58 11 13 +2058,5 6 57 58 11 8 +3510,1 6 18 12 16 17 54 54 7 8 +19034,1 6 55 57 53 34 35 13 +24388,5 6 64 16 61 16 117 118 10 54 7 4 +11987,15 96 16 36 37 38 17 3 4 +7369,15 34 107 36 37 38 62 10 7 8 +11988,15 96 16 36 37 38 17 3 8 +19734,5 6 88 105 16 17 120 7 8 +15507,15 34 107 36 37 38 62 10 7 4 +21071,5 6 53 57 58 89 56 54 7 4 +21070,5 6 53 57 58 89 56 54 7 8 +6265,15 88 55 9 16 17 37 50 7 8 +8498,15 12 16 36 16 17 62 10 7 8 +6266,15 88 55 9 16 17 37 50 7 4 +5863,15 55 53 18 12 11 14 54 7 4 +5864,15 55 53 18 12 11 14 54 7 8 +15598,15 55 88 57 58 58 89 56 54 85 54 7 4 +1845,15 12 16 36 16 17 62 10 7 4 +428,15 12 11 14 85 7 4 +429,15 12 11 14 85 7 8 +18827,1 6 76 16 61 16 17 19 13 +10500,1 6 64 16 117 118 68 11 8 +25156,1 6 65 9 16 17 120 7 4 +20732,1 6 65 9 16 17 120 7 8 +19694,1 6 57 55 9 36 37 38 10 54 7 4 +3355,1 6 18 12 16 17 10 54 7 4 +13512,15 86 9 16 36 16 17 11 13 +19693,1 6 57 55 9 36 37 38 10 54 7 8 +3027,1 6 18 12 16 17 10 54 7 8 +13511,15 86 9 16 36 16 17 11 8 +15850,5 6 88 9 16 36 37 38 17 10 7 4 +5073,5 6 49 50 58 89 13 +13427,1 6 71 42 43 17 37 35 7 8 +9931,5 6 12 36 37 38 37 72 7 4 +15043,5 6 51 52 58 54 7 4 +14706,15 55 55 53 9 10 54 7 4 +22419,15 9 16 17 43 35 54 7 4 +9930,5 6 12 36 37 38 37 72 7 8 +14707,15 55 55 53 9 10 54 7 8 +18248,5 6 55 96 36 37 38 17 11 13 +7355,5 6 55 96 36 37 38 17 11 8 +15254,1 6 92 12 16 17 62 10 7 8 +18472,5 6 65 88 88 57 9 16 17 10 7 4 +24637,1 6 34 47 48 32 10 7 8 +22418,15 9 16 17 43 35 54 7 8 +18473,5 6 65 88 88 57 9 16 17 10 7 8 +24636,1 6 34 47 48 32 10 7 4 +9574,5 6 84 9 10 66 56 85 54 7 8 +16860,15 55 9 16 17 43 52 7 4 +3310,1 6 67 51 36 37 17 10 7 4 +285,5 6 57 58 7 8 +3139,5 6 90 91 54 54 7 8 +22239,5 6 84 9 10 66 56 85 54 7 4 +286,5 6 57 58 7 4 +16861,15 55 9 16 17 43 52 7 8 +4191,5 6 90 91 54 54 7 4 +26381,15 55 9 16 17 19 7 8 +444,1 6 84 65 66 13 +13697,5 6 9 36 16 17 37 48 52 7 8 +26382,15 55 9 16 17 19 7 4 +1624,1 6 9 10 66 11 7 8 +17232,1 6 51 117 16 17 11 13 +4335,1 6 55 9 16 17 10 7 8 +14201,5 6 53 9 16 36 16 61 16 17 11 8 +25923,15 55 53 55 88 55 57 12 11 58 7 8 +13431,15 12 16 36 16 42 16 17 37 68 7 4 +14672,1 6 64 61 62 17 37 72 11 8 +19314,1 6 18 12 16 17 37 35 11 8 +3176,1 6 51 117 16 17 11 8 +25922,15 55 53 55 88 55 57 12 11 58 7 4 +12216,1 6 53 34 36 37 63 54 7 4 +3362,1 6 9 10 66 11 7 4 +5239,1 6 55 9 16 17 10 7 4 +4594,15 86 53 12 39 36 16 36 37 38 17 37 68 7 4 +10255,1 6 12 65 67 47 117 16 17 11 8 +10448,1 6 76 16 36 37 38 37 35 54 54 7 8 +4316,5 6 53 9 10 27 28 +25451,1 6 64 61 62 17 37 68 56 54 7 4 +3931,15 9 16 36 37 38 37 52 54 7 8 +4734,15 55 12 11 58 7 4 +3932,15 9 16 36 37 38 37 52 54 7 4 +11900,1 6 64 16 117 118 108 72 66 11 8 +12429,5 6 34 36 37 91 7 4 +19578,5 6 34 36 37 91 7 8 +4735,15 55 12 11 58 7 8 +4593,15 86 53 12 39 36 16 36 37 38 17 37 68 7 8 +4234,1 6 34 107 36 37 17 69 +3308,1 6 55 88 57 58 58 13 +24181,5 6 84 12 16 16 17 19 13 +2383,15 96 16 36 37 38 17 11 13 +26853,15 57 9 36 16 17 11 56 7 8 +21810,15 57 9 36 16 17 11 56 7 4 +202,1 6 53 34 35 7 8 +1663,1 6 34 107 36 37 19 13 +2382,15 96 16 36 37 38 17 11 8 +203,1 6 53 34 35 7 4 +3695,1 6 65 66 56 89 13 +23773,1 6 119 16 17 75 7 4 +4039,1 6 18 12 16 17 37 35 7 8 +23010,5 6 53 9 10 58 89 13 +15611,1 6 119 16 17 75 7 8 +13028,15 119 16 42 16 17 62 10 7 8 +19482,5 6 84 9 10 58 89 7 8 +15020,15 12 11 58 85 7 8 +12858,1 6 64 61 62 17 37 72 7 8 +15021,15 12 11 58 85 7 4 +4048,1 6 18 12 16 17 37 35 7 4 +4368,1 6 71 42 43 17 10 54 7 8 +14567,1 6 64 61 62 17 37 72 7 4 +11285,5 6 53 9 10 89 54 7 4 +20617,1 6 71 42 43 17 10 54 7 4 +8831,5 6 53 67 47 48 72 13 +14238,5 6 53 9 10 89 54 7 8 +4107,15 88 65 9 16 42 16 17 37 35 87 7 4 +4108,15 88 65 9 16 42 16 17 37 35 87 7 8 +19481,5 6 84 9 10 58 89 7 4 +10231,1 6 12 65 26 9 16 42 16 17 11 13 +24219,1 6 88 105 16 61 16 17 19 7 8 +26806,15 55 53 12 16 17 11 54 7 4 +25805,5 6 29 34 36 16 17 69 +13029,15 119 16 42 16 17 62 10 7 4 +24218,1 6 88 105 16 61 16 17 19 7 4 +10230,1 6 12 65 26 9 16 42 16 17 11 8 +15003,15 55 53 12 16 17 11 54 7 8 +16365,1 6 53 53 9 16 17 10 54 54 7 8 +14239,5 6 53 90 91 7 4 +26405,5 6 64 61 62 17 37 68 13 +23450,1 6 53 53 9 16 17 10 54 54 7 4 +6477,5 6 53 90 91 7 8 +15926,15 57 53 9 61 16 17 75 7 8 +15925,15 57 53 9 61 16 17 75 7 4 +16484,1 6 64 16 36 16 17 37 50 7 8 +26573,1 6 84 57 9 16 17 37 35 7 8 +15470,1 6 64 16 36 16 17 37 50 7 4 +26572,1 6 84 57 9 16 17 37 35 7 4 +17906,1 6 55 55 9 61 62 50 7 8 +15049,1 6 55 55 9 61 62 50 7 4 +15436,5 6 71 47 42 43 17 37 50 93 7 4 +26321,5 6 53 9 10 122 54 7 8 +10541,5 6 34 35 56 54 7 4 +16539,1 6 18 12 16 17 43 52 58 13 +15437,5 6 71 47 42 43 17 37 50 93 7 8 +21359,5 6 55 12 88 55 56 56 89 13 +5499,5 6 51 52 54 7 8 +5500,5 6 51 52 54 7 4 +16286,5 6 57 55 71 47 48 52 7 4 +7078,1 6 84 18 12 16 17 37 52 85 54 7 8 +18660,1 6 57 12 11 7 4 +14156,1 6 109 110 7 4 +3818,15 53 53 54 7 4 +14393,5 6 57 55 56 13 +22312,5 6 90 91 58 66 7 4 +14157,1 6 109 110 7 8 +3817,15 53 53 54 7 8 +3963,5 6 55 49 50 13 +12817,5 6 90 91 58 66 7 8 +24778,1 6 18 12 16 117 118 32 7 8 +5567,1 6 84 18 12 16 17 37 52 85 54 7 4 +6147,1 12 36 16 17 37 48 35 7 4 +21335,15 9 36 16 17 37 52 85 93 7 4 +11228,1 6 65 9 16 17 37 35 7 4 +15029,1 6 55 9 16 36 16 17 37 48 35 7 4 +24779,1 6 18 12 16 117 118 32 7 4 +20014,5 6 55 9 16 17 43 68 11 8 +11359,1 6 65 9 16 17 37 35 7 8 +18290,5 6 12 51 117 16 17 11 8 +19106,1 6 57 12 11 7 8 +25174,5 6 64 36 37 38 37 11 54 7 8 +6014,15 65 57 58 56 13 +7826,15 53 64 36 37 38 37 11 93 7 4 +7314,15 53 64 36 37 38 37 11 93 7 8 +24747,1 6 31 47 42 43 17 10 7 4 +239,5 20 21 22 17 3 4 +18091,1 6 31 47 42 43 17 10 7 8 +9219,1 12 36 16 17 37 48 35 7 8 +11486,5 6 57 57 96 36 37 38 19 13 +21336,15 9 36 16 17 37 52 85 93 7 8 +17042,1 6 64 16 36 37 38 37 108 48 72 54 7 8 +28,5 20 21 22 17 3 8 +157,1 6 53 34 36 37 17 62 10 7 4 +11008,1 6 64 16 36 37 38 37 108 48 72 54 7 4 +3749,1 6 53 34 36 37 17 62 10 7 8 +8022,1 6 53 9 16 17 10 54 54 7 8 +19400,15 53 12 16 17 19 13 +1193,5 6 53 34 36 37 17 10 7 4 +217,1 6 18 12 16 17 62 10 7 4 +1194,5 6 53 34 36 37 17 10 7 8 +23887,5 6 57 58 58 89 56 7 8 +218,1 6 18 12 16 17 62 10 7 8 +8635,1 6 90 16 61 16 36 16 17 11 8 +17456,5 6 26 31 47 36 37 11 8 +15357,5 6 9 16 17 118 17 11 8 +16878,15 65 49 36 37 11 8 +5088,5 6 71 72 58 7 4 +8129,5 6 64 16 36 37 38 17 10 54 7 8 +16292,5 6 9 16 17 118 17 11 13 +8023,1 6 53 9 16 17 10 54 54 7 4 +22856,5 6 26 31 47 36 37 11 13 +8640,15 12 16 17 19 11 7 8 +8130,5 6 64 16 36 37 38 17 10 54 7 4 +10460,5 6 71 72 58 7 8 +6156,1 6 53 34 35 33 13 +4479,15 65 57 58 58 13 +3785,1 6 9 10 58 89 56 7 8 +16879,15 65 49 36 37 11 13 +24337,15 34 36 16 17 19 13 +18629,5 6 55 88 88 57 58 89 13 +3306,1 6 9 10 58 89 56 7 4 +17268,15 55 71 47 48 32 54 54 7 4 +6323,15 71 36 37 10 7 8 +7578,15 57 57 12 36 37 38 11 58 89 7 4 +8066,1 12 11 110 7 4 +18618,1 6 76 61 62 17 37 35 87 7 4 +12918,1 6 53 26 55 71 47 36 37 11 8 +18617,1 6 76 61 62 17 37 35 87 7 8 +8065,1 12 11 110 7 8 +6324,15 71 36 37 10 7 4 +16238,5 6 96 16 36 16 21 77 78 22 79 4 +25022,15 65 96 36 37 38 19 66 58 7 4 +12812,1 6 31 47 107 36 37 17 11 8 +25023,15 65 96 36 37 38 19 66 58 7 8 +12423,15 49 36 16 17 37 10 7 4 +25221,5 6 55 53 12 39 36 16 17 37 32 7 8 +229,1 2 16 17 11 13 +21020,15 49 36 16 17 37 10 7 8 +20337,1 6 34 47 48 35 54 7 4 +228,1 2 16 17 11 8 +11749,1 6 9 9 61 62 32 54 7 8 +10493,15 9 16 36 37 38 11 8 +19422,1 6 9 9 61 62 32 54 7 4 +10597,15 86 9 16 17 37 32 7 8 +10598,15 86 9 16 17 37 32 7 4 +17257,1 12 36 16 17 37 115 72 7 8 +16334,15 12 36 37 38 17 10 54 54 7 4 +359,1 6 53 71 72 13 +10494,15 9 16 36 37 38 11 13 +6666,1 6 92 9 16 17 63 7 8 +5224,1 6 92 9 16 17 63 7 4 +16333,15 12 36 37 38 17 10 54 54 7 8 +16736,5 6 53 53 9 10 13 +23629,1 12 36 16 17 37 115 72 7 4 +2623,15 9 16 36 16 17 19 7 4 +9440,5 6 53 57 49 50 7 8 +2622,15 9 16 36 16 17 19 7 8 +22907,5 6 12 16 17 37 68 58 7 8 +9439,5 6 53 57 49 50 7 4 +8790,5 6 86 53 9 10 7 4 +3884,1 6 53 51 36 37 17 3 8 +10164,15 9 16 17 43 68 54 7 4 +10171,15 119 16 17 10 7 4 +12664,116 81 77 78 82 8 +2661,5 6 84 88 89 85 7 8 +23726,1 6 57 92 18 12 16 17 10 7 8 +12903,1 6 53 34 35 27 28 +23774,5 6 86 34 36 37 17 11 8 +23818,15 51 36 37 17 75 7 8 +16381,15 49 107 108 52 66 11 7 8 +3883,1 6 53 51 36 37 17 3 4 +22852,5 6 26 34 47 48 35 7 8 +26594,15 42 43 17 43 35 54 7 4 +26595,15 42 43 17 43 35 54 7 8 +18105,5 45 21 22 17 37 50 85 54 7 8 +3115,5 6 88 57 58 58 89 89 7 8 +6351,1 6 53 12 31 42 43 17 63 7 8 +1964,5 45 21 22 17 37 50 85 54 7 4 +17439,5 6 26 34 47 48 35 7 4 +26015,15 90 16 39 36 16 17 91 7 4 +2660,5 6 84 88 89 85 7 4 +10163,15 9 16 17 43 68 54 7 8 +10170,15 119 16 17 10 7 8 +8611,15 57 12 9 16 17 10 7 8 +8612,15 57 12 9 16 17 10 7 4 +22539,1 6 96 36 16 61 16 17 19 33 13 +23170,5 6 57 57 92 9 16 17 10 93 58 7 8 +4082,1 6 57 9 16 36 37 38 17 10 7 4 +11179,1 6 12 61 16 17 62 10 7 8 +7411,1 12 36 37 38 37 68 89 7 4 +3385,1 6 57 9 16 36 37 38 17 10 7 8 +11178,1 6 12 61 16 17 62 10 7 4 +21191,15 34 88 90 16 61 16 17 11 8 +21804,5 6 12 9 16 17 43 68 7 4 +22848,5 6 9 16 17 118 17 3 4 +24666,5 6 88 90 39 36 16 17 10 7 8 +21192,15 34 88 90 16 61 16 17 11 13 +13572,25 26 27 66 54 7 8 +18850,5 6 64 16 36 37 38 17 37 35 7 8 +20950,5 6 9 16 17 118 17 3 8 +24667,5 6 88 90 39 36 16 17 10 7 4 +7018,1 6 53 9 16 17 37 32 7 8 +24255,1 6 53 9 16 17 37 32 54 54 7 4 +13571,25 26 27 66 54 7 4 +26851,5 6 12 9 16 17 43 68 7 8 +652,5 6 64 16 36 37 38 17 37 35 7 4 +3823,5 6 53 12 51 52 13 +7218,1 6 53 9 16 17 37 32 7 4 +21786,1 6 90 36 16 61 16 17 37 35 7 8 +21787,1 6 90 36 16 61 16 17 37 35 7 4 +2772,15 34 36 16 17 11 8 +23817,15 51 36 37 17 75 7 4 +15172,1 6 34 36 37 17 43 72 7 8 +22281,5 6 57 55 71 61 62 75 7 8 +22684,5 6 64 61 62 37 32 7 8 +8057,5 6 76 36 16 17 37 48 7 4 +22554,5 6 12 49 50 11 8 +23852,15 34 36 16 17 11 13 +9281,5 6 64 16 17 37 48 50 7 8 +15171,1 6 34 36 37 17 43 72 7 4 +7406,1 12 36 37 38 37 68 89 7 8 +6141,5 6 64 16 17 37 48 50 7 4 +8791,5 6 86 53 9 10 7 8 +22683,5 6 64 61 62 37 32 7 4 +21664,1 6 88 57 58 27 28 +26781,1 6 9 16 36 16 17 43 50 7 4 +11084,15 96 16 36 16 42 16 17 37 35 7 4 +9807,1 6 55 34 35 56 7 8 +20751,5 6 129 130 13 +9808,1 6 55 34 35 56 7 4 +6044,1 6 55 57 57 51 36 37 17 11 8 +25696,1 6 53 31 47 42 43 17 10 54 7 8 +26151,1 6 51 42 43 17 37 10 7 8 +25303,5 6 88 57 9 16 36 16 17 37 72 7 4 +7808,5 6 12 39 36 16 21 77 78 22 79 4 +8984,1 6 67 68 54 7 8 +5488,5 6 88 57 9 16 36 16 17 37 72 7 8 +5696,15 12 16 36 37 38 37 68 89 7 4 +5697,15 12 16 36 37 38 37 68 89 7 8 +6839,5 6 9 39 36 16 17 11 8 +11083,15 96 16 36 16 42 16 17 37 35 7 8 +26152,1 6 51 42 43 17 37 10 7 4 +9146,1 6 67 68 54 7 4 +17552,5 6 57 34 35 54 7 4 +17347,1 6 76 36 16 61 16 61 16 17 37 72 66 11 7 8 +22412,1 6 53 34 36 37 17 37 35 7 4 +22947,5 6 86 53 9 10 54 7 4 +4888,5 6 64 16 36 37 38 17 62 10 7 8 +5721,15 55 12 88 55 12 16 17 19 13 +22948,5 6 86 53 9 10 54 7 8 +4889,5 6 64 16 36 37 38 17 62 10 7 4 +9659,1 6 57 29 30 7 8 +9660,1 6 57 29 30 7 4 +4126,1 6 12 57 58 11 8 +6158,5 6 64 53 9 10 13 +25067,1 6 9 36 16 36 37 38 17 3 8 +21900,1 6 55 88 57 58 7 8 +7852,15 67 47 107 108 35 54 7 4 +7851,15 67 47 107 108 35 54 7 8 +24113,1 6 113 61 62 17 37 35 54 7 4 +23189,1 6 55 88 57 58 7 4 +24112,1 6 113 61 62 17 37 35 54 7 8 +2445,15 88 26 51 36 37 17 11 8 +13799,5 6 55 88 55 57 55 51 52 7 8 +2446,15 88 26 51 36 37 17 11 13 +867,1 6 12 65 9 16 17 37 52 7 8 +22800,1 6 12 12 36 16 17 37 50 11 8 +5475,1 6 88 55 9 16 17 10 7 4 +6064,5 6 51 47 42 43 17 63 7 4 +868,1 6 12 65 9 16 17 37 52 7 4 +5474,1 6 88 55 9 16 17 10 7 8 +19074,5 6 9 10 50 11 8 +6065,5 6 51 47 42 43 17 63 7 8 +12607,1 45 21 22 17 10 93 7 8 +25247,15 119 61 16 17 62 10 7 4 +20595,5 6 53 18 12 16 17 37 11 8 +1655,5 6 34 107 108 35 7 4 +12606,1 45 21 22 17 10 93 7 4 +4351,5 6 53 51 36 37 17 10 54 7 4 +5390,1 6 53 51 36 37 17 11 8 +3924,5 6 53 51 36 37 17 10 54 7 8 +11813,1 6 53 51 36 37 17 11 13 +13831,5 6 76 36 16 61 16 61 16 17 10 54 7 8 +20439,1 12 16 36 39 36 16 17 19 13 +3160,5 6 53 53 54 56 7 8 +3486,15 71 117 16 17 11 13 +3485,15 71 117 16 17 11 8 +3146,5 6 53 53 54 56 7 4 +15026,5 6 84 57 12 16 17 19 13 +12763,1 6 57 9 16 17 37 10 7 4 +24170,5 6 9 36 16 16 17 37 32 7 4 +12762,1 6 57 9 16 17 37 10 7 8 +16503,1 12 16 36 16 17 118 17 11 8 +12824,1 6 88 57 9 16 36 37 38 17 10 7 8 +19872,5 2 16 17 43 32 93 7 4 +24171,5 6 9 36 16 16 17 37 32 7 8 +19160,5 6 53 9 16 36 16 17 37 68 85 54 7 4 +3989,1 81 77 78 22 79 4 +13998,1 6 57 71 36 37 17 10 85 7 4 +20771,5 6 53 9 16 36 16 17 37 68 85 54 7 8 +12583,1 6 26 55 51 52 58 27 7 4 +17206,5 2 16 17 43 32 93 7 8 +1452,1 6 88 89 13 +15843,1 6 64 61 62 37 35 7 4 +22638,70 16 36 37 38 63 7 8 +6792,15 34 47 48 35 66 7 4 +7404,5 6 18 12 16 17 43 32 10 54 7 8 +1377,15 12 11 14 54 54 7 8 +22637,70 16 36 37 38 63 7 4 +6793,15 34 47 48 35 66 7 8 +7246,5 6 18 12 16 17 43 32 10 54 7 4 +20404,1 6 18 12 16 17 37 72 56 7 8 +6586,1 6 64 61 62 17 37 48 35 11 8 +16409,1 6 53 9 16 61 16 17 10 54 7 8 +15844,1 6 64 61 62 37 35 7 8 +20405,1 6 18 12 16 17 37 72 56 7 4 +3211,15 57 58 7 4 +16408,1 6 53 9 16 61 16 17 10 54 7 4 +1849,5 6 12 16 61 16 17 19 13 +13455,5 6 9 10 11 58 11 8 +16641,15 55 57 9 16 17 43 32 93 7 4 +3210,15 57 58 7 8 +16642,15 55 57 9 16 17 43 32 93 7 8 +26194,70 16 36 37 38 37 52 11 8 +19774,1 6 57 9 16 17 37 52 11 7 4 +23312,1 6 12 57 58 7 8 +8720,5 6 9 16 39 36 16 61 16 17 11 8 +11578,1 12 9 34 35 13 +25974,15 109 55 55 57 96 16 21 77 78 22 8 +26288,5 6 53 55 9 16 36 16 17 10 7 4 +3161,5 6 34 107 108 35 7 8 +22304,1 6 12 57 58 7 4 +13209,5 6 65 88 88 9 16 17 10 7 4 +21180,1 6 9 16 36 37 38 17 37 68 7 8 +25246,15 119 61 16 17 62 10 7 8 +3133,1 6 53 34 36 37 17 10 54 7 8 +25122,1 6 53 31 36 37 17 37 108 35 58 54 7 8 +3979,1 6 18 12 16 17 37 50 56 7 4 +17328,5 6 53 55 9 16 36 16 17 10 7 8 +3978,1 6 18 12 16 17 37 50 56 7 8 +1376,15 12 11 14 54 54 7 4 +25811,70 16 42 16 17 19 7 8 +10240,1 6 53 34 36 37 17 10 54 7 4 +25123,1 6 53 31 36 37 17 37 108 35 58 54 7 4 +25812,70 16 42 16 17 19 7 4 +2930,15 31 36 37 11 8 +14235,5 6 49 42 43 17 11 8 +2931,15 31 36 37 11 13 +9450,15 9 16 36 16 61 16 61 16 17 37 35 7 8 +16646,5 6 65 88 88 9 16 17 10 7 8 +7438,5 6 34 107 108 35 11 8 +8957,15 9 16 36 16 61 16 61 16 17 37 35 7 4 +22369,1 6 53 31 42 43 17 37 35 11 8 +17869,5 6 31 47 48 52 54 54 7 8 +22492,15 55 88 57 57 9 16 17 11 8 +17870,5 6 31 47 48 52 54 54 7 4 +13904,1 6 65 88 9 16 17 37 50 7 4 +26353,15 67 36 37 17 37 52 7 8 +26352,15 67 36 37 17 37 52 7 4 +1258,15 47 48 32 54 7 8 +11341,5 6 55 9 16 17 37 35 54 7 4 +13532,15 57 9 16 39 36 16 17 10 7 4 +23464,5 2 16 17 37 68 58 54 7 4 +1259,15 47 48 32 54 7 4 +6169,5 6 55 9 16 17 37 35 54 7 8 +19789,1 6 71 36 37 74 7 4 +16122,1 6 51 109 110 7 8 +18402,1 6 64 61 62 17 37 48 35 7 4 +19788,1 6 71 36 37 74 7 8 +13533,15 57 9 16 39 36 16 17 10 7 8 +8609,5 6 9 10 11 58 7 8 +20457,1 6 51 109 110 7 4 +23463,5 2 16 17 37 68 58 54 7 8 +21145,5 6 9 10 11 58 7 4 +24160,1 6 64 61 62 17 118 17 3 4 +1422,70 16 36 37 38 37 52 7 8 +23094,5 6 55 9 16 17 37 50 7 8 +1421,70 16 36 37 38 37 52 7 4 +4054,15 9 16 42 16 17 10 7 8 +20458,1 6 9 16 17 118 17 63 7 4 +4053,15 9 16 42 16 17 10 7 4 +25915,5 6 18 12 16 17 43 32 32 54 7 4 +23095,5 6 55 9 16 17 37 50 7 4 +4294,5 6 76 61 62 17 62 10 7 8 +25914,5 6 18 12 16 17 43 32 32 54 7 8 +14251,5 6 12 49 50 7 8 +8726,5 6 76 61 62 17 62 10 7 4 +368,5 6 12 49 50 7 4 +19386,15 53 31 47 48 32 7 4 +21633,1 12 36 16 17 69 +17145,15 57 55 12 16 36 37 38 17 11 7 8 +19385,15 53 31 47 48 32 7 8 +7146,15 53 53 53 54 13 +25102,15 55 49 36 37 17 10 7 4 +2779,15 55 49 36 37 17 11 8 +15226,1 6 64 16 36 16 17 10 7 8 +4847,1 6 53 51 36 37 17 19 13 +12211,1 6 64 16 36 16 17 10 7 4 +24815,5 6 57 65 66 58 7 4 +2780,15 55 49 36 37 17 11 13 +15316,1 12 16 36 39 36 16 17 11 8 +8653,5 6 9 16 39 36 16 17 10 7 8 +23230,1 6 9 16 17 43 50 56 7 4 +4996,1 6 64 61 62 62 10 7 4 +12302,5 6 57 65 66 58 7 8 +6112,5 6 9 16 39 36 16 17 10 7 4 +4995,1 6 64 61 62 62 10 7 8 +9562,5 6 31 47 9 36 37 17 11 8 +14745,15 34 107 108 108 35 56 7 8 +14744,15 34 107 108 108 35 56 7 4 +21669,15 55 26 57 90 16 61 16 17 37 50 7 8 +1015,1 6 53 9 39 36 16 61 16 17 62 10 7 4 +21670,15 55 26 57 90 16 61 16 17 37 50 7 4 +9765,1 6 57 58 85 7 4 +1780,1 6 64 61 62 17 37 32 54 7 8 +6131,5 6 49 47 48 35 7 4 +9764,1 6 57 58 85 7 8 +1135,1 6 64 61 62 17 37 32 54 7 4 +3623,5 6 49 47 48 35 7 8 +22106,5 6 76 61 62 17 37 35 7 4 +23310,5 6 41 88 89 58 13 +26777,15 9 16 36 16 17 37 115 50 66 7 4 +22107,5 6 76 61 62 17 37 35 7 8 +26776,15 9 16 36 16 17 37 115 50 66 7 8 +7131,1 6 84 9 10 56 85 7 4 +17240,15 44 49 47 42 43 17 37 52 54 7 4 +1998,70 16 99 16 42 16 17 19 13 +7132,1 6 84 9 10 56 85 7 8 +17241,15 44 49 47 42 43 17 37 52 54 7 8 +15121,1 6 9 16 17 62 52 7 4 +18527,5 6 84 49 47 48 52 85 7 8 +20035,5 6 53 34 36 37 17 37 72 54 7 8 +20965,1 6 34 35 56 11 8 +13084,5 6 31 47 36 37 17 11 8 +16203,1 6 9 16 17 62 52 7 8 +25101,15 55 49 36 37 17 10 7 8 +6473,1 6 55 53 49 36 37 10 7 8 +22780,1 2 16 17 37 48 50 58 7 4 +1196,15 31 36 37 17 69 +17544,1 6 55 53 49 36 37 10 7 4 +22781,1 2 16 17 37 48 50 58 7 8 +6791,1 6 86 34 47 48 35 66 7 4 +13390,5 6 31 47 36 37 17 11 13 +15519,1 6 88 57 58 11 8 +8671,15 90 16 39 36 16 17 98 +716,5 6 9 10 66 58 7 8 +715,5 6 9 10 66 58 7 4 +7458,1 6 53 31 42 43 17 10 54 7 4 +5616,5 6 9 36 16 61 16 17 19 7 8 +4150,5 6 71 61 62 75 7 4 +4554,1 6 53 31 42 43 17 10 54 7 8 +2410,15 96 36 37 38 37 108 35 7 8 +10067,15 88 57 57 9 16 36 16 17 37 50 7 4 +7727,5 6 71 61 62 75 7 8 +2409,15 96 36 37 38 37 108 35 7 4 +1266,1 6 64 61 62 17 37 10 54 7 4 +17002,5 6 9 36 16 61 16 17 19 7 4 +5675,1 6 9 16 36 16 36 37 38 17 10 7 4 +12857,5 6 53 71 36 37 17 63 7 8 +5674,1 6 9 16 36 16 36 37 38 17 10 7 8 +12856,5 6 53 71 36 37 17 63 7 4 +8663,1 6 90 16 17 69 +8670,15 90 16 39 36 16 17 69 +10066,15 88 57 57 9 16 36 16 17 37 50 7 8 +12958,5 6 64 16 42 16 17 37 68 11 8 +8677,5 6 49 42 43 17 3 4 +79,1 2 16 17 3 8 +11572,5 6 49 42 43 17 3 8 +3957,5 6 12 16 17 37 52 7 4 +23805,15 12 16 36 16 17 37 115 72 7 8 +20942,5 6 18 12 16 17 43 48 72 7 4 +82,1 2 16 17 3 4 +13076,5 6 12 16 17 37 52 7 8 +23804,15 12 16 36 16 17 37 115 72 7 4 +20943,5 6 18 12 16 17 43 48 72 7 8 +1652,1 6 53 49 36 37 17 10 7 4 +19007,15 65 57 49 47 48 50 7 8 +536,1 6 51 36 37 10 7 8 +1248,1 6 53 49 36 37 17 10 7 8 +19126,1 6 96 36 37 38 17 10 54 7 8 +19006,15 65 57 49 47 48 50 7 4 +535,1 6 51 36 37 10 7 4 +16449,1 6 51 36 37 17 63 7 4 +25166,1 6 9 16 39 36 16 36 37 38 17 37 50 7 4 +6814,15 57 58 11 8 +10134,1 6 51 36 37 17 63 7 8 +5943,1 6 90 16 17 94 +3484,1 6 12 71 117 16 17 11 8 +6396,15 44 96 16 39 36 16 61 16 17 37 50 7 8 +10004,5 6 9 16 17 118 17 91 7 4 +1602,5 6 64 61 62 17 106 7 4 +18018,1 6 90 16 17 98 +6397,15 44 96 16 39 36 16 61 16 17 37 50 7 4 +1603,5 6 64 61 62 17 106 7 8 +25925,1 6 96 36 37 38 17 10 54 7 4 +10005,5 6 9 16 17 118 17 91 7 8 +5932,1 45 21 22 17 19 87 7 8 +7229,15 12 16 36 16 17 37 48 35 7 4 +14061,1 6 49 107 36 37 17 37 48 72 7 8 +22045,5 6 9 10 89 27 7 4 +13514,1 6 57 92 12 16 17 69 +1283,1 6 34 35 56 7 8 +7226,15 12 16 36 16 17 37 48 35 7 8 +6555,5 6 9 10 89 27 7 8 +16380,15 49 107 108 52 66 11 8 +11319,5 6 84 71 47 48 68 85 54 7 8 +23298,1 45 21 22 17 19 87 7 4 +1676,1 6 55 12 57 58 11 8 +9461,5 6 84 71 47 48 68 85 54 7 4 +20827,15 57 12 16 17 11 56 7 4 +3470,5 6 12 65 9 16 17 91 7 4 +4206,1 6 31 42 43 63 7 8 +16372,1 12 16 17 37 35 54 7 4 +12007,5 6 53 71 36 37 10 7 4 +12214,1 6 31 42 43 63 7 4 +9973,15 31 36 37 17 59 +22380,5 6 67 47 36 37 17 19 58 7 4 +1282,1 6 34 35 56 7 4 diff --git a/be/PIPE/codeData/outData/tokens.csv b/be/PIPE/codeData/outData/tokens.csv new file mode 100644 index 0000000..f011c0f --- /dev/null +++ b/be/PIPE/codeData/outData/tokens.csv @@ -0,0 +1,1424 @@ +id,token +1228,?_ +484,gkd +273,stdin +1232,bigcount +569,year +843,fifty +147,wholeequal +1179,salary +385,nouw +595,score +1154,rab +661,intnn +1030,intnm +342,tel +1238,vin +417,ten +967,tem +895,longlongn +1303,vis +775,sheshi +301,# +469,printlist +1040,$ +377,printfffaveragenaveragen +985,( +1137,xubu +988,) +1377,30.625 +267,* +801,+ +568,- +55,. +802,/ +10,0 +667,exam +793,stot +18,1 +1266,10.5 +77,2 +135,3 +38,4 +298,nofibonaccinumber +433,size +1345,stop +108,5 +266,guess +702,left +106,6 +324,10.0 +284,7 +134,8 +94,9 +747,eleven +544,makesum +800,= +591,? +329,aftersorted +1223,aaa +1087,shiyi +901,hang +671,stopminus +1379,intnum +186,1000 +948,turn +350,matrix +1417,ffffffff +126,result +926,daxie +388,after +97,_ +30,a +781,aba +27,b +25,c +7,d +71,e +109,f +103,g +903,plandays +65,h +32,i +319,1010 +33,j +338,thecountforfailedd +101,k +1,l +5,m +44,n +297,o +15,p +23,q +20,r +52,s +626,abs +83,t +115,u +362,workout +286,v +572,/**/ +754,32.0 +102,w +546,1001 +51,x +105,y +73,z +343,information +530,intarrayshift +518,buff +1012,standard +22,taila +746,nine +940,november +276,stdout +631,pval +1009,isp +314,ack +167,intmaxtime +1203,good +632,isx +994,rea +516,compute +37,strlen +207,rec +992,tie +1194,canfddan +450,0.00005 +1023,zuo +129,0.00001 +973,structv +869,zuu +45,quicksort +453,cha +258,others +991,tis +222,add +311,area +541,ret +349,res +1062,posi +949,jiashi +1252,charlength +1341,rez +771,chk +1016,pay +373,check +397,cho +316,list +346,chr +1187,els +1348,adbdid +1031,printfmaxdmax +924,jiecheng +1239,structvin +586,bdis +326,30.0 +1261,1.00 +601,lens +602,lent +734,argv +728,ddcd +1423,noperfactnumber +1050,gra +408,intpart +468,end +31,lena +24,lenb +748,eng +842,forty +733,argc +1033,structp +830,ihangjlie +1146,structm +1219,ticket +1401,eightteen +685,structs +1390,lmini +520,pout +695,sheng +1200,message +1389,lminz +963,demax +1349,bdid +63,4.0 +927,xiaoxie +1070,1.03 +1123,toosmallgameover +68,eof +651,age +337,fenshu +230,arrayshift +526,namelen +620,pea +1029,ffiffiffi +95,number +709,exceeddticket +1331,(00) +354,tmp +874,structstudentsn +205,judge +1177,peo +708,per +706,order +1168,jane +1255,period +1334,canfffmn +1422,ddcddcdd +1138,distant +341,birth +665,eps +720,whitebluered +62,dddd +256,intnnn +196,exit +736,system +1251,10_2.5 +1293,400 +315,even +1072,restriction +1410,gui +359,other +1378,tong +1053,queen +1117,0.000001 +455,ping +556,cmp +635,save +366,soclock +1159,valid +528,minprice +1116,tian +482,bubble +1153,tor +454,printdigits +762,cnd +791,tot +873,countoffailed +1183,outcome +172,gameover +1270,monday +17,malloc +277,dataout +131,product +907,problemin +142,jiage +192,cnt +1134,dsds +247,2.0 +892,666 +308,10000 +1169,decembeer +705,2.5 +1064,10001 +922,minlf +439,printfdai +885,com +968,col +381,con +1051,newhead +1258,50.0 +185,cos +597,structstudent +1339,1.099999999 +291,3.00 +900,points +1376,structdiann +1162,function +875,integerpart +594,all +768,new +78,void +512,read +1316,alp +401,swap +1306,mjqqt +1149,constvoid +1414,3.14 +1250,acos +549,ffff +1017,shifou +1160,%%%%%%%%%% +251,200 +864,204 +175,bingo +476,100.0 +939,october +797,istri +1322,printflftmp +820,whilestridx +177,goodguess +694,structtong +608,0.001 +1352,0.005 +1419,structversionn +676,212 +823,timet +795,//__ +883,wronginput +581,bdri +1003,ffirst +1195,lcm +1274,friday +969,row +610,floor +774,shang +836,fifteen +490,999999 +1257,timetu +1135,20000 +46,ans +877,realnumber +448,maxsum +380,countprime +522,cry +4,any +1233,smallcount +139,minute +35,0.0 +1074,0.1 +1202,specialfor +296,0.4 +40,0.5 +876,fractionpart +668,unsigned +815,tidxstridx +819,tidx +348,rabbits +1218,exceedf +1357,printfdsyc +328,len +416,toeng +1402,chstart +1077,exi +716,recycle +485,danci +972,luanxu +1384,let +536,ctn +538,isdigit +533,element +783,exu +1025,structpro +1055,forintiiniforintjjnjprintfdtchessijprintf +1254,remain +587,bspe +886,structxl +1002,springcount +229,comparelie +246,lfd +510,lff +1399,dayofyear +628,input +677,243 +592,_+_ +1155,244 +1190,lldd +462,notabletoallocatememory +542,istrangle +1006,pnu +125,grade +260,letter +1313,pnt +331,lfs +355,powres +460,averagefmaxfminf +700,addminute +558,wucha +811,lflflflf +946,huiche +841,thirty +406,shanchu +537,isalpha +590,charmaxm +1204,structdestn +914,students +1171,structlink +739,two +137,default +691,endpoint +1075,found +603,pos +1354,dffff +76,pow +435,workmax +960,yesn +169,arr +499,intmax +503,awine +888,inttotal +1199,yesd +687,ary +1208,fsfs +1221,cnter +99,such +263,iiii +731,chark +332,charn +451,charmaxn +818,chart +275,datain +432,structnumberpoint +961,charmaxs +1281,marth +1136,shibu +666,tolower +902,lie +1044,intsum +678,273 +1100,0.0000000000001 +361,workin +1144,han +100,continue +682,hao +1107,liu +58,longlong +915,isprime +656,chesu +865,pre +358,jieguo +1052,chess +1224,last +1288,structtvn +1360,pro +1217,structvector +1285,fuhao +1404,50000 +1287,structtv +118,name +383,structtx +1264,tentwo +168,shijian +19,next +226,bool +548,distance +1355,string +1182,aux +725,fenjie +162,book +1393,99999 +871,impossible +392,noo +639,strcat +1145,nor +444,ave +670,negative +72,ddddd +723,now +1028,printfdddtshitfentmiao +389,doit +1380,chgetchar +1374,factor +897,readline +831,printfdsum +274,freopen +580,race +215,lld +1148,wan +42,yes +203,panduan +410,xiao +540,start +760,war +347,newborn +132,way +776,ptr +322,equal +1277,ssch +638,lflflf +810,chang +502,bwine +1299,structlist +80,miao +1021,structprosum +82,time +272,fab +407,%[^] +1394,jie +357,isfull +505,guessb +214,fac +504,guessa +1225,1+2*10-10/2= +1317,structnum +740,three +828,longlongfac +299,strcpy +1353,numberpoint +576,/*0*/ +146,istriangle +1209,jenuary +547,tempsum +1110,jiu +184,funcos +990,26.5 +136,case +1222,helloworld +1329,identifier +194,item +908,problemout +710,exceeddlicenserevoked +527,maxprice +28,double +839,eighteen +692,slope +1269,sunday +1178,phone +1312,structpt +1290,longint +413,cishu +310,intmaxn +981,suma +1066,pleasegivenumbers +1319,//*_ +1176,structfrin +634,lol +303,doublen +501,calcpow +545,sumd +1386,kilo +69,\0 +49,low +943,zonghe +1295,conststructlist +386,structword +735,?+?=? +396,wei +637,dian +1343,yin +3,readlist +997,fenzhong +318,gotoback +443,structpoint +855,pxn +956,born +21,heada +372,reverse +616,wrong +325,13.0 +1186,zhouchang +930,january +26,char +657,xiansu +1059,heads +1126,includemathh +959,small +964,demin +1121,wordsl +429,miid +117,num +827,replace +1018,kksk +81,fen +470,getodd +340,24.0 +856,dat +498,zong +858,volid +570,day +857,splitfloat +57,strcmp +965,ffb +1037,chck +113,fff +1381,4294967296 +363,gotoout +1129,elec +954,_* +1015,water +737,pause +1332,denominator +752,fclosestdout +832,printflffactn +2,structln +1385,sumk +566,flagb +567,flaga +755,9.0 +1362,sumt +378,nnpyes +978,9.5 +583,game +1282,addi +1010,part +393,insert +891,hmax +441,point +834,thirteen +938,september +837,sixteen +440,fsss +589,win +955,__ +1078,qsort +1105,san +155,temp +824,amount +1350,intdamx +370,pcur +86,ddd +1340,0.00000001 +1365,ddf +1344,exceedflicenserevoked +539,lldlld +36,gets +1056,huoxing +420,oclock +850,countdigit +553,build +1403,chend +270,cheng +400,fib +983,lastnum +384,numberofword +989,bad +945,zifu +179,strmcpy +221,del +942,flflf +1111,bai +1042,fir +1039,rand +529,100000000 +767,trip +777,dev +257,record +438,putchar +411,zheng +1304,100000007 +652,rank +1024,you +67,getchar +560,prime +780,ac +508,ad +561,goldbach +1047,af +1071,pass +290,mile +840,nineteen +917,noproblem +936,july +480,numberofwords +159,al +573,am +327,an +1131,xiangliang +1216,dfs +110,lflflflflflflflf +1210,at +428,mxid +458,av +233,ax +232,ay +1243,az +1318,dddddddd +947,gotoend +1109,ba +925,bb +59,average +1382,bc +387,compare +509,bd +807,sds +1048,bf +262,fushu +180,lflf +554,bh +111,bi +966,deletem +431,bk +158,bl +574,bm +689,sumlength +1013,sea +714,sec +356,search +1211,bt +684,bu +211,miny +209,minx +1398,isleapyear +231,bx +235,by +1272,wednesday +531,uio +1206,factadd +593,cc +640,structgrade +1346,flf +764,set +1069,charge +605,mini +66,ch +13,tail +473,ci +683,ming +1114,gotorett +154,minf +1083,cj +371,words +466,column +799,0.00 +182,0.01 +1164,cl +1273,thursday +481,right +1082,co +650,minp +664,cp +932,march +1411,abce +170,maxtime +906,cs +844,yuan +952,qian +1212,ct +1165,cu +935,june +1314,answer +236,cx +234,cy +790,structnumber +212,jud +335,setgrade +280,da +627,stingcount +1335,db +1260,dc +171,dd +615,gotowrong +1060,de +64,df +506,shoutb +1267,bef +507,shouta +868,dig +1324,dj +846,bei +511,fahrcelsius +1166,dm +889,dn +1227,jmax +425,dp +849,fgets +532,ds +1175,charconst +1213,dt +1328,du +1388,?+?_=? +623,dx +487,0.05 +1091,dy +1351,ddoddoddi +852,unsignedint +1405,structentry +288,32768 +862,reply +1081,ec +261,digit +287,32767 +421,^^^ +1045,ed +585,adis +1043,linklist +1141,ef +339,thegrades +1112,test +814,ifstridxc +904,leftpages +29,count +911,2000 +1325,dianji +1104,er +835,fourteen +283,month +79,shi +614,strstr +295,5.0 +825,amountleftxyzn +847,fb +599,structstudentmax +1358,fd +188,ff +313,fg +414,shu +190,ldld +1089,fh +360,blank +1041,fi +1088,structfs +1315,fj +449,100000 +893,yue +980,fn +1027,structwordsl +534,title +305,fs +344,structinformation +600,primt +923,random +1397,fx +1000,fz +1073,rate +693,sim +96,alpha +152,averagef +1057,sin +265,dlf +1046,gf +880,gg +479,comparewords +743,six +1407,lowercase +879,gm +8,go +399,length +496,false +912,strct +104,gs +302,fpx +493,print +696,hua +368,ssss +1205,structdest +39,gotoret +474,he +1140,minhao +241,hh +1263,structinfn +707,big +817,printfst +1142,hj +259,hk +1004,toosamll +562,printfn +144,0.53 +238,primesum +1156,bir +271,output +863,addone +114,sqrt +1014,0.49 +741,four +953,else +300,999 +557,id +1049,text +1065,chengji +1007,fri +1309,9999999 +898,dnf +160,ig +766,16_4.0 +1226,canfsa +445,ii +1099,cosff +467,ij +866,init +436,in +447,thissum +198,lower +461,ip +156,index +1147,is +293,2.00 +422,canfa +1128,it +1133,slf +492,zimu +564,fclosestdin +829,odd +1151,readbook +1292,januray +197,celsius +1280,computerarea +323,3.0 +145,0.58 +1320,10000000 +200,invalid +787,sssss +1124,jd +565,freopenprobleminrstdin +1035,begin +405,structlistnode +446,jj +622,fibonacci +1152,infib +1143,jl +919,daan +1413,canfddnumberdigit +1215,js +494,sumav +345,structinformationn +471,mab +745,eight +929,toten +1418,structversion +1189,bla +751,freopenproblemoutwstdout +472,caozuo +941,december +805,structfriends +1132,lldlldlld +1373,splifloat +1234,delight +418,twenty +1086,mat +1130,26.500000 +218,ko +934,may +34,max +47,break +1058,+1 +1278,structas +486,change +1412,21252 +1214,ks +848,shuzi +629,trigger +1241,okbut +1253,300 +107,*_ +612,la +613,lb +679,304 +191,ld +112,lf +951,li +282,fun +375,return +478,ll +1336,lo +419,twentys +769,lp +607,10000.0 +89,delchar +202,sign +1038,dist +12,main +584,aspe +140,second +50,high +867,edge +412,split +1150,chigetchar +1229,+_ +248,fine +724,sushu +698,addhour +859,find +250,limit +699,addsecond +426,mi +53,mm +604,1.0000 +227,comparehang +727,months +151,-1 +712,level +749,spa +317,oddsum +1406,occur +1366,mt +48,EMPTY_TOKEN +427,mx +618,sort +1001,mz +70,stringcount +804,friends +321,memset +690,beginpoint +122,dsb +1409,entries +119,dsa +127,1.0 +1068,listn +16,null +124,dsd +253,1.1 +1008,structfri +123,dsc +582,adri +225,true +252,1.5 +1297,header +477,maxlen +975,foriii +376,nn +1191,birthday +43,no +523,.0 +306,code +434,boo +916,stair +630,0.0000000000000000000000000001 +1300,dst +596,student +703,1000000 +1034,dss +1289,best +14,head +228,total +138,hour +237,dddddd +279,deng +611,oc +681,334 +1330,fxf +998,xiaoshi +166,keyi +488,digitsum +711,ok +1054,forintiiniforintjjnjprintfdtchessijprintfputs +483,// +240,op +579,/0 +588,chance +1294,src +1026,9973 +1090,fsecond +181,100 +1420,pa +312,101 +1084,tongji +1421,pb +1231,munlf +1157,ph +1011,makelist +1061,pi +976,pj +173,toosmall +394,pn +786,ddiddiddi +1387,po +1395,getsa +782,eshi +1363,pp +996,10.51 +1172,pr +1371,ssc +1392,hmaxj +851,ps +1163,whilescanfcai +944,structshun +1237,ssd +199,upper +85,delta +854,px +1268,nofb +367,sss +1391,hmaxz +1005,bri +1097,longlongintsnnskqnnqkforintiitisycsycsqikkanssyc +1108,qi +550,qk +1115,1. +1367,outdd +56,10 +245,height +193,11 +395,qq +680,12 +183,13 +1337,std +294,14 +937,august +1067,15 +457,16 +977,4.25 +770,old +887,17 +653,18 +1173,19 +645,ycabssycksknnikk +673,120 +759,0_ +88,str +219,node +307,122 +424,rd +463,123 +870,nodd +404,re +598,stu +833,twelve +1400,seventeene +1185,mianji +201,20 +958,21 +1201,22 +1298,suc +244,23 +672,minus +778,sub +141,24 +1275,saturday +130,fact +826,25 +1198,charmax +268,26 +1098,1.000001 +128,1.000000 +625,28 +519,factorial +624,29 +1118,nummax +1361,chong +1036,mid +61,sum +950,jiaqian +189,long +758,1_ +374,sb +517,gettheleftnumber +513,//0 +552,sc +1364,qqq +91,min +647,keneng +1020,sf +890,lmin +1347,outling +756,si +320,sk +1063,intx +1113,lian +459,averagedmaxdmind +524,9999 +721,vector +894,intdmax +98,konghui +365,free +269,30 +497,sp +304,31 +957,sq +1291,structmonth +148,32 +808,sr +239,ss +663,33 +763,st +206,35 +726,su +309,fabs +648,ruguo +970,36 +1368,middle +1307,37 +278,intc +738,one +1101,nxifnabann +962,inti +352,intk +92,intn +729,tb +353,intm +1197,tc +423,td +806,structfriendsi +1321,tf +1408,buf +896,lfllflflf +717,narcissistic +452,ti +1359,structfriendsn +403,bul +979,0.0001 +882,?_+_?_=_? +1184,lflflflflflf +535,40 +621,mani +149,ts +792,//_ +654,44 +982,tt +285,tu +761,gotoa +845,beishu +1181,45 +1192,sddds +655,46 +1286,tv +1283,47 +382,tx +500,swi +633,48 +658,49 +649,diushi +744,seven +1323,dest +674,151 +415,zero +495,aalpha +662,zhong +143,50 +390,up +644,printfldsyc +821,//{ +1356,51 +659,52 +742,five +816,//} +578,53 +660,55 +54,2147483647 +617,uw +813,57 +1235,structstu +379,2147483648 +243,59 +514,reportinputerror +878,_______________________________ +928,qita +1127,structstudents +187,factsum +713,structstudentn +688,vl +987,sind +87,60 +521,idx +642,syc +1080,64 +133,coin +779,65 +150,vv +772,66 +1158,que +161,structbook +1279,decount +986,printa +686,69 +984,printb +872,enterxx +794,ctrlz +1193,sym +255,revoke +920,averagelf +195,calloc +1076,wd +249,speed +41,printf +442,structpointn +1167,perfectnumber +121,70 +609,drow +899,mmx +9,ws +1106,wu +1180,75 +1383,ystempause +75,ord +1301,pushback +254,normal +1256,timegui +475,wide +292,10.00 +881,fclose +1249,xa +675,181 +1244,xb +1245,xc +515,gettherightnumber +1161,xd +1259,studentid +289,money +884,xl +718,printn +334,80 +489,geshu +1327,81 +1415,xr +999,xs +120,84 +1416,xt +116,85 +785,xu +1302,geteven +165,mark +577,86 +1095,xx +798,xy +525,mod +822,tcharmalloc +1246,ya +1196,gcd +1248,yb +6,scanf +163,structbookn +1247,yc +812,type +281,mon +933,april +1019,yf +1326,structbooks +1103,yi +224,palindrome +974,printfsstri +164,price +333,90 +1284,93 +619,cont +464,97 +351,99 +704,islian +789,val +1094,yy +669,comp +750,oth +730,fibnum +1207,goal +84,structtime +809,kuan +701,lose +753,fahr +1305,bingol +157,zi +913,fail +719,books +796,30000001 +838,seventeen +369,word +905,nowdays +93,flag +1296,structlistelem +861,newdata +1311,iii +242,dcdcd +216,out +643,intabsintnifnreturnnelsereturnn +1092,structtxln +1119,nummin +1125,assert +1120,get +575,leap +543,power +1085,thecountforfaileddthegrades +722,kongge +330,sbook +1338,remoke +213,unnamed +174,toobig +90,puts +1262,structinf +176,luckyyou +641,thecountforfaileddthegrade +223,data +391,constint +1102,perfect +559,xiang +264,iiiiiiddi +1174,twentysoclock +409,fracpart +60,float +437,forintiini +1079,space +1093,cntxx +1240,aver +773,xia +555,vec +402,tag +491,ishuixing +210,maxy +208,maxx +1236,failed +398,ispoint +1396,printffa +1022,structpron +153,maxf +715,3600 +336,person +606,maxi +765,maxn +1372,printfcscstr +74,dectobin +995,ima +1276,maxq +646,maxp +563,noperfectnumber +853,paixu +1230,=_ +1310,week +204,ling +364,mul +465,line +178,includestdioh +636,structdian +1170,link +788,cai +803,error +1242,noway +551,cal +1220,licenserevoked +1265,cao +571,/*1*/ +1122,toobiggameover +1333,_=_? +217,countoff +1188,cap +1370,structchengjin +1342,imz +1139,printfdn +732,chartonum +1032,canfdn +1369,printfdp +220,listnode +430,inf +971,0_0 +860,cost +1308,pdws +931,february +697,match +784,structfushu +456,longlongint +757,instead +909,inq +11,int +1096,cntyy +1375,factors +921,maxlf +1271,tuesday +910,1200 +993,ssoclock +918,cifang diff --git a/be/PIPE/config.py b/be/PIPE/config.py new file mode 100644 index 0000000..f213852 --- /dev/null +++ b/be/PIPE/config.py @@ -0,0 +1,39 @@ +from math import ceil +from typing import Optional +import logging +from argparse import ArgumentParser +import sys +import os + +class Config: + def __init__(self): + self.__logger: Optional[logging.Logger] = None + self.set_defaults() + + def set_defaults(self): + self.NUM_TRAIN_EPOCHS = 100 + self.SAVE_EVERY_EPOCHS = 5 + self.TRAIN_BATCH_SIZE = 64 + + # model hyper-params + self.categories = 10 + # self.learning_rate=0.001 + # self.decay_rate=0.9 + + self.path_vocab_size = 27500 + self.token_vocab_size = 1500 + self.MAX_CONTEXTS = 200 + self.MAX_TOKEN_VOCAB_SIZE = 1301136 + self.MAX_PATH_VOCAB_SIZE = 911417 + self.DEFAULT_EMBEDDINGS_SIZE = 64 + self.TOKEN_EMBEDDINGS_SIZE = self.DEFAULT_EMBEDDINGS_SIZE + self.PATH_EMBEDDINGS_SIZE = self.DEFAULT_EMBEDDINGS_SIZE + self.CODE_VECTOR_SIZE = self.context_vector_size + self.TARGET_EMBEDDINGS_SIZE = self.CODE_VECTOR_SIZE + self.DROPOUT_KEEP_RATE = 0.5 + + @property + def context_vector_size(self) -> int: + # The context vector is actually a concatenation of the embedded + # source & target vectors and the embedded path vector. + return self.PATH_EMBEDDINGS_SIZE + 2 * self.TOKEN_EMBEDDINGS_SIZE diff --git a/be/PIPE/keras_attention_layer.py b/be/PIPE/keras_attention_layer.py new file mode 100644 index 0000000..6d1f6b9 --- /dev/null +++ b/be/PIPE/keras_attention_layer.py @@ -0,0 +1,80 @@ +import tensorflow as tf + +try: + import tensorflow.python.keras as keras + from tensorflow.python.keras import layers + from tensorflow.python.keras import backend as K +except: + import tensorflow.keras as keras + from tensorflow.keras import layers + from tensorflow.keras import backend as K + + +class Attention_layer(layers.Layer): + def __init__(self, **kwargs): + super(Attention_layer, self).__init__(**kwargs) + + def build(self, inputs_shape): + assert isinstance(inputs_shape, list) + + # inputs: --> size + # [(None,max_contents,code_vector_size),(None,max_contents)] + # the second input is optional + if (len(inputs_shape) < 1 or len(inputs_shape) > 2): + raise ValueError("AttentionLayer expect one or two inputs.") + + # (None,max_contents,code_vector_size) + input_shape = inputs_shape[0] + + if (len(input_shape) != 3): + raise ValueError("Input shape for AttentionLayer shoud be of 3 dimensions.") + + self.input_length = int(input_shape[1]) + self.input_dim = int(input_shape[2]) + + attention_param_shape = (self.input_dim, 1) + + self.attention_param = self.add_weight( + name='attention_param', + shape=attention_param_shape, + initializer='uniform', + trainable=True, + dtype=tf.float32 + ) + + super(Attention_layer, self).build(input_shape) + + def call(self, inputs, **kwargs): + assert isinstance(inputs, list) + + # inputs: + # [(None,max_contents,code_vector_size),(None,max_contents)] + # the second input is optional + if (len(inputs) < 1 or len(inputs) > 2): + raise ValueError("AttentionLayer expect one or two inputs.") + + actual_input = inputs[0] + mask = inputs[1] if (len(inputs) > 1) else None + + if mask is not None and not (((len(mask.shape) == 3 and mask.shape[2] == 1) or (len(mask.shape) == 2)) and ( + mask.shape[1] == self.input_length)): + raise ValueError( + "`mask` shoud be of shape (batch, input_length) or (batch, input_length, 1) when calling AttentionLayer.") + + assert actual_input.shape[-1] == self.attention_param.shape[0] + + # (batch, input_length, input_dim) * (input_dim, 1) ==> (batch, input_length, 1) + attention_weights = K.dot(actual_input, self.attention_param) + + if mask is not None: + if (len(mask.shape) == 2): + mask = K.expand_dims(mask, axis=2) # (batch, input_dim, 1) + mask = K.log(mask) # e.g. K.exp(K.log(0.)) = 0 K.exp(K.log(1.)) =1 + attention_weights += mask + + attention_weights = K.softmax(attention_weights, axis=1) + result = K.sum(actual_input * attention_weights, axis=1) + return result, attention_weights + + def compute_output_shape(self, input_shape): + return input_shape[0], input_shape[2] # (batch,input_length,input_dim) --> (batch,input_dim) diff --git a/be/PIPE/keras_model.py b/be/PIPE/keras_model.py new file mode 100644 index 0000000..2f7a70a --- /dev/null +++ b/be/PIPE/keras_model.py @@ -0,0 +1,203 @@ +import sys +sys.path.append('../') +import tensorflow as tf +try: + import tensorflow.python.keras as keras + from tensorflow.python.keras import layers + import tensorflow.python.keras.backend as K +except: + import tensorflow.keras as keras + from tensorflow.keras import layers + import tensorflow.keras.backend as K +from typing import Optional +from PIPE.config import Config +from PIPE.keras_attention_layer import Attention_layer + + +class Code2VecModel(): + def __init__(self,config: Config): + self.keras_train_model: Optional[keras.Model] = None + self.config = config + +##################################################搭建模型结构函数######################################################## + def _create_keras_model(self): + path_source_token_input = layers.Input((self.config.MAX_CONTEXTS,), dtype=tf.int32) + path_input = layers.Input((self.config.MAX_CONTEXTS,), dtype=tf.int32) + path_target_token_input = layers.Input((self.config.MAX_CONTEXTS,), dtype=tf.int32) + context_valid_mask = layers.Input((self.config.MAX_CONTEXTS,)) + + # path embedding layer + # (None, max_contents) -> (None,max_contents,path_embedding_size) + paths_embedded = layers.Embedding( + self.config.path_vocab_size, self.config.PATH_EMBEDDINGS_SIZE, name = 'path_embedding' + )(path_input) + + # terminal embedding layer + # (None, max_contents) -> (None,max_contents,token_embedding_size) + token_embedding_shared_layer = layers.Embedding( + self.config.token_vocab_size, self.config.TOKEN_EMBEDDINGS_SIZE, name = 'token_embedding' + ) + + path_source_token_embedded = token_embedding_shared_layer(path_source_token_input) + path_target_token_embedded = token_embedding_shared_layer(path_target_token_input) + + # concatenate layer: paths -> [source, path, target] + # [3 * (None,max_contents, token_embedding_size)] -> (None, max_contents,3*embedding_size) + context_embedded = layers.Concatenate()([path_source_token_embedded, paths_embedded, path_target_token_embedded]) + context_embedded = layers.Dropout(1 - self.config.DROPOUT_KEEP_RATE)(context_embedded) + + # Dense layer: (None,max_contents,3*embedding_size) -> (None,max_contents, code_vector_size) + context_after_dense = layers.TimeDistributed( + layers.Dense(self.config.CODE_VECTOR_SIZE, use_bias=False, activation='tanh') + )(context_embedded) + + # attention layer: (None, max_contents,code_vector_size) -> (None,code_vector_size) + code_vectors, attention_weights = Attention_layer(name='attention')( + [context_after_dense, context_valid_mask] + ) + + """ + 下面是用C2AE分类器进行分类的模型 + """ + Fx = layers.Dense( + 186 , use_bias=True,activation=None,name='Fx' + )(code_vectors) + + Fx_relu = tf.tanh(Fx) + Fx_dropout = layers.Dropout(0.5)(Fx_relu) + + targets_input = layers.Input((self.config.categories,), dtype=tf.float32) + targets_hidden = layers.Dense( + 186, use_bias=True,activation=None,name='targets_hidden' + )(targets_input) + targets_hidden_relu = tf.tanh(targets_hidden) + + targets_hidden_dropout = layers.Dropout(0.5)(targets_hidden_relu) + targets_output = layers.Dense( + 186, use_bias=True,activation=None,name='targets_embedding' + )(targets_hidden_dropout) + targets_output_relu = tf.tanh(targets_output) + + targets_output_dropout = layers.Dropout(0.5)(targets_output_relu) + + targets_loss = layers.subtract([targets_output_dropout,Fx_dropout],name='targets_loss') + Fd1 = layers.Dense( + 186, use_bias=True,activation=None,name='Fd1' + )(Fx_dropout) + + Fd_relu1 = tf.tanh(Fd1) + + Fd_dropout1 = layers.Dropout(0.5)(Fd_relu1) + + Fd = layers.Dense( + 186, use_bias=True, activation=None, name='Fd' + )(Fd_dropout1) + + Fd_relu = tf.tanh(Fd) + + Fd_dropout = layers.Dropout(0.5)(Fd_relu) + + target_index_3 = layers.Dense( + self.config.categories, use_bias=True,activation='sigmoid',name='target_index_3' + )(Fd_dropout) + + inputs = [path_source_token_input, path_input, path_target_token_input, context_valid_mask, targets_input] + self.keras_train_model = keras.Model(inputs = inputs, outputs = [target_index_3,targets_loss]) + + print("------------------create_keras_model Done.-------------------------") + + @classmethod + + def _create_optimizer(self): + return tf.keras.optimizers.Adam(lr=0.001, beta_1=0.9, beta_2=0.999, epsilon=1e-08, decay=0.0) + + def _comile_keras_model(self, optimizer=None): + if optimizer is None: + optimizer = self._create_optimizer() + + ################################评估指标############################## + def exactMatch(y_true, y_pred): + y_pred1 = y_pred + row_dif = K.cast(K.sum(K.round(K.clip(y_true * (1 - y_pred1) + (1-y_true) * y_pred1,0,1)), axis=1) > K.epsilon(),'float32') + dif = K.sum(K.round(row_dif)) + row_equ = K.cast(K.abs(K.sum(K.round(K.clip(y_true * y_pred1 + (1-y_true) * (1 - y_pred1),0,1)), axis=1) - self.config.categories) < K.epsilon(),'float32') + equ = K.sum(K.round(row_equ)) + return equ / (equ + dif + K.epsilon()) + + def micro_getPrecsion(y_true, y_pred): + TP = tf.reduce_sum(y_true * tf.round(y_pred)) + TN = tf.reduce_sum((1 - y_true) * (1 - tf.round(y_pred))) + FP = tf.reduce_sum((1 - y_true) * tf.round(y_pred)) + FN = tf.reduce_sum(y_true * (1 - tf.round(y_pred))) + precision = TP / (TP + FP) + return precision + + def micro_getRecall(y_true, y_pred): + TP = tf.reduce_sum(y_true * tf.round(y_pred)) + TN = tf.reduce_sum((1 - y_true) * (1 - tf.round(y_pred))) + FP = tf.reduce_sum((1 - y_true) * tf.round(y_pred)) + FN = tf.reduce_sum(y_true * (1 - tf.round(y_pred))) + precision = TP / (TP + FP) + recall = TP / (TP + FN) + return recall + + # F1-score评价指标 + def micro_F1score(y_true, y_pred): + TP = tf.reduce_sum(y_true * tf.round(y_pred)) + TN = tf.reduce_sum((1 - y_true) * (1 - tf.round(y_pred))) + FP = tf.reduce_sum((1 - y_true) * tf.round(y_pred)) + FN = tf.reduce_sum(y_true * (1 - tf.round(y_pred))) + precision = TP / (TP + FP) + recall = TP / (TP + FN) + F1score = 2 * precision * recall / (precision + recall) + return F1score + + def macro_getPrecison(y_true, y_pred): + col_TP = K.sum(y_true * K.round(y_pred), axis=0) + col_TN = K.sum((1 - y_true) * (1 - K.round(y_pred)), axis=0) + col_FP = K.sum((1 - y_true) * K.round(y_pred), axis=0) + col_FN = K.sum(y_true * (1 - K.round(y_pred)), axis=0) + precsion = K.mean(col_TP / (col_TP + col_FP + K.epsilon())) + return precsion + + def macro_getRecall(y_true, y_pred): + # print(y_true) + row_TP = K.sum(y_true * K.round(y_pred), axis=0) + row_TN = K.sum((1 - y_true) * (1 - K.round(y_pred)), axis=0) + row_FP = K.sum((1 - y_true) * K.round(y_pred), axis=0) + row_FN = K.sum(y_true * (1 - K.round(y_pred)), axis=0) + recall = K.mean(row_TP / (row_TP + row_FN + K.epsilon())) + return recall + + def macro_getF1score(y_true, y_pred): + precision = macro_getPrecison(y_true, y_pred) + recall = macro_getRecall(y_true, y_pred) + F1score = 2 * precision * recall / (precision + recall) + return F1score + + """ + C2AE损失函数: + custom_loss: + 返回模型最后一层target_loss的平方和,这里y_true是随机设的 + a_cross_loss: + 返回输出的二分类交叉熵 + """ + def custom_loss(y_true,y_pred): + return 1*tf.reduce_mean(tf.square(y_pred)) + + def a_cross_loss(y_true, y_pred): + cross_loss = tf.add(tf.log(1e-10 + y_pred) * y_true, tf.log(1e-10 + (1 - y_pred)) * (1 - y_true)) + cross_entropy_label = -1 * tf.reduce_mean(tf.reduce_sum(cross_loss, 1)) + return 0.1*cross_entropy_label + + self.keras_train_model.compile( + loss = {'target_index_3':a_cross_loss,'targets_loss':custom_loss}, + optimizer=optimizer, + metrics={'target_index_3':[exactMatch, micro_getPrecsion, micro_getRecall,micro_F1score,macro_getPrecison,macro_getRecall,macro_getF1score]} + ) + +if __name__ == "__main__": + config = Config(set_defaults=True, load_from_args=True, verify=False) + model = Code2VecModel(config) + model._create_keras_model() + diff --git a/be/PIPE/main.py b/be/PIPE/main.py new file mode 100644 index 0000000..15eee22 --- /dev/null +++ b/be/PIPE/main.py @@ -0,0 +1,250 @@ +import sys +sys.path.append('../') +from PIPE.config import Config +from PIPE.keras_model import Code2VecModel +# from data_process import Code2tags +import pandas as pd +import os +os_path = '/'.join(os.path.abspath(__file__).split('/')[:-1]) +# print(os_path) +import numpy as np +import tensorflow as tf +from tensorflow.keras.callbacks import TensorBoard + +class PIPEModel(): + def __init__(self): + self.config = Config() + self.model = Code2VecModel(self.config) + self.modelSaved_path = os_path + '/training' + self.base_path = os_path + "/codeData/" + self.parsed_code_path=os_path + '/predict/parsedCode/' + self.predict_code_path = os_path + '/predict/predictCode/' + self.outData_path = self.base_path + 'outData/' + +#################################模型训练################################################################# + def train(self, x_inputs,y_inputs): + self.model._create_keras_model() + self.model._comile_keras_model() + + cur_model = self.model.keras_train_model + modelSaved_path = os.path.join(self.modelSaved_path, 'C2AE_model') + + if not os.path.exists(modelSaved_path): + os.mkdir(modelSaved_path) + + # keras.utils.plot_model(cur_model, os.path.join(modelSaved_path, 'model.png'), show_shapes=True) + checkpoint_path = os.path.join(modelSaved_path, "cp-{epoch:04d}.ckpt") + + cp_callback = tf.keras.callbacks.ModelCheckpoint(filepath=checkpoint_path, verbose=1, + save_weights_only=True, + period=self.config.SAVE_EVERY_EPOCHS) + + cur_model.save_weights(checkpoint_path.format(epoch=0)) + + tensorboard = TensorBoard(log_dir=os.path.join(modelSaved_path, "logs")) + + history = cur_model.fit(x_inputs, y_inputs, + batch_size=self.config.TRAIN_BATCH_SIZE, + epochs=self.config.NUM_TRAIN_EPOCHS, callbacks=[cp_callback, tensorboard], + validation_split=1/4) + + print("History:") + print(history.history) + self.cur_model = cur_model + +###########################################加载模型############################################ + def load_savedModel(self): + self.model._create_keras_model() + self.model._comile_keras_model() + cur_model = self.model.keras_train_model + checkpoint_path = self.modelSaved_path + '/C2AE_model/cp-0015.ckpt' + cur_model.load_weights(checkpoint_path) + self.cur_model = cur_model + +######################################预测##################################################### + def predict(self, inputs): + if self.cur_model == None: + raise Exception("model not loaded") + return self.cur_model.predict(inputs) + + def evaluate(self, inputs, targets): + if self.cur_model == None: + raise Exception("model not loaded") + return self.cur_model.evaluate(inputs, targets) + + def get_hashed_table(self): + node_types_dict = {} + paths_dict = {} + tokens_dict = {} + node_types_path = os.path.join(self.outData_path, "node_types.csv") + paths_path = os.path.join(self.outData_path, "paths.csv") + tokens_path = os.path.join(self.outData_path, "tokens.csv") + file1 = pd.read_csv(node_types_path) + + def node_types2dict(row): + node_types_dict[row['node_type']] = row['id'] + + file1.apply(node_types2dict, axis=1) + file2 = pd.read_csv(paths_path) + + def paths2dict(row): + paths_dict[row['path']] = row['id'] + + file2.apply(paths2dict, axis=1) + file3 = pd.read_csv(tokens_path) + + def tokens2dict(row): + tokens_dict[row['token']] = row['id'] + + file3.apply(tokens2dict, axis=1) + + self.node_types_dict = node_types_dict + self.paths_dict = paths_dict + self.tokens_dict = tokens_dict + + +##############################################对代码文本进行预测############################################ + def predict_code(self, code=''): + self.get_hashed_table() + self.already_get_hashed_table = True + + code_name = "main.c" + code_path = os.path.join(self.predict_code_path, code_name) + + with open(code_path, 'w') as f: + f.write(code) + + cur_order = r'java -jar ' + os_path + r'/cli.jar pathContexts --lang c --project ' + self.predict_code_path + ' --output ' + self.parsed_code_path + \ + r' --maxH 8 --maxW 2 --maxContexts ' + str(self.config.MAX_CONTEXTS) + ' --maxTokens ' + str( + self.config.MAX_TOKEN_VOCAB_SIZE) + \ + ' --maxPaths ' + str(self.config.MAX_PATH_VOCAB_SIZE) + ret = os.system(cur_order) + assert ret == 0 + + node_types_path = os.path.join(self.parsed_code_path, "node_types.csv") + paths_path = os.path.join(self.parsed_code_path, "paths.csv") + tokens_path = os.path.join(self.parsed_code_path, "tokens.csv") + code_path = os.path.join(self.parsed_code_path, "path_contexts_0.csv") + + file1 = pd.read_csv(node_types_path) + file2 = pd.read_csv(paths_path) + file3 = pd.read_csv(tokens_path) + + temp_node_types_dict = {} + temp_paths_dict = {} + temp_tokens_dict = {} + + def node_types2dict(row): + temp_node_types_dict[row['id']] = row['node_type'] + + file1.apply(node_types2dict, axis=1) + + def paths2dict(row): + temp_paths_dict[row['id']] = row['path'] + + file2.apply(paths2dict, axis=1) + + def tokens2dict(row): + temp_tokens_dict[row['id']] = row['token'] + + file3.apply(tokens2dict, axis=1) + + source_input = [] + path_input = [] + target_input = [] + context_valid_input = [] + + file4 = open(code_path, "r") + code = file4.readline().split(' ')[1:] + cnt = 0 + + for path in code: + temp_source, temp_path, temp_target = map(int, path.split(',')) + try: + real_source = self.tokens_dict[temp_tokens_dict[temp_source]] + real_target = self.tokens_dict[temp_tokens_dict[temp_target]] + real_path = self.paths_dict[' '.join(list(map(lambda x: str(self.node_types_dict[x]), + list(map(lambda x: temp_node_types_dict[int(x)], + temp_paths_dict[temp_path].split(' '))))))] + context_valid_input.append(1) + except: + # if the path cannot map into the vocabulary due to dataset reason or unknown cli.jar technical stargety + # I currently choose to set value to zero to delete the path + real_path = 0 + context_valid_input.append(0) + real_source = 0 + real_target = 0 + + source_input.append(real_source) + path_input.append(real_path) + target_input.append(real_target) + cnt = cnt + 1 + + file4.close() + + source_input = [np.pad(source_input, (0, self.config.MAX_CONTEXTS - cnt), 'constant', constant_values=(0, 0))] + path_input = [np.pad(path_input, (0, self.config.MAX_CONTEXTS - cnt), 'constant', constant_values=(0, 0))] + target_input = [np.pad(target_input, (0, self.config.MAX_CONTEXTS - cnt), 'constant', constant_values=(0, 0))] + context_valid_input = [ + np.pad(context_valid_input, (0, self.config.MAX_CONTEXTS - cnt), 'constant', constant_values=(0, 0))] + + lab = [np.array([0] * 10)] + inputs = (source_input, path_input, target_input, context_valid_input, lab) + + index2str = ['输入变量错误', '无输出', '输出格式错误', '初始化错误','数据类型错误', + '数据精度错误', '循环错误',"分支错误","逻辑错误","运算符错误"] + + result = self.predict(inputs) + results = result[0][0].tolist() + final="" + dict = {} + for i in range(self.config.categories): + dict[index2str[i]]=results[i] + #降序输出结果 + sorted_prob=sorted(dict.items(),key=lambda kv:(kv[1], kv[0]),reverse=True) + for x in sorted_prob: + final=final+str(x[0])+':'+str("%.2f%%" % (x[1] * 100))+'\n' + # print(final) + return final + + +# if __name__ == '__main__': + + ######################训练模型##################################################### + # data=Code2tags() + # train_inputs=np.load(data.sourceData_path+"train_inputs.npy",allow_pickle=True).tolist() + # test_inputs=np.load(data.sourceData_path+"test_inputs.npy",allow_pickle=True).tolist() + # + # x_train=train_inputs[:-2] + # y_train=train_inputs[-2:] + # + # model=PIPEModel() + # model.train(x_train,y_train) + # # modelSaved_path = os.path.join(model.modelSaved_path,"C2AE_model") + # # model.load_savedModel(os.path.join(modelSaved_path,"cp-0080.ckpt")) + # answer = model.evaluate(test_inputs[:-2],test_inputs[-2:]) + # print(answer) + + + #######################对代码进行预测############################################ + # model=PIPEModel() + # modelSaved_path = os.path.join(model.modelSaved_path,"C2AE_model") + # model.load_savedModel(os.path.join(modelSaved_path,"cp-0015.ckpt")) + + #############################传入code文本######################################## + # code_text=open("./predict/predictCode/code.txt","r").read() + # code_text = '' + # include + # + # int + # main() + # { + # return 0; + # } + # answer = model.predict_code(code=code_text) + # answer = model.predict_code() + # print(answer) + + + + diff --git a/be/PIPE/predict/parsedCode/node_types.csv b/be/PIPE/predict/parsedCode/node_types.csv new file mode 100644 index 0000000..d120a7d --- /dev/null +++ b/be/PIPE/predict/parsedCode/node_types.csv @@ -0,0 +1,10 @@ +id,node_type +2,METHOD_RETURN UP +3,METHOD UP +4,METHOD DOWN +5,NAME DOWN +9,NAME UP +7,RETURN DOWN +6,BLOCK DOWN +8,LITERAL DOWN +1,TYPE_FULL_NAME UP diff --git a/be/PIPE/predict/parsedCode/path_contexts_0.csv b/be/PIPE/predict/parsedCode/path_contexts_0.csv new file mode 100644 index 0000000..bb159ec --- /dev/null +++ b/be/PIPE/predict/parsedCode/path_contexts_0.csv @@ -0,0 +1 @@ +/home/liyuxin/桌面/shuishan/be/PIPE/predict/predictCode/main.c 1,1,2 1,2,3 2,3,3 diff --git a/be/PIPE/predict/parsedCode/paths.csv b/be/PIPE/predict/parsedCode/paths.csv new file mode 100644 index 0000000..3e2003d --- /dev/null +++ b/be/PIPE/predict/parsedCode/paths.csv @@ -0,0 +1,4 @@ +id,path +3,9 3 4 6 7 8 +1,1 2 3 4 5 +2,1 2 3 4 6 7 8 diff --git a/be/PIPE/predict/parsedCode/tokens.csv b/be/PIPE/predict/parsedCode/tokens.csv new file mode 100644 index 0000000..2bbea56 --- /dev/null +++ b/be/PIPE/predict/parsedCode/tokens.csv @@ -0,0 +1,4 @@ +id,token +3,0 +2,main +1,int diff --git a/be/PIPE/predict/predictCode/code.txt b/be/PIPE/predict/predictCode/code.txt new file mode 100644 index 0000000..34d581d --- /dev/null +++ b/be/PIPE/predict/predictCode/code.txt @@ -0,0 +1,16 @@ +#include + +int main() +{ + int a,b,c,d; + float sum=0,ave; + + printf("input 4 int data:\n"); + scanf("%d %d %d %d", &a, &b, &c, &d); + + sum=a+b+c+d; + ave=((int)(sum / 4.0*10))/10.0; + + printf("sum=%d mean=%.1f\n",sum,ave); + return 0; +} \ No newline at end of file diff --git a/be/PIPE/predict/predictCode/main.c b/be/PIPE/predict/predictCode/main.c new file mode 100644 index 0000000..eca0b07 --- /dev/null +++ b/be/PIPE/predict/predictCode/main.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + return 0; +} + diff --git a/be/PIPE/training/C2AE_model/checkpoint b/be/PIPE/training/C2AE_model/checkpoint new file mode 100644 index 0000000..869def7 --- /dev/null +++ b/be/PIPE/training/C2AE_model/checkpoint @@ -0,0 +1,2 @@ +model_checkpoint_path: "cp-0100.ckpt" +all_model_checkpoint_paths: "cp-0100.ckpt" diff --git a/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00000-of-00002 b/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00000-of-00002 new file mode 100644 index 0000000..f924b5a Binary files /dev/null and b/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00000-of-00002 differ diff --git a/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00001-of-00002 b/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00001-of-00002 new file mode 100644 index 0000000..e2d1547 Binary files /dev/null and b/be/PIPE/training/C2AE_model/cp-0015.ckpt.data-00001-of-00002 differ diff --git a/be/PIPE/training/C2AE_model/cp-0015.ckpt.index b/be/PIPE/training/C2AE_model/cp-0015.ckpt.index new file mode 100644 index 0000000..0d119e7 Binary files /dev/null and b/be/PIPE/training/C2AE_model/cp-0015.ckpt.index differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181419.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181419.DESKTOP-OLOC5RT new file mode 100644 index 0000000..dc72051 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181419.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181420.DESKTOP-OLOC5RT.profile-empty b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181420.DESKTOP-OLOC5RT.profile-empty new file mode 100644 index 0000000..d22df48 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181420.DESKTOP-OLOC5RT.profile-empty differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181878.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181878.DESKTOP-OLOC5RT new file mode 100644 index 0000000..0dfe911 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610181878.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610182337.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610182337.DESKTOP-OLOC5RT new file mode 100644 index 0000000..e90c6d0 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610182337.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610183828.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610183828.DESKTOP-OLOC5RT new file mode 100644 index 0000000..7e0e0c0 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610183828.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610186088.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610186088.DESKTOP-OLOC5RT new file mode 100644 index 0000000..ac4232f Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610186088.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610189170.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610189170.DESKTOP-OLOC5RT new file mode 100644 index 0000000..dc7b7c0 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610189170.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190525.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190525.DESKTOP-OLOC5RT new file mode 100644 index 0000000..70107ae Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190525.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190559.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190559.DESKTOP-OLOC5RT new file mode 100644 index 0000000..5740316 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610190559.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192123.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192123.DESKTOP-OLOC5RT new file mode 100644 index 0000000..a52911f Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192123.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192161.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192161.DESKTOP-OLOC5RT new file mode 100644 index 0000000..c5d9ad5 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192161.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192346.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192346.DESKTOP-OLOC5RT new file mode 100644 index 0000000..7d57314 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610192346.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610199536.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610199536.DESKTOP-OLOC5RT new file mode 100644 index 0000000..0b5f759 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610199536.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200686.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200686.DESKTOP-OLOC5RT new file mode 100644 index 0000000..7b798bc Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200686.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200790.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200790.DESKTOP-OLOC5RT new file mode 100644 index 0000000..14d56ff Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610200790.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201230.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201230.DESKTOP-OLOC5RT new file mode 100644 index 0000000..6675918 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201230.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201580.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201580.DESKTOP-OLOC5RT new file mode 100644 index 0000000..f77d639 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201580.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201659.DESKTOP-OLOC5RT b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201659.DESKTOP-OLOC5RT new file mode 100644 index 0000000..6852020 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610201659.DESKTOP-OLOC5RT differ diff --git a/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610208509.DESKTOP-2S98JVP b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610208509.DESKTOP-2S98JVP new file mode 100644 index 0000000..bf787b9 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/events.out.tfevents.1610208509.DESKTOP-2S98JVP differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-37-00/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-37-00/local.trace new file mode 100644 index 0000000..b2d3bb1 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-37-00/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-44-40/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-44-40/local.trace new file mode 100644 index 0000000..0f4a1a8 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-44-40/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-52-18/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-52-18/local.trace new file mode 100644 index 0000000..c517182 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_16-52-18/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-17-09/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-17-09/local.trace new file mode 100644 index 0000000..dcc41d7 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-17-09/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-54-49/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-54-49/local.trace new file mode 100644 index 0000000..61eaa1e Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_17-54-49/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_18-46-12/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_18-46-12/local.trace new file mode 100644 index 0000000..e7fc43d Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_18-46-12/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-08-46/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-08-46/local.trace new file mode 100644 index 0000000..9e229ec Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-08-46/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-09-20/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-09-20/local.trace new file mode 100644 index 0000000..57f2a4b Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-09-20/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-35-25/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-35-25/local.trace new file mode 100644 index 0000000..fcf67ed Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-35-25/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-36-02/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-36-02/local.trace new file mode 100644 index 0000000..4073b6d Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-36-02/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-39-08/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-39-08/local.trace new file mode 100644 index 0000000..84113c8 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_19-39-08/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-38-57/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-38-57/local.trace new file mode 100644 index 0000000..616487f Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-38-57/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-58-08/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-58-08/local.trace new file mode 100644 index 0000000..4c388c5 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-58-08/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-59-51/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-59-51/local.trace new file mode 100644 index 0000000..49834c7 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_21-59-51/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-07-12/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-07-12/local.trace new file mode 100644 index 0000000..77fc682 Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-07-12/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-13-02/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-13-02/local.trace new file mode 100644 index 0000000..913a49f Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-13-02/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-14-20/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-14-20/local.trace new file mode 100644 index 0000000..a4dcb4e Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-09_22-14-20/local.trace differ diff --git a/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-10_00-08-30/local.trace b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-10_00-08-30/local.trace new file mode 100644 index 0000000..c6ce40c Binary files /dev/null and b/be/PIPE/training/C2AE_model/logs/plugins/profile/2021-01-10_00-08-30/local.trace differ diff --git a/be/SQL/create_user.sql b/be/SQL/create_user.sql new file mode 100644 index 0000000..411481f --- /dev/null +++ b/be/SQL/create_user.sql @@ -0,0 +1,3 @@ +create user 'shuishan'@'%' identified with mysql_native_password by 'Shuishan@2020'; + +grant all on *.* to 'shuishan'@'%' with grant option; diff --git a/be/SQL/problem.sql b/be/SQL/problem.sql new file mode 100644 index 0000000..d3f5650 --- /dev/null +++ b/be/SQL/problem.sql @@ -0,0 +1,592 @@ +drop database if exists shuishan; + +create database shuishan; + +CREATE TABLE shuishan.problem ( + id integer NOT NULL primary key, + title text NOT NULL, + description longtext NOT NULL, + input_description longtext NOT NULL, + output_description longtext NOT NULL, + samples longtext NOT NULL, + test_case_id longtext NOT NULL, + test_case_score longtext NOT NULL, + hint longtext, + languages text NOT NULL, + template text NOT NULL, + create_time timestamp default now() NOT NULL, + last_update_time timestamp default now(), + time_limit integer NOT NULL, + memory_limit integer NOT NULL, + spj boolean NOT NULL, + spj_language text, + spj_code text, + spj_version text, + rule_type text NOT NULL, + visible boolean NOT NULL, + difficulty text NOT NULL, + source text, + submission_number bigint NOT NULL, + accepted_number bigint NOT NULL, + created_by_id integer NOT NULL, + _id text NOT NULL, + statistic_info longtext NOT NULL, + total_score integer NOT NULL, + contest_id integer, + is_public boolean NOT NULL, + spj_compile_ok boolean NOT NULL, + io_mode text NOT NULL, + share_submission boolean NOT NULL +); + +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (90, '连连看', '

小华在业余时间很喜欢玩连连看,现在他很想开发一个自动判别两个格子能不能消去的程序,但又毫无头绪,所以希望你能帮助他。

“连连看”的游戏规则:在一个棋盘中,放了很多的棋子。如果某两个相同的棋子,可以通过一条线连起来(这条线不能经过其它棋子,且不能从棋盘外围通过),而且线的转折次数不超过两次,那么这两个棋子就可以在棋盘上消去。

玩家鼠标先后点击两块棋子,试图将他们消去,然后游戏的后台判断这两个格子能不能消去。现在你的任务就是帮助小华写出这个后台程序。

', '

输入数据有多组。每组数据的第一行有两个正整数n,m(0<n<=1000,0<m<1000),分别表示棋盘的行数与列数。在接下来的n行中,每行有m个非负整数描述棋盘的方格分布。0表示这个位置没有棋子,正整数表示棋子的类型。

接下来的一行是一个正整数q(0<q<10),表示下面有q次询问。在接下来的q行里,每行有四个正整数x1,y1,x2,y2,表示询问第x1行y1列的棋子与第x2行y2列的棋子能不能消去。

n=0,m=0时,输入结束。


注意:询问之间无先后关系,互不影响,都是针对当前状态的!

', '

每一组输入数据对应一行输出。如果能消去则输出"YES",不能则输出"NO"。

', '[{"input": "3 4\n1 2 3 4\n0 0 0 0\n4 3 2 1\n4\n1 1 3 4\n1 1 2 4\n1 1 3 3\n2 1 2 4\n", "output": "YES\nNO\nNO\nNO\n"}, {"input": "3 4\n0 1 4 3\n0 2 4 1\n0 0 0 0\n2\n1 1 2 4\n1 3 2 3\n0 0\n", "output": "NO\nYES\n"}]', '104a37b058219b42fe1dab360c494f74', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

注意:c/c++如要使用INT_MAX,需加头文件limits.h或者climits

', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 15, 0, 1, 8, '{"-1": 13, "-2": 2}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (77, '升序排序', '

有x,y,z三个数,将三个数从小到大print出来

', '

输入三个整数,依次用空格隔开

', '

升序输出排序后的大小

', '[{"input": "4 5 3", "output": "[3, 4, 5]"}]', '112bdba6b3cb710a7e0ad2533ac67783', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

请使用python语言解题

', '["Python3", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-11', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (75, '升序排序', '

有x,y,z三个数,将三个数从小到大print出来

', '

输入三个整数,依次用空格隔开

', '

升序输出排序后的大小

', '[{"input": "4 5 3", "output": "[3, 4, 5]"}]', '112bdba6b3cb710a7e0ad2533ac67783', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

请使用python语言解题

', '["Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 84, 20, 1, '1-51', '{"0": 20, "4": 24, "-1": 14, "-2": 26}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (461, '成绩排名 (15分)', '

C语言考试成绩信息的每条记录包含,考试学号,考试姓名,考试成绩(0~100)。

请根据所有考试信息,构造考试记录结构体。同时找出成绩最高的同学(们)的姓名 以及成绩最低同学(们)的学号。

', '

第一行为整数n,n < 100;

之后有n行,每行的信息为

学号 姓名 分数

其中 学号、姓名字段大小不超过16个字节。分数为0到100的整数。

', '

输出两行,第一行为成绩最高同学的姓名。第二行为成绩最低同学的学号。

如果出现同分情况,需要输出所有同分同学对应的信息,并以空格隔开,且输出顺序依照输入时的顺序。

注意,每行行末不能有空格。第二行(即最后一行)末尾不能有换行符。

', '[{"input": "3\nid1 stu1 100\nid68 stu213 50\nid2 stu2 25", "output": "stu1\nid2"}, {"input": "4\nid1 stu3 100\nid68 stu213 50\nid2 stu2 25\nid3 stu1 100", "output": "stu3 stu1\nid2"}]', '1229fbe5235a4f883a5965543b597b50', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

请务必使用结构体

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 5, 4, 1, 4, '{"0": 4, "-1": 1}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (495, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', '1291110cceeef1f72ab80c58b3cebe8e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 66, 15, 1, 6, '{"0": 15, "4": 1, "-1": 48, "-2": 2}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (490, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', '1291110cceeef1f72ab80c58b3cebe8e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-6', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (470, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', '1291110cceeef1f72ab80c58b3cebe8e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 497, 28, 1, 6, '{"0": 28, "1": 1, "4": 40, "-1": 376, "-2": 52}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (15, '回形取数', '

回形取数就是沿矩阵的边取数,若当前方向上无数可取或已经取过,则左转90度。一开始位于矩阵左上角,方向向下。

', '

输入第一行是两个不超过200的正整数m, n,表示矩阵的行和列。接下来m行每行n个整数,表示这个矩阵。

', '

输出只有一行,共mn个数,为输入矩阵回形取数得到的结果。数之间用一个空格分隔,行末不要有多余的空格。

', '[{"input": "3 3\n1 2 3\n4 5 6\n7 8 9\n", "output": "1 4 7 8 9 6 3 2 5"}, {"input": "3 2\n1 2\n3 4\n5 6\n", "output": "1 3 5 6 4 2"}]', '12af7f0de5cc7e730d4779a49a8c1247', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 368, 105, 1, '1-10', '{"0": 105, "1": 39, "2": 7, "4": 43, "-1": 107, "-2": 51}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (65, '回形取数', '

回形取数就是沿矩阵的边取数,若当前方向上无数可取或已经取过,则左转90度。一开始位于矩阵左上角,方向向下。

', '

 输入第一行是两个不超过200的正整数m, n,表示矩阵的行和列。接下来m行每行n个整数,表示这个矩阵。

', '

 输出只有一行,共mn个数,为输入矩阵回形取数得到的结果。数之间用一个空格分隔,行末不要有多余的空格。

', '[{"input": "3 3\n1 2 3\n4 5 6\n7 8 9\n", "output": "1 4 7 8 9 6 3 2 5"}, {"input": "3 2\n1 2\n3 4\n5 6\n", "output": "1 3 5 6 4 2"}]', '12af7f0de5cc7e730d4779a49a8c1247', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-4', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (431, '合并两个有序链表', '

将两个有序的存有大写字母的链表进行合并,保证合并后的链表依然有序并去重,仅保留不重复的字母结点。

', '

n和m,分别代表两个待合并链表的长度;

n个大写字母,中间用空格隔开,代表第一个待合并链表;

m个大写字母,中间用空格隔开,代表第二个待合并链表。

', '

输出按要求合并后的链表,末尾不得有空格。

', '[{"input": "3 3\nA B D\nA C D", "output": "A B C D"}]', '12bac3fcef9218d6acf9a05825410147', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 68, 18, 511, 1, '{"0": 18, "1": 1, "4": 10, "-1": 30, "-2": 9}', 0, 44, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (416, 'MergeSort', '

对下列数字进行归并排序

', '

输入为两行;

第一行为n,表示需要排序的元素的个数;

第二行为需要排序的元素,中间用空格隔开。

', '

输出排好序的数字序列;

两个元素之间用空格隔开;

行末不得有空格。

', '[{"input": "9\n85 96 78 35 125 63 25 13 101", "output": "13 25 35 63 78 85 96 101 125"}]', '138f10c8ab3bc12845960a0c0c083e3f', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 52, 27, 511, 1, '{"0": 27, "4": 1, "-1": 11, "-2": 13}', 0, 42, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (16, '回文数字', '

观察数字:12321,123321 都有一个共同的特征,无论从左到右读还是从右向左读,都是相同的。这样的数字叫做:回文数字。

本题要求你找到一些5位或6位的十进制数字。满足如下要求:

该数字的各个数位之和等于输入的整数。

', '

一个正整数 n (10<n<100), 表示要求满足的数位和。

', '

若干行,每行包含一个满足要求的5位或6位整数。

数字按从小到大的顺序排列。

如果没有满足条件的,输出:-1

', '[{"input": "44\n", "output": "99899
\n499994
\n589985
\n598895\n
679976
\n688886\n
697796\n
769967
\n778877
\n787787\n
796697\n
859958\n
868868\n
877778\n
886688\n
895598\n949949
\n958859
\n967769
\n976679
\n985589
\n994499\n\n"}, {"input": "60\n", "output": "-1\n"}]', '148350bd866dc6e4636d0c02654053a6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 236, 105, 1, '1-36', '{"0": 105, "1": 4, "4": 5, "-1": 84, "-2": 38}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (66, '回文数字', '

观察数字:12321,123321 都有一个共同的特征,无论从左到右读还是从右向左读,都是相同的。这样的数字叫做:回文数字。

  

本题要求你找到一些5位或6位的十进制数字。满足如下要求:
  

该数字的各个数位之和等于输入的整数。

', '

一个正整数 n (10<n<100), 表示要求满足的数位和。

', '

若干行,每行包含一个满足要求的5位或6位整数。
  

数字按从小到大的顺序排列。
  

如果没有满足条件的,输出:-1

', '[{"input": "44\n", "output": "99899
\n499994
\n589985
\n598895\n
679976
\n688886\n
697796\n
769967
\n778877
\n787787\n
796697\n
859958\n
868868\n
877778\n
886688\n
895598\n949949
\n958859
\n967769
\n976679
\n985589
\n994499\n\n"}, {"input": "60\n", "output": "-1\n"}]', '148350bd866dc6e4636d0c02654053a6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 36, 10, 1, '1-5', '{"0": 10, "1": 5, "4": 11, "-1": 8, "-2": 2}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (56, '回文数字', '

观察数字:12321,123321 都有一个共同的特征,无论从左到右读还是从右向左读,都是相同的。这样的数字叫做:回文数字。

  

本题要求你找到一些5位或6位的十进制数字。满足如下要求:
  

该数字的各个数位之和等于输入的整数。

', '

一个正整数 n (10<n<100), 表示要求满足的数位和。

', '

若干行,每行包含一个满足要求的5位或6位整数。
  

数字按从小到大的顺序排列。
  

如果没有满足条件的,输出:-1

', '[{"input": "44\n", "output": "99899
\n499994
\n589985
\n598895\n
679976
\n688886\n
697796\n
769967
\n778877
\n787787\n
796697\n
859958\n
868868\n
877778\n
886688\n
895598\n949949
\n958859
\n967769
\n976679
\n985589
\n994499\n\n"}, {"input": "60\n", "output": "-1\n"}]', '148350bd866dc6e4636d0c02654053a6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 1, 1, 1, 2, '{"0": 1}', 0, 6, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (237, '猴子吃桃问题', '

一只猴子第一天摘下若干个桃子,当即吃了一半,还不过瘾,多吃了一个;第二天早上又将剩下桃子吃掉一半,又多吃了一个。以后每天早上都是了前一天剩下的一半加一个。到第n天早上想再吃时就只剩下一个桃子了。问:第一天一共摘了多少个桃子?试编写相应程序(提示:采取逆向思维的方法,从后往前判断)

', '

输入正整数n,表示第n天。

', '

输出桃子个数。

', '[{"input": "10", "output": "1534"}]', '15a6cd52457a3ba0927f4be90a0b856f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 27, 25, 358, '1-105', '{"0": 25, "-1": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (215, '猴子吃桃问题', '

一只猴子第一天摘下若干个桃子,当即吃了一半,还不过瘾,多吃了一个;第二天早上又将剩下桃子吃掉一半,又多吃了一个。以后每天早上都是了前一天剩下的一半加一个。到第n天早上想再吃时就只剩下一个桃子了。问:第一天一共摘了多少个桃子?试编写相应程序(提示:采取逆向思维的方法,从后往前判断)

', '

输入正整数n,表示第n天。

', '

输出桃子个数。

', '[{"input": "10", "output": "1534"}]', '15a6cd52457a3ba0927f4be90a0b856f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 152, 102, 358, '4-10', '{"0": 102, "-1": 39, "-2": 11}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (148, '引爆炸弹', '

给定一个n*m大小的矩阵,矩阵中每个值分别为0、1、2中的一个数。数的含义如下:0表示是一块空地;1表示炸弹,炸弹引爆时会将炸弹所在行、所在列都波及,炸弹引爆会产生连锁反应;2表示墙,会阻挡炸弹在该点及之后方向上的波及。每次引爆1个炸弹付出的代价为1,试求出使得矩阵中所有炸弹都被引爆所需要的最小代价。

', '

第一行输入两个整数n和m(n*m<=10)。

接下来n行每行m个整数,每个整数的取值为0或1或2,整数之间以空格分隔。

', '

一行一个整数表示最小的代价。

', '[{"input": "3 3\n0 1 1\n2 2 2\n1 1 0\n", "output": "2\n"}]', '15af5ceb3c7367aaa3f1f24b512d9f36', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 1, 1, 7, '{"0": 1, "1": 2, "4": 1}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (156, '引爆炸弹', '

给定一个n*m大小的矩阵,矩阵中每个值分别为0、1、2中的一个数。数的含义如下:0表示是一块空地;1表示炸弹,炸弹引爆时会将炸弹所在行、所在列都波及,炸弹引爆会产生连锁反应;2表示墙,会阻挡炸弹在该点及之后方向上的波及。每次引爆1个炸弹付出的代价为1,试求出使得矩阵中所有炸弹都被引爆所需要的最小代价。

', '

第一行输入两个整数n和m(n*m<=10)。

接下来n行每行m个整数,每个整数的取值为0或1或2,整数之间以空格分隔。

', '

一行一个整数表示最小的代价。

', '[{"input": "3 3\n0 1 1\n2 2 2\n1 1 0\n", "output": "2\n"}]', '15af5ceb3c7367aaa3f1f24b512d9f36', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 18, 7, 1, '1-71', '{"0": 7, "1": 2, "-1": 6, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (259, 'Bomb exploded', '

给定一个n*m大小的矩阵,矩阵中每个值分别为0、1、2中的一个数。数的含义如下:0表示是一块空地;1表示炸弹,炸弹引爆时会将炸弹所在行、所在列都波及,炸弹引爆会产生连锁反应;2表示墙,会阻挡炸弹在该点及之后方向上的波及。每次引爆1个炸弹付出的代价为1,试求出使得矩阵中所有炸弹都被引爆所需要的最小代价。

', '

第一行输入两个整数n和m(n*m<=10)。

接下来n行每行m个整数,每个整数的取值为0或1或2,整数之间以空格分隔。

', '

一行一个整数表示最小的代价。

', '[{"input": "3 3\n0 1 1\n2 2 2\n1 1 0\n", "output": "2\n"}]', '15af5ceb3c7367aaa3f1f24b512d9f36', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 37, 5, 1, 'F', '{"0": 5, "1": 1, "4": 7, "-1": 16, "-2": 8}', 0, 25, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (121, '消消乐', '

小明在玩一款新的消消乐游戏,游戏描述如下:

给定一个n*m的矩阵作为游戏棋盘,棋盘为四连通,棋盘上共有2种字符:

  • ‘c’: 表示该点可以连通
  • ‘x’: 表示该点为障碍点

游戏获得奖励有两种规则:

规则一:对于棋盘中的一点,若字符为‘c’,可以选择消去该点并获得奖励p;

规则二:对于棋盘上相邻的两点(即两点为上下或左右相邻),若字符都为‘c’,则可以选择消去这两点并获得奖励q。

现在给定n*m大小的棋盘和两种奖励p和q,求最优方案下你能获得的最大奖励。

', '

第一行给定四个整数:$n,m,p,q(n,m \geq 1,n*m \leq 10,1 \leq p,q \leq 1e6)$

接下来n行,每行长度为m的字符串,表示棋盘,棋盘只有两种字符$'c','x'$。

', '

一个整数表示你能获得的最大奖励。

', '[{"input": "2 2 5 9\ncc\ncc", "output": "20"}, {"input": "1 4 5 11\ncccx", "output": "16"}]', '181ab5801a45c5d4bb6df31fccbcbbac', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '

样例一所有字符按规则一消去能够获得20的最大奖励。样例二对任意两个相邻字符按规则二,剩下的字符按规则一,可以获得16的最大奖励。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 16, 3, 1, 'I', '{"0": 3, "-1": 13}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (242, '使用函数求素数和', '

本题要求实现一个判断素数的简单函数、以及利用该函数计算给定区间内素数和的函数。

素数就是只能被1和自身整除的正整数。注意:1不是素数,2是素数。

函数接口定义:

int prime( int p );

int PrimeSum( int m, int n );

其中函数prime当用户传入参数p为素数时返回1,否则返回0;函数PrimeSum返回区间[m,n]内所有素数的和。题目保证用户传入的参数m≤n。

', '

两个整数m和n。(m <= n)

', '

一个整数表示答案。

', '[{"input": "-1 10", "output": "17"}]', '186d49016e5ea2dde7e1ab7c5dbecf28', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 42, 22, 1, '1-110', '{"0": 22, "-1": 16, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (199, '使用函数求素数和', '

本题要求实现一个判断素数的简单函数、以及利用该函数计算给定区间内素数和的函数。

素数就是只能被1和自身整除的正整数。注意:1不是素数,2是素数。

函数接口定义:

int prime( int p );

int PrimeSum( int m, int n );

其中函数prime当用户传入参数p为素数时返回1,否则返回0;函数PrimeSum返回区间[m,n]内所有素数的和。题目保证用户传入的参数m≤n。

', '

两个整数m和n。(m <= n)

', '

一个整数表示答案。

', '[{"input": "-1 10", "output": "17"}]', '186d49016e5ea2dde7e1ab7c5dbecf28', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 178, 98, 1, '5-4', '{"0": 98, "1": 3, "4": 1, "-1": 60, "-2": 16}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (238, '兔子繁衍问题', '

一对兔子,从出生后第三个月起每个月都生一对兔子。小兔子长到第3个月后每个月又生一对兔子。假如兔子都不死,请问第一个月出生的一对兔子,至少需要繁衍到第几个月时兔子总数才可以达到n对?输入一个不超过10000的正整数n,输出兔子总数达到n最少需要的月数。试编写相应程序。

', '

输入比较的整数对n

', '

输入达到 n 最少需要的月数。

', '[{"input": "5", "output": "5"}]', '18c8434c79da2df4e908488576cf63b0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 67, 31, 358, '1-106', '{"0": 31, "4": 2, "-1": 34}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (216, '兔子繁衍问题', '

一对兔子,从出生后第三个月起每个月都生一对兔子。小兔子长到第3个月后每个月又生一对兔子。假如兔子都不死,请问第一个月出生的一对兔子,至少需要繁衍到第几个月时兔子总数才可以达到n对?输入一个不超过10000的正整数n,输出兔子总数达到n最少需要的月数。试编写相应程序。

', '

输入比较的整数对n

', '

输入达到 n 最少需要的月数。

', '[{"input": "5", "output": "5"}]', '18c8434c79da2df4e908488576cf63b0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 370, 98, 358, '4-11', '{"0": 98, "1": 24, "4": 3, "-1": 198, "-2": 47}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (35, '大臣的旅费', '

很久以前,T王国空前繁荣。为了更好地管理国家,王国修建了大量的快速路,用于连接首都和王国内的各大城市。

为节省经费,T国的大臣们经过思考,制定了一套优秀的修建方案,使得任何一个大城市都能从首都直接或者通过其他大城市间接到达。同时,如果不重复经过大城市,从首都到达每个大城市的方案都是唯一的。

J是T国重要大臣,他巡查于各大城市之间,体察民情。所以,从一个城市马不停蹄地到另一个城市成了J最常做的事情。他有一个钱袋,用于存放往来城市间的路费。

聪明的J发现,如果不在某个城市停下来修整,在连续行进过程中,他所花的路费与他已走过的距离有关,在走第x千米到第x+1千米这一千米中(x是整数),他花费的路费是x+10这么多。也就是说走1千米花费11,走2千米要花费23。

J大臣想知道:他从某一个城市出发,中间不休息,到达另一个城市,所有可能花费的路费中最多是多少呢?

', '

输入的第一行包含一个整数n,表示包括首都在内的T王国的城市数

城市从1开始依次编号,1号城市为首都。

接下来n-1行,描述T国的高速路(T国的高速路一定是n-1条)

每行三个整数Pi, Qi, Di,表示城市Pi和城市Qi之间有一条高速路,长度为Di千米。

', '

输出一个整数,表示大臣J最多花费的路费是多少。

', '[{"input": "5\n1 2 2\n1 3 1\n2 4 5\n2 5 4", "output": "135"}]', '1a1789863f63e8a19ab60721b2568e1c', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

输出提示

大臣J从城市4到城市5要花费135的路费。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 60, 12, 1, '1-24', '{"0": 12, "1": 7, "3": 1, "4": 20, "-1": 10, "-2": 10}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (100, '判断可达性', '

有N行M列的地图,左上角坐标为(1,1),右下角坐标为(n,m),每个格子可以是空地或墙,空地可以走,问能否从(1,1)到达(n,m)

', '

输入n,m,代表地图的大小1<=n,m<=10接下来有n行,每行m个数用0或1表示,1表示为墙,0代表空地。起点和终点必为空地。

', '

能到达(n,m)输出YES,否则输出NO。

', '[{"input": "2 3\n0 0 1\n1 0 0", "output": "YES"}]', '1ad8f2001b4eced8507a33b4e6a426ae', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 18, 3, 1, 'D', '{"0": 3, "4": 5, "-1": 5, "-2": 5}', 0, 10, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (98, '城市连通', '

有n个城市(编号为1-n),现在给你m条边,每条边用u,v表示,代表城市u和城市v之间有公路直接连接。现在有q个询问,每个询问有a,b两个数,问你a城市和b城市是否直接连通。

', '

第一行输入n,m。n代表城市个数,m代表公路个数,接下来有m行,每行两个数u,v,代表城市u,v之间有公路,接下来一行输入q,代表有q次询问,接下来q行,每行输入a,b,代表要查询的城市。1<=n,u,v,a,b<=1000

', '

对于每次询问,输出YES代表两个城市直接连通(不通过任何中间城市),NO代表两个城市不直接连通。

', '[{"input": "2 1\n1 2\n1\n2 1", "output": "YES"}]', '1bb509968c908196a70b149fe858fabb', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

自身到自身默认可达。

', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 68, 8, 1, 'B', '{"0": 8, "4": 11, "-1": 40, "-2": 9}', 0, 10, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (285, '找鞍点', '

输入1个整数n1<=n<=6)和n阶方阵a中的元素,假设方阵a最多有1个鞍点,如果找到a的鞍点,就输出其下标,否则,输出“NO”。鞍点的元素值在该行上最大,该列上最小,试编写相应程序。

', '

输入1个整数n1<=n<=6)和n阶方阵a中的元素,元素为整数形式

', '

如果找到a的鞍点,就输出其下标,否则,输出“NO”.

', '[{"input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "0 2"}]', '1c1e8758fd4057a0e88b0a55c1c9dc87', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

鞍点的元素值在该行上最大,该列上最小,试编写相应程序。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 373, 98, 358, '7-5', '{"0": 98, "1": 12, "4": 7, "-1": 228, "-2": 28}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (26, '芯片测试', '

有n(2≤n≤20)块芯片,有好有坏,已知好芯片比坏芯片多。

每个芯片都能用来测试其他芯片。用好芯片测试其他芯片时,能正确给出被测试芯片是好还是坏。而用坏芯片测试其他芯片时,会随机给出好或是坏的测试结果(即此结果与被测试芯片实际的好坏无关)。

给出所有芯片的测试结果,问哪些芯片是好芯片。

', '

输入数据第一行为一个整数n,表示芯片个数。

第二行到第n+1行为n*n的一张表,每行n个数据。表中的每个数据为0或1,在这n行中的第i行第j列(1≤i, j≤n)的数据表示用第i块芯片测试第j块芯片时得到的测试结果,1表示好,0表示坏,i=j时一律为1(并不表示该芯片对本身的测试结果。芯片不能对本 身进行测试)。

', '

按从小到大的顺序输出所有好芯片的编号

', '[{"input": "3\n1 0 1\n0 1 0\n1 0 1\n", "output": "1 3"}]', '1c1ea06b50d261a041201c20229d074d', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 144, 66, 1, '1-17', '{"0": 66, "1": 2, "4": 2, "-1": 60, "-2": 14}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (125, '找零钱', '

小华去学校超市买东西,由于没带手机,所以他只能用现金付款。

已知售货员需要找给他x元钱,可以用的找零有1元、2元、5元。由于钞票稀缺,所以5元只有a张,而1元只有1张,2元则有无限张,那么售货员最少需要拿出几张纸币呢?如果存在最优方案找出零钱,请输出这个数量;否则如果不存在一种方案,输出-1。

', '

一行2个整数x,a分别表示要找的零钱以及有限的5元纸币数量。$ (1 \leq x,a \leq 100) $

', '

一个整数表示答案。

', '[{"input": "7 1", "output": "2"}]', '1de7b43fdecfd7976369d4eff594d05a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 26, 1, 'B', '{"0": 26, "1": 3, "4": 2, "-1": 23, "-2": 7}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (149, '字符串转换成十进制整数', '

输入一个以#结束的字符串,本题要求滤去所有的非十六进制字符(不分大小写),组成一个新的表示十六进制数字的字符串,然后将其转换为十进制数后输出。如果在第一个十六进制字符之前存在字符“-”,则代表该数是负数。

', '

输入在一行中给出一个以#结束的非空字符串。

', '

在一行中输出转换后的十进制数。题目保证输出在长整型范围内。

', '[{"input": "+-P-xf4+-1!#\n", "output": "-3905\n"}]', '1f0f2f9bb3b3f806fdfe6d2197c14773', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 67, 16, 1, 8, '{"0": 16, "4": 3, "-1": 45, "-2": 3}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (157, '字符串转换成十进制整数', '

输入一个以#结束的字符串,本题要求滤去所有的非十六进制字符(不分大小写),组成一个新的表示十六进制数字的字符串,然后将其转换为十进制数后输出。如果在第一个十六进制字符之前存在字符“-”,则代表该数是负数。

', '

输入在一行中给出一个以#结束的非空字符串。

', '

在一行中输出转换后的十进制数。题目保证输出在长整型范围内。

', '[{"input": "+-P-xf4+-1!#\n", "output": "-3905\n"}]', '1f0f2f9bb3b3f806fdfe6d2197c14773', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 124, 29, 1, '1-72', '{"0": 29, "1": 6, "-1": 72, "-2": 17}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (217, '求整数均值', '

输入4个整数,计算并输出这些整数的和与平均值,其中平均值精确到小数点后1位,试编写相应程序

', '

输入4个整数。

', '

计算并输出这些整数的和与平均值(float形式),其中平均值精确到小数点后1位。

', '[{"input": "1 2 3 4", "output": "10 2.5"}]', '20de2df079a2e00233bbea16d7b8332a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 134, 22, 358, '1-84', '{"0": 22, "4": 4, "-1": 104, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (254, '数字排序', '

给你n个数,里面的数字都是乱序的,请将它们都按照从大到小排序。

', '

第一行为一个整数n(1<=n<=1000)

第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

输出一行,按从大到小的顺序输出排序后的数列。

', '[{"input": "5\n8 3 5 4 2\n", "output": "8 5 4 3 2"}]', '20f728202a72bebd00b39c6892b0beb0', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 143, 67, 1, 'A', '{"0": 67, "4": 18, "-1": 38, "-2": 20}', 0, 25, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (79, 'test3', '

test3

', '

test3

', '

test3

', '[{"input": "test3", "output": "test3"}]', '21e3eca9bba50e1fe1fa04cf47396374', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 3, '{}', 0, 1, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (547, '扫雷游戏', '

扫雷游戏是一款十分经典的单机小游戏。

现在有个简易版扫雷游戏:在1行m列的雷区中有一些格子含有地雷(称之为地雷格),其他格子不含地雷(称之为非地雷格)。玩家翻开一个非地雷格时,该格将会出现一个数字——提示周围格子中有多少个是地雷格。游戏的目标是在不翻出任何地雷格的条件下,找出所有的非地雷格。

现在给出1行m列的雷区中的地雷分布,要求计算出每个非地雷格周围的地雷格数。

注:一个格子的周围格子包括其左、右两个方向上与之直接相邻的格子。

', '

输入的第一行是一个整数m,表示雷区的列数。(1 <= m <= 100)

接下来一行m个字符,描述了雷区中的地雷分布情况。字符’*’表示相应格子是地雷格,字符’?’表示相应格子是非地雷格。相邻字符之间无分隔符。

', '

输出包含1行m个字符,描述整个雷区。用’*’表示地雷格,用周围的地雷个数表示非地雷格。相邻字符之间无分隔符。

', '[{"input": "3\n*??", "output": "*10"}, {"input": "3\n???", "output": "000"}, {"input": "3\n?*?", "output": "1*1"}]', '21e940d3b68dca08828419e529b1511f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

注意:必须使用函数接口void transMap(char* input,char* output) 完成题目,其中input是传入字符串,output是最后要输出的字符串

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 1, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (109, '单词统计', '

给你一段文字,请统计其中各个单词的数目。文字中可能包含以下字符:

[',','.','!','?',':','(',')']

请统计文字中的单词出现次数,并按照先后顺序输出。

注意:单词区分大小写,既What 和what算2个单词

', '

输入一行,为待处理文本

', '

按照单词在文本中首次出现的顺序依次输出出现次数。

', '[{"input": "apple grape banana apple egg an list apple go an\n", "output": "apple 3\ngrape 1\nbanana 1\negg 1\nan 2\nlist 1\ngo 1\n"}, {"input": "What is the problem? How is it!\n\n", "output": "What 1\nis 2\nthe 1\nproblem 1\nHow 1\nit 1\n\n"}]', '227d6863151c036332afeae237972505', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Java", "C", "Python2", "C++", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 29, 1, 1, '1-4', '{"0": 1, "-1": 26, "-2": 2}', 0, 12, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (182, '宴会排座位', '

布置宴席最微妙的事情,就是给前来参宴的各位宾客安排座位。无论如何,总不能把两个死对头排到同一张宴会桌旁!这个艰巨任务现在就交给你,对任何一对客人,请编写程序告诉主人他们是否能被安排同席。

', '

输入第一行给出3个正整数:N(≤100),即前来参宴的宾客总人数,则这些人从1到N编号;M为已知两两宾客之间的关系数;K为查询的条数。随后M行,每行给出一对宾客之间的关系,格式为:宾客1 宾客2 关系,其中关系为1表示是朋友,-1表示是死对头。注意两个人不可能既是朋友又是敌人。最后K行,每行给出一对需要查询的宾客编号。

这里假设朋友的朋友也是朋友。但敌人的敌人并不一定就是朋友,朋友的敌人也不一定是敌人。只有单纯直接的敌对关系才是绝对不能同席的。

', '

对每个查询输出一行结果:

如果两位宾客之间是朋友,且没有敌对关系,则输出No problem;如果他们之间并不是朋友,但也不敌对,则输出OK;如果他们之间有敌对,然而也有共同的朋友,则输出OK but...;如果他们之间只有敌对关系,则输出No way。

', '[{"input": "7 8 4\n5 6 1\n2 7 -1\n1 3 1\n3 4 1\n6 7 -1\n1 2 1\n1 4 1\n2 3 -1\n3 4\n5 7\n2 3\n7 2\n", "output": "No problem\nOK\nOK but...\nNo way\n"}]', '22cd6a31e427eb385e8aec57f977dbf1', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 19, 2, 1, 1, '{"0": 2, "-1": 13, "-2": 4}', 0, 18, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (185, '宴会排座位', '

布置宴席最微妙的事情,就是给前来参宴的各位宾客安排座位。无论如何,总不能把两个死对头排到同一张宴会桌旁!这个艰巨任务现在就交给你,对任何一对客人,请编写程序告诉主人他们是否能被安排同席。

', '

输入第一行给出3个正整数:N(≤100),即前来参宴的宾客总人数,则这些人从1到N编号;M为已知两两宾客之间的关系数;K为查询的条数。随后M行,每行给出一对宾客之间的关系,格式为:宾客1 宾客2 关系,其中关系为1表示是朋友,-1表示是死对头。注意两个人不可能既是朋友又是敌人。最后K行,每行给出一对需要查询的宾客编号。

这里假设朋友的朋友也是朋友。但敌人的敌人并不一定就是朋友,朋友的敌人也不一定是敌人。只有单纯直接的敌对关系才是绝对不能同席的。

', '

对每个查询输出一行结果:

如果两位宾客之间是朋友,且没有敌对关系,则输出No problem;如果他们之间并不是朋友,但也不敌对,则输出OK;如果他们之间有敌对,然而也有共同的朋友,则输出OK but...;如果他们之间只有敌对关系,则输出No way。

', '[{"input": "7 8 4\n5 6 1\n2 7 -1\n1 3 1\n3 4 1\n6 7 -1\n1 2 1\n1 4 1\n2 3 -1\n3 4\n5 7\n2 3\n7 2\n", "output": "No problem\nOK\nOK but...\nNo way\n"}]', '22cd6a31e427eb385e8aec57f977dbf1', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 47, 3, 1, '1-81', '{"0": 3, "1": 7, "4": 8, "-1": 1, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (112, '时间转换', '

 给定一个以秒为单位的时间t,要求用 “::”的格式来表示这个时间。表示时间,表示分钟, 而表示秒,它们都是整数且没有前导的“0”。例如,若t=0,则应输出是“0:0:0”;若t=3661,则输出“1:1:1”。

', '

 输入只有一行,是一个整数t(0<=t<=86399)。

', '

输出只有一行,是以“::”的格式所表示的时间,不包括引号。

', '[{"input": "0", "output": "0:0:0"}, {"input": "5436", "output": "1:30:36"}]', '235020449b2f996679c2662f392c37ae', '[{"score": 3, "input_name": "1.in", "output_name": "1.out"}, {"score": 3, "input_name": "2.in", "output_name": "2.out"}, {"score": 3, "input_name": "3.in", "output_name": "3.out"}, {"score": 3, "input_name": "4.in", "output_name": "4.out"}, {"score": 3, "input_name": "5.in", "output_name": "5.out"}, {"score": 3, "input_name": "6.in", "output_name": "6.out"}, {"score": 3, "input_name": "7.in", "output_name": "7.out"}, {"score": 3, "input_name": "8.in", "output_name": "8.out"}, {"score": 3, "input_name": "9.in", "output_name": "9.out"}, {"score": 3, "input_name": "10.in", "output_name": "10.out"}, {"score": 3, "input_name": "11.in", "output_name": "11.out"}, {"score": 3, "input_name": "12.in", "output_name": "12.out"}, {"score": 3, "input_name": "13.in", "output_name": "13.out"}, {"score": 3, "input_name": "14.in", "output_name": "14.out"}, {"score": 3, "input_name": "15.in", "output_name": "15.out"}, {"score": 3, "input_name": "16.in", "output_name": "16.out"}, {"score": 3, "input_name": "17.in", "output_name": "17.out"}, {"score": 3, "input_name": "18.in", "output_name": "18.out"}, {"score": 3, "input_name": "19.in", "output_name": "19.out"}, {"score": 3, "input_name": "20.in", "output_name": "20.out"}, {"score": 3, "input_name": "21.in", "output_name": "21.out"}, {"score": 3, "input_name": "22.in", "output_name": "22.out"}, {"score": 3, "input_name": "23.in", "output_name": "23.out"}, {"score": 3, "input_name": "24.in", "output_name": "24.out"}, {"score": 3, "input_name": "25.in", "output_name": "25.out"}, {"score": 3, "input_name": "26.in", "output_name": "26.out"}, {"score": 3, "input_name": "27.in", "output_name": "27.out"}, {"score": 3, "input_name": "28.in", "output_name": "28.out"}, {"score": 3, "input_name": "29.in", "output_name": "29.out"}, {"score": 3, "input_name": "30.in", "output_name": "30.out"}, {"score": 3, "input_name": "31.in", "output_name": "31.out"}, {"score": 3, "input_name": "32.in", "output_name": "32.out"}, {"score": 3, "input_name": "33.in", "output_name": "33.out"}, {"score": 3, "input_name": "34.in", "output_name": "34.out"}, {"score": 3, "input_name": "35.in", "output_name": "35.out"}, {"score": 3, "input_name": "36.in", "output_name": "36.out"}]', '', '["C++", "Python2", "Python3", "C", "Java"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-6', '{}', 0, 12, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (21, '时间转换', '

给定一个以秒为单位的时间t,要求用 “::”的格式来表示这个时间。表示时间,表示分钟, 而表示秒,它们都是整数且没有前导的“0”。例如,若t=0,则应输出是“0:0:0”;若t=3661,则输出“1:1:1”。

', '

输入只有一行,是一个整数t(0<=t<=86399)。

', '

输出只有一行,是以“::”的格式所表示的时间,不包括引号。

', '[{"input": "0", "output": "0:0:0"}, {"input": "5436", "output": "1:30:36"}]', '235020449b2f996679c2662f392c37ae', '[{"score": 3, "input_name": "1.in", "output_name": "1.out"}, {"score": 3, "input_name": "2.in", "output_name": "2.out"}, {"score": 3, "input_name": "3.in", "output_name": "3.out"}, {"score": 3, "input_name": "4.in", "output_name": "4.out"}, {"score": 3, "input_name": "5.in", "output_name": "5.out"}, {"score": 3, "input_name": "6.in", "output_name": "6.out"}, {"score": 3, "input_name": "7.in", "output_name": "7.out"}, {"score": 3, "input_name": "8.in", "output_name": "8.out"}, {"score": 3, "input_name": "9.in", "output_name": "9.out"}, {"score": 3, "input_name": "10.in", "output_name": "10.out"}, {"score": 3, "input_name": "11.in", "output_name": "11.out"}, {"score": 3, "input_name": "12.in", "output_name": "12.out"}, {"score": 3, "input_name": "13.in", "output_name": "13.out"}, {"score": 3, "input_name": "14.in", "output_name": "14.out"}, {"score": 3, "input_name": "15.in", "output_name": "15.out"}, {"score": 3, "input_name": "16.in", "output_name": "16.out"}, {"score": 3, "input_name": "17.in", "output_name": "17.out"}, {"score": 3, "input_name": "18.in", "output_name": "18.out"}, {"score": 3, "input_name": "19.in", "output_name": "19.out"}, {"score": 3, "input_name": "20.in", "output_name": "20.out"}, {"score": 3, "input_name": "21.in", "output_name": "21.out"}, {"score": 3, "input_name": "22.in", "output_name": "22.out"}, {"score": 3, "input_name": "23.in", "output_name": "23.out"}, {"score": 3, "input_name": "24.in", "output_name": "24.out"}, {"score": 3, "input_name": "25.in", "output_name": "25.out"}, {"score": 3, "input_name": "26.in", "output_name": "26.out"}, {"score": 3, "input_name": "27.in", "output_name": "27.out"}, {"score": 3, "input_name": "28.in", "output_name": "28.out"}, {"score": 3, "input_name": "29.in", "output_name": "29.out"}, {"score": 3, "input_name": "30.in", "output_name": "30.out"}, {"score": 3, "input_name": "31.in", "output_name": "31.out"}, {"score": 3, "input_name": "32.in", "output_name": "32.out"}, {"score": 3, "input_name": "33.in", "output_name": "33.out"}, {"score": 3, "input_name": "34.in", "output_name": "34.out"}, {"score": 3, "input_name": "35.in", "output_name": "35.out"}, {"score": 3, "input_name": "36.in", "output_name": "36.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 153, 117, 1, '1-14', '{"0": 117, "4": 2, "-1": 20, "-2": 14}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (512, '歌唱比赛(10分)', '

歌唱比赛有n个裁判(n>=3),每个裁判会给当前这位歌手打分为[1,10]之间的一个整数,最终这个选手的得分为:去掉一个最高分和一个最低分之后的平均分。

现在已知小华同学的最终得分p,但是n个裁判给的得分中恰好有一个丢失了,即小华只知道n-1个裁判给出的得分,现在请你帮小华判断他的最终得分是否是对的(即是否存在第n个裁判给出某个分数q满足小华的最终得分为p)?

', '

第一行一个正整数n和一个浮点数p。(3<=n<=100,1<=p<=10)

第二行n-1个正整数a[i],表示n-1个裁判给出的得分。(1<=a[i]<=10)

', '

若小华的最终得分是对的,输出“Yes”,否则输出“No”。

', '[{"input": "4 2.5\n1 2 3\n", "output": "Yes"}]', '24796fe4e94a301d7b89cd5d9de77f92', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 108, 31, 1, 7, '{"0": 31, "4": 3, "-1": 65, "-2": 9}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (317, '歌唱比赛(10分)', '

歌唱比赛有n个裁判(n>=3),每个裁判会给当前这位歌手打分为[1,10]之间的一个整数,最终这个选手的得分为:去掉一个最高分和一个最低分之后的平均分。

现在已知小华同学的最终得分p,但是n个裁判给的得分中恰好有一个丢失了,即小华只知道n-1个裁判给出的得分,现在请你帮小华判断他的最终得分是否是对的(即是否存在第n个裁判给出某个分数q满足小华的最终得分为p)?

', '

第一行一个正整数n和一个浮点数p。(3<=n<=100,1<=p<=10)

第二行n-1个正整数a[i],表示n-1个裁判给出的得分。(1<=a[i]<=10)

', '

若小华的最终得分是对的,输出“Yes”,否则输出“No”。

', '[{"input": "4 2.5\n1 2 3\n", "output": "Yes"}]', '24796fe4e94a301d7b89cd5d9de77f92', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 113, 11, 1, 7, '{"0": 11, "1": 3, "4": 7, "-1": 85, "-2": 7}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (504, '歌唱比赛(10分)', '

歌唱比赛有n个裁判(n>=3),每个裁判会给当前这位歌手打分为[1,10]之间的一个整数,最终这个选手的得分为:去掉一个最高分和一个最低分之后的平均分。

现在已知小华同学的最终得分p,但是n个裁判给的得分中恰好有一个丢失了,即小华只知道n-1个裁判给出的得分,现在请你帮小华判断他的最终得分是否是对的(即是否存在第n个裁判给出某个分数q满足小华的最终得分为p)?

', '

第一行一个正整数n和一个浮点数p。(3<=n<=100,1<=p<=10)

第二行n-1个正整数a[i],表示n-1个裁判给出的得分。(1<=a[i]<=10)

', '

若小华的最终得分是对的,输出“Yes”,否则输出“No”。

', '[{"input": "4 2.5\n1 2 3\n", "output": "Yes"}]', '24796fe4e94a301d7b89cd5d9de77f92', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 231, 21, 1, 7, '{"0": 21, "4": 21, "-1": 183, "-2": 6}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (325, '歌唱比赛(10分)', '

歌唱比赛有n个裁判(n>=3),每个裁判会给当前这位歌手打分为[1,10]之间的一个整数,最终这个选手的得分为:去掉一个最高分和一个最低分之后的平均分。

现在已知小华同学的最终得分p,但是n个裁判给的得分中恰好有一个丢失了,即小华只知道n-1个裁判给出的得分,现在请你帮小华判断他的最终得分是否是对的(即是否存在第n个裁判给出某个分数q满足小华的最终得分为p)?

', '

第一行一个正整数n和一个浮点数p。(3<=n<=100,1<=p<=10)

第二行n-1个正整数a[i],表示n-1个裁判给出的得分。(1<=a[i]<=10)

', '

若小华的最终得分是对的,输出“Yes”,否则输出“No”。

', '[{"input": "4 2.5\n1 2 3\n", "output": "Yes"}]', '24796fe4e94a301d7b89cd5d9de77f92', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 55, 21, 1, '1-146', '{"0": 21, "1": 1, "4": 6, "-1": 22, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (372, '歌唱比赛', '

歌唱比赛有n个裁判(n>=3),每个裁判会给当前这位歌手打分为[1,10]之间的一个整数,最终这个选手的得分为:去掉一个最高分和一个最低分之后的平均分。

现在已知小华同学的最终得分p,但是n个裁判给的得分中恰好有一个丢失了,即小华只知道n-1个裁判给出的得分,现在请你帮小华判断他的最终得分是否是对的(即是否存在第n个裁判给出某个分数q满足小华的最终得分为p)?

', '

第一行一个正整数n和一个浮点数p。(3<=n<=100,1<=p<=10)

第二行n-1个正整数a[i],表示n-1个裁判给出的得分。(1<=a[i]<=10)

', '

若小华的最终得分是对的,输出“Yes”,否则输出“No”。

', '[{"input": "4 2.5\n1 2 3\n", "output": "Yes"}]', '24796fe4e94a301d7b89cd5d9de77f92', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 45, 6, 1, 4, '{"0": 6, "4": 5, "-1": 33, "-2": 1}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (50, '小朋友排队', '

n 个小朋友站成一排。现在要把他们按身高从低到高的顺序排列,但是每次只能交换位置相邻的两个小朋友。

每个小朋友都有一个不高兴的程度。开始的时候,所有小朋友的不高兴程度都是0。

如果某个小朋友第一次被要求交换,则他的不高兴程度增加1,如果第二次要求他交换,则他的不高兴程度增加2(即不高兴程度为3),依次类推。当要求某个小朋友第k次交换时,他的不高兴程度增加k。

请问,要让所有小朋友按从低到高排队,他们的不高兴程度之和最小是多少。

如果有两个小朋友身高一样,则他们谁站在谁前面是没有关系的。

', '

输入的第一行包含一个整数n,表示小朋友的个数。

第二行包含 n 个整数 H1 H2 … Hn,分别表示每个小朋友的身高。

', '

输出一行,包含一个整数,表示小朋友的不高兴程度和的最小值。

', '[{"input": "3\n
3 2 1\n", "output": "9"}]', '25bdbfd1bbf9cbd0cfc3e93ad0a85437', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

首先交换身高为3和2的小朋友,再交换身高为3和1的小朋友,再交换身高为2和1的小朋友,每个小朋友的不高兴程度都是3,总和为9。

数据规模和约定

对于10%的数据, 1<=n<=10;
对于30%的数据, 1<=n<=1000;
对于50%的数据, 1<=n<=10000;
对于100%的数据,1<=n<=100000,0<=Hi<=1000000。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 19, 2, 1, '1-46', '{"0": 2, "1": 7, "4": 3, "-1": 7}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (72, 'test1', '

test1

', '

test1

', '

test1

', '[{"input": "test1", "output": "test1"}]', '265cb159542aa8e65a57d137d1ba5f4a', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 'w123', '{}', 0, 9, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (255, '新的A+B', '

题的目标很简单,就是求两个正整数A和B的和,其中A和B都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。

', '

输入在一行给出A和B,其间以空格分开。问题是A和B不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。

注意:我们把输入中出现的第1个空格认为是A和B的分隔。题目保证至少存在一个空格,并且B不是一个空字符串。

', '

如果输入的确是两个正整数,则按格式A + B =和输出。如果某个输入不合要求,则在相应位置输出?,显然此时和也是?。

', '[{"input": "123 456", "output": "123 + 456 = 579"}, {"input": "22. 18", "output": "? + 18 = ?"}, {"input": "-100 blabla bla...33", "output": "? + ? = ?"}]', '269f5bc020dc95083a2223c1ff504386', '[{"score": 11, "input_name": "1.in", "output_name": "1.out"}, {"score": 11, "input_name": "2.in", "output_name": "2.out"}, {"score": 11, "input_name": "3.in", "output_name": "3.out"}, {"score": 11, "input_name": "4.in", "output_name": "4.out"}, {"score": 11, "input_name": "5.in", "output_name": "5.out"}, {"score": 11, "input_name": "6.in", "output_name": "6.out"}, {"score": 11, "input_name": "7.in", "output_name": "7.out"}, {"score": 11, "input_name": "8.in", "output_name": "8.out"}, {"score": 11, "input_name": "9.in", "output_name": "9.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 250, 44, 1, 'B', '{"0": 44, "1": 1, "4": 2, "-1": 171, "-2": 32}', 0, 25, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (479, '字符串转换成十进制整数。', '

输入一个以字符 "" #"" 结束的字符串, 滤去所有的非十六进 制字符 (不分大小写), 组成一个 新的表示十六进 制数字的 字符 串, 然后 将其转换为十进制 数后输出 。如果过滤后字符串的首字符为 "-", 代表该 数是负数。试编写相应程序。

', '

输入一个以字符 "" #"" 结束的字符串

', '

输出该字符串对应生成的十进制表示

', '[{"input": "-sasd#", "output": "-173"}]', '27d2e6f16dd61f5a29663d170f7893eb', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 358, '1-186', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (476, '字符串转换成十进制整数。', '

输入一个以字符 "" #"" 结束的字符串, 滤去所有的非十六进 制字符 (不分大小写), 组成一个 新的表示十六进 制数字的 字符 串, 然后 将其转换为十进制 数后输出 。如果过滤后字符串的首字符为 "-", 代表该 数是负数。试编写相应程序。

', '

输入一个以字符 "" #"" 结束的字符串

', '

输出该字符串对应生成的十进制表示

', '[{"input": "-sasd#", "output": "-173"}]', '27d2e6f16dd61f5a29663d170f7893eb', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 140, 58, 358, '7-8', '{"0": 58, "1": 1, "4": 7, "-1": 65, "-2": 9}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (251, '使用函数输出一个整数的逆序数', '

本题要求实现一个求整数的逆序数的简单函数。(注意:逆序后去掉前导0)

函数接口定义:

int reverse( int number );

其中函数reverse须返回用户传入的整型number的逆序数。

', '

一行一个整数n。

', '

一个整数表示答案。

', '[{"input": "-12340", "output": "-4321"}]', '27e8f5509ea920fa52533463ca07ef27', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 219, 98, 1, '6-6', '{"0": 98, "1": 19, "4": 6, "-1": 76, "-2": 20}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (267, '使用函数输出一个整数的逆序数', '

本题要求实现一个求整数的逆序数的简单函数。(注意:逆序后去掉前导0)

函数接口定义:

int reverse( int number );

其中函数reverse须返回用户传入的整型number的逆序数。

', '

一行一个整数n。

', '

一个整数表示答案。

', '[{"input": "-12340", "output": "-4321"}]', '27e8f5509ea920fa52533463ca07ef27', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 56, 33, 1, '1-119', '{"0": 33, "1": 4, "4": 1, "-1": 15, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (207, '展开式求和', '

输入一个实数x,计算并输出下式的和,直到最后一项的绝对值小于0.00001,计算结果保留四位小数。要求定义和调用函数fact(n)计算n的阶乘,可以调用pow()函数求幂。试编写相应程序。

S= 1+x+x^2/2! + x^3/3! + x^4/4! +……

', '

输入一个实数x(double类型)

', '

输出序列求和的值,double类型,结果保留4位小数。

', '[{"input": "1", "output": "2.7183"}]', '27f5940d07972833c32b7cd6c320ead9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 470, 100, 358, '4-2', '{"0": 100, "1": 57, "4": 3, "-1": 252, "-2": 58}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (229, '展开式求和', '

输入一个实数x,计算并输出下式的和,直到最后一项的绝对值小于0.00001,计算结果保留四位小数。要求定义和调用函数fact(n)计算n的阶乘,可以调用pow()函数求幂。试编写相应程序。

S= 1+x+x^2/2! + x^3/3! + x^4/4! +……

', '

输入一个实数x(double类型)

', '

输出序列求和的值,double类型,结果保留4位小数。

', '[{"input": "1", "output": "2.7183"}]', '27f5940d07972833c32b7cd6c320ead9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 19, 358, '1-97', '{"0": 19, "1": 2, "4": 1, "-1": 37, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (555, '寻找第一个L位素数', '

给定N 位(0<= N <= 100) 数字 num。

可以将数字num看成是一个长度位N的字符串,从左至右观察数字num,查找到第一个长度为L(1<= L <= 5) 的连续“子串”,且该“子串” 为素数。

输出这个素数。

(关键词:第一个、长度为L(即L位数)、素数)

', '

第一行: 正整数N 和 L,之间以空格隔开。

第二行: N个数字。每个数字 均在 [1,9] 范围内,不包含0。故无需考虑前导0的情况。

', '

如果找到第一个L位素数,则输出该数。

如果没有找到,则输出404。

', '[{"input": "15 5\n436549877255444", "output": "49877"}, {"input": "10 3\n4244686426", "output": "404"}]', '28347c2449dbee8bf8254f64df29b69a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

在Sample1中,输入为436549877255444

从左到右长度为5的数分别为:43654 36549 65498 54987 49877 ........
其中第一个素数为 49877,所以输出为49877

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 5, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (30, '连号区间数', '

小明这些天一直在思考这样一个奇怪而有趣的问题:

在1~N的某个全排列中有多少个连号区间呢?这里所说的连号区间的定义是:

如果区间[L, R] 里的所有元素(即此排列的第L个到第R个元素)递增排序后能得到一个长度为R-L+1的“连续”数列,则称这个区间连号区间。

当N很小的时候,小明可以很快地算出答案,但是当N变大的时候,问题就不是那么简单了,现在小明需要你的帮助。

', '

第一行是一个正整数N (1 <= N <= 50000), 表示全排列的规模。

第二行是N个不同的数字Pi(1 <= Pi <= N), 表示这N个数字的某一全排列。

', '

输出一个整数,表示不同连号区间的数目。

', '[{"input": "4
\n3 2 4 1\n", "output": "7 \n"}, {"input": "5
\n3 4 2 5 1\n", "output": "9\n"}]', '2a2270712735d06374fde56991fa3fb6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 91, 30, 1, '1-40', '{"0": 30, "1": 36, "-1": 22, "-2": 3}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (115, '连号区间数', '

小明这些天一直在思考这样一个奇怪而有趣的问题:

在1~N的某个全排列中有多少个连号区间呢?这里所说的连号区间的定义是:

如果区间[L, R] 里的所有元素(即此排列的第L个到第R个元素)递增排序后能得到一个长度为R-L+1的“连续”数列,则称这个区间连号区间。

当N很小的时候,小明可以很快地算出答案,但是当N变大的时候,问题就不是那么简单了,现在小明需要你的帮助。

', '

第一行是一个正整数N (1 <= N <= 50000), 表示全排列的规模。

第二行是N个不同的数字Pi(1 <= Pi <= N), 表示这N个数字的某一全排列。

', '

输出一个整数,表示不同连号区间的数目。

', '[{"input": "4
\n3 2 4 1\n", "output": "7 \n"}, {"input": "5
\n3 4 2 5 1\n", "output": "9\n"}]', '2a2270712735d06374fde56991fa3fb6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C++", "Python2", "Python3", "C", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '1-9', '{}', 0, 12, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (443, '图的连通分量', '

给定一个无向图G,其中包含n个顶点(编号为1-n)和m条边,求图中连通分量的个数。连通分量的定义为:一个无向图的极大连通子图称为该图的连通分量。连通图的极大连通子图只有1个,就是其自身。非连通图可以拆为数个极大,也称连通分量,每个分量显然都是连通图。

', '

nn>=0)和m(m>=0)分别代表图中顶点和边的个数;

图中每条边连接的两个顶点的值。

', '

图中连通分量的个数。(行末尾无空格)

', '[{"input": "4 2\n1 2\n3 4", "output": "2"}]', '2b05de13875692efa69e4d9c74e16331', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 56, 11, 511, 3, '{"0": 11, "3": 4, "4": 6, "-1": 29, "-2": 6}', 0, 52, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (381, '平面向量点积', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量,计算并输出两个向量的点积。试编写相应程序。

', '

输入在一行中按照“x​1​​y​1​​x​2​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

在一行中输出一个实数,保留3位小数。

', '[{"input": "3.5 -2.7 -13.9 8.7", "output": "-72.140"}]', '2b0e3092fa991216502ba29bda7736d9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 21, 13, 1, '1-170', '{"0": 13, "-1": 6, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (363, '平面向量点积', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量,计算并输出两个向量的点积。试编写相应程序。

', '

输入在一行中按照“x​1​​y​1​​x​2​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

在一行中输出一个实数,保留3位小数。

', '[{"input": "3.5 -2.7 -13.9 8.7", "output": "-72.140"}]', '2b0e3092fa991216502ba29bda7736d9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 49, 29, 1, 5, '{"0": 29, "-1": 17, "-2": 3}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (415, '低位优先基数排序', '

用低位优先基数排序对下列字符串进行排序。

', '

输入包含两行,第一行为列表中元素个数n,第二行为列表中的元素。

本题列表中的元素都是包含三个字母的英文单词。

', '

1. 输出排序后的字符串序列。

2. 中间用空格隔开。

3. 末尾不得有空格。

', '[{"input": "9\ndog cat pig cow fox rat bee ant bat", "output": "ant bat bee cat cow dog fox pig rat"}]', '2b8b0e66077e6cb6b8822834d3c71b1c', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 52, 26, 511, 1, '{"0": 26, "4": 11, "-1": 10, "-2": 5}', 0, 41, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (300, '输出学生成绩', '

本题要求编写程序,根据输入学生的成绩,统计并输出学生的平均成绩、最高成绩和最低成绩。

注意:使用动态内存分配来实现!!!

', '

输入第一行首先给出一个正整数N,表示学生的个数。接下来一行给出N个学生的成绩,数字间以空格分隔。

', '

按照以下格式输出:

average =平均成绩

max =最高成绩

min =最低成绩

结果均保留两位小数。

', '[{"input": "3\n85 90 95\n", "output": "average = 90.00\nmax = 95.00\nmin = 85.00\n"}]', '2bed0b2fa06f6b7e51ecfd9a3813a7be', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 240, 94, 1, '8-10', '{"0": 94, "4": 20, "-1": 114, "-2": 12}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (310, '输出学生成绩', '

本题要求编写程序,根据输入学生的成绩,统计并输出学生的平均成绩、最高成绩和最低成绩。

注意:使用动态内存分配来实现!!!

', '

输入第一行首先给出一个正整数N,表示学生的个数。接下来一行给出N个学生的成绩,数字间以空格分隔。

', '

按照以下格式输出:

average =平均成绩

max =最高成绩

min =最低成绩

结果均保留两位小数。

', '[{"input": "3\n85 90 95\n", "output": "average = 90.00\nmax = 95.00\nmin = 85.00\n"}]', '2bed0b2fa06f6b7e51ecfd9a3813a7be', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 63, 28, 1, '1-139', '{"0": 28, "4": 10, "-1": 18, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (417, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: "。

', '

一行两个整数。

', '

一个整数表示答案。

', '[{"input": "1 1", "output": "2"}]', '2d8be1fa07f8a47f1f79cf265c392929', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 255, 124, 1, 'A', '{"0": 124, "4": 10, "-1": 16, "-2": 105}', 0, 43, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (61, 's', '

s

', '

s

', '

s

', '[{"input": "a", "output": "a"}]', '2de76628328b0b21127520da1e80fed8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, 'test', '{}', 0, 7, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (42, '格子刷油漆', '

X国的一段古城墙的顶端可以看成 2*N个格子组成的矩形(如下图所示),现需要把这些格子刷上保护漆。

标题:格子刷油漆图片说明
你可以从任意一个格子刷起,刷完一格,可以移动到和它相邻的格子(对角相邻也算数),但不能移动到较远的格子(因为油漆未干不能踩!)
比如:a d b c e f 就是合格的刷漆顺序。
c e f d a b 是另一种合适的方案。
当已知 N 时,求总的方案数。当N较大时,结果会迅速增大,请把结果对 1000000007 (十亿零七) 取模。

', '

输入数据为一个正整数(不大于1000)

', '

输出数据为一个正整数。

', '[{"input": "2", "output": "24"}, {"input": "3", "output": "96"}, {"input": "22", "output": "359635897"}]', '2e8c231addf29c1432f6712a5d1f681a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 10, 8, 1, '1-31', '{"0": 8, "-1": 2}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (243, '使用函数统计指定数字的个数', '

本题要求实现一个统计整数中指定数字的个数的简单函数。

函数接口定义:

int CountDigit( int number, int digit );

其中number是不超过长整型的整数,digit为[0, 9]区间内的整数。函数CountDigit应返回number中digit出现的次数。

', '

一行两个整数number和digit。

', '

一行一个整数表示答案。

', '[{"input": "-21252 2", "output": "3"}]', '2ea008f24d9c85f28f6b7e0fa196b112', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 29, 24, 1, '1-111', '{"0": 24, "-1": 3, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (200, '使用函数统计指定数字的个数', '

本题要求实现一个统计整数中指定数字的个数的简单函数。

函数接口定义:

int CountDigit( int number, int digit );

其中number是不超过长整型的整数,digit为[0, 9]区间内的整数。函数CountDigit应返回number中digit出现的次数。

', '

一行两个整数number和digit。

', '

一行一个整数表示答案。

', '[{"input": "-21252 2", "output": "3"}]', '2ea008f24d9c85f28f6b7e0fa196b112', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 181, 96, 1, '5-5', '{"0": 96, "1": 14, "-1": 60, "-2": 11}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (287, '求矩阵各行元素之和。', '

输入2个正整数mn1<=m<=6,1<=n<=6),然后输入矩阵amn列)中的元素,分别求出各行元素之和,并输出。试编写相应程序。

', '

输入2个正整数mn1<=m<=6,1<=n<=6),然后输入矩阵amn列)中的元素,矩阵中的元素均为整数。

', '

依次输出各行元素之和,也是整数形式。

', '[{"input": "2 4\n1 2 3 4\n4 5 6 7", "output": "10 22"}]', '2ead06d5758d609844c811a7f37e74e4', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 57, 31, 358, '1-126', '{"0": 31, "-1": 16, "-2": 10}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (106, '排序', '

给定一个长度为n的数列,将这个数列中重复元素删去,并按从大到小的顺序排列。1<=n<=1000

', '

第一行为一个整数n。第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

输出一行,按从大到小的顺序输出排序后的数列。

', '[{"input": "7\n8 3 5 4 2 3 2\n", "output": "8 5 4 3 2\n"}]', '30eabe8ef4d87fd1295edd79f3b7ba27', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 19, 8, 1, '1-1', '{"0": 8, "-1": 11}', 0, 12, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (14, '横向打印二叉树', '

二叉树可以用于排序。其原理很简单:对于一个排序二叉树添加新节点时,先与根节点比较,若小则交给左子树继续处理,否则交给右子树。

当遇到空子树时,则把该节点放入那个位置。

比如,10 8 5 7 12 4 的输入顺序,应该建成二叉树如下图所示,其中.表示空白。

...|-12
10-|
...|-8-|
.......|...|-7
.......|-5-|
...........|-4

本题目要求:根据已知的数字,建立排序二叉树,并在标准输出中横向打印该二叉树。

', '

输入数据为一行空格分开的N个整数。 N<100,每个数字不超过10000。

', '

输出该排序二叉树的横向表示。为了便于评卷程序比对空格的数目,请把空格用句点代替:

', '[{"input": "10 5 20 \n", "output": "...|-20
\n10-|
\n...|-5 \n"}, {"input": "5 10 20 8 4 7 \n", "output": ".......|-20
\n..|-10-|
..|\n....|-8-|
..|\n........|-7
\n5-|
\n..|-4 \n"}]', '3169ba7d921c6042ac0109ee99576d4f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 68, 36, 1, '1-35', '{"0": 36, "4": 2, "-1": 18, "-2": 12}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (202, '使用函数求余弦函数的近似值', '

本题要求实现一个函数,用下列公式求cos(x)的近似值,精确到最后一项的绝对值小于e:

cos(x)=x^​0​​/0!−x^​2​​/2!+x^​4​​/4!−x^​6​​/6!+⋯

函数接口定义:

double funcos( double e, double x );

其中用户传入的参数为误差上限e和自变量x;函数funcos应返回用给定公式计算出来、并且满足误差要求的cos(x)的近似值。输入输出均在双精度范围内。

', '

两个浮点数e和x。

', '

一个浮点数表示答案,保留6位小数。

', '[{"input": "0.01 -3.14", "output": "-0.999899"}]', '31cdbb12e253b801129c42caa770e11a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 443, 93, 1, '5-7', '{"0": 93, "1": 133, "4": 3, "-1": 169, "-2": 45}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (245, '使用函数求余弦函数的近似值', '

本题要求实现一个函数,用下列公式求cos(x)的近似值,精确到最后一项的绝对值小于e:

cos(x)=x^​0​​/0!−x^​2​​/2!+x^​4​​/4!−x^​6​​/6!+⋯

函数接口定义:

double funcos( double e, double x );

其中用户传入的参数为误差上限e和自变量x;函数funcos应返回用给定公式计算出来、并且满足误差要求的cos(x)的近似值。输入输出均在双精度范围内。

', '

两个浮点数e和x。

', '

一个浮点数表示答案,保留6位小数。

', '[{"input": "0.01 -3.14", "output": "-0.999899"}]', '31cdbb12e253b801129c42caa770e11a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 121, 32, 1, '1-113', '{"0": 32, "1": 20, "4": 15, "-1": 50, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (4, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: ",示例代码见隐藏部分。

', '

1 1

', '

2

', '[{"input": "1 1", "output": "2"}]', '32b88b768bf339b77221caab837b2251', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 3, 1, 2, '{"0": 3, "-1": 1}', 0, 1, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (55, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: ",示例代码见隐藏部分。

', '

1 1

', '

2

', '[{"input": "1 1", "output": "2"}]', '32b88b768bf339b77221caab837b2251', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 2, 2, 1, 1, '{"0": 2}', 0, 6, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (1, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: "。

', '

一行两个整数。

', '

一个整数表示答案。

', '[{"input": "1 1", "output": "2"}]', '32b88b768bf339b77221caab837b2251', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 1121, 553, 1, '1-1', '{"0": 553, "1": 1, "4": 102, "-1": 144, "-2": 321}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (5, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: ",示例代码见隐藏部分。

', '

1 1

', '

2

', '[{"input": "1 1", "output": "2"}]', '32b88b768bf339b77221caab837b2251', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 1, 1, 1, 102, '{"0": 1}', 0, 3, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (62, 'A+B Problem', '

请计算两个整数的和并输出结果。

注意不要有不必要的输出,比如"请输入 a 和 b 的值: ",示例代码见隐藏部分。

', '

1 1

', '

2

', '[{"input": "1 1", "output": "2"}]', '32b88b768bf339b77221caab837b2251', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 29, 16, 1, '1-1', '{"0": 16, "4": 6, "-1": 3, "-2": 4}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (201, '使用函数输出水仙花数', '

水仙花数是指一个N位正整数(N≥3),它的每个位上的数字的N次幂之和等于它本身。例如:153=1^​3​​+5^​3​​+3^​3​​。 本题要求编写两个函数,一个判断给定整数是否水仙花数,另一个按从小到大的顺序打印出给定区间(m,n)内所有的水仙花数。

函数接口定义:

int narcissistic( int number );

void PrintN( int m, int n );

函数narcissistic判断number是否为水仙花数,是则返回1,否则返回0。

函数PrintN则打印闭区间[m, n]内所有的水仙花数,每个数字占一行。题目保证100≤m≤n≤10000。

', '

一行两个整数m,n。

', '

从小到大输出若干行,每行一个水仙花数。

', '[{"input": "153 400", "output": "153\n370\n371\n"}]', '3333904f830e53b0a7e3fb3326be6bbe', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 258, 97, 1, '5-6', '{"0": 97, "1": 7, "4": 1, "-1": 113, "-2": 40}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (244, '使用函数输出水仙花数', '

水仙花数是指一个N位正整数(N≥3),它的每个位上的数字的N次幂之和等于它本身。例如:153=1^​3​​+5^​3​​+3^​3​​。 本题要求编写两个函数,一个判断给定整数是否水仙花数,另一个按从小到大的顺序打印出给定区间(m,n)内所有的水仙花数。

函数接口定义:

int narcissistic( int number );

void PrintN( int m, int n );

函数narcissistic判断number是否为水仙花数,是则返回1,否则返回0。

函数PrintN则打印闭区间[m, n]内所有的水仙花数,每个数字占一行。题目保证100≤m≤n≤10000。

', '

一行两个整数m,n。

', '

从小到大输出若干行,每行一个水仙花数。

', '[{"input": "153 400", "output": "153\n370\n371\n"}]', '3333904f830e53b0a7e3fb3326be6bbe', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 26, 1, '1-112', '{"0": 26, "-1": 11, "-2": 9}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (365, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', '35539d74346ba47bd25588ea44d0d09c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 96, 27, 1, 7, '{"0": 27, "4": 1, "-1": 62, "-2": 6}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (529, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', '35539d74346ba47bd25588ea44d0d09c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 1, 1, 6, '{"0": 1, "-1": 3}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (382, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', '35539d74346ba47bd25588ea44d0d09c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 13, 10, 1, '1-171', '{"0": 10, "-1": 1, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (230, '求序列和', '

输入一个整数n,输出2/1+3/2+5/3+8/5+……的前n项之和,保留2位小数,该序列从第二项起,每一项的分子是前一项分子与分母的和,分母是前一项的分子。试编写相应的程序。

', '

输入一个整数n

', '

输出序列和,double类型,结果保留两位小数

', '[{"input": "2", "output": "3.50"}]', '35d0727a2fef0a6db26d47b890f907a2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 36, 20, 358, '1-98', '{"0": 20, "1": 4, "-1": 10, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (208, '求序列和', '

输入一个整数n,输出2/1+3/2+5/3+8/5+……的前n项之和,保留2位小数,该序列从第二项起,每一项的分子是前一项分子与分母的和,分母是前一项的分子。试编写相应的程序。

', '

输入一个整数n

', '

输出序列和,double类型,结果保留两位小数

', '[{"input": "2", "output": "3.50"}]', '35d0727a2fef0a6db26d47b890f907a2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 220, 101, 358, '4-3', '{"0": 101, "1": 5, "4": 10, "-1": 86, "-2": 18}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (189, '阶梯电价', '

为提倡居民节约用电,某省电力公司执行“阶梯电价”,安装一户一表的居民用户电价分为两个“阶梯”:月用电量50千瓦时(含50千瓦时)以内的,电价为0.53元/千瓦时;超过50千瓦时的,超出部分的用电量电价上调0.05元/千瓦时。输入用户的月用电量(千瓦时),计算并输出改用户应支付的电费(元)。试着编写相应程序。

', '

输入用电量的整数形式。

', '

输出电费,用float形式。

', '[{"input": "50", "output": "26.500000"}]', '35f34846edf4672f60a51b6b8b277a50', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 329, 104, 358, '2-2', '{"0": 104, "4": 11, "-1": 175, "-2": 39}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (218, '阶梯电价', '

为提倡居民节约用电,某省电力公司执行“阶梯电价”,安装一户一表的居民用户电价分为两个“阶梯”:月用电量50千瓦时(含50千瓦时)以内的,电价为0.53元/千瓦时;超过50千瓦时的,超出部分的用电量电价上调0.05元/千瓦时。输入用户的月用电量(千瓦时),计算并输出改用户应支付的电费(元)。试着编写相应程序。

', '

输入用电量的整数形式。

', '

输出电费,用float形式。

', '[{"input": "50", "output": "26.500000"}]', '35f34846edf4672f60a51b6b8b277a50', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 98, 35, 358, '1-85', '{"0": 35, "4": 2, "-1": 55, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (342, '按等级统计学生成绩', '

输入n(n<20)个学生的学号、姓名和成绩, 输出学生的成绩等级和不及格人数。每个学生的记录包括学号、姓名、成绩和等级,要求定义和调用函数 set_grade(), 根据学生成绩设置其等级,并统计不及格人数,等级设置:85-100 为 A , 70-84 为 B , 60-69 为 C , 0-59 为 D。 试编写相应程序。

', '

第一行输入学生人数n,接下来n行输入n个学生的学号 姓名 成绩

', '

第一行输出不及格的人数   接下来逐行输出学号 姓名 等级。

', '[{"input": "10\n31001 annie 85\n31002 bonny 75\n31003 carol 70\n31004 dan 84\n31005 susan 90\n31006 paul 69\n31007 pam 60\n31008 apple 50\n31009 nancy 100\n31010 bob 78", "output": "The count for failed (<60): 1\nThe grades:\n31001 annie A\n31002 bonny B\n31003 carol B\n31004 dan B\n31005 susan A\n31006 paul C\n31007 pam C\n31008 apple D\n31009 nancy A\n31010 bob B"}]', '3684a96de3ae6da31197ffb709bef741', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 217, 88, 358, '9-6', '{"0": 88, "4": 39, "-1": 77, "-2": 13}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (343, '按等级统计学生成绩', '

输入n(n<20)个学生的学号、姓名和成绩, 输出学生的成绩等级和不及格人数。每个学生的记录包括学号、姓名、成绩和等级,要求定义和调用函数 set_grade(), 根据学生成绩设置其等级,并统计不及格人数,等级设置:85-100 为 A , 70-84 为 B , 60-69 为 C , 0-59 为 D。 试编写相应程序。

', '

第一行输入学生人数n,接下来n行输入n个学生的学号 姓名 成绩

', '

第一行输出不及格的人数   接下来逐行输出学号 姓名 等级。

', '[{"input": "10\n31001 annie 85\n31002 bonny 75\n31003 carol 70\n31004 dan 84\n31005 susan 90\n31006 paul 69\n31007 pam 60\n31008 apple 50\n31009 nancy 100\n31010 bob 78", "output": "The count for failed (<60): 1\nThe grades:\n31001 annie A\n31002 bonny B\n31003 carol B\n31004 dan B\n31005 susan A\n31006 paul C\n31007 pam C\n31008 apple D\n31009 nancy A\n31010 bob B"}]', '3684a96de3ae6da31197ffb709bef741', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 106, 42, 358, '1-148', '{"0": 42, "4": 3, "-1": 50, "-2": 11}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (500, '判断数据类型(10分)', '

假设现在你要判断数据类型是否为int、long long、double,输入n个字符串,请你判断其代表的数据类型是什么,且输入的每个字符串保证是正数,且是这三种类型的一种。

', '

第一行一个整数n。(n<=10)

接下来n行每行一个字符串s。(|s|<=10)

', '

对于每个字符串s,输出“int”或“long long”或“double”。

', '[{"input": "3\n12\n9999999999\n123.44\n", "output": "int\nlong long\ndouble\n"}]', '37d7c42a45a7e79a3ade52c917be48fb', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 220, 17, 1, 3, '{"0": 17, "1": 3, "4": 15, "-1": 156, "-2": 29}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (177, '看电视', '

暑假开始了,有很多电视剧和综艺节目开播了。你有很多电视剧和节目都特别想看,但是它们的时间可能会有冲突,所以你想尽可能多看一些电视剧和节目。假设你已经知道了所有你喜欢看的电视节目的转播时间表,你会合理安排吗?(目标是能看尽量多的完整节目)

', '

输入数据包含多个测试实例,每个测试实例的第一行只有一个整数n(n<=100),表示你喜欢看的节目的总数,然后是n行数据,每行包括两个数据Ti_s,Ti_e (1<=i<=n),分别表示第i个节目的开始和结束时间,为了简化问题,每个时间都用一个正整数表示。n=0表示输入结束,不做处理。

', '

对于每个测试实例,输出能完整看到的电视节目的个数,每个测试实例的输出占一行。

', '[{"input": "12\n1 3\n3 4\n0 7\n3 8\n15 19\n15 20\n10 15\n8 18\n6 12\n5 10\n4 14\n2 9\n0\n", "output": "5"}]', '38526fa910986214f46991c8010e46a7', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 65, 17, 1, '1-76', '{"0": 17, "1": 6, "4": 1, "-1": 30, "-2": 11}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (169, '看电视', '

暑假开始了,有很多电视剧和综艺节目开播了。你有很多电视剧和节目都特别想看,但是它们的时间可能会有冲突,所以你想尽可能多看一些电视剧和节目。假设你已经知道了所有你喜欢看的电视节目的转播时间表,你会合理安排吗?(目标是能看尽量多的完整节目)

', '

输入数据包含多个测试实例,每个测试实例的第一行只有一个整数n(n<=100),表示你喜欢看的节目的总数,然后是n行数据,每行包括两个数据Ti_s,Ti_e (1<=i<=n),分别表示第i个节目的开始和结束时间,为了简化问题,每个时间都用一个正整数表示。n=0表示输入结束,不做处理。

', '

对于每个测试实例,输出能完整看到的电视节目的个数,每个测试实例的输出占一行。

', '[{"input": "12\n1 3\n3 4\n0 7\n3 8\n15 19\n15 20\n10 15\n8 18\n6 12\n5 10\n4 14\n2 9\n0\n", "output": "5"}]', '38526fa910986214f46991c8010e46a7', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 5, 0, 1, 4, '{"-1": 4, "-2": 1}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (123, '素数', '

我们知道,对于一个数$x(x != 1)$,用唯一分解定理可以表示为$p_1^{q1}p_2^{q2}...p_k^{qk} $($p_i,q_i$分别表示素因子以及指数,k为该数不同素因子个数),定义该数的价值为$(q_1+1)(q_2+1)...(q_k+1)$,也就是该数的价值=该数的因子个数。

现在给定一个整数n,求1到n的所有整数的价值之和(定义1的价值为1)。由于结果很大,请对结果%(1e9+7)后作为最终答案输出。

', '

一个整数n。($1 \leq n \leq 1e7$)

', '

一个整数表示答案。

', '[{"input": "10", "output": "27"}]', '38b749fc750c82d519fd0bf3b33bd625', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 11, 1, 1, 'J', '{"0": 1, "1": 3, "4": 5, "-1": 2}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (396, '查找子串', '

本题要求实现一个字符串查找的简单函数。

函数接口定义:

char *search( char *s, char *t );

函数search在字符串s中查找子串t,返回子串t在s中的首地址。若未找到,则返回NULL。

', '

第一行一个字符串s。(|s|<30)

第二行一个字符串t。(|t|<30)

', '

一个整数,表示t在s中的首地址。

', '[{"input": "The C Programming Language\nram\n", "output": "10"}, {"input": "The C Programming Language\nbored\n", "output": "-1"}]', '395d27abee3f95c174f337717db3d7a3', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 68, 28, 1, '1-177', '{"0": 28, "4": 4, "-1": 32, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (392, '查找子串', '

本题要求实现一个字符串查找的简单函数。

函数接口定义:

char *search( char *s, char *t );

函数search在字符串s中查找子串t,返回子串t在s中的首地址。若未找到,则返回NULL。

', '

第一行一个字符串s。(|s|<30)

第二行一个字符串t。(|t|<30)

', '

一个整数,表示t在s中的首地址。

', '[{"input": "The C Programming Language\nram\n", "output": "10"}, {"input": "The C Programming Language\nbored\n", "output": "-1"}]', '395d27abee3f95c174f337717db3d7a3', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 211, 75, 1, '11-6', '{"0": 75, "1": 2, "4": 6, "-1": 105, "-2": 23}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (430, '字符串的得分', '

给定一个平衡括号字符串S,按下述规则计算该字符串的分数:

()1分。

ABA + B分,其中AB是平衡括号字符串。例如“()()”1+1=2分。

(A)2 * A分,其中A是平衡括号字符串,例如“(())”2*1=2

提示:可用栈实现,括号在栈中可用0代替,遇到左括号进栈,遇到右括号出栈后算分,算出局部分数后,可以将该分数重新压入栈中。

', '

输入仅一行,即为平衡括号字符串。

', '

输出该字符串的得分。

', '[{"input": "()", "output": "1"}, {"input": "()()", "output": "2"}, {"input": "(())", "output": "2"}, {"input": "(()(()))", "output": "6"}]', '3abfbaa75db66f278c07284220b760f5', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 64, 19, 511, 3, '{"0": 19, "4": 3, "-1": 24, "-2": 18}', 0, 44, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (82, 'test4', '

test4

', '

test4

', '

test4

', '[{"input": "test4", "output": "test4"}]', '3ac1d31bc400d806ef8f70078f29ce7b', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 4, '{}', 0, 1, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (119, '矩阵求和', '

给定一个n*m的矩阵,矩阵上的每个格子上都有一个权值。

现在有q次询问,每次询问给出一个子矩阵的左上角$(x_1,y_1)$和右下角$(x_2,y_2)$,求该子矩阵的权值和。

', '

第一行给定三个整数n,m,q。$(1 \leq n,m \leq 1000, 1 \leq q \leq 100000)$

接下来q行,每行四个整数$x_1,y_1,x_2,y_2$表示询问。$(1 \leq x_1 \leq x_2 \leq n, 1 \leq y_1 \leq y_2 \leq m)$

接下来n行,每行m个大小权值不超过1000的整数,表示矩阵。

', '

输出q行,每行一个整数表示答案。

', '[{"input": "3 3 3\n1 1 1 1\n1 2 2 3\n2 2 3 3\n1 2 3\n4 5 6\n7 8 9", "output": "1\n16\n28"}]', '3c0fa77fe5af6a70d1894d610d90a87c', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 138, 7, 1, 'E', '{"0": 7, "1": 53, "4": 25, "-1": 43, "-2": 10}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (266, '使用函数验证哥德巴赫猜想', '

本题要求实现一个判断素数的简单函数,并利用该函数验证哥德巴赫猜想:任何一个不小于6的偶数均可表示为两个奇素数之和。最后给定两个整数m和n,按顺序输出满足条件的数,并按一定形式输出。(素数就是只能被1和自身整除的正整数。注意:1不是素数,2是素数。)

函数接口定义:

int prime( int p );

void Goldbach( int n );

其中函数prime当用户传入参数p为素数时返回1,否则返回0;函数Goldbach按照格式“n=p+q”输出n的素数分解,其中p≤q均为素数。又因为这样的分解不唯一(例如24可以分解为5+19,还可以分解为7+17),要求必须输出所有解中p最小的解。

', '

一行两个整数m和n。(6 <= m <= n <= 1000)。

', '

输出若干行,每行以“n=p+q”的格式输出。

', '[{"input": "89 100", "output": "90=7+83\n92=3+89\n94=5+89\n96=7+89\n98=19+79\n100=3+97\n"}]', '3c481b3a1c2a619452da25b01bcfa63c', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 45, 25, 1, '1-118', '{"0": 25, "1": 1, "-1": 16, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (250, '使用函数验证哥德巴赫猜想', '

本题要求实现一个判断素数的简单函数,并利用该函数验证哥德巴赫猜想:任何一个不小于6的偶数均可表示为两个奇素数之和。最后给定两个整数m和n,按顺序输出满足条件的数,并按一定形式输出。(素数就是只能被1和自身整除的正整数。注意:1不是素数,2是素数。)

函数接口定义:

int prime( int p );

void Goldbach( int n );

其中函数prime当用户传入参数p为素数时返回1,否则返回0;函数Goldbach按照格式“n=p+q”输出n的素数分解,其中p≤q均为素数。又因为这样的分解不唯一(例如24可以分解为5+19,还可以分解为7+17),要求必须输出所有解中p最小的解。

', '

一行两个整数m和n。(6 <= m <= n <= 1000)。

', '

输出若干行,每行以“n=p+q”的格式输出。

', '[{"input": "89 100", "output": "90=7+83\n92=3+89\n94=5+89\n96=7+89\n98=19+79\n100=3+97\n"}]', '3c481b3a1c2a619452da25b01bcfa63c', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 215, 96, 1, '6-5', '{"0": 96, "1": 38, "4": 2, "-1": 65, "-2": 14}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (306, '删除字符', '

本题要求实现一个删除字符串中的指定字符的简单函数。

函数接口定义:

void delchar( char *str, char c );

其中char *str是传入的字符串,c是待删除的字符。函数delchar的功能是将字符串str中出现的所有c字符删除。

', '

第一行一个字符c。

第二行一个字符串str。

', '

一行一个字符串,表示字符串str删除字符c后的字符串。

', '[{"input": "a\nhappy new year\n", "output": "hppy new yer"}]', '3cc312f60e1d1657a1a98b64106e9207', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 117, 30, 1, '1-135', '{"0": 30, "4": 15, "-1": 67, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (257, '安排任务', '

给你一堆存在时间冲突的任务,需要你合理安排,尽可能多完成一些任务。假设你已经知道了所有任务的开始和结束时间,你会合理安排吗?(目标是尽可能完成更多的任务)

', '

输入数据包含多个测试实例,每个测试实例的第一行只有一个整数n(n<=100),表示需要安排的任务总数,然后是n行数据,每行包括两个数据Ti_s,Ti_e (1<=i<=n),分别表示第i个任务的开始和结束时间,为了简化问题,每个时间都用一个正整数表示。n=0表示输入结束,不做处理。

', '

对于每个测试实例,输出能完成的任务个数,每个测试实例的输出占一行。

', '[{"input": "9\n1 4\n0 7\n3 8\n10 15\n8 18\n6 12\n5 10\n4 14\n2 9\n0\n", "output": "3"}]', '3ee37ed04f34221d708552ccac45df03', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 177, 36, 1, 'D', '{"0": 36, "1": 2, "2": 1, "4": 5, "-1": 100, "-2": 33}', 0, 25, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (447, '分割数组', '

给定一个长度为n的非负整数数组和一个整数 m,将这个数组分成 m 个非空的连续子数组,每个子数组内所有数据的和被称为该子数组的分数。对于任意一种分割方案,其对应的所有子数组分数的最大值,记为该次分割方案的分数。请问所有分割方案的分数的最小值是多少?

解释:假设数组为[7, 2, 5, 10, 8], m=2。给定一种分割方案为[7,2], [5,10,8]。那两个子数组的分数分别为为9和23,该分割方案的分数为23(两个子数组分数的最大值).

', '

分别输入数组的长度n和整数m的值;

依次输入数组中的n个非负整数。

', '

输出所有分割方案的分数的最小值。(行末尾无空格)

', '[{"input": "5 2\n7 2 5 10 8\n", "output": "18"}]', '3f5eaa93bddf2aace8f91f4a8918e04b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 113, 12, 1, 'D', '{"0": 12, "1": 3, "4": 8, "-1": 77, "-2": 13}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (537, '数组合并输出', '

给定两个长度相等的数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

第一行输入整数k表示数组长度

第二、第三行分别输入两个数组,数组元素以空格分隔

', '

从大到小输出合并好的数组,数组元素以空格分隔

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '3fbc76722e7558cc08db4090e5c1596a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-14', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (515, '数组合并输出', '

给定两个长度相等的数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

第一行输入整数k表示数组长度

第二、第三行分别输入两个数组,数组元素以空格分隔

', '

从大到小输出合并好的数组,数组元素以空格分隔

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '3fbc76722e7558cc08db4090e5c1596a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 593, 14, 1, 2, '{"0": 14, "1": 188, "4": 196, "-1": 134, "-2": 61}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (538, '数组合并输出', '

给定两个长度相等的数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

第一行输入整数k表示数组长度

第二、第三行分别输入两个数组,数组元素以空格分隔

', '

从大到小输出合并好的数组,数组元素以空格分隔

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '3fbc76722e7558cc08db4090e5c1596a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 194, 25, 1, 2, '{"0": 25, "1": 60, "4": 39, "-1": 61, "-2": 9}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (546, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', '3fdf1e4b81e86b0d7089436df1783063', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用递归

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 101, 34, 1, 8, '{"0": 34, "1": 4, "4": 3, "-1": 39, "-2": 21}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (545, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', '3fdf1e4b81e86b0d7089436df1783063', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用递归

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-16', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (518, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', '3fdf1e4b81e86b0d7089436df1783063', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用递归

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 6, 1, 8, '{"0": 6, "1": 5, "4": 2, "-1": 41, "-2": 8}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (59, '升序排序', '

有x,y,z三个数,将三个数从小到大print出来。

', '

依次输入三个整数,用空格隔开

', '

输出排序后的结果

', '[{"input": "4 5 3", "output": "[3, 4, 5]"}]', '40861eb97d75aa13b678bdecb003d164', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-2', '{}', 0, 7, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (225, '出租车计价', '

某城市普通出租车收费标准如下:起步里程为3公里,起步费10元,起步超过里程后10公里内,每公里2元;超过10公里以上的部分加收50%的空驶补贴费,即每公里3元;运营过程中,因路阻及乘客要求临时停车的,每5分钟2元计收(不足五分钟则不收费)。运价计费位数四舍五入,保留到元。编写程序,输入行驶路程(公里)与等待时间(分钟),计算并输出乘客应支付费用(元)。

', '

输入double类型的两个浮点数,分别表示里程数和等待时间。

', '

输出计程车所收费用结果四舍五入。

', '[{"input": "4.25 9.5", "output": "15"}]', '411a88d4add9fe58ad1ad703ff3bfee1', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 126, 25, 358, '1-93', '{"0": 25, "4": 3, "-1": 87, "-2": 11}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (203, '出租车计价', '

某城市普通出租车收费标准如下:起步里程为3公里,起步费10元,超出起步时:  3公里以上10公里以内的部分(包含十公里),每公里2元;超过10公里以上的部分加收50%的空驶补贴费,即每公里3元;运营过程中,因路阻及乘客要求临时停车的,每5分钟2元计收(不足五分钟则不收费)。运价计费位数四舍五入,保留到元。编写程序,输入行驶路程(公里)与等待时间(分钟),计算并输出乘客应支付费用(元)。

', '

输入double类型的两个浮点数,分别表示里程数和等待时间。

', '

输出计程车所收费用结果四舍五入。

', '[{"input": "4.25 9.5", "output": "15"}]', '411a88d4add9fe58ad1ad703ff3bfee1', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 548, 98, 358, '3-3', '{"0": 98, "4": 1, "-1": 392, "-2": 57}', 0, 21, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (464, '检查密码 (15分)', '

登入网站是一般需要输入密码。现在写一个自动检查用户密码的程序。具体要求如下:

密码不少于6个字符组成,且不能超过30个字符。密码只能有英文字母、数字和小数点 `.`,还必须既有字母也有数字。

- 如果密码合法,输出 yes

- 如果密法太长,不论合法与否,都输出 too long

- 如果密码太短,不论合法与否,都输出 too short

- 如果密码长度合法,但存在不合法字符,则输出 illegal char

- 如果密码长度合法,但只有字母没有数字,则输出 need num

- 如果密码长度合法,但只有数字没有字母,则输出 need char

每次只输出一种提醒,提醒种类优先级由上到下依次递减。

', '

输入为一行密码

', '

输出为判断密码结果的信息。输出的信息首尾不能有空格。

', '[{"input": "Ecun.2020", "output": "yes"}, {"input": "Ecun 2020", "output": "illegal char"}]', '419d85420ff35abf3174a5f64dd9c6c0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 15, 1, 1, 7, '{"0": 1, "4": 11, "-1": 3}', 0, 55, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (553, '检查密码 (15分)', '

登入网站是一般需要输入密码。现在写一个自动检查用户密码的程序。具体要求如下:

密码不少于6个字符组成,且不能超过30个字符。密码只能有英文字母、数字和小数点 `.`,还必须既有字母也有数字。

- 如果密码合法,输出 yes

- 如果密法太长,不论合法与否,都输出 too long

- 如果密码太短,不论合法与否,都输出 too short

- 如果密码长度合法,但存在不合法字符,则输出 illegal char

- 如果密码长度合法,但只有字母没有数字,则输出 need num

- 如果密码长度合法,但只有数字没有字母,则输出 need char

每次只输出一种提醒,提醒种类优先级由上到下依次递减。

', '

输入为一行密码

', '

输出为判断密码结果的信息。输出的信息首尾不能有空格。

', '[{"input": "Ecun.2020", "output": "yes"}, {"input": "Ecun 2020", "output": "illegal char"}]', '419d85420ff35abf3174a5f64dd9c6c0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-17', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (554, '检查密码', '

登入网站是一般需要输入密码。现在写一个自动检查用户密码的程序。具体要求如下:

密码不少于6个字符组成,且不能超过30个字符。密码只能有英文字母、数字和小数点 `.`,还必须既有字母也有数字。

- 如果密码合法,输出 yes

- 如果密法太长,不论合法与否,都输出 too long

- 如果密码太短,不论合法与否,都输出 too short

- 如果密码长度合法,但存在不合法字符,则输出 illegal char

- 如果密码长度合法,但只有字母没有数字,则输出 need num

- 如果密码长度合法,但只有数字没有字母,则输出 need char

每次只输出一种提醒,提醒种类优先级由上到下依次递减。

', '

输入为一行密码

', '

输出为判断密码结果的信息。输出的信息首尾不能有空格。

', '[{"input": "Ecun.2020", "output": "yes"}, {"input": "Ecun 2020", "output": "illegal char"}]', '419d85420ff35abf3174a5f64dd9c6c0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 6, '{}', 0, 63, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (58, '统计字符串中单词出现次数', '

给定一个字符串列表,统计字符串列表中每种字符出现次数。

', '

输入一串英文字符(a-z或者A-Z),不包括其余之外任何字符

', '

输出字符串中每种字符出现的次数

注意:大小写字符分别统计

', '[{"input": "abddkn", "output": "{''a'': 1, ''b'': 1, ''d'': 2, ''k'': 1, ''n'': 1}"}, {"input": "FFkadkfs", "output": "{''F'': 2, ''k'': 2, ''a'': 1, ''d'': 1, ''f'': 1, ''s'': 1}"}]', '41dcf9d0f7aa2b82157c320f1f5c78a8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, '1-1', '{}', 0, 7, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (550, '字符串排序', '

输入若干个单词,按字典序将单词输出

', '

输入一行,由多个单词组成(单词间由空格分隔),字符串以换行符结尾

', '

按照字典序排列,每行输出一个单词

', '[{"input": "data science days", "output": "data\ndays\nscience"}, {"input": "aa ab ac b a", "output": "a\naa\nab\nac\nb"}]', '41fd9e202059cb03f3ef3ecdde6ba7ce', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

单词由26个小写英文组成

字典序:

在字典序中,'a'<'b'<'c'< ... < 'z'

从每个单词的第一个字符开始比较,例如'apple' 排在' banana'前

若第一个字符相同,则比较第二个字符,例如'apple'排在'angel'前

以此类推,得到所有单词的字典序排列

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 8, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (295, '使用函数实现字符串部分复制', '

本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s中。

函数接口定义:

void strmcpy( char *t, int m, char *s );

函数strmcpy将输入字符串char *t中从第m个字符开始的全部字符复制到字符串char *s中。若m超过输入字符串的长度,则结果字符串应为空串。

', '

第一行一个整数m。

第二行一个字符串t。

', '

一个字符串s。

', '[{"input": "7\nhappy new year\n", "output": "new year"}]', '43f20450615b45df9fc34203cf7a429b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 352, 88, 1, '8-5', '{"0": 88, "1": 1, "4": 62, "-1": 149, "-2": 52}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (305, '使用函数实现字符串部分复制', '

本题要求编写函数,将输入字符串t中从第m个字符开始的全部字符复制到字符串s中。

函数接口定义:

void strmcpy( char *t, int m, char *s );

函数strmcpy将输入字符串char *t中从第m个字符开始的全部字符复制到字符串char *s中。若m超过输入字符串的长度,则结果字符串应为空串。

', '

第一行一个整数m。

第二行一个字符串t。

', '

一个字符串s。

', '[{"input": "7\nhappy new year\n", "output": "new year"}]', '43f20450615b45df9fc34203cf7a429b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 118, 43, 1, '1-134', '{"0": 43, "4": 15, "-1": 50, "-2": 10}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (502, '使用函数求双阶乘(15分)', '

双阶乘是一个数学概念,用n!!表示。正整数的双阶乘表示不超过这个正整数且与它有相同奇偶性的所有正整数乘积。

本题要求实现双阶乘函数fac(x)。

函数接口定义:

long long fac( int x );

其中x是用户传入的整型参数,返回双阶乘。

', '

一行一个正整数n。(1<=n<=20,保证答案不超过long long范围)

', '

一行一个整数表示答案。(格式控制说明为‘%lld’)

', '[{"input": "4", "output": "8"}]', '4568868a9babcbc07be93277e8056391', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 228, 58, 1, 5, '{"0": 58, "1": 9, "4": 2, "-1": 107, "-2": 52}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (46, '买不到的数目', '

小明开了一家糖果店。他别出心裁:把水果糖包成4颗一包和7颗一包的两种。糖果不能拆包卖。

小朋友来买糖的时候,他就用这两种包装来组合。当然有些糖果数目是无法组合出来的,比如要买 10 颗糖。

你可以用计算机测试一下,在这种包装情况下,最大不能买到的数量是17。大于17的任何数字都可以用4和7组合出来。

本题的要求就是在已知两个包装的数量时,求最大不能组合出的数字。

', '

两个正整数,表示每种包装中糖的颗数(都不多于1000)

', '

一个正整数,表示最大不能买到的糖数

', '[{"input": "4 7\n", "output": "17"}, {"input": "3 5\n", "output": "7\n"}]', '45b174357fdecc974ec64e63508404a7', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 51, 25, 1, '1-42', '{"0": 25, "1": 8, "4": 2, "-1": 15, "-2": 1}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (86, '找球游戏', '

华师大一年一度的新春游园会上有一个非常有趣的游戏,名为找球游戏。

游戏规则为:在现有的一堆球中,每个球上都有一个整数编号i(0<=i<=100000000),编号可重复,还有一个空箱子。
现在有三种动作:一种是"ADD",表示向空箱子里放m(0<m<=100)个球,另一种是“DELETE”,表示从箱子里拿走m个球(拿走的球必然是箱子里有的),还有一种是"QUERY”,表示说出M(0<M<=100)个随机整数ki(0<=ki<=100000100),分别判断编号为ki 的球是否在这个空箱子中(存在为"YES",否则为"NO"),先答出者为胜。小华很想玩玩这个游戏,但他又很懒。所以他希望你能帮助他取得胜利。

', '

第一行有一个整数n(0<n<=10000);

随后有n行;

每行可能出现如下的任意一种形式:

第一种:一个字符串"ADD",接着是一个整数m,随后有m个i;

第二种:一个字符串"DELETE”,接着是一个整数s,随后有l个si;

第三种:一个字符串"QUERY”,接着是一个整数M,随后有M个ki;

', '

输出每次询问的结果"YES"或"NO".

', '[{"input": "2\nADD 5 34 343 54 6 2\nQUERY 4 34 54 33 66\n", "output": "YES\nYES\nNO\nNO\n"}]', '45f381399d00a097e35b4d87e1ff0848', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 115, 2, 1, 4, '{"0": 2, "3": 1, "4": 13, "-1": 87, "-2": 12}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (288, '判断上三角矩阵', '

输入一个正整数n(1<=n<=6)n阶方阵a中的元素,如果a是上三角矩阵,输出”YES”,否则输出“NO”。

', '

输入一个正整数n(1<=n<=6)n阶方阵a中的元素,方阵中a的元素为整数形式

', '

如果a是上三角矩阵,输出”YES”,否则输出“NO”。

', '[{"input": "3\n1 2 3\n4 5 6\n0 12 8", "output": "NO"}, {"input": "3\n1 2 3\n0 1 2\n0 0 1", "output": "YES"}]', '45ff0627ed45231a659fee0da0677bfc', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

上三角矩阵指主对角线以下的元素全都为零的矩阵,主对角线为矩阵的左上角至右下角的连线。试编写相应程序。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 45, 27, 358, '1-127', '{"0": 27, "-1": 15, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (283, '判断上三角矩阵', '

输入一个正整数n(1<=n<=6)n阶方阵a中的元素,如果a是上三角矩阵,输出”YES”,否则输出“NO”。

', '

输入一个正整数n(1<=n<=6)n阶方阵a中的元素,方阵中a的元素为整数形式

', '

如果a是上三角矩阵,输出”YES”,否则输出“NO”。

', '[{"input": "3\n1 2 3\n4 5 6\n0 12 8", "output": "NO"}, {"input": "3\n1 2 3\n0 1 2\n0 0 1", "output": "YES"}]', '45ff0627ed45231a659fee0da0677bfc', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

上三角矩阵指主对角线以下的元素全都为零的矩阵,主对角线为矩阵的左上角至右下角的连线。试编写相应程序。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 198, 99, 358, '7-3', '{"0": 99, "1": 4, "4": 6, "-1": 69, "-2": 20}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (403, '扫雷游戏1(函数)', '

扫雷游戏是一款十分经典的单机小游戏。

现在有个简易版扫雷游戏:在1行m列的雷区中有一些格子含有地雷(称之为地雷格),其他格子不含地雷(称之为非地雷格)。玩家翻开一个非地雷格时,该格将会出现一个数字——提示周围格子中有多少个是地雷格。游戏的目标是在不翻出任何地雷格的条件下,找出所有的非地雷格。

现在给出1行m列的雷区中的地雷分布,要求计算出每个非地雷格周围的地雷格数。

注:一个格子的周围格子包括其左、右两个方向上与之直接相邻的格子。

注意:请使用函数接口void transMap(char* input,char* output) 完成题目,其中input是传入字符串,output是最后要输出的字符串

', '

输入文件第一行是一个整数m,表示雷区的列数。(1 <= m <= 100)

接下来一行,每行m个字符,描述了雷区中的地雷分布情况。字符’*’表示相应格子是地雷格,字符’?’表示相应格子是非地雷格。相邻字符之间无分隔符。

', '

输出文件包含1行m个字符,描述整个雷区。用’*’表示地雷格,用周围的地雷个数表示非地雷格。相邻字符之间无分隔符。

', '[{"input": "3\n*??", "output": "*10"}, {"input": "3\n???", "output": "000"}, {"input": "3\n?*?", "output": "1*1"}]', '46815d96c9affb4befcc1e673cc7728c', '[{"score": 13, "input_name": "1.in", "output_name": "1.out"}, {"score": 13, "input_name": "2.in", "output_name": "2.out"}, {"score": 13, "input_name": "3.in", "output_name": "3.out"}, {"score": 13, "input_name": "4.in", "output_name": "4.out"}, {"score": 13, "input_name": "5.in", "output_name": "5.out"}, {"score": 13, "input_name": "6.in", "output_name": "6.out"}, {"score": 13, "input_name": "7.in", "output_name": "7.out"}, {"score": 13, "input_name": "8.in", "output_name": "8.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 17, 6, 1, '1-180', '{"0": 6, "4": 9, "-1": 1, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (400, '扫雷游戏1(函数)', '

扫雷游戏是一款十分经典的单机小游戏。

现在有个简易版扫雷游戏:在1行m列的雷区中有一些格子含有地雷(称之为地雷格),其他格子不含地雷(称之为非地雷格)。玩家翻开一个非地雷格时,该格将会出现一个数字——提示周围格子中有多少个是地雷格。游戏的目标是在不翻出任何地雷格的条件下,找出所有的非地雷格。

现在给出1行m列的雷区中的地雷分布,要求计算出每个非地雷格周围的地雷格数。

注:一个格子的周围格子包括其左、右两个方向上与之直接相邻的格子。

注意:请使用函数接口void transMap(char* input,char* output) 完成题目,其中input是传入字符串,output是最后要输出的字符串

', '

输入文件第一行是一个整数m,表示雷区的列数。(1 <= m <= 100)

接下来一行,每行m个字符,描述了雷区中的地雷分布情况。字符’*’表示相应格子是地雷格,字符’?’表示相应格子是非地雷格。相邻字符之间无分隔符。

', '

输出文件包含1行m个字符,描述整个雷区。用’*’表示地雷格,用周围的地雷个数表示非地雷格。相邻字符之间无分隔符。

', '[{"input": "3\n*??", "output": "*10"}, {"input": "3\n???", "output": "000"}, {"input": "3\n?*?", "output": "1*1"}]', '46815d96c9affb4befcc1e673cc7728c', '[{"score": 13, "input_name": "1.in", "output_name": "1.out"}, {"score": 13, "input_name": "2.in", "output_name": "2.out"}, {"score": 13, "input_name": "3.in", "output_name": "3.out"}, {"score": 13, "input_name": "4.in", "output_name": "4.out"}, {"score": 13, "input_name": "5.in", "output_name": "5.out"}, {"score": 13, "input_name": "6.in", "output_name": "6.out"}, {"score": 13, "input_name": "7.in", "output_name": "7.out"}, {"score": 13, "input_name": "8.in", "output_name": "8.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 101, 20, 1, 1, '{"0": 20, "1": 2, "4": 1, "-1": 73, "-2": 5}', 0, 35, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (110, '国王的烦恼', '

  C国由n个小岛组成,为了方便小岛之间联络,C国在小岛间建立了m座大桥,每座大桥连接两座小岛。两个小岛间可能存在多座桥连接。然而,由于海水冲刷,有一些大桥面临着不能使用的危险。

  如果两个小岛间的所有大桥都不能使用,则这两座小岛就不能直接到达了。然而,只要这两座小岛的居民能通过其他的桥或者其他的小岛互相到达,他们就会安然无事。但是,如果前一天两个小岛之间还有方法可以到达,后一天却不能到达了,居民们就会一起抗议。

  现在C国的国王已经知道了每座桥能使用的天数,超过这个天数就不能使用了。现在他想知道居民们会有多少天进行抗议。

', '

  输入的第一行包含两个整数n, m,分别表示小岛的个数和桥的数量。
  接下来m行,每行三个整数a, b, t,分别表示该座桥连接a号和b号两个小岛,能使用t天。小岛的编号从1开始递增。

', '

  输出一个整数,表示居民们会抗议的天数。

', '[{"input": "4 4\n1 2 2\n1 3 2\n2 3 1\n3 4 3\n", "output": "2"}]', '478fac221378de5fdb00bdbb61dbab94', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例说明

  第一天后2和3之间的桥不能使用,不影响。
  第二天后1和2之间,以及1和3之间的桥不能使用,居民们会抗议。
  第三天后3和4之间的桥不能使用,居民们会抗议。

数据规模和约定

  对于30%的数据,1<=n<=20,1<=m<=100;
  对于50%的数据,1<=n<=500,1<=m<=10000;
  对于100%的数据,1<=n<=10000,1<=m<=100000,1<=a, b<=n, 1<=t<=100000。

', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 7, 5, 1, '1-5', '{"0": 5, "-1": 1, "-2": 1}', 0, 12, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (44, '国王的烦恼', '

C国由n个小岛组成,为了方便小岛之间联络,C国在小岛间建立了m座大桥,每座大桥连接两座小岛。两个小岛间可能存在多座桥连接。然而,由于海水冲刷,有一些大桥面临着不能使用的危险。

如果两个小岛间的所有大桥都不能使用,则这两座小岛就不能直接到达了。然而,只要这两座小岛的居民能通过其他的桥或者其他的小岛互相到达,他们就会安然无事。但是,如果前一天两个小岛之间还有方法可以到达,后一天却不能到达了,居民们就会一起抗议。

现在C国的国王已经知道了每座桥能使用的天数,超过这个天数就不能使用了。现在他想知道居民们会有多少天进行抗议。

', '

输入的第一行包含两个整数n, m,分别表示小岛的个数和桥的数量。
接下来m行,每行三个整数a, b, t,分别表示该座桥连接a号和b号两个小岛,能使用t天。小岛的编号从1开始递增。

', '

输出一个整数,表示居民们会抗议的天数。

', '[{"input": "4 4\n1 2 2\n1 3 2\n2 3 1\n3 4 3\n", "output": "2"}]', '478fac221378de5fdb00bdbb61dbab94', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例说明

第一天后2和3之间的桥不能使用,不影响。
第二天后1和2之间,以及1和3之间的桥不能使用,居民们会抗议。
第三天后3和4之间的桥不能使用,居民们会抗议。

数据规模和约定

对于30%的数据,1<=n<=20,1<=m<=100;
对于50%的数据,1<=n<=500,1<=m<=10000;
对于100%的数据,1<=n<=10000,1<=m<=100000,1<=a, b<=n, 1<=t<=100000。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 26, 10, 1, '1-33', '{"0": 10, "1": 7, "3": 2, "-1": 5, "-2": 2}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (286, '找鞍点', '

输入1个整数n1<=n<=6)和n阶方阵a中的元素,假设方阵a最多有1个鞍点,如果找到a的鞍点,就输出其下标,否则,输出“NO”。鞍点的元素值在该行上最大,该列上最小,试编写相应程序。

', '

输入1个整数n1<=n<=6)和n阶方阵a中的元素,元素为整数形式

', '

如果找到a的鞍点,就输出其下标,否则,输出“NO”.

', '[{"input": "3\n1 2 3\n4 5 6\n7 8 9", "output": "0 2"}]', '483f164b0816e06f88bbdf948a6fc080', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

鞍点的元素值在该行上最大,该列上最小,试编写相应程序。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 128, 39, 358, '1-125', '{"0": 39, "4": 2, "-1": 79, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (220, '求交错序列前n项的和', '

输入一个正整数n,计算交错序列1-2/3+3/5-4/7+5/9-6/11+……的前n项之和,试编写相应程序。

', '

输入一个整数形式n

', '

输出数值为double形式,最后保留小数点后六位。

', '[{"input": "56", "output": "0.390467"}]', '48764080d3212f9d640b2090fbe9b695', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 51, 30, 358, '1-87', '{"0": 30, "-1": 13, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (191, '求交错序列前n项的和', '

输入一个正整数n,计算交错序列1-2/3+3/5-4/7+5/9-6/11+……的前n项之和,试编写相应程序。

', '

输入一个整数形式n

', '

输出数值为double形式,最后保留小数点后六位。

', '[{"input": "56", "output": "0.390467"}]', '48764080d3212f9d640b2090fbe9b695', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 314, 101, 358, '2-4', '{"0": 101, "1": 15, "4": 16, "-1": 129, "-2": 53}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (260, '链表维护', '

给定一个起始长度为n的单链表head->a[1]->a[2]->…->a[n](head为空头节点),有一个p指针初始指向head。现在有Q次操作,每次操作为以下两种中的一种:1.如果p指针有下一个节点,则跳转到下一个节点;2.在p指针节点后插入一个值为val的节点。

Q次操作后请输出当前的单链表。

', '

第一行一个整数n。(1<=n<=100000)

第二行有n个正整数表示单链表。

第三行一个整数Q。(1<=q<=100000)

接下来Q行,每行先输入一个值x表示操作编号:x=1,表示操作1;x=2,接下来输入一个值val。

', '

输出一行,每个整数后空一格。

', '[{"input": "5\n1 2 3 4 5\n6\n2 10\n1\n1\n1\n1\n2 11\n", "output": "10 1 2 3 11 4 5 \n"}]', '4906ff64b5d2bf89aceab7568185b65f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

第一次操作,p指针指向head,插入10,单链表变成10 1 2 3 4 5。

第二次操作,p指针指向head,p指针有下一节点,执行跳转。

第三次操作,p指针指向10,p指针有下一节点,执行跳转。

第四次操作,p指针指向1,p指针有下一节点,执行跳转。

第五次操作,p指针指向2,p指针有下一节点,执行跳转。

第六次操作,p指针指向3,插入11,单链表变成10 1 2 3 11 4 5。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 169, 26, 1, 'G', '{"0": 26, "1": 41, "2": 1, "4": 41, "-1": 42, "-2": 18}', 0, 25, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (179, '链表操作', '

给定一个起始长度为n的单链表head->a[1]->a[2]->…->a[n](head为空头节点),有一个p指针初始指向head。现在有Q次操作,每次操作为以下两种中的一种:1.如果p指针有下一个节点,则跳转到下一个节点;2.在p指针节点后插入一个值为val的节点。

Q次操作后请输出当前的单链表。

', '

第一行一个整数n。(1<=n<=100000)

第二行有n个正整数表示单链表。

第三行一个整数Q。(1<=q<=100000)

接下来Q行,每行先输入一个值x表示操作编号:x=1,表示操作1;x=2,接下来输入一个值val。

', '

输出一行,每个整数后空一格。

', '[{"input": "5\n1 2 3 4 5\n6\n2 10\n1\n1\n1\n1\n2 11\n", "output": "10 1 2 3 11 4 5 \n"}]', '4906ff64b5d2bf89aceab7568185b65f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

第一次操作,p指针指向head,插入10,单链表变成10 1 2 3 4 5。

第二次操作,p指针指向head,p指针有下一节点,执行跳转。

第三次操作,p指针指向10,p指针有下一节点,执行跳转。

第四次操作,p指针指向1,p指针有下一节点,执行跳转。

第五次操作,p指针指向2,p指针有下一节点,执行跳转。

第六次操作,p指针指向3,插入11,单链表变成10 1 2 3 11 4 5。

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 77, 21, 1, '1-78', '{"0": 21, "1": 5, "4": 22, "-1": 16, "-2": 13}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (171, '链表操作', '

给定一个起始长度为n的单链表head->a[1]->a[2]->…->a[n](head为空头节点),有一个p指针初始指向head。现在有Q次操作,每次操作为以下两种中的一种:1.如果p指针有下一个节点,则跳转到下一个节点;2.在p指针节点后插入一个值为val的节点。

Q次操作后请输出当前的单链表。

', '

第一行一个整数n。(1<=n<=100000)

第二行有n个正整数表示单链表。

第三行一个整数Q。(1<=q<=100000)

接下来Q行,每行先输入一个值x表示操作编号:x=1,表示操作1;x=2,接下来输入一个值val。

', '

输出一行,每个整数后空一格。

', '[{"input": "5\n1 2 3 4 5\n6\n2 10\n1\n1\n1\n1\n2 11\n", "output": "10 1 2 3 11 4 5 \n"}]', '4906ff64b5d2bf89aceab7568185b65f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

第一次操作,p指针指向head,插入10,单链表变成10 1 2 3 4 5。

第二次操作,p指针指向head,p指针有下一节点,执行跳转。

第三次操作,p指针指向10,p指针有下一节点,执行跳转。

第四次操作,p指针指向1,p指针有下一节点,执行跳转。

第五次操作,p指针指向2,p指针有下一节点,执行跳转。

第六次操作,p指针指向3,插入11,单链表变成10 1 2 3 11 4 5。

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 6, 1, 1, 6, '{"0": 1, "4": 5}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (68, '数的读法', '

 Tom教授正在给研究生讲授一门关于基因的课程,有一件事情让他颇为头疼:一条染色体上有成千上万个碱基对,它们从0开始编号,到几百万,几千万,甚至上亿。

  比如说,在对学生讲解第1234567009号位置上的碱基时,光看着数字是很难准确的念出来的。

  所以,他迫切地需要一个系统,然后当他输入12 3456 7009时,会给出相应的念法:

  十二亿三千四百五十六万七千零九

  用汉语拼音表示为

  shi er yi san qian si bai wu shi liu wan qi qian ling jiu

  这样他只需要照着念就可以了。

  你的任务是帮他设计这样一个系统:给定一个阿拉伯数字串,你帮他按照中文读写的规范转为汉语拼音字串,相邻的两个音节用一个空格符格开。

  注意必须严格按照规范,比如说“10010”读作“yi wan ling yi shi”而不是“yi wan ling shi”,“100000”读作“shi wan”而不是“yi shi wan”,“2000”读作“er qian”而不是“liang qian”。

', '

 有一个数字串,数值大小不超过2,000,000,000。

', '

是一个由小写英文字母,逗号和空格组成的字符串,表示该数的英文读法。

', '[{"input": "1234567009", "output": "shi er yi san qian si bai wu shi liu wan qi qian ling jiu"}]', '4939aa00eeeeb6e93e107ff05a3bb034', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 509, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-7', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (23, '数的读法', '

Tom教授正在给研究生讲授一门关于基因的课程,有一件事情让他颇为头疼:一条染色体上有成千上万个碱基对,它们从0开始编号,到几百万,几千万,甚至上亿。

比如说,在对学生讲解第1234567009号位置上的碱基时,光看着数字是很难准确的念出来的。

所以,他迫切地需要一个系统,然后当他输入12 3456 7009时,会给出相应的念法:

十二亿三千四百五十六万七千零九

用汉语拼音表示为

shi er yi san qian si bai wu shi liu wan qi qian ling jiu

这样他只需要照着念就可以了。

你的任务是帮他设计这样一个系统:给定一个阿拉伯数字串,你帮他按照中文读写的规范转为汉语拼音字串,相邻的两个音节用一个空格符格开。

注意必须严格按照规范,比如说“10010”读作“yi wan ling yi shi”而不是“yi wan ling shi”,“100000”读作“shi wan”而不是“yi shi wan”,“2000”读作“er qian”而不是“liang qian”。

', '

有一个数字串,数值大小不超过2,000,000,000。

', '

是一个由小写英文字母,逗号和空格组成的字符串,表示该数的英文读法。

', '[{"input": "1234567009", "output": "shi er yi san qian si bai wu shi liu wan qi qian ling jiu"}]', '4939aa00eeeeb6e93e107ff05a3bb034', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 509, false, null, null, null, 'ACM', true, 'Low', '', 95, 50, 1, '1-15', '{"0": 50, "4": 1, "-1": 29, "-2": 15}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (213, '高空坠球', '

皮球从height(米)高度自由落下,触地后反弹到原高度的一半再落下,再反弹…… 如此反复。问皮球在n次反弹的高度是多少?输出保留2位小数,试编写相应程序。

', '

输入下放高度height(米)和 n 次反弹。

', '

输出n次反弹的高度(米),保留2位小数,输出为double类型

', '[{"input": "8 4", "output": "0.50"}]', '49a1319c405eb043b4912345c056ed38', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 233, 102, 358, '4-8', '{"0": 102, "1": 2, "4": 3, "-1": 110, "-2": 16}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (314, '使用函数判断三角形(10分)', '

给定n个可选的木棍长度,问是否能够选出3个构成三角形。

注意,你需要实现一个函数ok,来判断传入的三个边长能否构成三角形。

函数接口定义:

int isTriangle( int x, int y, int z);

传入三个边长参数x,y,z,是三角形返回1,否则0。

', '

第一行一个整数n。(3<=n<=20)

第二行n个整数,代表木棍长度a[i]。(1<=a[i]<=10^8)

', '

若能够选出3个构成三角形,输出最小的三角形周长,否则输出“No”。

', '[{"input": "3\n1 2 3\n", "output": "No"}, {"input": "3\n1 2 2\n", "output": "5"}]', '4aac7552a50f872b7e5a752d94c3fd15', '[{"score": 13, "input_name": "1.in", "output_name": "1.out"}, {"score": 13, "input_name": "2.in", "output_name": "2.out"}, {"score": 13, "input_name": "3.in", "output_name": "3.out"}, {"score": 13, "input_name": "4.in", "output_name": "4.out"}, {"score": 13, "input_name": "5.in", "output_name": "5.out"}, {"score": 13, "input_name": "6.in", "output_name": "6.out"}, {"score": 13, "input_name": "7.in", "output_name": "7.out"}, {"score": 13, "input_name": "8.in", "output_name": "8.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 122, 21, 1, 4, '{"0": 21, "1": 2, "4": 24, "-1": 60, "-2": 15}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (2, '2n皇后问题', '

给定一个n*n的棋盘,棋盘中有一些位置不能放皇后。现在要向棋盘中放入n个黑皇后和n个白皇后,使任意的两个黑皇后都不在同一行、同一列或同一条对角线上,任意的两个白皇后都不在同一行、同一列或同一条对角线上。问总共有多少种放法?n小于等于8。

', '

输入的第一行为一个整数n,表示棋盘的大小。  接下来n行,每行n个0或1的整数,如果一个整数为1,表示对应的位置可以放皇后,如果一个整数为0,表示对应的位置不可以放皇后。

', '

输出一个整数,表示总共有多少种放法。

', '[{"input": "4\n1 1 1 1\n1 1 1 1\n1 1 1 1\n1 1 1 1", "output": "2"}, {"input": "4\n1 0 1 1\n1 1 1 1\n1 1 1 1\n1 1 1 1", "output": "0"}]', '4af2a769855717dc9b6625f9d55d64a1', '[{"score": 13, "input_name": "1.in", "output_name": "1.out"}, {"score": 13, "input_name": "2.in", "output_name": "2.out"}, {"score": 13, "input_name": "3.in", "output_name": "3.out"}, {"score": 13, "input_name": "4.in", "output_name": "4.out"}, {"score": 13, "input_name": "5.in", "output_name": "5.out"}, {"score": 13, "input_name": "6.in", "output_name": "6.out"}, {"score": 13, "input_name": "7.in", "output_name": "7.out"}, {"score": 13, "input_name": "8.in", "output_name": "8.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 353, 114, 1, '1-2', '{"0": 114, "1": 10, "4": 31, "-1": 115, "-2": 83}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (3, '2n皇后问题', '

给定一个n*n的棋盘,棋盘中有一些位置不能放皇后。现在要向棋盘中放入n个黑皇后和n个白皇后,使任意的两个黑皇后都不在同一行、同一列或同一条对角线上,任意的两个白皇后都不在同一行、同一列或同一条对角线上。问总共有多少种放法?n小于等于8。

', '

输入的第一行为一个整数n,表示棋盘的大小。  接下来n行,每行n个0或1的整数,如果一个整数为1,表示对应的位置可以放皇后,如果一个整数为0,表示对应的位置不可以放皇后。

', '

 输出一个整数,表示总共有多少种放法。

', '[{"input": "4\n1 1 1 1\n1 1 1 1\n1 1 1 1\n1 1 1 1", "output": "2"}, {"input": "4\n1 0 1 1\n1 1 1 1\n1 1 1 1\n1 1 1 1", "output": "0"}]', '4af2a769855717dc9b6625f9d55d64a1', '[{"score": 13, "input_name": "1.in", "output_name": "1.out"}, {"score": 13, "input_name": "2.in", "output_name": "2.out"}, {"score": 13, "input_name": "3.in", "output_name": "3.out"}, {"score": 13, "input_name": "4.in", "output_name": "4.out"}, {"score": 13, "input_name": "5.in", "output_name": "5.out"}, {"score": 13, "input_name": "6.in", "output_name": "6.out"}, {"score": 13, "input_name": "7.in", "output_name": "7.out"}, {"score": 13, "input_name": "8.in", "output_name": "8.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 3, 1, 1, 1, '{"0": 1, "-2": 2}', 0, 1, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (454, '上台阶问题(10分)', '

一只兔子一次可以跳上1级台阶,也可以跳上2级台阶。求该兔子跳上一个 n级的台阶总共有多少种跳法。请采用递归的思想来解此题。

', '

输入一个正整数n

', '

输出结果数

', '[{"input": "2", "output": "2"}, {"input": "7", "output": "21"}]', '4b907376bf3df7a424bd048dde175cc9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

1 <= n <= 90

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 60000, 256, false, null, null, null, 'ACM', true, 'Low', '', 27, 2, 1, 5, '{"0": 2, "1": 18, "-1": 5, "-2": 2}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (41, '高僧斗法', '

古时丧葬活动中经常请高僧做法事。仪式结束后,有时会有“高僧斗法”的趣味节目,以舒缓压抑的气氛。
节目大略步骤为:先用粮食(一般是稻米)在地上“画”出若干级台阶(表示N级浮屠)。又有若干小和尚随机地“站”在某个台阶上。最高一级台阶必须站人,其它任意。(如图1所示)


两位参加游戏的法师分别指挥某个小和尚向上走任意多级的台阶,但会被站在高级台阶上的小和尚阻挡,不能越过。两个小和尚也不能站在同一台阶,也不能向低级台阶移动。
两法师轮流发出指令,最后所有小和尚必然会都挤在高段台阶,再也不能向上移动。轮到哪个法师指挥时无法继续移动,则游戏结束,该法师认输。
对于已知的台阶数和小和尚的分布位置,请你计算先发指令的法师该如何决策才能保证胜出。

', '

输入数据为一行用空格分开的N个整数,表示小和尚的位置。台阶序号从1算起,所以最后一个小和尚的位置即是台阶的总数。(N<100, 台阶总数<1000)

', '

输出为一行用空格分开的两个整数: A B, 表示把A位置的小和尚移动到B位置。若有多个解,输出A值较小的解,若无解则输出-1。

', '[{"input": "1 5 9", "output": "1 4"}, {"input": "1 5 8 10", "output": "1 3"}]', '4b99f9fa93de9b4b5af0aad1875ec6a3', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 12, 5, 1, '1-30', '{"0": 5, "-1": 6, "-2": 1}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (97, '买糖果', '

万圣节前夕,孩子们会提着南瓜灯,穿着各式各样的稀奇古怪的服装,挨家挨户地去索要糖果,不停地说:“trick or treat”(意思是:“给不给,不给就捣蛋。”)要是你不肯给糖果的话,孩子们就会很生气,用各种方法去惩罚你,例如:把垃圾倒在你家里等等的方法去惩罚你,直到你肯给他们糖果为止。那么问题来了,丁丁有n元钱,商店里每个糖果需要3毛钱,问丁丁最多能买多少糖果,还剩几毛钱。

', '

丁丁拥有的钱n,单位为元,n为整数。

', '

丁丁最多能买多少糖果,还剩几毛钱,用空格分开。

', '[{"input": "2", "output": "6 2"}]', '4c33e102591f69c2b76c62dc37bded76', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 36, 21, 1, 'A', '{"0": 21, "-1": 3, "-2": 12}', 0, 10, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (275, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1\n", "output": "35"}]', '4c41e7b2578cb093c07c606437ee841b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 45, 18, 1, 7, '{"0": 18, "4": 4, "-1": 19, "-2": 4}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (140, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1\n", "output": "35"}]', '4c41e7b2578cb093c07c606437ee841b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 52, 28, 1, '1-63', '{"0": 28, "4": 3, "-1": 19, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (132, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1\n", "output": "35"}]', '4c41e7b2578cb093c07c606437ee841b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 41, 22, 1, 7, '{"0": 22, "2": 3, "4": 2, "-1": 14}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (256, '排座位', '

布置宴席最微妙的事情,就是给前来参宴的各位宾客安排座位。无论如何,总不能把两个死对头排到同一张宴会桌旁!这个艰巨任务现在就交给你,对任何一对客人,请编写程序告诉主人他们是否能被安排同席。

', '

输入第一行给出3个正整数:N(≤100),即前来参宴的宾客总人数,则这些人从1到N编号;M为已知两两宾客之间的关系数;K为查询的条数。随后M行,每行给出一对宾客之间的关系,格式为:宾客1宾客2关系,其中关系为1表示是朋友,-1表示是死对头。注意两个人不可能既是朋友又是敌人。最后K行,每行给出一对需要查询的宾客编号。

这里假设朋友的朋友也是朋友。但敌人的敌人并不一定就是朋友,朋友的敌人也不一定是敌人。只有单纯直接的敌对关系才是绝对不能同席的。

', '

对每个查询输出一行结果:

如果两位宾客之间是朋友,且没有敌对关系,则输出No problem;如果他们之间并不是朋友,但也不敌对,则输出OK;如果他们之间有敌对,然而也有共同的朋友,则输出OKbut...;如果他们之间只有敌对关系,则输出No way

', '[{"input": "7 8 4\n5 6 1\n2 7 -1\n1 3 1\n3 4 1\n6 7 -1\n1 2 1\n1 4 1\n2 3 -1\n3 4\n5 7\n2 3\n7 2\n", "output": "No problem\nOK\nOK but...\nNo way\n"}]', '4d388a262bfff7262fd5dc8ce6a3c811', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 219, 9, 1, 'C', '{"0": 9, "1": 4, "4": 10, "-1": 186, "-2": 10}', 0, 25, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (302, '在数组中查找指定元素', '

本题要求实现一个在数组中查找指定元素的简单函数。

函数接口定义:

int search( int list[], int n, int x );

其中list[]是用户传入的数组;n(≥0)是list[]中元素的个数;x是待查找的元素。如果找到

则函数search返回相应元素的最小下标(下标从0开始),否则返回−1。

', '

第一行一个整数n。

接下来一行n个整数代表数组a。

最后一行一个整数表示要查找的元素x。

', '

输出下标或-1。

', '[{"input": "5\n1 2 2 5 4\n2\n", "output": "1"}, {"input": "5\n1 2 2 5 4\n0\n", "output": "-1"}]', '4dab22a30a637f5b976553bf89d45a08', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 42, 30, 1, '1-131', '{"0": 30, "4": 5, "-1": 4, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (292, '在数组中查找指定元素', '

本题要求实现一个在数组中查找指定元素的简单函数。

函数接口定义:

int search( int list[], int n, int x );

其中list[]是用户传入的数组;n(≥0)是list[]中元素的个数;x是待查找的元素。如果找到

则函数search返回相应元素的最小下标(下标从0开始),否则返回−1。

', '

第一行一个整数n。

接下来一行n个整数代表数组a。

最后一行一个整数表示要查找的元素x。

', '

输出下标或-1。

', '[{"input": "5\n1 2 2 5 4\n2\n", "output": "1"}, {"input": "5\n1 2 2 5 4\n0\n", "output": "-1"}]', '4dab22a30a637f5b976553bf89d45a08', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 175, 94, 1, '8-2', '{"0": 94, "4": 36, "-1": 31, "-2": 14}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (414, 'BinarySearch', '

基于problem 1实现的有序链表,实现二分查找

', '

1、依次输入要插入到链表内的数据(输入-1代表结束)

2、输入要查询的目标值

', '

1、有序输出链表内的所有数据

2、如果链表内包含要查询的目标值,输出目标值的位置(从0开始);如果不包含,输出Target not present!

', '[{"input": "9 8 7 6 5 4 3 2 1 -1\n5", "output": "1 2 3 4 5 6 7 8 9 \n4"}, {"input": "9 8 7 6 5 4 3 2 1 -1\n10", "output": "1 2 3 4 5 6 7 8 9 \nTarget not present!"}]', '4ddb6900125d9c8f5df99d8506f46d78', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 66, 30, 511, 2, '{"0": 30, "4": 1, "-1": 23, "-2": 12}', 0, 40, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (434, '堆排序的应用——TopK', '

有一堆二维坐标点<x1,y1>, <x2, y2>…..<xn, yn>。假定坐标点是一个一个来的,请利用堆,能时刻报告数据中的最小的k项。比如k=1,  有4个坐标数据 <2,2>, <1,1>, <3,3>, <0,0> 依次到来。那么当来第一个<2,2>时, top-1的值是<2,2>, 再来一个数据<1,1>,这时top-1的值变为了 <1,1>, 再来一个<3,3>数据,top-1还是<1,1>, 第四个数据<0,0>到了后,top-1 就变为了 <0,0>。

', '

输入部分包括几个部分:

第一行,两个整型数,表示输入的坐标个数N以及K值。

第二行至第N+1行,每行包括两个整型数,分别表示坐标的X和Y值;

', '

输出若干行,每行表示坐标的X和Y值,输出格式为坐标格式(X,Y),最后不要留换行空格。

注意:输入的前K-1个数时不需要打印,当输入第K个值时,每次输入一个坐标,返回topK个坐标,

注意每次输出的K个坐标时由小到大排序的。

', '[{"input": "4 1\n2 2\n1 1\n3 3\n0 0", "output": "(2,2)\n(1,1)\n(1,1)\n(0,0)"}, {"input": "5 3\n2 0\n3 2\n2 2\n1 8\n3 6", "output": "(2,0)\n(2,2)\n(3,2)\n(1,8)\n(2,0)\n(2,2)\n(1,8)\n(2,0)\n(2,2)"}]', '4f9a2549bb59d54be496fc1d636e20f3', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 68, 27, 511, 2, '{"0": 27, "1": 1, "-1": 32, "-2": 8}', 0, 48, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (235, '高空坠球', '

皮球从height(米)高度自由落下,触地后反弹到原高度的一半再落下,再反弹…… 如此反复。问皮球在n次反弹的高度是多少?输出四舍五入保留2位小数,试编写相应程序。

', '

输入下放高度height(米)和 n 次反弹。

', '

输出n次反弹的高度(米),保留1位小数,输出为double类型

', '[{"input": "8 4", "output": "0.50"}]', '4ff7129c692527ab4a1d8ce9958b089c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 147, 19, 358, '1-103', '{"0": 19, "1": 3, "4": 5, "-1": 113, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (43, '公式求值', '

输入n, m, k,输出下面公式的值。

1-32-1.png

其中C_n^m是组合数,表示在n个人的集合中选出m个人组成一个集合的方案数。组合数的计算公式如下。

1-32-2.png

', '

输入的第一行包含一个整数n;第二行包含一个整数m,第三行包含一个整数k。

', '

计算上面公式的值,由于答案非常大,请输出这个值除以999101的余数。

', '[{"input": "3\n1\n3\n", "output": "162"}, {"input": "20\n10\n10\n", "output": "359316"}]', '51d3d67ff0232b3b1a66bbc032df2df5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

数据规模和约定

对于10%的数据,n≤10,k≤3;
对于20%的数据,n≤20,k≤3;
对于30%的数据,n≤1000,k≤5;
对于40%的数据,n≤10^7,k≤10;
对于60%的数据,n≤10^15,k ≤100;
对于70%的数据,n≤10^100,k≤200;
对于80%的数据,n≤10^500,k ≤500;
对于100%的数据,n在十进制下不超过1000位,即1≤n<10^1000,1≤k≤1000,同时0≤m≤n,k≤n。

提示

999101是一个质数;

当n位数比较多时,绝大多数情况下答案都是0,但评测的时候会选取一些答案不是0的数据;

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 34, 1, 1, '1-32', '{"0": 1, "1": 4, "4": 15, "-1": 10, "-2": 4}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (162, '最大和', '

给定一个长度为n的数组a[1...n],试找出两个位置不相邻的数,它们的和最大。

', '

第一行一个整数n。(3 <= n <= 1000)

接下来一行输入一个长度为n的数组a[1...n]。(1<= a[i] <= 1000)

', '

一行一个整数表示答案。

', '[{"input": "3\n1 2 3", "output": "4\n"}]', '521cde663099f74f2d047976a29b4db5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 81, 41, 1, 'E', '{"0": 41, "1": 2, "4": 14, "-1": 21, "-2": 3}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (223, '比较大小', '

输入3个整数,按照从小到大的顺序输出。试着编写相应的程序。

', '

输入三个整数。

', '

按照从小到大形式输出

', '[{"input": "3 2 1", "output": "1 2 3"}]', '52d7d6abc8bbc094e5761720cf4b9680', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 45, 30, 358, '1-91', '{"0": 30, "-1": 9, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (194, '比较大小', '

输入3个整数,按照从小到大的顺序输出。试着编写相应的程序。

', '

输入三个整数。

', '

按照从小到大形式输出

', '[{"input": "3 2 1", "output": "1 2 3"}]', '52d7d6abc8bbc094e5761720cf4b9680', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 238, 99, 358, '3-1', '{"0": 99, "4": 1, "-1": 100, "-2": 38}', 0, 21, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (158, '虫子交配', '

生物学院的同学在研究一种罕见的昆虫性行为。这些昆虫具有两种不同的性别,并且它们只与异性的虫子互动,不和同性的虫子互动。在实验中,个别虫子的错误行为能够很容易地被识别,因为它们的身体上都印有数字标号。

现在,给你一组虫子的互动列表,需要请你帮助生物学院的同学判断这个实验中的虫子是否有错误行为。

例如,有编号1,2,3三只虫。互动列表为:

1 2
2 3
1 3

很显然,该实验中的虫子有错误的互动行为。

', '

输入的第一行为一个整数n,表示需要判断的实验数(每个实验是独立的,互不影响)。

每个实验先给出m和t。m表示虫子数目(至少一个,最多2000个),t表示交互数(最多1000000个)。在下面的几行中,每个交互都以两个不同的虫子编号的形式给出,由一个空格分隔。虫子是默认从1开始的连续编号。

', '

每个实验结果都输出两行。

第一行输出“Test #i:”,i表示第i个实验。

第二行输出判断结果,如果有错误行为,输出“Suspicious bugs found!”;否则,输出“No suspicious bugs found!”。

注意,每个实验末尾都有一个空行。

', '[{"input": "2\n3 3\n1 2\n2 3\n1 3\n4 2\n1 2\n3 4", "output": "Test #1: \nSuspicious bugs found!\n\nTest #2: \nNo suspicious bugs found!\n"}]', '52e81403c7b36cd6fe2845e645cd9061', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 134, 15, 1, 'A', '{"0": 15, "1": 1, "3": 1, "4": 10, "-1": 103, "-2": 4}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (440, '最小生成树', '

输入一个带权连通图,输出最小生成树

', '

输入包含如下内容:

第一行两个整型数N和M,分别表示结点的个数以及带权边的个数

第二行输入N个数,分别表示N个结点

第三行开始,一共输入M行,每行有三个整型数,分别表示边的两端结点以及权值;

', '

输出包含两个部分:

1、输出若干行,每行输出三个数 a,b,c(相邻两数中间空一个空格),分别表示最小生成树中边的两端结点以及权值,需要注意的是:

(1)请按照权值的顺序按行依次输出;

(2)每行前两个值a和b(边的两端结点)要满足a<=b。

2、最后一行输出一个整型数,表示最小生成树所有权值和,末尾不要留换行符。

', '[{"input": "6 10\n0 1 2 3 4 5\n0 1 6\n2 0 1\n0 3 5\n1 2 5\n2 3 5\n1 4 3\n2 4 6\n2 5 4\n3 5 2\n4 5 6", "output": "0 2 1\n3 5 2\n1 4 3\n2 5 4\n1 2 5\n15"}, {"input": "6 10\n0 1 2 3 4 5\n0 1 6\n0 3 4\n1 3 7\n1 4 7\n1 2 10\n3 2 8\n3 4 12\n2 4 5\n2 5 6\n4 5 7", "output": "0 3 4\n2 4 5\n0 1 6\n2 5 6\n1 4 7\n28"}]', '531335dc1cb2d285cf8cf64132d5a3a4', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 34, 16, 511, 1, '{"0": 16, "4": 2, "-1": 10, "-2": 6}', 0, 51, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (81, '降序排序', '

输入四个整数,实现降序排序

', '

输入四个整数,用空格隔开

', '

输出降序排序后的顺序

', '[{"input": "3 5 6 1", "output": "[6, 5, 3, 1]\n"}]', '531c923a1164119350b6e7ca80d82ad7', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python3", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 48, 12, 1, '1-12', '{"0": 12, "4": 26, "-1": 9, "-2": 1}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (114, '降序排序', '

输入四个整数,实现降序排序

', '

输入四个整数,用空格隔开

', '

输出降序排序后的顺序

', '[{"input": "3 5 6 1", "output": "[6, 5, 3, 1]\n"}]', '531c923a1164119350b6e7ca80d82ad7', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python3", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-8', '{}', 0, 12, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (80, '降序排序', '

输入四个整数,实现降序排序

', '

输入四个整数,用空格隔开

', '

输出降序排序后的顺序

', '[{"input": "3 5 6 1", "output": "[6, 5, 3, 1]\n"}]', '531c923a1164119350b6e7ca80d82ad7', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 65, 20, 1, '1-53', '{"0": 20, "4": 32, "-1": 4, "-2": 9}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (438, '连通分量', '

给定一个无向图G,其中包含n个顶点(编号为1-n)和m条边,求图中连通分量的个数。连通分量的定义为:一个无向图的极大连通子图称为该图的连通分量。连通图的极大连通子图只有1个,就是其自身。非连通图可以拆为数个极大,也称连通分量,每个分量显然都是连通图。

', '

n(n>=0)和m (m>=0),分别代表图中顶点和边的个数;

图中每条边连接的两个顶点的值。

', '

图中连通分量的个数。

', '[{"input": "4 2\n1 2\n3 4\n", "output": "2"}]', '537d78c36334ae3e240783950d6c7863', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

解释:图中有4个顶点{1,2,3,4},其中1和2连成一条边,3和4连成一条边。那图中1和2是一个连通分量,3和4是一个连通分量,故返回2。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 18, 0, 1, 'D', '{"4": 3, "-1": 12, "-2": 3}', 0, 49, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (459, '字符排序 (10分)', '

将打乱的字符,按照指定的顺序排序。

', '

给定2行数据; 第1行n个字符,每个字符以空格分开;第2行为一组编号(0,...,n-1),代表第1行被打乱的字符的真实循序。

请按照第2行的顺序信息复原第1行的字符。

', '

输出一行复原的字符串。

', '[{"input": "o d o g !\n1 3 2 0 4\n", "output": "good!"}]', '54c711344d43b22ff6b288c750dc76f6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

末尾不能有换行符。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 17, 1, 1, 2, '{"0": 1, "4": 6, "-1": 9, "-2": 1}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (369, '输出华氏-摄氏温度转换表', '

输入2个正整数lower和upper(lower≤upper≤100),请输出一张取值范围为[lower,upper]、且每次增加2华氏度的华氏-摄氏温度转换表。

温度转换的计算公式:C=5×(F−32)/9,其中:C表示摄氏温度,F表示华氏温度。

', '

在一行中输入2个整数,分别表示lower和upper的值,中间用空格分开

', '

每行输出一个华氏温度fahr(整型)与一个摄氏温度celsius(浮点数,保留一位小数),并以空格隔开。

若输入的范围不合法,则输出"Invalid"。

', '[{"input": "32 35\n", "output": "32 0.0\n34 1.1\n"}, {"input": "40 30\n", "output": "Invalid\n"}]', '55914d8b6d591c09779d77aa4d640be9', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 55, 6, 1, 1, '{"0": 6, "-1": 46, "-2": 3}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (445, '选择运算', '

老师给你出了一道题:初始你手上有一个值为0的数,现在你需要经过n次运算,每次运算有两种选择,你需要选择其中的一种并和你手上的数进行运算,n次运算后输出最大的结果(运算按照从前往后的顺序,不需要考虑优先级)。这自然难不倒会编程的你,所以解决它吧。

', '

第一行一个整数n,表示运算次数。(n<=18)

接下来n行,每行两个字符串,表示两种运算。(运算由运算符和数组成,运算符包括’+’,’-’,’*’,’/’,为了简化运算,除法所得小数将被舍掉,数的范围在1~10之间)。

', '

一行一个整数,表示最大的结果。

', '[{"input": "3\n+1 *3\n+2 *4\n-3 /2", "output": "2"}]', '5594ad01423af2b87f0e40a09878fe74', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 135, 47, 1, 'B', '{"0": 47, "4": 8, "-1": 66, "-2": 14}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (354, '递归求Fabonacci数列', '

本题要求实现求Fabonacci数列项的函数。Fabonacci数列的定义如下:

f(n)=f(n−2)+f(n−1) (n≥2),其中f(0)=0,f(1)=1。

函数接口定义:

int f( int n );

函数f应返回第n个Fabonacci数。题目保证输入输出在长整型范围内。建议用递归实现。

', '

一行一个非负整数n。

', '

一行一个数表示f(n)的值。

', '[{"input": "6", "output": "8"}]', '57251acd850bc5a39880104418be365b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 30, 1, '1-159', '{"0": 30, "1": 1, "4": 6, "-1": 5, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (332, '递归求Fabonacci数列', '

本题要求实现求Fabonacci数列项的函数。Fabonacci数列的定义如下:

f(n)=f(n−2)+f(n−1) (n≥2),其中f(0)=0,f(1)=1。

函数接口定义:

int f( int n );

函数f应返回第n个Fabonacci数。题目保证输入输出在长整型范围内。建议用递归实现。

', '

一行一个非负整数n。

', '

一行一个数表示f(n)的值。

', '[{"input": "6", "output": "8"}]', '57251acd850bc5a39880104418be365b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 142, 93, 1, 6, '{"0": 93, "2": 2, "4": 29, "-1": 13, "-2": 5}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (494, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9", "output": "2 3 1 \n5 6 4 \n8 9 7 "}]', '5816462c040c3a40829bdcbbf5f3840e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 35, 14, 1, 5, '{"0": 14, "1": 1, "-1": 18, "-2": 2}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (489, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9", "output": "2 3 1 \n5 6 4 \n8 9 7 "}]', '5816462c040c3a40829bdcbbf5f3840e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '2-5', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (466, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9", "output": "2 3 1 \n5 6 4 \n8 9 7 "}]', '5816462c040c3a40829bdcbbf5f3840e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 154, 22, 1, 5, '{"0": 22, "4": 11, "-1": 100, "-2": 21}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (103, '二分查找', '

输入n个排好序(从小到大)的数,输入q,代表q次询问,每次输入数m,问m是否在序列中,是输出数m所在下标,否则输出-1

', '

n,代表n个数,1<=n<=100000随后输入n个数q,代表q次询问,1<=n<=100000随后q行,每行一个数字m,代表需要查询的数

', '

输出数m所在下标,否则输出-1

', '[{"input": "5\n1 2 3 4 5\n2\n1 8", "output": "0\n-1"}]', '5830663f726332c86586d2cab50a7952', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C++", "Python2", "Python3", "C", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 34, 8, 1, 'A', '{"0": 8, "1": 8, "4": 2, "-1": 9, "-2": 7}', 0, 11, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (411, '用DFS解决滑雪问题', '

Michael喜欢滑雪这并不奇怪,因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。

下面是一个例子:一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-3-2-1更长。事实上,这是最长的一条。

要求用DFS实现

', '

输入的第一行表示区域的行数R和列数C(1 <= R,C <= 100)。下面是R行,每行有C个整数,代表高度h,0<=h<=10000。

', '

输出最长区域的长度。

', '[{"input": "5 5\n1 2 3 4 5\n16 17 18 19 6\n15 24 25 20 7\n14 23 22 21 8\n13 12 11 10 9\n", "output": "25"}]', '587c2656e4786fdc8a6218d21f0d350e', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 94, 30, 511, 1, '{"0": 30, "1": 1, "4": 10, "-1": 31, "-2": 22}', 0, 39, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (197, '使用函数求奇数和', '

本题要求实现一个函数,计算N个整数中所有奇数的和,同时实现一个判断奇偶性的函数。

函数接口定义:

int even( int n );

int OddSum( int List[], int N );

其中函数even将根据用户传入的参数n的奇偶性返回相应值:当n为偶数时返回1,否则返回0。函数OddSum负责计算并返回传入的N个整数List[]中所有奇数的和。

', '

第一行一个整数n。

接下来一行是n个整数的序列。

', '

一个整数,表示奇数和。

', '[{"input": "6\n2 -3 7 88 0 15\n", "output": "19"}]', '5a068e6bf5b25873e3d121b77b64defb', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 311, 99, 1, '5-2', '{"0": 99, "1": 2, "4": 61, "-1": 93, "-2": 56}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (240, '使用函数求奇数和', '

本题要求实现一个函数,计算N个整数中所有奇数的和,同时实现一个判断奇偶性的函数。

函数接口定义:

int even( int n );

int OddSum( int List[], int N );

其中函数even将根据用户传入的参数n的奇偶性返回相应值:当n为偶数时返回1,否则返回0。函数OddSum负责计算并返回传入的N个整数List[]中所有奇数的和。

', '

第一行一个整数n。

接下来一行是n个整数的序列。

', '

一个整数,表示奇数和。

', '[{"input": "6\n2 -3 7 88 0 15\n", "output": "19"}]', '5a068e6bf5b25873e3d121b77b64defb', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 43, 26, 1, '1-108', '{"0": 26, "4": 5, "-1": 6, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (330, '递归求简单交错幂级数的部分和', '

本题要求实现一个函数,计算下列简单交错幂级数的部分和:

f(x,n)=x−x^​2​​+x^​3​​−x^​4​​+⋯+(−1)^(n−1)*​​x^​n​​

函数接口定义:

double fn( double x, int n );

其中题目保证传入的n是正整数,并且输入输出都在双精度范围内。函数fn应返回上述级数的部分和。建议尝试用递归实现。

', '

一行两个数,实数x和正整数n。

', '

一行一个数表示fn(x,n)的值。(保留两位小数)

', '[{"input": "0.5 12", "output": "0.33"}]', '5a2579cb7ccf2762bac4602d1887e7d9', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 121, 93, 1, 4, '{"0": 93, "-1": 17, "-2": 11}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (352, '递归求简单交错幂级数的部分和', '

本题要求实现一个函数,计算下列简单交错幂级数的部分和:

f(x,n)=x−x^​2​​+x^​3​​−x^​4​​+⋯+(−1)^(n−1)*​​x^​n​​

函数接口定义:

double fn( double x, int n );

其中题目保证传入的n是正整数,并且输入输出都在双精度范围内。函数fn应返回上述级数的部分和。建议尝试用递归实现。

', '

一行两个数,实数x和正整数n。

', '

一行一个数表示fn(x,n)的值。(保留两位小数)

', '[{"input": "0.5 12", "output": "0.33"}]', '5a2579cb7ccf2762bac4602d1887e7d9', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 32, 26, 1, '1-157', '{"0": 26, "-1": 4, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (284, '求矩阵各行元素之和。', '

输入2个正整数mn1<=m<=6,1<=n<=6),然后输入矩阵amn列)中的元素,分别求出各行元素之和,并输出。试编写相应程序。

', '

输入2个正整数mn1<=m<=6,1<=n<=6),然后输入矩阵amn列)中的元素,矩阵中的元素均为整数。

', '

依次输出各行元素之和,也是整数形式。

', '[{"input": "2 4\n1 2 3 4\n4 5 6 7", "output": "10 22"}]', '5a7f58d3b3ab192b723e97c70e8ab64e', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 192, 98, 358, '7-4', '{"0": 98, "4": 6, "-1": 68, "-2": 20}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (386, '字符串的拼接', '

输入两个字符串,输出连接后的字符串。要求自定义函数 char *strcat (char *str1,char *str2),将字符串str2复制到字符串str1的末端,并且返回字符串s的首地址。试编写相应程序。

', '

输入两行字符串,str1和str2。

', '

p=strcat (char *str1,char *str2),第一行输出p,第二行输出str1。

', '[{"input": "abc\ndef", "output": "abcdef\nabcdef"}]', '5bd7176b428ddb489cbec101f48ae410', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 226, 77, 358, '11-4', '{"0": 77, "1": 1, "4": 60, "-1": 48, "-2": 40}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (387, '字符串的拼接', '

输入两个字符串,输出连接后的字符串。要求自定义函数 char *strcat (char *str1,char *str2),将字符串str2复制到字符串str1的末端,并且返回字符串s的首地址。试编写相应程序。

', '

输入两行字符串,str1和str2。

', '

p=strcat (char *str1,char *str2),第一行输出p,第二行输出str1。

', '[{"input": "abc\ndef", "output": "abcdef\nabcdef"}]', '5bd7176b428ddb489cbec101f48ae410', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 90, 39, 358, '1-172', '{"0": 39, "4": 7, "-1": 33, "-2": 11}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (460, '数素数 (10分)', '

给定两个正整数a,b, 以表示一个范围 包括a,b。 输出该范围内素数的个数。(函数,mid)

要求:写出一个 判断当前数是否为素数的函数,并在主函数中调用。函数名为isPrime , 返回布尔值。

', '

给定两个正整数, m, n (0<m < n <1000)。范围为闭区间,即 [ m, n]。

', '

返回指定范围内所有的素数个数。

', '[{"input": "2 8", "output": "4"}, {"input": "10 20", "output": "4"}]', '5c4b0ef1f18de8d8050bd89e33eeaf32', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

素数即质数,是指在大于1的自然数中,除了1和它本身以外不再有其他因数的自然数。(即只能被1或其自身整除)

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 5, 5, 1, 3, '{"0": 5}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (89, '信仰问题', '

世界上宗教何其多,小华对华师大的学生总共有多少种宗教信仰很感兴趣,想请你帮忙解决一个问题。

假设华师大有n个学生,但是你不能直接问学生的信仰,不然他会感到很不舒服。有另外一个方法是问m对同学,是否信仰同一宗教。根据这些数据,相信聪明的你是能够计算学校最多有多少种宗教信仰的。

', '

输入由多个实例组成。每种情况都以指定整数n和m的行开始。接下来的m行分别由两个整数i和j组成,指定学生i和j信仰的是相同的宗教。

学生的编号为1到N。当输入为n=0,m= 0时,结束。

', '

对于每个测试用例,在单行上打印案例号(从1开始),接着是大学生所信仰的不同宗教的最大数量。

', '[{"input": "4 3\n1 2\n3 4\n2 3\n10 7\n1 2\n2 3\n1 3\n5 6\n8 9\n1 9\n8 3\n0 0\n", "output": "Case 1: 1\nCase 2: 5\n"}]', '5cf1f940e289f8b03dfed54791f6ef92', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 69, 8, 1, 7, '{"0": 8, "4": 15, "-1": 40, "-2": 6}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (167, '计算工资', '

某公司员工的工资计算方法如下:一周内工作时间不超过40小时,按正常工作时间计酬;超出40小时的工作时间部分,按正常工作时间报酬的1.5倍计酬。员工按进公司时间分为新职工和老职工,进公司不少于5年的员工为老职工,5年以下的为新职工。新职工的正常工资为30元/小时,老职工的正常工资为50元/小时。请按该计酬方式计算员工的工资。

', '

输入在一行中给出2个正整数,分别为某员工入职年数和周工作时间,其间以空格分隔。

', '

在一行输出该员工的周薪,精确到小数点后2位。

', '[{"input": "5 40\n", "output": "2000.00\n"}, {"input": "3 50\n", "output": "1650.00\n"}]', '5d56c74035be7ad35e4d575c5b577856', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 23, 16, 1, 2, '{"0": 16, "-1": 7}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (175, '计算工资', '

某公司员工的工资计算方法如下:一周内工作时间不超过40小时,按正常工作时间计酬;超出40小时的工作时间部分,按正常工作时间报酬的1.5倍计酬。员工按进公司时间分为新职工和老职工,进公司不少于5年的员工为老职工,5年以下的为新职工。新职工的正常工资为30元/小时,老职工的正常工资为50元/小时。请按该计酬方式计算员工的工资。

', '

输入在一行中给出2个正整数,分别为某员工入职年数和周工作时间,其间以空格分隔。

', '

在一行输出该员工的周薪,精确到小数点后2位。

', '[{"input": "5 40\n", "output": "2000.00\n"}, {"input": "3 50\n", "output": "1650.00\n"}]', '5d56c74035be7ad35e4d575c5b577856', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 32, 25, 1, '1-74', '{"0": 25, "-1": 3, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (410, 'CirLinkList', '

实现一个循环链表,并解决约瑟夫问题.

', '

输入约瑟夫问题中的n和m;

输入要插入循环队列的n个元素的值;

', '

按顺序输出所有被踢出队列的元素的值;

输出最终的优胜者;

', '[{"input": "8 3\n1 2 3 4 5 6 7 8", "output": "3 6 1 5 2 8 4 \n7"}]', '6014791e712daba9be2567d78a5a768e', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 83, 30, 511, 1, '{"0": 30, "4": 20, "-1": 15, "-2": 18}', 0, 38, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (432, 'BinaryTree', '

1、给出后序遍历序列###ca##ji####spom(#代表空指针), 构建二叉树。

2、上述二叉树实际是一颗二叉排序树,请实现程序

(1)查找c节点,输出从树根到c节点的路径。

(2)删除其中的m节点,使得删除后仍为二叉排序树,并输出其中序遍历序列。

', '

输入后序遍历序列;

输入要查找的节点值;

输入要删除的节点值。

', '

输出构建好的二叉树的中序遍历序列(末尾有空格);

输出从树根到要查找节点的路径(末尾有空格);

输出删除节点后的二叉树的中序遍历序列(末尾有空格)。

', '[{"input": "###ca##ji####spom\nc\nm", "output": "a c i j m o p s \nm i a c \na c i j o p s "}]', '620e667fae07f227046c9653c99003f1', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 82, 24, 511, 1, '{"0": 24, "1": 4, "3": 1, "4": 5, "-1": 20, "-2": 28}', 0, 47, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (351, '递归实现指数函数', '

本题要求实现一个计算x^​n​​(n≥1)的函数。

函数接口定义:

double calc_pow( double x, int n );

函数calc_pow应返回x的n次幂的值。建议用递归实现。题目保证结果在双精度范围内。

', '

一行两个数,实数x和整数n。(n>=1)

', '

一行一个数表示答案。(保留0位小数)

', '[{"input": "2 3", "output": "8"}]', '62c67a3a580bd2bf68158df3e50a109d', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 47, 27, 1, '1-156', '{"0": 27, "4": 1, "-1": 16, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (329, '递归实现指数函数', '

本题要求实现一个计算x^​n​​(n≥1)的函数。

函数接口定义:

double calc_pow( double x, int n );

函数calc_pow应返回x的n次幂的值。建议用递归实现。题目保证结果在双精度范围内。

', '

一行两个数,实数x和整数n。(n>=1)

', '

一行一个数表示答案。(保留0位小数)

', '[{"input": "2 3", "output": "8"}]', '62c67a3a580bd2bf68158df3e50a109d', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 140, 92, 1, 3, '{"0": 92, "4": 7, "-1": 31, "-2": 10}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (465, '分数减法 (15分)', '

实现分数减法。分数分为,整数部分和纯分数部分。

', '

输入为一行,4个部分,分别为两个分数的分子和分母。每个部分分别以空格隔开。

示例:

分子1 分母1 分子2 分母2

注意输入的分子和分母均可以为负数,输入的分数均为最简形式。

*分母不会为0。无需考虑大整数。

', '

输出 分数1 - 分数2 的结果

示例:

整数部分 分子/分母

输出要求:

1. 分数为最简形式。即分子分母不能再约分。

2. 如果有整数部分,整数部分和纯分数部分以空格隔开。若没有整数部分,则直接输出纯分数部分。

3. 如果没有分数部分(即分子为0),则直接输出整数部分。

4. 如果结果为负数:如果分数有整数部分,则负号在整数部分,否在在分子部分。

5. 若减法结果为0 则输出0即可。

', '[{"input": "3 -2 -3 2", "output": "0"}, {"input": "1 2 3 1", "output": "-2 1/2"}, {"input": "3 5 7 10", "output": "-1/10"}]', '62e7805d06363df5be174cabb73d4fbf', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

解题关键:

1. 实现寻找两个数最大公约数的函数来化简分数。

2. 保证结果中的分母,始终为正数。

C语言中的整型绝对值函数: abs()函数,在头文件“stdlib.h”中。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 9, 2, 1, 8, '{"0": 2, "-1": 7}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (159, '排座位', '

新学期开学,老师需要按照身高给学生们排座位。现在需要你写一个程序,帮助老师按照身高大小,给学生们排序。

', '

第一行为一个整数n(1<=n<=1000)

第二行包含n个正整数,按照学生编号1~n顺序输入n个学生的身高,以空格隔开。

', '

输出一行,按从大到小的顺序输出排序后的同学编号。身高相同的,按照编号从大到小排序。

每个数之间有一个空格,行末无空格。

', '[{"input": "3\n150 140 165\n", "output": "3 1 2\n"}]', '6405f9962ff3da3f631e6d933347ac49', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 113, 40, 1, 'B', '{"0": 40, "4": 3, "-1": 64, "-2": 6}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (331, '递归计算Ackermenn函数', '

本题要求实现Ackermenn函数的计算,其函数定义如下:

图片.png

函数接口定义:

int Ack( int m, int n );

其中m和n是用户传入的非负整数。函数Ack返回Ackermenn函数的相应值。题目保证输入输出都在长整型

', '

一行两个非负整数m和n。

', '

一行一个数表示Ack(m,n)的答案。

', '[{"input": "2 3", "output": "9"}]', '64f1b9ed65c2ca45d7f74e9750ab3408', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 109, 93, 1, 5, '{"0": 93, "1": 1, "4": 5, "-1": 8, "-2": 2}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (353, '递归计算Ackermenn函数', '

本题要求实现Ackermenn函数的计算,其函数定义如下:

图片.png

函数接口定义:

int Ack( int m, int n );

其中m和n是用户传入的非负整数。函数Ack返回Ackermenn函数的相应值。题目保证输入输出都在长整型

', '

一行两个非负整数m和n。

', '

一行一个数表示Ack(m,n)的答案。

', '[{"input": "2 3", "output": "9"}]', '64f1b9ed65c2ca45d7f74e9750ab3408', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 34, 30, 1, '1-158', '{"0": 30, "4": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (356, '递归实现顺序输出整数', '

本题要求实现一个函数,对一个整数进行按位顺序输出。

函数接口定义:

void printdigits( int n );

函数printdigits应将n的每一位数字从高位到低位顺序打印出来,每位数字占一行。

', '

一行一个整数n。

', '

输出若干行,每行一个数字。

', '[{"input": "12345", "output": "1\n2\n3\n4\n5"}]', '6856476d482c109791f60db508393c42', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 54, 33, 1, '1-161', '{"0": 33, "1": 1, "4": 1, "-1": 15, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (334, '递归实现顺序输出整数', '

本题要求实现一个函数,对一个整数进行按位顺序输出。

函数接口定义:

void printdigits( int n );

函数printdigits应将n的每一位数字从高位到低位顺序打印出来,每位数字占一行。

', '

一行一个整数n。

', '

输出若干行,每行一个数字。

', '[{"input": "12345", "output": "1\n2\n3\n4\n5"}]', '6856476d482c109791f60db508393c42', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 166, 94, 1, 8, '{"0": 94, "1": 1, "4": 4, "-1": 57, "-2": 10}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (471, '重量单位转换', '

实现重量盎司和克的相互转换。

为简便计算,规定 1盎司 = 28.35 克。

', '

输入2个数a, b;  a为整数,b为小数。

a 表示转换模式, 若,a = 0 表示已知 盎司, 需要将重量转化为克。若 a = 1 则表示,已知 克,需要将重量转化为盎司。

b 为已知重量(单位根据a的模式判断)

', '

输出重量b,单位转化后的值。要求保留2位小数。

', '[{"input": "0 1.0", "output": "28.35"}, {"input": "1 28.35", "output": "1.00"}]', '6921992c55009938175cfc4c77be0fde', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 121, 65, 1, 1, '{"0": 65, "4": 2, "-1": 33, "-2": 21}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (485, '重量单位转换', '

实现重量盎司和克的相互转换。

为简便计算,规定 1盎司 = 28.35 克。

', '

输入2个数a, b;  a为整数,b为小数。

a 表示转换模式, 若,a = 0 表示已知 盎司, 需要将重量转化为克。若 a = 1 则表示,已知 克,需要将重量转化为盎司。

b 为已知重量(单位根据a的模式判断)

', '

输出重量b,单位转化后的值。要求保留2位小数。

', '[{"input": "0 1.0", "output": "28.35"}, {"input": "1 28.35", "output": "1.00"}]', '6921992c55009938175cfc4c77be0fde', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 6, 5, 1, 1, '{"0": 5, "-1": 1}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (482, '重量单位转换', '

实现重量盎司和克的相互转换。

为简便计算,规定 1盎司 = 28.35 克。

', '

输入2个数a, b;  a为整数,b为小数。

a 表示转换模式, 若,a = 0 表示已知 盎司, 需要将重量转化为克。若 a = 1 则表示,已知 克,需要将重量转化为盎司。

b 为已知重量(单位根据a的模式判断)

', '

输出重量b,单位转化后的值。要求保留2位小数。

', '[{"input": "0 1.0", "output": "28.35"}, {"input": "1 28.35", "output": "1.00"}]', '6921992c55009938175cfc4c77be0fde', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-1', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (395, '指定位置输出字符串', '

本题要求实现一个函数,对给定的一个字符串和两个字符,打印出给定字符串中从与第一个字符匹配的位置开始到与第二个字符匹配的位置之间的所有字符。

函数接口定义:

char *match( char *s, char ch1, char ch2 );

函数match应打印s中从ch1到ch2之间的所有字符,并且返回ch1的地址。

', '

第一行一个字符串s。(|s| <= 10)

第二行两个字符ch1和ch2。

', '

第一行输出s中从ch1ch2之间的所有字符。

第二行输出s中从ch1开始到末尾的所有字符。

', '[{"input": "program\nr g", "output": "rog\nrogram"}, {"input": "program\nz o", "output": "\n\n"}, {"input": "program\ng z\n", "output": "gram\ngram"}]', '6937e5af2191cad13b6b54a068b839e9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 105, 32, 1, '1-176', '{"0": 32, "4": 8, "-1": 50, "-2": 15}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (391, '指定位置输出字符串', '

本题要求实现一个函数,对给定的一个字符串和两个字符,打印出给定字符串中从与第一个字符匹配的位置开始到与第二个字符匹配的位置之间的所有字符。

函数接口定义:

char *match( char *s, char ch1, char ch2 );

函数match应打印s中从ch1到ch2之间的所有字符,并且返回ch1的地址。

', '

第一行一个字符串s。(|s| <= 10)

第二行两个字符ch1和ch2。

', '

第一行输出s中从ch1ch2之间的所有字符。

第二行输出s中从ch1开始到末尾的所有字符。

', '[{"input": "program\nr g", "output": "rog\nrogram"}, {"input": "program\nz o", "output": "\n\n"}, {"input": "program\ng z\n", "output": "gram\ngram"}]', '6937e5af2191cad13b6b54a068b839e9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 256, 76, 1, '11-5', '{"0": 76, "4": 63, "-1": 101, "-2": 16}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (437, '链表', '

给定一个长度为n的链表(链表节点包含一个整型值)。同时给定大小为m的列表G,该列表是上述链表中整型值的一个子集。请返回列表G中组件的个数,这里对组件的定义为:链表中一段最长连续节点的值(该值必须在列表G中)构成的集合。

注:该题中提到的链表必须用链表实现,不得使用STL类,否则不得分。

', '

n和m,分别代表链表的长度和列表G的大小;

链表内节点整型值的顺序;

列表G内的所有整型值。

', '

列表G中组件的个数。

', '[{"input": "4 3\n0 1 2 3\n0 1 3\n", "output": "2"}]', '69dd85e678a31b9ba4464406fd2c8fd4', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

解释:链表中,0和1是相连的,且G中不包含2,所以[0,1]是一个组件,同理[3]也是一个组件,故返回2。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 47, 5, 1, 'C', '{"0": 5, "1": 4, "4": 6, "-1": 28, "-2": 4}', 0, 49, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (264, '使用函数输出指定范围内的完数', '

本题要求实现一个函数,输出两正整数m和n(0<m≤n≤10000)之间的所有完数个数。所谓完数就是该数恰好等于除自身外的因子之和,特别的,1也算完数。例如:6=1+2+3,其中1、2、3为6的因子。

如果给定区间内没有完数,则输出一行“No perfect number”。

', '

一行两个整数m和n。

', '

输出一行,表示答案。

', '[{"input": "1 30", "output": "3"}]', '6a68acab01069c23546384d687f3b34a', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 42, 25, 1, '1-116', '{"0": 25, "1": 1, "-1": 14, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (248, '使用函数输出指定范围内的完数', '

本题要求实现一个函数,输出两正整数m和n(0<m≤n≤10000)之间的所有完数个数。所谓完数就是该数恰好等于除自身外的因子之和,特别的,1也算完数。例如:6=1+2+3,其中1、2、3为6的因子。

如果给定区间内没有完数,则输出一行“No perfect number”。

', '

一行两个整数m和n。

', '

输出一行,表示答案。

', '[{"input": "1 30", "output": "3"}]', '6a68acab01069c23546384d687f3b34a', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 267, 98, 1, '6-3', '{"0": 98, "1": 13, "4": 3, "-1": 123, "-2": 30}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (435, '字符串统计', '

输入一个字符串(不包含空格),统计其中非数字字符的个数。

', '

一行一个字符串s。(s的长度不超过100)

', '

一个整数表示答案。

', '[{"input": "A1b2#3", "output": "3"}]', '6b1548f50ba9723468b942a2f58c949d', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 37, 10, 1, 'A', '{"0": 10, "1": 1, "4": 2, "-1": 9, "-2": 15}', 0, 49, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (451, '压缩字符串(10分)', '

给定一串字符,使用特定的方法将其压缩成新的字符串,压缩后的长度必须始终小于或等于原数组长度。具体方法为:计算字符连续出现的次数,若次数为1保持不变;若次数>1,则进行压缩。

', '

输入一串由'a' - 'z'组成的字符串

', '

输出压缩后的新字符串

', '[{"input": "aabbccc", "output": "a2b2c3"}, {"input": "abbbbbbbbbbbb", "output": "ab12"}]', '6be8147a06af611faed3493e6dcb22fd', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

1 <= 字符串长度 <= 10000

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 14, 5, 1, 2, '{"0": 5, "4": 5, "-1": 4}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (280, '素数个数', '

给定两个数m和n,求m和n之间的素数个数(包括m,n),试编写相应程序。

', '

依次输入两个整数m,n,m<n。

', '

输出m,n和n之间的个数,输出为整数形式。

', '[{"input": "2 10", "output": "4"}]', '6c2582284ed6900d872d6a820fc85858', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

质数又称素数。一个大于1的自然数,除了1和它自身外,不能被其他自然数整除的数叫做质数。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1999, 256, false, null, null, null, 'ACM', false, 'Low', '', 14, 12, 358, '1-123', '{"0": 12, "-1": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (278, '素数个数', '

给定两个数m和n,求m和n之间的素数个数(包括m,n),试编写相应程序。

', '

依次输入两个整数m,n,m<n。

', '

输出m,n和n之间的个数,输出为整数形式。

', '[{"input": "2 10", "output": "4"}]', '6c2582284ed6900d872d6a820fc85858', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

质数又称素数。一个大于1的自然数,除了1和它自身外,不能被其他自然数整除的数叫做质数。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 49, 28, 358, 4, '{"0": 28, "-1": 14, "-2": 7}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (462, '链表插入和遍历 (15分)', '

构造一个链表,在指定位置插入节点(实现链表的插入操作),最后遍历链表,要求从头到尾输出遍历链表信息。

', '

第一行为两个int类型, n, m ; 其中 n >= 0 ,表示需要插入的节点位置,位置从0开始; m >= 0 为需要插入的节点值。

第二行为原始链表,长度 >= n。每个节点值均为整数,-1 表示链表结束

节点值可能会出现重复。

', '

按指定位置插入节点,从头到尾输出节点,以 -1作为输出结束。

', '[{"input": "0 6\n1 3 8 -1", "output": "6 1 3 8 -1"}, {"input": "2 99\n2 1 3 5 5 5 5 -1", "output": "2 1 99 3 5 5 5 5 -1"}]', '6cb08deec22e9b8d6bb4760fc3aa4952', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

要求实现链表的建立和插入操作。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 6, 2, 1, 5, '{"0": 2, "-1": 4}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (153, '统计单词个数', '

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

', '

输入给出一行字符。

', '

在一行中输出单词个数。

', '[{"input": "Let''s go to room 209.\n", "output": "5\n"}]', '6d4a91599de2b88d16f84e3300d93599', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 204, 46, 1, '1-68', '{"0": 46, "1": 1, "2": 1, "4": 32, "-1": 64, "-2": 20}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (145, '统计单词个数', '

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

', '

输入给出一行字符。

', '

在一行中输出单词个数。

', '[{"input": "Let''s go to room 209.\n", "output": "5\n"}]', '6d4a91599de2b88d16f84e3300d93599', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 147, 25, 1, 4, '{"0": 25, "1": 2, "4": 88, "-1": 27, "-2": 5}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (7, 'FJ的字符串', '

FJ在沙盘上写了这样一些字符串:  A1 = “A”  A2 = “ABA”  A3 = “ABACABA”  A4 = “ABACABADABACABA”  … …  你能找出其中的规律并写所有的数列AN吗?

', '

仅有一个数:N ≤ 26。

', '

请输出相应的字符串AN,以一个换行符结束。输出中不得含有多余的空格或换行、回车符。

', '[{"input": "3", "output": "ABACABA"}]', '6d7877b0b1c9842dc3d003c3542e4eb5', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 401, 209, 1, '1-3', '{"0": 209, "1": 2, "4": 21, "-1": 65, "-2": 98}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (11, '分解质因数', '

求出区间[a,b]中所有整数的质因数分解。

', '

输入两个整数a,b。

', '

每行输出一个数的分解,形如k=a1a2a3...(a1<=a2<=a3...,k也是从小到大的)(具体可看样例)

', '[{"input": "3 10", "output": "3=3\n4=2*2\n5=5\n6=2*3\n7=7\n8=2*2*2\n9=3*3\n10=2*5\n"}]', '6e47c5a51e7b2980ad2292ecbe267037', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

提示

先筛出所有素数,然后再分解。

数据规模和约定

2<=a<=b<=10000

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 330, 120, 1, '1-7', '{"0": 120, "1": 39, "4": 41, "-1": 75, "-2": 46}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (63, '分解质因数', '

求出区间[a,b]中所有整数的质因数分解。

', '

输入两个整数a,b。

', '

 每行输出一个数的分解,形如k=a1a2a3...(a1<=a2<=a3...,k也是从小到大的)(具体可看样例)

', '[{"input": "3 10", "output": "3=3\n4=2*2\n5=5\n6=2*3\n7=7\n8=2*2*2\n9=3*3\n10=2*5\n"}]', '6e47c5a51e7b2980ad2292ecbe267037', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

提示

  先筛出所有素数,然后再分解。

数据规模和约定

  2<=a<=b<=10000

', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-2', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (303, '数组循环右移', '

本题要求实现一个对数组进行循环右移的简单函数:一个数组a中存有n(>0)个整数,将每个整数循环向右移m(≥0)个位置,即将a中的数据由(a​0​​a​1​​⋯a​n−1​​)变换为(a​n−m​​⋯a​n−1​​a​0​​a​1​​⋯a​n−m−1​​)(最后m个数循环移至最前面的m个位置)。

函数接口定义:

int ArrayShift( int a[], int n, int m );

其中a[]是用户传入的数组;n是数组的大小;m是右移的位数。函数ArrayShift须将循环右移后的数组仍然存在a[]中。

', '

第一行两个整数n和m。

接下来一行n个整数,代表数组a。

', '

一行n个整数,代表循环右移后的数组a。

', '[{"input": "6 2\n1 2 3 4 5 6\n", "output": "5 6 1 2 3 4"}]', '6ee0d05159aecb8972afaf547032bc05', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 27, 1, '1-132', '{"0": 27, "4": 3, "-1": 13, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (293, '数组循环右移', '

本题要求实现一个对数组进行循环右移的简单函数:一个数组a中存有n(>0)个整数,将每个整数循环向右移m(≥0)个位置,即将a中的数据由(a​0​​a​1​​⋯a​n−1​​)变换为(a​n−m​​⋯a​n−1​​a​0​​a​1​​⋯a​n−m−1​​)(最后m个数循环移至最前面的m个位置)。

函数接口定义:

int ArrayShift( int a[], int n, int m );

其中a[]是用户传入的数组;n是数组的大小;m是右移的位数。函数ArrayShift须将循环右移后的数组仍然存在a[]中。

', '

第一行两个整数n和m。

接下来一行n个整数,代表数组a。

', '

一行n个整数,代表循环右移后的数组a。

', '[{"input": "6 2\n1 2 3 4 5 6\n", "output": "5 6 1 2 3 4"}]', '6ee0d05159aecb8972afaf547032bc05', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 233, 93, 1, '8-3', '{"0": 93, "1": 2, "4": 23, "-1": 110, "-2": 5}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (187, '最大子串和', '

给出一个长度为n的数组,你需要找出一个子串(注意子串在数组中是连续的一段),并且该子串的和是最大的,最后你只需要输出这个最大的子串和即可。

', '

第一行一个整数n。(1<=n<=100000)

接下来一个n个整数,表示该数组a[1..n]。(-10000<=a[i]<=10000)

', '

输出一个整数,表示最大的子串和。

', '[{"input": "5\n1 2 3 4 5\n", "output": "15\n"}, {"input": "5\n-1 -2 -3 -4 -5\n", "output": "-1\n"}]', '709f77d2230599560dba600e76132d16', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 16, 1, '1-83', '{"0": 16, "1": 12, "4": 4, "-1": 27, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (184, '最大子串和', '

给出一个长度为n的数组,你需要找出一个子串(注意子串在数组中是连续的一段),并且该子串的和是最大的,最后你只需要输出这个最大的子串和即可。

', '

第一行一个整数n。(1<=n<=100000)

接下来一个n个整数,表示该数组a[1..n]。(-10000<=a[i]<=10000)

', '

输出一个整数,表示最大的子串和。

', '[{"input": "5\n1 2 3 4 5\n", "output": "15\n"}, {"input": "5\n-1 -2 -3 -4 -5\n", "output": "-1\n"}]', '709f77d2230599560dba600e76132d16', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 34, 1, 1, 3, '{"0": 1, "1": 11, "4": 4, "-1": 17, "-2": 1}', 0, 18, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (484, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1", "output": "61"}]', '7192e61ce05a9778799085843aad86f9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

注意:闰年的2月份是29天。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-3', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (487, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1", "output": "61"}]', '7192e61ce05a9778799085843aad86f9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

注意:闰年的2月份是29天。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 8, 6, 1, 3, '{"0": 6, "-1": 2}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (468, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1", "output": "61"}]', '7192e61ce05a9778799085843aad86f9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

注意:闰年的2月份是29天。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 216, 56, 1, 3, '{"0": 56, "4": 3, "-1": 114, "-2": 43}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (53, '约数倍数选卡片', '

闲暇时,福尔摩斯和华生玩一个游戏:

在N张卡片上写有N个整数。两人轮流拿走一张卡片。要求下一个人拿的数字一定是前一个人拿的数字的约数或倍数。例如,某次福尔摩斯拿走的卡片上写着数字“6”,则接下来华生可以拿的数字包括:

1,2,3, 6,12,18,24 ....

当轮到某一方拿卡片时,没有满足要求的卡片可选,则该方为输方。

请你利用计算机的优势计算一下,在已知所有卡片上的数字和可选哪些数字的条件下,怎样选择才能保证必胜!

当选多个数字都可以必胜时,输出其中最小的数字。如果无论如何都会输,则输出-1。

', '

输入数据为2行。第一行是若干空格分开的整数(每个整数介于1~100间),表示当前剩余的所有卡片。

第二行也是若干空格分开的整数,表示可以选的数字。当然,第二行的数字必须完全包含在第一行的数字中。

', '

程序则输出必胜的招法!!

', '[{"input": "2 3 6
\n3 6\n", "output": "3"}, {"input": "1 2 2 3 3 4 5
\n3 4 5\n", "output": "4"}]', '71b11364543228569968f8618650cb6c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 22, 3, 1, '1-49', '{"0": 3, "1": 9, "4": 1, "-1": 7, "-2": 2}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (144, '输出学生成绩', '

本题要求编写程序,根据输入学生的成绩,统计并输出学生的平均成绩、最高成绩和最低成绩。建议使用动态内存分配来实现。

', '

输入第一行首先给出一个正整数N,表示学生的个数。接下来一行给出N个学生的成绩,数字间以空格分隔。

', '

按照以下格式输出:

average =平均成绩

max =最高成绩

min =最低成绩

结果均保留两位小数。

', '[{"input": "3\n85 90 95\n", "output": "average = 90.00\nmax = 95.00\nmin = 85.00\n"}]', '71efffb8e243457d28dddc1ee9ea9022', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 71, 29, 1, 3, '{"0": 29, "4": 6, "-1": 31, "-2": 5}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (152, '输出学生成绩', '

本题要求编写程序,根据输入学生的成绩,统计并输出学生的平均成绩、最高成绩和最低成绩。建议使用动态内存分配来实现。

', '

输入第一行首先给出一个正整数N,表示学生的个数。接下来一行给出N个学生的成绩,数字间以空格分隔。

', '

按照以下格式输出:

average =平均成绩

max =最高成绩

min =最低成绩

结果均保留两位小数。

', '[{"input": "3\n85 90 95\n", "output": "average = 90.00\nmax = 95.00\nmin = 85.00\n"}]', '71efffb8e243457d28dddc1ee9ea9022', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 85, 43, 1, '1-67', '{"0": 43, "4": 11, "-1": 24, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (324, '映射(15分)', '

给定两个长度为n的全排列a,b(全排列即长度为n的数组,且数组中的元素各不相同),对于第一个全排列的每个数a[i],输出其在第二个全排列b中出现的位置。

', '

第一行一个整数n。(1<=n<=100)

第二行n个不同的正整数,表示全排列a。(1<=a[i]<=n)

第三行n个不同的正整数,表示全排列b。(1<=b[i]<=n)

', '

一行n个整数,第i个数表示a[i]在全排列b中出现的位置。(以空格隔开,行末无空格)

', '[{"input": "3\n2 3 1\n1 3 2\n", "output": "3 2 1"}]', '72e47fd92d8c421e78333c0e29a64b54', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 10, 8, 1, '1-145', '{"0": 8, "4": 1, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (511, '映射(15分)', '

给定两个长度为n的全排列a,b(全排列即长度为n的数组,且数组中的元素各不相同),对于第一个全排列的每个数a[i],输出其在第二个全排列b中出现的位置。

', '

第一行一个整数n。(1<=n<=100)

第二行n个不同的正整数,表示全排列a。(1<=a[i]<=n)

第三行n个不同的正整数,表示全排列b。(1<=b[i]<=n)

', '

一行n个整数,第i个数表示a[i]在全排列b中出现的位置。(以空格隔开,行末无空格)

', '[{"input": "3\n2 3 1\n1 3 2\n", "output": "3 2 1"}]', '72e47fd92d8c421e78333c0e29a64b54', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 23, 15, 1, 6, '{"0": 15, "4": 3, "-1": 5}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (549, '递归求最大值', '

给出n个元素,必须使用递归的方法求出元素中的最大值

', '

第一行输入n表示元素个数

第二行输入n个整数

', '

输出n个整数中的最大值

', '[{"input": "3\n14 5 10", "output": "14"}]', '76d83293018f58a8f5910bc95e227e8c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

1 <= n <= 30

', '["C"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 7, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (277, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1\n", "output": "61"}]', '77c04e1db95639cc363c703b40021a4c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '

注意:闰年的2月份是29天。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1996, 256, false, null, null, null, 'ACM', false, 'Low', '', 13, 10, 358, '1-122', '{"0": 10, "-1": 2, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (380, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '78609d6f2251e37ab7319a3719900537', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 149, 20, 358, '1-169', '{"0": 20, "1": 1, "2": 1, "4": 27, "-1": 0, "-2": 26}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (362, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '78609d6f2251e37ab7319a3719900537', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 39, 3, 358, 4, '{"0": 3, "1": 1, "2": 1, "4": 9, "-1": 22, "-2": 3}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (552, '链表操作', '

输入一串int类型的数字以-1结束输入,将读取的不重复的数字构建成链表。并按照指示删除指定数字的节点,最后将剩余的链表的数字依次输出。

', '

输入要求链表的输入用-1结束,将不重复的数字构建成链表,比如 1 2 1 2 5 6 4 -1 构建成的链表 1 2 5 6 4;

接着输入要删除的数字。

', '

输出删除指定数字后的链表,中间用空格隔开,最后一个数字有空格。

', '[{"input": "1 2 3 4 5 6 5 4 6 -1\n4", "output": "1 2 3 5 6"}]', '7996139101eb390cfcbb73d57d2053e7', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

链表的中重复元素的查找,要在构建时进行,即链表中存在了不插入,不存在将节点插入到链表最后

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 4, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (313, '判断数据类型(10分)', '

假设现在你要判断数据类型是否为int、long long、double,输入n个字符串,请你判断其代表的数据类型是什么,且输入的每个字符串保证是正数,且是这三种类型的一种。

', '

第一行一个整数n。(n<=10)

接下来n行每行一个字符串s。(|s|<=10)

', '

对于每个字符串s,输出“int”或“long long”或“double”。

', '[{"input": "3\n12\n9999999999\n123.44\n", "output": "int\nlong long\ndouble\n"}]', '7a4f606f3bbcdfb62afffb6931cfb4b3', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 43, 7, 1, 3, '{"0": 7, "4": 1, "-1": 34, "-2": 1}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (8, 'Huffuman树', '

Huffman树在编码中有着广泛的应用。在这里,我们只关心Huffman树的构造过程。

给出一列数{pi}={p0, p1, …, pn-1},用这列数构造Huffman树的过程如下:

1. 找到{pi}中最小的两个数,设为pa和pb,将pa和pb从{pi}中删除掉,然后将它们的和加入到{pi}中。这个过程的费用记为pa + pb。

2. 重复步骤1,直到{pi}中只剩下一个数。

在上面的操作过程中,把所有的费用相加,就得到了构造Huffman树的总费用。

本题任务:对于给定的一个数列,现在请你求出用该数列构造Huffman树的总费用。

例如,对于数列{pi}={5, 3, 8, 2, 9},Huffman树的构造过程如下:

1. 找到{5, 3, 8, 2, 9}中最小的两个数,分别是2和3,从{pi}中删除它们并将和5加入,得到{5, 8, 9, 5},费用为5。

2. 找到{5, 8, 9, 5}中最小的两个数,分别是5和5,从{pi}中删除它们并将和10加入,得到{8, 9, 10},费用为10。

3. 找到{8, 9, 10}中最小的两个数,分别是8和9,从{pi}中删除它们并将和17加入,得到{10, 17},费用为17。

4. 找到{10, 17}中最小的两个数,分别是10和17,从{pi}中删除它们并将和27加入,得到{27},费用为27。

5. 现在,数列中只剩下一个数27,构造过程结束,总费用为5+10+17+27=59。

', '

输入的第一行包含一个正整数n(n<=100)。  接下来是n个正整数,表示p0, p1, …, pn-1,每个数不超过1000。

', '

输出用这些数构造Huffman树的总费用。

', '[{"input": "5\n5 3 8 2 9\n", "output": "59"}]', '7b7f3d4c8c1e9f20c3debe079c20568a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 336, 156, 1, '1-4', '{"0": 156, "1": 3, "4": 44, "-1": 69, "-2": 64}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (37, '地宫取宝', '

X 国王有一个地宫宝库。是 n x m 个格子的矩阵。每个格子放一件宝贝。每个宝贝贴着价值标签。

地宫的入口在左上角,出口在右下角。

小明被带到地宫的入口,国王要求他只能向右或向下行走。

走过某个格子时,如果那个格子中的宝贝价值比小明手中任意宝贝价值都大,小明就可以拿起它(当然,也可以不拿)。

当小明走到出口时,如果他手中的宝贝恰好是k件,则这些宝贝就可以送给小明。

请你帮小明算一算,在给定的局面下,他有多少种不同的行动方案能获得这k件宝贝。

', '

输入一行3个整数,用空格分开:n m k (1<=n,m<=50, 1<=k<=12)

接下来有 n 行数据,每行有 m 个整数 Ci (0<=Ci<=12)代表这个格子上的宝物的价值

', '

要求输出一个整数,表示正好取k个宝贝的行动方案数。该数字可能很大,输出它对 1000000007 取模的结果。

', '[{"input": "2 2 2\n1 2\n2 1\n", "output": "2"}, {"input": "2 3 2\n1 2 3\n2 1 5\n", "output": "14"}]', '7c72c5ea8a0f77e639487f7f766a999d', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 76, 24, 1, '1-26', '{"0": 24, "1": 20, "-1": 28, "-2": 4}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (142, '查看书籍', '

给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。

', '

输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。

', '

在一行中按照“价格,书名”的格式先后输出价格最高和最低的书。价格保留2位小数。

', '[{"input": "3\nProgramming in C\n21.5\nProgramming in VB\n18.5\nProgramming in Delphi\n25.0\n", "output": "25.00, Programming in Delphi\n18.50, Programming in VB\n"}]', '7c9fe0fbbaf96a4c9cf349aed580fb62', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 72, 22, 1, 1, '{"0": 22, "1": 3, "4": 6, "-1": 37, "-2": 4}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (150, '查看书籍', '

给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。

', '

输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。

', '

在一行中按照“价格,书名”的格式先后输出价格最高和最低的书。价格保留2位小数。

', '[{"input": "3\nProgramming in C\n21.5\nProgramming in VB\n18.5\nProgramming in Delphi\n25.0\n", "output": "25.00, Programming in Delphi\n18.50, Programming in VB\n"}]', '7c9fe0fbbaf96a4c9cf349aed580fb62', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 149, 50, 1, '1-65', '{"0": 50, "4": 17, "-1": 73, "-2": 9}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (165, '三体', '

浩瀚的宇宙是一个黑暗森林,而带有生命的星球就是森林中的猎手。作为面壁者,罗辑知道只需30个恒星的星图,便可以唯一确定这些星球的位置。如果这些恒星能够发射宇宙级功率,便会暴露这些恒星的位置,这是三体人所害怕的事情。

现在让我们简化这个事实:假设宇宙由n个一维点组成,坐标为1~n,每个点都有点值 ​v_{i} :如果​ v_{i} > 0,代表该点是恒星,且能量为​ v_{i} ;若 v_{i}​ = 0,代表该点是尘埃,会在宇宙中隔开恒星。坐标相邻的恒星组成了恒星群,若该恒星群中恒星的数量至少有30个,且其中最大能量恒星的能量至少是最小能量恒星的能量的100倍,则如上所述,该恒星群暴露于危险之中。给定n个点,表示宇宙,试求出暴露于危险中的恒星群的数量。

', '

第一行输入一个n,代表宇宙中点的数量。(30 <= n <= 10^5)

第二行输入n个整数v[1...n],表示恒星或尘埃。(0 <= v[i] <= 10^9)

', '

一行一个整数,表示答案。

', '[{"input": "30\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100\n", "output": "1\n"}, {"input": "30\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 100\n", "output": "0\n"}]', '7d73c79c750b770237b3df18986e5ef3', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 132, 27, 1, 'H', '{"0": 27, "4": 11, "-1": 88, "-2": 6}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (120, '阶乘', '

小明现在会求$n!$以及$n!$末尾连续0的个数了,但是他现在想考考你另一个问题:

给定一个整数k,求最小的n,使得$n!$末尾连续0的个数$\geq$k。

小明怕你不记得相关公式了,所以他告诉你$n !$末尾连续0的个数的公式为:$\lfloor\frac{n}{5}\rfloor+\lfloor\frac{n}{5 ^2}\rfloor+\lfloor\frac{n}{5^3}\rfloor+...+0$

', '

一个整数k。($1 \leq k \leq 2e8$)

', '

一个整数n表示答案。(保证答案不会超过int最大值)

', '[{"input": "10", "output": "45"}]', '7e435504942561325d933b19809c4881', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 106, 5, 1, 'F', '{"0": 5, "1": 56, "4": 3, "-1": 38, "-2": 4}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (52, '邮局', '

C村住着n户村民,由于交通闭塞,C村的村民只能通过信件与外界交流。为了方便村民们发信,C村打算在C村建设k个邮局,这样每户村民可以去离自己家最近的邮局发信。

现在给出了m个备选的邮局,请从中选出k个来,使得村民到自己家最近的邮局的距离和最小。其中两点之间的距离定义为两点之间的直线距离。

', '

输入的第一行包含三个整数n, m, k,分别表示村民的户数、备选的邮局数和要建的邮局数。

接下来n行,每行两个整数x, y,依次表示每户村民家的坐标。

接下来m行,每行包含两个整数x, y,依次表示每个备选邮局的坐标。

在输入中,村民和村民、村民和邮局、邮局和邮局的坐标可能相同,但你应把它们看成不同的村民或邮局。

', '

输出一行,包含k个整数,从小到大依次表示你选择的备选邮局编号。(备选邮局按输入顺序由1到m编号)

', '[{"input": "5 4 2
\n0 0
\n2 0
\n3 1
\n3 3\n
1 1
\n0 1
\n1 0
\n2 1
\n3 2\n", "output": "2 4"}]', '7f08788dde82cf71270318144151aa32', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

对于30%的数据,1<=n<=10,1<=m<=10,1<=k<=5;

对于60%的数据,1<=m<=20;

对于100%的数据,1<=n<=50,1<=m<=25,1<=k<=10。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 28, 3, 1, '1-48', '{"0": 3, "1": 9, "-1": 12, "-2": 4}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (155, '时间换算', '

本题要求编写程序,以hh:mm:ss的格式输出某给定时间再过n秒后的时间值(超过23:59:59就从0点开始计时)。

', '

输入在第一行中以hh:mm:ss的格式给出起始时间,第二行给出整秒数n(<60)。

', '

输出在一行中给出hh:mm:ss格式的结果时间。

', '[{"input": "11:59:40\n30\n", "output": "12:00:10\n"}]', '7f165f8b363f0c07a5350c9ea6b8b6e2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 66, 38, 1, '1-70', '{"0": 38, "-1": 26, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (147, '时间换算', '

本题要求编写程序,以hh:mm:ss的格式输出某给定时间再过n秒后的时间值(超过23:59:59就从0点开始计时)。

', '

输入在第一行中以hh:mm:ss的格式给出起始时间,第二行给出整秒数n(<60)。

', '

输出在一行中给出hh:mm:ss格式的结果时间。

', '[{"input": "11:59:40\n30\n", "output": "12:00:10\n"}]', '7f165f8b363f0c07a5350c9ea6b8b6e2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 69, 26, 1, 6, '{"0": 26, "-1": 40, "-2": 3}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (209, '序列求和', '

输入两个正整数an,求a+aa+aaa+aa...ana)之和。试编写相应程序。

', '

输出两个正整数a和n

', '

输出序列之和

', '[{"input": "2 3", "output": "246"}]', '7f2ded5c61679aaff2ccb66a096747c0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 216, 100, 358, '4-4', '{"0": 100, "1": 4, "4": 14, "-1": 80, "-2": 18}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (231, '序列求和', '

输入两个正整数an,求a+aa+aaa+aa...ana)之和。试编写相应程序。

', '

输出两个正整数a和n

', '

输出序列之和

', '[{"input": "2 3", "output": "246"}]', '7f2ded5c61679aaff2ccb66a096747c0', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 29, 24, 358, '1-99', '{"0": 24, "-1": 2, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (38, '翻硬币', '

小明正在玩一个“翻硬币”的游戏。

桌上放着排成一排的若干硬币。我们用 * 表示正面,用 o 表示反面(是小写字母,不是零)。

比如,可能情形是:**oo***oooo

如果同时翻转左边的两个硬币,则变为:oooo***oooo

现在小明的问题是:如果已知了初始状态和要达到的目标状态,每次只能同时翻转相邻的两个硬币,那么对特定的局面,最少要翻动多少次呢?

我们约定:把翻动相邻的两个硬币叫做一步操作,那么要求:

', '

两行等长的字符串,分别表示初始状态和要达到的目标状态。每行的长度<1000

', '

一个整数,表示最小操作步数。

', '[{"input": "**********\no****o****\n", "output": "5"}, {"input": "*o**o***o***\n*o***o**o***\n", "output": "1"}]', '803526b84ed7e3b4a234739fb8bd0c12', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 38, 23, 1, '1-27', '{"0": 23, "1": 1, "-1": 9, "-2": 5}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (376, '神奇的数列', '

定义数列$ f_{n+2} = f_{n+1} + f_{n} $,数列中任何一个元素都是正整数。从定义可以看出,不同的$ f_1,f_2 $会产生不同的数列。

假设给定一个数字$ x(2 <= x <= 2^{32} ) $,给出这个数字出现在位置$ i(i >= 3,数列下标从1开始) $的数列个数。

', '

数字$ x $

', '

每行为2个数字,空格分隔。第一个数字为$ x $在数列中的位置$ i $,第二个为符合条件的数列个数,即$ f_1、f_2 $的组合种数。若存在多行,则按照$ i $由小到大的顺序输出。

', '[{"input": "3", "output": "3 2\n4 1"}]', '803763ef7788eada1b35270b09d1d773', '[{"score": 3, "input_name": "1.in", "output_name": "1.out"}, {"score": 3, "input_name": "2.in", "output_name": "2.out"}, {"score": 3, "input_name": "3.in", "output_name": "3.out"}, {"score": 3, "input_name": "4.in", "output_name": "4.out"}, {"score": 3, "input_name": "5.in", "output_name": "5.out"}, {"score": 3, "input_name": "6.in", "output_name": "6.out"}, {"score": 3, "input_name": "7.in", "output_name": "7.out"}, {"score": 3, "input_name": "8.in", "output_name": "8.out"}, {"score": 3, "input_name": "9.in", "output_name": "9.out"}, {"score": 3, "input_name": "10.in", "output_name": "10.out"}, {"score": 3, "input_name": "11.in", "output_name": "11.out"}, {"score": 3, "input_name": "12.in", "output_name": "12.out"}, {"score": 3, "input_name": "13.in", "output_name": "13.out"}, {"score": 3, "input_name": "14.in", "output_name": "14.out"}, {"score": 3, "input_name": "15.in", "output_name": "15.out"}, {"score": 3, "input_name": "16.in", "output_name": "16.out"}, {"score": 3, "input_name": "17.in", "output_name": "17.out"}, {"score": 3, "input_name": "18.in", "output_name": "18.out"}, {"score": 3, "input_name": "19.in", "output_name": "19.out"}, {"score": 3, "input_name": "20.in", "output_name": "20.out"}, {"score": 3, "input_name": "21.in", "output_name": "21.out"}, {"score": 3, "input_name": "22.in", "output_name": "22.out"}, {"score": 3, "input_name": "23.in", "output_name": "23.out"}, {"score": 3, "input_name": "24.in", "output_name": "24.out"}, {"score": 3, "input_name": "25.in", "output_name": "25.out"}, {"score": 3, "input_name": "26.in", "output_name": "26.out"}, {"score": 3, "input_name": "27.in", "output_name": "27.out"}, {"score": 3, "input_name": "28.in", "output_name": "28.out"}, {"score": 3, "input_name": "29.in", "output_name": "29.out"}, {"score": 3, "input_name": "30.in", "output_name": "30.out"}]', '

以下数列包含3,分别为

1 1 2 3 5 ...

1 2 3 5 8 ...

2 1 3 4 7 ...

其中3出现在数列第3位的数列有两个,出现在第四位的数列有一个,因此输出为:

3 2

4 1

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 5, 0, 1, 8, '{"1": 2, "-1": 3}', 0, 33, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (28, '兰顿蚂蚁', '

图片 1.png

兰顿蚂蚁,是于1986年,由克里斯·兰顿提出来的,属于细胞自动机的一种。

平面上的正方形格子被填上黑色或白色。在其中一格正方形内有一只“蚂蚁”。

蚂蚁的头部朝向为:上下左右其中一方。

蚂蚁的移动规则十分简单:
若蚂蚁在黑格,右转90度,将该格改为白格,并向前移一格;
若蚂蚁在白格,左转90度,将该格改为黑格,并向前移一格。

规则虽然简单,蚂蚁的行为却十分复杂。刚刚开始时留下的路线都会有接近对称,像是会重复,但不论起始状态如何,蚂蚁经过漫长的混乱活动后,会开辟出一条规则的“高速公路”。

蚂蚁的路线是很难事先预测的。

  你的任务是根据初始状态,用计算机模拟兰顿蚂蚁在第n步行走后所处的位置。

', '

输入数据的第一行是 m n 两个整数(3 < m, n < 100),表示正方形格子的行数和列数。

接下来是 m 行数据。

每行数据为 n 个被空格分开的数字。0 表示白格,1 表示黑格。

接下来是一行数据:x y s k, 其中x y为整数,表示蚂蚁所在行号和列号(行号从上到下增长,列号从左到右增长,都是从0开始编号)。s 是一个大写字母,表示蚂蚁头的朝向,我们约定:上下左右分别用:UDLR表示。k 表示蚂蚁走的步数。

', '

输出数据为两个空格分开的整数 p q, 分别表示蚂蚁在k步后,所处格子的行号和列号。

', '[{"input": "5 6
\n0 0 0 0 0 0
\n0 0 0 0 0 0
\n0 0 1 0 0 0\n
0 0 0 0 0 0
\n0 0 0 0 0 0
\n2 3 L 5\n", "output": "1 3\n"}, {"input": "3 3
\n0 0 0
\n1 1 1
\n1 1 1
\n1 1 U 6\n", "output": "0 0"}]', '80512acda1c0b1cd45e7ec7263140e01', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 78, 38, 1, '1-39', '{"0": 38, "4": 6, "-1": 32, "-2": 2}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (521, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '82d1e7ebd94c11318574d1d74aadedfd', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用结构体存放单词和出现次数

若次数相等, 则输出顺序和单词出现顺序一致

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 151, 2, 1, 7, '{"0": 2, "1": 2, "4": 31, "-1": 102, "-2": 14}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (533, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '82d1e7ebd94c11318574d1d74aadedfd', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用结构体存放单词和出现次数

若次数相等, 则输出顺序和单词出现顺序一致

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 2, 1, 7, '{"0": 2, "4": 1, "-1": 1}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (532, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '82d1e7ebd94c11318574d1d74aadedfd', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用结构体存放单词和出现次数

若次数相等, 则输出顺序和单词出现顺序一致

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-12', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (544, '单词排序', '

输入一个字符串语句查看语句中的单词出现的次数,并按照出现的次数对单词从小到大排序

', '

输入一行包含多个单词的字符串语句A,每个单词用空格隔开。

', '

按单词的次数从小到大输出对应的单词。

', '[{"input": "white red red blue red", "output": "white blue red"}]', '82d1e7ebd94c11318574d1d74aadedfd', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

使用结构体存放单词和出现次数

若次数相等, 则输出顺序和单词出现顺序一致

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 116, 16, 1, 7, '{"0": 16, "1": 1, "4": 31, "-1": 63, "-2": 5}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (290, '选择排序', '

输入一个正整数n(1<n<=10),再输入n个整数,将他们从大到小排序后输出。试编写相应程序。

', '

先输入一个n 然后在输入n个数,都是整数形式。

', '

输出从大到小排序后的数。中间用空格隔开,输出结尾不保留空格。

', '[{"input": "5\n1 2 3 4 5", "output": "5 4 3 2 1"}]', '82d411e82b2a5c616c4292bfe4863a97', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 60, 31, 358, '1-129', '{"0": 31, "4": 1, "-1": 20, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (270, '选择排序', '

输入一个正整数n(1<n<=10),再输入n个整数,将他们从大到小排序后输出。试编写相应程序。

', '

先输入一个n 然后在输入n个数,都是整数形式。

', '

输出从大到小排序后的数。中间用空格隔开,输出结尾不保留空格。

', '[{"input": "5\n1 2 3 4 5", "output": "5 4 3 2 1"}]', '82d411e82b2a5c616c4292bfe4863a97', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 228, 99, 358, '7-1', '{"0": 99, "1": 2, "4": 13, "-1": 97, "-2": 17}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (269, '统计一行文本的单词个数', '

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

', '

输入给出一行字符。

', '

在一行中输出单词个数。

', '[{"input": "Let''s go to room 209.", "output": "5"}]', '8406c6429b3f8091822c27072a7a333d', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 54, 28, 1, '1-121', '{"0": 28, "4": 3, "-1": 19, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (253, '统计一行文本的单词个数', '

本题目要求编写程序统计一行字符中单词的个数。所谓“单词”是指连续不含空格的字符串,各单词之间用空格分隔,空格数可以是多个。

', '

输入给出一行字符。

', '

在一行中输出单词个数。

', '[{"input": "Let''s go to room 209.", "output": "5"}]', '8406c6429b3f8091822c27072a7a333d', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 284, 95, 1, '6-8', '{"0": 95, "1": 6, "4": 13, "-1": 145, "-2": 25}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (448, '二叉树', '

给定一棵二叉树,树中的每个结点的值要么是0,要么是1。移除树中所有不包含1的子树(子树节点全是0)。子树的定义:对于树中的任意一个节点node,以node为根,node的后代构成的二叉树称之为子树。

注:题中给定的二叉树需要自己根据测试案例中的层序遍历序列构建。

', '

输入二叉树的层序遍历序列的长度;

输入二叉树的层序遍历序列(树中的每个节点的值都为大于等于0的整型数据,-1代表空指针)。

', '

输出移除所有不包含1的子树后的二叉树的层序遍历序列(-1代表空指针)。(行末尾有空格)

', '[{"input": "15\n1 0 1 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1\n", "output": "1 -1 1 -1 1 -1 -1"}]', '8450455146e0fa45a28e7f4a142822e1', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

解释:红色节点满足条件“所有不包含1的子树”。右图为返回的答案。

图片.png

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 100, 10, 1, 'E', '{"0": 10, "4": 10, "-1": 78, "-2": 2}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (118, '分石子', '

小华有N个石子,每个石子的重量为Qi,现在他要按顺序将它们装入K个筐中,求一种方案,使得最重的筐的重量达到最轻。例如当N=6, K=3,Q[1..6]=(3,8,4,11,3,4)时,最轻重量为15,装法为(3,8,4)(11)(3,4)

', '

N(<=10000), K(<=100)Q[1..N] (<=10000)

', '

最重筐的最轻重量

', '[{"input": "6 3\n3 8 4 11 3 4\n", "output": "15"}]', '84f465036627558c971c0bfa957bd577', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 13, 2, 1, 'G', '{"0": 2, "4": 1, "-1": 7, "-2": 3}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (74, 'test', '

test

', '

test

', '

test

', '[{"input": "test", "output": "test"}]', '85a9ee6a237dab02ac65d31af982795d', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 'test1', '{}', 0, 9, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (418, '新的A+B', '

题的目标很简单,就是求两个正整数A和B的和,其中A和B都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。

', '

输入在一行给出A和B,其间以空格分开。问题是A和B不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。

注意:我们把输入中出现的第1个空格认为是A和B的分隔。题目保证至少存在一个空格,并且B不是一个空字符串。

', '

如果输入的确是两个正整数,则按格式A + B = 和输出。如果某个输入不合要求,则在相应位置输出?,显然此时和也是?。

', '[{"input": "123 456", "output": "123 + 456 = 579\n"}, {"input": "22. 18\n", "output": "? + 18 = ?\n"}, {"input": "-100 blabla bla...33\n", "output": "? + ? = ?\n"}]', '86120c91c40c7a7a945291dee7ed568b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 385, 105, 1, 'C', '{"0": 105, "1": 1, "4": 15, "-1": 121, "-2": 143}', 0, 43, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (102, '快速排序', '

输入n个数,将它们从小到大排序输出

', '

n代表n个数,随后n个数,1<=n<=1000000

', '

排好序的数,中间用空格分开。

', '[{"input": "4\n1 2 3 4", "output": "1 2 3 4"}]', '8641b3055422588c5302ba405bf56e9f', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 19, 9, 1, 'B', '{"0": 9, "4": 2, "-1": 2, "-2": 6}', 0, 11, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (307, '字符串排序', '

本题要求编写程序,读入5个字符串,按由小到大的顺序输出。

', '

输入为由空格分隔的5个非空字符串,每个字符串不包括空格、制表符、换行符等空白字符,长度小于80。

', '

按照以下格式输出排序后的结果:

After sorted:

每行一个字符串

', '[{"input": "red yellow blue green white", "output": "After sorted:\nblue\ngreen\nred\nwhite\nyellow"}]', '867ed10058ca04612b74cf1cdafaabdd', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 88, 28, 1, '1-136', '{"0": 28, "4": 11, "-1": 45, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (297, '字符串排序', '

本题要求编写程序,读入5个字符串,按由小到大的顺序输出。

', '

输入为由空格分隔的5个非空字符串,每个字符串不包括空格、制表符、换行符等空白字符,长度小于80。

', '

按照以下格式输出排序后的结果:

After sorted:

每行一个字符串

', '[{"input": "red yellow blue green white", "output": "After sorted:\nblue\ngreen\nred\nwhite\nyellow"}]', '867ed10058ca04612b74cf1cdafaabdd', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 230, 86, 1, '8-7', '{"0": 86, "1": 2, "4": 37, "-1": 91, "-2": 14}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (540, '平面向量方向关系', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量。试编写相应程序判断两个向量的方向关系。

', '

输入在一行中按照“x​1 ​​y​1​​ x​2 ​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

若两个向量垂直,输出1;若两个向量平行,输出2;若两个向量既不垂直也不平行,输出0

', '[{"input": "1 2 -2 1", "output": "1"}, {"input": "3.5 -2.7 -13.9 8.7", "output": "0"}]', '86e51972ce929b2527ae513c8f272bb5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 28, 1, 4, '{"0": 28, "-1": 25, "-2": 9}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (526, '平面向量方向关系', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量。试编写相应程序判断两个向量的方向关系。

', '

输入在一行中按照“x​1 ​​y​1​​ x​2 ​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

若两个向量垂直,输出1;若两个向量平行,输出2;若两个向量既不垂直也不平行,输出0

', '[{"input": "1 2 -2 1", "output": "1"}, {"input": "3.5 -2.7 -13.9 8.7", "output": "0"}]', '86e51972ce929b2527ae513c8f272bb5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 3, 0, 1, 4, '{"4": 1, "-1": 2}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (525, '平面向量方向关系', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量。试编写相应程序判断两个向量的方向关系。

', '

输入在一行中按照“x​1 ​​y​1​​ x​2 ​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

若两个向量垂直,输出1;若两个向量平行,输出2;若两个向量既不垂直也不平行,输出0

', '[{"input": "1 2 -2 1", "output": "1"}, {"input": "3.5 -2.7 -13.9 8.7", "output": "0"}]', '86e51972ce929b2527ae513c8f272bb5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-9', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (517, '平面向量方向关系', '

输入两个二维平面向量Vl = ( x1 , y1)和V2 = ( x2 , y2 )的分量。试编写相应程序判断两个向量的方向关系。

', '

输入在一行中按照“x​1 ​​y​1​​ x​2 ​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

若两个向量垂直,输出1;若两个向量平行,输出2;若两个向量既不垂直也不平行,输出0

', '[{"input": "1 2 -2 1", "output": "1"}, {"input": "3.5 -2.7 -13.9 8.7", "output": "0"}]', '86e51972ce929b2527ae513c8f272bb5', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 398, 48, 1, 4, '{"0": 48, "4": 29, "-1": 282, "-2": 39}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (161, '加密的信息', '

小华和小明需要互发信息,为了防止其他人获取这些信息,他们打算确定一个加密方式。

小华提出,将26个字母按照1~26编号,例如“and”加密后就是“1144”。不过,小明认为这是个极其傻的加密方式,因为他通过“1144”能够解出多个组合,比如“and”,“kdd”,“aadd”,而且随着字符串的增加,这些可能组合将会越来越多,非常不方便解码。

但是,小华不相信,你能帮助小明设计一个程序来说服小华吗?该程序需要判断输入的数字串有几种可能的解码结果,然后输出结果总数。

', '

输入有很多行,每行一个数字串。数字串默认都是有效的(例如,没有以0开头的数字串),每个数字串长度小于60。

结尾单独一行,输入0,表示结束。

', '

对于每一个数字串,输出它可能的解码结果总数。

', '[{"input": "25114\n1111111111\n3333333333\n0\n", "output": "6\n89\n1\n"}]', '886073e7d350174e49073b5cdd9fed5d', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 80, 18, 1, 'D', '{"0": 18, "1": 3, "4": 1, "-1": 56, "-2": 2}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (409, 'CircularQueue', '

向队列中插入若干个元素(循环队列最大容量为8),访问并移除队列中的所有元素

', '

输入:要插入的元素的个数

要插入的每一个元素的值

', '

输出:访问并移除的每一个元素的值

', '[{"input": "5\n6 2 3 8 7", "output": "6 2 3 8 7"}, {"input": "9\n1 4 6 7 9 10 5 3 8 ", "output": "This queue is overflow!\n1 4 6 7 9 10 5 3"}]', '89591348b8c9e7bb8044c07e88bc71a2', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 63, 32, 511, 1, '{"0": 32, "4": 2, "-1": 9, "-2": 20}', 0, 37, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (499, '复读机(15分)', '

复读机就是可以把声音存储下来并且重复播放的一种机器。现在有一个复读机,它可以把你的输入保留信息输出。但是,这个复读机有一个毛病,它在某些时刻会重复当前的语句不止一遍,而在正常时刻只会复读一遍,现在请你输出复读后的语句。

', '

第一行一个整数n和m,分别表示有n个时刻复读机将重复不止一遍,m表示有m个语句。(1 <= n<= m <= 100)

接下来n行每行两个整数t和c,表示在t时刻的语句重复c遍。(1 <= t<= m, 2 <= c <= 10)

接下来一行m个整数,第i个整数pi,表示第i个时刻输入的句子。(1 <= pi <=10)

', '

若干个整数,每个整数后一个空格。

', '[{"input": "2 3\n1 2\n2 3\n1 2 3\n", "output": "1 1 2 2 2 3"}]', '89819a34505a483fc121215760ab5c8a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 181, 19, 1, 2, '{"0": 19, "4": 22, "-1": 134, "-2": 6}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (136, '超速罚款', '

按照规定,在高速公路上行使的机动车,达到或超出本车道限速的10%则处200元罚款;若达到或超出50%,就要吊销驾驶证。请编写程序根据车速和限速自动判别对该机动车的处理

', '

输入在一行中给出2个正整数,分别对应车速和限速,其间以空格分隔。

', '

在一行中输出处理意见:

若属于正常行驶,则输出“OK”;

若应处罚款,则输出“Exceed x%. Ticket 200”;

若应吊销驾驶证,则输出“Exceed x%. License Revoked”。其中x是超速的百分比,精确到整数。

', '[{"input": "65 60", "output": "OK"}, {"input": "200 120", "output": "Exceed 67%. License Revoked\n"}]', '8a6229bdcfc5539a240c24b22bfae42f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

提示1:在c语言中,输出百分号用“%%”。

提示2:四舍五入可采取结果+0.5后取整。

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 115, 35, 1, '1-59', '{"0": 35, "-1": 67, "-2": 13}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (186, '链表操作2', '

给定n次操作,请你使用单链表来实现。初始有一个空链表,每次操作给定一个整数a[i],如果链表中已有该数,请将该数的指针节点插到单链表的末尾,如果没有则在单链表的末尾新插入一个值为a[i]的指针节点,n次操作后请输出该单链表。

', '

第一行一个整数n。(1<=n<=1000)

接下来n个整数,表示该数组a[1..n]。(1<=a[i]<=1000)

', '

输出若干整数,表示最终的单链表。

', '[{"input": "5\n1 2 1 2 1\n", "output": "2 1\n"}, {"input": "5\n1 1 1 1 1\n", "output": "1\n"}]', '8e41ea34ee8c1aa3b53de3e94ae069d4', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 107, 20, 1, '1-82', '{"0": 20, "1": 17, "4": 17, "-1": 42, "-2": 11}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (183, '链表操作2', '

给定n次操作,请你使用单链表来实现。初始有一个空链表,每次操作给定一个整数a[i],如果链表中已有该数,请将该数的指针节点插到单链表的末尾,如果没有则在单链表的末尾新插入一个值为a[i]的指针节点,n次操作后请输出该单链表。

', '

第一行一个整数n。(1<=n<=1000)

接下来n个整数,表示该数组a[1..n]。(1<=a[i]<=1000)

', '

输出若干整数,表示最终的单链表。

', '[{"input": "5\n1 2 1 2 1\n", "output": "2 1\n"}, {"input": "5\n1 1 1 1 1\n", "output": "1\n"}]', '8e41ea34ee8c1aa3b53de3e94ae069d4', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 2, 0, 1, 2, '{"4": 2}', 0, 18, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (111, '排序', '

给定一个长度为n的数列,将这个数列中重复元素删去,并按从大到小的顺序排列。1<=n<=1000

', '

第一行为一个整数n。第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

第一行为一个整数n。第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '[{"input": "7\n8 3 5 4 2 3 2\n", "output": "8 5 4 3 2\n"}]', '8e68a0b6a9d3ec95cde29d66a5e6ad29', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 83, 0, 1, '1-56', '{"-2": 83}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (252, '简单计算器', '

模拟简单运算器的工作。假设计算器只能进行加减乘除运算,运算数和结果都是整数,四种运算符的优先级相同,按从左到右的顺序计算。

', '

输入在一行中给出一个四则运算算式,没有空格,且至少有一个操作数。遇等号”=”说明输入结束。

', '

在一行中输出算式的运算结果,保留两位小数;或者如果除法分母为0或有非法运算符,则输出错误信息“ERROR”。

', '[{"input": "1+2*10-10/2=", "output": "10.00"}]', '8e84ad834c42f52c8604957ed2e2d31f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 225, 92, 1, '6-7', '{"0": 92, "1": 7, "4": 12, "-1": 99, "-2": 15}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (398, '单链表结点删除', '

本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中所有存储了某给定值的结点删除。链表结点定义如下:

struct ListNode {

int data;

ListNode *next;

};

函数接口定义:

struct ListNode *readlist();

struct ListNode *deletem( struct ListNode *L, int m );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数deletem将单链表L中所有存储了m的结点删除。返回指向结果链表头结点的指针。

', '

第一行输入若干数(输入-1结束,-1不算在链表中)

第二行输入一个整数m。

', '

一行若干整数,表示删除m之后的单链表。

', '[{"input": "10 11 10 12 10 -1\n10\n", "output": "11 12 "}]', '8ec010b021bb3ef7f3044cfbdbf98ebc', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 110, 31, 1, '1-179', '{"0": 31, "1": 1, "4": 16, "-1": 50, "-2": 12}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (394, '单链表结点删除', '

本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中所有存储了某给定值的结点删除。链表结点定义如下:

struct ListNode {

int data;

ListNode *next;

};

函数接口定义:

struct ListNode *readlist();

struct ListNode *deletem( struct ListNode *L, int m );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数deletem将单链表L中所有存储了m的结点删除。返回指向结果链表头结点的指针。

', '

第一行输入若干数(输入-1结束,-1不算在链表中)

第二行输入一个整数m。

', '

一行若干整数,表示删除m之后的单链表。

', '[{"input": "10 11 10 12 10 -1\n10\n", "output": "11 12 "}]', '8ec010b021bb3ef7f3044cfbdbf98ebc', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 137, 68, 1, '11-8', '{"0": 68, "1": 1, "2": 1, "4": 25, "-1": 31, "-2": 11}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (520, '兔子繁衍II', '

递归求解:小王家在第一年年初养了一对(1岁的)兔子,已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一对新兔子。假设兔子不死,请问第n年年末小王家一共有多少对兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "55"}]', '8f06cfba392b1d273f3d5cf324f45765', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

非递归求解只得一半分

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 113, 63, 1, 5, '{"0": 63, "1": 2, "4": 4, "-1": 17, "-2": 27}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (541, '兔子繁衍II', '

递归求解:小王家在第一年年初养了一对(1岁的)兔子,已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一对新兔子。假设兔子不死,请问第n年年末小王家一共有多少对兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "55"}]', '8f06cfba392b1d273f3d5cf324f45765', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

非递归求解只得一半分

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 25, 20, 1, 5, '{"0": 20, "1": 2, "-1": 3}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (528, '兔子繁衍II', '

递归求解:小王家在第一年年初养了一对(1岁的)兔子,已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一对新兔子。假设兔子不死,请问第n年年末小王家一共有多少对兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "55"}]', '8f06cfba392b1d273f3d5cf324f45765', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

非递归求解只得一半分

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 5, '{}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (527, '兔子繁衍II', '

递归求解:小王家在第一年年初养了一对(1岁的)兔子,已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一对新兔子。假设兔子不死,请问第n年年末小王家一共有多少对兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "55"}]', '8f06cfba392b1d273f3d5cf324f45765', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

非递归求解只得一半分

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-10', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (425, '苹果摆盘', '

幼儿园老师有n个苹果,现在需要摆盘。老师需要把这n个苹果放到尽可能多的盘子里,但是有限制条件:每个果盘至少放一个苹果,从第三个及以后的果盘中的苹果数量至少是它前面两个果盘中的苹果数量之和。

请问这n个苹果最多能放几个果盘呢?

***注意:本题必须使用递归***

', '

一行一个整数n。(4 <= n <=10^9)

', '

输出一个整数,表示n个苹果最多能放几个果盘。

', '[{"input": "5", "output": "3"}]', '8f330ee1b2a652d15e1c4517388c8b61', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 251, 29, 1, 'B', '{"0": 29, "1": 51, "3": 3, "4": 29, "-1": 122, "-2": 17}', 0, 46, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (241, '使用函数计算两点间的距离', '

本题要求实现一个函数,对给定平面任意两点坐标(x​1​​,y​1​​)和(x​2​​,y​2​​),求这两点之间的距离。

函数接口定义:

double dist( double x1, double y1, double x2, double y2);

其中用户传入的参数为平面上两个点的坐标(x1, y1)和(x2, y2),函数dist应返回两点间的距离。

', '

一行四个浮点数。

', '

一个浮点数,保留两位小数。

', '[{"input": "10 10 200 100", "output": "210.24"}]', '904ca438e53282c45853bd479b047763', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 23, 21, 1, '1-109', '{"0": 21, "4": 1, "-1": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (198, '使用函数计算两点间的距离', '

本题要求实现一个函数,对给定平面任意两点坐标(x​1​​,y​1​​)和(x​2​​,y​2​​),求这两点之间的距离。

函数接口定义:

double dist( double x1, double y1, double x2, double y2);

其中用户传入的参数为平面上两个点的坐标(x1, y1)和(x2, y2),函数dist应返回两点间的距离。

', '

一行四个浮点数。

', '

一个浮点数,保留两位小数。

', '[{"input": "10 10 200 100", "output": "210.24"}]', '904ca438e53282c45853bd479b047763', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 145, 100, 1, '5-3', '{"0": 100, "-1": 25, "-2": 20}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (506, '吃豆子(15分)', '

给你一个数组,数组上的每个位置都有一定数量的豆子,现在吃豆人会进行若干次操作,每次操作给定一个坐标x,吃豆人会把位于坐标x上位置的豆子都吃掉,同时位于x位置右边的位置都会向左移动一格。具体来说,x+1位置上的豆子转移到x位置,x+2位置上的豆子转移到x+1位置,以此类推。

每次操作,如果吃豆人发现x位置上已经没豆子了,输出0,否则输出吃到的豆子数。

', '

第一行两个整数n和m,分别表示数组长度和操作次数。(1<=n,m<=1000)

第二行有n个整数,代表初始每个位置上的豆子数d[i]。(1<=d[i]<=1000)

接下来m行,每行一个整数,代表该次操作的位置pos。(1<=pos<=n)

', '

对于每次操作,输出一行,代表该次吃豆人吃到的豆子。

', '[{"input": "3 2\n2 3 1\n2\n3\n", "output": "3\n0\n"}]', '9074cdb2d1a64ca66ec9831c866daec7', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 162, 37, 1, 1, '{"0": 37, "1": 1, "4": 25, "-1": 92, "-2": 7}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (319, '吃豆子(15分)', '

给你一个数组,数组上的每个位置都有一定数量的豆子,现在吃豆人会进行若干次操作,每次操作给定一个坐标x,吃豆人会把位于坐标x上位置的豆子都吃掉,同时位于x位置右边的位置都会向左移动一格。具体来说,x+1位置上的豆子转移到x位置,x+2位置上的豆子转移到x+1位置,以此类推。

每次操作,如果吃豆人发现x位置上已经没豆子了,输出0,否则输出吃到的豆子数。

', '

第一行两个整数n和m,分别表示数组长度和操作次数。(1<=n,m<=1000)

第二行有n个整数,代表初始每个位置上的豆子数d[i]。(1<=d[i]<=1000)

接下来m行,每行一个整数,代表该次操作的位置pos。(1<=pos<=n)

', '

对于每次操作,输出一行,代表该次吃豆人吃到的豆子。

', '[{"input": "3 2\n2 3 1\n2\n3\n", "output": "3\n0\n"}]', '9074cdb2d1a64ca66ec9831c866daec7', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 46, 18, 1, '1-140', '{"0": 18, "4": 2, "-1": 21, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (83, '买月饼', '

中秋节到了,小华想购买学校发售的月饼,而且因为某些原因,他想要尽可能多花点钱,你能帮助他想出最好的购买策略吗?

注意:假如学校发售的有 3 种月饼,其库存量分别为 18、15、10个,总售价分别为 75、72、45 元。如果小华最多只想买20个,那么花钱最多的策略应该是买全部 15 个第 2 种月饼、以及 5 个第 3 种月饼,花费 72 + 45/2 = 94.5(元)。

', '

每个输入包含一个测试用例。每个测试用例先给出一个不超过 1000 的正整数 N 表示月饼的种类数、以及不超过 300的正整数 D 表示小华最多想买的月饼数。随后一行给出 N 个正数表示每种月饼的库存量;最后一行给出 N 个正数表示每种月饼的总售价。数字间以空格分隔。

', '

对每组测试用例,在一行中输出最大花费,以元为单位并精确到小数点后 2 位。

', '[{"input": "3 20\n18 15 10\n75 72 45\n", "output": "94.50\n"}]', '9226506c6f4cd385feb191de3c2bc261', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 85, 16, 1, 3, '{"0": 16, "1": 1, "4": 27, "-1": 31, "-2": 10}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (99, '捡石子', '

丁丁喜欢捡石子,有一天他突然有了一个有趣的想法,有n个石子,每次他只能捡一颗石子或者两颗石子,他想知道捡完这n颗石子共有多少方案。

', '

n个石子,n<=10

', '

捡完这些石子的总方案数

', '[{"input": "2", "output": "2"}]', '9450bf635e4f143b2544c109751d9b47', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 27, 17, 1, 'C', '{"0": 17, "-1": 8, "-2": 2}', 0, 10, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (340, '查找书籍', '

给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。

', '

输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。

', '

在一行中按照“价格, 书名”的格式先后输出价格最高和最低的书。价格保留2位小数。

', '[{"input": "3\nProgramming in C\n21.5\nProgramming in VB\n18.5\nProgramming in Delphi\n25.0", "output": "25.00,Programming in Delphi\n18.50,Programming in VB"}]', '94b7311c852eeed0f0306de195a94ab5', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 337, 92, 358, '9-4', '{"0": 92, "4": 27, "-1": 198, "-2": 20}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (345, '查找书籍', '

给定n本书的名称和定价,本题要求编写程序,查找并输出其中定价最高和最低的书的名称和定价。

', '

输入第一行给出正整数n(<10),随后给出n本书的信息。每本书在一行中给出书名,即长度不超过30的字符串,随后一行中给出正实数价格。题目保证没有同样价格的书。

', '

在一行中按照“价格, 书名”的格式先后输出价格最高和最低的书。价格保留2位小数。

', '[{"input": "3\nProgramming in C\n21.5\nProgramming in VB\n18.5\nProgramming in Delphi\n25.0", "output": "25.00, Programming in Delphi\n18.50, Programming in VB"}]', '94b7311c852eeed0f0306de195a94ab5', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 105, 36, 358, '1-150', '{"0": 36, "4": 8, "-1": 59, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (393, '奇数值结点链表', '

本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中奇数值的结点重新组成一个新的链表。链表结点定义如下:

struct ListNode {

int data;

ListNode *next;

};

函数接口定义:

struct ListNode *readlist();

struct ListNode *getodd( struct ListNode **L );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数getodd将单链表L中奇数值的结点分离出来,重新组成一个新的链表。返回指向新链表头结点的指针,同时将L中存储的地址改为删除了奇数值结点后的链表的头结点地址(所以要传入L的指针)。

', '

输入若干数(输入-1结束,-1不算在链表中)

', '

输出两行。

第一行为奇数值链表,第二行为偶数值链表。

每行输出为若干整数,每个整数后输出空格。(包括每行的最后一个数)

', '[{"input": "1 2 2 3 4 5 6 7 -1", "output": "1 3 5 7 \n2 2 4 6 \n"}]', '94c896967ce2c00b7460451c11eed04c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 171, 67, 1, '11-7', '{"0": 67, "1": 2, "4": 32, "-1": 39, "-2": 31}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (397, '奇数值结点链表', '

本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中奇数值的结点重新组成一个新的链表。链表结点定义如下:

struct ListNode {

int data;

ListNode *next;

};

函数接口定义:

struct ListNode *readlist();

struct ListNode *getodd( struct ListNode **L );

函数readlist从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到−1时表示输入结束,函数应返回指向单链表头结点的指针。

函数getodd将单链表L中奇数值的结点分离出来,重新组成一个新的链表。返回指向新链表头结点的指针,同时将L中存储的地址改为删除了奇数值结点后的链表的头结点地址(所以要传入L的指针)。

', '

输入若干数(输入-1结束,-1不算在链表中)

', '

输出两行。

第一行为奇数值链表,第二行为偶数值链表。

每行输出为若干整数,每个整数后输出空格。(包括每行的最后一个数)

', '[{"input": "1 2 2 3 4 5 6 7 -1", "output": "1 3 5 7 \n2 2 4 6 \n"}]', '94c896967ce2c00b7460451c11eed04c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 61, 28, 1, '1-178', '{"0": 28, "4": 18, "-1": 13, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (236, '打印菱形星号“*”图案', '

输入一个正整nn为奇数),打印一个高度为n的“*”菱形图案。试编写相应程序。

', '

输入一个整数 n

', '

打印一个高度为n的棱形图案,非 “*” 号区域用空格字符填充,上下行之间并无空行。

', '[{"input": "7", "output": " *\n ***\n *****\n*******\n *****\n ***\n *"}]', '95f6b0ef564492ecba6c3da824934e54', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 22, 358, '1-104', '{"0": 22, "-1": 19, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (214, '打印菱形星号“*”图案', '

输入一个正整nn为奇数),打印一个高度为n的“*”菱形图案。试编写相应程序。

', '

输入一个整数 n

', '

打印一个高度为n的棱形图案,非 “*” 号区域用空格字符填充,上下行之间并无空行。

', '[{"input": "7", "output": " *\n ***\n *****\n*******\n *****\n ***\n *"}]', '95f6b0ef564492ecba6c3da824934e54', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 315, 97, 358, '4-9', '{"0": 97, "4": 5, "-1": 165, "-2": 48}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (29, '车轮轴迹', '

栋栋每天骑自行车回家需要经过一条狭长的林荫道。道路由于年久失修,变得非常不平整。虽然栋栋每次都很颠簸,但他仍把骑车经过林荫道当成一种乐趣。
由于颠簸,栋栋骑车回家的路径是一条上下起伏的曲线,栋栋想知道,他回家的这条曲线的长度究竟是多长呢?更准确的,栋栋想知道从林荫道的起点到林荫道的终点,他的车前轮的轴(圆心)经过的路径的长度。
栋栋对路面进行了测量。他把道路简化成一条条长短不等的直线段,这些直线段首尾相连,且位于同一平面内。并在该平面内建立了一个直角坐标系,把所有线段的端点坐标都计算好。
假设栋栋的自行车在行进的过程中前轮一直是贴着路面前进的。
1-20-1.png
上图给出了一个简单的路面的例子,其中蓝色实线为路面,红色虚线为车轮轴经过的路径。在这个例子中,栋栋的前轮轴从A点出发,水平走到B点,然后绕着 地面的F点到C点(绕出一个圆弧),再沿直线下坡到D点,最后水平走到E点,在这个图中地面的坐标依次为:(0, 0), (2, 0), (4, -1),(6, -1),前轮半径为1.50,前轮轴前进的距离依次为:
AB=2.0000;弧长BC=0.6955;CD=1.8820;DE=1.6459。
总长度为6.2233。

下图给出了一个较为复杂的路面的例子,在这个例子中,车轮在第一个下坡还没下完时(D点)就开始上坡了,之后在坡的顶点要从E绕一个较大的圆弧到F点。这个图中前轮的半径为1,每一段的长度依次为:
AB=3.0000;弧长BC=0.9828;CD=1.1913;DE=2.6848;弧长EF=2.6224; FG=2.4415;GH=2.2792。
总长度为15.2021。
1-20-2.png
现在给出了车轮的半径和路面的描述,请求出车轮轴轨迹的总长度。

', '

输入的第一行包含一个整数n和一个实数r,用一个空格分隔,表示描述路面的坐标点数和车轮的半径。
接下来n行,每个包含两个实数,其中第i行的两个实数x[i], y[i]表示描述路面的第i个点的坐标。
路面定义为所有路面坐标点顺次连接起来的折线。给定的路面的一定满足以下性质:

*第一个坐标点一定是(0, 0);
*第一个点和第二个点的纵坐标相同;
*倒数第一个点和倒数第二个点的纵坐标相同;
*第一个点和第二个点的距离不少于车轮半径;
*倒数第一个点和倒数第二个点的的距离不少于车轮半径;
*后一个坐标点的横坐标大于前一个坐标点的横坐标,即对于所有的i,x[i+1]>x[i]。

', '

输出一个实数,四舍五入保留两个小数,表示车轮轴经过的总长度。
你的结果必须和参考答案一模一样才能得分。数据保证答案精确值的小数点后第三位不是4或5。

', '[{"input": "4 1.50\n0.00 0.00\n2.00 0.00\n4.00 -1.00\n6.00 -1.00", "output": "6.22"}, {"input": "6 1.00\n0.00 0.00\n3.00 0.00\n5.00 -3.00\n6.00 2.00\n7.00 -1.00\n10.00 -1.00", "output": "15.20"}]', '967425a5dd3000cebb33c940c41e3b72', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例1说明

这个样例对应第一个图。

样例2说明

这个样例对应第二个图

数据规模和约定

对于20%的数据,n=4;
对于40%的数据,n≤10;
对于100%的数据,4≤n≤100,0.5≤r≤20.0,x[i] ≤2000.0,-2000.0≤y[i] ≤2000.0。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 22, 3, 1, '1-20', '{"0": 3, "4": 1, "-1": 10, "-2": 8}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (19, '剪格子', '

如下图所示,3 x 3 的格子中填写了一些整数。

1537274166948.jpg

我们沿着图中的星号线剪开,得到两个部分,每个部分的数字和都是60。

本题的要求就是请你编程判定:对给定的m x n 的格子中的整数,是否可以分割为两个部分,使得这两个区域的数字和相等。

如果存在多种解答,请输出包含左上角格子的那个区域包含的格子的最小数目。

如果无法分割,则输出 0。

', '

程序先读入两个整数 m n 用空格分割 (m,n<10)。

表示表格的宽度和高度。

接下来是n行,每行m个正整数,用空格分开。每个整数不大于10000。

', '

输出一个整数,表示在所有解中,包含左上角的分割区可能包含的最小的格子数目。

', '[{"input": "3 3\n
10 1 52\n
20 30 1\n
1 2 3 \n", "output": "3 \n"}, {"input": "4 3
\n1 1 1 1
\n1 30 80 2
\n1 1 1 100 \n", "output": "10 \n"}]', '972b53e04250f6238fc42269126f322d', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 142, 67, 1, '1-37', '{"0": 67, "1": 4, "4": 2, "-1": 22, "-2": 47}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (91, '求指定区间的和', '

求指定区间的和

', '

求指定区间的和

', '

求指定区间的和

', '[{"input": "求指定区间的和", "output": "求指定区间的和"}]', '975c18353f2594f79df1e578ca54d992', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 5, '{}', 0, 1, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (486, '计算分段函数', '

计算下列分段函数:

2.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

根据输入 x 计算 f(x) 的结果 result, 结果直接取整。(注意不是四舍五入,而是类型的强制转换,即只取整数部分)

', '[{"input": "4.00", "output": "7"}, {"input": "-2", "output": "1"}]', '9796081c6ca950dc6213541f3ede9806', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 6, 5, 1, 2, '{"0": 5, "-2": 1}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (483, '计算分段函数', '

计算下列分段函数:

2.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

根据输入 x 计算 f(x) 的结果 result, 结果直接取整。(注意不是四舍五入,而是类型的强制转换,即只取整数部分)

', '[{"input": "4.00", "output": "7"}, {"input": "-2", "output": "1"}]', '9796081c6ca950dc6213541f3ede9806', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-2', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (472, '计算分段函数', '

计算下列分段函数:

2.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

根据输入 x 计算 f(x) 的结果 result, 结果直接取整。(注意不是四舍五入,而是类型的强制转换,即只取整数部分)

', '[{"input": "4.00", "output": "7"}, {"input": "-2", "output": "1"}]', '9796081c6ca950dc6213541f3ede9806', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 174, 61, 1, 2, '{"0": 61, "4": 3, "-1": 83, "-2": 27}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (116, '数字排序', '

小华手上有一个长度为n的数列,里面的数字都是乱序的,现在他想要将它们都按照从大到小排序,你能帮助他吗?

', '

第一行为一个整数n(1<=n<=1000)第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

输出一行,按从大到小的顺序输出排序后的数列。

', '[{"input": "5\n8 3 5 4 2\n", "output": "8 5 4 3 2"}]', '979fa98d412810850905331773206bfe', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 58, 29, 1, 'A', '{"0": 29, "-1": 16, "-2": 13}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (402, '链表操作', '

输入一串int类型的数字以-1结束输入,将读取的不重复的数字构建成链表。并按照指示删除指定数字的节点,最后将剩余的链表的数字依次输出。

', '

输入要求链表的输入用-1结束,将不重复的数字构建成链表,比如 1 2 1 2 5 6 4 -1 构建成的链表 1 2 5 6 4;

接着输入要删除的数字。

', '

输出删除指定数字后的链表,中间用空格隔开,最后一个数字有空格。

', '[{"input": "1 2 3 4 5 6 5 4 6 -1\n4", "output": "1 2 3 5 6"}]', '97bfe4db418b22dcf2fe105311e090c8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

链表的中重复元素的查找,要在构建时进行,即链表中存在了不插入,不存在将节点插入到链表最后

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 45, 13, 358, 4, '{"0": 13, "1": 1, "3": 1, "4": 11, "-1": 11, "-2": 8}', 0, 35, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (406, '链表操作', '

输入一串int类型的数字以-1结束输入,将读取的不重复的数字构建成链表。并按照指示删除指定数字的节点,最后将剩余的链表的数字依次输出。

', '

输入要求链表的输入用-1结束,将不重复的数字构建成链表,比如 1 2 1 2 5 6 4 -1 构建成的链表 1 2 5 6 4;

接着输入要删除的数字。

', '

输出删除指定数字后的链表,中间用空格隔开,最后一个数字有空格。

', '[{"input": "1 2 3 4 5 6 5 4 6 -1\n4", "output": "1 2 3 5 6"}]', '97bfe4db418b22dcf2fe105311e090c8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '

链表的中重复元素的查找,要在构建时进行,即链表中存在了不插入,不存在将节点插入到链表最后

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 52, 18, 358, '1-183', '{"0": 18, "4": 13, "-1": 17, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (127, '计算分段函数', '

计算下列分段函数f(x)的值:

image.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

在一行中按“f(x) = result”的格式输出,其中x与result都保留两位小数。

', '[{"input": "10", "output": "f(10.00) = 3.16"}, {"input": "-0.5", "output": "f(-0.50) = -2.75"}]', '98312d65fd10d3b2cd9b04c8a12196b8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 85, 28, 1, 2, '{"0": 28, "4": 1, "-1": 52, "-2": 4}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (370, '计算分段函数', '

计算下列分段函数f(x)的值:

image.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

在一行中按“f(x) = result”的格式输出,其中x与result都保留两位小数。

', '[{"input": "10", "output": "f(10.00) = 3.16"}, {"input": "-0.5", "output": "f(-0.50) = -2.75"}]', '98312d65fd10d3b2cd9b04c8a12196b8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 27, 8, 1, 2, '{"0": 8, "-1": 9, "-2": 10}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (272, '计算分段函数', '

计算下列分段函数f(x)的值:

image.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

在一行中按“f(x) = result”的格式输出,其中x与result都保留两位小数。

', '[{"input": "10", "output": "f(10.00) = 3.16"}, {"input": "-0.5", "output": "f(-0.50) = -2.75"}]', '98312d65fd10d3b2cd9b04c8a12196b8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 115, 28, 1, 2, '{"0": 28, "-1": 81, "-2": 6}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (135, '计算分段函数', '

计算下列分段函数f(x)的值:

image.png

注:可在头文件中包含math.h,并调用sqrt函数求平方根,调用pow函数求幂。

', '

输入在一行中给出实数x。

', '

在一行中按“f(x) = result”的格式输出,其中x与result都保留两位小数。

', '[{"input": "10", "output": "f(10.00) = 3.16"}, {"input": "-0.5", "output": "f(-0.50) = -2.75"}]', '98312d65fd10d3b2cd9b04c8a12196b8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 84, 28, 1, '1-58', '{"0": 28, "4": 14, "-1": 37, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (501, '使用函数判断三角形(10分)', '

给定n个可选的木棍长度,问是否能够选出3个构成三角形。

注意,你需要实现一个函数ok,来判断传入的三个边长能否构成三角形。

函数接口定义:

int isTriangle( int x, int y, int z);

传入三个边长参数x,y,z,是三角形返回1,否则0。

', '

第一行一个整数n。(3<=n<=20)

第二行n个整数,代表木棍长度a[i]。(1<=a[i]<=10^8)

', '

若能够选出3个构成三角形,输出最小的三角形周长,否则输出“No”。

', '[{"input": "3\n1 2 3\n", "output": "No"}, {"input": "3\n1 2 2\n", "output": "5"}]', '983f11d461969267511842207ce29716', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 259, 21, 1, 4, '{"0": 21, "4": 88, "-1": 124, "-2": 26}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (226, '统计学生成绩', '

输入一个正整数n,再输入n个学生的成绩,统计五分制成绩的成绩分布。百分制成绩到五分制成绩的转换规则:大于或等于90分为A,小于90且大于或等于80分为B,小于80分且大于或等于70分为C,小于70分且大于或等于60D,小于60分为E。试着编写相应程序。

', '

输入一个n 和n个学生的成绩,n为整数,学生成绩是double形式

', '

输出n个学生的五进制分数,中间用空格隔开。

', '[{"input": "n\n90 80 70 60 50", "output": "A B C D E"}]', '9857fe3322585bb243c24dc946c6b013', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 44, 27, 358, '1-94', '{"0": 27, "4": 3, "-1": 12, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (204, '统计学生成绩', '

输入一个正整数n,再输入n个学生的成绩,统计五分制成绩的成绩分布。百分制成绩到五分制成绩的转换规则:大于或等于90分为A,小于90且大于或等于80分为B,小于80分且大于或等于70分为C,小于70分且大于或等于60D,小于60分为E。试着编写相应程序。

', '

输入一个n 和n个学生的成绩,n为整数,学生成绩是double形式

', '

输出n个学生的五进制分数,中间用空格隔开。

', '[{"input": "5\n90 80 70 60 50", "output": "A B C D E"}]', '9857fe3322585bb243c24dc946c6b013', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 387, 97, 358, '3-4', '{"0": 97, "1": 4, "4": 35, "-1": 186, "-2": 65}', 0, 21, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (101, '判断素数', '

一个大于1的正整数,如果除了1和它本身以外,不能被其他正整数整除,就叫素数,给一个数n,判断它是不是素数。

', '

输入数字n,2<=n<=1000000000

', '

如果n为素数,输出YES,否则输出NO

', '[{"input": "2", "output": "YES"}]', '9863c7db4beafe336b26fbbb242154e2', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 37, 13, 1, 'E', '{"0": 13, "4": 2, "-1": 8, "-2": 14}', 0, 10, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (27, '字符串对比', '

给定两个仅由大写字母或小写字母组成的字符串(长度介于1到10之间),它们之间的关系是以下4中情况之一:

1:两个字符串长度不等。比如 Beijing 和 Hebei

2:两个字符串不仅长度相等,而且相应位置上的字符完全一致(区分大小写),比如 Beijing 和 Beijing

3:两个字符串长度相等,相应位置上的字符仅在不区分大小写的前提下才能达到完全一致(也就是说,它并不满足情况2)。比如 beijing 和 BEIjing

4:两个字符串长度相等,但是即使是不区分大小写也不能使这两个字符串一致。比如 Beijing 和 Nanjing

编程判断输入的两个字符串之间的关系属于这四类中的哪一类,给出所属的类的编号。

', '

包括两行,每行都是一个字符串

', '

仅有一个数字,表明这两个字符串的关系编号

', '[{"input": "BEIjing\nbeiJing \n", "output": "3"}]', '988bd62ee46270e28997a13038e962d8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 266, 98, 1, '1-18', '{"0": 98, "4": 34, "-1": 52, "-2": 82}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (70, '字符串对比', '

给定两个仅由大写字母或小写字母组成的字符串(长度介于1到10之间),它们之间的关系是以下4中情况之一:

  1:两个字符串长度不等。比如 Beijing 和 Hebei

  2:两个字符串不仅长度相等,而且相应位置上的字符完全一致(区分大小写),比如 Beijing 和 Beijing

  3:两个字符串长度相等,相应位置上的字符仅在不区分大小写的前提下才能达到完全一致(也就是说,它并不满足情况2)。比如 beijing 和 BEIjing

  4:两个字符串长度相等,但是即使是不区分大小写也不能使这两个字符串一致。比如 Beijing 和 Nanjing

  编程判断输入的两个字符串之间的关系属于这四类中的哪一类,给出所属的类的编号。

', '

包括两行,每行都是一个字符串

', '

仅有一个数字,表明这两个字符串的关系编号

', '[{"input": "BEIjing\nbeiJing \n", "output": "3"}]', '988bd62ee46270e28997a13038e962d8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-9', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (294, '报数', '

报数游戏是这样的:有n个人围成一圈,按顺序从1到n编好号。从第一个人开始报数,报到m(<n)的人退出圈子;下一个人从1开始报数,报到m的人退出圈子。如此下去,直到留下最后一个人。

本题要求编写函数,给出每个人的退出顺序编号。

函数接口定义:

void CountOff( int n, int m, int out[] );

其中n是初始人数;m是游戏规定的退出位次(保证为小于n的正整数)。函数CountOff将每个人的退出顺序编号存在数组out[]中。因为C语言数组下标是从0开始的,所以第i个位置上的人是第out[i-1]个退出的。

', '

一行两个整数n和m。

', '

一行n个整数,代表依次退出的人的编号。

', '[{"input": "11 3", "output": "4 10 1 7 5 2 11 9 3 6 8"}]', '988e7dbcc4f5faea4354203cb82f1482', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 183, 80, 1, '8-4', '{"0": 80, "1": 12, "4": 43, "-1": 34, "-2": 14}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (304, '报数', '

报数游戏是这样的:有n个人围成一圈,按顺序从1到n编好号。从第一个人开始报数,报到m(<n)的人退出圈子;下一个人从1开始报数,报到m的人退出圈子。如此下去,直到留下最后一个人。

本题要求编写函数,给出每个人的退出顺序编号。

函数接口定义:

void CountOff( int n, int m, int out[] );

其中n是初始人数;m是游戏规定的退出位次(保证为小于n的正整数)。函数CountOff将每个人的退出顺序编号存在数组out[]中。因为C语言数组下标是从0开始的,所以第i个位置上的人是第out[i-1]个退出的。

', '

一行两个整数n和m。

', '

一行n个整数,代表依次退出的人的编号。

', '[{"input": "11 3", "output": "4 10 1 7 5 2 11 9 3 6 8"}]', '988e7dbcc4f5faea4354203cb82f1482', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 50, 27, 1, '1-133', '{"0": 27, "1": 6, "4": 3, "-1": 8, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (133, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', '98b4c1451473d04cec42534f780c8a67', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 11, 0, 1, 8, '{"1": 3, "-1": 8}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (384, '查找星期', '

定义一个指针数组,将下表的星期信息组织起来,信息表中首字母大写,比如Monday,输入一个字符串,在表中查找,若存在,输出该字符串在表中的序号,否则输出 “wrong input!”,本题区分大小写。试编写相应程序

', '

输入一个英文字符串

', '

输出查找结果,若存在则输出下标,否则输出wrong input!

', '[{"input": "Tuesday", "output": "2"}, {"input": "today", "output": "wrong input!"}]', '995985cbd5f76fcfc3e005379ef6d426', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

信息表英文对应的下标:

0:Sunday
1:Monday
2:Tuesday
3:Wednesday
4:Thursday
5:Friday
6:Saturday

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 171, 88, 358, '11-2', '{"0": 88, "4": 27, "-1": 38, "-2": 18}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (389, '查找星期', '

定义一个指针数组,将下表的星期信息组织起来,信息表中首字母大写,比如Monday,输入一个字符串,在表中查找,若存在,输出该字符串在表中的序号,否则输出 “wrong input!”,本题区分大小写。试编写相应程序

', '

输入一个英文字符串

', '

输出查找结果,若存在则输出下标,否则输出wrong input!

', '[{"input": "Tuesday", "output": "2"}, {"input": "today", "output": "wrong input!"}]', '995985cbd5f76fcfc3e005379ef6d426', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

信息表英文对应的下标:

0:Sunday
1:Monday
2:Tuesday
3:Wednesday
4:Thursday
5:Friday
6:Saturday

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 71, 36, 358, '1-175', '{"0": 36, "4": 12, "-1": 18, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (509, '使用函数判断三角形(10分)', '

给定n个可选的木棍长度,问是否能够选出3个构成三角形。

注意,你需要实现一个函数ok,来判断传入的三个边长能否构成三角形。

函数接口定义:

int isTriangle( int x, int y, int z);

传入三个边长参数x,y,z,是三角形返回1,否则0。

', '

第一行一个整数n。(3<=n<=20)

第二行n个整数,代表木棍长度a[i]。(1<=a[i]<=10^8)

', '

若能够选出3个构成三角形,输出最小的三角形周长,否则输出“No”。

', '[{"input": "3\n1 2 3\n", "output": "No"}, {"input": "3\n1 2 2\n", "output": "5"}]', '9994181c5531917448cd26c66084661c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 137, 33, 1, 4, '{"0": 33, "4": 22, "-1": 71, "-2": 11}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (322, '使用函数判断三角形(10分)', '

给定n个可选的木棍长度,问是否能够选出3个构成三角形。

注意,你需要实现一个函数ok,来判断传入的三个边长能否构成三角形。

函数接口定义:

int isTriangle( int x, int y, int z);

传入三个边长参数x,y,z,是三角形返回1,否则0。

', '

第一行一个整数n。(3<=n<=20)

第二行n个整数,代表木棍长度a[i]。(1<=a[i]<=10^8)

', '

若能够选出3个构成三角形,输出最小的三角形周长,否则输出“No”。

', '[{"input": "3\n1 2 3\n", "output": "No"}, {"input": "3\n1 2 2\n", "output": "5"}]', '9994181c5531917448cd26c66084661c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 23, 12, 1, '1-143', '{"0": 12, "1": 1, "-1": 8, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (10, '报时助手', '

给定当前的时间,请用英文的读法将它读出来。

时间用时h和分m表示,在英文的读法中,读一个时间的方法是:

如果m为0,则将时读出来,然后加上“o'clock”,如3:00读作“three o'clock”。

如果m不为0,则将时读出来,然后将分读出来,如5:30读作“five thirty”。

时和分的读法使用的是英文数字的读法,其中0~20读作:

0:zero, 1: one, 2:two, 3:three, 4:four, 5:five, 6:six, 7:seven, 8:eight, 9:nine, 10:ten, 11:eleven, 12:twelve, 13:thirteen, 14:fourteen, 15:fifteen, 16:sixteen, 17:seventeen, 18:eighteen, 19:nineteen, 20:twenty。

30读作thirty,40读作forty,50读作fifty。

对于大于20小于60的数字,首先读整十的数,然后再加上个位数。如31首先读30再加1的读法,读作“thirty one”。

按上面的规则21:54读作“twenty one fifty four”,9:07读作“nine seven”,0:15读作“zero fifteen”。

', '

输入包含两个非负整数h和m,表示时间的时和分。非零的数字前没有前导0。h小于24,m小于60。

', '

输出时间时刻的英文。

', '[{"input": "0 15", "output": "zero fifteen"}]', '9a0d1ee9b6d7b7d91f3ac89f365747fb', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 329, 103, 1, '1-6', '{"0": 103, "4": 19, "-1": 126, "-2": 47}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (64, '报时助手', '

 给定当前的时间,请用英文的读法将它读出来。  

时间用时h和分m表示,在英文的读法中,读一个时间的方法是:  

如果m为0,则将时读出来,然后加上“o'clock”,如3:00读作“three o'clock”。  

如果m不为0,则将时读出来,然后将分读出来,如5:30读作“five thirty”。  

时和分的读法使用的是英文数字的读法,其中0~20读作:  

0:zero, 1: one, 2:two, 3:three, 4:four, 5:five, 6:six, 7:seven, 8:eight, 9:nine, 10:ten, 11:eleven, 12:twelve, 13:thirteen, 14:fourteen, 15:fifteen, 16:sixteen, 17:seventeen, 18:eighteen, 19:nineteen, 20:twenty。  

30读作thirty,40读作forty,50读作fifty。  

对于大于20小于60的数字,首先读整十的数,然后再加上个位数。如31首先读30再加1的读法,读作“thirty one”。  

按上面的规则21:54读作“twenty one fifty four”,9:07读作“nine seven”,0:15读作“zero fifteen”。

', '

输入包含两个非负整数h和m,表示时间的时和分。非零的数字前没有前导0。h小于24,m小于60。

', '

 输出时间时刻的英文。

', '[{"input": "0 15", "output": "zero fifteen"}]', '9a0d1ee9b6d7b7d91f3ac89f365747fb', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-3', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (78, 'test2', '

test2

', '

test2

', '

test2

', '[{"input": "test2", "output": "test2"}]', '9a2025d1c5be4cc7e6858ca206924a46', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 'test2', '{}', 0, 9, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (346, '平面向量加法', '

输入两个二维平面向量 Vl = ( x l , y l) 和 V2 = ( x2 , y2 ) 的分量,计算并输出两个向量的和向量。试编写相应程序

', '

输入在一行中按照“x​1​​y​1​​x​2​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

在一行中按照(x, y)的格式输出和向量(逗号和y之间有空格),坐标输出小数点后一位(注意不能输出−0.0)。

', '[{"input": "3.5 -2.7 -13.9 8.7", "output": "(-10.4, 6.0)"}]', '9a31d2a4f40cafbc7966f9426c922ddc', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 54, 32, 358, '1-151', '{"0": 32, "4": 1, "-1": 20, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (339, '平面向量加法', '

输入两个二维平面向量 Vl = ( x l , y l) 和 V2 = ( x2 , y2 ) 的分量,计算并输出两个向量的和向量。试编写相应程序

', '

输入在一行中按照“x​1​​y​1​​x​2​​y​2​​”的格式给出两个二维平面向量v​1​​=(x​1​​,y​1​​)和v​2​​=(x​2​​,y​2​​)的分量

', '

在一行中按照(x, y)的格式输出和向量(逗号和y之间有空格),坐标输出小数点后一位(注意不能输出−0.0)。

', '[{"input": "3.5 -2.7 -13.9 8.7", "output": "(-10.4, 6.0)"}]', '9a31d2a4f40cafbc7966f9426c922ddc', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 137, 91, 358, '9-3', '{"0": 91, "4": 3, "-1": 38, "-2": 5}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (137, '打印菱形图案', '

本题要求编写程序,打印一个高度为n的、由“*”组成的正菱形图案

', '

输入在一行中给出一个正的奇数n。

', '

输出由n行星号“*”组成的菱形,如样例所示。每个星号后跟一个空格。

', '[{"input": "7\n", "output": " * \n * * * \n * * * * * \n* * * * * * * \n * * * * * \n * * * \n * \n"}]', '9a393fe24d1819ac9bcd3f08104f81b7', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 89, 38, 1, '1-60', '{"0": 38, "4": 1, "-1": 47, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (523, '数组合并输出', '

给定两个数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

输入k为两个数组的大小,然后读取两个数组的元素。

', '

从大到小输出合并好的数组

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '9a97d2b7eb1af9330ef4ad9c60142d80', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 10, 2, 358, 2, '{"0": 2, "1": 3, "4": 3, "-1": 2}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (360, '数组合并输出', '

给定两个数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

输入k为两个数组的大小,然后读取两个数组的元素。

', '

从大到小输出合并好的数组

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '9a97d2b7eb1af9330ef4ad9c60142d80', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 172, 12, 358, 2, '{"0": 12, "1": 37, "4": 60, "-1": 51, "-2": 12}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (378, '数组合并输出', '

给定两个数组,每个数组中的整数都是从小到大排列。设计一个方法,将两个数组合并到一起,并从大到小输出合并后的结果。试着编写程序实现。

', '

输入k为两个数组的大小,然后读取两个数组的元素。

', '

从大到小输出合并好的数组

', '[{"input": "5\n1 4 6 7 8\n2 3 5 6 9", "output": "9 8 7 6 6 5 4 3 2 1"}]', '9a97d2b7eb1af9330ef4ad9c60142d80', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 108, 26, 358, '1-167', '{"0": 26, "1": 22, "4": 22, "-1": 33, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (85, '字符串转换', '

编写一个程序,输入一个字符串(不超过100),然后把这个字符串内的每一个字符进行大小写变换,即将大写字母变成小写,小写字母变成大写,然后把这个新的字符串输出。

', '

输入一个字符串,而且这个字符串当中只包含英文字母,不包含其他类型的字符(有空格)。

', '

输出经过转换后的字符串。

', '[{"input": "sYiL l E\n", "output": "SyIl L e\n"}]', '9b574841da39feb842e66ced522d438f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 121, 19, 1, 2, '{"0": 19, "1": 4, "2": 2, "4": 24, "-1": 39, "-2": 33}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (210, '换硬币', '

将一笔零钱(大于8分,小于1元,精确到分),换成5分、2分和1分的硬币,每种硬币至少有一枚。输入金额,问有几种换法,输出有多少种换法。试编写相应程序。

', '

输入整数金额(单位分),金额范围:8~100分

', '

输出有多少种换法

', '[{"input": "9", "output": "1"}]', '9ce7f06fbcb0ec8c67c4f8119afe0cc9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 242, 101, 358, '4-5', '{"0": 101, "1": 8, "4": 2, "-1": 102, "-2": 29}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (232, '换硬币', '

将一笔零钱(大于8分,小于1元,精确到分),换成5分、2分和1分的硬币,每种硬币至少有一枚。输入金额,问有几种换法,输出有多少种换法。试编写相应程序。

', '

输入整数金额(单位分),金额范围:8~100分

', '

输出有多少种换法

', '[{"input": "9", "output": "1"}]', '9ce7f06fbcb0ec8c67c4f8119afe0cc9', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 27, 19, 358, '1-100', '{"0": 19, "-1": 5, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (281, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n(n>=4)。

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', '9d61971ebad718d28ed226cac8528f31', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2001, 256, false, null, null, null, 'ACM', false, 'Low', '', 15, 13, 358, '1-124', '{"0": 13, "-1": 1, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (279, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n(n>=4)。

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', '9d61971ebad718d28ed226cac8528f31', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 3000, 256, false, null, null, null, 'ACM', true, 'Low', '', 43, 26, 358, 8, '{"0": 26, "4": 3, "-1": 7, "-2": 7}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (441, '右叶子之和', '

给定一棵二叉树,计算所有右叶子之和。

注:题中给定的二叉树需要自己根据测试案例中的层序遍历序列构建。

', '

输入二叉树的层序遍历的长度;

输入二叉树的层序遍历序列(树中的每个节点的值都为大于等于0的整型数据,-1代表空指针)。

', '

输出二叉树的所有右叶子之和。(行末尾无空格)

', '[{"input": "11\n3 9 18 15 1 -1 -1 -1 -1 -1 -1", "output": "19"}]', 'a0303217dfae2f9738ed59abf76c3406', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 84, 23, 511, 1, '{"0": 23, "4": 3, "-1": 47, "-2": 11}', 0, 52, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (530, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "hello world\nHllo world", "output": "Yes"}, {"input": "heloopoojancdascd\naserdckaksc", "output": "No"}]', 'a06e5df538afd2201de6c8daca329ef8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

字符串包含大小写英文字母和空格

相似情况计算:两个字符串出现相同字符的总次数,记为 C 。相似情况为:sim=C/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-11', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (531, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "hello world\nHllo world", "output": "Yes"}, {"input": "heloopoojancdascd\naserdckaksc", "output": "No"}]', 'a06e5df538afd2201de6c8daca329ef8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

字符串包含大小写英文字母和空格

相似情况计算:两个字符串出现相同字符的总次数,记为 C 。相似情况为:sim=C/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 10, 1, 1, 3, '{"0": 1, "4": 1, "-1": 8}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (539, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "hello world\nHllo world", "output": "Yes"}, {"input": "heloopoojancdascd\naserdckaksc", "output": "No"}]', 'a06e5df538afd2201de6c8daca329ef8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

字符串包含大小写英文字母和空格

相似情况计算:两个字符串出现相同字符的总次数,记为 C 。相似情况为:sim=C/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 118, 30, 1, 3, '{"0": 30, "4": 8, "-1": 68, "-2": 12}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (516, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "hello world\nHllo world", "output": "Yes"}, {"input": "heloopoojancdascd\naserdckaksc", "output": "No"}]', 'a06e5df538afd2201de6c8daca329ef8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

字符串包含大小写英文字母和空格

相似情况计算:两个字符串出现相同字符的总次数,记为 C 。相似情况为:sim=C/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 428, 14, 1, 3, '{"0": 14, "1": 3, "2": 2, "4": 48, "-1": 334, "-2": 27}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (268, '简单计算器', '

模拟简单运算器的工作。假设计算器只能进行加减乘除运算,运算数和结果都是整数,四种运算符的优先级相同,按从左到右的顺序计算。

', '

输入在一行中给出一个四则运算算式,没有空格,且至少有一个操作数。遇等号”=”说明输入结束。

', '

在一行中输出算式的运算结果,保留两位小数;或者如果除法分母为0或有非法运算符,则输出错误信息“ERROR”。

', '[{"input": "1+2*10-10/2=", "output": "10.00"}]', 'a08ed0f7a9558a5820db5ca0bae743df', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 59, 26, 1, '1-120', '{"0": 26, "4": 3, "-1": 23, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (206, '求奇数和', '

输入一批正整数(以零或负数为结束标志),求其中的奇数和。试编写相应程序。

', '

输入一批正整数(以零或负数为结束标志)并用零或负数结尾

', '

输出其奇数的和(整数形式)。

', '[{"input": "1 2 5 6 3 4 0", "output": "9"}]', 'a20b8a67a2aba299aa3271453c98d3ca', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 258, 103, 358, '4-1', '{"0": 103, "1": 12, "2": 1, "4": 34, "-1": 86, "-2": 22}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (228, '求奇数和', '

输入一批正整数(以零或负数为结束标志),求其中的奇数和。试编写相应程序。

', '

输入一批正整数(以零或负数为结束标志)并用零或负数结尾

', '

输出其奇数的和(整数形式)。

', '[{"input": "1 2 5 6 3 4 0", "output": "9"}]', 'a20b8a67a2aba299aa3271453c98d3ca', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 47, 28, 358, '1-96', '{"0": 28, "4": 2, "-1": 13, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (316, '映射(15分)', '

给定两个长度为n的全排列a,b(全排列即长度为n的数组,且数组中的元素各不相同),对于第一个全排列的每个数a[i],输出其在第二个全排列b中出现的位置。

', '

第一行一个整数n。(1<=n<=100)

第二行n个不同的正整数,表示全排列a。(1<=a[i]<=n)

第三行n个不同的正整数,表示全排列b。(1<=b[i]<=n)

', '

一行n个整数,第i个数表示a[i]在全排列b中出现的位置。(以空格隔开,行末无空格)

', '[{"input": "3\n2 3 1\n1 3 2\n", "output": "3 2 1"}]', 'a2b51eebee55cfc16da50b81677287c6', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 41, 28, 1, 6, '{"0": 28, "-1": 13}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (503, '映射(15分)', '

给定两个长度为n的全排列a,b(全排列即长度为n的数组,且数组中的元素各不相同),对于第一个全排列的每个数a[i],输出其在第二个全排列b中出现的位置。

', '

第一行一个整数n。(1<=n<=100)

第二行n个不同的正整数,表示全排列a。(1<=a[i]<=n)

第三行n个不同的正整数,表示全排列b。(1<=b[i]<=n)

', '

一行n个整数,第i个数表示a[i]在全排列b中出现的位置。(以空格隔开,行末无空格)

', '[{"input": "3\n2 3 1\n1 3 2\n", "output": "3 2 1"}]', 'a2b51eebee55cfc16da50b81677287c6', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 140, 59, 1, 6, '{"0": 59, "4": 23, "-1": 42, "-2": 16}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (291, '拆分实数的整数与小数部分', '

本题要求实现一个拆分实数的整数与小数部分的简单函数。

函数接口定义:

void splitfloat( float x, int *intpart, float *fracpart);

其中x是被拆分的实数(0≤x<10000),*intpart和*fracpart分别是将实数x拆分出来的整数部分与小数部分。

请实现函数接口,并在主函数中调用它。

', '

一行一个浮点数x。

', '

一行两个数,分别表示x的整数部分和小数部分。(小数保留三位小数)

', '[{"input": "2.718", "output": "2 0.718"}]', 'a2ee28c77030e598888c31b8bc41f375', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 185, 94, 1, '8-1', '{"0": 94, "4": 21, "-1": 47, "-2": 23}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (301, '拆分实数的整数与小数部分', '

本题要求实现一个拆分实数的整数与小数部分的简单函数。

函数接口定义:

void splitfloat( float x, int *intpart, float *fracpart);

其中x是被拆分的实数(0≤x<10000),*intpart和*fracpart分别是将实数x拆分出来的整数部分与小数部分。

请实现函数接口,并在主函数中调用它。

', '

一行一个浮点数x。

', '

一行两个数,分别表示x的整数部分和小数部分。(小数保留三位小数)

', '[{"input": "2.718", "output": "2 0.718"}]', 'a2ee28c77030e598888c31b8bc41f375', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 39, 25, 1, '1-130', '{"0": 25, "4": 1, "-1": 10, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (296, '删除字符', '

本题要求实现一个删除字符串中的指定字符的简单函数。

函数接口定义:

void delchar( char *str, char c );

其中char *str是传入的字符串,c是待删除的字符。函数delchar的功能是将字符串str中出现的所有c字符删除。

', '

第一行一个字符c。

第二行一个字符串str。

', '

一行一个字符串,表示字符串str删除字符c后的字符串。

', '[{"input": "a\nhappy new year\n", "output": "hppy new yer"}]', 'a34f473b4292dafc539df8fa5bec652e', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 412, 84, 1, '8-6', '{"0": 84, "1": 1, "4": 45, "-1": 244, "-2": 38}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (276, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1\n", "output": "61"}]', 'a358f8a413ab1430a66c8791b2d61b0f', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '

注意:闰年的2月份是29天。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 52, 29, 358, 3, '{"0": 29, "-1": 19, "-2": 4}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (134, '输出华氏-摄氏温度转换表', '

输入2个正整数lower和upper(lower≤upper≤100),请输出一张取值范围为[lower,upper]、且每次增加2华氏度的华氏-摄氏温度转换表。

温度转换的计算公式:C=5×(F−32)/9,其中:C表示摄氏温度,F表示华氏温度。

', '

在一行中输入2个整数,分别表示lower和upper的值,中间用空格分开

', '

第一行输出:"fahr celsius"

接着每行输出一个华氏温度fahr(整型)与一个摄氏温度celsius(占据6个字符宽度,靠右对齐,保留1位小数)。

若输入的范围不合法,则输出"Invalid."。

', '[{"input": "32 35\n", "output": "fahr celsius\n32 0.0\n34 1.1\n"}, {"input": "40 30\n", "output": "Invalid.\n"}]', 'a48ed2689afd64b4335a00c6874b211b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 98, 28, 1, '1-57', '{"0": 28, "4": 5, "-1": 49, "-2": 16}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (126, '输出华氏-摄氏温度转换表', '

输入2个正整数lower和upper(lower≤upper≤100),请输出一张取值范围为[lower,upper]、且每次增加2华氏度的华氏-摄氏温度转换表。

温度转换的计算公式:C=5×(F−32)/9,其中:C表示摄氏温度,F表示华氏温度。

', '

在一行中输入2个整数,分别表示lower和upper的值,中间用空格分开

', '

第一行输出:"fahr celsius"

接着每行输出一个华氏温度fahr(整型)与一个摄氏温度celsius(占据6个字符宽度,靠右对齐,保留1位小数)。

若输入的范围不合法,则输出"Invalid."。

', '[{"input": "32 35\n", "output": "fahr celsius\n32 0.0\n34 1.1\n"}, {"input": "40 30\n", "output": "Invalid.\n"}]', 'a48ed2689afd64b4335a00c6874b211b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 119, 19, 1, 1, '{"0": 19, "-1": 100}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (36, '带分数', '

100 可以表示为带分数的形式:100= 3 + 69258 / 714。

还可以表示为:100 = 82 + 3546 / 197。

注意特征:带分数中,数字1~9分别出现且只出现一次(不包含0)。

类似这样的带分数,100 有 11 种表示法。

', '

从标准输入读入一个正整数N (N<1000*1000)

', '

程序输出该数字用数码1~9不重复不遗漏地组成带分数表示的全部种数。

注意:不要求输出每个表示,只统计有多少表示法!

', '[{"input": "100 ", "output": "11"}, {"input": "105", "output": "6"}]', 'a5e146649aab04e781f130ecf5cf0c79', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 41, 13, 1, '1-25', '{"0": 13, "4": 1, "-1": 20, "-2": 7}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (71, '带分数', '

100 可以表示为带分数的形式:100= 3 + 69258 / 714。

还可以表示为:100 = 82 + 3546 / 197。

注意特征:带分数中,数字1~9分别出现且只出现一次(不包含0)。

类似这样的带分数,100 有 11 种表示法。

', '

从标准输入读入一个正整数N (N<1000*1000)

', '

程序输出该数字用数码1~9不重复不遗漏地组成带分数表示的全部种数。

注意:不要求输出每个表示,只统计有多少表示法!

', '[{"input": "100 ", "output": "11"}, {"input": "105", "output": "6"}]', 'a5e146649aab04e781f130ecf5cf0c79', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '1-10', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (73, 'w1234', '

w1234

', '

w1234

', '

w1234

', '[{"input": "w1234", "output": "w1234"}]', 'a602e9cb6f4d70104e872b822a6b35b4', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 'w1234', '{}', 0, 9, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (311, '吃豆子(15分)', '

给你一个数组,数组上的每个位置都有一定数量的豆子,现在吃豆人会进行若干次操作,每次操作给定一个坐标x,吃豆人会把位于坐标x上位置的豆子都吃掉,同时位于x位置右边的位置都会向左移动一格。具体来说,x+1位置上的豆子转移到x位置,x+2位置上的豆子转移到x+1位置,以此类推。

每次操作,如果吃豆人发现x位置上已经没豆子了,输出0,否则输出吃到的豆子数。

', '

第一行两个整数n和m,分别表示数组长度和操作次数。(1<=n,m<=1000)

第二行有n个整数,代表初始每个位置上的豆子数d[i]。(1<=d[i]<=1000)

接下来m行,每行一个整数,代表该次操作的位置pos。(1<=pos<=n)

', '

对于每次操作,输出一行,代表该次吃豆人吃到的豆子。

', '[{"input": "3 2\n2 3 1\n2\n3\n", "output": "3\n0\n"}]', 'a67f24c2db53f48aeca237baaa1a233e', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 173, 20, 1, 1, '{"0": 20, "2": 1, "4": 5, "-1": 134, "-2": 13}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (371, '吃豆子', '

给你一个数组,数组上的每个位置都有一定数量的豆子,现在吃豆人会进行若干次操作,每次操作给定一个坐标x,吃豆人会把位于坐标x上位置的豆子都吃掉,同时位于x位置右边的位置都会向左移动一格。具体来说,x+1位置上的豆子转移到x位置,x+2位置上的豆子转移到x+1位置,以此类推。

每次操作,如果吃豆人发现x位置上已经没豆子了,输出0,否则输出吃到的豆子数。

', '

第一行两个整数n和m,分别表示数组长度和操作次数。(1<=n,m<=1000)

第二行有n个整数,代表初始每个位置上的豆子数d[i]。(1<=d[i]<=1000)

接下来m行,每行一个整数,代表该次操作的位置pos。(1<=pos<=n)

', '

对于每次操作,输出一行,代表该次吃豆人吃到的豆子。

', '[{"input": "3 2\n2 3 1\n2\n3\n", "output": "3\n0\n"}]', 'a67f24c2db53f48aeca237baaa1a233e', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 33, 7, 1, 3, '{"0": 7, "4": 8, "-1": 13, "-2": 5}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (323, '使用函数求双阶乘(15分)', '

双阶乘是一个数学概念,用n!!表示。正整数的双阶乘表示不超过这个正整数且与它有相同奇偶性的所有正整数乘积。

本题要求实现双阶乘函数fac(x)。

函数接口定义:

long long fac( int x );

其中x是用户传入的整型参数,返回双阶乘。

', '

一行一个正整数n。(1<=n<=20,保证答案不超过long long范围)

', '

一行一个整数表示答案。(格式控制说明为‘%lld’)

', '[{"input": "4", "output": "8"}]', 'a6e1e036d19c1610edefb7faa2ee6fc6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 12, 8, 1, '1-144', '{"0": 8, "-1": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (510, '使用函数求双阶乘(15分)', '

双阶乘是一个数学概念,用n!!表示。正整数的双阶乘表示不超过这个正整数且与它有相同奇偶性的所有正整数乘积。

本题要求实现双阶乘函数fac(x)。

函数接口定义:

long long fac( int x );

其中x是用户传入的整型参数,返回双阶乘。

', '

一行一个正整数n。(1<=n<=20,保证答案不超过long long范围)

', '

一行一个整数表示答案。(格式控制说明为‘%lld’)

', '[{"input": "4", "output": "8"}]', 'a6e1e036d19c1610edefb7faa2ee6fc6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 21, 18, 1, 5, '{"0": 18, "-1": 3}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (20, '矩阵乘法', '

给定一个N阶矩阵A,输出A的M次幂(M是非负整数)

例如:

A =

1 2

3 4

A的2次幂

7 10

15 22

', '

第一行是一个正整数N、M(1<=N<=30, 0<=M<=5),表示矩阵A的阶数和要求的幂数

接下来N行,每行N个绝对值不超过10的非负整数,描述矩阵A的值

', '

输出共N行,每行N个整数,表示A的M次幂所对应的矩阵。相邻的数之间用一个空格隔开

', '[{"input": "2 2\n1 2\n3 4\n", "output": "7 10\n15 22\n"}]', 'a7024888d0ae8fe267ea13adc5647506', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 516, 92, 1, '1-13', '{"0": 92, "1": 2, "4": 15, "-1": 334, "-2": 73}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (113, '矩阵乘法', '

给定一个N阶矩阵A,输出A的M次幂(M是非负整数)

  例如:

  A =

  1 2

  3 4

  A的2次幂

  7 10

  15 22

', '

 第一行是一个正整数N、M(1<=N<=30, 0<=M<=5),表示矩阵A的阶数和要求的幂数

接下来N行,每行N个绝对值不超过10的非负整数,描述矩阵A的值

', '

输出共N行,每行N个整数,表示A的M次幂所对应的矩阵。相邻的数之间用一个空格隔开

', '[{"input": "2 2\n1 2\n3 4\n", "output": "7 10\n15 22\n"}]', 'a7024888d0ae8fe267ea13adc5647506', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C++", "Python2", "Python3", "C", "Java"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-7', '{}', 0, 12, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (452, '删除排序链表中的重复元素(15分)', '

输入一串由小到大排列的int类型的数字以-1结束输入,将读取的数组构造成一个链表,删除所有重复的元素,使得每个元素只出现一次,最后输出新的链表。

', '

输入一串int类型的数字,以-1结束输入

', '

输出去重后的排序链表,中间用空格隔开。

', '[{"input": "1 1 2 -1", "output": "1 2"}, {"input": "1 1 2 3 3 -1", "output": "1 2 3"}]', 'a792c7c088b410f8c237f04047df32a7', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '


链表的中重复元素的查找,要在构建时进行,即链表中存在了不插入,不存在将节点插入到链表最后

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 6, 3, 1, 3, '{"0": 3, "4": 2, "-1": 1}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (473, '非素数之和', '

给定两个大于0的整数,m和n,求m和n之间的所有非素数之和(范围包括m,n)

', '

正整数m, n ( 2<= m <= n);

两个整数之间以空格隔开。

', '

输出范围内所有非素数的和。

', '[{"input": "2 10", "output": "37"}]', 'a82bed6367e3ef72477b1527777323ff', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

区间[2,10] 所有的非素数为4 6 8 9 10

所以输出 4 + 6 + 8 + 9 + 10 = 37

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 163, 56, 1, 4, '{"0": 56, "1": 5, "4": 2, "-1": 85, "-2": 15}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (488, '非素数之和', '

给定两个大于0的整数,m和n,求m和n之间的所有非素数之和(范围包括m,n)

', '

正整数m, n ( 2<= m <= n);

两个整数之间以空格隔开。

', '

输出范围内所有非素数的和。

', '[{"input": "2 10", "output": "37"}]', 'a82bed6367e3ef72477b1527777323ff', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

区间[2,10] 所有的非素数为4 6 8 9 10

所以输出 4 + 6 + 8 + 9 + 10 = 37

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-4', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (493, '非素数之和', '

给定两个大于0的整数,m和n,求m和n之间的所有非素数之和(范围包括m,n)

', '

正整数m, n ( 2<= m <= n);

两个整数之间以空格隔开。

', '

输出范围内所有非素数的和。

', '[{"input": "2 10", "output": "37"}]', 'a82bed6367e3ef72477b1527777323ff', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

区间[2,10] 所有的非素数为4 6 8 9 10

所以输出 4 + 6 + 8 + 9 + 10 = 37

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 9, 6, 1, 4, '{"0": 6, "-1": 3}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (366, '兔子繁衍II', '

小王家在第一年养了一只兔子(1岁),已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一只新兔子,但是兔子在10岁的时候会死去。请问第n年小王家一共有多少只兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "53"}]', 'a9268e6701e816277b96ef21a02581d2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 112, 4, 1, 8, '{"0": 4, "4": 1, "-1": 99, "-2": 8}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (368, '兔子繁衍II', '

小王家在第一年养了一只兔子(1岁),已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一只新兔子,但是兔子在10岁的时候会死去。请问第n年小王家一共有多少只兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "53"}]', 'a9268e6701e816277b96ef21a02581d2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 66, 21, 1, '1-165', '{"0": 21, "1": 2, "4": 5, "-1": 37, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (375, '兔子繁衍II', '

小王家在第一年养了一只兔子(1岁),已知兔子刚出生时是1岁,3岁及以上的兔子每年会生出一只新兔子,但是兔子在10岁的时候会死去。请问第n年小王家一共有多少只兔子?

', '

一行一个整数n表示第n年。(1<=n<=35)

', '

一行一个整数表示答案。

', '[{"input": "10", "output": "53"}]', 'a9268e6701e816277b96ef21a02581d2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 35, 2, 1, 7, '{"0": 2, "2": 3, "4": 2, "-1": 25, "-2": 3}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (383, '输出月份英文名', '

输入月份,输出对应的英文名称。要求用指针数组表示 12个月的英文名称。例如,输入5,输出May。试编写相应程序。

', '

输入一个正整数n

', '

输出对应月份的英文表示,开头字母大写,如果输出月份过大或者过小则输出wrong input!

', '[{"input": "5", "output": "May"}, {"input": "-1", "output": "wrong input!"}]', 'a9431561139c57bc9abcca2af864e07b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 144, 88, 358, '11-1', '{"0": 88, "4": 9, "-1": 44, "-2": 3}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (390, '输出月份英文名', '

输入月份,输出对应的英文名称。要求用指针数组表示 12个月的英文名称。例如,输入5,输出May。试编写相应程序。

', '

输入一个正整数n

', '

输出对应月份的英文表示,开头字母大写,如果输出月份过大或者过小则输出wrong input!

', '[{"input": "5", "output": "May"}, {"input": "-1", "output": "wrong input!"}]', 'a9431561139c57bc9abcca2af864e07b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 36, 358, '1-174', '{"0": 36, "4": 4, "-1": 14, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (22, '矩阵翻硬币', '

小明先把硬币摆成了一个 n 行 m 列的矩阵。

随后,小明对每一个硬币分别进行一次 Q 操作。

对第x行第y列的硬币进行 Q 操作的定义:将所有第 ix 行,第 jy 列的硬币进行翻转。

其中i和j为任意使操作可行的正整数,行号和列号都是从1开始。

当小明对所有硬币都进行了一次 Q 操作后,他发现了一个奇迹——所有硬币均为正面朝上。

小明想知道最开始有多少枚硬币是反面朝上的。于是,他向他的好朋友小M寻求帮助。

聪明的小M告诉小明,只需要对所有硬币再进行一次Q操作,即可恢复到最开始的状态。然而小明很懒,不愿意照做。于是小明希望你给出他更好的方法。帮他计算出答案。

', '

输入数据包含一行,两个正整数 n m,含义见题目描述。

', '

输出一个正整数,表示最开始有多少枚硬币是反面朝上的。

', '[{"input": "2 3\n", "output": "1\n"}]', 'a9786300eefa60bd5482e6c252e1f2d6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

对于10%的数据,n、m <= 10^3;

对于20%的数据,n、m <= 10^7;

对于40%的数据,n、m <= 10^15;

对于10%的数据,n、m <= 10^1000(10的1000次方)。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 130, 31, 1, '1-38', '{"0": 31, "1": 19, "4": 17, "-1": 33, "-2": 30}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (13, '龟兔赛跑预测', '

话说这个世界上有各种各样的兔子和乌龟,但是 研究发现,所有的兔子和乌龟都有一个共同的特点——喜欢赛跑。于是世界上各个角落都不断在发生着乌龟和兔子的比赛,小华对此很感兴趣,于是决定研究不同兔 子和乌龟的赛跑。他发现,兔子虽然跑比乌龟快,但它们有众所周知的毛病——骄傲且懒惰,于是在与乌龟的比赛中,一旦任一秒结束后兔子发现自己领先t米或以 上,它们就会停下来休息s秒。对于不同的兔子,t,s的数值是不同的,但是所有的乌龟却是一致——它们不到终点决不停止。

然而有些比赛相当漫长,全程观看会耗费大量时间,而小华发现只要在每场比赛开始后记录下兔子和乌龟的数据——兔子的速度v1(表示每秒兔子能跑v1 米),乌龟的速度v2,以及兔子对应的t,s值,以及赛道的长度l——就能预测出比赛的结果。但是小华很懒,不想通过手工计算推测出比赛的结果,于是他找 到了你——华东师范大学某系的高材生——请求帮助,请你写一个程序,对于输入的一场比赛的数据v1,v2,t,s,l,预测该场比赛的结果。

', '

输入只有一行,包含用空格隔开的五个正整数v1,v2,t,s,l,其中(v1,v2<=100;t<=300;s<=10;l<=10000且为v1,v2的公倍数)

', '

输出包含两行,第一行输出比赛结果——一个大写字母“T”或“R”或“D”,分别表示乌龟获胜,兔子获胜,或者两者同时到达终点。 第二行输出一个正整数,表示获胜者(或者双方同时)到达终点所耗费的时间(秒数)。

', '[{"input": "10 5 5 2 20", "output": "D\n4\n"}, {"input": "10 5 5 1 20", "output": "R\n3\n"}, {"input": "10 5 5 3 20", "output": "T\n4\n"}]', 'aa55a79a3c32cf5c0c84a136f2d4d72c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 382, 113, 1, '1-9', '{"0": 113, "1": 5, "4": 7, "-1": 194, "-2": 29}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (453, '三个数的最大乘积(15分)', '

本题要求实现一个在给定数组中找出由三个数组成的最大乘积的简单函数。

函数接口定义:

int canThreePartsEqualSum ( int *A, int n); 其中A 为给出的整型数组,n为数组长度

请实现函数接口,并在主函数中调用它。

', '

第一行给出n

第二行给出n个整数,由空格分隔

', '

输出由数组中的三个数组成的最大乘积

', '[{"input": "4\n1 2 3 4", "output": "24"}, {"input": "5\n-3 -1 6 5 -2", "output": "36"}]', 'aacc82d765620ff409c35a2a0ad9573d', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

3 <= n < 10

输入的数组中任意三个数的乘积不会超出32位有符号整数的范围。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 19, 7, 1, 4, '{"0": 7, "-1": 10, "-2": 2}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (321, '判断数据类型(10分)', '

假设现在你要判断数据类型是否为int、long long、double,输入n个字符串,请你判断其代表的数据类型是什么,且输入的每个字符串保证是正数,且是这三种类型的一种。

', '

第一行一个整数n。(n<=10)

接下来n行每行一个字符串s。(|s|<=10)

', '

对于每个字符串s,输出“int”或“long long”或“double”。

', '[{"input": "3\n12\n9999999999\n123.44\n", "output": "int\nlong long\ndouble\n"}]', 'abda7224f494b70aeda3f016be19264d', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 92, 19, 1, '1-142', '{"0": 19, "4": 4, "-1": 48, "-2": 21}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (508, '判断数据类型(10分)', '

假设现在你要判断数据类型是否为int、long long、double,输入n个字符串,请你判断其代表的数据类型是什么,且输入的每个字符串保证是正数,且是这三种类型的一种。

', '

第一行一个整数n。(n<=10)

接下来n行每行一个字符串s。(|s|<=10)

', '

对于每个字符串s,输出“int”或“long long”或“double”。

', '[{"input": "3\n12\n9999999999\n123.44\n", "output": "int\nlong long\ndouble\n"}]', 'abda7224f494b70aeda3f016be19264d', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 119, 32, 1, 3, '{"0": 32, "4": 13, "-1": 66, "-2": 8}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (522, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。可先输入一个k,接着输入一个字符串(字符串全是小写的英文字母)。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

先输入距离k值,接着输入将要加密的字符串。

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'abf97544d27b36879ebdfda67df2818c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 4, 358, 1, '{"0": 4}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (359, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。可先输入一个k,接着输入一个字符串(字符串全是小写的英文字母)。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

先输入距离k值,接着输入将要加密的字符串。

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'abf97544d27b36879ebdfda67df2818c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 147, 26, 358, 1, '{"0": 26, "2": 1, "4": 23, "-1": 85, "-2": 12}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (377, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。可先输入一个k,接着输入一个字符串(字符串全是小写的英文字母)。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

先输入距离k值,接着输入将要加密的字符串。

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'abf97544d27b36879ebdfda67df2818c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 59, 21, 358, '1-166', '{"0": 21, "4": 14, "-1": 19, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (421, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。可先输入一个k,接着输入一个字符串(字符串全是小写的英文字母)。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

先输入距离k值,接着输入将要加密的字符串。

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'abf97544d27b36879ebdfda67df2818c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 349, 110, 358, 'B', '{"0": 110, "4": 45, "-1": 106, "-2": 88}', 0, 43, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (12, '高精度加法', '

输入两个整数a和b,输出这两个整数的和。a和b都不超过100位。算法描述

由于a和b都比较大,所以不能直接使用语言中的标准数据类型来存储。对于这种问题,一般使用数组来处理。

定义一个数组A,A[0]用于存储a的个位,A[1]用于存储a的十位,依此类推。同样可以用一个数组B来存储b。

计算c = a + b的时候,首先将A[0]与B[0]相加,如果有进位产生,则把进位(即和的十位数)存入r,把和的个位数存入C[0],即C[0]等于(A[0]+B[0])%10。然后计算A[1]与B[1]相加,这时还应将低位进上来的值r也加起来,即C[1]应该是A[1]、B[1]和r三个数的和.如果又有进位产生,则仍可将新的进位存入到r中,和的个位存到C[1]中。依此类推,即可求出C的所有位。

最后将C输出即可。

', '

输入包括两行,第一行为一个非负整数a,第二行为一个非负整数b。两个整数都不超过100位,两数的最高位都不是0。

', '

输出一行,表示a + b的值。

', '[{"input": "20100122201001221234567890\n2010012220100122\n", "output": "20100122203011233454668012"}]', 'ac0d81ea3c669342e1fd6242c1e9bb3c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 200, 91, 1, '1-8', '{"0": 91, "4": 9, "-1": 68, "-2": 32}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (195, '高速公路超速处罚', '

按照规定,在高速公路上行驶的机动车,超出本车道限速的10%则处200元处罚;若超出50%,就要吊销驾驶证。请编写程序根据车速和限速自动判别对该机动车的处理。

', '

输入n和m分别对应,机动车速和本车道限速。

', '

输出出发结果,正常行驶:normal,超出(或等于)10%低于50%:200,超出(或等于)50%:revoke。

', '[{"input": "110 100 ", "output": "200"}, {"input": "100 100", "output": "normal"}, {"input": "150 100", "output": "revoke"}]', 'ad1e0b83af8c0bb0938fb2744c5818f8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 465, 99, 358, '3-2', '{"0": 99, "4": 15, "-1": 303, "-2": 48}', 0, 21, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (224, '高速公路超速处罚', '

按照规定,在高速公路上行驶的机动车,超出本车道限速的10%则处200元处罚;若超出50%,就要吊销驾驶证。请编写程序根据车速和限速自动判别对该机动车的处理。

', '

输入n和m分别对应,机动车速和本车道限速。

', '

输出出发结果,正常行驶:normal,超出(或等于)10%低于50%:200,超出(或等于)50%:revoke。

', '[{"input": "110 100 ", "output": "200"}, {"input": "100 100", "output": "normal"}, {"input": "150 100", "output": "revoke"}]', 'ad1e0b83af8c0bb0938fb2744c5818f8', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 57, 30, 358, '1-92', '{"0": 30, "4": 1, "-1": 25, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (131, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', 'ad2d03f556feac8e155ebab8a027d2d9', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 90, 15, 1, 6, '{"0": 15, "4": 12, "-1": 62, "-2": 1}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (139, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', 'ad2d03f556feac8e155ebab8a027d2d9', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 272, 39, 1, '1-62', '{"0": 39, "4": 29, "-1": 188, "-2": 16}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (274, '猜数字游戏', '

猜数字游戏是令游戏机随机产生一个100以内的正整数,用户输入一个数对其进行猜测,需要你编写程序自动对其与随机产生的被猜数进行比较,并提示大了(“Too big”),还是小了(“Too small”),相等表示猜到了。如果猜到,则结束程序。程序还要求统计猜的次数,如果1次猜出该数,提示“Bingo!”;如果3次或者3次以内猜到该数,则提示“Lucky You!”;如果超过3次但是在N(>3)次以内(包括第N次)猜到该数,则提示“Good Guess!”;如果超过N次都没有猜到,则提示“Game Over”,并结束程序。如果在到达N次之前,用户输入了一个负数,也输出“Game Over”,并结束程序。

', '

输入第一行中给出两个不超过100的正整数,分别是游戏机产生的随机数、以及猜测的最大次数N。最后每行给出一个用户的输入,直到出现负数为止。

', '

在一行中输出每次猜测相应的结果,直到输出猜对的结果或“Game Over”则结束。

', '[{"input": "58 4\n70\n50\n56\n58\n60\n-2\n", "output": "Too big\nToo small\nToo small\nGood Guess!\n"}]', 'ad2d03f556feac8e155ebab8a027d2d9', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Low', '', 271, 13, 1, 6, '{"0": 13, "2": 1, "4": 54, "-1": 189, "-2": 14}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (456, '时间差计算(10分)', '

输入两个时刻(24小时制),要求定义一个时间结构体类型(时和分),并计算两个时刻之间的时间差

', '

给出两行时间

', '

计算两个时间的时间差,输出相隔的小时数和分钟数

', '[{"input": "23:59\n00:01", "output": "0h2m"}, {"input": "16:31\n9:54", "output": "6h37m"}]', 'ad849967814c90656fd925ad04efdd1a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

时间差应不超过12h

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 28, 8, 1, 7, '{"0": 8, "-1": 18, "-2": 2}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (128, '天数计算', '

输入某年某月某日,判断这几一天是这一年的第几天?

', '

分别输入整数形式的某年某月某日

', '

判断这一天是这一年的第几天,输出为整数形式

', '[{"input": "2018 12 6", "output": "340"}, {"input": "2020 3 1", "output": "61"}]', 'ae015eb02cfd446004a20651577d046a', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '

注意:闰年的2月份是29天。

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 109, 18, 1, 3, '{"0": 18, "-1": 86, "-2": 5}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (172, '合并数组', '

给定两个有序数组,第一个增序,第二个降序,输出两个数组合并后的增序数组。

', '

第一行两个整数n和m。(1<=n<=100000,1<=m<=100000)

第二行n个整数ai。(1<=a[i]<=1e9,a[i]<=a[i+1])

第三行m个整数bi。(1<=b[i]<=1e9,b[i]>=b[i+1])

', '

输出一行,表示合并后的增序数组。

', '[{"input": "5 5\n1 2 2 3 3\n5 4 3 2 1\n", "output": "1 1 2 2 2 3 3 3 4 5\n"}]', 'aec899b2ec1f1c40fb3fa22548e84640', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 100, 6, 1, 7, '{"0": 6, "1": 47, "4": 12, "-1": 34, "-2": 1}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (180, '合并数组', '

给定两个有序数组,第一个增序,第二个降序,输出两个数组合并后的增序数组。

', '

第一行两个整数n和m。(1<=n<=100000,1<=m<=100000)

第二行n个整数ai。(1<=a[i]<=1e9,a[i]<=a[i+1])

第三行m个整数bi。(1<=b[i]<=1e9,b[i]>=b[i+1])

', '

输出一行,表示合并后的增序数组。

', '[{"input": "5 5\n1 2 2 3 3\n5 4 3 2 1\n", "output": "1 1 2 2 2 3 3 3 4 5\n"}]', 'aec899b2ec1f1c40fb3fa22548e84640', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 144, 22, 1, '1-79', '{"0": 22, "1": 29, "4": 20, "-1": 54, "-2": 19}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (424, '排序II', '

给定一个长度为n的整数序列,要求对序列中的正数按升序排列,负数按降序排列,并且排完序后,原来是正数的位置上的数还是正数,原来是负数的位置上的数还是负数,0所在位置的数还是0。

***注意:本题禁止使用sort库函数***

', '

第一行一个整数n。(n<= 100)

第二行n个整数,代表待排序的整数序列,每个整数的绝对值小于100。

', '

输出一行,表示排序后的序列。

', '[{"input": "5\n1 2 0 -3 -1", "output": "1 2 0 -1 -3"}]', 'aed453dd8ba1dd254361227056716935', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 188, 46, 1, 'A', '{"0": 46, "1": 2, "3": 1, "4": 6, "-1": 88, "-2": 45}', 0, 46, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (34, '打印十字图', '

小明为某机构设计了一个十字型的徽标(并非红十字会啊),如下所示:

1-23.png

对方同时也需要在电脑dos窗口中以字符的形式输出该标志,并能任意控制层数。

', '

一个正整数 n (n<30) 表示要求打印图形的层数。

', '

对应包围层数的该标志。

', '[{"input": "1", "output": "..$$$$$..\n..$...$..\n$$$.$.$$$\n$...$...$\n$.$$$$$.$\n$...$...$\n$$$.$.$$$\n..$...$..\n..$$$$$.. "}, {"input": "3", "output": "..$$$$$$$$$$$$$..\n..$...........$..\n$$$.$$$$$$$$$.$$$\n$...$.......$...$\n$.$$$.$$$$$.$$$.$\n$.$...$...$...$.$\n$.$.$$$.$.$$$.$.$\n$.$.$...$...$.$.$\n$.$.$.$$$$$.$.$.$\n$.$.$...$...$.$.$\n$.$.$$$.$.$$$.$.$\n$.$...$...$...$.$\n$.$$$.$$$$$.$$$.$\n$...$.......$...$\n$$$.$$$$$$$$$.$$$\n..$...........$..\n..$$$$$$$$$$$$$.. "}]', 'af4de6ba0f82af4a777b49e665b5d088', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '

提示

请仔细观察样例,尤其要注意句点的数量和输出位置。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 34, 13, 1, '1-23', '{"0": 13, "-1": 12, "-2": 9}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (69, '打印十字图', '

小明为某机构设计了一个十字型的徽标(并非红十字会啊),如下所示:

1-23.png

对方同时也需要在电脑dos窗口中以字符的形式输出该标志,并能任意控制层数。

', '

一个正整数 n (n<30) 表示要求打印图形的层数。

', '

对应包围层数的该标志。

', '[{"input": "1", "output": "..$$$$$..\n..$...$..\n$$$.$.$$$\n$...$...$\n$.$$$$$.$\n$...$...$\n$$$.$.$$$\n..$...$..\n..$$$$$.. "}, {"input": "3", "output": "..$$$$$$$$$$$$$..\n..$...........$..\n$$$.$$$$$$$$$.$$$\n$...$.......$...$\n$.$$$.$$$$$.$$$.$\n$.$...$...$...$.$\n$.$.$$$.$.$$$.$.$\n$.$.$...$...$.$.$\n$.$.$.$$$$$.$.$.$\n$.$.$...$...$.$.$\n$.$.$$$.$.$$$.$.$\n$.$...$...$...$.$\n$.$$$.$$$$$.$$$.$\n$...$.......$...$\n$$$.$$$$$$$$$.$$$\n..$...........$..\n..$$$$$$$$$$$$$.. "}]', 'af4de6ba0f82af4a777b49e665b5d088', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '

提示

请仔细观察样例,尤其要注意句点的数量和输出位置。 

', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '1-8', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (176, '新的A+B', '

题的目标很简单,就是求两个正整数A和B的和,其中A和B都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。

', '

输入在一行给出A和B,其间以空格分开。问题是A和B不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。

注意:我们把输入中出现的第1个空格认为是A和B的分隔。题目保证至少存在一个空格,并且B不是一个空字符串。

', '

如果输入的确是两个正整数,则按格式A + B = 和输出。如果某个输入不合要求,则在相应位置输出?,显然此时和也是?。

', '[{"input": "123 456", "output": "123 + 456 = 579\n"}, {"input": "22. 18\n", "output": "? + 18 = ?\n"}, {"input": "-100 blabla bla...33\n", "output": "? + ? = ?\n"}]', 'afaa8e8cfdeaad5d0f8f7e8038df0569', '[{"score": 11, "input_name": "1.in", "output_name": "1.out"}, {"score": 11, "input_name": "2.in", "output_name": "2.out"}, {"score": 11, "input_name": "3.in", "output_name": "3.out"}, {"score": 11, "input_name": "4.in", "output_name": "4.out"}, {"score": 11, "input_name": "5.in", "output_name": "5.out"}, {"score": 11, "input_name": "6.in", "output_name": "6.out"}, {"score": 11, "input_name": "7.in", "output_name": "7.out"}, {"score": 11, "input_name": "8.in", "output_name": "8.out"}, {"score": 11, "input_name": "9.in", "output_name": "9.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 7, 1, '1-75', '{"0": 7, "5": 0, "-1": 26, "-2": 13}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (168, '新的A+B', '

题的目标很简单,就是求两个正整数A和B的和,其中A和B都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。

', '

输入在一行给出A和B,其间以空格分开。问题是A和B不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数点的实数、甚至是一堆乱码。

注意:我们把输入中出现的第1个空格认为是A和B的分隔。题目保证至少存在一个空格,并且B不是一个空字符串。

', '

如果输入的确是两个正整数,则按格式A + B = 和输出。如果某个输入不合要求,则在相应位置输出?,显然此时和也是?。

', '[{"input": "123 456", "output": "123 + 456 = 579\n"}, {"input": "22. 18\n", "output": "? + 18 = ?\n"}, {"input": "-100 blabla bla...33\n", "output": "? + ? = ?\n"}]', 'afaa8e8cfdeaad5d0f8f7e8038df0569', '[{"score": 11, "input_name": "1.in", "output_name": "1.out"}, {"score": 11, "input_name": "2.in", "output_name": "2.out"}, {"score": 11, "input_name": "3.in", "output_name": "3.out"}, {"score": 11, "input_name": "4.in", "output_name": "4.out"}, {"score": 11, "input_name": "5.in", "output_name": "5.out"}, {"score": 11, "input_name": "6.in", "output_name": "6.out"}, {"score": 11, "input_name": "7.in", "output_name": "7.out"}, {"score": 11, "input_name": "8.in", "output_name": "8.out"}, {"score": 11, "input_name": "9.in", "output_name": "9.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 9, 1, 3, '{"0": 9, "4": 4, "-1": 46, "-2": 3}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (341, '通讯录排序', '

输入n个朋友的信息,包括姓名、生日、电话号码,本题要求编写程序,按照年龄从大到小的顺序依次输出通讯录。题目保证所有人的生日均不相同。

', '

输入第一行给出正整数n(<10)。随后n行,每行按照“姓名 生日 电话号码”的格式给出一位朋友的信息,其中“姓名”是长度不超过10的英文字母组成的字符串,“生日”是yyyymmdd格式的日期,“电话号码”是不超过17位的数字及+-组成的字符串。

', '

按照年龄从大到小输出朋友的信息,格式同输出

', '[{"input": "3\nzhang 19850403 13912345678\nwang 19821020 +86-0571-88018448\nqian 19840619 13609876543", "output": "wang 19821020 +86-0571-88018448\nqian 19840619 13609876543\nzhang 19850403 13912345678"}]', 'b0069fbcfd34dc8e37534592268bba47', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 214, 90, 358, '9-5', '{"0": 90, "4": 39, "-1": 68, "-2": 17}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (344, '通讯录排序', '

输入n个朋友的信息,包括姓名、生日、电话号码,本题要求编写程序,按照年龄从大到小的顺序依次输出通讯录。题目保证所有人的生日均不相同。

', '

输入第一行给出正整数n(<10)。随后n行,每行按照“姓名 生日 电话号码”的格式给出一位朋友的信息,其中“姓名”是长度不超过10的英文字母组成的字符串,“生日”是yyyymmdd格式的日期,“电话号码”是不超过17位的数字及+-组成的字符串。

', '

按照年龄从大到小输出朋友的信息,格式同输出

', '[{"input": "3\nzhang 19850403 13912345678\nwang 19821020 +86-0571-88018448\nqian 19840619 13609876543", "output": "wang 19821020 +86-0571-88018448\nqian 19840619 13609876543\nzhang 19850403 13912345678"}]', 'b0069fbcfd34dc8e37534592268bba47', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 33, 358, '1-149', '{"0": 33, "4": 2, "-1": 22, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (40, '分糖果', '

有n个小朋友围坐成一圈。老师给每个小朋友随机发偶数个糖果,然后进行下面的游戏:

每个小朋友都把自己的糖果分一半给左手边的孩子。

一轮分糖后,拥有奇数颗糖的孩子由老师补给1个糖果,从而变成偶数。

反复进行这个游戏,直到所有小朋友的糖果数都相同为止。

你的任务是预测在已知的初始糖果情形下,老师一共需要补发多少个糖果。

', '

程序首先读入一个整数N(2<N<100),表示小朋友的人数。
接着是一行用空格分开的N个偶数(每个偶数不大于1000,不小于2)

', '

要求程序输出一个整数,表示老师需要补发的糖果数。

', '[{"input": "3\n2 2 4\n", "output": "4"}]', 'b0ca03ca6a57fe76f6e907da66956e0b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 43, 30, 1, '1-29', '{"0": 30, "1": 2, "-1": 7, "-2": 4}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (413, 'OrderedList', '

1、用数组(大小限定为30)实现一个链表类,基于链表类派生一个有序链表类(重写插入和替换函数)。

2、自定义一个数据结构Record作为有序链表类的数据类型,重载操作符>, <, ==。

', '

依次输入要插入到链表内的数据(输入-1代表结束)

', '

有序输出链表内的所有数据

', '[{"input": "3 6 9 8 10 7 5 4 2 1 -1", "output": "1 2 3 4 5 6 7 8 9 10 "}]', 'b11100be0549de586179bce113b4dd28', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 72, 30, 511, 1, '{"0": 30, "-1": 4, "-2": 38}', 0, 40, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (542, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', 'b1660aa4e5fb0d00db67fbb4332e351a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

必须使用结构体

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-15', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (543, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', 'b1660aa4e5fb0d00db67fbb4332e351a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

必须使用结构体

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 50, 23, 1, 6, '{"0": 23, "4": 3, "-1": 21, "-2": 3}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (519, '三维排序', '

给定三维平面上的n个点,先按x轴从小到大排序,x轴相同的按y轴从小到大排序,x和y轴都相同的按z轴从小到大排序。

', '

第一行一个整数n。(1<=n<=100)

接下来n行,每行三个数x,y,z,表示三维空间中的一个点。(保证没有重合的两个点)

', '

输出n行,每行三个数,表示排完序后的点集。

', '[{"input": "3\n3 4 5\n1 3 4\n1 3 1", "output": "1 3 1\n1 3 4\n3 4 5"}]', 'b1660aa4e5fb0d00db67fbb4332e351a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

必须使用结构体

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 198, 36, 1, 6, '{"0": 36, "1": 2, "4": 12, "-1": 98, "-2": 50}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (33, '错误票据', '

某涉密单位下发了某种票据,并要在年终全部收回。

每张票据有唯一的ID号。全年所有票据的ID号是连续的,但ID的开始数码是随机选定的。

因为工作人员疏忽,在录入ID号的时候发生了一处错误,造成了某个ID断号,另外一个ID重号。

你的任务是通过编程,找出断号的ID和重号的ID。

假设断号不可能发生在最大和最小号。

', '

要求程序首先输入一个整数N(N<100)表示后面数据行数。

接着读入N行数据。

每行数据长度不等,是用空格分开的若干个(不大于100个)正整数(不大于100000),请注意行内和行末可能有多余的空格,你的程序需要能处理这些空格。

每个整数代表一个ID号。

', '

要求程序输出1行,含两个整数m n,用空格分隔。

其中,m表示断号ID,n表示重号ID

', '[{"input": "2\n5 6 8 11 9 \n10 12 9", "output": "7 9"}, {"input": "6\n164 178 108 109 180 155 141 159 104 182 179 118 137 184 115 124 125 129 168 196\n172 189 127 107 112 192 103 131 133 169 158 \n128 102 110 148 139 157 140 195 197\n185 152 135 106 123 173 122 136 174 191 145 116 151 143 175 120 161 134 162 190\n149 138 142 146 199 126 165 156 153 193 144 166 170 121 171 132 101 194 187 188\n113 130 176 154 177 120 117 150 114 183 186 181 100 163 160 167 147 198 111 119\n", "output": "105 120"}]', 'b497f4a1e1156a613bb9daf41b0b6592', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 35, 14, 1, '1-22', '{"0": 14, "4": 14, "-1": 3, "-2": 4}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (299, '分类统计各类字符个数', '

本题要求实现一个函数,统计给定字符串中的大写字母、小写字母、空格、数字以及其它字符各有多少。

函数接口定义:

void StringCount( char *s );

其中char *s是用户传入的字符串。函数StringCount须在一行内按照

大写字母个数 小写字母个数 空格个数 数字个数 其它字符个数 (注: 换行符也算字符)

的格式输出。

', '

若干行字符串

', '

一行5个整数。

', '[{"input": "aZ&*?\n093 Az", "output": "2 2 1 3 4"}]', 'b4b731fde35d6ff6ce09b65751f18b31', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 311, 87, 1, '8-9', '{"0": 87, "1": 2, "4": 28, "-1": 156, "-2": 38}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (309, '分类统计各类字符个数', '

本题要求实现一个函数,统计给定字符串中的大写字母、小写字母、空格、数字以及其它字符各有多少。

函数接口定义:

void StringCount( char *s );

其中char *s是用户传入的字符串。函数StringCount须在一行内按照

大写字母个数 小写字母个数 空格个数 数字个数 其它字符个数

的格式输出。

', '

若干行字符串

', '

一行5个整数。

', '[{"input": "aZ&*?\n093 Az", "output": "2 2 1 3 4"}]', 'b4b731fde35d6ff6ce09b65751f18b31', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 104, 35, 1, '1-138', '{"0": 35, "4": 9, "-1": 54, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (385, '计算最长的字符串长度', '

输入n(n<lO)个字符串,输出其中最长字符串的有效长度(<100)。要求自定义函数 int  max_len( char *s[]  ,  int n ),用于计算有m个元素的指针数组s中最长的字符串的长度。试编写相应程序 。

', '

输入正整数n(n<10),接下来输入n个字符串

', '

输出函数计算出的最长字符串的长度值

', '[{"input": "4\nblue\nyellow\nred\ngreen", "output": "6"}]', 'b5a1414859302b3a50698f01453397bf', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 234, 86, 358, '11-3', '{"0": 86, "4": 63, "-1": 69, "-2": 16}', 0, 34, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (388, '计算最长的字符串长度', '

输入n(n<lO)个字符串,输出其中最长字符串的有效长度(<100)。要求自定义函数 int  max_len( char *s[]  ,  int n ),用于计算有m个元素的指针数组s中最长的字符串的长度。试编写相应程序 。

', '

输入正整数n(n<10),接下来输入n个字符串

', '

输出函数计算出的最长字符串的长度值

', '[{"input": "4\nblue\nyellow\nred\ngreen", "output": "6"}]', 'b5a1414859302b3a50698f01453397bf', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 68, 41, 358, '1-173', '{"0": 41, "4": 8, "-1": 18, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (427, '城市水管连接', '

现在有n个城镇,编号为1, 2, 3, 4…n。他们之间有m条互通的道路,每条道路有相应的长度,现在基于这些道路,选择其中的一部分,在其上铺设水管,水管长度等于道路长度。要求使得任意两个城市之间都能通水,即任何城市之间可以通过水管连接。求使得所有城市连接的水管最短长度。

', '

第一行两个数,分别表示n和m (1<=n<=10001,1<=m<=10000*10000/2)。

后面为m行,其中每行3个数,分别表示连接的第一个城市,第二个城市,和道路长度,道路长度为大于0的整数。

', '

输出为1行,即水管最短长度。提示,如果不存在一种方案使得所有城市之间都能两两相通,那么输出的最短长度为-1。

', '[{"input": "4 5\n1 2 1\n1 3 1\n1 4 2\n2 4 3\n3 4 3", "output": "4"}]', 'b5ba662ed3738897291388dad75f0398', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 119, 11, 1, 'D', '{"0": 11, "1": 10, "4": 4, "-1": 55, "-2": 39}', 0, 46, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (475, '字符串替换', '

输入一个字符串(少于 80 个字符),包含空格和特殊符号等。将其中的大写字母用下面列出的对应大写字母替换, 其余字符不变, 输出替 换后的字符串。试编写相应程序。

原字母对应字母

A ——> Z

B ——> Y

C ——> X

D ——> W

...

X ——> C

Y ——> B

Z ——> A

', '

输入一个字符串(少于 80 个字符),包含空格和特殊符号等。

', '

输入一个字符串(少于 80 个字符),包含空格和特殊符号等。

', '[{"input": "DASE", "output": "WZHV"}, {"input": "HSAHD NDUEAPSJDI wiziaijsdzjisiadasdde", "output": "SHZSW MWFVZKHQWR wiziaijsdzjisiadasdde"}]', 'b6c7a5d009bd4e16d7850d61d90cb13c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 231, 61, 358, '7-7', '{"0": 61, "1": 6, "4": 77, "-1": 75, "-2": 12}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (478, '字符串替换', '

输入一个字符串(少于 80 个字符),包含空格和特殊符号等。将其中的大写字母用下面列出的对应大写字母替换, 其余字符不变, 输出替 换后的字符串。试编写相应程序。

原字母对应字母

A ——> Z

B ——> Y

C ——> X

D ——> W

...

X ——> C

Y ——> B

Z ——> A

', '

输入一个以回车结束的字符串(少于 80 个字符)

', '

输入一个字符串(少于 80 个字符),包含空格和特殊符号等。

', '[{"input": "DASE", "output": "WZHV"}, {"input": "HSAHD NDUEAPSJDI wiziaijsdzjisiadasdde", "output": "SHZSW MWFVZKHQWR wiziaijsdzjisiadasdde"}]', 'b6c7a5d009bd4e16d7850d61d90cb13c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 358, '1-185', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (492, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n(n>=4)。

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', 'b957abd0c4887e299adc80a5b925209c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C", "C++"]', '{}', null, 3000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '2-8', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (497, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n(n>=4)。

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', 'b957abd0c4887e299adc80a5b925209c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C", "C++"]', '{}', null, 3000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 10, 6, 1, 8, '{"0": 6, "4": 1, "-1": 3}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (467, '斐波那契数列', '

给出一个n,求斐波那契数列第n项和第n-1项两数的最大公约数和最小公倍数(n>=4)

', '

输入一个正整数n(n>=4)。

', '

分别输出第n项和n-1的最大公约数和最小公倍数(整数形式)。

', '[{"input": "6", "output": "1 40"}]', 'b957abd0c4887e299adc80a5b925209c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

斐波那契数列 : F(0)=0,F(1)=1,F(n)=F(n-1)+F(n-2)(n≥2,n∈N*)

斐波那契数列是从第零项开始,数列表示为 0 1 1 2 3 5 8 13......当n=6,F(n)=8,F(n-1)=5。

', '["C", "C++"]', '{}', null, 3000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 144, 59, 1, 8, '{"0": 59, "1": 8, "4": 30, "-1": 34, "-2": 13}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (178, '吃西瓜', '

小华买了n个西瓜,第i个西瓜的重量为wi,并且没有两个西瓜的重量相同。小华在吃西瓜之前想把西瓜的重量从小到大排序,并且他会问你m个问题,第i个问题告诉你一个数qi,你需要回答出重量为qi的西瓜在排完序后在第几个位置,保证重量为qi的西瓜一定能找到。

', '

第1行一个整数n。(1<=n<=1000)

接下来一行n个整数wi。(1<=wi<=100000)

第3行一个整数m。(1<=m<=1000)

接下来m行每行一个询问qi。(1<=qi<=100000)

', '

对于每行输入,输出一行。

', '[{"input": "5\n10 4 7 6 1\n5\n1\n4\n7\n6\n10\n", "output": "1\n2\n4\n3\n5\n"}]', 'b96afda4ea943aa1a8d95a0125ac42a6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 58, 23, 1, '1-77', '{"0": 23, "4": 8, "-1": 21, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (170, '吃西瓜', '

小华买了n个西瓜,第i个西瓜的重量为wi,并且没有两个西瓜的重量相同。小华在吃西瓜之前想把西瓜的重量从小到大排序,并且他会问你m个问题,第i个问题告诉你一个数qi,你需要回答出重量为qi的西瓜在排完序后在第几个位置,保证重量为qi的西瓜一定能找到。

', '

第1行一个整数n。(1<=n<=1000)

接下来一行n个整数wi。(1<=wi<=100000)

第3行一个整数m。(1<=m<=1000)

接下来m行每行一个询问qi。(1<=qi<=100000)

', '

对于每行输入,输出一行。

', '[{"input": "5\n10 4 7 6 1\n5\n1\n4\n7\n6\n10\n", "output": "1\n2\n4\n3\n5\n"}]', 'b96afda4ea943aa1a8d95a0125ac42a6', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 39, 16, 1, 5, '{"0": 16, "4": 7, "-1": 16}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (212, '求最大公约数和最小公倍数', '

输入两个正整数mnm<=1000,n<=1000),求其最大公约数和最小公倍数,试编写相应程序。

', '

输入两个整数m 和 n(m<=1000,n<=1000).

', '

输出其最大公约数和最小公倍数,输出用一个空格隔开。

', '[{"input": "15 25", "output": "5 75"}]', 'b99cca6ef5e0c589ef3882e9e7ba732d', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 223, 100, 358, '4-7', '{"0": 100, "1": 8, "4": 20, "-1": 58, "-2": 37}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (234, '求最大公约数和最小公倍数', '

输入两个正整数mnm<=1000,n<=1000),求其最大公约数和最小公倍数,试编写相应程序。

', '

输入两个整数m 和 n(m<=1000,n<=1000).

', '

输出其最大公约数和最小公倍数,输出用一个空格隔开。

', '[{"input": "15 25", "output": "5 75"}]', 'b99cca6ef5e0c589ef3882e9e7ba732d', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 29, 25, 358, '1-102', '{"0": 25, "1": 1, "-1": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (25, '完美的代价', '

回文串,是一种特殊的字符串,它从左往右读和从右往左读是一样的。小龙龙认为回文串才是完美的。现在给你一个串,它不一定是回文的,请你计算最少的交换次数使得该串变成一个完美的回文串。

交换的定义是:交换两个相邻的字符

例如mamad

第一次交换 ad : mamda

第二次交换 md : madma

第三次交换 ma : madam (回文!完美!)

', '

第一行是一个整数N,表示接下来的字符串的长度(N <= 8000)

第二行是一个字符串,长度为N.只包含小写字母

', '

如果可能,输出最少的交换次数。

否则输出Impossible

', '[{"input": "5\nmamad\n", "output": "3"}]', 'ba24be4440c494e1a0945ae55fe3a67f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 149, 55, 1, '1-16', '{"0": 55, "1": 3, "4": 7, "-1": 59, "-2": 25}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (262, '分类统计字符个数', '

本题要求实现一个函数,统计给定字符串中英文字母、空格或回车、数字字符和其他字符的个数。

函数接口定义:

void StringCount( char s[] );

其中char s[]是用户传入的字符串。函数StringCount须在一行内按照

英文字母个数,空格或回车个数,数字字符个数,其他字符个数

的格式输出。

', '

若干行字符串。

', '

一行四个整数表示答案,以空格隔开。

', '[{"input": "aZ &\n09 Az\n", "output": "4 3 2 1"}]', 'bab7f60a9976bd8fe9871380c9e5a739', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 84, 25, 1, '1-114', '{"0": 25, "4": 14, "-1": 34, "-2": 10}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (76, '降序排序', '

输入四个数,实现降序排序

', '

输入四个整数

', '

按降序输出

', '[{"input": "4 5 2 6", "output": "[6, 5, 4, 2]"}]', 'bb6dff7f15129bc739a41089e6dfea2b', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 9, 1, '1-52', '{"0": 9, "4": 24, "-1": 20, "-2": 9}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (355, '十进制转换二进制', '

本题要求实现一个函数,将自然数n转换为二进制后输出。

函数接口定义:

void dectobin( int n );

函数dectobin应在一行中打印出二进制的n。建议用递归实现。

', '

一行一个自然数n。

', '

一行一个字符串表示二进制的n。

', '[{"input": "10", "output": "1010"}]', 'bbab4ddcb5859bdc177db73744c9fe91', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 52, 31, 1, '1-160', '{"0": 31, "4": 1, "-1": 14, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (333, '十进制转换二进制', '

本题要求实现一个函数,将自然数n转换为二进制后输出。

函数接口定义:

void dectobin( int n );

函数dectobin应在一行中打印出二进制的n。建议用递归实现。

', '

一行一个自然数n。

', '

一行一个字符串表示二进制的n。

', '[{"input": "10", "output": "1010"}]', 'bbab4ddcb5859bdc177db73744c9fe91', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 202, 93, 1, 7, '{"0": 93, "1": 3, "4": 9, "-1": 81, "-2": 16}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (551, '结构体数组', '

输入学生人数n,然后构建一个结构体数组,结构体包含学号和学生成绩(都是int类型),然后输出成绩不及格(<60)的学生的学号。

', '

输入n,接着输入n名学生的信息,主要是学号和成绩;

', '

输出成绩不及格学生的学号,每个学号一行。

', '[{"input": "4\n121212 5\n121213 100\n121216 70\n121218 60", "output": "121212"}]', 'bbe667f9f42e32a1460b36723ee224e7', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 3, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (429, '链表分组', '

n个人排成一排(用链表实现)。给定一份名单,该名单中共有m个人(是n个人的子集)。现要将名单中的人进行分组,分组规则是连续排在一起的人为一组。求名单中的人一共能分成多少组?

', '

n和m分别代表排成一排的人数和名单中的人数

n个人(用数字代替,无重复)排成一排的顺序;

名单中包含的m个人(用数字代替,无重复)。

', '

名单中的人一共能分成多少组(末尾无空格)。

', '[{"input": "4 3\n0 1 2 3\n0 1 3", "output": "2"}]', 'bcfbfaa11ff7987272190e7d79907494', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 39, 12, 511, 2, '{"0": 12, "4": 12, "-1": 12, "-2": 3}', 0, 44, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (428, '爬山问题', '

Jack喜欢登山,登的区域必须向上倾斜,而且当爬到坡顶,不得不再次从另一个坡底出发。Jack想知道在一个区域中最长的爬坡。区域由一个m*n的二维数组给出。数组的每个数字代表点的高度。下面是一个例子,Jack可以从某个点爬向上下左右相邻四个点之一,当且仅当高度增加。在上面的例子中,一条可行的坡道为1-2-17-23。当然1-2-3-4-5-6…-20-21-22-23这条更长。事实上,这是最长的一条。请写出相应的代码,求出这条最长坡道的长度,即坡道包含的点的数量。

1    2    3  4  5

16 17 18 19 6

15 23 23 20 7

14 22 22 21 8

13 12 11 10 9

', '

其中第一行两个数字。分别表示m和n。(1<=m<=120;1<=n<=120)

下面有m行,每行n个数字,分别表示高度,高度为大于0的整数。

', '

一个整数表示最长坡道的长度。

', '[{"input": "5 5\n1 2 3 4 5\n16 17 18 19 6\n15 23 23 20 7\n14 22 22 21 8\n13 12 11 10 9", "output": "23"}]', 'bd1638c061eb3900ee92cef65e06446d', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 80, 20, 1, 'E', '{"0": 20, "3": 1, "4": 8, "-1": 39, "-2": 12}', 0, 46, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (47, '数字游戏', '

栋栋正在和同学们玩一个数字游戏。

游戏的规则是这样的:栋栋和同学们一共n个人围坐在一圈。栋栋首先说出数字1。接下来,坐在栋栋左手边的同学要说下一个数字2。再下面的一个同学要从上一个同学说的数字往下数两个数说出来,也就是说4。下一个同学要往下数三个数,说7。依次类推。

为了使数字不至于太大,栋栋和同学们约定,当在心中数到 k-1 时,下一个数字从0开始数。例如,当k=13时,栋栋和同学们报出的前几个数依次为:

1, 2, 4, 7, 11, 3, 9, 3, 11, 7。

游戏进行了一会儿,栋栋想知道,到目前为止,他所有说出的数字的总和是多少。

', '

输入的第一行包含三个整数 n,k,T,其中 n 和 k 的意义如上面所述,T 表示到目前为止栋栋一共说出的数字个数。

', '

输出一行,包含一个整数,表示栋栋说出所有数的和。

', '[{"input": "3 13 3", "output": "17"}]', 'be4dd2483cbd35872516405ca62c801f', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '

栋栋说出的数依次为1, 7, 9,和为17。

数据规模和约定:

1 < n,k,T < 1,000,000;

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 155, 32, 1, '1-43', '{"0": 32, "1": 25, "4": 6, "-1": 84, "-2": 8}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (338, '计算两个复数之积', '

编写程序,利用结构变量求解两个复数之积 。

', '

分别输入四个个数代表第一个复数的实部和虚部和第二个复数的实部与虚部。

', '

输出格式为   (a1+b1i) * (a2+b2i) = a + bi,a,b为计算出的复数积的实部与虚部。(注意空格)

', '[{"input": "3 4 5 6", "output": "(3+4i) * (5+6i) = -9 + 38i"}]', 'bf046ede3fec9fc456a4014c4bbeedcf', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

提示: 求解 (al+a2i)*( bl+b2*i), 乘积的实部为:a1 * a2 - b1 * b2 ,   虚部为: a1 * b2 +a2 * b1。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 145, 92, 358, '9-2', '{"0": 92, "4": 1, "-1": 50, "-2": 2}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (348, '计算两个复数之积', '

编写程序,利用结构变量求解两个复数之积 。

', '

分别输入四个个数代表第一个复数的实部和虚部和第二个复数的实部与虚部。

', '

输出格式为   (a1+b1i) * (a2+b2i) = a + bi,a,b为计算出的复数积的实部与虚部。(注意空格)

', '[{"input": "3 4 5 6", "output": "(3+4i) * (5+6i) = -9 + 38i"}]', 'bf046ede3fec9fc456a4014c4bbeedcf', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

提示: 求解 (al+a2i)*( bl+b2*i), 乘积的实部为:al * bl - a2 * b2 ,   虚部为: al * b2 +a2 * bl。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 34, 358, '1-153', '{"0": 34, "-1": 25, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (320, '复读机(15分)', '

复读机就是可以把声音存储下来并且重复播放的一种机器。现在有一个复读机,它可以把你的输入保留信息输出。但是,这个复读机有一个毛病,它在某些时刻会重复当前的语句不止一遍,而在正常时刻只会复读一遍,现在请你输出复读后的语句。

', '

第一行一个整数n和m,分别表示有n个时刻复读机将重复不止一遍,m表示有m个语句。(1 <= n<= m <= 100)

接下来n行每行两个整数t和c,表示在t时刻的语句重复c遍。(1 <= t<= m, 2 <= c <= 10)

接下来一行m个整数,第i个整数pi,表示第i个时刻输入的句子。(1 <= pi <=10)

', '

若干个整数,每个整数后一个空格。

', '[{"input": "2 3\n1 2\n2 3\n1 2 3\n", "output": "1 1 2 2 2 3"}]', 'bf71ff9e4259f7fb96e29e097dd52280', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 29, 10, 1, '1-141', '{"0": 10, "-1": 15, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (507, '复读机(15分)', '

复读机就是可以把声音存储下来并且重复播放的一种机器。现在有一个复读机,它可以把你的输入保留信息输出。但是,这个复读机有一个毛病,它在某些时刻会重复当前的语句不止一遍,而在正常时刻只会复读一遍,现在请你输出复读后的语句。

', '

第一行一个整数n和m,分别表示有n个时刻复读机将重复不止一遍,m表示有m个语句。(1 <= n<= m <= 100)

接下来n行每行两个整数t和c,表示在t时刻的语句重复c遍。(1 <= t<= m, 2 <= c <= 10)

接下来一行m个整数,第i个整数pi,表示第i个时刻输入的句子。(1 <= pi <=10)

', '

若干个整数,每个整数后一个空格。

', '[{"input": "2 3\n1 2\n2 3\n1 2 3\n", "output": "1 1 2 2 2 3"}]', 'bf71ff9e4259f7fb96e29e097dd52280', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 132, 29, 1, 2, '{"0": 29, "4": 16, "-1": 78, "-2": 9}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (160, '能否组成正方形', '

给定一组不同长度的木棍,是否可以将它们端到端连接成一个正方形?

', '

输入的第一行包含n,即测试用例的数量。

每个测试用例以一个整数m开始(4<=m<=20),即木棍的条数。

接下来是m个整数,每一个整数代表一个木棍的长度(整数范围1~10000)。

', '

对于每种情况,如果可以形成一个正方形,则输出一行包含“yes”;否则输出“no”。

', '[{"input": "3\n4 1 1 1 1\n5 10 20 30 40 50\n8 1 7 2 6 4 4 3 5\n", "output": "yes\nno\nyes\n"}]', 'c02ea6a77ad9c3752cf8c803fdb94e3a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 73, 3, 1, 'C', '{"0": 3, "1": 23, "4": 4, "-1": 41, "-2": 2}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (31, '城市建设', '

栋栋居住在一个繁华的C市中,然而,这个城市的道路大都年久失修。市长准备重新修一些路以方便市民,于是找到了栋栋,希望栋栋能帮助他。

C市中有n个比较重要的地点,市长希望这些地点重点被考虑。现在可以修一些道路来连接其中的一些地点,每条道路可以连接其中的两个地点。另外由于C市有一条河从中穿过,也可以在其中的一些地点建设码头,所有建了码头的地点可以通过河道连接。

栋栋拿到了允许建设的道路的信息,包括每条可以建设的道路的花费,以及哪些地点可以建设码头和建设码头的花费。

市长希望栋栋给出一个方案,使得任意两个地点能只通过新修的路或者河道互达,同时花费尽量小。

', '

输入的第一行包含两个整数n, m,分别表示C市中重要地点的个数和可以建设的道路条数。所有地点从1到n依次编号。
接下来m行,每行三个整数a, b, c,表示可以建设一条从地点a到地点b的道路,花费为c。若c为正,表示建设是花钱的,如果c为负,则表示建设了道路后还可以赚钱(比如建设收费道路)。
接下来一行,包含n个整数w_1, w_2, …, w_n。如果w_i为正数,则表示在地点i建设码头的花费,如果w_i为-1,则表示地点i无法建设码头。
输入保证至少存在一个方法使得任意两个地点能只通过新修的路或者河道互达。

', '

输出一行,包含一个整数,表示使得所有地点通过新修道路或者码头连接的最小花费。如果满足条件的情况下还能赚钱,那么你应该输出一个负数。

', '[{"input": "5 5\n1 2 4\n1 3 -1\n2 3 3\n2 4 5\n4 5 10\n-1 10 10 1 1", "output": "9"}]', 'c07198391296e5ab23e753a0453b7365', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例说明

建设第2、3、4条道路,在地点4、5建设码头,总的花费为9。

数据规模和约定

对于20%的数据,1<=n<=10,1<=m<=20,0<=c<=20,w_i<=20;
对于50%的数据,1<=n<=100,1<=m<=1000,-50<=c<=50,w_i<=50;
对于70%的数据,1<=n<=1000;
对于100%的数据,1 <= n <=10000,1 <= m <= 100000,-1000<=c<=1000,-1<=w_i<=1000,w_i≠0。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 91, 17, 1, '1-21', '{"0": 17, "1": 9, "4": 9, "-1": 44, "-2": 12}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (96, '求指定区间的奇数个数', '

求指定区间的奇数个数

', '

输入两个整数a,b,区间范围为[a,b)

', '

输出区间内奇数的个数

', '[{"input": "1 101", "output": "50"}]', 'c0a21adffa2f65c498d643cc29e17ac9', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python3", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 35, 14, 1, '1-14', '{"0": 14, "4": 13, "-1": 7, "-2": 1}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (95, '求指定区间的奇数个数', '

求指定区间的奇数个数

', '

输入两个整数a,b,区间范围为[a,b)

', '

输出区间内奇数的个数

', '[{"input": "1 101", "output": "50"}]', 'c0a21adffa2f65c498d643cc29e17ac9', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 49, 17, 1, '1-55', '{"0": 17, "4": 4, "-1": 9, "-2": 19}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (412, '用BFS解决滑雪问题', '

Michael喜欢滑雪这并不奇怪,因为滑雪的确很刺激。可是为了获得速度,滑的区域必须向下倾斜,而且当你滑到坡底,你不得不再次走上坡或者等待升降机来载你。Michael想知道载一个区域中最长底滑坡。区域由一个二维数组给出。数组的每个数字代表点的高度。

下面是一个例子:一个人可以从某个点滑向上下左右相邻四个点之一,当且仅当高度减小。一条可滑行的滑坡为24-17-16-1。当然25-24-23-...-3-2-1更长。事实上,这是最长的一条。

要求用BFS实现

', '

输入的第一行表示区域的行数R和列数C(1 <= R,C <= 100)。下面是R行,每行有C个整数,代表高度h,0<=h<=10000。

', '

输出最长区域的长度。

', '[{"input": "5 5\n1 2 3 4 5\n16 17 18 19 6\n15 24 25 20 7\n14 23 22 21 8\n13 12 11 10 9\n", "output": "25"}]', 'c124497f5938576896de10985ff43d11', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 49, 30, 511, 2, '{"0": 30, "1": 3, "4": 3, "-1": 4, "-2": 9}', 0, 39, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (239, '符号函数', '

本题要求实现符号函数sign(x)。

函数接口定义:

int sign( int x );

其中x是用户传入的整型参数。符号函数的定义为:若x大于0,sign(x) = 1;若x等于0,sign(x) = 0;否则,sign(x)=−1。

', '

一个整数x。

', '

sign(x)的值

', '[{"input": "10", "output": "1"}]', 'c1727506ac5c7eaea401a794341d5930', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 42, 28, 1, '1-107', '{"0": 28, "-1": 8, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (196, '符号函数', '

本题要求实现符号函数sign(x)。

函数接口定义:

int sign( int x );

其中x是用户传入的整型参数。符号函数的定义为:若x大于0,sign(x) = 1;若x等于0,sign(x) = 0;否则,sign(x)=−1。

', '

一个整数x。

', '

sign(x)的值

', '[{"input": "10", "output": "1"}]', 'c1727506ac5c7eaea401a794341d5930', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 188, 101, 1, '5-1', '{"0": 101, "4": 1, "-1": 56, "-2": 30}', 0, 22, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (449, '二分图', '

给定一个无向图G,当这个图为二分图时返回true。

二分图的定义为:如果我们能将一个图的节点集合分割成两个独立的子集A和B,使得图中的每一条边的两个节点一个来自A集合,一个来自B集合,我们就将这个图称为二分图。

G将会以邻接表的方式给出,G[i]表示图中与节点i相连的所有节点。每个节点都是一个在0到G.length-1之间的整数。图中没有自环和平行边:G[i]中不存在i,并且G[i]中没有重复的值。

', '

输入图中节点的个数;

依次输入与每个节点相连的所有节点(-1代表与某个节点相连的所有节点输入完毕)。

', '

输出该图是否为二分图:是就输出true,不是就输出false。(行末尾无空格)

', '[{"input": "4\n1 3 -1\n0 2 -1\n1 3 -1\n0 2 -1\n", "output": "true"}]', 'c2bae3c46a0b2ef5796a281230d0f917', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 89, 21, 1, 'F', '{"0": 21, "1": 2, "3": 1, "4": 16, "-1": 42, "-2": 7}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (463, '矩形拼图 (10分)', '

用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法?

要求用递归的方法解决此问题。

', '

输入正整数 n

', '

输出一共有几种方法。

', '[{"input": "2", "output": "2"}, {"input": "10", "output": "89"}]', 'c4f4b2b02f62e992b988ce54cb9dd102', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 9, 2, 1, 6, '{"0": 2, "1": 5, "-1": 2}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (163, '舞会', '

有n个人想参加舞会,他们的身高为p[1...n],现在舞会提出了一个奇怪的要求:必须成双参加,且参与者的身高差要至少为d。请问这场舞会最多有几对人可以参加?

', '

第一行输入两个整数n和d。(1<= n <= 10^5,1 <= d <= 10^9)​

第二行输入n个整数p[1...n]表示n个人的身高。(1 <= p[i] <= 10^9)

', '

一行一个整数表示答案。

', '[{"input": "4 2\n1 2 3 4\n", "output": "2\n"}, {"input": "6 5\n6 5 4 3 2 1\n", "output": "1\n"}]', 'c5012df2ce25b0b6634a5e76cf4c8f75', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 130, 12, 1, 'F', '{"0": 12, "1": 14, "4": 10, "-1": 87, "-2": 7}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (9, 'Sine之舞', '

最近FJ为他的奶牛们开设了数学分析课,FJ知道若要学好这门课,必须有一个好的三角函数基本功。所以他准备和奶牛们做一个“Sine之舞”的游戏,寓教于乐,提高奶牛们的计算能力。

不妨设

An=sin(1–sin(2+sin(3–sin(4+...sin(n))...)

Sn=(...(A1+n)A2+n-1)A3+...+2)An+1

FJ想让奶牛们计算Sn的值,请你帮助FJ打印出Sn的完整表达式,以方便奶牛们做题。

', '

仅有一个数:N<201。

', '

请输出相应的表达式Sn,以一个换行符结束。输出中不得含有多余的空格或换行、回车符。

', '[{"input": "3", "output": "((sin(1)+3)sin(1–sin(2))+2)sin(1–sin(2+sin(3)))+1"}]', 'c57293ac21b4113a9e0e359463fca4ec', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 198, 107, 1, '1-5', '{"0": 107, "4": 21, "-1": 32, "-2": 38}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (308, '判断回文字符串', '

本题要求编写函数,判断给定的一串字符是否为“回文”。所谓“回文”是指顺读和倒读都一样的字符串。如“XYZYX”和“xyzzyx”都是回文。

函数接口定义:

bool palindrome( char *s );

函数palindrome判断输入字符串char *s是否为回文。若是则返回true,否则返回false。

', '

一行一个字符串。

', '

输出一行。若是回文,输出‘Yes’,否则输出‘No’。(不包括引号)

', '[{"input": "thisistrueurtsisiht", "output": "Yes"}]', 'c5a831287b793d91a522fc86541d4b2c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 59, 30, 1, '1-137', '{"0": 30, "4": 10, "-1": 13, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (298, '判断回文字符串', '

本题要求编写函数,判断给定的一串字符是否为“回文”。所谓“回文”是指顺读和倒读都一样的字符串。如“XYZYX”和“xyzzyx”都是回文。

函数接口定义:

bool palindrome( char *s );

函数palindrome判断输入字符串char *s是否为回文。若是则返回true,否则返回false。

', '

一行一个字符串。

', '

输出一行。若是回文,输出‘Yes’,否则输出‘No’。(不包括引号)

', '[{"input": "thisistrueurtsisiht", "output": "Yes"}]', 'c5a831287b793d91a522fc86541d4b2c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 226, 91, 1, '8-8', '{"0": 91, "2": 1, "4": 27, "-1": 51, "-2": 56}', 0, 28, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (104, '二叉树的建立与遍历1', '

已知二叉树的先序遍历的字符串如abd##e#f##cg###,#代表空节点,求二叉树的中序和后序遍历

', '

二叉树的先序遍历的字符串

', '

输出两行,分别为二叉树的中序遍历序列和后序遍历序列

', '[{"input": "abd##e#f##cg###", "output": "dbefagc\ndfebgca\n"}]', 'c6237a03f2f8a9bc7cf528fb378e4145', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 10, 3, 1, 'C', '{"0": 3, "-1": 1, "-2": 6}', 0, 11, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (498, '吃豆子(15分)', '

给你一个数组,数组上的每个位置都有一定数量的豆子,现在吃豆人会进行若干次操作,每次操作给定一个坐标x,吃豆人会把位于坐标x上位置的豆子都吃掉,同时位于x位置右边的位置都会向左移动一格。具体来说,x+1位置上的豆子转移到x位置,x+2位置上的豆子转移到x+1位置,以此类推。

每次操作,如果吃豆人发现x位置上已经没豆子了,输出0,否则输出吃到的豆子数。

', '

第一行两个整数n和m,分别表示数组长度和操作次数。(1<=n,m<=1000)

第二行有n个整数,代表初始每个位置上的豆子数d[i]。(1<=d[i]<=1000)

接下来m行,每行一个整数,代表该次操作的位置pos。(1<=pos<=n)

', '

对于每次操作,输出一行,代表该次吃豆人吃到的豆子。

', '[{"input": "3 2\n2 3 1\n2\n3\n", "output": "3\n0\n"}]', 'c678b6c3656a9ca43922696cd6e2203e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 289, 23, 1, 1, '{"0": 23, "1": 4, "4": 30, "-1": 221, "-2": 11}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (174, '划拳', '

划拳是古老中国酒文化的一个有趣的组成部分。酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就输了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。

下面给出甲、乙两人的酒量(最多能喝多少杯不倒)和划拳记录,请你判断两个人谁先倒。

', '

输入第一行先后给出甲、乙两人的酒量(不超过100的非负整数),以空格分隔。下一行给出一个正整数N(≤100),随后N行,每行给出一轮划拳的记录,格式为:

甲喊 甲划 乙喊 乙划

其中是喊出的数字,是划出的数字,均为不超过100的正整数(两只手一起划)。

', '

在第一行中输出先倒下的那个人:

A代表甲,B代表乙。

第二行中输出没倒的那个人喝了多少杯。题目保证有一个人倒下。注意程序处理到有人倒下就终止,后面的数据不必处理。

', '[{"input": "1 1\n6\n8 10 9 12\n5 10 5 10\n3 8 5 12\n12 18 1 13\n4 16 12 15\n15 1 1 16\n", "output": "A\n1\n"}]', 'c6bd28f54ac6680187cc8f0e0540ef73', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 40, 17, 1, '1-73', '{"0": 17, "4": 1, "-1": 20, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (166, '划拳', '

划拳是古老中国酒文化的一个有趣的组成部分。酒桌上两人划拳的方法为:每人口中喊出一个数字,同时用手比划出一个数字。如果谁比划出的数字正好等于两人喊出的数字之和,谁就输了,输家罚一杯酒。两人同赢或两人同输则继续下一轮,直到唯一的赢家出现。

下面给出甲、乙两人的酒量(最多能喝多少杯不倒)和划拳记录,请你判断两个人谁先倒。

', '

输入第一行先后给出甲、乙两人的酒量(不超过100的非负整数),以空格分隔。下一行给出一个正整数N(≤100),随后N行,每行给出一轮划拳的记录,格式为:

甲喊 甲划 乙喊 乙划

其中是喊出的数字,是划出的数字,均为不超过100的正整数(两只手一起划)。

', '

在第一行中输出先倒下的那个人:

A代表甲,B代表乙。

第二行中输出没倒的那个人喝了多少杯。题目保证有一个人倒下。注意程序处理到有人倒下就终止,后面的数据不必处理。

', '[{"input": "1 1\n6\n8 10 9 12\n5 10 5 10\n3 8 5 12\n12 18 1 13\n4 16 12 15\n15 1 1 16\n", "output": "A\n1\n"}]', 'c6bd28f54ac6680187cc8f0e0540ef73', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 87, 12, 1, 1, '{"0": 12, "1": 5, "-1": 64, "-2": 6}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (442, '二叉树剪枝', '

给定一棵二叉树,树的每个结点的值要么是0,要么是1。移除树中所有不包含1的子树(子树节点全为0)。

子树的定义:对于树中的任意一个节点node,node为根,node的后代构成的二叉树称之为子树。

注:题中给定的二叉树需要自己根据测试案例中的层序遍历序列构建。

', '

输入二叉树的层序遍历序列的长度;

输入二叉树的层序遍历序列(树中的每个节点的值都为大于等于0的整型数据,-1代表空指针)。

', '

输出移除所有不包含1的子树后的二叉树的层序遍历序列(-1代表空指针)。(行末尾有空格)

', '[{"input": "15\n1 0 1 0 0 0 1 -1 -1 -1 -1 -1 -1 -1 -1", "output": "1 -1 1 -1 1 -1 -1 "}]', 'c8101ea7ec20f4a8b0cbe35ef7f0446b', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 59, 12, 511, 2, '{"0": 12, "4": 4, "-1": 36, "-2": 7}', 0, 52, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (450, '转置矩阵(10分)', '

给定一个矩阵A,m行n列,返回A的转置矩阵。

矩阵的转置是指将矩阵的主对角线翻转,交换矩阵的行索引与列索引。

', '

输入第一行给出两个正整数m和n

随后m行,每行给出n个100以内的正整数,其间以空格分隔

', '

输出该矩阵的转置矩阵

', '[{"input": "2 3\n1 5 6\n3 9 4", "output": "1 3\n5 9\n6 4"}]', 'c9f11beaaf89d51f572ae0886eadf61c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

1 <= m <= 1000

1 <= n <= 1000

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 30, 5, 1, 1, '{"0": 5, "4": 5, "-1": 20}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (271, '输出华氏-摄氏温度转换表', '

输入2个正整数lower和upper(lower≤upper≤100),请输出一张取值范围为[lower,upper]、且每次增加2华氏度的华氏-摄氏温度转换表。

温度转换的计算公式:C=5×(F−32)/9,其中:C表示摄氏温度,F表示华氏温度。

', '

在一行中输入2个整数,分别表示lower和upper的值,中间用空格分开

', '

每行输出一个华氏温度fahr(整型)与一个摄氏温度celsius(浮点数,保留一位小数),并以空格隔开。

若输入的范围不合法,则输出"Invalid"。

', '[{"input": "32 35\n", "output": "32 0.0\n34 1.1\n\n"}, {"input": "40 30\n", "output": "Invalid\n"}]', 'c9fc5bd14fd2b175010700ac400c92b8', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 64, 28, 1, 1, '{"0": 28, "-1": 32, "-2": 4}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (88, '迷宫游戏', '

小华想要开发一个传统的迷宫游戏,但是他不知道自己设计的地图是否符合要求,请你帮助他来判断。

', '

第一行两个整数n, m,为迷宫的长宽。

接下来n行,每行m个数,数之间没有间隔,为0或1中的一个。0表示这个格子可以通过,1表示不可以。假设迷宫的起点固定为(1,1),迷宫的出口固定为(n,m)。每次移动时只能向上下左右4个方向移动到另外一个可以通过的格子里,每次移动算一步。

', '

输出一行”Yes”代表地图符合要求,“No”代表地图不符合要求(既起点到终点无通路)

', '[{"input": "3 3\n0 0 1\n1 0 0\n1 1 0\n", "output": "Yes\n"}]', 'ca93fc14400ab4c8769e50ccda27c42c', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 64, 15, 1, 6, '{"0": 15, "4": 17, "-1": 29, "-2": 3}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (436, '排序III', '

给定一个长度为n的整数序列,要求使用快速排序进行升序排序。

***注意:本题禁止使用sort库函数,且其他排序方法不得分***

', '

第一行一个整数n。(n<=100000)

第二行n个整数,代表待排序的整数序列。

', '

输出一行,表示排序后的序列。

', '[{"input": "5\n1 2 0 3 1\n", "output": "0 1 1 2 3"}]', 'cabe79148dd50e13e63e6d74b0d976fa', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 66, 2, 1, 'B', '{"0": 2, "1": 10, "2": 1, "4": 9, "-1": 35, "-2": 9}', 0, 49, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (347, '时间换算', '

本题要求编写程序,以hh:mm:ss的格式输出某给定时间再过n秒后的时间值(超过23:59:59就从0点开始计时)。

', '

输入在第一行中以hh:mm:ss的格式给出起始时间,第二行给出整秒数n(<60)。

', '

输出在一行中给出hh:mm:ss格式的结果时间。

', '[{"input": "11:59:40\n30", "output": "12:00:10"}]', 'cb7e6a33ae3c9a19eb4c3606d9c0d0a0', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 86, 34, 358, '1-152', '{"0": 34, "-1": 50, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (337, '时间换算', '

本题要求编写程序,以hh:mm:ss的格式输出某给定时间再过n秒后的时间值(超过23:59:59就从0点开始计时)。

', '

输入在第一行中以hh:mm:ss的格式给出起始时间,第二行给出整秒数n

', '

输出在一行中给出hh:mm:ss格式的结果时间。

', '[{"input": "11:59:40\n30", "output": "12:00:10"}]', 'cb7e6a33ae3c9a19eb4c3606d9c0d0a0', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 255, 91, 358, '9-1', '{"0": 91, "1": 1, "4": 2, "-1": 150, "-2": 11}', 0, 31, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (426, '链表报数', '

n个人围成一个圆环,编号为1,2,3,4…到n, 现在从指定的一名同学编号为s的同学开始,从s依次开始报数,s报1,s的后一位同学报2,依次类推,一直报到m。每个报到m的同学将退出圆环。然后从报到m的下一位同学继续开始从1到m报数。一直这样执行,求最后一名留在圆环中的人的编号。

', '

三个数字,分别表示n (2<=n<=10001),s(1<=s<=n) , m(1<=m)

', '

输出为1行,即最后一名留在圆环中的人的编号。

', '[{"input": "10 4 3", "output": "7"}]', 'cbd23cb0f939fa7f8797d7c7c4f60d33', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 112, 34, 1, 'C', '{"0": 34, "1": 14, "4": 8, "-1": 44, "-2": 12}', 0, 46, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (190, '序列求和', '

输入两个正整数m和n(0<m<=n),求和:   i^2+1/i   (i 从 m 到 n),保留最后6位小数,是编写相应的程序。

', '

输入两个整数分别对应m和n。

', '

输出用double形式。计算公式:i^2+1/i,i 从 m到n的和。

', '[{"input": "1 2", "output": "6.500000"}]', 'cc10259f61a007172eae57c2579ea900', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 489, 102, 358, '2-3', '{"0": 102, "1": 16, "4": 17, "-1": 240, "-2": 114}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (219, '序列求和', '

输入两个正整数m和n(0<m<=n),求和:   i^2+1/i   (i 从 m 到 n),保留最后6位小数,是编写相应的程序。

', '

输入两个整数分别对应m和n。

', '

输出用double形式。计算公式:i^2+1/i,i 从 m到n的和。

', '[{"input": "1 2", "output": "6.500000"}]', 'cc10259f61a007172eae57c2579ea900', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 27, 358, '1-86', '{"0": 27, "4": 3, "-1": 11, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (491, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1", "output": "35"}]', 'cc705834469eb51ab602a77835efd6ee', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 0, 0, 1, '2-7', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (469, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1", "output": "35"}]', 'cc705834469eb51ab602a77835efd6ee', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 144, 35, 1, 7, '{"0": 35, "1": 8, "4": 10, "-1": 70, "-2": 21}', 0, 56, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (496, '矩阵运算', '

给定一个n×n的方阵,本题要求计算该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。副对角线为从矩阵的右上角至左下角的连线。

', '

输入第一行给出正整数n(1<n≤10);随后n行,每行给出n个整数,其间以空格分隔。

', '

在一行中给出该矩阵除副对角线、最后一列和最后一行以外的所有元素之和。

', '[{"input": "4\n2 3 4 1\n5 6 1 1\n7 1 8 1\n1 1 1 1", "output": "35"}]', 'cc705834469eb51ab602a77835efd6ee', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 32, 9, 1, 7, '{"0": 9, "-1": 14, "-2": 9}', 0, 57, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (48, '网络寻路', '

X 国的一个网络使用若干条线路连接若干个节点。节点间的通信是双向的。某重要数据包,为了安全起见,必须恰好被转发两次到达目的地。该包可能在任意一个节点产生,我们需要知道该网络中一共有多少种不同的转发路径。

源地址和目标地址可以相同,但中间节点必须不同。

如下图所示的网络。

图片 1.png

1 -> 2 -> 3 -> 1 是允许的

1 -> 2 -> 1 -> 2 或者 1 -> 2 -> 3 -> 2 都是非法的。

', '

输入数据的第一行为两个整数N M,分别表示节点个数和连接线路的条数(1<=N<=10000; 0<=M<=100000)。

接下去有M行,每行为两个整数 u 和 v,表示节点u 和 v 联通(1<=u,v<=N , u!=v)。

输入数据保证任意两点最多只有一条边连接,并且没有自己连自己的边,即不存在重边和自环。

', '

输出一个整数,表示满足要求的路径条数。

', '[{"input": "3 3
\n1 2
\n2 3
\n1 3 \n", "output": "6"}, {"input": "4 4
\n1 2
\n2 3
\n3 1
\n1 4 \n", "output": "10"}]', 'cee4e81f14f4be93c6d94b45b7c1f967', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 69, 25, 1, '1-44', '{"0": 25, "1": 9, "4": 13, "-1": 14, "-2": 8}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (514, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把一条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

第一行输入一个整数k

第二行输入一个字符串(字符串全是小写的英文字母)

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'cf5de599fee6b570b539a201e65f2682', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 513, 36, 1, 1, '{"0": 36, "1": 1, "4": 172, "-1": 280, "-2": 24}', 0, 60, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (536, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把一条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

第一行输入一个整数k

第二行输入一个字符串(字符串全是小写的英文字母)

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'cf5de599fee6b570b539a201e65f2682', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 128, 33, 1, 1, '{"0": 33, "4": 25, "-1": 67, "-2": 3}', 0, 62, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (535, '凯撒加密', '

凯撒加密,是一种古老的加密技术,是把一条信息中的每个字母用字母表中固定距离(k)之后的那个字母代替。试着编写程序,将字符串中的字符进行K值凯撒加密。例如:k=2,字符 a 经过k值凯撒加密之后变为 c ,而字符 z 经过k值凯撒加密之后变为字符b。

', '

第一行输入一个整数k

第二行输入一个字符串(字符串全是小写的英文字母)

', '

输出k值凯撒加密之后的字符串

', '[{"input": "5\nhello", "output": "mjqqt"}, {"input": "2\nzb", "output": "bd"}]', 'cf5de599fee6b570b539a201e65f2682', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '2-13', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (423, '经典的哈希表——TwoSum问题(2)', '

给一个整数数组,找到两个数使得他们的和等于一个给定的数target。你需要实现的函数twoSum需要返回这两个数的下标, 并且第一个下标小于第二个下标。注意这里下标的范围是 1 到 n,不是以 0 开头。数组是给定的,允许对数组建索引,每次的问题输入是target。

要求:需使用标准模板库STL类函数实现HashMap。

', '

控制台输入三行,第一行表示数组的大小,第二行顺序输入整数,第三行输入目标值。

', '

输出查询到的下标,注意:

(1)输出的两个下标是从1开始计数,且前一个数的下标小于后一个数;

(2)按照第一个数的下标递增依次换行输出所有的结果。

(3)最后一行保留一个换行空格;

(4)如果不存在,则返回None。

', '[{"input": "4\n2 7 11 15\n9", "output": "[1,2]\n"}, {"input": "10\n2 5 11 8 1 7 4 16 13 3\n15", "output": "[1,9]\n[3,7]\n[4,6]\n"}, {"input": "3\n1 2 3\n2", "output": "None\n"}]', 'cfec7fe54c2cf4c716e5b844a8ea82da', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 45, 26, 511, 2, '{"0": 26, "-1": 5, "-2": 14}', 0, 45, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (18, '矩形面积交', '

平面上有两个矩形,它们的边平行于直角坐标系的X轴或Y轴。对于每个矩形,我们给出它的一对相对顶点的坐标,请你编程算出两个矩形的交的面积。

', '

输入仅包含两行,每行描述一个矩形。

在每行中,给出矩形的一对相对顶点的坐标,每个点的坐标都用两个绝对值不超过10^7的实数表示。

', '

输出仅包含一个实数,为交的面积,保留到小数后两位。

', '[{"input": "1 1 3 3\n2 2 4 4\n", "output": "1.00"}]', 'd065ed1a3134918474af9591eeae2611', '[{"score": 14, "input_name": "1.in", "output_name": "1.out"}, {"score": 14, "input_name": "2.in", "output_name": "2.out"}, {"score": 14, "input_name": "3.in", "output_name": "3.out"}, {"score": 14, "input_name": "4.in", "output_name": "4.out"}, {"score": 14, "input_name": "5.in", "output_name": "5.out"}, {"score": 14, "input_name": "6.in", "output_name": "6.out"}, {"score": 14, "input_name": "7.in", "output_name": "7.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 300, 89, 1, '1-12', '{"0": 89, "4": 13, "-1": 181, "-2": 17}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (57, '幸运数', '

幸运数是波兰数学家乌拉姆命名的。它采用与生成素数类似的“筛法”生成。

首先从1开始写出自然数1,2,3,4,5,6,....

1 就是第一个幸运数。

我们从2这个数开始。把所有序号能被2整除的项删除,变为:

1 _ 3 _ 5 _ 7 _ 9 ....

把它们缩紧,重新记序,为:

1 3 5 7 9 .... 。这时,3为第2个幸运数,然后把所有能被3整除的序号位置的数删去。注意,是序号位置,不是那个数本身能否被3整除!! 删除的应该是5,11, 17, ...

此时7为第3个幸运数,然后再删去序号位置能被7整除的(19,39,...)

最后剩下的序列类似:

1, 3, 7, 9, 13, 15, 21, 25, 31, 33, 37, 43, 49, 51, 63, 67, 69, 73, 75, 79, ...

', '

输入两个正整数m n, 用空格分开 (m < n < 1000*1000)

', '

程序输出 位于m和n之间的幸运数的个数(不包含m和n)。

', '[{"input": "1 20", "output": "5"}, {"input": "30 69", "output": "8"}]', 'd0c6c67228fcb0d4e12df43fbc2d3f37', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 3, 1, 1, 3, '{"0": 1, "-2": 2}', 0, 6, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (51, '幸运数', '

幸运数是波兰数学家乌拉姆命名的。它采用与生成素数类似的“筛法”生成。

首先从1开始写出自然数1,2,3,4,5,6,....

1 就是第一个幸运数。

我们从2这个数开始。把所有序号能被2整除的项删除,变为:

1 _ 3 _ 5 _ 7 _ 9 ....

把它们缩紧,重新记序,为:

1 3 5 7 9 .... 。这时,3为第2个幸运数,然后把所有能被3整除的序号位置的数删去。注意,是序号位置,不是那个数本身能否被3整除!! 删除的应该是5,11, 17, ...

此时7为第3个幸运数,然后再删去序号位置能被7整除的(19,39,...)

最后剩下的序列类似:

1, 3, 7, 9, 13, 15, 21, 25, 31, 33, 37, 43, 49, 51, 63, 67, 69, 73, 75, 79, ...

', '

输入两个正整数m n, 用空格分开 (m < n < 1000*1000)

', '

程序输出 位于m和n之间的幸运数的个数(不包含m和n)。

', '[{"input": "1 20", "output": "5"}, {"input": "30 69", "output": "8"}]', 'd0c6c67228fcb0d4e12df43fbc2d3f37', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 28, 15, 1, '1-47', '{"0": 15, "1": 6, "4": 4, "-1": 1, "-2": 2}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (247, '使用函数求特殊a串数列和', '

给定两个均不超过9的正整数a和n,要求编写函数求a+aa+aaa++⋯+aa⋯a(n个a)之和。

函数接口定义:

int fn( int a, int n );

int SumA( int a, int n );

其中函数fn须返回的是n个a组成的数字;SumA返回要求的和。

', '

一行两个整数a和n。

', '

一行一个整数。

', '[{"input": "2 3", "output": "246"}]', 'd1e8e938ef0081d690855a94f2250e03', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 127, 97, 1, '6-2', '{"0": 97, "-1": 28, "-2": 2}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (263, '使用函数求特殊a串数列和', '

给定两个均不超过9的正整数a和n,要求编写函数求a+aa+aaa++⋯+aa⋯a(n个a)之和。

函数接口定义:

int fn( int a, int n );

int SumA( int a, int n );

其中函数fn须返回的是n个a组成的数字;SumA返回要求的和。

', '

一行两个整数a和n。

', '

一行一个整数。

', '[{"input": "2 3", "output": "246"}]', 'd1e8e938ef0081d690855a94f2250e03', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 36, 25, 1, '1-115', '{"0": 25, "1": 2, "-1": 6, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (17, '阶乘计算', '

输入一个正整数n,输出n!的值。

其中n!=123…n。

算法描述

n!可能很大,而计算机能表示的整数范围有限,需要使用高精度计算的方法。使用一个数组A来表示一个大整数a,A[0]表示a的个位,A[1]表示a的十位,依次类推。

将a乘以一个整数k变为将数组A的每一个元素都乘以k,请注意处理相应的进位。

首先将a设为1,然后乘2,乘3,当乘到n时,即得到了n!的值。

', '

输入包含一个正整数n,n<=1000。

', '

输出n!的准确值。

', '[{"input": "10", "output": "3628800"}]', 'd28c4ed42a01748a2ef86b46d297884a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 292, 110, 1, '1-11', '{"0": 110, "1": 7, "2": 6, "4": 27, "-1": 89, "-2": 53}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (67, '阶乘计算', '

输入一个正整数n,输出n!的值。  

其中n!=123…n。

算法描述

  n!可能很大,而计算机能表示的整数范围有限,需要使用高精度计算的方法。使用一个数组A来表示一个大整数a,A[0]表示a的个位,A[1]表示a的十位,依次类推。  

将a乘以一个整数k变为将数组A的每一个元素都乘以k,请注意处理相应的进位。

  首先将a设为1,然后乘2,乘3,当乘到n时,即得到了n!的值。

', '

 输入包含一个正整数n,n<=1000。

', '

输出n!的准确值。

', '[{"input": "10", "output": "3628800"}]', 'd28c4ed42a01748a2ef86b46d297884a', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', true, 'Low', '', 15, 10, 1, '1-6', '{"0": 10, "2": 1, "-1": 3, "-2": 1}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (129, '素数个数', '

给定两个数m和n,求m和n之间的素数个数(包括m,n),试编写相应程序。

', '

依次输入两个整数m,n,m<n。

', '

输出m,n和n之间的个数,输出为整数形式。

', '[{"input": "2 10\n", "output": "4"}]', 'd4eaa2f230241d1f6a8baecdfb5f70d7', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 43, 24, 1, 4, '{"0": 24, "-1": 17, "-2": 2}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (164, '王国', '

王国内种植着一棵树,树上有n个节点,每个节点都由一位剑士把守,其中1号节点为树根。每位剑士都有一个战斗力数值。现在王国要举办n次竞技,第i次竞技在i号节点进行,属于i号子树内的所有剑士相约来到i号节点,两两进行竞技,战斗力数值更高的一方获得胜利,获胜一方将对i节点的生命值增加其战斗力数值。若两名剑士战斗力数值相同,任意一方均有50%的概率获胜。初始时n个节点的生命值都为0,现在请你输出n次竞技后所有节点的生命值。

', '

一个整数n(n <= 1e5)

一行n个整数表示n个剑士的战斗力值atk (1<= atk_i <= 1e9)

n-1行,每行两个数,表示连接的一条边

', '

一行n个数,表示最终n个节点的生命值。(保证答案不会超过长整型范围)

', '[{"input": "7\n1 2 3 4 5 6 7\n1 2\n1 3\n2 4\n2 5\n3 6\n3 7\n", "output": "112 14 20 0 0 0 0\n"}, {"input": "7\n1 2 3 4 5 6 7\n1 2\n2 3\n3 4\n4 5\n5 6\n6 7\n", "output": "112 85 60 38 20 7 0\n"}]', 'd6337637197193d64c74c22badbe7143', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 10, 0, 1, 'G', '{"1": 4, "4": 1, "-1": 3, "-2": 2}', 0, 16, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (143, '字符串逆序', '

输入一个字符串,对该字符串进行逆序,输出逆序后的字符串。

', '

输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。

', '

在一行中输出逆序后的字符串。

', '[{"input": "Hello World!\n", "output": "!dlroW olleH\n"}]', 'd63dbc859b938bd9f4d8430f801abb07', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 73, 30, 1, 2, '{"0": 30, "4": 5, "-1": 36, "-2": 2}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (151, '字符串逆序', '

输入一个字符串,对该字符串进行逆序,输出逆序后的字符串。

', '

输入在一行中给出一个不超过80个字符长度的、以回车结束的非空字符串。

', '

在一行中输出逆序后的字符串。

', '[{"input": "Hello World!\n", "output": "!dlroW olleH\n"}]', 'd63dbc859b938bd9f4d8430f801abb07', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 52, 36, 1, '1-66', '{"0": 36, "4": 3, "-1": 5, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (455, '将数组分成和相等的三个部分(15分)', '

给你一个数组A,只有可以将其划分为三个和相等的非空部分时才返回true,否则返回false。

', '

第一行给出数组A的长度n

第二行给出n个整数,用空格分隔

', '

如果可以将目标数组划分为三个和相等的非空部分时才返回true,否则返回false。

', '[{"input": "11\n0 2 1 -6 6 -7 9 1 2 0 1", "output": "true"}, {"input": "11\n0 2 1 -6 6 7 9 -1 2 0 1", "output": "false"}]', 'd69851070d6e00aaa752493bb6affdb2', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

如果可以找出索引 i+1 < j 且满足 A[0] + A[1] + ... + A[i] == A[i+1] + A[i+2] + ... + A[j-1] == A[j] + A[j-1] + ... + A[A.length - 1] 就可以将数组三等分

3 <= n < 10000

数组元素大小介于(10^-4, 10^4)之间

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 27, 3, 1, 6, '{"0": 3, "1": 16, "-1": 8}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (60, 'sd', '

s

', '

s

', '

s

', '[{"input": "s", "output": "s"}]', 'd7bfcf4d3aac363dd53d2ac8e50a7d5a', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, 'a', '{}', 0, 7, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (227, '三角形判断', '

输入平面上任意三个点的坐标(x1,y1)、(x2,y2)、(x3,y3),检验它们能否构成三角形。如果这3个点能构成一个三角形。如果这3个点能够构成一个三角形,输出周长和面积(2位小数);否则输出“Impossible”。试编写相应程序。


提示:在一个三角形中,任意两边之和大于第三边。三角形面积计算公式如下:

Area = sqrt(s(s-a)(s-b)(s-c)),其中s = (a+b+c)/2


', '

输入三个坐标值,按照顺序x1,y1,x2,y2,x3,y3。输入值为int类型。

', '

不能构成输出Impossible,否则输出周长和面积值(都保留两位小数,double类型)

', '[{"input": "0 0 0 4 3 0", "output": "12.00 6.00"}, {"input": "1 2 4 5 7 8", "output": "Impossible"}]', 'd9c0e22006a80132aa9d627db888ed40', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 54, 37, 358, '1-95', '{"0": 37, "-1": 14, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (205, '三角形判断', '

输入平面上任意三个点的坐标(x1,y1)、(x2,y2)、(x3,y3),检验它们能否构成三角形。如果这3个点能构成一个三角形。如果这3个点能够构成一个三角形,输出周长和面积(2位小数);否则输出“Impossible”。试编写相应程序。


提示:在一个三角形中,任意两边之和大于第三边。三角形面积计算公式如下:

Area = sqrt(s(s-a)(s-b)(s-c)),其中s = (a+b+c)/2


', '

输入三个坐标值,按照顺序x1,y1,x2,y2,x3,y3。输入值为int类型。

', '

不能构成输出Impossible,否则输出周长和面积值(都保留两位小数,double类型)

', '[{"input": "0 0 0 4 3 0", "output": "12.00 6.00"}, {"input": "1 2 4 5 7 8", "output": "Impossible"}]', 'd9c0e22006a80132aa9d627db888ed40', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 290, 99, 358, '3-5', '{"0": 99, "4": 6, "-1": 148, "-2": 37}', 0, 21, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (265, '使用函数输出指定范围内的Fibonacci数', '

本题要求实现一个计算Fibonacci数的简单函数,并利用其实现另一个函数,输出两正整数m和n(0<m≤n≤10000)之间的所有Fibonacci数。所谓Fibonacci数列就是满足任一项数字是前两项的和(最开始两项均定义为1)的数列。

函数接口定义:

int fib( int n );

void PrintFN( int m, int n );

其中函数fib须返回第n项Fibonacci数;函数PrintFN要在一行中输出给定范围[m, n]内的所有Fibonacci数,相邻数字间有一个空格,行末不得有多余空格。如果给定区间内没有Fibonacci数,则输出一行“No Fibonacci number”。

', '

一行三个整数m,n,t。

', '

第一行输出fib(t)的值。

接下来一行输出闭区间[m,n]之间所有Fibonacci数。

', '[{"input": "20 100 7", "output": "13\n21 34 55 89\n"}]', 'dadb8e18f6b27a10dfbdce294faff0e2', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 84, 30, 1, '1-117', '{"0": 30, "1": 2, "4": 6, "-1": 44, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (249, '使用函数输出指定范围内的Fibonacci数', '

本题要求实现一个计算Fibonacci数的简单函数,并利用其实现另一个函数,输出两正整数m和n(0<m≤n≤10000)之间的所有Fibonacci数。所谓Fibonacci数列就是满足任一项数字是前两项的和(最开始两项均定义为1)的数列。

函数接口定义:

int fib( int n );

void PrintFN( int m, int n );

其中函数fib须返回第n项Fibonacci数;函数PrintFN要在一行中输出给定范围[m, n]内的所有Fibonacci数,相邻数字间有一个空格,行末不得有多余空格。如果给定区间内没有Fibonacci数,则输出一行“No Fibonacci number”。

', '

一行三个整数m,n,t。

', '

第一行输出fib(t)的值。

接下来一行输出闭区间[m,n]之间所有Fibonacci数。

', '[{"input": "20 100 7", "output": "13\n21 34 55 89\n"}]', 'dadb8e18f6b27a10dfbdce294faff0e2', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 361, 98, 1, '6-4', '{"0": 98, "1": 43, "4": 25, "-1": 160, "-2": 35}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (108, '进制转换', '

从键盘输入一个十进制字符串,将它转换为正的十六进制数后输出。

', '

输入需要转换的十进制数

', '

输出转换后的十六进制数

', '[{"input": "3839\n", "output": "EFF\n\n"}]', 'dbef94849a7ee8278950e4f03be9d79f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 13, 7, 1, '1-3', '{"0": 7, "-1": 6}', 0, 12, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (49, '危险系数', '

抗日战争时期,冀中平原的地道战曾发挥重要作用。

地道的多个站点间有通道连接,形成了庞大的网络。但也有隐患,当敌人发现了某个站点后,其它站点间可能因此会失去联系。

我们来定义一个危险系数DF(x,y):

对于两个站点x和y (x != y), 如果能找到一个站点z,当z被敌人破坏后,x和y不连通,那么我们称z为关于x,y的关键点。相应的,对于任意一对站点x和y,危险系数DF(x,y)就表示为这两点之间的关键点个数。

本题的任务是:已知网络结构,求两站点之间的危险系数。

', '

输入数据第一行包含2个整数n(2 <= n <= 1000), m(0 <= m <= 2000),分别代表站点数,通道数;

接下来m行,每行两个整数 u,v (1 <= u, v <= n; u != v)代表一条通道;

最后1行,两个数u,v,代表询问两点之间的危险系数DF(u, v)。

', '

一个整数,如果询问的两点不连通则输出-1.

', '[{"input": "7 6\n
1 3
\n2 3
\n3 4\n
3 5\n
4 5
\n5 6
\n1 6 \n", "output": "2"}]', 'dc71e1d5664dddfc369a1689f04a40d4', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 32, 14, 1, '1-45', '{"0": 14, "1": 1, "-1": 16, "-2": 1}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (408, 'LifeGame', '

输入一个初始配置(矩阵大小限制为6*6, 0代表死, 1代表活),输出下一代

', '

输入活着的节点的坐标(横纵坐标都为-1时代表结束)

', '

输出下一代

', '[{"input": "3 3\n3 4\n-1 -1", "output": "0 0 0 0 0 0\n0 0 0 0 0 0\n0 0 0 0 0 0\n0 0 0 0 0 0\n0 0 0 0 0 0\n0 0 0 0 0 0"}]', 'dca34d7ce43345968967296e26f7d9ca', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 172, 32, 1, 1, '{"0": 32, "4": 6, "-1": 92, "-2": 42}', 0, 36, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (458, '分析矩阵 (10分)', '
给定一个矩阵A,求矩阵 A 每一列的平均值和每一行的最大值,并依次输出。
', '

第一行为两个整数m和n ( 0 < m < 1000 , 0 < n < 1000), 其分别表示矩阵的行数和列数。

后m行,为矩阵对应的数据。

', '

输出两行,第一行为矩阵列的平均值(直接取整)。第二行为矩阵每行的最大值。注意结果可能会超出int类型。

', '[{"input": "2 3\n1 2 3\n3 4 5", "output": "2 3 4\n3 5"}]', 'dcadb3ff696cee5b5504618ef378608b', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

每个数值之间用空格隔开,但每一行末尾不能有空格。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 13, 1, 1, 1, '{"0": 1, "-1": 12}', 0, 55, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (420, 'QuickSort', '

对下列数字进行快速排序。

', '

输入为两行;

第一行为n,表示需要排序的元素的个数;

第二行为需要排序的元素,中间用空格隔开。

', '

输出排好序的数字序列;

两个元素之间用空格隔开;

行末不得有空格。

', '[{"input": "9\n85 96 78 35 125 63 25 13 101", "output": "13 25 35 63 78 85 96 101 125"}]', 'dcf45660b3fec492f319002c8b84b2a3', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 35, 26, 511, 2, '{"0": 26, "2": 1, "-1": 2, "-2": 6}', 0, 42, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (193, '求给定序列前n项的和(1!+2!+3!+……+n!)', '

输入一个正整数n,求e=1!+2!+3!+……+n!,要求定义调用函数fact(n) 计算n!,函数类型是double。是编写想用的程序。

', '

输入一个整数n。

', '

输出最后阶乘求和的值,用double形式,不保留小数点。

', '[{"input": "12", "output": "522956313"}]', 'ded0d7c9e29b3bd8e18e71a380c9b991', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 273, 101, 358, '2-6', '{"0": 101, "1": 4, "4": 7, "-1": 82, "-2": 79}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (222, '求给定序列前n项的和(1!+2!+3!+……+n!)', '

输入一个正整数n,求e=1!+2!+3!+……+n!,要求定义调用函数fact(n) 计算n!,函数类型是double。是编写想用的程序。

', '

输入一个整数n。

', '

输出最后阶乘求和的值,用double形式,不保留小数点。

', '[{"input": "12", "output": "522956313"}]', 'ded0d7c9e29b3bd8e18e71a380c9b991', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 41, 29, 358, '1-90', '{"0": 29, "-1": 10, "-2": 2}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (94, '求指定区间的奇数个数', '

求指定区间的奇数个数

', '

求指定区间的奇数个数

', '

求指定区间的奇数个数

', '[{"input": "求指定区间的奇数个数", "output": "求指定区间的奇数个数"}]', 'df0241f5229485fcb379e5b614398b36', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 6, '{}', 0, 1, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (312, '复读机(15分)', '

复读机就是可以把声音存储下来并且重复播放的一种机器。现在有一个复读机,它可以把你的输入保留信息输出。但是,这个复读机有一个毛病,它在某些时刻会重复当前的语句不止一遍,而在正常时刻只会复读一遍,现在请你输出复读后的语句。

', '

第一行一个整数n和m,分别表示有n个时刻复读机将重复不止一遍,m表示有m个语句。(1 <= n<= m <= 100)

接下来n行每行两个整数t和c,表示在t时刻的语句重复c遍。(1 <= t<= m, 2 <= c <= 10)

接下来一行m个整数,第i个整数pi,表示第i个时刻输入的句子。(1 <= pi <=10)

', '

若干个整数,每个整数后一个空格。

', '[{"input": "2 3\n1 2\n2 3\n1 2 3\n", "output": "1 1 2 2 2 3"}]', 'df0cd308f1e69b6d7a8e9a2fb6bea65b', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 77, 21, 1, 2, '{"0": 21, "4": 2, "-1": 53, "-2": 1}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (419, '降序排序', '

给你n个数,里面的数字都是乱序的,请将它们都按照从大到小排序。

', '

第一行为一个整数n(1<=n<=1000)

第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

输出一行,按从大到小的顺序输出排序后的数列。

', '[{"input": "5\n8 3 5 4 2\n", "output": "8 5 4 3 2\n"}]', 'df4ff751c075c31fb5d8894419265a22', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 512, false, null, null, null, 'ACM', false, 'Low', '', 6, 2, 1, 'D', '{"0": 2, "-2": 4}', 0, 43, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (548, '打分', '

高中作文打分(满分为60分),为了避免作文打分的主观因素的影响,一般会请n个老师进行打分,从中去掉最高分和最低分,对保留的求和并平均。

现在给定n个老师打分的情况,你需要求出最高分和最低分,并分别存到指针变量p和q中(int类型指针);对剩下的分数求和平均保存到指针变量r(double类型指针)中。

最后以间接访问的形式输出最高分,最低分和平均分

', '

一行一个整数n。(3 <= n <= 10)

一行n个整数表示n位老师打分情况数组score,用空格分隔。(0 <= score[i] <= 60)

', '

按题目描述中的代码进行输出,用空格分隔。

', '[{"input": "3\n60 60 60", "output": "60 60 60.00"}]', 'e1b95d54d691cd3f2dac6549511e7e0e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 0, 0, 1, 2, '{}', 0, 63, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (181, '十一进制', '

传说火星人说火星语,这个自然我们听不懂。不过听说火星人计数采用十一进制(0,1,2,3,4,5,6,7,8,9,A),请你输出十进制数转化为十一进制后的数。

', '

若干十进制数n,一行一个,读到文件尾。(0<=n<=100000)

', '

对于每行输入,输出一行。

', '[{"input": "32\n55\n1\n", "output": "2A\n50\n1\n"}]', 'e1f65374762e3ece7e5127947a02cef1', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 76, 13, 1, '1-80', '{"0": 13, "1": 1, "4": 15, "-1": 39, "-2": 8}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (173, '十一进制', '

传说火星人说火星语,这个自然我们听不懂。不过听说火星人计数采用十一进制(0,1,2,3,4,5,6,7,8,9,A),请你输出十进制数转化为十一进制后的数。

', '

若干十进制数n,一行一个,读到文件尾。(0<=n<=100000)

', '

对于每行输入,输出一行。

', '[{"input": "32\n55\n1\n", "output": "2A\n50\n1\n"}]', 'e1f65374762e3ece7e5127947a02cef1', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 41, 0, 1, 8, '{"1": 3, "2": 1, "4": 11, "-1": 17, "-2": 9}', 0, 17, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (6, '带分数', '

100 可以表示为带分数的形式:100 = 3 + 69258 / 714。还可以表示为:100 = 82 + 3546 / 197。注意特征:带分数中,数字1~9分别出现且只出现一次(不包含0)。类似这样的带分数,100 有 11 种表示法。

', '

从标准输入读入一个正整数N (N<1000*1000)

', '

程序输出该数字用数码1~9不重复不遗漏地组成带分数表示的全部种数。注意:不要求输出每个表示,只统计有多少表示法!

', '[{"input": "100", "output": "11"}, {"input": "105", "output": "6"}]', 'e212965a8401de2b842dd5829a839505', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 2, 1, 1, 1, '{"0": 1, "-2": 1}', 0, 5, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (154, '人名统计', '

给定若干行只由英文字母组成的人名,可能会有重复,试输出出现次数最多人名出现的次数和出现次数最少人名出现的次数。

', '

若干行英文字母组成的字符串,数据保证不超过1000行,每行字符串长度不超过10。

最后一行以一个’#’(不包括引号)结束。

', '

一行两个整数分别表示最多次数和最少次数。

', '[{"input": "Bob\nAlice\nPetr\nBob\n#\n", "output": "2 1\n"}]', 'e218c70ac31cbe2b00fce4550398e4d5', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 95, 23, 1, '1-69', '{"0": 23, "1": 1, "4": 15, "-1": 38, "-2": 9}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (146, '人名统计', '

给定若干行只由英文字母组成的人名,可能会有重复,试输出出现次数最多人名出现的次数和出现次数最少人名出现的次数。

', '

若干行英文字母组成的字符串,数据保证不超过1000行,每行字符串长度不超过10。

最后一行以一个’#’(不包括引号)结束。

', '

一行两个整数分别表示最多次数和最少次数。

', '[{"input": "Bob\nAlice\nPetr\nBob\n#\n", "output": "2 1\n"}]', 'e218c70ac31cbe2b00fce4550398e4d5', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 10, 1, 5, '{"0": 10, "1": 1, "4": 11, "-1": 17, "-2": 7}', 0, 15, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (246, '分类统计字符个数', '

本题要求实现一个函数,统计给定字符串中英文字母、空格或回车、数字字符和其他字符的个数。

函数接口定义:

void StringCount( char s[] );

其中char s[]是用户传入的字符串。函数StringCount须在一行内按照

英文字母个数,空格或回车个数,数字字符个数,其他字符个数

的格式输出。

', '

若干行字符串。

', '

一行四个整数表示答案,以空格隔开。

', '[{"input": "aZ &\n09 Az\n", "output": "4 3 2 1"}]', 'e2b7bda41a77358f4cf4adf7d7f7dd7f', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 544, 90, 1, '6-1', '{"0": 90, "1": 20, "4": 71, "-1": 247, "-2": 116}', 0, 24, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (439, 'BinaryTree', '

1、给出层序遍历序列abc##de(#代表空指针), 构建二叉树。

2、实现一个函数,检查二叉树是否平衡。平衡树的定义:任意一个节点,其两棵子树的高度差不超过1。

3、找出二叉树中某两个节点的最近公共祖先。最近公共祖先的定义:对于有跟树T的两个节点p,q,最近公共祖先表示为一个结点x,满足x是p、q的祖先且x的深度尽可能大(一个节点也可以是它自己的祖先)。

说明:所有节点的值都是唯一的,p,q为不同节点且均存在于给定的二叉树中。

', '

1、层序遍历序列

2、二叉树中两个节点p和q的值

', '

1、输出二叉树是否是平衡二叉树

2、输出两个节点p和q的最近公共祖先的值

', '[{"input": "abc##de\nd e", "output": "true\nc"}]', 'e34b48be515082eb371627745b579030', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 53, 24, 511, 1, '{"0": 24, "4": 7, "-1": 10, "-2": 12}', 0, 50, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (105, '二叉树的建立与遍历2', '

已知先序遍历序列和中序遍历序列,求二叉树的后序遍历和层序遍历序列

', '

输入数据有多组,第一行是一个整数t (t<1000),代表有t组测试数据。每组包括两个字符串,第一个字符串表示二叉树的先序遍历序列,第二个字符串表示二叉树的中序遍历序列。

', '

每组第一行输出二叉树的后序遍历序列,第二行输出二叉树的层次遍历序列。

', '[{"input": "1\nabdegcf\ndbgeafc", "output": "dgebfca\nabcdefg"}]', 'e500a2f9e418466574c66fa89b2f7853', '[{"score": 100, "input_name": "1.in", "output_name": "1.out"}]', '', '["C", "C++", "Python2", "Python3", "Java"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 4, 0, 1, 'D', '{"-1": 4}', 0, 11, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (54, '最大子阵', '

给定一个n*m的矩阵A,求A中的一个非空子矩阵,使这个子矩阵中的元素和最大。

其中,A的子矩阵指在A中行和列均连续的一块。

', '

输入的第一行包含两个整数n, m,分别表示矩阵A的行数和列数。

接下来n行,每行m个整数,表示矩阵A。

', '

输出一行,包含一个整数,表示A中最大的子矩阵中的元素和。

', '[{"input": "3 3
\n-1 -4 3
\n3 4 -1
\n-5 -2 8\n", "output": "10"}]', 'e511c43dd9fc00a87419c9f405f080bb', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例说明:
取最后一列,和为10。

数据规模和约定:

对于50%的数据,1<=n, m<=50;
对于100%的数据,1<=n, m<=500,A中每个元素的绝对值不超过5000。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 58, 14, 1, '1-50', '{"0": 14, "1": 8, "2": 1, "4": 4, "-1": 17, "-2": 14}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (122, '小华的游戏', '

小华在玩一个迷宫游戏。他想快一点找到一条从起点到终点的路径,但是又懒得自己去做,于是就委托你帮他找一条最短的路线。

', '

第一行两个整数n, m,为迷宫的长宽。接下来n行,每行m个数,数之间没有间隔,为0或1中的一个。0表示这个格子可以通过,1表示不可以。假设迷宫的起点固定为(1,1),迷宫的出口固定为(n,m)。每次移动时只能向上下左右4个方向移动到另外一个可以通过的格子里,每次移动算一步。

$(1 \leq n,m \leq 500)$

', '

第一行,为需要的最少步数K第二行K个字符,每个字符∈{U,D,L,R},分别表示上下左右。如果有多条长度相同的最短路径,选择在此表示方法下字典序最小的一个。

', '[{"input": "3 3\n0 1 1\n0 0 0\n1 1 0\n", "output": "4\nDRRD\n"}]', 'e55eba2d20a8bea5f19a5b4ddf759cfc', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 46, 7, 1, 'H', '{"0": 7, "1": 3, "-1": 31, "-2": 5}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (282, '求一批整数出现最多的数字。', '

输入一个正整数n1<n<=1000),再输入n个整数,分析每个整数的每一位数字,求出现次数最多的数字。例如输入n个整数,分析每个整数的每一位数字,求出现次数最多的数字。例如输入3个整数123423453456,其中出现次数最多的数字是34,均出现了3次。试编写相应程序。

', '

输入一个正整数n1<n<=1000),再输入n个整数。

', '

输出出现次数最多的数字,如果是多个数字同时出现,按从小到大输出,之间用空格隔开,最后无空格。

', '[{"input": "3\n1234 2345 3456\n", "output": "3 4"}]', 'e61505fff8a558347b50adf2d060950c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 206, 99, 358, '7-2', '{"0": 99, "1": 3, "4": 14, "-1": 78, "-2": 12}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (289, '求一批整数出现最多的数字。', '

输入一个正整数n1<n<=1000),再输入n个整数,分析每个整数的每一位数字,求出现次数最多的数字。例如输入n个整数,分析每个整数的每一位数字,求出现次数最多的数字。例如输入3个整数123423453456,其中出现次数最多的数字是34,均出现了3次。试编写相应程序。

', '

输入一个正整数n1<n<=1000),再输入n个整数。

', '

输出出现次数最多的数字,如果是多个数字同时出现,按从小到大输出,之间用空格隔开,最后无空格。

', '[{"input": "3\n1234 2345 3456\n", "output": "3 4"}]', 'e61505fff8a558347b50adf2d060950c', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 34, 23, 358, '1-128', '{"0": 23, "4": 4, "-1": 6, "-2": 1}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (87, '进制转换', '

从键盘输入一个不超过8位的正的十六进制数字符串,将它转换为正的十进制数后输出。

注:十六进制数中的10~15分别用大写的英文字母A、B、C、D、E、F表示。

', '

输入需要转换的十进制数

', '

输出转换后的十六进制数

', '[{"input": "EFF\n", "output": "3839\n"}]', 'e67e7cad56af851225c9a6058b93a063', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 136, 15, 1, 5, '{"0": 15, "1": 2, "4": 3, "-1": 98, "-2": 18}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (446, '保险箱', '

王总忘记了自己保险箱的密码,想找你帮忙破解。根据王老板的提示,密码是从0-9中选取的前n个数字从小到大进行排列组合,得到的第m个数字组合就是密码。例如:n=3, 则进行排列组合的前三个数字就是0,1,2,王总记录提示的m是5。则根据 这三个数字的所有排列组合:012,021,102,120,201,210,王总的保险箱的密码为201。

', '

输入组合数字个数n (1<=n<=10);和记录的密码在从大到小排列中的位置是m(1<=m<=n!)。

', '

输出你所查找的密码。

', '[{"input": "3 2", "output": "021"}]', 'e725d06f59c32112bb1876b5c0f15af3', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 130, 31, 1, 'C', '{"0": 31, "1": 29, "3": 1, "4": 19, "-1": 33, "-2": 17}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (477, '统计大写辅音字母', '

输入一行字符串(少于80个字符),包含空格和特殊符号等。 统计并输出其中大写辅音字母的个数。大写辅音字母是指除'A' , 'E' , 'I' , ' O ' ,  ' U '以外的大写字母。试编写相应程序。

', '

输入一行字符串(少于80个字符),包含空格和特殊符号等。

', '

输出该字符串中包含大写辅音字母的数量。

', '[{"input": "DASE school", "output": "2"}]', 'e75dc602889a26009d023460e88aacab', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 358, '1-184', '{}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (474, '统计大写辅音字母', '

输入一行字符串(少于100个字符),包含空格和特殊符号等。 统计并输出其中大写辅音字母的个数。大写辅音字母是指除'A' , 'E' , 'I' , ' O ' ,  ' U '以外的大写字母。试编写相应程序。

', '

输入一行字符串(少于100个字符),包含空格和特殊符号等。

', '

输出该字符串中包含大写辅音字母的数量。

', '[{"input": "DASE school", "output": "2"}]', 'e75dc602889a26009d023460e88aacab', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 290, 64, 358, '7-6', '{"0": 64, "1": 1, "4": 160, "-1": 43, "-2": 22}', 0, 26, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (350, '递归求阶乘和', '

本题要求实现一个计算非负整数阶乘的简单函数,并利用该函数求1!+2!+3!+...+n!的值。

函数接口定义:

double fact( int n );

double factsum( int n );

函数fact应返回n的阶乘,建议用递归实现。函数factsum应返回1!+2!+...+n!的值。题目保证输入输出在双精度范围内。

', '
一行一个非负整数n。(n >= 0
', '

第一行输出fact(n)的值。

第二行输出factsum(n)的值。(两个数均保留0位小数)

', '[{"input": "10", "output": "3628800\n4037913"}]', 'e8f40b37194828aae16fdacd85b26e14', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 61, 31, 1, '1-155', '{"0": 31, "2": 1, "4": 9, "-1": 16, "-2": 4}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (328, '递归求阶乘和', '

本题要求实现一个计算非负整数阶乘的简单函数,并利用该函数求1!+2!+3!+...+n!的值。

函数接口定义:

double fact( int n );

double factsum( int n );

函数fact应返回n的阶乘,建议用递归实现。函数factsum应返回1!+2!+...+n!的值。题目保证输入输出在双精度范围内。

', '
一行一个非负整数n。(n >= 0
', '

第一行输出fact(n)的值。

第二行输出factsum(n)的值。(两个数均保留0位小数)

', '[{"input": "10", "output": "3628800\n4037913"}]', 'e8f40b37194828aae16fdacd85b26e14', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 237, 94, 1, 2, '{"0": 94, "1": 5, "2": 4, "4": 55, "-1": 70, "-2": 9}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (315, '使用函数求双阶乘(15分)', '

双阶乘是一个数学概念,用n!!表示。正整数的双阶乘表示不超过这个正整数且与它有相同奇偶性的所有正整数乘积。

本题要求实现双阶乘函数fac(x)。

函数接口定义:

long long fac( int x );

其中x是用户传入的整型参数,返回双阶乘。

', '

一行一个正整数n。(1<=n<=20,保证答案不超过long long范围)

', '

一行一个整数表示答案。(格式控制说明为‘%lld’)

', '[{"input": "4", "output": "8"}]', 'e90ce4cabae10862283fdd3a9f823477', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 71, 29, 1, 5, '{"0": 29, "4": 3, "-1": 38, "-2": 1}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (422, '经典的哈希表——TwoSum问题(1)', '

给一个整数数组,找到两个数使得他们的和等于一个给定的数target。你需要实现的函数twoSum需要返回这两个数的下标, 并且第一个下标小于第二个下标。注意这里下标的范围是 1 到 n,不是以 0 开头。数组是给定的,允许对数组建索引,每次的问题输入是target。

要求:需使用C++类与对象的方法实现哈希表的定义,哈希函数及冲突处理方法可自定义。

', '

控制台输入三行,第一行表示数组的大小,第二行顺序输入整数,第三行输入目标值。

', '

输出查询到的下标,注意:

(1)输出的两个下标是从1开始计数,且前一个数的下标小于后一个数;

(2)按照第一个数的下标递增依次换行输出所有的结果。

(3)最后一行保留一个换行空格;

(4)如果不存在,则返回None。

', '[{"input": "4\n2 7 11 15\n9", "output": "[1,2]\n"}, {"input": "10\n2 5 11 8 1 7 4 16 13 3\n15", "output": "[1,9]\n[3,7]\n[4,6]\n"}, {"input": "3\n1 2 3\n2", "output": "None\n"}]', 'ec6bf727a0c9f2f91be551f9e6c4f731', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 105, 28, 511, 1, '{"0": 28, "4": 1, "-1": 59, "-2": 17}', 0, 45, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (24, '波动数列', '

观察这个数列:

1 3 0 2 -1 1 -2 ...

这个数列中后一项总是比前一项增加2或者减少3。

栋栋对这种数列很好奇,他想知道长度为 n 和为 s 而且后一项总是比前一项增加a或者减少b的整数数列可能有多少种呢?

', '

输入的第一行包含四个整数 n s a b,含义如前面说述。

', '

输出一行,包含一个整数,表示满足条件的方案数。由于这个数很大,请输出方案数除以100000007的余数。

', '[{"input": "4 10 2 3", "output": "2"}]', 'ed84dd6e6fba466f19f96e72d46c7a3e', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

样例说明

这两个数列分别是2 4 1 3和7 4 1 -2。

数据规模和约定

对于10%的数据,1<=n<=5,0<=s<=5,1<=a,b<=5;

对于30%的数据,1<=n<=30,0<=s<=30,1<=a,b<=30;

对于50%的数据,1<=n<=50,0<=s<=50,1<=a,b<=50;

对于70%的数据,1<=n<=100,0<=s<=500,1<=a, b<=50;

对于100%的数据,1<=n<=1000,-1,000,000,000<=s<=1,000,000,000,1<=a, b<=1,000,000。

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 119, 42, 1, '1-19', '{"0": 42, "1": 23, "4": 5, "-1": 35, "-2": 14}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (39, '斐波那契', '

斐波那契数列大家都非常熟悉。它的定义是:

f(x) = 1 .... (x=1,2)
f(x) = f(x-1) + f(x-2) .... (x>2)

对于给定的整数 n 和 m,我们希望求出:
f(1) + f(2) + ... + f(n) 的值。但这个值可能非常大,所以我们把它对 f(m) 取模。
公式如下
1-28.png
但这个数字依然很大,所以需要再对p 求模。

', '

输入为一行用空格分开的整数 n m p (0 < n, m, p< 10^18)

', '

输出为1个整数,表示答案

', '[{"input": "2 3 5", "output": "0"}, {"input": "15 11 29", "output": "25"}]', 'edcd030702619c5eb874cf4fb2061274', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 24, 2, 1, '1-28', '{"0": 2, "1": 11, "4": 1, "-1": 7, "-2": 3}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (221, '平方根求和', '

输入一个正整数n,计算1+\sqrt(2)+\sqrt(3)+……+\sqrt(n)的值(保留2位小数)。可能包含头文件marth.h,并调用sqrt()函数求平方根。是编写相应程序。

', '

输入一个整数n。

', '

输出一个保留两位小数的求和值。

', '[{"input": "4561", "output": "205385.52"}]', 'eec5d1fba2519370fab0e08cbf1d906f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 32, 23, 358, '1-89', '{"0": 23, "-1": 6, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (192, '平方根求和', '

输入一个正整数n,计算1+\sqrt(2)+\sqrt(3)+……+\sqrt(n)的值(保留2位小数)。可能包含头文件marth.h,并调用sqrt()函数求平方根。是编写相应程序。

', '

输入一个整数n。

', '

输出一个保留两位小数的求和值。

', '[{"input": "4561", "output": "205385.52"}]', 'eec5d1fba2519370fab0e08cbf1d906f', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 218, 103, 358, '2-5', '{"0": 103, "4": 10, "-1": 61, "-2": 44}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (107, '第一个不重复字符', '

给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

注意事项:您可以假定该字符串只包含小写字母。

', '

输入一行字符

', '

输出一个数字,为第一个不重复数字的索引(从0 开始);没有则输出-1

', '[{"input": "loveleetcode\n", "output": "2\n"}]', 'ef149af1c37c5099c74c339a718db6e3', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 11, 7, 1, '1-2', '{"0": 7, "4": 3, "-1": 1}', 0, 12, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (505, '矩阵连乘(10分)', '

矩阵的幂A^k = A * A * ... * A,其中两个矩阵A、B​的乘积会产生一个新矩阵C,且$C_{ij} = \sum_{k=1}^{m}A_{ik}*B_{kj}$​,其中矩阵A是一个n * m的数组,矩阵B的大小是一个m * t的数组。

现在给定一个方阵A和一个整数k,求A^k。

', '

第一行两个整数n、k。$ (1<=n、k<=5) $

接下来n行,每行n个整数,表示输入的矩阵A。​$(-3 <= A_{ij} <= 3)$

', '

输出n行,每行n个整数,以空格分隔,表示A^k。(注意:每一行行末无空格)

', '[{"input": "2 2\n1 1\n1 1", "output": "2 2\n2 2"}]', 'efde8c3f888a73c9649ec39ba2d958be', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 167, 14, 1, 8, '{"0": 14, "1": 2, "4": 9, "-1": 106, "-2": 36}', 0, 58, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (457, '大数乘小数(15分)', '

大数通常指超过int或long表示范围的整数数值,通常以字符串数组的形式保存,此题给出1个大数和1个小数,要求计算两数之积并输出。

', '

输入共两行,第一行为1个大数 a,第2行为一个小数 b

', '

输出两数之积

', '[{"input": "124525798723480985986\n6", "output": "747154792340885915916"}, {"input": "637893778455431\n15", "output": "9568406676831465"}]', 'f00e19c973c590c495d1781e1a02e8d3', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '

10^10 < a < 10^30

1 < b < 100

', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'High', '', 5, 2, 1, 8, '{"0": 2, "-1": 3}', 0, 54, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (130, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9\n", "output": "2 3 1 \n5 6 4 \n8 9 7 \n"}]', 'f0dce15a91875e718472d17ac6094f77', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 64, 14, 1, 5, '{"0": 14, "1": 9, "4": 14, "-1": 27}', 0, 14, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (273, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9\n", "output": "2 3 1 \n5 6 4 \n8 9 7 \n"}]', 'f0dce15a91875e718472d17ac6094f77', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 2000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 83, 10, 1, 5, '{"0": 10, "1": 3, "4": 11, "-1": 58, "-2": 1}', 0, 27, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (138, '方阵循环右移', '

本题要求编写程序,将给定n×n方阵中的每个元素循环向右移m个位置,即将第0、1、⋯、n−1列变换为第n−m、n−m+1、⋯、n−1、0、1、⋯、n−m−1列。

', '

输入第一行给出两个正整数m和n(1≤n≤6)。接下来一共n行,每行n个整数,表示一个n阶的方阵。

', '

按照输入格式输出移动后的方阵:即输出n行,每行n个整数,每个整数后输出一个空格。

', '[{"input": "2 3\n1 2 3\n4 5 6\n7 8 9\n", "output": "2 3 1 \n5 6 4 \n8 9 7 \n"}]', 'f0dce15a91875e718472d17ac6094f77', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 89, 33, 1, '1-61', '{"0": 33, "1": 9, "4": 3, "-1": 39, "-2": 5}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (141, '分隔字符', '

小明同学刚刚学会了字符串,现在他想考你一道有关字符串的题目。给定一个只包含小写字母'a'-'z'的字符串S,你需要将S中的字符重新排序,使得任意两个相同的字符不连在一起。

如果有多个重排后的字符串满足条件,输出字典序最小的一个。

字典序小于定义:对于字符串a和b,找到第一个i使得a[i]<b[i],且同时满足a[j]=b[j](j<i),则a的字典序更小。

如果不存在满足条件的字符串,输出‘INVALID’(不包括引号)。

', '

第一行一个整数n。(1 ≤ n ≤ 100000)

第二行长度为n的字符串S。

', '

输出字典序最小的答案或者INVALID。

', '[{"input": "5\naaabc\n", "output": "abaca\n"}]', 'f1bf005a3ca6ec3bcf1a81480a2f903c', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 96, 8, 1, '1-64', '{"0": 8, "1": 7, "4": 1, "-1": 65, "-2": 15}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (258, '字符分离', '

小明同学刚刚学会了字符串,现在他想考你一道有关字符串的题目。给定一个只包含小写字母'a'-'z'的字符串S,你需要将S中的字符重新排序,使得任意两个相同的字符不连在一起。

如果有多个重排后的字符串满足条件,输出字典序最小的一个。

字典序小于定义:对于字符串a和b,找到第一个i使得a[i]<b[i],且同时满足a[j]=b[j](j<i),则a的字典序更小。

如果不存在满足条件的字符串,输出‘INVALID’(不包括引号)。

', '

第一行一个整数n。(1 ≤ n ≤ 100000)

第二行长度为n的字符串S。

', '

输出字典序最小的答案或者INVALID。

', '[{"input": "5\naaabc\n", "output": "abaca\n"}]', 'f1bf005a3ca6ec3bcf1a81480a2f903c', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 37, 0, 1, 'E', '{"1": 2, "-1": 28, "-2": 7}', 0, 25, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (361, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B。

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "heloopoojdancdascd\nasdcdancdkaksjcd\n", "output": "No"}, {"input": "hello world\nHllo world", "output": "Yes"}]', 'f25992a526fbb7c643fbef1c32067d38', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

相似情况计算:两个字符串同时出现的最大子串,记为 C 。相似情况为:sim=strlen(C)/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 70, 14, 358, 3, '{"0": 14, "1": 3, "4": 12, "-1": 39, "-2": 2}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (379, '比较字符串的相似性', '

输入字符串A,和输入字符串B,计算B和A 的相似情况,判断两个字符串是否相似,如果相似输出Yes否则输出No

', '

分别输入字符串A和B,第一行输入是A,第二行输入是B。

', '

输出判定后的结果,如果相似输出Yes否则输出No。

', '[{"input": "heloopoojdancdascd\nasdcdancdkaksjcd\n", "output": "No"}, {"input": "hello world\nHllo world", "output": "Yes"}]', 'f25992a526fbb7c643fbef1c32067d38', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '

相似情况计算:两个字符串同时出现的最大子串,记为 C 。相似情况为:sim=strlen(C)/strlen(A),而sim>=0.5时候就判断为Yes否则判断为No。(区分大小写)

', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Mid', '', 64, 25, 358, '1-168', '{"0": 25, "4": 11, "-1": 22, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (404, '打分(指针)', '

高中作文打分(满分为60分),为了避免作文打分的主观因素的影响,一般会请n个老师进行打分,从中去掉最高分和最低分,对保留的求和并平均。

现在给定n个老师打分的情况,你需要求出最高分和最低分,并分别存到指针变量p和q中(int类型指针);对剩下的分数求和平均保存到指针变量r(double类型指针)中。

程序最后一行请输出如下代码:

printf("%d %d %.2f\n",*p,*q,*r);

', '

一行一个整数n。($ 3 <= n <= 10 $)

一行n个整数表示n位老师打分情况数组score。($ 0 <= score[i] <= 60$)

', '

按题目描述中的代码进行输出。(p、q、r分别输出的是最高分、最低分、剩下的平均分)

', '[{"input": "3\n60 60 60", "output": "60 60 60.00"}]', 'f3066719a0733d3590ad966263a7421e', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 17, 6, 1, '1-181', '{"0": 6, "4": 3, "-1": 5, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (401, '打分(指针)', '

高中作文打分(满分为60分),为了避免作文打分的主观因素的影响,一般会请n个老师进行打分,从中去掉最高分和最低分,对保留的求和并平均。

现在给定n个老师打分的情况,你需要求出最高分和最低分,并分别存到指针变量p和q中(int类型指针);对剩下的分数求和平均保存到指针变量r(double类型指针)中。

程序最后一行请输出如下代码:

printf("%d %d %.2f\n",*p,*q,*r);

', '

一行一个整数n。($ 3 <= n <= 10 $)

一行n个整数表示n位老师打分情况数组score。($ 0 <= score[i] <= 60$)

', '

按题目描述中的代码进行输出。(p、q、r分别输出的是最高分、最低分、剩下的平均分)

', '[{"input": "3\n60 60 60", "output": "60 60 60.00"}]', 'f3066719a0733d3590ad966263a7421e', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 79, 27, 1, 2, '{"0": 27, "4": 10, "-1": 36, "-2": 6}', 0, 35, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (32, '蚂蚁感冒', '

长100厘米的细长直杆子上有n只蚂蚁。它们的头有的朝左,有的朝右。

每只蚂蚁都只能沿着杆子向前爬,速度是1厘米/秒。

当两只蚂蚁碰面时,它们会同时掉头往相反的方向爬行。

这些蚂蚁中,有1只蚂蚁感冒了。并且在和其它蚂蚁碰面时,会把感冒传染给碰到的蚂蚁。

请你计算,当所有蚂蚁都爬离杆子时,有多少只蚂蚁患上了感冒。

', '

第一行输入一个整数n (1 < n < 50), 表示蚂蚁的总数。

接着的一行是n个用空格分开的整数 Xi (-100 < Xi < 100), Xi的绝对值,表示蚂蚁离开杆子左边端点的距离。正值表示头朝右,负值表示头朝左,数据中不会出现0值,也不会出现两只蚂蚁占用同一位置。其中,第一个数 据代表的蚂蚁感冒了。

', '

要求输出1个整数,表示最后感冒蚂蚁的数目。

', '[{"input": "3\n
5 -2 8\n", "output": "1\n"}, {"input": "5
\n-10 8 -20 12 25\n", "output": "3\n"}]', 'f342db6b3691cb05b79d373de6b1ef6f', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 41, 23, 1, '1-41', '{"0": 23, "1": 1, "-1": 11, "-2": 6}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (261, '最大和II', '

给定一个长度为n的数组a[1...n],试找出至少k个位置互不相邻的数(可以恰好等于k个),它们的和最大。

', '

第一行两个整数n和k。$ (1 <= k <= \lceil\frac{n}{3}\rceil <= n <= 100000) $

接下来一行输入一个长度为n的数组a[1...n]。$ (1<= a[i] <= 10000) $

', '

一行一个整数表示答案。

', '[{"input": "3 1\n1 2 3", "output": "4"}]', 'f3805247edfb1ee11e85869a69b8f380', '[{"score": 5, "input_name": "1.in", "output_name": "1.out"}, {"score": 5, "input_name": "2.in", "output_name": "2.out"}, {"score": 5, "input_name": "3.in", "output_name": "3.out"}, {"score": 5, "input_name": "4.in", "output_name": "4.out"}, {"score": 5, "input_name": "5.in", "output_name": "5.out"}, {"score": 5, "input_name": "6.in", "output_name": "6.out"}, {"score": 5, "input_name": "7.in", "output_name": "7.out"}, {"score": 5, "input_name": "8.in", "output_name": "8.out"}, {"score": 5, "input_name": "9.in", "output_name": "9.out"}, {"score": 5, "input_name": "10.in", "output_name": "10.out"}, {"score": 5, "input_name": "11.in", "output_name": "11.out"}, {"score": 5, "input_name": "12.in", "output_name": "12.out"}, {"score": 5, "input_name": "13.in", "output_name": "13.out"}, {"score": 5, "input_name": "14.in", "output_name": "14.out"}, {"score": 5, "input_name": "15.in", "output_name": "15.out"}, {"score": 5, "input_name": "16.in", "output_name": "16.out"}, {"score": 5, "input_name": "17.in", "output_name": "17.out"}, {"score": 5, "input_name": "18.in", "output_name": "18.out"}, {"score": 5, "input_name": "19.in", "output_name": "19.out"}, {"score": 5, "input_name": "20.in", "output_name": "20.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 49, 3, 1, 'H', '{"0": 3, "1": 1, "2": 5, "3": 3, "4": 2, "-1": 34, "-2": 1}', 0, 25, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (358, '三角形面积', '

三角形面积为

图片.png

其中a、b、c分别是三角形的3条边。请分别定义计算s和area的宏,再使用函数实现。比较两者在形式上和使用上的区别。

', '

一行三个整数分别表示三角形的3条边。

', '

一行一个实数表示三角形的面积。(保留两位小数)

', '[{"input": "3 4 5", "output": "6.00"}]', 'f38b17fcd95c638f298f8b7993b7ea1d', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 50, 26, 1, '1-163', '{"0": 26, "-1": 18, "-2": 6}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (336, '三角形面积', '

三角形面积为

图片.png

其中a、b、c分别是三角形的3条边。请分别定义计算s和area的宏,再使用函数实现。比较两者在形式上和使用上的区别。

', '

一行三个整数分别表示三角形的3条边。

', '

一行一个实数表示三角形的面积。(保留两位小数)

', '[{"input": "3 4 5", "output": "6.00"}]', 'f38b17fcd95c638f298f8b7993b7ea1d', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 215, 90, 1, 10, '{"0": 90, "4": 1, "-1": 107, "-2": 17}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (92, '求指定区间的和', '

给定两个大小不同的整数值,求两个值之间的数所有值的和

', '

输入两个整数

', '

输出和

注意:输入值区间是左闭右开[a,b)

', '[{"input": "34 99", "output": "4290"}]', 'f40ef1cd8ae3030c907a3f040f9a6619', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 43, 17, 1, '1-54', '{"0": 17, "4": 3, "-1": 2, "-2": 21}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (93, '求指定区间的和', '

给定两个大小不同的整数值,求两个值之间的数所有值的和

', '

输入两个整数

', '

输出和

注意:输入值区间是左闭右开[a,b)

', '[{"input": "34 99", "output": "4290"}]', 'f40ef1cd8ae3030c907a3f040f9a6619', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["Python3", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 0, 0, 1, '1-13', '{}', 0, 8, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (444, '排序IV', '

给定一个长度为n的正整数序列a,其中有一些值是未知的(用0表示),要求将这些未知的数用正整数填上,且最终的正整数序列是非递减序列,并且字典序是最小的。(字典序比较的定义是:对于两个不完全相同的序列a和b,假设存在一个正整数k,使得a[k] < b[k],并且对于任意i < k,都满足a[i]=b[i],则字典序a < b)。

', '

第一行一个整数n。(n<=1000)

第二行n个整数,代表初始的整数序列。(0 <= a[i] <= 10^9)

', '

一行n个整数,表示最终的整数序列。(注意:若不存在满足条件的序列,输出-1)

', '[{"input": "5\n1 2 0 0 4\n", "output": "1 2 2 2 4"}]', 'f509ca7f2404ce796805b123159f01a6', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 223, 35, 1, 'A', '{"0": 35, "4": 11, "-1": 166, "-2": 11}', 0, 53, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (326, '矩阵连乘(10分)', '

矩阵的幂A^k = A * A * ... * A,其中两个矩阵A、B​的乘积会产生一个新矩阵C,且$C_{ij} = \sum_{k=1}^{m}A_{ik}*B_{kj}$​,其中矩阵A是一个n * m的数组,矩阵B的大小是一个m * t的数组。

现在给定一个方阵A和一个整数k,求A^k。

', '

第一行两个整数n、k。$ (1<=n、k<=5) $

接下来n行,每行n个整数,表示输入的矩阵A。​$(-3 <= A_{ij} <= 3)$

', '

输出n行,每行n个整数,以空格分隔,表示A^k。(注意:每一行行末无空格)

', '[{"input": "2 2\n1 1\n1 1", "output": "2 2\n2 2"}]', 'f59fad448378da061f836285a1adf6ec', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 48, 13, 1, '1-147', '{"0": 13, "-1": 25, "-2": 10}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (513, '矩阵连乘(10分)', '

矩阵的幂A^k = A * A * ... * A,其中两个矩阵A、B​的乘积会产生一个新矩阵C,且$C_{ij} = \sum_{k=1}^{m}A_{ik}*B_{kj}$​,其中矩阵A是一个n * m的数组,矩阵B的大小是一个m * t的数组。

现在给定一个方阵A和一个整数k,求A^k。

', '

第一行两个整数n、k。$ (1<=n、k<=5) $

接下来n行,每行n个整数,表示输入的矩阵A。​$(-3 <= A_{ij} <= 3)$

', '

输出n行,每行n个整数,以空格分隔,表示A^k。(注意:每一行行末无空格)

', '[{"input": "2 2\n1 1\n1 1", "output": "2 2\n2 2"}]', 'f59fad448378da061f836285a1adf6ec', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 124, 26, 1, 8, '{"0": 26, "1": 6, "4": 7, "-1": 79, "-2": 6}', 0, 59, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (318, '矩阵连乘(10分)', '

矩阵的幂A^k = A * A * ... * A,其中两个矩阵A、B​的乘积会产生一个新矩阵C,且$C_{ij} = \sum_{k=1}^{m}A_{ik}*B_{kj}$​,其中矩阵A是一个n * m的数组,矩阵B的大小是一个m * t的数组。

现在给定一个方阵A和一个整数k,求A^k。

', '

第一行两个整数n、k。$ (1<=n、k<=5) $

接下来n行,每行n个整数,表示输入的矩阵A。​$(-3 <= A_{ij} <= 3)$

', '

输出n行,每行n个整数,以空格分隔,表示A^k。(注意:每一行行末无空格)

', '[{"input": "2 2\n1 1\n1 1", "output": "2 2\n2 2"}]', 'f5be94b20d67ad1ed87545d736077967', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 76, 12, 1, 8, '{"0": 12, "4": 3, "-1": 54, "-2": 7}', 0, 29, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (373, '矩阵连乘', '

矩阵的幂A^k = A * A * ... * A,其中两个矩阵A、B​的乘积会产生一个新矩阵C,且$C_{ij} = \sum_{k=1}^{m}A_{ik}*B_{kj}$​,其中矩阵A是一个n * m的数组,矩阵B的大小是一个m * t的数组。

现在给定一个方阵A和一个整数k,求A^k。

', '

第一行两个整数n、k。$ (1<=n、k<=5) $

接下来n行,每行n个整数,表示输入的矩阵A。​$(-3 <= A_{ij} <= 3)$

', '

输出n行,每行n个整数,以空格分隔,表示A^k。(注意:每一行行末无空格)

', '[{"input": "2 2\n1 1\n1 1", "output": "2 2\n2 2"}]', 'f5be94b20d67ad1ed87545d736077967', '[{"score": 17, "input_name": "1.in", "output_name": "1.out"}, {"score": 17, "input_name": "2.in", "output_name": "2.out"}, {"score": 17, "input_name": "3.in", "output_name": "3.out"}, {"score": 17, "input_name": "4.in", "output_name": "4.out"}, {"score": 17, "input_name": "5.in", "output_name": "5.out"}, {"score": 17, "input_name": "6.in", "output_name": "6.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 42, 6, 1, 5, '{"0": 6, "4": 2, "-1": 25, "-2": 9}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (433, '堆排序', '

给出n个坐标点<x1,y1>, <x2, y2>…..<xn, yn>,请对他们进行堆排序。坐标点的大小关系是:如果 xi> xj, 则 <xi,yi>  大于 <xj, yj>;若 xi=xj 且 yi >yj, 那么同样有<xi,yi>  大于 <xj, yj>。

请使用堆排序完成,建议使用C++的面向对象的程序设计。

', '

输入部分包括几个部分:

第一行,一个整型数,表示输入的坐标个数N。

第二行至第N+1行,每行包括两个整型数,分别表示坐标的X和Y值;

', '

输出N行排序后的坐标,每行表示坐标的X和Y值,输出格式为坐标格式(X,Y),最后不要留换行空格。

', '[{"input": "4\n9 1\n3 6\n1 1\n2 8", "output": "(1,1)\n(2,8)\n(3,6)\n(9,1)"}, {"input": "6\n-2 -4\n3 3\n1 -1\n3 7\n4 0\n-2 8", "output": "(-2,-4)\n(-2,8)\n(1,-1)\n(3,3)\n(3,7)\n(4,0)"}, {"input": "3\n-1 -2\n0 1\n2 1", "output": "(-1,-2)\n(0,1)\n(2,1)"}]', 'f60857ef56e77962438097993c5479cd', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 62, 28, 511, 1, '{"0": 28, "4": 1, "-1": 15, "-2": 18}', 0, 48, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (335, '递归统计素数个数', '

输入n(n<10)个整数,统计其中素数的个数。

函数接口定义:

int countPrime( int n );

函数countPrime应返回输入前n个数中素数个数。

', '

第一行一个正整数n。(1<=n<10)

第二行n个正整数a[1..n]。(1<=a[i]<=1000)

', '

一行一个整数表示答案。

', '[{"input": "3\n2 3 101\n", "output": "3"}]', 'f6b22a59df7cebf3d81c14b06ff388a8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 216, 86, 1, 9, '{"0": 86, "4": 7, "-1": 111, "-2": 12}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (357, '递归统计素数个数', '

输入n(n<10)个整数,统计其中素数的个数。

函数接口定义:

void countPrime( int n );

函数countPrime应返回输入前n个数中素数个数。

', '

第一行一个正整数n。(1<=n<10)

第二行n个正整数a[1..n]。(1<=a[i]<=1000)

', '

一行一个整数表示答案。

', '[{"input": "3\n2 3 101\n", "output": "3"}]', 'f6b22a59df7cebf3d81c14b06ff388a8', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 21, 11, 1, '1-162', '{"0": 11, "-1": 10}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (188, '求整数均值', '

输入4个整数,计算并输出这些整数的和与平均值,其中平均值精确到小数点后1位,试编写相应程序

', '

输入4个整数。

', '

计算并输出这些整数的和与平均值(float形式),其中平均值精确到小数点后1位。

', '[{"input": "1 2 3 4", "output": "10 2.5"}]', 'f6be62e75a4bb929ac1026f6bece341a', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 536, 108, 358, '2-1', '{"0": 108, "4": 13, "-1": 303, "-2": 112}', 0, 20, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (405, '结构体数组', '

输入学生人数n,然后构建一个结构体数组,结构体包含学号和学生成绩(都是int类型),然后输出成绩不及格(<60)的学生的学号。

', '

输入n,接着输入n名学生的信息,主要是学号和成绩;

', '

输出成绩不及格学生的学号,每个学号一行。

', '[{"input": "4\n121212 5\n121213 100\n121216 70\n121218 60", "output": "121212\n"}]', 'f6f17d2e311b127c7d507db49186ed41', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 22, 16, 358, '1-182', '{"0": 16, "4": 1, "-1": 2, "-2": 3}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (399, '结构体数组', '

输入学生人数n,然后构建一个结构体数组,结构体包含学号和学生成绩(都是int类型),然后输出成绩不及格(<60)的学生的学号。

', '

输入n,接着输入n名学生的信息,主要是学号和成绩;

', '

输出成绩不及格学生的学号,每个学号一行。

', '[{"input": "4\n121212 5\n121213 100\n121216 70\n121218 60", "output": "121212\n"}]', 'f6f17d2e311b127c7d507db49186ed41', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 51, 28, 358, 3, '{"0": 28, "4": 5, "-1": 12, "-2": 6}', 0, 35, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (327, '判断满足条件的三位数', '

本题要求实现一个函数,统计给定区间内的三位数中有两位数字相同的完全平方数(如144、676)的个数。

函数接口定义:

int search( int n );

其中传入的参数int n是一个三位数的正整数(最高位数字非0)。函数search返回[101, n]区间内所有满足条件的数的个数。

', '

一行一个正整数n。(101<=n<=999)

', '

一个整数表示答案。

', '[{"input": "500", "output": "6"}]', 'fa8db9473c9e175997dd0a34c7509a1c', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 136, 91, 1, 1, '{"0": 91, "1": 2, "4": 4, "-1": 29, "-2": 10}', 0, 30, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (349, '判断满足条件的三位数', '

本题要求实现一个函数,统计给定区间内的三位数中有两位数字相同的完全平方数(如144、676)的个数。

函数接口定义:

int search( int n );

其中传入的参数int n是一个三位数的正整数(最高位数字非0)。函数search返回[101, n]区间内所有满足条件的数的个数。

', '

一行一个正整数n。(101<=n<=999)

', '

一个整数表示答案。

', '[{"input": "500", "output": "6"}]', 'fa8db9473c9e175997dd0a34c7509a1c', '[{"score": 33, "input_name": "1.in", "output_name": "1.out"}, {"score": 33, "input_name": "2.in", "output_name": "2.out"}, {"score": 33, "input_name": "3.in", "output_name": "3.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 36, 24, 1, '1-154', '{"0": 24, "4": 2, "-1": 3, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (211, '输出水仙花数数量', '

输入一个正整数n3<=n<=7),输出所有n位水仙花数。水仙花数是指一个n位正整数,它的各位数字是n次幂之和等于它本身,输出n位所有水仙花数数量。试编写相应程序。

例如:153各位数字的立方和是1^3+5^3+3^3=153

', '

输入一个正整数n

', '

输出n位所有水仙花数数量

', '[{"input": "3", "output": "4"}]', 'fabb4c770466b9a1d26676e519c81eae', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 577, 88, 358, '4-6', '{"0": 88, "1": 239, "4": 6, "-1": 162, "-2": 82}', 0, 23, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (233, '输出水仙花数数量', '

输入一个正整数n3<=n<=7),输出所有n位水仙花数。水仙花数是指一个n位正整数,它的各位数字是n次幂之和等于它本身,输出n位所有水仙花数数量。试编写相应程序。

例如:153各位数字的立方和是1^3+5^3+3^3=153

', '

输入一个正整数n

', '

输出n位所有水仙花数数量

', '[{"input": "3", "output": "4"}]', 'fabb4c770466b9a1d26676e519c81eae', '[{"score": 20, "input_name": "1.in", "output_name": "1.out"}, {"score": 20, "input_name": "2.in", "output_name": "2.out"}, {"score": 20, "input_name": "3.in", "output_name": "3.out"}, {"score": 20, "input_name": "4.in", "output_name": "4.out"}, {"score": 20, "input_name": "5.in", "output_name": "5.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 77, 28, 358, '1-101', '{"0": 28, "1": 28, "4": 2, "-1": 12, "-2": 7}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (84, '排序', '

给定一个长度为n的数列,将这个数列按从大到小的顺序排列。1<=n<=1000

', '

第一行为一个整数n。

第二行包含n个整数,为待排序的数,每个整数的绝对值小于10000。

', '

输出一行,按从大到小的顺序输出排序后的数列。

', '[{"input": "5\n8 3 5 4 2\n", "output": "8 5 4 3 2\n"}]', 'faf03e00a45550da9814879fe0fd8bca', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C++", "C", "Python3", "Java", "Python2"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 59, 33, 1, 1, '{"0": 33, "4": 2, "-1": 17, "-2": 7}', 0, 4, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (45, '核桃的数量', '

小张是软件项目经理,他带领3个开发组。工期紧,今天都在加班呢。为鼓舞士气,小张打算给每个组发一袋核桃(据传言能补脑)。他的要求是:

1. 各组的核桃数量必须相同

2. 各组内必须能平分核桃(当然是不能打碎的)

3. 尽量提供满足1,2条件的最小数量(节约闹革命嘛)

', '

输入包含三个正整数a, b, c,表示每个组正在加班的人数,用空格分开(a,b,c<30)

', '

输出一个正整数,表示每袋核桃的数量。

', '[{"input": "2 4 5 ", "output": "20"}, {"input": "3 1 1 ", "output": "3"}]', 'fc2fa5d584c85986952a283b2c48ca13', '[{"score": 50, "input_name": "1.in", "output_name": "1.out"}, {"score": 50, "input_name": "2.in", "output_name": "2.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Mid', '', 48, 42, 1, '1-34', '{"0": 42, "4": 2, "-1": 3, "-2": 1}', 0, null, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (124, '斐波那契数列', '

在数学上,斐波那契数列的定义为:$F(1)=1,F(2)=1,F(n)=F(n-1)+F(n-2)(n \geq 3,n∈N^*)$。

那么给定一个数n,你能判断它是不是斐波那契数列中的某项吗?

若是,输出“Yes”,否则输出“No”。

', '

一个整数n。$ (1 \leq n \leq 1e9) $

', '

输出一行字符串,"Yes"或者“No”。

', '[{"input": "2", "output": "Yes"}]', 'fcd860fea91520e63216af5299c1332c', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 150, 21, 1, 'C', '{"0": 21, "1": 18, "4": 44, "-1": 35, "-2": 32}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (367, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', 'fe40133bfd8f988f28b8ec95fbb0b134', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', false, 'Low', '', 41, 17, 1, '1-164', '{"0": 17, "1": 5, "4": 4, "-1": 6, "-2": 9}', 0, null, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (534, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', 'fe40133bfd8f988f28b8ec95fbb0b134', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 2, 1, 1, 8, '{"0": 1, "-1": 1}', 0, 61, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (374, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', 'fe40133bfd8f988f28b8ec95fbb0b134', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 2, 2, 1, 6, '{"0": 2}', 0, 33, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (364, '看书计划', '

小明看书有一个计划,他打算用n天的时间看完一本m页的书,并且小明看书时每一天看的页数都比前一天多(第一天可以看任意多页书),那么请你输出小明可能的所有看书的计划,输出按字典序排列(对于两种计划,先比较第一天看书页数,小的在前,如果相同,再比较第二天看书页数,以此类推,具体见样例)。

', '

一行两个整数n和m。(1 <= n <= n*(n+1)/2 <= m <= 100)

', '

若干行,每行n个整数,表示一个读书计划。(以空格分隔,行末无空格)

', '[{"input": "3 8", "output": "1 2 5\n1 3 4"}]', 'fe40133bfd8f988f28b8ec95fbb0b134', '[{"score": 10, "input_name": "1.in", "output_name": "1.out"}, {"score": 10, "input_name": "2.in", "output_name": "2.out"}, {"score": 10, "input_name": "3.in", "output_name": "3.out"}, {"score": 10, "input_name": "4.in", "output_name": "4.out"}, {"score": 10, "input_name": "5.in", "output_name": "5.out"}, {"score": 10, "input_name": "6.in", "output_name": "6.out"}, {"score": 10, "input_name": "7.in", "output_name": "7.out"}, {"score": 10, "input_name": "8.in", "output_name": "8.out"}, {"score": 10, "input_name": "9.in", "output_name": "9.out"}, {"score": 10, "input_name": "10.in", "output_name": "10.out"}]', '', '["C"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 15, 4, 1, 6, '{"0": 4, "1": 1, "4": 1, "-1": 6, "-2": 3}', 0, 32, true, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); +insert into shuishan.problem (id, title, description, input_description, output_description, samples, test_case_id, test_case_score, hint, languages, template , last_update_time, time_limit, memory_limit, spj, spj_language, spj_code, spj_version, rule_type, visible, difficulty, source, submission_number, accepted_number, created_by_id, _id, statistic_info, total_score, contest_id, is_public, spj_compile_ok, io_mode, share_submission) values (117, '字符串拼接', '

从键盘输入两个字符串(包含大小写),将两字符串合并,要求合并后的字符串按照ASCII码顺序排列,并且重复字符只出现一次(大小写不算重复),最后输出合并后的结果。

', '

分行从键盘输入两个有序字符串(每个字符串不超过50个字符)

', '

输出合并后的有序字符串

', '[{"input": "abcADeg\nbdfh\n", "output": "ADabcdefgh"}]', 'ffb16d0159347c9efe7a9e58e37ab7ba', '[{"score": 25, "input_name": "1.in", "output_name": "1.out"}, {"score": 25, "input_name": "2.in", "output_name": "2.out"}, {"score": 25, "input_name": "3.in", "output_name": "3.out"}, {"score": 25, "input_name": "4.in", "output_name": "4.out"}]', '', '["C", "C++", "Java", "Python2", "Python3"]', '{}', null, 1000, 256, false, null, null, null, 'ACM', true, 'Low', '', 123, 17, 1, 'D', '{"0": 17, "4": 23, "-1": 60, "-2": 23}', 0, 13, false, false, '{"input": "input.txt", "output": "output.txt", "io_mode": "Standard IO"}', false); diff --git a/be/app.py b/be/app.py new file mode 100644 index 0000000..fee36df --- /dev/null +++ b/be/app.py @@ -0,0 +1,108 @@ +from flask import Flask +from flask import jsonify +from flask import request +import json +import pymysql +import sys +sys.path.append('../') +from PIPE.main import PIPEModel + + +app = Flask(__name__) +app.config['JSON_AS_ASCII'] = False +db = pymysql.connect(host='127.0.0.1', + port=3306, + user='shuishan', + password='Shuishan@2020', + db='shuishan', + charset='utf8') + + +@app.route('/get-problem-items/') +def get_problem_items(): + db.ping(reconnect=True) + cursor = db.cursor() + cursor.execute("select id, title from problem") + data = cursor.fetchall() + pids = [] + for d in data: + pids.append({"id": d[0], "title": d[1]}) + pids = sorted(pids, key=lambda x: x.__getitem__('id'), reverse=False) + for i in range(len(pids)): + pids[i]['id'] = str(pids[i]['id']) + return jsonify(pids), 200 + + +@app.route('/get-problem-description/<_id>/') +def get_problem_description(_id: str): + db.ping(reconnect=True) + cursor = db.cursor() + cursor.execute("select title, description, input_description, output_description, samples " + "from problem where id = %d" % int(_id)) + des = cursor.fetchone() + # print(des) + title = '
%s. %s

' % (_id, des[0]) + description = '
Description
%s

' % des[1] + input_description = '
Input Description
%s

' \ + % des[2] + output_description = '
Output Description
%s

' \ + % des[3] + samples = json.loads(des[-1].replace("\n", "\\n")) + samples_html = '' + for s in samples: + _input = s["input"].strip().replace(" ", "  ").replace("\n", "
    ") + _output = s["output"].strip().replace(" ", "  ").replace("\n", "
    ") + # _input = s["input"].strip().replace(" ", "  ") + # _output = s["output"].strip().replace(" ", "  ") + stra = '
' + strb = '
' + strc = '
Input
' + strd = '
' + stre = '
Output
' + strf = '

' + strg = '
' + strh = '

    ' + _input + '
    
' + stri = '
' + strj = '

    ' + _output + '
    
' + strk = '
' + strl = '

' + samples_html = samples_html + stra + strb + strc + strd + stre + strf + strg + strh + stri + strj + strk + strl + return title + description + input_description + output_description + samples_html, 200 + + +@app.route('/case_test/', methods=['POST']) +def case_test_(): + pid: str = request.json.get("pid") + code: str = request.json.get("code") + print(pid) + print(code) + return 'pass', 200 + + +@app.route('/check-logic-error/', methods=['POST']) +def check_logic_error(): + pid: str = request.json.get("pid") + code: str = request.json.get("code") + print(pid) + print(code) + model = PIPEModel() + model.load_savedModel() + answer = model.predict_code(code=code) + del model + # results = 'check_logic_error' + return answer, 200 + + +@app.route('/submit/', methods=['POST']) +def submit(): + pid: str = request.json.get("pid") + code: str = request.json.get("code") + print(pid) + print(code) + # results = check_logic_error(pid, code) + results = 'submit' + return results, 200 + + +if __name__ == '__main__': + app.run() diff --git a/be/pyvenv.cfg b/be/pyvenv.cfg new file mode 100644 index 0000000..d92efa0 --- /dev/null +++ b/be/pyvenv.cfg @@ -0,0 +1,8 @@ +home = /usr/lib/python3.7 +implementation = CPython +version_info = 3.7.4.final.0 +virtualenv = 20.1.0 +include-system-site-packages = false +base-prefix = /usr/lib/python3.7 +base-exec-prefix = /usr/lib/python3.7 +base-executable = /usr/bin/python3.7 diff --git a/be/requirements.txt b/be/requirements.txt new file mode 100644 index 0000000..c717d5e --- /dev/null +++ b/be/requirements.txt @@ -0,0 +1,5 @@ +numpy==1.19.4 +pandas==1.1.5 +tensorflow==1.14.0 +Flask==1.1.2 +PyMySQL==0.10.1 diff --git a/be/wsgi.py b/be/wsgi.py new file mode 100644 index 0000000..86c4d03 --- /dev/null +++ b/be/wsgi.py @@ -0,0 +1,4 @@ +from app import app + +if __name__ == '__main__': + app.run() diff --git a/msg b/msg new file mode 100644 index 0000000..eb54862 --- /dev/null +++ b/msg @@ -0,0 +1,46 @@ + + +后端服务器: + IP: 106.75.225.90 / 10.23.152.3 + user: ubuntu + passwd: 1234qwer + (后段代码只能向 case_test.py 和 check.py 中添加,接口不要更改,代码在 /home/ubuntu/be 中,修改之后通过 sudo systemctl restart be 重启服务) + + + +数据库: + 服务器中通过 mysql -h10.23.211.165 -uroot -p1234qwer 连接,使用shuishan这个数据库 + + +插件: + 上传到 106.75.251.241 code-server所在的服务器的 /home/ubuntu/ShuiShan 目录下,目前上传的为以 vscode 1.51.1 为基础的版本,如果需要其他的我再行上传 + + +code-server: + http://106.75.251.241:8080 + passwd: aZ720217 + user: ubuntu + + code-server-passwd: 123456789 + + +前端服务器 + 113.31.118.137 / 10.23.179.109 pw: 1234qwer + 106.75.251.241 pw: aZ720217 + user: ubuntu + +后端服务器 + 106.75.209.55 / 10.23.106.22 + 10.23.14.54 + 10.23.31.251 + 10.23.245.143 + passwd: 1234qwer + user: ubuntu + +负载均衡 + 113.31.111.149 + +云数据库 + 10.23.211.165 + user: root + passwd: 1234qwer diff --git a/peizhi b/peizhi new file mode 100644 index 0000000..18a0e86 --- /dev/null +++ b/peizhi @@ -0,0 +1,224 @@ +一、在Ubuntu上安装Python3.7 + +```shell +# 升级包索引和软件 +sudo apt update +sudo apt upgrade -y + +# 安装编译所需包 +sudo apt install -y build-essential zlib1g-dev libbz2-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev wget + +# 官网下载 Python3.7 +wget https://www.python.org/ftp/python/3.7.4/Python-3.7.4.tgz + +# 解压 +tar -xzvf Python-3.7.4.tgz + +# 查看已安装 Python 的位置 +whereis python + +# 编译安装 +cd Python-3.7.4 +./configure --prefix=/usr/lib/python3.7 # 配置安装位置 +sudo make +sudo make install + +# 建立软链接 +sudo ln -s /usr/lib/python3.7/bin/python3.7 /usr/bin/python3.7 +sudo ln -s /usr/lib/python3.7/bin/pip3.7 /usr/bin/pip3.7 + +# 替换系统默认(建议不要替换,会使系统发生改变,使得ufw无法使用) +sudo rm -rf /usr/bin/python3 +sudo ln -s /usr/lib/python3.7/bin/python3.7 /usr/bin/python3 + +# 默认ubuntu系统中没有pip3,直接建立软连接即可, 如果有先删除 +sudo ln -s /usr/lib/python3.7/bin/pip3.7 /usr/bin/pip3 + +# pip 换源 +sudo mkdir ~/.pip +sudo vi ~/.pip/pip.conf + +# 写入 +[global] +index-url = http://mirrors.aliyun.com/pypi/simple/ + +[install] +trusted-host=mirrors.aliyun.com +# 保存并关闭 +``` + +二、安装 JDK-11 +```shell +sudo apt update +sudo apt install -y openjdk-11-jdk + +java -version + +sudo update-alternatives --config java + +sudo nano /etc/environment + +JAVA_HOME="/usr/lib/jvm/java-11-openjdk-amd64" + +source /etc/environment + +echo $JAVA_HOME + + +三、创建 Python 虚拟环境 + +```shell +# 更新并安装组件 +sudo apt update +sudo apt install -y python3-pip python3-dev build-essential libssl-dev libffi-dev python3-setuptools + +# 安装 python3-venv 软件包 +sudo apt install -y python3-venv + +# 创建虚拟环境 +cd ~ +python3.7 -m venv be + +# 激活虚拟环境 +source ~/be/bin/activate + +# 上传代码 +# 从本地向云主机上传代码 +# scp ... + +# 安装依赖(激活虚拟环境时都应该使用pip而不是pip3) +pip install -r requirements.txt + +# 安装 uwsgi +pip install uwsgi + +# 创建 wsgi.py 作为程序入口点,告诉 uWSGI 服务器如何与程序进行交互 +``` + + +四、安装 Nginx +```shell +sudo apt-get install -y nginx + +# 启动 +sudo /etc/init.d/nginx start + +sudo systemctl restart nginx +sudo systemctl start nginx +sudo systemctl stop nginx +sudo systemctl status nginx + + +五、配置 uWSGI +```shell +# 启用UFW防火墙,允许访问端口5000 +sudo ufw allow 5000 + +# 测试 uWSGI 服务(若本地开启了代理注意关闭,在虚拟环境下执行) +uwsgi --socket 0.0.0.0:5000 --protocol=http -w wsgi:app + +# 从本地浏览器输入 http://:5000 + +# 关闭虚拟环境 +deactivate + +# 创建 uWSGI 配置文件 +nano ~/be/be.ini + +# 从 [uwsgi] 标头开始,以便 uWSGI 知道应用设置 +# 需要指定两件事:模块本神,通过引用 wsgi.py 减去扩展名,以及文件中的 callable 对象,即 app +[uwsgi] +module = wsgi:app + +# 接下来,告诉 uWSGI 以主模式启动并生成5个工作进程提供实际请求 +[uwsgi] +module = wsgi:app + +master = true +processes = 5 + +# 接下来 +[uwsgi] +module = wsgi:app + +master = true +processes = 5 + +socket = be.sock +chmod-socket = 660 +vacuum = true + +die-on-term = true + +# 保存并关闭 +``` + + +六、创建 systemd 单元文件 +```shell +sudo nano /etc/systemd/system/be.service + +[Unit] +Description=uWSGI instance to serve be +After=network.target + +[Service] +User=ubuntu +Group=www-data +WorkingDirectory=/home/ubuntu/be +Environment="PATH=/home/ubuntu/be/bin" +ExecStart=/home/ubuntu/be/bin/uwsgi --ini be.ini + +[Install] +WantedBy=multi-user.target +# 保存并关闭 + +# 现在可以启动创建的 uWSGI 服务并启用它,以便它在启动时启动 +sudo systemctl start be +sudo systemctl enable be + +# 查看状态 +sudo systemctl status be +``` + + +七、将 Nginx 配置为代理请求 +```shell +sudo nano /etc/nginx/sites-available/be + +# 写入 +server { + listen 80; + server_name <公网IP>; + + location / { + include uwsgi_params; + uwsgi_pass unix:/home/ubuntu/be/be.sock; + } +} +# 保存并关闭 + +# 若要启用该配置,需将文件链接至 sites-enabled 目录 +sudo ln -s /etc/nginx/sites-available/be /etc/nginx/sites-enabled + +# 通过如下命令测试语法错误 +sudo nginx -t + +# 返回成功则重启 Nginx 进程以读取新配置 +sudo systemctl restart nginx + +# 再次调整防火墙,不再需要通过5000端口访问,可以删除该规则,最后可以允许访问Nginx服务器 +sudo ufw delete allow 5000 +sudo ufw allow 'Nginx Full' + +# 现在可以直接通过 IP 地址访问 + +# 遇到错误使用如下方式检查 +sudo less /var/log/nginx/error.log # 检查Nginx错误日志 +sudo less /var/log/nginx/access.log # 检查Nginx访问日志 +sudo journalctl -u nginx # 检查Nginx进程日志 +sudo journalctl -u be # 检查你的Flask应用程序的uWSGI日志 +``` + + +