├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── fixture.gif ├── index.d.ts ├── index.js ├── package.json ├── test.js ├── test.js.md └── test.js.snap /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | indent_style = tab 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at richiebendall@gmail.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: richienb # Replace with a single Patreon username 5 | open_collective: richie-bendall # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: richienb # Replace with a single Liberapay username 10 | issuehunt: richienb # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: "" 5 | labels: "" 6 | assignees: "" 7 | --- 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **To Reproduce** 13 | Steps to reproduce the behavior: 14 | 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | 28 | - OS: [e.g. iOS] 29 | - Browser [e.g. chrome, safari] 30 | - Version [e.g. 22] 31 | 32 | **Smartphone (please complete the following information):** 33 | 34 | - Device: [e.g. iPhone6] 35 | - OS: [e.g. iOS8.1] 36 | - Browser [e.g. stock browser, safari] 37 | - Version [e.g. 22] 38 | 39 | **Additional context** 40 | Add any other context about the problem here. 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: "" 5 | labels: "" 6 | assignees: "" 7 | --- 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "14" 5 | - "12" 6 | - "10" 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Richie Bendall 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # render-gif [![Travis CI Build Status](https://img.shields.io/travis/com/Richienb/render-gif/master.svg?style=for-the-badge)](https://travis-ci.com/Richienb/render-gif) 2 | 3 | Render a gif and provide frames to draw. 4 | 5 | [![NPM Badge](https://nodei.co/npm/render-gif.png)](https://npmjs.com/package/render-gif) 6 | 7 | ## Install 8 | 9 | ```sh 10 | npm install render-gif 11 | ``` 12 | 13 | ## Usage 14 | 15 | ```js 16 | const fs = require("fs"); 17 | const renderGif = require("render-gif"); 18 | const renderFrame = require("./render-frame"); 19 | 20 | renderGif(fs.readFileSync("unicorn.gif"), renderFrame); 21 | ``` 22 | 23 | ## API 24 | 25 | ### renderGif(data, callback, options?) 26 | 27 | #### data 28 | 29 | Type: `array-like` 30 | 31 | The gif data. Can be anything array-like such as a Buffer, Array or Uint8Array. 32 | 33 | #### callback 34 | 35 | Type: `(data: ArrayLike) => void` 36 | 37 | The callback to provide each rendered frame to. The data is a png encoded as a Uint8ClampedArray. 38 | 39 | #### options 40 | 41 | Type: `object` 42 | 43 | ##### maximumFrameRate 44 | 45 | Type: `number`\ 46 | Default: `Infinity` 47 | 48 | The maximum framerate to render the gif at. 49 | 50 | #### Return value 51 | 52 | ##### isPlaying 53 | 54 | Type: `boolean`\ 55 | Default: `true` 56 | 57 | Whether the animation should be rendered and provided to the callback. 58 | -------------------------------------------------------------------------------- /fixture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richienb/render-gif/35e19475618b4e8d284856406859312da717c765/fixture.gif -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace renderGif { 2 | export interface ReturnValue { 3 | /** Whether the animation should be rendered and provided to the callback. */ 4 | isPlaying: boolean 5 | } 6 | 7 | export interface Options { 8 | /** The maximum framerate to render the gif at. */ 9 | maximumFrameRate?: number 10 | } 11 | } 12 | 13 | /** 14 | Render a gif and provide frames to draw. 15 | @param data The gif data. Can be anything array-like such as a Buffer, Array or Uint8Array. 16 | @param callback The callback to provide each rendered frame to. The data is a png encoded as a Uint8ClampedArray. 17 | @param options Options. 18 | @example 19 | ``` 20 | const fs = require("fs"); 21 | const renderGif = require("render-gif"); 22 | const renderFrame = require("./render-frame"); 23 | 24 | renderGif(fs.readFileSync("unicorn.gif"), renderFrame); 25 | ``` 26 | */ 27 | declare function renderGif(data: ArrayLike, callback: (data: ArrayLike) => void, options: renderGif.Options): renderGif.ReturnValue 28 | 29 | export = renderGif 30 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | "use strict" 2 | 3 | const Jimp = require("jimp") 4 | const Cycled = require("cycled") 5 | const delay = require("yoctodelay") 6 | const decodeGif = require("decode-gif") 7 | 8 | module.exports = (data, callback, { maximumFrameRate = Infinity } = {}) => { 9 | if (typeof maximumFrameRate !== "number") { 10 | throw new TypeError(`Expected \`maximumFrameRate\` to be a number, got ${typeof maximumFrameRate}`) 11 | } 12 | 13 | const { width, height, frames: gifFrames } = decodeGif(data) 14 | 15 | let image 16 | 17 | const renderGifFrame = async ({ data, width, height }) => { 18 | if (!image) { 19 | image = await Jimp.create(width, height) 20 | } 21 | 22 | for (let x = 0; x < width; x++) { 23 | for (let y = 0; y < height; y++) { 24 | const dataIndex = (y * width * 4) + (x * 4) 25 | if (!(data[dataIndex] === 0 && data[dataIndex + 1] === 0 && data[dataIndex + 2] === 0 && data[dataIndex + 3] === 0)) { 26 | image.setPixelColour(Jimp.rgbaToInt(data[dataIndex], data[dataIndex + 1], data[dataIndex + 2], data[dataIndex + 3]), x, y) 27 | } 28 | } 29 | } 30 | 31 | // TODO: Return an ArrayBuffer in the next breaking version 32 | return new Uint8ClampedArray(await image.getBufferAsync(Jimp.MIME_PNG)) 33 | } 34 | 35 | const frames = new Cycled(gifFrames) 36 | let isPlaying_ = true 37 | 38 | const shouldReturnFrame = () => { 39 | if (maximumFrameRate === Infinity) { 40 | return true 41 | } 42 | 43 | const { timeCode } = frames.current() 44 | const { timeCode: nextTimeCode } = frames.peek(1) 45 | 46 | return timeCode % (1000 / maximumFrameRate) <= nextTimeCode - timeCode 47 | } 48 | 49 | const renderFrame = async () => { 50 | const renderedFrame = await renderGifFrame({ data: frames.current().data, width, height }) 51 | 52 | if (shouldReturnFrame()) { 53 | callback(renderedFrame) 54 | } 55 | 56 | await delay(frames.peek(1).timeCode - frames.current().timeCode) 57 | frames.next() 58 | 59 | if (isPlaying_) { 60 | await renderFrame() 61 | } 62 | } 63 | 64 | renderFrame() 65 | 66 | return { 67 | get isPlaying() { 68 | return isPlaying_ 69 | }, 70 | set isPlaying(value) { 71 | if (typeof value !== "boolean") { 72 | throw new TypeError(`Expected a boolean, got ${typeof value}`) 73 | } 74 | 75 | if (!isPlaying_ && value) { 76 | renderFrame() 77 | } 78 | 79 | isPlaying_ = value 80 | } 81 | } 82 | } 83 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "render-gif", 3 | "version": "2.0.4", 4 | "description": "Render a gif and provide frames to draw.", 5 | "repository": "https://github.com/Richienb/render-gif.git", 6 | "author": "Richie Bendall ", 7 | "license": "MIT", 8 | "main": "index.js", 9 | "files": [ 10 | "index.js", 11 | "index.d.ts" 12 | ], 13 | "engines": { 14 | "node": ">=10" 15 | }, 16 | "scripts": { 17 | "lint": "xo", 18 | "test": "xo && ava" 19 | }, 20 | "keywords": [ 21 | "gif", 22 | "render", 23 | "animate", 24 | "sequence", 25 | "decode", 26 | "parse", 27 | "draw", 28 | "write", 29 | "buffer" 30 | ], 31 | "dependencies": { 32 | "cycled": "^1.2.0", 33 | "decode-gif": "^1.0.1", 34 | "jimp": "^0.14.0", 35 | "yoctodelay": "^1.1.0" 36 | }, 37 | "devDependencies": { 38 | "ava": "^3.10.1", 39 | "eslint-config-richienb": "^0.4.2", 40 | "xo": "^0.32.1" 41 | }, 42 | "xo": { 43 | "extends": "richienb", 44 | "overrides": [ 45 | { 46 | "files": "test.js", 47 | "rules": { 48 | "node/no-unsupported-features/node-builtins": 0 49 | } 50 | } 51 | ] 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | const test = require("ava") 2 | const { promises: fs } = require("fs") 3 | const delay = require("yoctodelay") 4 | const renderGif = require(".") 5 | 6 | test("main", async t => { 7 | let result = "" 8 | 9 | const animation = renderGif(await fs.readFile("fixture.gif"), data => { 10 | result += data 11 | }, { maximumFrameRate: 30 }) 12 | 13 | await delay(500) 14 | animation.isPlaying = false 15 | 16 | t.is(typeof result, "string") 17 | }) 18 | -------------------------------------------------------------------------------- /test.js.md: -------------------------------------------------------------------------------- 1 | # Snapshot report for `test.js` 2 | 3 | The actual snapshot is saved in `test.js.snap`. 4 | 5 | Generated by [AVA](https://avajs.dev). 6 | 7 | ## main 8 | 9 | > Snapshot 1 10 | 11 | '137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,17,99,73,68,65,84,120,1,237,193,207,107,35,105,126,192,225,79,74,181,175,242,46,20,21,116,170,4,114,72,110,193,23,165,16,1,9,4,22,237,211,160,171,64,96,116,17,77,118,217,91,108,176,33,108,152,52,44,4,27,236,115,14,131,32,20,134,10,117,201,65,4,146,120,145,65,96,231,32,10,93,252,55,68,135,208,80,56,240,70,133,106,39,121,135,40,8,227,238,246,207,26,123,250,251,60,191,247,95,255,157,127,143,16,162,20,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,33,74,227,32,132,40,141,131,16,162,52,14,66,136,210,56,8,113,75,110,50,126,251,221,183,252,213,175,126,65,110,50,196,243,113,16,226,150,233,217,41,227,116,129,53,155,167,136,231,227,32,196,134,203,171,9,227,116,65,55,12,16,207,207,65,136,255,147,155,140,36,138,233,134,1,107,141,122,136,120,62,14,66,252,175,220,100,28,238,31,32,94,150,139,120,178,220,100,172,41,237,243,22,205,230,41,86,55,12,176,198,233,130,110,24,160,180,143,120,62,46,226,73,114,147,49,155,167,172,181,154,29,126,76,185,201,152,205,83,214,26,245,16,165,125,114,147,49,155,167,88,141,122,136,210,62,107,151,87,19,146,40,166,27,6,108,210,91,219,136,231,229,34,158,68,105,159,77,185,201,80,218,167,12,185,201,216,52,155,167,36,81,204,166,36,138,233,134,1,227,116,193,90,18,197,116,195,128,246,238,30,86,18,197,220,165,81,15,17,207,203,69,60,89,163,30,98,41,237,83,134,220,100,28,238,31,240,41,67,147,179,54,210,138,113,186,96,104,114,54,141,210,5,227,244,128,110,24,96,117,195,0,241,242,92,196,147,41,237,83,166,217,60,197,234,13,250,108,50,215,23,140,211,5,35,173,176,134,38,103,104,114,238,50,52,57,35,173,24,167,11,186,97,192,166,113,186,160,27,6,40,237,35,158,151,139,120,115,26,245,144,36,138,177,90,205,14,255,175,217,225,29,112,121,53,33,137,98,70,90,49,52,57,159,50,52,57,35,173,184,139,222,218,70,60,63,23,241,89,185,201,176,148,246,121,13,114,147,49,155,167,88,73,20,211,106,118,184,173,213,236,208,168,135,76,207,78,25,165,11,134,38,199,26,105,197,93,198,233,130,110,24,176,169,81,15,17,207,207,69,124,150,210,62,185,201,120,13,46,175,38,36,81,204,166,223,126,247,45,239,222,127,224,54,165,125,218,187,123,192,41,163,116,193,90,55,12,216,52,78,23,88,227,116,193,90,55,12,16,47,195,69,124,145,210,62,63,166,220,100,76,207,78,25,167,11,172,161,201,89,27,165,11,248,238,91,218,187,123,120,94,141,155,155,143,88,74,251,40,237,211,222,221,3,78,105,239,238,225,121,53,172,229,170,192,170,186,21,190,1,110,110,62,50,155,167,152,235,11,198,233,2,75,105,31,241,252,42,127,253,235,191,249,91,196,171,118,241,15,127,199,56,93,48,52,57,127,190,42,216,244,231,171,130,127,252,79,195,249,191,254,27,63,255,131,159,243,71,193,31,162,180,207,90,229,103,191,207,159,253,197,14,84,20,197,239,190,167,248,221,247,172,21,191,251,158,226,119,223,83,249,217,239,243,199,127,252,39,252,217,95,236,240,243,63,248,57,255,244,47,255,206,207,254,99,198,159,134,29,196,243,114,17,175,218,229,213,132,113,186,96,104,114,62,101,104,114,70,90,145,68,49,73,20,99,117,195,0,189,181,77,167,189,131,85,117,43,44,87,5,85,183,194,109,203,85,193,90,171,217,193,74,162,24,125,53,97,173,81,15,177,148,246,17,143,231,242,130,114,147,97,41,237,35,30,46,55,25,73,20,115,31,67,147,99,141,180,194,26,167,11,186,92,176,108,118,168,186,21,172,170,91,193,154,76,207,49,215,23,232,173,109,58,237,29,170,110,133,181,170,91,161,213,236,96,174,47,72,162,152,181,36,138,177,186,97,128,222,218,166,213,236,32,30,206,229,5,41,237,35,238,150,155,140,217,60,197,106,53,59,88,185,201,80,218,103,109,122,118,138,53,52,57,107,35,173,176,134,38,231,83,122,131,62,157,246,14,119,153,76,207,73,162,152,31,164,49,141,122,136,231,213,216,84,117,43,180,119,247,104,239,242,255,102,243,20,43,137,98,72,99,204,245,5,237,221,61,148,246,17,247,231,34,62,43,55,25,74,251,60,183,217,60,101,45,55,25,74,251,40,237,179,150,155,140,113,186,96,104,114,214,70,90,113,31,141,122,200,83,121,94,141,77,157,246,14,86,167,189,195,100,122,78,18,197,192,41,239,222,127,64,220,159,195,27,147,155,140,220,100,148,33,55,25,179,121,74,110,50,158,91,163,30,242,57,179,121,202,166,145,86,244,6,125,142,78,142,249,148,145,86,116,195,0,165,125,214,150,171,130,77,173,102,135,110,24,96,117,195,0,207,171,241,37,203,85,193,114,85,176,92,21,44,87,5,157,246,14,189,65,159,113,186,32,55,25,226,254,92,196,39,41,237,211,168,135,40,237,179,150,155,140,77,74,251,60,134,210,62,141,122,136,210,62,119,49,215,23,172,141,180,162,27,6,116,218,59,44,87,5,214,72,43,134,38,231,54,189,181,205,166,170,91,97,83,213,173,240,205,47,127,195,187,85,65,213,173,240,37,203,85,193,109,203,85,65,171,217,33,137,98,102,243,148,86,179,131,184,31,135,55,70,105,31,165,125,202,162,180,207,75,81,218,231,83,198,233,130,77,237,221,61,150,171,130,170,91,161,55,232,243,84,85,183,194,125,84,221,10,85,183,66,213,173,32,158,206,65,60,216,108,158,82,150,145,86,116,195,0,207,171,81,117,43,88,157,246,14,221,48,96,164,21,183,53,234,33,85,183,194,75,168,186,21,170,110,133,170,91,33,55,25,226,225,28,196,131,40,237,211,168,135,88,74,251,188,132,220,100,88,67,147,99,233,173,109,150,171,130,77,237,221,61,172,145,86,88,35,173,40,203,114,85,48,61,59,197,106,53,59,136,251,115,249,137,202,77,134,165,180,207,115,83,218,231,37,84,221,10,147,233,57,73,20,99,141,180,98,173,234,86,216,228,121,53,122,131,62,73,20,83,166,201,244,156,36,138,177,122,131,62,226,97,92,126,130,114,147,49,155,167,88,141,122,136,210,62,111,193,205,205,71,146,40,230,190,58,237,29,204,245,5,163,116,193,83,253,243,223,255,26,75,111,109,115,23,115,125,193,56,93,176,214,27,244,105,53,59,136,135,113,17,175,198,108,158,98,245,6,125,146,40,102,205,92,95,64,123,135,187,188,123,255,129,241,175,126,193,115,24,167,11,72,99,62,165,27,6,232,173,109,26,245,16,165,125,196,195,185,252,4,41,237,211,168,135,88,74,251,188,53,141,122,72,163,30,114,184,127,128,53,78,23,124,195,221,170,110,133,163,147,99,14,247,15,120,10,189,181,13,105,204,209,201,49,119,81,218,103,83,213,173,176,92,21,136,135,113,248,137,82,218,71,105,159,31,67,110,50,114,147,241,20,74,251,28,157,28,211,27,244,233,13,250,124,142,231,213,232,13,250,88,179,121,202,99,52,234,33,214,108,158,162,180,143,210,62,74,251,40,237,163,180,207,90,213,173,80,117,43,88,85,183,130,120,24,7,241,172,114,147,177,150,155,140,135,104,212,67,172,217,60,197,242,188,26,157,246,14,157,246,14,95,210,105,239,208,27,244,73,162,152,155,155,143,60,148,231,213,176,204,245,5,85,183,66,213,173,80,117,43,84,221,10,85,183,66,213,173,80,117,43,108,90,174,10,196,195,56,136,87,67,105,31,203,92,95,240,24,141,122,136,53,61,59,229,49,186,97,192,56,93,240,37,203,85,193,114,85,32,30,206,225,153,228,38,67,60,93,111,208,103,156,46,184,188,154,240,80,158,87,163,55,232,51,78,23,44,87,5,15,165,183,182,177,110,110,62,178,92,21,44,87,5,203,85,193,114,85,176,92,21,44,87,5,203,85,129,120,60,151,103,162,180,143,0,165,125,114,147,161,180,207,93,114,147,49,155,167,172,53,234,33,179,121,138,101,174,47,24,167,11,172,36,138,105,212,67,60,175,198,99,228,38,163,234,213,16,175,139,203,51,202,77,134,210,62,95,59,165,125,62,39,137,98,214,146,40,230,83,14,247,15,56,58,57,198,243,106,220,87,163,30,146,68,49,226,117,114,16,63,154,161,201,25,154,156,161,201,25,154,156,161,201,177,186,97,192,99,205,230,41,143,213,168,135,136,151,229,242,140,148,246,17,159,167,180,79,111,208,39,137,98,62,231,232,228,24,165,125,170,110,5,241,211,225,240,21,203,77,70,110,50,30,42,55,25,79,209,168,135,88,35,173,184,203,56,93,48,155,167,84,221,10,203,85,193,125,45,87,5,73,20,211,13,3,60,175,198,67,205,230,41,226,101,57,124,133,114,147,113,121,53,97,54,79,121,168,220,100,204,230,41,185,201,120,44,165,125,122,131,62,214,72,43,214,70,90,177,150,68,49,147,233,57,85,183,194,125,93,94,77,176,244,214,54,226,117,114,249,202,228,38,99,54,79,89,155,205,83,26,245,16,165,125,202,212,106,118,176,146,40,102,164,21,86,55,12,120,247,254,3,214,111,191,251,150,36,138,73,162,152,222,160,79,171,217,161,234,86,184,109,185,42,200,77,198,108,158,146,68,49,221,48,160,211,222,65,188,78,46,130,217,60,165,213,236,112,31,74,251,52,234,33,74,251,60,85,171,217,193,74,162,152,110,24,240,205,47,127,195,114,85,80,117,43,124,243,203,223,208,190,249,200,244,236,148,36,138,73,162,24,171,27,6,172,141,211,5,183,181,119,247,120,170,195,253,3,122,131,62,173,102,7,241,188,92,190,50,74,251,52,234,33,179,121,202,90,163,30,242,16,74,251,60,183,246,238,30,203,85,193,38,207,171,241,238,253,7,218,38,99,54,79,49,215,23,140,211,5,107,221,48,64,111,109,99,53,234,33,74,251,84,221,10,143,213,105,239,208,168,135,76,207,78,73,162,24,115,125,65,123,119,15,165,125,196,243,112,121,195,114,147,97,41,237,243,88,141,122,136,210,62,101,203,77,198,108,158,146,68,49,221,48,64,105,159,187,84,221,10,85,175,70,167,189,3,237,29,190,225,101,121,94,141,111,126,249,27,244,244,156,36,138,25,167,7,28,157,28,163,180,143,120,58,151,159,128,220,100,40,237,115,95,74,251,180,154,29,126,12,185,201,152,158,157,50,78,23,172,233,173,109,170,110,133,215,164,211,222,161,81,15,57,220,63,224,112,255,128,163,147,99,148,246,17,79,227,242,134,41,237,243,26,229,38,99,211,108,158,98,37,81,204,218,208,228,88,35,173,120,173,60,175,198,209,201,49,135,251,7,28,238,31,112,116,114,140,210,62,226,241,92,196,163,93,94,77,176,204,245,5,227,116,193,125,12,77,206,143,237,230,230,35,179,121,138,213,168,135,120,94,141,79,241,188,26,71,39,199,28,238,31,48,61,59,229,221,251,15,136,199,115,17,15,146,155,140,217,60,37,137,98,110,27,154,156,183,96,54,79,73,162,24,43,137,98,172,222,160,79,163,30,226,121,53,110,243,188,26,189,65,159,36,138,209,87,19,90,205,14,226,113,92,196,189,228,38,99,122,118,202,56,93,176,54,52,57,207,193,92,95,64,123,135,178,116,218,59,180,154,29,114,147,49,155,167,36,81,76,18,197,36,81,76,55,12,104,239,238,225,121,53,150,171,130,170,91,193,234,180,119,48,215,23,36,81,76,163,30,162,180,143,120,56,7,241,69,151,87,19,14,247,15,24,167,11,134,38,103,104,114,134,38,231,57,12,77,206,56,93,112,115,243,145,50,85,221,10,158,87,99,83,111,208,103,156,46,56,220,63,96,50,61,231,182,246,238,30,214,108,158,34,30,199,65,124,214,229,213,132,36,138,177,134,38,231,185,141,180,194,154,158,157,82,182,201,244,156,36,138,177,186,97,64,171,217,225,232,228,152,110,24,144,68,49,151,87,19,150,171,130,53,207,171,209,13,3,146,40,70,60,142,195,43,151,155,140,31,203,229,213,132,36,138,25,154,156,161,201,121,73,227,116,193,100,122,206,231,220,220,124,100,50,61,231,57,76,166,231,36,81,204,154,222,218,198,82,218,231,221,251,15,116,195,128,36,138,185,188,154,176,73,111,109,99,229,38,67,60,156,195,43,150,155,140,217,60,229,242,106,66,110,50,202,146,155,140,203,171,9,73,20,51,52,57,47,101,164,21,214,209,201,49,221,48,32,137,98,38,211,115,62,101,54,79,73,162,152,167,184,185,249,200,63,255,253,175,73,162,152,110,24,208,13,3,172,70,61,100,211,187,247,31,232,134,1,73,20,51,153,158,179,214,106,118,176,102,243,20,241,112,14,111,132,210,62,47,41,55,25,107,179,121,74,18,197,12,77,206,75,235,13,250,40,237,211,222,221,227,115,150,171,130,36,138,233,134,1,143,113,115,243,145,201,244,156,195,253,3,198,233,130,222,160,79,123,119,143,113,186,160,55,232,163,180,207,109,239,222,127,160,27,6,36,81,204,100,122,142,85,117,43,116,195,0,115,125,129,120,56,151,87,174,81,15,41,131,210,62,86,110,50,146,40,230,165,141,180,162,27,6,180,154,29,172,217,60,197,106,212,67,238,114,121,53,193,106,239,238,113,31,203,85,65,110,50,102,243,20,115,125,193,56,93,96,117,195,128,246,238,30,158,87,99,50,61,199,106,212,67,110,171,186,21,150,171,130,246,238,30,112,74,18,197,88,157,246,14,214,56,93,240,14,241,80,46,175,152,210,62,101,155,158,157,98,13,77,206,75,25,105,133,213,222,221,99,45,137,98,186,97,128,231,213,184,109,185,42,72,162,24,235,112,255,128,110,24,176,166,183,182,177,204,245,5,107,227,116,193,93,142,78,142,241,188,26,214,114,85,144,68,49,221,48,64,105,159,79,81,218,167,189,187,7,156,146,68,49,230,250,130,113,186,160,27,6,136,135,115,17,63,168,186,21,38,211,115,198,233,130,161,201,121,41,35,173,176,142,78,142,81,218,199,186,188,154,96,181,119,247,184,203,229,213,4,171,27,6,172,141,211,5,63,72,99,238,210,27,244,177,26,245,144,195,253,3,186,97,128,231,213,88,187,188,154,96,233,173,109,110,171,186,21,54,41,237,243,238,253,7,244,213,132,36,138,233,134,1,237,221,61,196,195,185,136,31,44,87,5,73,20,243,146,70,90,97,245,6,125,148,246,201,77,198,108,158,146,68,49,189,65,31,207,171,113,219,205,205,71,146,40,166,27,6,188,123,255,129,53,125,53,33,137,98,142,78,142,81,218,103,237,175,126,245,11,186,97,64,171,217,97,147,222,218,102,109,185,42,72,162,152,110,24,208,105,239,176,92,21,220,71,171,217,161,213,236,32,30,207,65,252,224,242,106,130,53,52,57,47,97,164,21,86,111,208,167,81,15,201,77,198,244,236,148,36,138,233,13,250,116,218,59,220,182,92,21,76,207,78,177,218,187,123,108,106,212,67,172,233,217,41,86,213,173,80,117,43,116,195,0,171,234,86,168,186,21,238,114,121,53,193,106,239,238,33,202,229,32,126,144,68,49,47,101,164,21,214,209,201,49,141,122,136,117,184,127,192,56,93,208,27,244,233,180,119,184,203,229,213,132,113,186,160,55,232,163,180,207,38,165,125,122,131,62,227,116,193,229,213,132,47,49,215,23,44,87,5,55,55,31,73,162,152,222,160,143,231,213,248,148,229,170,64,60,63,23,193,229,213,4,107,104,114,158,211,72,43,172,222,160,79,163,30,162,180,79,110,50,14,247,15,176,142,78,142,241,188,26,214,114,85,80,117,43,88,203,85,193,111,191,251,150,113,186,160,55,232,211,105,239,96,45,87,5,155,90,205,14,86,18,197,88,173,102,135,113,186,160,55,232,179,169,27,6,140,211,5,250,106,66,18,197,88,141,122,200,231,84,221,10,203,85,129,120,94,46,95,185,220,100,36,81,204,115,25,105,197,90,55,12,104,239,238,161,180,207,218,244,236,20,235,232,228,24,207,171,97,45,87,5,214,114,85,112,121,53,33,137,98,172,222,160,79,167,189,195,231,180,154,29,204,245,5,73,20,147,68,49,86,163,30,178,92,21,172,181,119,247,24,167,7,36,81,140,117,116,114,140,231,213,16,229,115,249,138,229,38,99,54,79,177,134,38,231,182,145,86,60,84,55,12,208,91,219,52,234,33,74,251,220,54,78,23,116,195,0,207,171,177,92,21,88,185,201,152,205,83,146,40,198,234,134,1,237,221,61,148,246,89,174,10,172,220,100,120,94,141,229,170,224,182,119,239,63,160,175,38,152,235,11,244,214,54,74,251,108,82,218,231,232,228,24,75,105,159,77,203,85,129,40,143,203,87,76,105,159,36,138,217,52,210,138,77,221,48,64,111,109,179,214,168,135,108,154,205,83,26,245,16,75,105,159,47,233,13,250,36,81,204,248,47,223,115,91,55,12,208,91,219,180,154,29,110,83,218,103,185,42,248,148,86,179,3,205,14,159,162,180,207,231,228,38,67,105,31,107,185,42,16,47,195,229,43,150,155,140,181,145,86,88,221,48,64,111,109,211,168,135,40,237,243,37,173,102,135,135,104,53,59,52,234,33,179,121,202,166,70,61,68,105,159,178,85,221,10,86,142,40,131,203,87,108,54,79,89,235,134,1,237,221,61,148,246,121,105,74,251,180,154,29,126,76,55,55,31,241,188,26,162,92,46,95,49,115,125,129,213,27,244,105,53,59,124,77,148,246,217,164,180,143,120,121,46,95,177,246,238,30,237,93,80,218,231,45,170,186,21,150,171,130,199,90,174,10,68,185,92,190,98,74,251,188,117,85,183,194,114,85,32,222,6,7,241,230,85,221,10,226,109,112,16,111,214,114,85,96,45,87,5,226,109,112,16,111,218,114,85,32,222,14,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,28,132,16,165,113,16,66,148,198,65,8,81,26,7,33,68,105,254,7,219,230,54,166,38,221,250,50,0,0,0,0,73,69,78,68,174,66,96,130137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,18,127,73,68,65,84,120,1,237,193,81,104,35,121,126,224,241,239,150,170,255,234,127,39,117,53,81,22,86,183,97,152,204,146,112,7,134,67,83,232,69,98,53,88,99,135,35,19,189,10,4,70,47,190,134,12,121,59,251,176,97,233,189,222,134,129,61,27,236,188,45,147,208,8,66,209,80,71,189,204,131,88,152,221,94,100,48,177,135,197,84,204,238,122,31,246,61,140,30,6,67,161,129,127,84,72,217,227,31,208,161,56,118,183,221,109,215,216,61,191,207,231,91,95,253,75,246,123,132,16,185,112,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,136,51,50,147,34,110,134,131,16,103,40,237,99,101,38,37,51,41,226,250,56,136,75,201,76,202,193,225,128,204,164,124,19,28,28,14,216,92,223,96,115,125,3,113,125,28,196,149,28,29,39,188,233,14,14,7,196,97,132,184,126,46,226,210,170,149,128,55,85,102,82,148,246,201,76,74,28,70,136,155,225,32,46,69,105,31,165,125,148,246,121,19,41,237,99,109,174,111,96,181,130,50,86,187,219,65,92,31,7,241,90,50,147,114,155,101,38,229,178,126,241,244,49,86,43,40,35,110,134,131,120,45,74,251,204,203,76,74,94,50,147,114,145,204,164,88,74,251,188,72,102,82,172,131,195,1,253,100,72,43,40,51,175,90,9,16,215,199,69,188,182,204,164,40,237,99,41,237,147,167,131,195,1,86,181,18,96,237,63,219,165,159,12,153,105,5,101,244,194,34,86,28,70,88,173,160,140,94,88,164,90,9,80,218,39,51,41,113,24,49,175,159,12,177,148,246,17,215,199,69,144,153,20,165,125,94,149,210,62,121,59,56,28,16,135,17,51,113,24,113,214,170,201,232,37,67,72,34,230,245,147,33,36,17,230,100,143,198,202,26,251,207,118,177,90,65,153,121,237,110,7,113,189,92,4,74,251,220,85,237,110,135,106,37,224,232,56,193,50,39,123,244,147,33,51,171,38,227,34,189,100,72,63,217,192,106,5,101,206,170,86,2,196,245,114,17,119,82,181,18,16,135,17,150,210,62,245,90,147,127,83,107,210,48,41,251,207,118,233,37,67,86,77,198,69,86,77,70,79,43,46,162,180,143,184,94,14,226,78,51,39,123,156,165,180,207,210,195,39,180,130,50,61,173,184,170,126,50,164,21,148,17,215,207,69,220,122,153,73,81,218,199,58,56,28,16,135,17,51,253,100,136,62,28,208,108,44,99,141,70,167,88,74,251,44,61,124,2,79,31,211,75,134,188,76,63,25,210,10,202,204,232,133,69,196,245,115,17,183,158,210,62,153,73,217,127,182,75,63,25,98,173,154,12,171,167,21,113,24,97,53,27,203,88,74,251,204,44,61,124,66,255,111,254,26,171,221,237,80,173,4,156,117,116,156,96,78,246,232,39,67,102,170,149,0,113,253,10,63,120,244,195,31,33,110,181,204,164,108,174,111,240,187,47,190,98,213,100,188,55,153,50,243,222,100,202,63,221,43,240,219,95,253,134,111,253,243,47,121,231,191,213,40,220,187,143,85,116,11,184,142,195,251,139,223,231,47,254,251,95,240,167,239,254,87,30,232,63,160,88,212,20,139,154,98,81,83,44,106,190,251,39,239,240,189,160,201,7,31,188,207,253,47,127,205,239,190,248,138,63,250,206,31,243,246,219,239,50,47,51,41,133,123,247,17,175,174,240,131,71,63,252,17,87,148,153,148,194,189,251,188,76,102,82,10,247,238,115,91,101,38,165,112,239,62,55,33,51,41,211,201,152,194,189,251,188,174,189,127,248,49,191,251,226,43,86,77,198,121,222,155,76,121,111,50,229,255,126,105,120,254,179,159,115,239,139,35,134,99,248,118,233,45,40,40,30,232,63,160,88,212,184,142,195,121,92,199,193,117,28,138,69,205,159,87,63,224,91,255,252,75,62,253,236,115,254,83,233,15,121,251,237,119,153,41,220,187,143,120,61,223,250,234,95,178,223,243,13,148,153,20,75,105,159,155,112,112,56,96,94,189,214,228,101,50,147,162,180,207,188,131,195,1,113,24,177,106,50,46,171,167,21,51,91,59,219,120,94,137,179,70,163,83,148,246,41,186,5,206,243,211,79,30,209,79,134,204,180,130,50,150,94,88,164,90,9,80,218,71,92,157,203,45,147,153,20,165,125,110,154,210,62,47,147,153,20,165,125,94,87,181,18,240,34,153,73,57,58,78,168,86,2,230,101,38,37,14,35,86,77,198,85,181,187,29,44,207,43,113,214,79,63,121,68,63,25,98,109,237,108,227,121,37,206,106,172,172,1,187,204,235,39,67,72,34,226,48,162,221,237,80,175,53,17,87,227,114,203,40,237,243,34,153,73,177,148,246,185,73,153,73,177,50,147,162,180,207,215,97,255,217,46,243,122,90,49,179,106,50,206,211,211,138,86,80,166,217,88,198,26,79,166,20,221,2,51,163,209,41,253,100,200,204,209,113,66,179,177,204,89,158,87,226,195,143,62,198,26,79,166,88,75,64,102,82,246,159,237,18,135,17,230,100,143,165,135,79,16,151,231,114,199,40,237,115,211,50,147,242,186,234,181,38,47,147,153,20,165,125,148,246,169,215,154,204,203,76,74,63,25,178,106,50,172,158,86,88,237,110,135,56,140,120,145,198,202,26,51,69,183,192,60,207,43,113,21,227,201,148,121,74,251,44,61,124,130,62,28,16,135,17,250,112,64,189,214,68,92,142,131,248,15,148,246,153,81,218,231,166,40,237,115,145,163,227,132,179,218,221,14,205,198,50,173,160,76,79,43,46,162,180,207,139,108,237,108,211,238,118,104,119,59,52,27,203,188,72,209,45,80,116,11,20,221,2,243,234,181,38,150,57,217,67,92,158,139,56,151,210,62,183,69,79,43,90,65,153,102,99,25,75,47,44,66,18,113,86,79,43,90,65,153,162,91,224,69,60,175,68,179,177,204,85,21,221,2,226,245,56,136,59,161,177,178,198,76,179,177,140,213,211,138,179,244,194,34,55,109,60,153,34,94,141,131,184,53,138,110,129,25,115,178,135,213,211,10,203,243,74,204,219,218,217,230,235,82,116,11,140,70,167,88,122,97,17,113,121,14,119,80,102,82,50,147,242,166,25,141,78,201,76,202,193,225,128,121,173,160,204,89,158,87,162,221,237,208,211,138,121,213,74,192,77,27,141,78,217,92,223,192,170,215,154,136,203,115,185,163,142,142,19,170,149,0,165,125,222,20,74,251,28,28,14,136,195,136,203,104,54,150,49,39,123,244,146,33,175,107,52,58,197,82,218,167,232,22,152,55,158,76,201,76,202,209,113,130,57,217,163,159,12,177,182,118,182,17,87,227,114,7,41,237,83,175,53,121,19,197,97,196,89,253,100,200,135,156,175,177,178,70,63,217,224,117,29,29,39,196,97,196,101,180,187,29,170,149,0,165,125,196,213,184,136,43,201,76,138,165,180,207,117,203,76,138,213,238,118,176,226,48,226,101,60,175,196,214,206,54,155,235,27,188,142,106,37,32,14,35,90,65,153,179,244,194,34,86,181,18,224,121,37,230,141,39,83,196,229,185,136,75,203,76,202,76,102,82,148,246,185,41,245,90,147,106,37,96,115,125,3,107,52,58,197,243,74,156,199,243,74,180,187,29,226,48,226,232,56,161,217,88,230,170,60,175,196,204,135,31,125,204,101,140,39,83,196,213,184,136,91,67,105,159,121,158,87,226,39,127,255,148,209,232,20,207,43,241,34,205,198,50,230,100,143,56,140,168,86,2,60,175,196,85,181,130,50,253,100,200,135,188,216,120,50,69,188,26,135,107,146,153,148,55,157,210,62,87,145,153,148,171,106,5,101,226,48,98,158,231,149,184,140,198,202,26,214,254,179,93,198,147,41,87,165,23,22,177,70,163,83,198,147,41,227,201,148,241,100,202,120,50,101,60,153,50,158,76,25,79,166,136,87,231,112,77,148,246,249,38,80,218,71,105,31,165,125,46,146,153,20,75,105,159,171,210,11,139,88,7,135,3,174,202,243,74,180,187,29,250,201,144,204,164,136,219,199,65,92,59,165,125,94,36,51,41,153,73,153,151,153,148,204,164,204,196,97,196,104,116,202,85,85,43,1,214,209,113,194,85,85,43,1,214,209,113,130,184,25,46,215,40,51,41,74,251,136,139,101,38,101,115,125,131,203,216,127,182,203,210,195,39,20,221,2,226,205,224,112,141,148,246,17,47,166,180,79,43,40,51,111,213,100,172,154,140,85,147,49,175,159,12,57,56,28,112,21,74,251,188,42,207,43,33,110,150,203,27,42,51,41,74,251,188,76,102,82,148,246,201,147,94,88,132,36,98,213,100,156,167,21,148,209,11,139,88,213,74,192,101,141,39,83,50,147,34,110,47,135,55,204,193,225,128,131,195,1,71,199,9,153,73,121,25,165,125,242,86,173,4,88,61,173,56,107,213,100,244,147,33,213,74,64,179,177,140,231,149,184,172,162,91,224,232,56,193,170,86,2,196,237,227,32,206,117,112,56,32,51,41,55,65,105,159,118,183,195,121,122,90,97,109,174,111,48,26,157,242,50,227,201,148,121,230,100,15,203,243,74,136,219,199,225,13,146,153,148,235,82,173,4,92,36,51,41,175,171,94,107,210,238,118,232,105,69,79,43,122,90,209,211,138,86,80,102,107,103,27,107,115,125,131,193,254,115,70,163,83,46,82,116,11,204,12,246,159,211,79,134,180,187,29,94,197,104,116,138,184,89,46,111,16,165,125,174,139,210,62,23,81,218,231,58,212,107,77,172,56,140,176,218,221,14,245,90,147,162,91,224,39,127,255,148,193,254,115,226,48,34,14,35,90,65,25,189,176,72,181,18,48,239,232,56,193,156,236,209,79,134,88,173,160,76,179,177,140,184,157,92,238,176,204,164,40,237,51,175,94,107,242,50,153,73,81,218,199,202,76,138,210,62,95,151,106,37,32,14,35,90,65,153,122,173,201,188,102,99,153,106,37,224,232,56,33,14,35,72,34,226,48,226,60,173,160,140,94,88,164,217,88,230,85,29,29,39,88,213,74,128,184,25,46,111,128,204,164,40,237,115,89,74,251,204,40,237,243,117,58,58,78,176,26,43,107,20,221,2,103,121,94,137,102,99,153,102,99,153,209,232,148,163,227,132,153,106,37,192,242,188,18,215,173,232,22,24,79,166,136,235,229,114,135,41,237,99,41,237,147,183,204,164,88,71,199,9,51,213,74,128,210,62,153,73,177,148,246,185,72,102,82,246,159,237,210,79,134,88,158,87,226,101,60,175,68,179,177,204,77,169,86,2,226,48,98,115,125,131,173,157,109,60,175,196,104,116,138,210,62,226,122,184,136,75,59,56,28,96,78,246,232,39,67,206,19,135,17,86,43,40,163,23,22,177,170,149,0,165,125,50,147,98,29,29,39,152,147,61,250,201,144,153,86,80,230,54,240,188,18,91,59,219,108,174,111,176,185,190,193,214,206,54,158,87,98,60,153,34,174,135,139,120,169,131,195,1,113,24,49,179,106,50,94,164,151,12,33,137,176,226,48,226,60,171,38,195,234,105,69,222,198,147,41,69,183,192,121,60,175,196,214,206,54,155,235,27,108,174,111,176,181,179,141,231,149,24,79,166,136,215,231,34,46,148,153,148,253,103,187,244,147,33,214,170,201,184,140,85,147,113,91,13,246,159,99,78,246,104,172,172,225,121,37,206,227,121,37,182,118,182,217,92,223,96,255,217,46,75,15,159,80,116,11,140,39,83,172,204,164,40,237,35,174,206,65,156,235,224,112,192,230,250,6,253,100,200,170,201,88,53,25,55,165,159,12,201,75,181,18,208,79,134,108,174,111,48,216,127,206,69,60,175,68,187,219,161,159,12,57,56,28,48,79,105,31,241,106,10,63,120,244,195,31,33,254,157,131,195,1,113,24,97,173,154,140,155,244,222,100,202,63,221,43,240,254,226,247,41,22,53,47,51,216,127,206,183,75,111,81,44,106,94,69,177,168,121,127,241,251,220,255,242,215,124,250,217,231,60,120,235,1,223,253,147,119,112,29,135,241,100,138,235,56,204,188,251,206,247,120,240,214,3,226,48,226,193,91,15,248,179,119,255,140,233,191,254,30,241,234,28,196,191,147,153,148,56,140,176,86,77,70,94,246,159,237,114,25,230,100,143,253,103,187,188,14,207,43,241,225,71,31,211,238,118,136,195,136,95,60,125,204,104,116,138,53,158,76,25,79,166,204,212,107,77,90,65,153,56,140,24,141,78,17,175,199,225,142,200,76,74,30,54,215,55,176,86,77,70,30,122,90,97,245,147,33,131,253,231,188,140,94,88,164,159,12,185,78,253,100,200,230,250,6,153,73,153,25,79,166,88,69,183,64,99,101,13,235,232,56,65,188,30,135,156,101,38,37,51,41,87,165,180,207,77,202,76,202,193,225,0,107,213,100,228,169,221,237,208,10,202,196,97,196,96,255,57,231,25,79,166,204,27,141,78,121,85,227,201,148,159,126,242,136,56,140,104,5,101,182,118,182,177,54,215,55,200,76,202,204,120,50,197,242,188,18,237,110,135,56,140,200,76,138,120,117,14,57,202,76,202,209,113,194,209,113,194,109,20,135,17,171,38,35,47,61,173,176,234,181,38,141,149,53,172,56,140,24,236,63,103,52,58,101,94,209,45,96,85,43,1,151,49,158,76,57,107,60,153,50,216,127,206,255,252,155,191,166,159,12,105,119,59,124,248,209,199,204,219,92,223,224,224,112,64,209,45,48,175,90,9,176,246,159,237,34,94,93,225,7,143,126,248,35,114,82,184,119,159,239,124,187,196,119,203,255,153,194,189,251,220,38,123,255,240,99,126,247,197,87,188,55,153,146,135,158,86,88,91,59,219,20,238,221,167,112,239,62,31,124,240,62,247,191,252,53,159,126,246,57,207,127,246,115,150,255,242,175,112,29,135,241,100,138,235,56,88,89,102,120,254,179,159,243,71,223,249,99,222,125,231,123,92,196,117,28,102,70,163,83,14,126,249,143,236,254,248,255,240,219,95,253,134,86,80,230,127,252,175,255,205,127,249,243,5,172,131,95,254,35,191,253,213,111,216,218,217,230,254,151,191,230,211,207,62,231,193,91,15,120,251,237,119,153,254,235,239,113,29,135,98,81,243,224,173,7,124,250,217,231,124,240,193,251,20,238,221,71,92,157,75,206,148,246,185,109,50,147,210,79,134,172,154,140,60,244,180,194,106,119,59,40,237,51,163,180,207,135,31,125,140,222,127,78,28,70,28,28,14,104,54,150,41,186,5,206,51,26,157,114,158,163,227,4,203,156,236,209,79,134,204,107,5,101,62,252,232,99,230,197,97,68,43,40,163,180,207,210,195,39,240,244,49,113,24,97,213,107,77,198,147,41,86,181,18,16,135,17,71,199,9,245,90,19,113,117,46,130,253,103,187,228,165,167,21,86,187,219,161,90,9,152,87,116,11,88,205,198,50,113,24,97,78,246,160,177,204,204,120,50,101,38,14,35,226,48,226,101,90,65,25,189,176,72,181,18,176,255,108,23,107,60,153,82,116,11,88,131,253,231,88,122,97,145,153,198,202,26,176,75,28,70,88,245,90,19,75,105,159,118,183,67,28,70,212,107,77,196,213,185,124,195,101,38,165,159,12,89,53,25,55,173,167,21,214,214,206,54,74,251,204,43,186,5,102,70,163,83,90,65,153,243,28,29,39,88,237,110,135,179,226,48,194,218,218,217,198,242,188,18,227,201,148,153,126,50,164,21,148,41,186,5,172,241,100,138,57,217,195,170,215,154,204,120,94,137,198,202,26,176,75,28,70,88,245,90,19,171,90,9,136,195,136,131,195,1,245,90,19,113,53,46,223,112,71,199,9,55,173,167,21,86,187,219,161,90,9,80,218,103,94,209,45,48,51,216,127,78,28,70,88,237,110,135,153,241,100,138,101,78,246,176,170,149,0,207,43,113,86,28,70,88,158,87,226,101,14,14,7,244,147,33,237,110,135,179,148,246,105,172,172,1,187,196,97,132,85,175,53,81,218,199,50,39,123,80,107,34,174,198,229,27,206,156,236,113,145,158,86,188,200,170,201,184,72,79,43,102,90,65,153,198,202,26,74,251,156,85,116,11,88,227,201,148,131,195,1,113,24,209,10,202,52,86,214,240,188,18,51,69,183,192,104,116,74,63,25,98,109,174,111,240,183,63,249,59,138,110,129,153,122,173,73,28,70,28,29,39,52,27,203,156,213,10,202,204,140,70,167,196,97,68,43,40,83,175,53,57,171,232,22,64,251,44,61,124,2,79,31,19,135,17,86,189,214,164,221,237,16,135,17,75,136,171,114,249,134,235,39,67,230,245,180,98,166,21,148,209,11,139,84,43,1,51,71,199,9,86,28,70,244,180,226,34,173,160,140,94,88,164,90,9,80,218,231,60,69,183,128,53,158,76,249,197,211,199,244,147,33,237,110,135,122,173,73,209,45,48,111,52,58,101,115,125,131,86,80,166,177,178,198,230,250,6,191,120,250,152,165,135,79,40,186,5,172,162,91,160,21,148,49,39,123,140,107,77,206,210,11,139,196,97,4,159,60,162,159,12,177,26,43,107,188,204,210,195,39,240,244,49,113,24,97,78,246,232,39,67,90,65,25,113,117,46,223,96,153,73,177,86,77,134,213,211,10,171,221,237,80,173,4,40,237,115,86,189,214,196,170,215,154,88,153,73,57,75,105,159,151,41,186,5,198,147,41,214,193,225,128,126,50,164,221,237,208,108,44,51,51,158,76,153,217,92,223,192,106,172,172,161,180,207,214,206,54,155,235,27,240,244,49,75,15,159,80,116,11,88,122,97,145,56,140,88,226,63,170,86,2,204,201,30,253,100,72,43,40,211,88,89,67,105,159,203,88,122,248,4,125,56,192,156,236,209,10,202,52,86,214,16,87,231,34,232,105,197,204,214,206,54,74,251,92,150,210,62,175,98,60,153,50,99,78,246,176,154,141,101,172,241,100,202,204,193,225,128,56,140,176,182,118,182,81,218,199,82,218,167,221,237,16,135,17,250,112,64,189,214,196,170,86,2,226,48,34,51,41,74,251,204,83,218,103,233,225,19,150,128,162,91,192,26,79,166,88,153,73,81,218,199,26,79,166,156,167,94,107,66,173,137,120,117,46,226,255,219,218,217,70,105,159,188,233,133,69,72,34,126,250,201,35,244,194,34,150,57,217,163,159,12,177,90,65,153,198,202,26,74,251,204,171,215,154,88,113,24,97,213,107,77,174,170,232,22,176,50,68,30,92,196,191,217,218,217,70,105,159,175,67,189,214,196,50,39,123,196,97,132,213,10,202,180,187,29,170,149,0,165,125,46,82,175,53,177,226,48,194,156,236,161,23,22,185,140,209,232,20,207,43,33,242,229,34,104,119,59,40,237,243,117,170,215,154,80,107,178,196,213,213,107,77,172,56,140,32,137,104,119,59,40,237,243,34,74,251,204,83,218,71,220,60,151,111,48,165,125,254,246,39,127,199,93,85,116,11,140,39,83,172,122,173,73,189,214,36,51,41,74,251,92,198,120,50,69,228,203,65,220,105,69,183,192,60,165,125,196,237,229,32,238,188,162,91,64,220,13,14,226,206,26,79,166,88,227,201,20,113,55,56,136,59,109,60,153,34,238,14,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,254,31,138,139,84,86,129,172,169,120,0,0,0,0,73,69,78,68,174,66,96,130137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,18,68,73,68,65,84,120,1,237,193,65,136,35,89,126,224,225,159,67,170,167,122,179,4,177,136,129,145,13,195,108,15,44,44,36,44,114,160,139,196,104,200,216,202,83,163,171,64,144,232,146,52,108,227,99,22,84,129,105,211,110,232,75,21,84,249,102,198,208,232,18,36,196,162,171,216,67,119,53,18,36,164,176,17,97,225,177,124,216,83,227,25,123,4,107,18,2,25,222,234,33,177,235,152,221,104,52,218,204,172,202,76,101,84,230,212,255,251,254,224,95,255,151,253,223,8,33,114,225,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,136,223,97,77,130,16,119,197,65,124,207,154,132,201,52,198,154,4,33,238,130,131,16,91,172,73,16,119,163,136,248,158,210,30,141,122,192,135,78,105,15,113,55,28,132,16,185,113,16,66,228,198,65,136,127,99,77,130,184,123,14,66,252,27,165,61,196,221,115,16,183,98,77,194,125,102,77,194,109,156,141,135,124,251,213,231,136,221,112,248,64,88,147,112,23,148,246,216,100,77,66,94,172,73,184,140,53,9,41,165,61,174,98,77,194,101,206,198,67,250,97,196,32,158,115,54,30,34,110,207,225,3,161,180,199,93,177,38,33,163,180,71,94,148,246,184,140,210,30,111,99,77,130,210,30,23,57,27,15,233,135,17,98,183,28,196,173,41,237,241,16,41,237,113,145,179,241,144,126,24,209,242,43,180,252,10,169,90,213,71,220,158,131,16,27,172,73,232,135,17,153,65,60,167,229,87,80,218,67,220,158,131,16,255,143,53,9,207,159,62,35,213,242,43,100,244,222,62,98,55,138,136,7,237,108,60,196,204,70,164,244,222,62,25,51,27,145,209,123,251,212,170,62,147,105,204,166,90,213,71,105,143,204,233,201,107,82,45,191,194,166,90,213,71,236,70,17,113,239,89,147,160,180,199,54,107,18,250,97,196,247,226,136,11,197,17,253,48,98,91,63,140,104,119,59,52,234,1,103,227,33,131,120,78,203,175,144,25,196,115,82,74,123,136,221,40,242,123,200,154,4,165,61,126,95,40,237,97,77,130,210,30,23,105,119,59,4,205,3,82,139,197,57,167,39,175,25,196,115,82,71,198,146,234,105,197,145,177,108,234,105,69,63,140,48,179,17,131,120,206,69,218,221,14,98,119,28,196,189,103,77,130,210,30,219,92,183,76,202,204,70,100,92,183,204,147,79,190,224,47,254,242,175,104,249,21,122,90,145,58,50,150,109,71,198,114,100,44,131,120,78,170,229,87,216,86,171,250,100,172,73,16,183,227,112,135,172,73,120,31,148,246,200,131,53,9,214,36,220,53,165,61,46,178,92,173,105,119,59,12,226,57,139,197,57,219,158,124,242,5,45,191,66,79,43,174,107,16,207,105,249,21,148,246,200,40,237,33,110,167,200,29,82,218,227,62,179,38,33,165,180,199,117,157,141,135,100,26,245,128,119,97,77,66,74,105,143,139,88,147,160,180,199,85,172,73,152,76,99,204,108,196,32,158,147,57,61,121,205,199,159,126,73,202,154,132,204,147,79,190,96,240,39,255,149,158,86,92,151,222,219,231,34,214,36,40,237,33,174,175,200,7,202,154,132,155,178,38,97,147,53,9,74,123,92,198,154,132,201,52,38,211,168,7,92,68,105,143,171,88,147,112,122,242,154,65,60,39,115,100,44,61,173,24,196,115,248,197,103,60,249,228,11,148,246,176,38,33,85,42,22,120,241,234,37,207,159,62,35,213,242,43,232,189,125,182,153,217,136,65,60,103,83,173,234,115,17,165,61,196,205,20,121,96,172,73,72,41,237,241,190,40,237,81,171,250,76,166,49,181,170,143,210,30,215,97,77,130,210,30,111,99,77,66,74,105,15,107,18,78,79,94,51,136,231,28,25,203,166,35,99,73,245,226,57,124,245,57,205,195,99,92,183,204,98,113,206,114,181,198,117,203,180,187,29,82,65,243,128,11,53,15,104,46,206,153,76,99,250,97,68,166,84,44,176,92,173,17,187,81,248,211,207,254,236,207,121,64,10,143,30,83,120,244,152,219,42,60,122,76,225,209,99,10,143,30,115,19,133,71,143,249,241,143,63,162,240,232,49,111,83,120,244,152,95,253,250,59,50,255,60,255,13,63,254,241,71,108,179,38,225,175,39,99,126,244,195,50,235,213,146,201,52,230,143,42,127,200,122,181,228,249,211,103,252,143,223,252,43,71,198,114,153,63,94,173,249,111,255,98,120,243,245,55,252,224,223,255,128,63,170,252,33,63,208,255,142,212,71,63,249,41,31,253,228,167,92,165,84,210,124,244,147,159,242,243,253,159,241,230,235,111,120,243,245,55,252,124,255,103,20,30,61,70,236,70,225,79,63,251,179,63,71,220,185,31,253,176,204,63,207,127,67,173,234,243,31,62,250,79,92,228,175,39,99,204,108,196,63,254,114,204,63,254,114,204,234,127,126,199,79,254,115,157,201,52,230,31,254,238,239,57,50,150,183,249,227,213,154,191,125,84,224,31,254,238,239,121,243,245,55,252,193,63,253,13,255,177,246,95,184,200,114,181,166,232,56,108,43,149,52,63,223,255,25,111,190,254,134,199,255,242,75,230,75,248,213,175,191,227,87,191,254,142,95,253,250,59,126,244,195,50,133,71,143,17,215,87,68,228,66,105,143,70,61,224,109,244,222,62,25,51,27,49,153,198,244,195,136,35,99,185,174,118,183,195,101,134,167,111,232,135,17,237,110,135,160,121,192,54,215,45,211,238,118,232,135,17,196,17,155,250,97,68,203,175,208,60,60,70,105,15,241,238,138,136,123,193,154,4,51,27,161,247,246,201,232,189,125,250,97,196,182,158,86,100,142,140,229,34,237,110,135,160,121,192,69,134,167,111,232,135,17,169,126,24,145,10,154,7,108,11,154,7,212,170,62,174,91,102,185,90,99,77,66,106,50,141,233,135,17,131,248,25,237,110,135,70,61,64,188,27,7,113,111,153,217,136,212,145,177,100,122,90,209,242,43,180,252,10,87,169,85,125,46,83,171,250,108,170,85,125,46,227,186,101,82,165,98,1,215,45,227,186,101,130,230,1,47,94,189,36,213,15,35,172,73,16,239,198,65,220,27,205,195,99,82,102,54,194,204,70,108,235,105,69,203,175,240,241,167,95,162,247,246,185,72,79,43,82,174,91,230,50,174,91,166,221,237,208,242,43,180,187,29,92,183,204,117,185,110,153,23,175,94,146,154,76,99,196,187,41,114,15,89,147,160,180,199,135,168,86,245,153,240,127,153,217,136,109,205,195,99,82,65,243,128,126,24,209,211,138,35,99,217,212,238,118,120,155,160,121,0,205,3,182,45,87,107,74,197,2,155,150,171,53,165,98,129,109,174,91,70,92,143,195,61,164,180,199,135,74,105,143,90,213,167,86,245,25,196,115,50,61,173,104,119,59,184,110,153,76,187,219,97,215,74,197,2,219,74,197,2,23,89,174,214,136,235,113,16,223,179,38,193,154,132,247,65,105,15,165,61,82,74,123,40,237,145,58,50,150,76,173,234,179,41,104,30,144,234,105,197,166,90,213,39,15,103,227,33,226,122,28,196,111,89,147,144,177,38,225,125,251,246,171,207,73,245,180,226,42,47,94,189,228,125,88,44,206,233,135,17,169,70,61,64,188,155,34,226,222,57,27,15,25,196,115,222,133,235,150,105,119,59,244,194,136,219,90,174,214,148,138,5,174,178,88,156,51,153,198,244,195,136,212,139,87,47,17,239,174,200,142,88,147,160,180,199,67,165,180,135,53,9,41,165,61,118,193,154,4,165,61,174,203,204,70,108,234,105,197,85,130,230,1,102,54,98,16,207,73,41,237,177,92,173,41,21,11,92,199,183,95,125,206,32,158,211,242,43,92,100,16,207,201,180,252,10,205,195,99,148,246,16,239,174,200,142,40,237,241,208,41,237,177,11,214,36,40,237,161,180,199,77,12,226,57,45,191,66,243,240,152,231,79,159,241,46,154,135,199,12,226,103,164,172,73,112,221,50,215,165,247,246,33,142,24,196,115,182,181,252,10,45,191,130,222,219,167,86,245,81,218,67,92,95,17,177,115,74,123,188,141,53,9,74,123,100,172,73,80,218,99,147,235,150,121,241,234,37,167,39,175,25,196,115,38,211,152,160,121,192,69,92,183,76,187,219,161,31,70,76,166,49,65,243,128,235,170,85,125,250,97,68,187,219,161,81,15,16,187,87,100,135,172,73,80,218,67,92,206,154,4,165,61,82,214,36,100,148,246,200,180,252,10,25,165,61,62,254,244,75,154,139,115,92,183,204,85,130,230,1,102,54,162,31,70,212,170,62,174,91,230,58,92,183,140,184,91,14,59,164,180,135,184,154,210,30,214,36,76,166,49,147,105,204,100,26,51,153,198,156,141,135,100,244,222,62,131,120,206,98,113,78,169,88,32,229,186,101,222,197,147,79,190,32,117,122,242,154,155,104,249,21,204,108,132,184,27,14,31,56,107,18,238,11,107,18,172,73,168,85,125,82,147,105,204,117,44,87,107,74,197,2,237,110,135,65,60,103,177,56,231,186,244,222,62,131,120,142,184,27,14,15,200,217,120,200,217,120,136,53,9,187,162,180,199,125,161,180,71,106,50,141,73,245,195,136,197,226,156,119,85,42,22,72,213,170,62,169,201,52,230,166,172,73,16,187,87,228,129,56,27,15,201,76,166,49,141,122,192,67,53,153,198,244,195,136,150,95,97,211,183,179,17,131,120,206,166,231,79,159,241,226,213,75,92,183,204,69,150,171,53,165,98,129,77,74,123,136,251,201,225,129,168,85,125,50,141,122,192,46,156,141,135,88,147,112,93,214,36,220,70,173,234,147,26,196,115,6,241,156,65,60,103,16,207,25,196,115,46,50,153,198,92,166,84,44,176,75,181,170,79,106,50,141,17,187,87,228,129,80,218,163,81,15,216,165,90,213,231,38,148,246,184,13,165,61,90,126,133,65,60,231,200,88,182,245,180,162,229,87,104,30,30,51,153,198,212,170,62,215,97,77,130,184,159,28,30,48,107,18,110,194,154,132,148,210,30,239,139,222,219,231,50,71,198,50,136,231,76,166,49,65,243,0,215,45,115,29,147,105,76,170,86,245,17,247,139,195,239,1,107,18,174,67,105,143,140,210,30,239,67,163,30,208,242,43,244,180,98,91,79,43,82,253,48,98,120,250,134,235,50,179,17,41,215,45,35,238,23,135,7,76,105,143,148,210,30,121,179,38,193,154,4,107,18,182,89,147,96,77,194,219,52,15,143,73,245,180,34,211,211,138,150,95,161,221,237,208,242,43,244,195,136,225,233,27,22,139,115,222,197,240,244,13,131,120,78,187,219,225,54,106,85,159,82,177,128,53,9,98,119,138,136,119,98,77,194,100,26,99,102,35,6,241,156,109,45,191,130,222,219,167,86,245,73,41,237,177,201,154,4,165,61,54,41,237,241,226,213,75,158,63,125,70,79,43,82,237,110,135,160,121,192,111,53,15,208,167,111,232,135,17,253,48,162,229,87,208,123,251,212,170,62,155,38,211,152,148,153,141,24,196,115,90,126,133,160,121,192,77,76,166,49,153,229,106,141,235,150,89,174,214,136,221,40,34,174,116,54,30,98,102,35,6,241,156,204,145,177,108,235,197,115,136,35,250,97,68,170,221,237,80,171,250,40,237,145,82,218,227,34,74,123,188,120,245,146,231,79,159,209,242,43,4,205,3,54,5,205,3,106,85,159,201,52,166,31,70,16,71,244,195,136,203,180,252,10,205,195,99,174,178,92,173,41,21,11,188,139,197,226,28,215,45,179,92,173,17,183,87,68,92,200,154,132,211,147,215,12,226,57,169,35,99,185,202,145,177,100,122,90,209,15,35,250,97,68,187,219,161,86,245,81,218,227,34,214,36,156,158,188,38,213,60,60,230,34,174,91,38,104,30,16,52,15,88,44,206,153,76,99,54,213,170,62,41,215,45,243,46,74,197,2,151,49,179,17,155,148,246,88,174,214,148,138,5,150,171,53,41,107,18,148,246,16,215,87,68,252,127,206,198,67,250,97,68,234,200,88,174,235,200,88,50,189,48,162,31,70,180,252,10,122,111,159,77,102,54,98,16,207,73,181,252,10,174,91,230,109,92,183,76,208,60,224,174,12,226,57,169,201,52,166,81,15,184,136,210,30,226,102,138,136,223,113,54,30,210,15,35,82,71,198,114,91,71,198,146,234,197,115,136,35,46,163,247,246,121,95,150,171,53,165,98,129,197,226,156,140,153,141,40,53,15,88,174,214,164,150,171,53,165,98,129,229,106,141,184,185,34,226,123,103,227,33,253,48,34,117,100,44,187,116,100,44,151,233,105,69,30,134,167,111,168,85,125,92,183,204,166,82,177,64,106,50,141,73,181,252,10,131,120,206,199,252,174,197,226,28,165,61,196,205,57,60,16,214,36,220,165,179,241,144,126,24,113,100,44,71,198,242,251,200,204,70,156,158,188,230,109,244,222,62,169,197,226,156,82,177,64,70,105,15,113,59,14,15,132,210,30,119,197,154,132,126,24,241,62,153,217,136,171,44,87,107,82,195,211,55,12,79,223,112,19,122,111,159,65,60,103,177,56,231,34,181,170,79,202,204,70,164,148,246,72,149,138,5,196,110,56,8,78,79,94,147,58,50,150,247,101,16,207,217,180,88,156,179,169,84,44,144,233,135,17,195,211,55,92,87,163,30,144,58,61,121,205,69,92,183,76,106,16,207,217,102,77,130,184,61,135,91,176,38,193,154,132,135,236,108,60,100,16,207,57,50,150,247,109,120,250,134,140,235,150,201,44,87,107,50,65,243,128,150,95,161,31,70,44,22,231,92,71,169,88,160,221,237,48,136,231,44,22,231,92,164,221,237,176,105,185,90,147,114,221,50,226,246,28,110,73,105,143,135,204,204,70,188,79,61,173,200,244,195,136,197,226,156,109,165,98,129,77,205,195,99,82,167,39,175,185,174,70,61,32,117,122,242,154,109,203,213,154,90,213,39,99,77,66,106,185,90,179,92,173,177,38,65,220,142,195,45,40,237,241,144,89,147,48,136,231,28,25,203,251,208,211,138,212,139,87,47,121,241,234,37,169,211,147,215,92,102,185,90,147,114,221,50,237,110,135,65,60,103,177,56,231,58,74,197,2,237,110,135,65,60,103,177,56,103,155,210,30,169,150,95,65,105,143,77,74,123,136,219,113,248,128,157,158,188,102,91,79,43,122,90,209,211,138,158,86,220,149,158,86,164,94,188,122,137,210,30,174,91,166,221,237,48,136,231,252,247,95,124,198,98,113,206,85,106,85,159,212,100,26,115,149,229,106,205,114,181,102,185,90,179,109,50,141,201,44,87,107,50,237,110,135,65,60,199,154,4,177,91,69,62,96,131,120,78,166,167,21,153,150,95,33,211,139,231,100,142,140,229,182,122,90,145,106,249,21,154,135,199,40,237,81,42,22,72,5,205,3,82,253,48,98,16,63,163,229,87,104,30,30,227,186,101,150,171,53,155,92,183,76,203,175,208,15,35,130,230,1,239,98,120,250,6,51,27,49,136,231,164,250,97,68,173,234,227,186,101,68,62,138,124,160,172,73,200,244,180,162,229,87,104,30,30,163,180,199,166,39,128,53,9,147,105,76,47,140,72,29,25,203,77,244,180,34,213,238,118,104,212,3,82,165,98,129,212,114,181,38,213,168,7,212,170,62,167,39,175,25,196,115,6,241,51,218,221,14,65,243,128,109,122,111,31,226,136,197,226,28,215,45,179,92,173,201,88,147,144,154,76,99,204,108,196,32,158,147,105,119,59,164,250,97,196,100,26,211,168,7,108,10,154,7,244,195,136,201,52,166,81,15,16,187,83,228,3,53,153,198,100,94,188,122,137,210,30,151,81,218,163,81,15,168,85,125,38,211,152,94,24,145,57,50,150,171,244,180,34,211,238,118,168,85,125,148,246,72,149,138,5,82,203,213,154,77,74,123,124,252,233,151,240,139,207,24,196,115,250,97,68,42,104,30,176,169,86,245,233,135,17,207,159,62,227,109,90,126,5,189,183,79,163,30,144,178,38,161,31,70,244,195,136,70,61,96,91,203,175,96,102,35,168,7,136,221,41,242,1,107,249,21,154,135,199,40,237,177,205,154,4,165,61,54,41,237,209,168,7,52,234,1,103,227,33,102,54,162,23,207,185,74,203,175,160,247,246,105,212,3,54,149,138,5,150,171,53,219,74,197,2,153,230,225,49,131,248,25,169,126,24,209,168,7,148,138,5,150,171,53,165,98,129,77,45,191,66,70,239,237,147,169,85,125,148,246,72,89,147,144,153,76,99,50,103,227,33,141,122,192,38,189,183,79,63,140,120,130,216,165,34,31,168,70,61,128,122,192,101,148,246,184,74,163,30,64,61,224,9,96,77,194,100,26,147,169,85,125,148,246,184,202,114,181,102,91,169,88,32,181,92,173,73,41,237,209,238,118,232,135,17,41,107,18,208,30,169,229,106,77,166,229,87,120,242,201,23,188,141,210,30,153,90,213,167,31,70,164,250,97,68,173,234,163,180,71,106,185,90,147,177,38,65,105,15,177,27,14,226,214,148,246,104,212,3,26,245,128,70,61,64,105,143,155,88,174,214,44,87,107,54,213,170,62,111,51,136,231,88,147,112,29,174,91,166,229,87,200,76,166,49,155,106,85,159,212,100,26,35,118,199,65,252,150,53,9,247,145,210,30,237,110,135,148,210,30,155,38,211,152,204,100,26,115,29,139,197,57,205,195,99,218,221,14,45,191,66,63,140,216,164,180,135,216,61,7,241,91,74,123,220,87,102,54,162,229,87,216,214,15,35,90,126,133,155,80,218,195,117,203,4,205,3,154,135,199,164,206,198,67,54,181,252,10,102,54,66,236,142,131,184,215,172,73,24,196,115,244,222,62,155,206,198,67,82,205,195,99,90,126,5,51,27,113,93,203,213,154,229,106,141,210,30,45,191,66,63,140,216,54,136,231,136,221,113,16,247,218,100,26,147,170,85,125,50,214,36,244,195,136,150,95,193,117,203,232,189,125,6,241,156,219,104,30,30,147,58,27,15,201,232,189,125,196,110,57,136,7,65,105,143,148,53,9,207,159,62,35,245,241,167,95,178,201,154,132,155,82,218,163,221,237,208,15,35,172,73,216,100,77,130,216,13,7,241,32,156,141,135,156,141,135,60,127,250,140,84,187,219,97,185,90,179,75,141,122,64,234,249,211,103,136,187,225,32,238,181,70,61,160,229,87,232,135,17,253,48,162,229,87,72,153,217,136,212,114,181,166,86,245,217,149,23,175,94,146,250,246,171,207,201,40,237,33,118,163,136,184,247,158,124,242,5,77,147,160,180,71,74,143,135,244,195,8,61,30,210,168,7,236,146,210,30,237,110,135,126,24,65,28,209,238,118,16,187,83,68,60,8,74,123,100,26,245,0,51,27,209,15,35,106,85,159,201,52,102,151,26,245,128,70,61,64,236,158,131,120,144,158,124,242,5,169,231,79,159,209,15,35,90,126,5,165,61,196,253,86,68,60,88,127,241,151,127,197,217,120,72,170,81,15,16,247,95,17,241,160,53,234,1,226,225,112,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,113,16,66,228,198,65,8,145,27,7,33,68,110,28,132,16,185,249,63,125,189,151,88,33,98,213,21,0,0,0,0,73,69,78,68,174,66,96,130137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,20,132,73,68,65,84,120,1,237,193,111,136,35,233,157,216,241,175,75,213,143,246,25,92,174,61,29,220,233,69,134,189,25,188,47,130,94,68,46,4,65,194,218,72,59,125,196,158,149,201,43,129,96,80,142,107,54,220,112,92,32,153,129,30,48,107,206,11,3,97,23,118,238,157,201,5,35,8,98,160,14,189,89,18,57,176,246,92,36,104,210,189,9,162,70,248,44,191,14,129,196,130,91,6,138,62,120,78,133,52,157,123,156,40,238,232,250,127,171,107,167,119,126,159,207,215,254,230,111,147,3,132,16,169,112,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,16,66,164,198,65,8,145,26,7,33,68,106,28,132,16,169,113,120,205,236,238,13,72,76,140,16,95,6,135,215,76,169,24,32,196,151,197,229,53,163,180,143,16,95,22,7,33,68,106,28,132,16,169,113,16,98,69,98,98,196,213,112,16,98,133,210,62,226,106,56,8,33,82,227,32,132,72,141,131,16,127,39,49,49,226,234,57,8,241,119,148,246,17,87,207,65,92,74,98,98,94,101,137,137,17,175,14,7,113,41,74,251,28,150,152,152,180,36,38,230,56,137,137,177,148,246,57,73,98,98,68,122,28,196,165,37,38,102,73,105,159,180,40,237,115,28,165,125,78,147,152,24,165,125,68,122,28,196,165,41,237,115,29,41,237,35,210,229,32,132,72,141,131,16,255,87,98,98,196,213,114,184,38,18,19,147,152,24,113,49,137,137,57,141,210,62,71,73,76,204,238,222,128,196,196,136,203,113,185,38,148,246,121,221,36,38,70,105,159,196,196,40,237,179,42,49,49,74,251,156,133,210,62,23,145,152,152,71,15,183,177,204,100,200,157,247,63,68,92,156,139,120,37,237,238,13,176,74,197,0,165,125,78,147,117,51,88,179,249,130,117,73,76,204,163,135,219,136,245,113,16,175,156,221,189,1,75,163,113,68,98,98,142,226,121,57,86,101,221,12,235,144,152,152,71,15,183,177,26,65,30,75,23,106,136,203,113,184,66,137,137,249,50,37,38,38,49,49,95,85,179,249,130,165,217,124,193,58,237,60,125,130,213,8,242,44,149,138,1,226,114,92,174,144,210,62,215,209,238,222,128,165,74,185,206,85,74,76,140,210,62,86,98,98,148,246,169,148,235,36,38,102,52,142,40,21,3,148,246,57,77,98,98,178,94,14,43,49,49,75,74,251,156,215,238,222,128,126,52,165,17,228,177,250,209,20,75,105,31,43,49,49,74,251,136,243,115,249,10,83,218,231,178,18,19,163,180,207,105,18,19,51,26,71,44,149,138,1,74,251,88,137,137,81,218,103,213,238,222,0,51,25,82,189,247,128,209,56,194,170,148,235,28,166,180,207,82,98,98,148,246,89,181,187,55,160,215,13,89,106,4,121,116,161,134,153,12,233,71,83,26,65,30,93,168,81,42,6,140,198,17,150,153,12,209,133,26,165,98,128,210,62,75,187,123,3,122,221,144,70,144,231,176,102,187,197,146,210,62,226,98,92,174,153,196,196,88,74,251,92,149,82,49,96,73,105,159,179,24,141,35,14,27,141,35,42,229,58,150,210,62,171,18,19,99,38,67,172,157,167,79,208,133,26,86,98,98,148,246,25,141,35,172,221,189,1,149,114,29,75,105,159,147,52,219,45,204,100,72,63,154,66,20,178,212,143,166,16,133,244,186,33,255,159,40,164,215,13,105,182,91,212,171,155,236,239,191,160,215,13,57,74,169,24,32,46,207,229,154,81,218,231,170,41,237,115,21,18,19,51,26,71,88,102,50,196,210,133,26,102,50,196,76,134,232,66,141,209,56,98,85,98,98,148,246,57,77,165,92,39,91,221,228,206,124,65,98,98,118,158,62,161,31,77,177,182,76,66,71,43,182,76,194,170,78,55,196,76,134,244,163,41,86,35,200,179,212,143,166,88,74,251,136,203,115,16,169,25,141,35,204,100,136,153,12,177,116,161,134,165,11,53,214,33,49,49,86,214,205,224,121,57,238,222,127,76,179,221,194,234,104,197,150,73,56,202,150,73,232,71,83,172,70,144,103,85,179,221,66,172,135,131,88,139,82,49,224,176,82,49,224,56,186,80,67,23,106,28,166,11,53,142,51,26,71,36,38,230,40,137,137,41,21,3,172,209,56,98,105,54,95,48,155,47,168,148,235,52,219,45,46,163,84,12,16,235,225,34,214,66,105,159,74,185,206,73,42,229,58,187,128,153,12,209,133,26,135,153,201,16,93,168,113,156,209,56,162,82,174,179,180,187,55,192,76,134,244,163,41,75,189,110,72,169,24,224,121,57,172,196,196,88,245,234,38,86,167,27,114,30,253,104,74,35,200,227,121,57,102,243,5,137,137,81,218,71,92,156,139,72,85,169,24,176,51,25,98,149,138,1,163,113,196,89,148,138,1,75,187,123,3,122,221,16,107,203,36,44,117,180,226,209,195,109,62,250,228,99,60,47,71,194,111,212,171,155,244,186,33,86,35,200,163,11,53,86,153,201,144,126,52,229,48,93,168,97,101,221,12,89,47,199,210,108,190,64,156,159,139,248,210,236,60,125,130,165,11,53,142,83,42,6,88,74,251,36,38,102,231,233,19,250,209,148,45,147,176,106,203,36,116,180,226,209,195,109,154,237,22,245,234,38,251,251,47,88,106,182,91,152,201,144,187,247,31,115,164,234,38,119,230,11,118,247,6,244,186,33,39,201,186,25,102,243,5,226,124,50,223,255,224,7,63,68,164,102,49,159,241,63,254,106,143,249,95,255,119,116,161,198,198,239,252,30,102,50,196,218,248,157,223,163,84,12,248,95,211,95,97,149,138,1,74,251,100,54,222,192,26,254,251,127,67,63,154,178,101,18,142,243,173,249,130,231,27,25,126,249,243,95,240,181,255,249,223,248,235,151,89,110,189,117,27,235,214,91,183,121,187,244,46,39,89,188,60,224,155,183,190,201,59,181,111,243,236,167,63,227,151,63,255,5,239,212,190,77,54,171,89,229,58,14,139,151,7,136,179,251,218,223,252,109,114,128,72,77,98,98,150,148,246,177,18,19,51,26,71,148,138,1,74,251,36,38,70,105,159,195,118,247,6,244,186,33,91,38,225,172,58,90,177,244,163,127,247,99,206,107,127,255,5,143,30,110,99,53,130,60,150,46,212,176,74,197,0,165,125,196,249,184,188,38,18,19,163,180,207,151,41,49,49,150,210,62,171,74,197,0,165,125,44,165,125,150,18,19,99,245,186,33,71,233,104,197,150,73,56,78,179,221,226,56,131,157,103,244,186,33,141,32,207,221,251,143,89,229,121,57,154,237,22,189,110,72,63,154,242,107,81,136,213,235,134,52,130,60,186,80,163,82,174,35,206,198,229,53,144,152,24,43,49,49,74,251,188,170,18,19,163,180,207,82,98,98,70,227,8,51,25,98,109,153,132,165,142,86,44,117,180,98,203,36,28,214,209,138,70,144,167,94,221,228,40,251,251,47,232,117,67,172,126,52,69,239,60,163,94,221,100,85,189,186,73,189,186,201,97,251,251,47,24,141,35,122,221,16,162,16,171,82,174,35,78,231,32,82,163,180,143,210,62,199,81,218,231,176,209,56,194,234,71,83,182,76,194,170,102,187,69,179,221,226,56,213,123,15,56,143,217,124,193,89,120,94,142,122,117,147,63,251,209,159,211,8,242,244,186,33,137,137,17,167,115,88,147,196,196,188,170,148,246,81,218,71,105,159,52,37,38,230,44,148,246,81,218,103,85,169,24,96,38,67,86,117,180,162,217,110,81,175,110,114,18,207,203,113,28,207,203,209,108,183,104,4,121,154,237,22,245,234,38,89,55,195,121,100,221,12,119,222,255,16,107,52,142,16,167,115,88,19,165,125,196,255,145,152,24,75,105,159,117,235,104,69,35,200,83,175,110,98,213,171,155,88,29,173,88,234,104,69,35,200,115,154,122,117,147,187,247,31,83,175,110,114,94,179,249,130,217,124,193,146,153,12,17,167,115,16,107,167,180,207,105,18,19,115,88,98,98,86,121,94,142,163,232,66,141,195,154,237,22,171,116,161,198,101,204,230,11,102,243,5,179,249,130,217,124,193,108,190,96,54,95,48,155,47,152,205,23,136,139,113,88,163,196,196,136,223,72,76,76,98,98,18,19,179,74,105,31,43,49,49,137,137,81,218,231,172,234,213,77,14,43,21,3,172,142,86,164,45,49,49,150,46,212,16,167,115,88,35,165,125,196,111,140,198,17,163,113,196,104,28,113,28,165,125,148,246,57,202,96,231,25,253,104,202,82,71,43,142,226,121,57,154,237,22,86,71,43,172,82,49,32,13,143,30,110,99,149,138,1,226,116,14,175,185,196,196,172,91,98,98,118,247,6,28,182,187,55,224,56,137,137,217,221,27,176,187,55,32,49,49,75,189,110,200,170,70,144,231,40,245,234,38,141,32,207,101,237,239,191,96,54,95,112,146,196,196,236,238,13,248,215,127,252,71,88,205,118,11,165,125,196,233,92,94,1,187,123,3,74,197,0,165,125,210,166,180,207,186,141,198,17,71,73,76,140,210,62,171,70,227,136,165,209,56,162,84,12,88,106,182,91,152,201,144,78,52,197,234,71,83,238,114,180,234,189,7,244,163,109,46,99,231,233,19,250,209,20,171,17,228,89,213,143,166,44,53,130,60,213,123,15,80,218,71,156,141,203,151,44,49,49,214,104,28,81,41,215,249,42,40,21,3,70,227,136,139,40,21,3,148,246,217,221,27,96,149,138,1,20,3,224,9,253,104,202,170,217,124,65,214,205,96,121,94,142,102,187,69,175,27,50,26,71,212,171,155,156,151,46,212,32,10,177,250,209,148,195,26,65,158,102,187,133,85,42,6,40,237,35,206,199,229,75,166,180,79,165,92,231,58,73,76,140,210,62,199,81,218,167,82,174,179,187,55,192,42,21,3,148,246,57,78,169,24,96,141,198,17,75,165,98,64,175,27,98,121,94,142,187,247,31,163,119,158,97,38,67,14,203,186,25,14,171,87,55,49,147,33,189,110,72,169,24,224,121,57,206,163,84,12,232,117,67,154,237,22,149,114,29,177,94,14,95,97,137,137,73,76,204,186,41,237,115,22,165,98,64,169,24,160,180,207,73,148,246,81,218,167,84,12,80,218,231,176,209,56,98,169,94,221,228,238,253,199,156,166,122,239,1,214,206,211,39,156,151,231,229,176,204,100,136,88,63,135,107,44,49,49,39,81,218,71,105,159,85,137,137,89,74,76,204,85,81,218,71,105,159,179,82,218,103,73,105,31,203,76,134,156,151,231,229,104,182,91,244,163,41,251,251,47,56,175,70,144,167,31,77,17,235,231,240,21,144,152,152,243,80,218,103,73,105,159,87,81,98,98,154,237,22,253,104,202,96,231,25,231,85,42,6,88,163,113,196,121,233,66,13,43,49,49,98,189,28,174,49,165,125,44,165,125,210,150,152,152,196,196,36,38,102,85,98,98,18,19,115,81,137,137,121,244,112,155,94,55,196,234,117,67,246,247,95,112,30,158,151,163,17,228,49,147,33,151,145,152,24,177,62,46,226,66,148,246,57,137,210,62,135,37,38,70,105,159,165,196,196,236,60,125,194,146,46,212,48,147,33,86,63,154,178,106,231,233,19,238,222,127,204,210,254,254,11,60,47,199,105,250,209,148,187,156,79,169,24,208,235,134,140,198,17,245,234,38,179,249,2,177,30,46,226,220,18,19,179,52,26,71,44,149,138,1,150,210,62,171,148,246,57,76,105,159,126,52,229,255,137,66,150,182,76,66,71,43,172,102,187,133,153,12,89,229,121,57,46,106,54,95,144,117,51,156,197,254,254,11,60,47,199,108,190,64,92,158,139,56,147,196,196,140,198,17,102,50,164,31,77,57,74,175,27,98,53,130,60,186,80,163,84,12,80,218,231,56,205,118,139,94,55,100,203,36,172,218,50,9,29,173,176,238,222,127,204,58,101,221,12,103,165,180,207,108,190,32,235,102,152,205,23,88,137,137,81,218,71,156,159,139,56,81,98,98,70,227,136,94,55,100,105,203,36,156,164,19,77,33,10,233,117,67,26,65,30,93,168,81,41,215,89,85,42,6,244,186,33,29,173,216,50,9,71,233,117,67,74,197,0,207,203,113,94,253,104,74,179,221,98,221,148,246,17,23,227,34,142,148,152,152,209,56,162,215,13,177,182,76,194,89,109,153,132,165,78,52,133,40,164,215,13,105,182,91,148,138,1,74,251,88,74,251,52,219,45,122,221,144,85,29,173,88,122,244,112,155,143,62,249,24,207,203,113,86,131,157,103,88,165,98,192,105,102,243,5,89,55,195,73,102,243,5,89,55,195,108,190,64,92,156,139,248,123,118,247,6,244,186,33,75,91,38,225,162,182,76,130,213,209,138,94,55,164,215,13,105,4,121,116,161,70,165,92,167,84,12,48,147,33,157,104,202,150,73,176,58,90,209,8,242,232,66,13,171,215,13,121,244,112,155,102,187,69,169,24,224,121,57,78,178,191,255,130,94,55,164,17,228,241,188,28,167,201,186,25,206,98,127,255,5,74,251,136,139,115,185,38,18,19,163,180,207,85,218,221,27,208,235,134,88,91,38,97,157,182,76,194,82,39,154,66,20,210,235,134,52,130,60,186,80,163,193,144,78,52,197,106,182,91,212,171,155,44,149,138,1,59,79,159,208,235,134,244,186,33,141,32,143,46,212,40,21,3,172,209,56,98,201,76,134,244,163,41,86,245,222,3,46,195,76,134,36,197,0,165,125,44,165,125,196,229,184,92,19,74,251,92,149,221,189,1,102,50,164,31,77,177,182,76,194,85,218,50,9,75,157,104,10,81,200,82,35,200,83,175,110,114,152,231,229,184,243,254,135,84,77,204,104,28,209,235,134,16,133,244,186,33,71,105,4,121,170,247,30,224,121,57,46,98,52,142,176,250,209,20,120,66,245,222,3,148,246,17,151,231,242,26,75,76,204,206,211,39,244,163,41,214,150,73,72,219,150,73,176,58,90,97,85,239,61,192,218,223,127,129,231,229,88,202,186,25,178,94,142,122,117,147,122,117,147,253,253,23,172,242,188,28,39,153,205,23,100,221,12,103,213,108,183,232,117,67,224,9,213,123,15,80,218,71,92,142,203,107,40,49,49,59,79,159,208,143,166,88,91,38,225,85,225,121,57,44,207,203,177,52,155,47,200,186,25,14,243,188,28,231,149,117,51,156,133,153,12,105,4,121,42,229,58,86,175,27,162,11,17,149,114,29,113,57,14,175,153,196,196,60,122,184,77,63,154,98,109,153,132,87,69,35,200,115,148,172,155,97,93,102,243,5,199,153,205,23,236,239,191,160,31,77,209,133,26,89,55,67,165,92,199,50,147,33,137,137,17,151,227,240,26,106,182,91,52,130,60,86,71,43,58,90,241,42,208,133,26,39,153,205,23,236,239,191,96,127,255,5,23,245,151,63,254,83,6,59,207,56,206,104,28,97,149,138,1,179,249,2,171,217,110,209,143,166,40,237,35,46,199,229,53,163,180,79,165,92,135,114,157,59,64,98,98,70,227,136,78,55,100,105,203,36,164,169,163,21,150,153,12,161,186,201,73,30,61,220,198,106,182,91,148,138,1,158,151,227,36,179,249,130,165,172,155,193,234,117,67,42,229,58,89,55,195,210,108,190,224,48,165,125,178,110,134,217,124,65,169,24,208,235,134,36,38,70,105,31,113,113,14,175,57,165,125,42,229,58,31,125,242,49,205,118,11,171,163,21,29,173,184,106,29,173,232,104,197,89,204,230,11,172,143,62,249,152,70,144,167,215,13,121,244,112,155,193,206,51,206,67,23,106,88,187,123,3,78,146,152,24,177,126,153,239,127,240,131,31,34,200,108,188,193,205,155,183,248,206,123,223,227,27,185,175,115,219,253,130,191,248,194,240,124,35,195,243,141,12,223,154,47,88,151,142,86,60,223,200,96,53,219,45,254,228,79,254,21,55,222,188,193,167,159,125,206,230,119,223,195,117,28,86,185,142,131,235,56,100,179,154,183,75,239,242,78,237,219,188,241,197,95,241,233,103,159,115,227,205,27,220,122,235,54,179,249,130,197,203,3,22,47,15,112,29,7,203,117,28,92,199,193,117,28,172,91,111,221,230,39,255,241,63,112,219,253,130,183,75,239,98,205,230,11,150,110,222,188,197,103,63,233,243,91,191,251,219,220,122,235,54,139,151,7,252,215,209,30,191,252,249,47,248,253,127,250,251,100,54,222,64,92,156,139,248,123,42,229,58,148,235,84,77,204,104,28,209,235,134,116,180,194,218,50,9,23,213,209,138,165,102,187,69,165,92,39,235,102,152,205,23,148,138,1,189,110,200,238,222,128,74,185,78,214,205,112,18,207,203,113,247,254,99,244,206,51,122,221,16,51,25,114,247,254,99,78,51,155,47,104,182,91,244,186,33,213,253,23,120,94,142,163,152,201,16,170,155,88,102,50,196,82,218,71,92,78,230,251,31,252,224,135,188,198,18,19,147,217,120,131,85,137,137,81,218,231,230,205,91,124,231,189,239,241,141,220,215,249,229,207,127,193,243,141,12,207,55,50,124,107,190,224,44,58,90,241,124,35,195,243,141,12,141,32,207,63,218,108,240,47,238,255,75,190,121,235,155,44,94,30,176,120,121,128,149,217,120,131,141,95,141,248,244,179,207,121,247,221,119,200,102,53,171,102,243,5,174,227,48,155,47,112,29,7,235,214,91,183,185,241,230,13,62,253,236,115,110,188,121,131,91,111,221,102,213,108,190,96,241,242,0,215,113,88,188,60,224,230,205,91,124,246,147,62,191,245,187,191,205,173,183,110,227,58,14,139,151,7,44,109,252,106,132,245,118,233,93,118,254,203,127,230,211,207,62,167,217,110,113,243,230,45,196,229,100,190,255,193,15,126,200,107,44,179,241,6,71,201,108,188,193,97,55,111,222,226,59,239,125,143,111,228,190,206,109,247,11,254,226,11,195,243,141,12,207,55,50,60,223,200,240,124,35,195,243,141,12,207,55,50,60,223,200,240,124,35,195,243,141,12,86,179,221,226,15,254,224,159,243,246,63,254,14,55,111,222,194,90,188,60,96,213,63,248,135,1,207,126,250,51,158,253,244,103,188,83,251,54,100,20,174,227,176,228,58,14,179,249,2,107,241,242,0,215,113,176,110,189,117,155,27,111,222,160,215,13,217,252,238,123,44,94,30,176,120,121,192,226,229,1,139,151,7,44,45,94,30,176,244,141,220,215,233,117,67,54,191,251,30,174,227,224,58,14,139,151,7,88,211,25,124,250,217,231,220,120,243,6,189,110,72,35,200,243,79,254,217,31,34,46,207,69,156,75,165,92,135,114,157,59,192,238,222,0,203,76,134,28,166,11,53,172,82,49,64,105,159,179,82,218,231,163,79,62,230,209,195,109,30,61,220,166,217,110,81,175,110,114,22,165,98,64,175,27,178,187,55,160,82,174,115,86,137,137,201,122,57,142,210,235,134,52,130,60,119,222,255,16,177,30,46,226,215,18,19,163,180,207,121,84,202,117,126,173,92,103,93,148,246,249,232,147,143,121,244,112,155,94,55,196,76,134,232,66,141,82,49,64,105,159,227,120,94,142,70,144,199,76,134,80,174,115,156,221,189,1,102,50,164,31,77,177,70,227,136,122,117,147,163,52,219,45,42,229,58,98,125,92,196,175,41,237,243,170,80,218,231,207,126,244,231,236,238,13,232,117,67,136,66,122,221,144,70,144,71,23,106,88,165,98,64,2,120,94,142,227,36,38,102,52,142,176,204,100,72,63,154,178,212,108,183,48,147,33,102,50,132,234,38,86,214,205,48,155,47,88,42,21,3,196,122,185,136,87,86,165,92,167,84,12,120,244,112,27,171,31,77,33,10,177,122,221,144,102,187,69,189,186,201,97,253,104,74,255,143,255,136,163,52,130,60,186,80,163,82,174,99,237,2,189,110,200,157,249,130,172,155,65,92,61,23,241,74,83,218,231,163,79,62,230,209,195,109,154,237,22,149,114,157,191,252,241,159,210,143,166,148,138,1,135,245,163,41,86,179,221,98,169,84,12,176,148,246,57,78,98,98,178,94,14,43,235,102,16,87,199,65,188,242,148,246,105,4,121,122,221,144,196,196,244,163,41,205,118,11,207,203,177,180,191,255,2,171,217,110,81,41,215,169,148,235,84,202,117,148,246,81,218,231,40,165,98,128,53,26,71,204,230,11,196,213,115,16,215,66,245,222,3,172,157,167,79,88,154,205,23,44,237,60,125,130,85,41,215,57,43,165,125,14,155,205,23,88,102,50,196,82,218,71,172,151,131,184,22,148,246,105,4,121,250,209,20,171,82,174,99,205,230,11,6,59,207,232,71,83,154,237,22,23,97,38,67,14,235,71,83,26,65,30,177,126,14,226,218,208,133,26,75,89,55,131,181,187,55,160,215,13,105,4,121,42,229,58,231,213,8,242,244,163,41,75,179,249,2,75,23,106,136,245,115,17,215,70,169,24,208,235,134,88,255,233,223,126,64,63,154,114,89,186,80,131,40,100,105,119,111,128,85,42,6,136,245,115,16,215,86,35,200,243,209,39,31,99,233,66,141,139,40,21,3,172,221,189,1,150,153,12,177,148,246,17,235,231,34,174,13,165,125,172,70,144,231,206,251,31,98,37,38,230,50,148,246,177,204,100,72,82,12,232,71,83,154,237,22,226,106,56,136,107,165,217,110,209,143,166,44,141,198,17,86,165,92,231,162,154,237,22,253,104,202,163,135,219,88,149,114,29,113,53,92,196,181,82,42,6,244,186,33,187,123,3,42,229,58,189,110,72,179,221,226,50,42,229,58,75,165,98,128,184,58,46,226,90,81,218,167,17,228,233,117,67,204,100,136,85,42,6,92,86,165,92,71,92,61,23,113,237,84,239,61,0,158,96,125,244,201,199,40,237,35,174,7,23,113,237,40,237,115,231,253,15,17,215,143,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,141,131,16,34,53,14,66,136,212,56,8,33,82,227,32,132,72,205,255,6,79,55,80,208,188,116,150,60,0,0,0,0,73,69,78,68,174,66,96,130137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,20,44,73,68,65,84,120,1,237,193,65,104,99,91,158,216,225,95,174,238,59,122,103,64,156,32,26,90,51,4,122,186,97,96,130,32,40,23,109,36,16,232,78,105,213,104,43,16,24,109,76,145,110,122,55,101,176,33,188,240,166,160,33,84,65,121,118,77,79,40,4,65,24,4,218,100,33,26,2,239,33,129,193,78,224,114,35,50,81,214,33,9,68,139,96,184,40,112,162,139,68,50,167,65,140,70,109,187,108,151,125,159,253,222,255,251,254,209,255,249,191,233,255,67,8,145,9,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,227,123,32,181,9,66,188,4,30,223,3,74,27,132,120,9,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,216,147,218,4,241,52,60,132,216,163,180,65,60,13,15,33,68,102,60,132,16,153,241,16,226,239,164,54,65,60,61,31,33,254,142,210,134,125,169,77,136,102,49,78,189,22,34,62,159,143,248,44,169,77,80,218,240,92,165,54,65,105,195,125,165,54,225,228,232,152,173,122,45,68,124,62,15,241,89,148,54,236,74,109,66,86,82,155,112,147,212,38,56,74,27,110,147,218,132,235,156,159,157,34,30,159,135,248,108,169,77,216,82,218,144,21,165,13,55,81,218,240,41,169,77,80,218,176,239,219,143,95,51,142,23,180,131,18,78,59,40,33,30,135,135,248,108,74,27,94,34,165,13,251,46,46,39,140,227,5,237,160,196,150,46,55,17,143,195,67,100,42,181,9,23,151,19,82,155,144,218,132,212,38,60,23,169,77,24,13,134,236,171,86,2,196,227,240,17,153,138,102,49,78,52,139,217,85,175,133,60,196,197,229,132,173,106,37,192,137,102,49,118,62,197,209,229,38,213,74,128,210,134,139,203,9,91,213,74,128,210,134,93,39,71,199,56,237,160,132,51,142,23,56,74,27,196,227,240,17,47,86,106,19,70,131,33,91,163,193,144,63,16,15,25,13,134,236,27,13,134,56,239,62,188,71,105,195,183,31,191,198,105,7,37,118,117,122,93,196,227,241,121,97,82,155,160,180,225,251,164,90,9,184,77,106,19,148,54,236,139,102,49,78,167,215,165,90,9,136,102,49,118,62,101,28,47,216,58,180,41,125,173,112,14,109,202,174,190,86,156,28,29,211,233,117,25,199,11,218,65,137,125,213,74,128,120,60,62,34,51,169,77,120,8,165,13,215,169,86,2,70,131,33,78,161,80,36,108,180,88,213,66,94,1,23,151,19,70,131,33,125,173,56,180,41,215,57,180,41,125,173,24,13,134,236,27,199,11,28,165,13,226,241,120,188,48,74,27,94,42,165,13,143,169,80,40,226,216,249,148,173,188,159,195,169,215,66,222,125,120,143,211,215,138,155,28,218,20,167,29,148,216,215,233,117,17,143,203,231,9,165,54,65,105,131,248,123,245,90,200,86,106,19,28,165,13,247,145,218,132,104,22,51,26,12,113,198,241,130,198,242,138,66,161,200,46,165,13,239,62,188,231,228,232,152,190,86,28,218,148,190,86,92,103,28,47,104,7,37,118,85,43,1,226,113,249,60,33,165,13,223,181,212,38,68,179,24,167,94,11,249,46,165,54,193,81,218,224,40,109,216,149,218,4,165,13,183,249,246,227,215,140,227,5,251,78,142,142,121,247,225,61,133,66,145,212,38,108,41,109,232,244,186,140,6,67,250,90,209,14,74,56,186,220,196,177,243,41,206,56,94,48,142,23,236,82,218,112,157,212,38,40,109,16,247,231,35,110,149,218,4,165,13,247,149,218,4,71,105,131,147,218,132,104,22,227,212,107,33,215,81,218,112,147,212,38,156,159,157,50,142,23,28,218,148,125,125,173,56,57,58,166,211,235,82,175,133,164,54,97,43,108,180,176,243,41,186,220,36,108,180,248,7,26,45,86,235,13,175,128,139,203,9,118,62,101,28,47,104,7,37,82,155,160,180,97,159,210,6,241,48,185,127,249,213,191,250,43,94,144,212,38,108,214,43,114,95,124,201,93,228,190,248,146,31,255,168,200,159,254,244,207,121,136,220,23,95,146,218,132,255,24,93,242,227,31,21,201,125,241,37,159,146,218,132,243,179,83,254,251,223,94,242,79,254,105,192,102,189,194,249,147,210,31,243,167,63,253,115,156,139,203,9,255,227,127,254,55,126,252,163,34,185,47,190,228,83,166,255,246,95,51,142,23,28,218,148,235,252,243,245,134,255,244,69,142,255,250,159,255,11,95,252,175,136,159,252,179,26,74,27,242,126,14,231,207,170,127,193,79,127,242,51,174,227,123,30,190,231,241,211,159,252,140,63,171,254,5,127,244,143,255,136,127,247,239,255,3,95,254,239,191,229,103,65,136,120,60,62,47,140,210,134,251,82,218,240,80,23,151,19,182,162,89,76,189,22,242,41,209,44,198,209,229,38,231,103,167,108,233,114,147,106,37,32,154,197,108,69,179,152,106,37,96,75,105,195,190,111,63,126,205,56,94,112,104,83,110,115,104,83,156,126,188,96,28,31,227,116,122,93,194,70,139,251,8,27,45,156,209,96,136,190,156,176,171,90,9,80,218,32,30,198,71,220,40,181,9,251,46,46,39,212,107,33,55,73,109,194,46,93,110,226,216,249,20,71,105,195,190,104,22,179,85,173,4,40,109,216,186,184,156,48,142,23,28,218,148,251,106,7,37,174,179,90,111,184,184,156,96,231,83,116,185,73,216,104,177,47,108,180,176,243,41,163,193,144,93,163,193,16,167,211,235,82,175,133,136,251,241,17,55,82,218,112,31,169,77,56,63,59,197,209,229,38,215,73,109,194,109,162,89,76,189,22,178,53,26,12,185,78,95,43,156,67,155,114,157,78,175,75,216,104,177,90,111,216,119,113,57,97,52,24,242,123,241,144,106,37,160,80,40,178,175,113,240,134,198,1,255,64,52,139,177,243,41,163,193,144,209,96,200,187,15,239,81,218,32,238,198,67,220,170,94,11,217,170,86,2,234,181,144,155,68,179,24,71,151,155,220,36,154,197,220,213,197,229,4,231,208,166,108,245,181,162,175,21,157,94,151,219,212,107,33,78,222,207,241,80,133,66,145,66,161,72,161,80,68,105,67,161,80,164,94,11,121,245,250,45,157,94,23,231,252,236,20,113,119,30,226,147,234,181,144,122,45,68,105,195,109,234,181,144,198,193,27,28,59,159,178,207,206,167,124,74,181,18,240,41,157,94,151,176,209,226,58,125,173,104,7,37,242,126,142,155,212,107,33,237,160,132,211,233,117,41,20,138,124,74,222,207,225,228,253,28,121,63,71,189,22,210,233,117,25,199,11,82,155,32,238,198,67,60,42,165,13,213,74,128,99,231,83,236,124,138,157,79,113,116,185,201,109,170,149,0,165,13,91,118,62,101,87,95,43,58,189,46,97,163,133,211,233,117,233,107,197,62,93,110,114,155,188,159,227,231,191,252,53,191,249,55,31,9,27,45,118,173,214,27,238,34,239,231,168,86,2,156,104,22,35,238,198,71,60,169,198,193,27,148,54,108,165,54,193,137,102,49,251,148,54,236,26,199,11,14,109,202,174,122,45,100,171,90,9,24,13,134,236,171,86,2,196,243,228,33,30,157,210,134,198,193,27,26,7,111,80,218,176,75,105,131,210,134,122,45,100,87,181,18,144,218,132,155,244,181,162,29,148,200,251,57,182,10,133,34,237,160,68,95,43,30,75,222,207,113,87,209,44,198,169,86,2,196,221,248,188,64,169,77,80,218,240,156,41,109,184,73,106,19,162,89,76,181,18,160,180,33,181,9,74,27,118,93,92,78,216,167,203,77,246,53,14,222,48,142,143,233,107,197,150,210,134,167,182,92,94,49,26,12,113,148,54,136,187,241,121,97,82,155,224,164,54,65,105,195,75,20,205,98,236,124,74,196,223,171,86,2,148,54,56,169,77,24,13,134,56,125,173,56,180,41,55,41,20,138,116,122,93,70,131,33,91,121,63,199,83,89,173,55,92,92,78,24,13,134,56,239,62,188,71,220,157,207,11,163,180,33,181,9,74,27,158,147,212,38,40,109,248,148,212,38,56,186,220,100,203,206,167,68,64,189,22,226,68,179,24,167,29,148,24,199,11,250,90,113,155,176,209,194,206,167,140,227,5,15,181,90,111,248,203,95,253,130,118,80,66,151,155,236,179,243,41,206,56,94,224,180,131,18,141,131,55,40,109,16,119,231,243,72,82,155,160,180,33,11,74,27,94,130,212,38,40,109,216,74,109,66,52,139,177,243,41,186,220,100,87,181,18,176,101,231,83,156,87,175,223,162,47,39,140,6,67,62,165,113,240,134,113,124,140,179,90,111,200,251,57,238,35,239,231,104,7,37,198,241,2,226,33,215,105,7,37,58,189,46,213,74,64,161,80,196,89,173,55,136,187,243,121,36,74,27,126,200,148,54,108,165,54,65,105,131,210,134,93,209,44,198,206,167,232,114,147,187,72,109,66,216,104,225,140,6,67,110,83,40,20,233,244,186,140,6,67,46,46,39,132,141,22,247,165,203,77,136,135,188,251,240,158,235,20,10,69,182,86,235,13,226,254,60,196,163,83,218,112,157,106,37,64,151,155,216,249,148,125,231,103,167,56,169,77,216,42,20,138,56,97,163,197,95,255,230,111,168,215,66,110,19,54,90,180,131,18,163,193,144,229,242,138,251,170,86,2,156,104,22,163,180,65,105,131,210,6,165,13,74,27,86,235,13,171,245,134,213,122,131,120,24,143,71,148,218,4,241,135,82,155,144,218,4,165,13,245,90,136,46,55,177,243,41,118,62,197,209,229,38,186,220,36,181,9,231,103,167,108,77,206,191,97,43,239,231,200,251,57,62,165,113,240,6,231,252,236,148,251,42,20,138,136,167,229,241,136,148,54,124,159,165,54,225,226,114,66,106,19,82,155,112,23,169,77,136,102,49,231,103,167,164,54,193,169,86,2,28,93,110,82,175,133,212,107,33,213,74,64,52,139,113,116,185,137,99,231,83,238,171,80,40,210,233,117,25,199,11,150,203,43,238,171,29,148,176,243,41,226,105,120,252,192,165,54,225,174,162,89,140,19,205,98,162,89,76,106,19,110,146,218,132,139,203,9,209,44,198,206,167,232,114,147,243,179,83,46,46,39,56,141,131,55,212,107,33,78,106,19,206,207,78,113,116,185,137,157,79,113,198,241,130,201,249,55,220,87,181,18,224,68,179,152,135,24,199,11,196,211,240,120,68,169,77,120,105,148,54,60,148,210,134,219,216,249,20,71,151,155,56,186,220,196,206,167,68,179,152,104,22,115,113,57,33,181,9,209,44,198,177,243,41,118,62,101,28,47,216,26,13,134,44,151,87,220,135,210,134,135,210,229,38,78,106,19,196,227,243,121,68,74,27,190,175,82,155,112,95,186,220,196,206,167,232,114,147,106,37,32,154,197,232,114,147,106,37,224,228,232,24,103,52,24,114,157,118,80,98,28,47,112,162,89,76,216,104,113,157,213,122,67,222,207,33,94,6,31,113,39,74,27,170,149,0,39,154,197,124,138,210,134,106,37,224,124,62,197,137,102,49,91,74,27,182,14,109,202,190,190,86,56,127,253,155,191,33,181,9,133,66,145,155,228,253,28,251,82,155,32,158,39,15,113,103,74,27,148,54,212,107,33,245,90,200,125,217,249,148,173,78,175,203,77,14,109,202,56,94,112,113,57,161,80,40,114,95,209,44,70,60,79,62,47,88,106,19,148,54,220,87,106,19,148,54,56,169,77,80,218,240,20,148,54,52,14,222,160,180,193,73,43,1,74,27,156,122,45,100,52,24,210,215,138,67,155,178,171,175,21,206,104,48,196,9,27,45,238,195,206,167,56,245,90,136,120,94,60,190,7,82,155,112,31,74,27,182,148,54,60,37,165,13,91,74,27,118,117,122,93,156,190,86,108,245,181,194,233,244,186,180,131,18,163,193,144,223,253,246,43,150,203,43,238,98,114,254,13,227,120,65,167,215,37,239,231,16,207,139,207,11,166,180,193,81,218,144,181,212,38,108,41,109,216,149,218,4,71,105,195,109,234,181,16,103,52,24,210,215,10,167,211,235,82,175,133,228,253,28,171,90,136,190,156,48,26,12,25,199,199,180,131,18,186,220,164,90,9,216,23,205,98,156,209,96,72,59,40,17,54,90,60,134,212,38,40,109,16,143,195,71,60,136,210,134,219,40,109,216,149,218,4,165,13,251,234,181,16,103,52,24,210,14,74,132,141,22,91,121,63,71,216,104,81,173,4,68,179,152,209,96,8,241,144,209,96,200,77,218,65,137,198,193,27,30,202,206,167,56,39,71,199,188,251,240,158,66,161,200,106,189,65,60,14,31,113,111,169,77,80,218,112,19,165,13,251,148,54,236,74,109,130,19,205,98,236,124,138,211,56,120,195,117,10,133,34,97,163,69,216,104,177,92,94,17,205,98,246,85,43,1,78,161,80,228,83,86,235,13,121,63,199,117,198,241,130,173,147,163,99,222,125,120,79,161,80,100,181,222,32,62,159,143,184,147,212,38,40,109,112,148,54,108,165,54,33,154,197,124,138,157,79,113,198,241,130,235,180,131,18,133,66,145,79,41,20,138,132,141,22,159,35,239,231,184,77,167,215,165,90,9,56,57,58,230,252,236,148,87,175,223,146,247,115,172,214,27,156,212,38,40,109,16,247,231,35,238,68,105,195,86,106,19,162,89,204,104,48,228,33,14,109,202,174,190,86,232,114,147,167,178,92,94,17,205,98,194,70,139,219,76,206,191,193,169,86,2,10,133,34,239,62,188,231,228,232,24,125,57,33,108,180,216,82,218,32,30,198,71,220,89,106,19,162,89,204,104,48,100,235,208,166,60,134,106,37,224,169,68,179,152,209,96,72,216,104,113,157,213,122,67,222,207,97,231,83,118,21,10,69,218,65,137,209,96,72,181,18,80,40,20,89,173,55,136,135,243,17,119,114,113,57,97,52,24,226,28,218,148,239,194,228,252,27,156,176,209,226,49,229,253,28,206,56,94,208,14,74,20,10,69,182,26,7,111,24,199,199,68,179,152,106,37,64,105,131,120,56,143,23,34,181,9,223,149,139,203,9,163,193,16,231,208,166,60,133,104,22,115,23,163,193,144,223,253,246,43,150,203,43,30,211,228,252,27,156,198,193,27,118,21,10,69,218,65,137,209,96,136,210,6,241,121,60,94,8,165,13,89,75,109,194,95,254,234,23,140,6,67,14,109,202,161,77,121,42,118,62,229,54,171,245,134,176,209,162,211,235,50,142,23,156,28,29,179,92,94,241,24,150,203,43,70,131,33,78,52,139,217,167,203,77,156,212,38,136,207,227,33,254,64,106,19,190,253,248,53,39,71,199,56,135,54,229,169,244,181,194,25,199,11,150,203,43,110,146,247,115,56,97,163,197,187,15,239,113,78,142,142,89,46,175,184,171,213,122,195,117,206,207,78,113,218,65,137,209,96,200,114,121,197,174,106,37,64,60,14,15,241,123,169,77,184,184,156,240,237,199,175,57,57,58,102,28,47,56,180,41,135,54,229,169,117,122,93,156,243,179,83,174,179,90,111,216,85,40,20,121,247,225,61,237,160,196,201,209,49,203,229,21,119,145,247,115,236,91,46,175,24,199,11,58,189,46,63,255,229,175,113,206,207,78,113,86,235,13,187,162,89,140,248,60,62,63,80,169,77,136,102,49,206,104,48,100,215,161,77,201,66,95,43,218,65,137,122,45,196,25,13,134,232,243,111,8,27,45,118,229,253,28,251,10,133,34,175,94,191,101,252,171,95,112,114,116,204,187,15,239,41,20,138,124,202,106,189,33,239,231,216,138,102,49,78,181,18,176,90,111,232,244,186,140,6,67,94,173,55,228,253,28,171,245,134,173,106,37,64,124,30,159,31,160,139,203,9,163,193,144,93,135,54,37,75,125,173,112,26,7,111,112,234,181,16,59,159,50,26,12,113,194,70,139,125,171,245,134,188,159,99,43,239,231,120,247,225,61,39,71,199,156,159,157,242,243,95,254,154,79,201,251,57,238,34,181,9,104,131,19,205,98,28,165,13,226,243,120,252,0,217,249,148,93,135,54,37,75,125,173,112,58,189,46,74,27,182,94,189,126,75,59,40,49,26,12,249,213,191,120,205,228,252,27,150,203,43,110,83,40,20,233,244,186,140,227,5,203,229,21,251,86,235,13,215,89,173,55,56,118,62,197,81,218,224,84,43,1,78,52,139,201,251,57,156,209,96,72,59,40,33,62,159,199,15,208,171,215,111,121,247,225,61,157,94,23,167,175,21,89,233,107,133,211,233,117,169,215,66,246,233,114,147,173,209,96,200,201,209,49,191,251,237,87,76,206,191,33,181,9,215,9,27,45,156,243,179,83,118,45,151,87,92,92,78,176,243,41,251,242,126,142,173,118,80,98,75,105,131,99,231,83,150,203,43,190,253,248,53,78,227,224,13,226,243,249,252,64,41,109,168,215,66,170,149,128,243,179,83,250,241,2,231,208,166,60,149,190,86,56,157,94,151,122,45,100,43,239,231,88,173,55,56,213,74,192,104,48,228,221,135,247,56,209,44,102,52,24,66,60,100,52,24,210,233,117,9,27,45,246,117,122,93,70,131,33,252,246,43,198,241,130,187,26,199,11,218,65,137,93,157,94,151,209,96,200,56,62,198,233,244,186,40,109,16,159,207,231,123,44,181,9,209,44,166,90,9,80,218,112,29,165,13,175,94,191,69,95,78,24,13,134,244,181,194,57,180,41,143,169,175,21,78,167,215,165,94,11,217,202,251,57,86,235,13,251,162,89,76,216,104,17,54,90,132,141,22,203,229,21,231,103,167,140,6,67,156,176,209,98,87,181,18,48,26,12,25,199,11,218,65,9,93,110,226,84,43,1,209,44,102,52,24,226,172,214,27,242,126,14,103,185,188,194,209,229,38,187,234,181,144,173,106,37,64,105,131,120,28,62,223,99,74,27,170,149,128,219,164,54,65,105,67,189,22,82,175,133,92,92,78,24,13,134,244,181,194,57,180,41,159,163,175,21,78,59,40,209,56,120,131,210,6,39,239,231,88,173,55,172,214,27,118,41,109,112,236,124,10,141,22,91,133,66,145,87,175,223,194,199,175,25,13,134,84,43,1,133,66,145,125,157,94,151,176,209,226,54,171,245,134,188,159,227,54,245,90,72,222,207,177,90,111,16,143,199,231,123,78,105,195,109,148,54,236,170,215,66,234,181,144,212,38,156,159,157,210,143,23,236,58,180,41,119,209,215,138,173,78,175,75,189,22,178,107,181,222,112,147,118,80,194,89,173,55,228,253,28,91,121,63,199,214,249,217,41,63,255,229,175,217,82,218,176,181,90,111,184,206,106,189,97,87,52,139,113,170,149,128,188,159,99,181,222,176,107,181,222,32,30,151,143,184,150,210,134,87,175,223,242,10,72,109,66,52,139,177,243,41,253,120,193,93,117,122,93,234,181,144,251,210,229,38,163,193,144,87,252,33,93,110,66,60,100,28,47,104,44,175,40,20,138,124,174,66,161,136,200,134,143,248,189,212,38,40,109,184,142,210,134,122,45,132,90,200,43,32,181,9,209,44,198,206,167,236,211,229,38,213,74,128,210,134,207,149,218,132,124,161,200,214,106,189,97,87,52,139,9,27,45,156,212,38,220,69,222,207,177,101,231,83,218,65,9,145,29,31,241,123,74,27,238,74,105,67,189,22,66,45,228,41,84,43,1,163,193,144,104,22,19,54,90,108,229,253,28,187,236,124,10,141,22,119,149,218,132,124,161,136,179,90,111,24,199,11,58,189,46,91,121,63,199,106,189,65,60,29,15,241,236,40,109,184,137,157,79,113,58,189,46,227,120,193,114,121,133,19,205,98,156,106,37,96,95,181,18,176,107,181,222,144,218,132,173,213,122,131,200,134,135,120,150,218,65,9,59,159,178,90,111,184,78,181,18,224,68,179,152,229,242,138,209,96,72,167,215,69,105,195,77,162,89,204,106,189,193,137,102,49,78,181,18,176,43,239,231,216,74,109,130,120,92,30,226,89,210,229,38,227,120,129,179,90,111,216,213,14,74,40,109,232,244,186,140,6,67,78,142,142,105,7,37,170,149,128,235,40,109,216,103,231,83,28,165,13,206,106,189,65,60,61,31,241,172,165,54,65,105,195,214,56,94,208,14,74,56,245,90,72,181,18,16,205,98,170,149,0,165,13,119,53,142,23,116,122,93,118,173,214,27,242,126,142,45,165,13,226,113,121,136,103,169,94,11,113,162,89,140,179,90,111,88,173,55,56,186,220,100,75,105,67,189,22,162,180,225,54,237,160,132,157,79,113,46,46,39,136,239,134,135,120,182,218,65,9,59,159,178,149,218,132,173,188,159,227,62,116,185,201,56,94,224,216,249,20,167,94,11,217,183,90,111,16,79,199,67,60,91,186,220,100,28,47,72,109,194,174,106,37,96,181,222,112,31,245,90,136,243,237,199,175,25,199,11,58,189,46,34,123,30,226,217,170,86,2,156,104,22,227,68,179,24,71,105,195,67,188,251,240,30,167,211,235,82,175,133,136,236,249,136,103,75,105,67,59,40,49,26,12,169,86,2,70,131,33,237,160,196,67,41,109,120,245,250,45,226,187,227,33,158,181,198,193,27,156,147,163,99,156,198,193,27,196,203,229,35,158,53,165,13,239,62,188,39,154,197,84,43,1,74,27,196,203,229,35,158,61,165,13,245,90,136,120,249,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,198,67,8,145,25,15,33,68,102,60,132,16,153,241,16,66,100,230,255,3,60,141,73,148,29,171,86,59,0,0,0,0,73,69,78,68,174,66,96,130137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,220,0,0,0,165,8,6,0,0,0,55,119,147,136,0,0,20,212,73,68,65,84,120,1,237,193,79,136,35,237,157,216,241,175,75,53,143,222,231,37,149,50,98,201,234,16,227,125,13,75,18,4,65,46,116,145,64,160,218,209,233,141,146,67,72,147,134,166,47,157,193,49,190,165,39,204,128,177,99,191,224,75,119,232,94,114,9,27,48,186,136,38,21,116,201,65,89,216,221,49,18,8,186,195,34,106,133,99,57,176,16,200,33,27,11,98,26,10,25,158,168,40,37,217,199,65,139,208,118,207,244,31,117,121,230,157,223,231,243,149,95,253,239,244,255,34,132,200,133,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,108,73,77,130,120,26,46,66,108,81,218,231,242,106,136,153,141,208,149,22,141,122,136,216,13,23,33,182,92,94,13,233,247,34,172,14,35,168,135,136,221,112,16,98,67,106,18,250,189,8,241,52,28,132,248,75,169,73,176,198,23,231,88,157,160,140,165,43,45,196,238,56,8,241,151,148,246,185,188,26,50,136,231,116,130,50,226,105,56,136,71,73,77,194,251,44,53,9,119,145,154,132,126,47,162,19,148,217,84,171,6,136,221,113,17,143,162,180,207,166,212,36,40,237,147,135,212,36,40,237,179,41,53,9,147,105,204,90,163,30,178,150,154,132,53,165,125,172,212,36,40,237,243,250,229,43,54,13,226,57,157,160,140,210,62,98,119,92,196,163,165,38,65,105,31,75,105,31,43,53,9,147,105,140,213,168,135,236,90,106,18,38,211,152,109,253,94,196,166,126,47,162,19,148,25,196,115,54,117,130,50,205,131,99,148,246,185,188,26,98,117,130,50,155,116,165,133,216,45,23,241,104,74,251,188,77,106,18,148,246,217,165,241,197,57,131,120,206,109,142,76,138,213,213,138,65,60,231,200,164,108,234,198,115,6,241,43,246,14,247,233,247,34,58,65,153,109,181,106,128,216,45,23,177,115,151,87,67,54,77,166,49,86,163,30,178,107,39,103,167,40,237,147,154,132,201,52,198,204,70,12,226,57,93,173,56,50,41,71,38,229,38,71,38,165,171,21,253,94,196,182,65,60,199,82,218,71,236,150,131,200,77,106,18,118,69,87,90,172,21,221,2,158,87,34,108,182,249,252,219,63,226,228,236,148,78,80,166,171,21,111,115,100,82,110,211,9,202,136,221,115,120,143,164,38,225,203,170,86,13,80,218,103,23,82,147,176,54,190,56,103,109,153,173,88,44,174,177,158,191,248,130,189,195,125,186,90,177,173,171,21,93,173,232,106,197,109,116,165,133,216,61,151,247,136,210,62,95,6,141,122,72,106,18,38,211,24,171,86,13,80,218,231,161,82,147,160,180,79,106,18,198,23,231,12,226,57,107,131,120,142,30,191,33,108,182,217,148,154,132,176,217,198,234,246,34,222,101,16,207,217,84,171,6,136,221,115,17,79,66,105,159,90,53,96,50,141,81,218,231,49,148,246,185,188,26,210,239,69,88,71,38,101,173,171,21,253,94,132,21,54,219,160,125,172,212,36,44,179,21,97,179,141,153,141,176,154,7,199,120,94,137,77,203,108,69,106,18,38,211,152,126,47,66,60,173,194,119,191,247,253,31,34,158,68,225,217,39,124,237,107,159,241,88,151,87,67,250,189,8,235,200,164,108,250,102,182,226,155,217,138,139,159,255,87,190,242,23,127,202,124,9,95,251,218,103,20,158,125,66,209,45,96,253,110,237,247,248,221,218,239,81,44,106,182,185,142,67,177,168,249,236,235,223,224,31,252,195,127,196,167,95,253,148,159,255,244,103,124,242,203,255,194,55,130,16,177,91,133,239,126,239,251,63,228,137,164,38,161,240,236,19,196,195,165,38,225,223,252,235,223,199,58,50,41,183,249,102,182,226,63,252,210,240,243,159,254,140,63,250,79,3,158,253,98,194,255,48,255,135,207,190,254,13,238,227,179,175,127,131,79,191,250,41,255,241,143,254,51,127,179,244,55,248,237,223,42,177,202,150,20,158,125,130,120,60,151,39,164,180,207,83,185,188,26,98,213,170,1,74,251,188,79,46,175,134,212,170,1,74,251,220,71,106,18,148,246,217,244,250,229,43,172,35,147,242,46,71,38,197,234,106,197,32,158,67,28,209,168,135,20,221,2,155,134,227,55,152,217,8,93,105,17,54,219,108,11,155,109,204,108,68,191,23,209,239,69,108,234,4,101,116,165,69,163,30,34,238,207,229,3,85,171,6,76,166,49,79,45,53,9,74,251,220,71,173,26,240,16,74,251,108,186,188,26,98,29,153,148,77,93,173,56,50,41,55,233,106,133,117,114,118,202,77,134,227,55,244,123,17,191,22,71,88,141,122,136,85,116,11,172,53,15,142,209,149,152,77,102,54,98,16,207,33,142,232,247,34,78,206,78,81,218,71,220,157,203,7,38,53,9,150,210,62,141,122,200,83,83,218,231,109,82,147,48,153,198,88,181,106,128,210,62,74,251,236,66,191,23,177,169,171,21,107,93,173,56,50,41,55,217,59,220,199,243,74,44,179,21,69,183,192,38,51,27,177,173,232,22,216,230,121,37,194,102,155,101,182,226,175,212,67,158,3,151,87,67,250,189,136,215,47,95,241,251,255,246,223,33,238,206,229,3,163,180,207,111,90,106,18,38,211,152,53,51,27,241,107,213,128,219,164,38,97,50,141,169,85,3,148,246,121,151,212,36,88,71,38,197,234,106,133,117,114,118,202,100,26,211,239,69,220,166,86,13,176,138,110,129,109,205,131,99,154,7,252,154,231,149,120,151,162,91,96,91,163,30,98,245,123,17,151,87,67,26,245,16,113,55,14,31,185,203,171,33,151,87,67,46,175,134,92,94,13,185,43,51,27,177,166,43,45,172,201,52,38,53,9,155,82,147,144,154,132,201,52,198,154,76,99,82,147,240,46,147,105,204,182,189,195,125,60,175,68,173,26,112,147,174,86,116,130,50,158,87,226,54,158,87,66,105,31,207,43,241,80,69,183,64,216,108,99,153,217,8,113,119,14,226,222,148,246,209,149,22,86,173,26,96,233,74,11,51,27,49,190,56,39,53,9,169,73,184,188,26,50,153,198,76,166,49,247,101,102,35,214,186,90,209,9,202,132,205,54,150,231,149,232,4,101,186,90,177,77,87,90,108,90,102,43,182,21,221,2,226,55,195,65,252,149,90,53,224,174,204,108,132,53,153,198,220,215,100,26,147,154,132,251,208,149,22,155,154,7,199,188,205,50,91,97,21,221,2,187,180,204,86,44,179,21,203,108,133,165,43,45,196,221,57,124,228,106,213,128,90,53,224,62,82,147,176,205,204,70,232,74,139,230,193,49,74,251,188,203,100,26,115,147,212,36,164,38,97,91,173,26,176,201,243,74,236,29,238,211,213,138,77,181,106,128,85,116,11,220,102,153,173,120,168,162,91,160,232,22,184,188,26,98,213,170,1,226,238,28,62,114,74,251,40,237,211,168,135,40,237,115,87,186,210,98,205,204,70,88,181,106,128,210,62,150,210,62,181,106,192,125,164,38,193,122,253,242,21,131,120,206,187,52,234,33,86,87,43,186,90,113,87,69,183,192,109,150,217,138,183,89,44,174,25,142,223,208,239,69,116,130,50,74,251,136,187,115,17,247,166,180,79,163,30,178,118,201,255,167,180,143,149,154,4,165,125,148,246,185,77,173,26,176,77,105,159,203,171,33,111,179,204,86,20,221,2,86,209,45,112,114,118,202,235,151,175,120,172,225,248,13,107,181,106,192,166,201,52,198,50,179,17,131,120,142,181,119,184,79,163,30,34,238,199,69,60,90,163,30,178,73,105,159,219,212,170,1,74,251,220,164,232,22,48,179,17,157,160,140,174,180,232,247,34,186,90,177,169,232,22,216,228,121,37,246,14,247,233,247,34,30,171,223,139,176,250,189,136,219,236,29,238,83,171,6,120,94,137,101,182,66,220,143,203,123,34,53,9,150,210,62,95,38,141,122,200,229,213,144,90,53,64,105,159,155,164,38,65,105,159,101,182,98,16,207,233,4,101,194,102,27,171,223,139,176,38,211,152,176,217,230,38,97,179,141,153,141,24,196,115,172,101,182,162,232,22,184,143,90,53,160,223,139,216,59,220,167,86,13,152,76,99,214,106,213,0,203,243,74,172,45,179,21,226,254,28,196,147,186,188,26,98,41,237,115,27,165,125,110,18,54,219,156,156,157,178,119,184,79,173,26,240,54,207,95,124,129,245,250,229,43,138,110,129,251,242,188,18,150,153,141,240,188,18,97,179,77,216,108,19,54,219,120,94,9,207,43,97,45,179,21,203,108,133,120,24,135,247,132,210,62,74,251,124,232,82,147,144,154,132,212,36,92,94,13,49,179,17,102,54,34,53,9,119,209,9,202,12,226,57,203,108,133,229,121,37,194,102,27,207,43,241,54,69,183,192,201,217,41,214,112,252,134,251,90,102,43,58,65,153,65,60,103,153,173,88,102,43,150,217,138,101,182,98,153,173,88,102,43,150,217,10,241,56,14,59,146,154,132,143,93,106,18,198,23,231,140,47,206,25,95,156,99,102,35,116,165,133,53,153,198,188,77,209,45,96,233,74,11,235,242,106,200,50,91,113,31,158,87,162,19,148,233,247,34,238,171,232,22,208,149,22,86,106,18,222,165,232,22,40,186,5,196,253,56,236,136,210,62,95,102,169,73,72,77,194,219,40,237,163,43,45,44,93,105,161,43,45,44,93,105,97,102,35,46,175,134,164,38,225,38,203,108,133,85,171,6,88,253,94,68,106,18,238,171,121,112,140,53,28,191,97,151,82,147,80,116,11,20,221,2,69,183,192,50,91,177,204,86,136,251,113,17,119,162,180,207,93,212,170,1,227,217,136,109,186,210,194,204,70,140,103,35,6,241,156,78,80,70,87,90,172,153,217,136,65,60,103,211,100,26,19,54,219,88,203,108,133,85,116,11,60,149,90,53,160,223,139,184,137,210,62,203,108,133,120,28,151,29,74,77,130,210,62,226,175,51,179,17,150,174,180,32,142,24,196,115,136,35,222,166,223,139,176,194,102,155,162,91,224,46,148,246,177,204,108,4,205,54,15,49,153,198,52,234,33,98,247,92,118,72,105,159,15,89,106,18,44,165,125,238,35,53,9,107,147,105,204,154,153,141,208,149,22,150,174,180,168,85,3,148,246,233,247,34,172,35,147,178,173,171,21,157,160,140,174,180,232,247,34,238,171,232,22,176,116,165,197,125,121,94,9,241,180,92,62,114,169,73,80,218,39,53,9,147,105,140,85,171,6,40,237,115,23,169,73,24,95,156,163,43,45,44,51,27,177,201,204,70,88,205,131,99,148,246,177,58,65,153,65,60,231,54,131,120,206,201,65,64,216,108,115,95,139,197,53,226,253,229,240,145,83,218,39,53,9,147,105,204,218,100,26,243,24,205,131,99,26,245,144,230,193,49,186,210,98,155,174,180,176,186,90,177,237,200,164,88,227,139,115,150,217,138,251,154,76,99,172,90,53,224,49,82,147,32,118,207,65,160,180,207,67,77,166,49,186,210,98,77,87,90,76,166,49,169,73,80,218,167,86,13,104,30,28,163,180,207,90,173,26,208,9,202,88,93,173,88,235,106,69,87,43,172,65,60,231,95,124,231,159,179,88,92,243,54,203,108,197,218,98,113,77,191,23,209,9,202,120,94,137,199,80,218,71,236,94,225,187,223,251,254,15,17,252,246,111,149,248,159,243,95,80,171,6,252,206,103,127,151,187,72,77,194,127,251,201,191,39,251,95,255,157,103,127,235,119,88,51,179,17,95,255,251,117,10,207,62,161,240,236,19,10,207,62,97,45,53,9,227,139,115,116,165,197,55,220,95,242,231,191,248,21,127,246,172,192,159,61,43,96,157,156,157,242,143,255,201,63,229,211,175,126,202,207,127,250,51,222,252,241,159,240,149,191,248,83,202,127,167,74,177,168,217,230,58,14,214,98,113,205,248,226,156,63,255,197,175,248,103,255,242,95,81,44,106,238,107,177,184,230,205,31,255,9,63,255,233,207,120,246,139,9,127,251,239,5,20,158,125,130,216,29,23,241,107,74,251,52,234,33,247,161,180,79,243,224,24,107,124,113,142,213,60,56,134,106,128,210,62,111,99,102,35,172,189,195,125,250,189,8,235,228,236,20,207,43,97,133,205,54,181,106,192,100,26,211,239,69,12,226,87,88,157,160,204,166,65,60,103,211,222,225,62,158,87,226,33,38,211,24,171,19,148,25,196,115,6,241,43,246,14,247,105,212,67,196,110,184,124,192,82,147,160,180,207,125,165,38,65,105,31,43,53,9,74,251,60,148,210,62,150,174,180,176,148,246,121,27,165,125,154,7,199,88,147,105,140,153,141,176,246,14,247,241,188,18,155,60,175,68,216,108,83,171,6,76,166,49,102,54,194,26,196,115,172,78,80,166,19,148,209,149,22,86,173,26,224,121,37,214,150,217,138,162,91,224,190,154,7,199,52,15,96,124,113,78,191,23,97,53,234,33,226,241,92,190,4,82,147,160,180,207,93,41,237,179,166,180,207,46,52,234,33,119,165,180,79,106,18,204,108,196,32,158,99,53,234,33,183,241,188,18,97,179,13,205,54,214,231,220,77,209,45,112,31,102,54,194,242,188,18,214,243,23,95,160,175,134,244,123,17,86,163,30,34,30,199,229,3,166,180,143,165,180,79,222,82,147,160,180,79,106,18,148,246,217,148,154,4,75,105,159,77,169,73,152,76,99,250,189,136,77,157,160,76,209,45,176,182,204,86,20,221,2,203,108,69,209,45,240,88,127,248,7,223,163,121,112,140,231,149,120,155,65,60,167,19,148,217,20,54,219,88,253,94,68,173,26,160,180,143,120,56,23,241,32,74,251,88,74,251,172,165,38,97,109,50,141,177,204,108,132,53,136,231,108,58,50,41,86,87,43,116,165,197,166,162,91,192,42,186,5,30,107,177,184,102,16,207,105,30,240,86,139,197,53,150,174,180,88,43,186,5,172,70,61,164,223,139,24,95,156,243,252,197,23,136,135,115,17,247,150,154,4,165,125,82,147,48,153,198,152,217,136,65,60,231,109,142,76,202,251,98,153,173,40,186,5,54,141,47,206,177,106,213,128,109,69,183,192,222,225,62,253,94,132,190,26,210,168,135,136,135,113,17,119,146,154,4,165,125,172,201,52,198,204,70,12,226,57,107,71,38,229,161,204,108,4,205,54,239,242,157,111,189,96,239,112,159,176,217,230,49,138,110,129,77,139,197,53,131,120,142,245,250,229,43,58,65,153,230,193,49,158,87,194,90,102,43,194,102,155,126,47,194,74,77,130,210,62,226,254,92,196,157,40,237,147,154,132,241,197,57,131,120,142,117,100,82,118,97,16,207,249,156,119,219,59,220,167,223,139,48,179,17,159,127,251,71,236,202,100,26,99,237,29,238,99,245,123,17,131,248,21,39,103,167,120,94,137,162,91,192,234,4,101,204,108,132,170,135,136,135,113,16,119,114,121,53,228,245,203,87,12,226,57,71,38,229,200,164,236,194,145,73,177,22,139,107,222,37,108,182,217,59,220,103,16,207,249,206,183,94,176,88,92,243,88,139,197,53,253,94,196,222,225,62,141,122,72,163,30,114,114,118,138,53,190,56,71,236,150,131,120,167,203,171,33,253,94,132,117,100,82,118,169,171,21,214,248,226,156,187,8,155,109,78,206,78,177,94,191,124,197,98,113,205,99,188,126,249,10,171,86,13,88,243,188,18,123,135,251,12,226,57,139,197,53,107,131,120,142,120,28,135,15,68,106,18,126,19,126,242,227,31,208,239,69,28,153,148,35,147,242,20,246,14,247,25,196,115,134,227,55,220,133,231,149,56,57,59,197,122,253,242,21,139,197,53,15,177,88,92,99,237,29,238,163,180,207,166,90,53,192,26,95,156,99,13,199,111,176,116,165,133,120,56,135,15,132,210,62,121,251,201,143,127,192,32,158,115,100,82,158,66,87,43,58,65,153,70,61,164,19,148,233,247,34,134,227,55,220,100,153,173,216,228,121,37,78,206,78,177,94,191,124,197,98,113,205,67,213,170,1,219,60,175,196,222,225,62,131,120,206,31,254,193,247,232,247,34,58,65,153,70,61,68,60,156,131,184,209,229,213,144,65,60,231,200,164,60,165,230,193,49,150,174,180,176,250,189,136,239,124,235,5,195,241,27,54,21,221,2,219,60,175,196,201,217,41,214,248,226,156,155,76,166,49,107,203,108,197,166,201,52,230,38,203,108,133,85,171,6,116,130,50,131,120,78,39,40,211,60,56,70,60,142,139,248,107,46,175,134,244,123,17,71,38,229,169,116,181,98,239,112,31,165,125,54,237,29,238,211,239,69,244,123,17,253,94,68,39,40,211,60,56,198,243,74,220,196,243,74,156,156,157,242,250,229,43,244,248,13,97,179,205,218,98,113,205,154,210,62,69,183,192,38,51,27,97,41,237,99,21,221,2,203,108,197,154,210,62,159,127,251,71,52,23,215,40,237,35,30,207,229,35,149,154,4,165,125,182,93,94,13,233,247,34,142,76,202,83,233,106,133,85,171,6,172,153,217,8,43,108,182,9,155,109,134,227,55,152,217,136,65,60,103,16,191,98,239,112,159,176,217,230,38,158,87,98,239,112,159,126,47,194,204,70,88,131,120,206,166,162,91,192,90,102,43,138,110,1,107,16,207,217,59,220,103,109,153,173,88,91,102,43,138,110,129,101,182,66,105,31,177,27,46,31,41,165,125,182,93,94,13,233,247,34,158,82,87,43,172,147,179,83,148,246,217,212,9,202,172,133,205,54,52,219,52,23,215,140,47,206,233,247,34,204,108,68,243,224,24,207,43,177,173,81,15,49,179,17,131,120,142,213,9,202,232,74,11,51,27,49,136,231,172,21,221,2,214,98,113,141,85,171,6,88,169,73,80,218,103,211,50,91,33,118,203,65,252,218,229,213,144,126,47,194,58,50,41,79,161,171,21,214,222,225,62,74,251,108,26,196,115,110,226,121,37,116,165,133,53,136,231,188,126,249,138,197,226,154,109,69,183,64,243,224,24,107,239,112,159,207,191,253,35,194,102,27,171,19,148,217,54,190,56,103,147,210,62,219,138,110,1,177,91,14,130,203,171,33,253,94,132,117,100,82,158,66,87,43,172,189,195,125,26,245,144,251,48,179,17,157,160,204,201,217,41,214,235,151,175,24,142,223,176,205,243,74,116,130,50,253,94,132,181,204,86,12,226,57,55,25,196,115,246,14,247,81,218,231,54,203,108,133,216,45,135,143,220,229,213,144,126,47,194,58,50,41,79,161,171,21,214,201,217,41,141,122,200,182,162,91,192,210,149,22,219,150,217,138,65,60,71,87,90,40,237,115,114,118,74,39,40,211,239,69,12,199,111,216,166,43,45,172,197,226,154,53,93,105,177,105,56,126,131,85,171,6,136,124,57,124,196,46,175,134,244,123,17,214,145,73,217,181,174,86,116,181,162,19,148,57,57,59,69,105,159,109,69,183,192,50,91,113,155,212,36,108,82,218,167,121,112,76,39,40,211,239,69,12,199,111,216,212,168,135,88,147,105,76,106,18,182,45,179,21,102,54,162,19,148,17,249,115,248,72,93,94,13,233,247,34,158,66,87,43,186,90,97,237,29,238,243,252,197,23,40,237,179,169,232,22,176,150,217,138,77,203,108,197,166,201,52,198,170,85,3,214,148,246,121,254,226,11,58,65,153,126,47,98,56,126,195,90,209,45,208,9,202,244,123,17,107,181,106,192,90,106,18,6,241,28,93,105,161,180,207,219,20,221,2,98,183,92,62,82,253,94,196,166,174,86,236,74,39,40,163,43,45,26,245,144,219,44,179,21,239,178,204,86,152,217,8,75,105,159,162,91,96,153,173,88,123,254,226,11,248,241,15,232,247,34,172,176,217,198,210,149,22,196,17,147,105,204,166,101,182,98,124,113,142,21,54,219,44,179,21,107,69,183,192,50,91,177,105,153,173,16,187,229,242,145,58,57,59,197,82,218,103,83,106,18,214,38,211,152,251,168,85,3,44,165,125,118,101,16,207,233,4,101,138,110,129,109,169,73,120,254,226,11,248,241,15,232,247,34,172,176,217,230,54,151,87,67,6,241,156,189,195,125,54,21,221,2,34,31,46,31,168,212,36,88,74,251,60,132,210,62,55,81,218,103,173,81,15,201,67,106,18,110,146,154,4,75,87,90,88,203,108,197,38,165,125,138,110,129,231,47,190,128,31,255,128,126,47,194,204,70,220,100,177,184,166,223,139,232,4,101,194,102,27,241,155,225,242,129,82,218,231,203,110,50,141,177,106,213,0,171,232,22,88,102,43,182,21,221,2,207,95,124,129,190,26,210,239,69,88,123,135,251,212,170,1,253,94,196,100,26,99,102,35,172,230,193,49,214,50,91,177,173,232,22,88,102,43,196,211,113,17,239,157,101,182,162,232,22,48,179,17,157,160,140,231,149,184,205,98,113,141,231,149,176,26,245,144,90,53,64,105,159,181,189,195,125,250,189,8,235,228,236,20,207,43,177,204,86,108,90,102,43,138,110,1,241,244,92,196,111,156,210,62,219,22,139,107,6,241,156,189,195,125,222,70,105,159,101,182,98,77,105,159,77,141,122,72,173,26,96,41,237,179,204,86,188,77,209,45,176,204,86,88,169,73,80,218,71,236,142,139,120,47,77,166,49,86,173,26,176,204,86,20,221,2,15,165,180,207,187,44,179,21,69,183,128,120,90,14,226,189,97,102,35,214,250,189,136,78,80,70,105,159,187,72,77,194,99,45,179,21,155,148,246,17,187,229,32,222,11,157,160,204,32,158,99,93,94,13,177,154,7,199,172,45,179,21,203,108,197,109,148,246,17,239,63,7,241,94,208,149,22,214,229,213,144,126,47,98,239,112,31,165,125,54,165,38,97,173,232,22,120,10,203,108,133,120,58,46,226,189,208,168,135,88,253,94,196,222,225,62,141,122,200,54,165,125,214,150,217,10,241,225,113,17,239,141,70,61,164,81,15,17,95,94,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,227,32,132,200,141,131,16,34,55,14,66,136,220,56,8,33,114,243,255,0,174,208,133,181,215,164,230,139,0,0,0,0,73,69,78,68,174,66,96,130' 12 | -------------------------------------------------------------------------------- /test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Richienb/render-gif/35e19475618b4e8d284856406859312da717c765/test.js.snap --------------------------------------------------------------------------------