Skip to main content
Module

x/dinja/dinja.js

Deno web framework
Latest
File
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
import * as path from "https://deno.land/x/dinja/lib/std/path/mod.ts";import Dexecutor from "https://deno.land/x/dinja/lib/dexecutor/mod.ts";

/** * Functions used within the CLI *//** * Checks if a file exists * * @param {string} filePath is the file path that will be checked * @returns {boolean} returns true if the file exists, and false if it doesn't */function existsSync(filePath) { try { Deno.statSync(filePath); return true; } catch (err) { return false; }}

/** * Converts a file path to a Windows file path. The version of deno I was using * returned unix-style paths on Windows systems instead Windows style * @todo check if the current version of Deno corrects this issue * * @param {string} filePath is the file path that will be converted * @returns {string} the modified file path */function crossPlatformPathConversion(filePath) { if (Deno.build.os === "win") { filePath = filePath.split("/").join("\\"); filePath = filePath.substr(1, filePath.length - 1); }
return filePath}

/** * Dedents each line of a string by the minimum number of whitespace * characters on the left of each line. For example, the following * string: * * ' Hello' * ' World' * * will be dedented to: * * 'Hello' * ' World' * * @param {string} indentedString is the string that will be dedented * @returns {string} returns the string in dedented form */function dedent(indentedString) { let minimumDedent = indentedString.split("\n"); minimumDedent = minimumDedent.filter(stringLine => stringLine.trim() !== ""); minimumDedent = minimumDedent.map(stringLine => (stringLine.length - stringLine.trimLeft().length)); minimumDedent = Math.min(...minimumDedent); let dedentedString = indentedString.split("\n"); dedentedString = dedentedString.map(stringLine => stringLine.substr(minimumDedent, stringLine.length - minimumDedent)); dedentedString = dedentedString.join("\n"); dedentedString = dedentedString.trim(); return dedentedString}

/** * Creates a new applet within the project */function createapp(appletName) { const __dirname = crossPlatformPathConversion(new URL(".", import.meta.url).pathname); const newAppletPath = path.join(__dirname, "applets", appletName); if (existsSync(newAppletPath)) { throw new Error("Applet already exists, try a different applet name."); } else { // Making the new applet directory Deno.mkdirSync(newAppletPath); // Making the templates and static directories Deno.mkdirSync(path.join(newAppletPath, "templates")); Deno.mkdirSync(path.join(newAppletPath, "static")); const encoder = new TextEncoder(); // Creating the router.js file let routerFileContents = ` import * as path from "https://deno.land/x/dinja/lib/std/path/mod.ts"; import pogo from "https://deno.land/x/dinja/lib/pogo/main.ts"; import denjucks from "https://deno.land/x/dinja/lib/denjucks/mod.js"; import * as utilities from "../../utilities/util.js" import {database} from "../../server.js" // Creating and exporting the router export const router = pogo.router(); // Creating a denjucks environment const __dirname = utilities.crossPlatformPathConversion(new URL(".", import.meta.url).pathname); const denjucksEnv = new denjucks.Environment(new denjucks.FileSystemLoader(path.join(__dirname, "templates"))); // Setting the path prefix for this route const pathPrefix = "/${appletName}"; // Creating the static file route for this router router.get(pathPrefix + "/static/{filename}", async (request, handler) => { const fileName = request.params.filename; const buffer = await Deno.readFile(path.join(__dirname, "static", fileName)); const mimetype = utilities.determineMimeType(fileName) return handler.response(buffer).type(mimetype); }); // Creating a route for this router router.get(pathPrefix + "", (request) => { return denjucksEnv.render("index.html"); }); ` routerFileContents = dedent(routerFileContents); routerFileContents = encoder.encode(routerFileContents); Deno.writeFileSync(path.join(newAppletPath, "router.js"), routerFileContents); // Creating the models.js file let modelsFileContents = ` import Dex from "https://deno.land/x/dinja/lib/dex/mod.ts"; import {dbconfig} from "../../utilities/dbconfig.js"; const dex = Dex({client: dbconfig.client}); export const models = [ dex.schema.createTable("${appletName}Users", (table) => { table.increments("id").primary(); table.string("username"); table.string("hashedPassword"); table.string("firstname", 64); table.string("lastname", 64); table.string("email"); table.string("phoneNumber", 32); table.timestamps(null, true); }).toString(), ] ` modelsFileContents = dedent(modelsFileContents); modelsFileContents = encoder.encode(modelsFileContents); Deno.writeFileSync(path.join(newAppletPath, "models.js"), modelsFileContents); // Creating the _base.html template file let baseTemplateFileContents = ` <!DOCTYPE html> <html lang="en"> <head> <title>My Webpage</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="/${appletName}/static/normalize.css"> </head> <body> {% block content %} {% endblock content %} </body> </html> ` baseTemplateFileContents = dedent(baseTemplateFileContents); baseTemplateFileContents = encoder.encode(baseTemplateFileContents); Deno.writeFileSync(path.join(newAppletPath, "templates", "_base.html"), baseTemplateFileContents); // Creating the index.html template file let indexTemplateFileContents = ` {% extends "_base.html" %} {% block content %} <style> html, body { margin: 0px; } </style> <div style="display: flex; width: 100vw; height: 100vh;"> <div style="margin: auto;"> <h1 style="text-align: center; font-family: sans-serif">Welcome to:</h1> <img src="/${appletName}/static/dinja.png"> <p style="font-family: sans-serif"> Dinja is based on several libraries: <ul> <li><a href="https://deno.land/x/pogo/">Pogo</a>: the web framework used for dinja</li> <li><a href="https://deno.land/x/denjucks/">Denjucks</a>: the templating engine used for dinja</li> <li><a href="https://deno.land/x/dex/">Dex</a>: an SQL query builder for deno based on knex.js</li> <li><a href="https://deno.land/x/dexecutor/">Dexecutor</a>: an SQL query executor for deno</li> </ul> </p> <p>Documentation for Dinja can be found <a href="https://deno.land/x/dinja">here</a>.</p> </div> </div> {% endblock content %} ` indexTemplateFileContents = dedent(indexTemplateFileContents); indexTemplateFileContents = encoder.encode(indexTemplateFileContents); Deno.writeFileSync(path.join(newAppletPath, "templates", "index.html"), indexTemplateFileContents); // Adding normalize.css to the static folder let normalizeCssFileContents = ` /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the 'main' element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on 'h1' elements within 'section' and * 'article' contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd 'em' font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd 'em' font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent 'sub' and 'sup' elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from 'fieldset' elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * 'fieldset' elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to 'inherit' in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } ` normalizeCssFileContents = dedent(normalizeCssFileContents); normalizeCssFileContents = encoder.encode(normalizeCssFileContents); Deno.writeFileSync(path.join(newAppletPath, "static", "normalize.css"), normalizeCssFileContents); // Creating an image in the static folder let denoLogoFileContents = `[137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,1,221,0,0,0,164,8,6,0,0,0,210,103,244,211,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,103,110,111,109,101,45,115,99,114,101,101,110,115,104,111,116,239,3,191,62,0,0,32,0,73,68,65,84,120,156,236,189,119,120,28,213,217,62,124,111,47,42,86,177,37,203,182,138,11,238,54,6,131,1,211,9,132,96,90,2,49,188,116,18,242,5,48,4,156,188,4,146,128,233,188,254,57,16,58,1,18,32,64,18,28,99,131,77,220,11,6,55,140,11,46,96,220,141,37,89,178,172,94,118,181,85,187,251,253,113,230,156,57,51,59,179,90,73,59,179,43,121,239,235,154,107,181,218,217,221,217,153,51,231,62,79,187,31,67,36,18,137,32,141,52,210,72,35,141,52,210,208,28,198,100,31,64,26,105,164,145,70,26,105,156,44,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,132,52,233,166,145,70,26,105,164,145,134,78,72,147,110,26,105,164,145,70,26,105,232,4,115,178,15,32,141,52,18,129,120,59,84,26,12,6,141,143,36,141,52,210,72,67,29,125,146,116,211,19,240,201,3,254,90,119,118,221,13,6,131,100,159,84,188,254,221,105,111,157,138,191,35,141,222,139,174,140,193,244,216,235,58,122,29,233,118,54,32,186,51,105,241,232,109,131,168,167,191,55,213,161,118,61,148,200,86,254,40,255,156,72,36,194,62,79,254,60,217,80,91,60,168,93,95,254,184,229,191,35,85,126,83,26,189,7,177,198,156,252,121,172,241,149,30,123,157,35,165,72,183,171,132,26,235,121,60,147,21,63,1,119,134,84,25,76,93,57,7,189,17,93,57,207,60,201,202,55,165,207,229,55,250,63,186,111,50,175,175,210,162,129,255,29,106,191,71,254,168,246,27,82,101,236,198,131,238,142,223,222,244,27,83,9,106,139,87,181,133,172,124,254,236,108,14,77,95,151,104,232,74,186,177,110,168,238,16,106,103,143,74,80,154,164,148,6,143,124,112,37,219,45,217,217,239,87,251,237,169,78,194,242,115,217,25,153,240,215,130,39,167,112,56,44,121,164,175,211,247,26,141,70,246,89,252,223,177,200,74,15,168,45,28,232,239,80,91,72,200,143,95,109,81,33,71,42,78,130,221,89,60,3,177,173,125,165,125,210,144,66,109,30,233,108,236,1,177,199,31,125,93,233,61,105,104,76,186,241,222,76,221,33,84,57,209,40,61,151,163,179,137,42,22,17,39,211,58,138,101,9,201,111,18,165,253,83,29,106,68,171,180,201,199,74,56,28,86,220,232,249,224,223,107,52,26,97,50,153,16,137,68,96,52,26,97,52,26,21,143,67,47,40,77,118,74,191,67,126,125,99,45,36,148,22,20,169,108,5,199,115,95,171,161,179,133,50,253,140,84,253,237,169,0,165,185,68,237,94,162,144,223,83,242,113,71,255,230,247,149,227,100,62,247,9,39,221,120,9,180,51,87,70,103,132,26,207,198,67,62,1,209,73,183,179,137,170,51,2,208,122,240,116,102,213,169,77,206,189,137,120,149,206,45,189,62,74,215,8,144,18,85,40,20,66,40,20,66,71,71,7,58,58,58,216,115,250,217,70,163,17,102,179,153,61,154,76,38,152,76,38,0,96,196,171,215,245,148,67,62,217,209,99,231,55,254,26,243,231,140,158,19,147,201,36,57,95,157,141,109,250,126,57,146,189,232,232,138,165,5,40,47,140,213,136,88,233,119,159,204,214,177,26,217,170,141,189,112,56,204,222,171,116,143,170,141,191,120,22,127,39,195,249,230,145,80,210,237,204,34,83,187,169,98,237,219,217,251,213,254,150,91,6,74,3,133,159,172,148,86,109,242,215,248,191,233,231,106,57,81,43,89,66,145,72,132,221,12,252,141,33,191,65,122,11,241,170,145,45,37,70,254,111,254,220,203,9,55,24,12,226,224,193,131,248,203,95,254,130,220,220,92,220,121,231,157,104,106,106,194,187,239,190,139,194,194,66,252,230,55,191,65,126,126,62,66,161,16,44,22,139,228,156,24,141,70,118,29,245,34,94,165,107,203,47,28,58,58,58,16,8,4,16,12,6,217,111,164,251,202,199,36,61,63,242,115,22,15,1,39,203,10,238,142,149,175,102,109,197,179,241,239,225,127,91,87,172,227,190,66,14,114,195,72,190,112,13,6,131,236,145,159,99,232,121,161,155,252,254,84,27,127,74,115,43,69,178,22,187,201,132,33,146,160,25,57,30,139,44,30,235,76,237,185,210,99,172,207,164,43,51,249,228,74,7,132,197,98,129,217,108,102,22,144,218,214,217,68,214,217,196,213,211,115,202,111,116,240,83,107,142,159,160,233,70,111,32,122,30,228,231,32,213,160,70,182,212,34,165,215,136,62,231,93,194,60,225,250,253,126,92,121,229,149,216,189,123,55,0,96,248,240,225,0,128,35,71,142,0,0,198,141,27,135,121,243,230,33,43,43,11,86,171,21,86,171,149,141,1,249,4,161,23,233,202,45,12,58,209,249,253,126,108,219,182,13,187,119,239,134,205,102,195,200,145,35,81,87,87,135,195,135,15,35,43,43,11,19,38,76,192,192,129,3,37,231,69,126,158,148,38,194,174,90,193,74,132,148,168,223,174,118,14,148,44,45,126,193,193,31,143,218,66,89,190,136,235,10,17,43,253,230,120,206,67,111,34,13,249,156,194,207,37,129,64,128,141,191,202,202,74,148,150,150,162,160,160,0,123,247,238,69,67,67,3,70,140,24,129,210,210,82,201,184,235,206,248,147,95,23,138,222,116,30,187,139,132,144,110,103,171,86,249,13,36,183,202,212,136,88,237,53,249,103,209,65,19,14,135,209,222,222,142,250,250,122,212,215,215,163,174,174,14,39,78,156,192,241,227,199,209,218,218,10,167,211,137,146,146,18,120,60,30,248,124,62,12,27,54,12,183,222,122,43,114,115,115,163,6,134,218,96,226,7,149,210,192,73,244,228,164,54,49,7,131,65,118,131,248,253,126,4,2,129,40,247,106,42,19,47,127,190,228,132,107,177,88,24,49,218,108,54,216,108,54,70,144,116,95,58,97,208,137,194,237,118,99,244,232,209,228,247,14,201,6,126,117,58,208,232,1,222,219,9,180,7,1,0,215,95,127,61,158,125,246,89,216,237,118,216,108,54,246,29,252,226,75,203,69,20,15,181,235,234,243,249,176,96,193,2,60,240,192,3,49,223,95,86,86,134,201,147,39,227,156,115,206,193,164,73,147,96,183,219,217,66,130,95,80,42,141,89,53,18,238,140,156,40,122,122,110,148,220,154,252,66,146,90,90,188,181,197,143,101,122,12,157,185,56,229,30,170,206,72,184,171,214,177,252,60,244,6,235,152,206,3,74,99,47,16,8,192,231,243,225,205,55,223,196,156,57,115,216,123,178,179,179,209,214,214,198,158,15,30,60,24,103,158,121,38,166,78,157,138,211,79,63,29,14,135,131,221,179,252,216,147,111,74,99,80,238,57,76,181,243,165,5,122,76,186,157,173,90,149,172,49,250,127,37,215,168,154,235,180,163,163,3,94,175,23,117,117,117,108,171,169,169,193,241,227,199,81,87,87,135,230,230,102,184,221,110,4,2,129,46,29,255,105,167,157,134,167,159,126,26,155,54,109,130,213,106,197,185,231,158,139,80,40,132,205,155,55,35,43,43,11,63,254,241,143,153,117,164,52,161,41,89,72,137,24,56,242,137,73,110,9,157,56,113,2,43,87,174,196,145,35,71,24,233,84,85,85,193,229,114,165,44,209,170,129,158,47,163,209,8,187,221,142,162,162,34,228,229,229,193,110,183,163,160,160,0,23,92,112,1,198,141,27,7,155,205,38,177,118,121,43,183,170,170,10,231,158,123,46,249,192,247,127,10,140,47,32,127,239,173,7,126,245,95,32,64,98,188,207,60,243,12,174,187,238,58,56,28,14,9,249,202,175,39,127,92,137,6,63,241,201,39,61,143,199,131,123,239,189,23,203,151,47,39,59,143,233,15,140,204,7,92,1,224,187,90,160,222,19,245,121,14,135,3,19,39,78,196,148,41,83,112,206,57,231,96,208,160,65,236,119,201,39,193,238,88,33,106,30,157,238,158,31,249,184,150,143,109,151,203,133,99,199,142,193,96,48,32,35,35,131,221,247,118,187,29,57,57,57,146,201,154,46,42,248,137,92,237,55,169,89,250,241,184,223,227,177,142,59,179,146,123,122,222,18,1,165,197,78,32,16,96,132,91,87,87,135,139,47,190,24,110,183,155,188,97,220,0,160,32,3,56,212,4,84,181,69,125,158,211,233,196,169,167,158,138,179,207,62,27,83,167,78,69,97,97,161,100,65,75,231,76,58,14,121,239,146,146,231,16,72,189,133,74,162,145,16,210,141,199,34,163,55,20,255,156,39,98,175,215,139,218,218,90,70,168,181,181,181,168,170,170,66,93,93,29,154,154,154,186,78,168,118,51,80,152,65,6,76,97,166,248,119,166,21,168,104,5,230,126,71,38,50,0,121,121,121,104,106,106,98,127,119,116,116,176,149,221,224,193,131,241,226,139,47,98,226,196,137,204,154,144,79,102,90,16,175,210,196,68,207,97,121,121,57,174,190,250,106,212,213,213,245,232,59,122,11,140,70,35,254,250,215,191,226,170,171,174,130,213,106,101,25,200,244,156,120,189,94,236,221,187,23,215,94,123,45,96,52,0,95,255,138,60,82,124,178,23,152,189,17,0,33,168,247,223,127,31,227,199,143,135,211,233,84,37,94,45,39,0,165,197,20,157,244,92,46,23,102,206,156,73,72,247,178,97,192,236,75,165,111,62,216,8,124,117,140,108,187,79,0,161,232,219,183,180,180,20,147,39,79,198,217,103,159,141,211,78,59,13,14,135,35,46,43,184,171,241,96,138,174,156,35,185,165,197,91,180,62,159,15,239,189,247,30,102,207,158,13,143,135,44,46,172,86,43,130,193,32,123,159,205,102,67,97,97,33,74,75,75,81,92,92,140,146,146,18,246,183,205,102,139,178,174,58,35,99,62,87,32,22,33,199,178,148,233,57,232,42,49,119,245,220,37,2,242,121,154,206,41,62,159,15,237,237,237,248,215,191,254,133,103,159,125,150,236,124,243,4,224,119,231,136,111,46,111,1,54,86,2,27,42,128,93,209,99,207,96,48,96,248,240,225,56,235,172,179,112,222,121,231,97,220,184,113,236,254,146,207,157,106,225,189,147,129,120,19,150,72,197,199,8,248,216,128,207,231,67,91,91,27,142,29,59,134,202,202,74,84,87,87,163,186,186,26,149,149,149,168,169,169,65,83,83,19,92,46,23,252,126,127,252,95,102,51,17,2,165,132,58,48,83,248,91,120,94,144,1,228,216,99,127,198,164,129,192,140,165,0,192,8,23,153,86,52,157,219,31,240,117,0,235,219,1,127,8,213,213,213,248,197,47,126,129,191,252,229,47,56,247,220,115,225,116,58,163,18,149,180,204,132,85,58,175,75,151,46,21,9,183,159,13,152,90,12,20,247,235,241,119,165,12,194,17,160,197,7,108,171,6,42,90,17,14,135,177,102,205,26,92,126,249,229,204,181,12,64,114,78,90,90,90,200,123,51,44,82,194,5,128,235,199,2,223,212,0,171,142,192,235,245,226,145,71,30,193,7,31,124,128,1,3,6,40,186,32,1,72,38,0,45,161,68,190,54,155,141,188,120,81,89,244,27,70,230,147,237,206,73,128,59,0,108,169,2,54,29,3,54,31,99,86,112,69,69,5,42,42,42,240,233,167,159,194,233,116,50,43,248,236,179,207,142,105,5,243,4,204,47,64,58,203,101,232,234,88,87,90,164,7,131,65,52,55,55,227,217,103,159,21,231,2,139,17,129,124,43,224,53,146,241,0,192,239,247,163,178,178,18,149,149,149,146,207,52,24,12,200,205,205,69,113,113,49,74,75,75,81,82,82,130,146,146,18,12,29,58,20,217,217,217,176,88,44,146,112,145,218,34,35,86,252,91,137,136,187,18,67,86,34,102,61,147,136,228,201,149,114,47,139,215,235,197,162,69,139,200,206,14,51,240,235,201,210,15,40,203,33,219,173,19,201,216,219,124,140,144,240,87,199,128,102,31,34,145,8,14,31,62,140,195,135,15,227,223,255,254,55,242,242,242,112,230,153,103,226,252,243,207,199,121,231,157,199,188,87,14,135,67,226,133,51,155,205,236,92,208,243,210,151,209,35,210,85,203,192,164,23,241,203,47,191,196,19,79,60,129,163,71,143,74,226,49,49,97,49,74,173,211,66,25,161,22,102,0,185,142,158,28,54,193,148,193,64,182,13,104,19,110,240,33,217,192,91,87,17,2,7,136,43,229,247,171,128,67,77,240,120,60,120,240,193,7,241,228,147,79,226,138,43,174,80,76,236,160,72,36,241,242,231,151,63,183,236,92,246,119,2,255,252,25,48,32,163,219,223,145,210,8,71,128,135,86,1,235,43,96,52,26,225,243,249,216,2,7,128,100,210,96,11,167,12,171,242,103,61,118,1,112,160,1,168,104,69,121,121,57,102,207,158,141,103,158,121,70,145,76,0,237,146,136,120,40,133,16,130,193,32,106,107,107,201,14,193,78,238,153,76,43,240,163,97,100,3,200,239,163,86,240,183,181,64,40,2,143,199,131,175,191,254,26,95,127,253,53,94,125,245,85,148,113,177,224,83,79,61,149,89,193,60,9,199,34,99,185,11,158,158,159,238,140,117,249,130,227,216,177,99,34,225,254,108,52,240,219,115,0,167,133,60,111,243,3,21,45,196,218,226,183,170,54,32,68,206,97,83,83,19,154,154,154,88,50,29,133,211,233,68,81,81,17,35,227,210,210,82,148,150,150,162,168,168,72,213,242,143,215,93,173,68,200,242,191,213,226,203,252,185,163,127,235,1,62,79,134,119,235,239,219,183,15,123,246,236,33,59,93,54,156,140,47,53,100,90,201,62,151,13,39,247,233,247,117,192,134,74,96,83,37,112,160,17,0,49,102,86,174,92,137,149,43,87,194,106,181,98,210,164,73,184,232,162,139,112,229,149,87,162,172,172,140,125,148,154,7,165,175,162,199,150,174,90,38,156,199,227,193,67,15,61,132,19,39,78,112,223,102,4,6,56,165,132,42,39,214,60,7,160,215,137,207,176,144,155,217,0,224,217,75,68,194,5,8,9,255,253,26,224,119,43,129,29,53,8,4,2,152,53,107,22,218,218,218,48,125,250,244,168,204,98,139,197,194,222,154,104,226,149,91,187,131,6,13,34,47,94,88,218,119,9,23,32,22,235,185,197,192,250,10,216,108,54,4,2,1,88,173,100,34,48,24,12,18,210,101,150,127,134,69,249,179,156,22,96,206,101,192,29,11,1,127,8,43,86,172,192,169,167,158,138,27,111,188,49,170,36,137,183,90,40,180,156,12,228,97,153,154,154,26,242,130,187,107,249,9,24,213,159,108,191,56,13,112,249,129,45,213,34,9,55,16,43,184,188,188,28,229,229,229,248,228,147,79,88,60,78,30,11,166,137,107,148,136,169,235,157,150,90,201,61,59,64,215,207,143,146,139,221,225,16,22,211,14,51,240,208,84,192,198,77,79,217,54,96,66,33,217,120,116,132,9,241,202,201,184,188,133,157,63,143,199,131,35,71,142,176,76,118,10,147,201,132,254,253,251,75,44,99,74,200,25,25,25,138,214,127,44,50,86,178,152,227,113,219,119,231,252,117,23,106,161,13,175,215,139,133,11,23,138,59,94,51,42,254,15,53,26,196,107,51,227,76,160,214,77,188,47,27,43,129,173,213,128,143,124,199,214,173,91,177,117,235,86,188,244,210,75,152,53,107,22,238,188,243,78,213,197,8,208,119,45,222,132,185,151,229,174,162,154,154,26,145,112,39,23,1,15,159,75,92,19,166,20,106,225,75,173,220,105,167,136,137,55,60,50,173,192,107,87,0,127,252,28,88,95,129,80,40,132,57,115,230,160,165,165,5,119,221,117,151,170,181,27,137,68,36,3,41,17,196,203,175,76,179,179,179,201,11,29,113,122,15,122,51,124,29,0,128,218,218,90,150,201,74,207,45,191,200,107,108,36,171,107,85,75,23,0,70,228,145,113,248,204,122,0,192,203,47,191,140,177,99,199,226,212,83,79,141,233,62,5,98,43,27,245,4,74,177,123,186,176,232,50,233,242,200,178,1,151,14,35,91,36,66,172,15,74,192,223,137,86,240,230,205,155,177,121,243,102,188,242,202,43,40,43,43,147,100,165,102,100,100,192,110,183,179,120,28,29,131,242,5,102,87,207,145,82,41,92,48,24,100,132,239,207,183,73,9,55,22,204,70,209,237,41,71,131,71,217,58,62,225,6,34,196,83,82,91,91,139,218,218,90,108,221,186,85,242,214,236,236,108,12,26,52,8,101,101,101,140,144,203,202,202,48,96,192,128,184,203,100,58,219,143,18,46,125,212,210,213,172,116,206,121,215,178,219,237,198,154,53,107,200,206,165,253,72,248,173,187,40,204,4,174,27,67,54,127,7,176,253,56,33,224,181,71,129,70,47,130,193,32,94,122,233,37,201,130,87,201,101,175,167,235,93,79,36,212,210,229,87,79,52,17,2,70,3,240,212,197,82,43,50,21,224,235,32,165,36,78,11,112,255,20,245,253,108,102,224,207,151,1,207,174,7,150,28,68,36,18,193,91,111,189,133,214,214,86,204,156,57,51,106,48,71,34,17,152,205,226,105,237,233,0,82,74,84,219,182,109,27,121,177,188,165,203,159,215,235,32,16,79,117,117,53,203,120,167,137,84,252,66,164,181,181,149,236,175,102,233,82,92,59,26,216,81,3,44,61,4,191,223,143,199,30,123,12,255,248,199,63,98,102,163,107,49,9,200,23,108,252,53,102,22,95,123,15,72,151,135,193,0,140,238,79,182,95,10,86,240,215,85,34,9,55,122,1,136,86,240,252,249,243,145,145,145,129,211,78,59,13,231,157,119,30,46,190,248,98,20,23,23,71,197,226,248,152,46,125,222,21,200,227,186,109,109,109,36,89,178,37,65,89,247,253,157,100,155,60,72,250,127,95,135,72,198,21,173,34,25,87,180,0,126,146,229,222,214,214,134,182,182,54,236,223,191,95,242,86,171,213,138,130,130,2,9,25,83,75,153,122,8,120,47,129,252,111,234,206,78,244,60,17,15,148,50,151,169,107,121,221,186,117,104,110,110,38,59,118,197,202,237,12,54,51,112,110,9,217,126,119,14,48,103,19,176,104,63,194,225,48,60,30,15,139,181,243,150,63,61,206,190,72,184,64,130,44,93,165,184,20,155,56,114,236,169,71,184,0,208,68,38,26,252,98,82,231,46,90,179,17,120,226,66,226,226,250,232,59,0,192,220,185,115,209,218,218,138,199,30,123,76,66,140,74,72,196,13,197,127,7,139,107,238,111,0,66,225,212,242,30,36,26,66,134,185,221,110,151,148,148,25,141,70,73,108,138,145,174,179,19,210,5,128,63,158,15,236,107,0,126,104,198,177,99,199,48,123,246,108,204,158,61,187,211,18,48,45,45,93,126,203,200,16,198,99,79,44,221,88,200,178,137,241,56,106,5,111,18,18,98,246,212,1,161,8,218,219,219,177,113,227,70,108,220,184,17,115,230,204,193,200,145,35,113,195,13,55,224,23,191,248,133,162,75,176,167,227,58,28,14,163,161,161,129,220,67,238,0,73,156,234,44,25,178,187,176,155,69,87,60,143,112,132,88,193,188,85,76,201,89,88,152,4,2,1,84,85,85,161,170,170,74,242,86,131,193,128,188,188,60,20,23,23,163,172,172,12,165,165,165,24,62,124,56,70,140,24,129,1,3,6,176,4,34,154,196,70,161,71,18,145,60,129,74,169,54,124,233,82,146,84,10,147,1,184,114,100,194,143,1,0,96,49,17,247,243,162,253,76,47,193,110,183,43,46,120,229,139,187,190,4,205,178,151,195,225,48,57,121,166,20,61,97,77,94,96,112,22,112,203,196,248,246,55,24,200,74,45,199,14,252,149,88,154,203,150,45,131,203,229,194,115,207,61,135,188,188,60,182,171,90,130,85,34,86,178,6,131,1,165,165,165,228,137,63,4,28,109,33,110,211,190,10,129,120,50,51,51,37,114,116,114,1,21,151,203,69,246,143,229,94,166,176,155,129,255,119,41,137,239,122,59,240,249,231,159,99,222,188,121,184,249,230,155,21,69,79,244,138,239,234,70,186,60,120,43,248,174,211,73,200,133,207,136,110,244,34,18,137,224,192,129,3,120,230,153,103,224,241,120,240,192,3,15,68,37,20,209,113,221,149,241,45,79,196,100,97,19,128,196,105,181,34,93,53,24,13,192,160,44,178,77,45,150,190,230,242,43,199,141,185,68,174,198,198,70,52,54,54,98,215,174,93,146,183,230,230,230,162,164,164,4,99,198,140,193,244,233,211,113,198,25,103,0,80,150,178,212,18,114,194,165,241,220,154,154,26,108,223,190,157,236,52,181,152,120,7,180,130,80,89,96,50,153,224,241,120,224,116,58,163,72,87,190,232,237,107,86,111,66,45,93,126,107,108,108,36,55,85,179,143,172,166,83,237,164,53,122,128,153,103,3,86,83,231,251,242,248,229,105,164,76,103,206,38,32,28,193,134,13,27,240,224,131,15,226,133,23,94,64,65,65,65,212,170,146,119,35,169,101,199,198,3,126,255,81,163,70,137,171,193,189,245,125,155,116,93,36,238,158,157,157,45,25,95,244,247,211,137,164,189,189,157,236,31,43,227,146,199,176,92,224,15,231,1,79,124,9,0,120,237,181,215,48,110,220,56,156,126,250,233,49,75,100,128,196,76,2,177,198,65,191,126,66,249,151,30,164,43,71,182,130,21,188,112,31,240,233,62,32,2,44,90,180,8,119,223,125,183,68,228,128,45,176,123,232,201,201,204,204,36,49,93,191,159,144,153,82,158,69,178,144,213,253,68,174,230,230,102,52,55,55,99,247,238,221,152,63,127,62,254,250,215,191,98,218,180,105,81,89,205,221,89,184,196,11,185,43,159,175,209,93,186,116,41,107,16,130,107,71,39,244,123,163,112,160,129,60,28,56,0,143,199,3,175,215,171,40,152,209,147,185,50,213,145,240,134,7,124,188,0,0,25,148,45,190,196,148,249,36,18,195,114,187,95,219,122,253,88,160,159,29,152,181,22,8,134,177,115,231,78,204,152,49,3,47,190,248,34,138,139,139,21,221,205,116,64,241,136,103,48,201,7,159,193,96,128,211,233,196,224,193,131,137,139,107,127,67,98,99,48,169,6,97,226,226,173,32,249,2,143,198,135,0,196,231,94,166,184,114,36,137,239,126,118,0,129,64,0,143,61,246,24,222,127,255,125,197,130,125,45,226,187,242,235,74,55,70,186,130,124,101,210,64,173,224,63,158,79,60,8,31,238,134,199,227,129,223,239,135,221,110,151,120,30,186,247,241,209,66,17,249,249,249,56,126,252,184,162,250,81,74,34,158,68,174,131,141,192,210,67,192,254,6,132,66,33,188,243,206,59,184,228,146,75,36,68,147,136,133,139,18,148,238,21,74,184,212,181,188,106,213,42,178,115,158,3,56,175,36,97,223,173,136,93,98,53,203,246,237,219,145,147,147,131,179,207,62,91,81,165,74,207,10,2,61,145,176,96,160,220,194,99,19,7,160,40,93,151,116,244,84,76,226,210,97,192,203,63,33,229,13,32,43,183,123,238,185,7,135,15,31,70,123,123,59,188,94,47,211,68,86,234,214,209,89,28,152,7,239,226,164,165,7,35,70,140,32,47,238,173,239,217,239,72,117,8,164,155,155,155,43,249,183,60,70,229,243,17,241,132,78,19,169,228,248,253,185,204,83,112,252,248,113,60,251,236,179,104,111,111,135,207,231,99,242,120,188,100,105,188,215,172,187,48,24,12,226,111,77,134,165,171,134,105,167,0,32,53,175,126,191,159,133,144,122,122,78,248,133,135,209,104,68,81,81,17,121,225,88,107,66,14,59,169,160,73,92,55,77,32,210,164,130,203,186,166,166,134,169,243,245,116,225,18,47,120,194,229,75,133,118,236,216,33,198,167,167,157,66,22,17,90,98,7,41,135,243,122,189,120,230,153,103,240,191,255,251,191,184,241,198,27,81,94,94,46,81,42,212,235,188,36,3,9,63,195,124,178,15,75,24,104,72,65,210,77,4,206,26,2,188,121,21,113,55,3,56,118,236,24,238,190,251,110,236,217,179,7,110,183,155,53,86,224,7,147,210,68,165,54,176,148,44,44,74,186,167,156,66,38,65,28,106,236,219,165,67,66,34,85,126,126,126,212,74,151,95,189,139,164,27,167,123,153,194,110,6,230,92,202,200,122,253,250,245,248,215,191,254,21,215,181,75,228,132,192,47,172,114,114,4,171,41,149,72,215,78,22,151,94,175,87,177,221,32,16,191,214,183,82,130,26,253,237,44,95,161,183,88,186,241,194,108,4,110,35,249,35,84,173,79,235,197,156,60,204,165,164,225,206,18,168,0,237,61,102,29,97,224,112,19,48,177,144,148,36,9,249,62,85,85,85,120,245,213,87,225,245,122,117,187,223,146,137,132,145,174,82,82,128,211,41,4,228,235,219,19,245,53,169,135,241,5,68,68,163,128,36,191,212,215,215,227,222,123,239,197,182,109,219,224,118,187,225,245,122,217,228,205,183,223,235,42,241,242,150,174,217,108,198,168,81,194,13,226,15,1,63,52,235,242,83,147,2,33,166,155,153,153,169,154,108,18,137,68,68,93,238,174,90,186,0,80,154,3,252,233,124,246,244,173,183,222,194,142,29,59,152,43,85,201,218,229,191,187,39,80,10,31,100,101,101,145,23,83,137,116,133,154,246,150,150,22,197,115,209,213,243,32,183,112,233,98,146,9,191,244,53,210,5,72,253,42,192,58,131,41,145,174,22,196,43,143,231,82,43,183,185,185,25,27,55,18,77,114,76,40,32,33,55,45,97,54,2,139,111,6,222,187,22,120,231,26,224,227,233,68,44,9,192,170,85,171,80,81,81,193,60,0,125,217,218,213,204,151,96,52,26,197,56,92,95,181,116,41,134,229,2,239,94,67,138,202,65,106,252,102,206,156,137,117,235,214,193,229,114,49,226,85,27,80,241,18,47,175,112,67,147,169,0,0,251,250,168,139,57,18,97,113,205,236,236,108,22,19,231,19,154,232,57,11,6,133,248,103,87,45,93,138,203,71,0,63,31,203,62,107,214,172,89,168,173,173,85,12,19,240,139,38,122,28,61,5,127,141,51,51,133,18,59,79,144,148,132,165,2,104,137,29,144,48,162,80,90,80,14,30,60,152,188,216,232,37,191,191,47,65,112,221,122,60,30,182,144,147,143,165,68,35,150,149,187,122,245,106,120,189,194,117,213,43,47,132,207,185,40,205,1,238,33,153,220,29,29,29,248,247,191,255,205,238,183,190,108,237,38,132,116,149,18,66,140,70,163,88,70,211,215,73,23,0,138,178,200,234,109,52,169,253,243,120,60,120,248,225,135,177,116,233,82,184,92,46,69,119,101,44,226,85,42,89,225,45,130,140,140,12,113,130,234,171,113,221,246,32,169,157,132,104,233,202,101,243,232,185,19,73,183,27,150,46,197,239,206,1,70,229,3,0,78,156,56,129,167,159,126,26,110,183,59,174,235,214,21,168,185,87,233,223,172,100,8,72,29,226,105,36,247,176,221,78,202,120,186,59,9,170,37,143,209,113,61,100,200,16,113,231,234,62,104,237,2,146,62,224,90,17,138,60,121,74,137,116,89,251,72,187,153,100,171,39,3,211,78,97,37,74,139,23,47,70,99,99,99,159,143,237,38,212,189,76,31,41,57,20,20,8,41,255,169,152,72,165,5,114,29,164,105,194,100,146,12,18,12,6,241,228,147,79,98,222,188,121,140,120,229,43,57,53,226,229,7,153,146,165,107,177,88,196,184,238,190,6,221,127,170,46,224,220,171,217,217,217,138,250,172,128,216,151,22,64,215,178,151,229,176,154,136,62,179,64,220,155,54,109,194,135,31,126,40,73,172,74,244,10,156,255,45,244,183,73,72,55,85,92,204,130,56,4,115,125,247,0,242,223,76,175,171,201,100,98,50,139,0,250,158,139,153,27,35,114,143,73,34,189,38,210,175,84,214,90,62,124,248,176,168,182,117,233,176,248,75,237,18,13,139,9,184,113,28,0,192,237,118,227,147,79,62,97,177,93,126,126,76,180,103,41,153,232,49,233,170,173,92,77,38,147,152,137,216,151,99,186,114,100,90,129,87,175,32,205,8,64,8,225,133,23,94,192,223,254,246,55,137,197,43,39,94,181,21,157,154,69,96,54,155,165,201,84,193,144,222,191,84,123,8,241,92,163,209,24,37,23,71,193,79,42,0,186,239,94,166,24,146,13,60,126,33,123,250,183,191,253,13,219,183,111,151,120,42,248,216,124,34,38,76,165,124,8,86,42,145,50,164,75,22,206,253,250,245,75,72,233,134,154,39,199,100,50,137,137,100,199,250,24,233,114,232,110,37,67,87,16,203,181,188,100,201,18,241,251,146,93,114,120,253,88,86,5,242,201,39,159,192,229,114,37,212,179,148,106,208,196,189,28,101,233,158,12,238,101,30,84,175,249,106,34,167,22,137,68,240,247,191,255,29,47,188,240,2,218,218,218,152,229,212,89,172,144,135,124,98,178,88,44,24,51,102,12,121,49,24,6,142,244,193,100,42,129,112,120,177,120,126,162,166,8,4,2,226,57,235,137,123,153,226,71,195,128,255,25,15,128,196,154,30,127,252,113,28,63,126,92,114,205,248,197,82,79,50,120,229,255,163,215,153,89,123,201,174,213,165,16,44,221,254,253,69,233,68,181,196,182,120,161,150,36,88,88,40,8,80,244,57,75,151,251,51,6,217,246,148,88,228,159,45,47,19,106,111,111,199,218,181,107,201,206,197,217,192,105,61,104,110,144,8,100,219,24,241,215,214,214,98,245,234,213,146,5,110,87,242,95,122,3,18,158,189,204,151,182,176,27,180,193,195,98,115,39,13,76,70,98,49,221,38,202,76,126,252,241,199,120,242,201,39,209,220,220,28,211,213,44,31,96,74,150,46,45,27,98,130,27,125,49,174,43,148,11,209,158,175,242,238,44,0,185,249,152,48,6,208,115,75,151,226,193,179,128,113,3,0,0,117,117,117,120,234,169,167,88,124,55,86,162,71,119,33,95,184,178,78,62,169,98,233,10,137,84,133,133,133,81,222,6,121,140,186,43,144,207,25,70,163,17,101,180,215,106,95,35,93,14,122,36,6,241,241,92,190,163,208,198,141,27,197,254,211,215,140,74,13,181,192,155,38,176,18,162,121,243,230,73,202,135,212,230,197,222,10,205,18,169,104,175,74,0,64,40,66,84,169,78,54,24,12,192,131,103,3,191,17,187,24,173,88,177,2,143,60,242,8,234,235,235,37,196,171,22,195,224,137,87,158,76,69,149,169,0,16,101,170,190,6,161,76,165,176,176,144,245,116,85,138,235,50,9,72,179,177,235,178,158,106,176,152,128,217,151,146,85,56,128,45,91,182,224,189,247,222,75,120,124,87,158,68,5,136,238,116,0,169,67,186,130,123,121,224,192,129,138,30,135,174,18,174,154,123,217,108,54,247,237,178,33,1,90,145,71,60,181,185,203,150,45,35,59,107,217,220,160,171,24,146,13,92,84,6,0,56,116,232,16,182,110,221,10,159,207,215,39,93,204,61,34,93,181,213,46,189,129,120,87,212,73,21,215,149,227,142,73,192,99,23,176,149,220,166,77,155,48,115,230,76,212,212,212,68,17,47,63,145,43,37,84,169,38,83,245,69,75,87,168,63,206,205,205,149,232,179,242,150,86,56,28,134,219,237,38,251,39,194,181,204,99,80,22,233,46,37,224,221,119,223,197,230,205,155,19,22,223,85,74,162,162,155,205,70,200,62,117,72,151,88,186,185,185,185,81,199,218,19,40,197,116,217,66,178,214,221,183,133,95,56,104,145,185,172,212,220,160,182,182,86,108,110,112,246,16,166,47,144,18,184,237,84,246,231,127,254,243,159,78,171,6,122,43,249,38,44,145,138,254,205,111,86,171,181,239,171,82,197,139,159,142,6,254,239,71,204,18,219,181,107,23,102,204,152,129,242,242,114,38,27,41,159,200,229,241,66,64,74,188,18,210,61,220,4,4,250,80,50,85,85,27,240,25,201,174,204,205,205,149,180,0,147,39,82,49,210,213,34,3,243,194,50,224,86,18,34,8,133,66,120,234,169,167,80,93,93,173,232,161,232,73,124,87,110,245,37,188,167,110,79,224,239,96,228,159,159,159,31,181,240,233,46,241,42,229,130,152,205,102,145,116,67,17,224,184,171,231,199,127,146,129,119,43,243,90,203,84,129,138,233,226,39,59,129,74,142,241,5,68,169,10,192,214,173,91,113,232,208,161,62,233,98,214,76,145,138,174,92,89,249,195,201,78,186,0,73,208,121,249,39,172,172,229,208,161,67,184,247,222,123,113,240,224,193,152,122,205,242,216,46,159,193,60,122,180,208,21,164,35,76,178,152,123,43,34,17,178,112,248,248,123,224,15,107,128,155,22,0,173,196,189,60,106,212,40,216,108,54,69,75,55,18,137,136,241,169,68,197,115,229,184,127,10,112,42,73,238,105,104,104,192,19,79,60,193,68,79,18,29,223,141,34,221,84,176,116,57,97,140,252,252,124,197,206,75,93,33,96,181,133,58,157,51,138,138,138,196,125,250,130,6,51,133,198,68,33,79,160,226,99,185,81,205,13,114,236,192,5,165,154,30,79,183,32,44,112,35,145,136,162,181,43,47,29,234,141,228,171,105,246,178,201,100,18,85,169,78,150,90,221,206,48,101,48,240,230,149,172,87,104,85,85,21,238,185,231,30,124,251,237,183,138,122,205,114,11,74,78,188,146,100,170,222,20,215,13,71,200,241,126,244,29,240,208,42,224,210,15,129,255,89,0,252,121,19,176,230,7,192,75,86,227,67,134,12,193,45,183,220,194,72,87,78,184,145,72,164,107,13,236,187,3,179,17,120,238,71,76,99,251,155,111,190,193,223,255,254,247,132,232,51,171,149,220,49,9,213,84,32,93,193,181,76,85,230,148,74,156,186,10,181,57,195,104,52,194,102,179,137,243,70,31,142,235,106,5,222,181,204,103,45,239,220,185,19,149,149,149,100,167,105,167,144,188,133,84,195,5,165,64,9,81,246,251,252,243,207,81,83,83,163,232,98,102,37,130,189,16,154,136,99,240,201,84,76,149,234,100,142,233,202,49,174,128,168,87,21,18,47,64,67,67,3,238,187,239,62,108,221,186,53,74,175,89,205,226,165,113,93,167,211,137,226,98,161,225,118,42,199,117,59,194,192,158,58,224,195,221,192,204,21,192,37,31,0,183,126,10,188,184,25,248,178,156,89,181,0,80,90,90,138,159,254,244,167,152,51,103,14,22,47,94,140,162,162,34,150,72,165,20,211,109,107,19,38,230,68,199,116,121,12,204,4,158,190,24,16,248,229,131,15,62,192,198,141,27,85,137,183,43,110,102,165,123,135,73,65,166,4,233,146,5,179,213,106,85,108,119,72,209,157,100,42,250,40,95,76,178,114,195,234,180,123,57,30,116,41,129,10,72,61,215,50,133,209,0,220,50,1,0,41,5,156,63,127,126,84,66,21,111,132,244,70,107,55,161,253,116,149,146,169,78,218,90,221,206,80,150,3,188,123,45,112,223,82,160,162,149,233,53,63,251,236,179,184,232,162,139,162,110,34,26,203,228,173,93,26,215,29,49,98,4,202,203,203,83,79,153,106,215,9,210,202,107,71,13,176,251,4,179,94,229,40,40,40,192,248,241,227,113,250,233,167,99,202,148,41,24,60,120,48,50,50,50,144,145,145,1,187,221,14,155,205,198,200,150,246,29,229,33,38,82,105,172,170,115,110,9,112,231,36,224,31,187,16,14,135,241,244,211,79,227,253,247,223,199,208,161,67,163,26,223,3,164,135,50,189,94,244,81,13,114,2,98,150,94,42,212,233,10,150,110,70,70,134,132,102,3,6,247,0,0,32,0,73,68,65,84,28,19,145,80,165,68,184,38,147,9,37,37,37,56,116,232,80,31,115,47,147,135,158,38,159,169,126,60,71,184,114,5,170,150,150,22,108,216,176,129,236,56,110,0,107,103,153,146,184,114,36,240,230,118,160,197,135,37,75,150,224,142,59,238,96,101,131,52,161,50,28,14,71,149,174,245,22,104,86,50,68,73,129,165,255,167,73,55,26,3,51,9,241,142,37,245,160,94,175,23,127,248,195,31,176,100,201,146,40,189,102,62,177,10,128,36,174,203,58,14,29,105,34,73,47,169,130,81,249,196,93,116,195,56,96,198,153,192,77,227,201,243,82,105,47,99,155,205,134,123,238,185,7,151,93,118,25,138,139,139,145,149,149,133,204,204,76,56,28,14,216,108,54,88,44,22,88,44,22,137,149,5,136,147,140,102,217,203,74,184,231,12,224,116,162,180,214,212,212,132,199,31,127,28,109,109,109,221,138,239,42,89,138,148,124,82,170,189,95,147,40,1,201,123,26,122,154,189,172,20,207,141,210,96,78,187,151,227,134,154,149,27,8,4,240,249,231,159,139,245,236,169,106,229,82,216,205,192,116,210,124,164,181,181,21,75,150,44,137,169,103,0,244,46,177,12,205,220,203,244,6,26,48,128,16,74,58,166,171,130,28,59,137,241,158,73,22,39,193,96,16,79,61,245,20,230,206,157,171,26,227,229,137,215,98,177,96,236,88,50,64,17,138,0,135,154,146,245,75,162,225,176,144,21,245,5,165,164,248,253,127,167,2,47,94,14,124,114,35,240,225,207,88,236,230,216,177,99,8,6,131,112,58,157,112,56,28,204,186,165,217,239,212,173,44,207,92,6,200,205,198,234,116,181,182,116,1,34,122,242,220,37,64,30,73,116,218,181,107,23,222,122,235,45,69,121,207,120,226,187,74,241,81,131,193,144,90,164,43,184,151,115,114,114,18,82,163,43,135,156,124,205,102,179,72,186,213,174,190,35,172,163,17,49,200,147,167,228,164,235,243,249,68,215,178,205,68,58,106,165,58,166,143,35,199,10,72,244,152,121,226,237,173,238,229,132,182,246,147,187,158,76,38,19,242,243,73,215,22,52,158,132,170,84,241,34,195,10,188,114,5,112,113,25,0,18,167,252,203,95,254,130,183,222,122,75,18,227,229,83,231,1,176,9,234,148,83,78,17,101,3,83,57,174,203,99,236,0,82,66,5,177,179,14,37,90,57,225,170,137,98,208,73,134,181,39,211,195,210,5,128,1,25,192,51,23,147,248,19,128,127,253,235,95,88,183,110,157,164,255,174,18,241,210,99,142,5,122,255,176,92,136,148,32,93,81,2,82,126,29,18,65,184,244,145,23,200,96,101,67,129,16,80,151,206,7,137,7,74,150,110,32,16,192,209,163,71,177,119,239,94,178,211,143,146,216,220,160,43,200,115,144,100,47,0,213,213,213,88,187,118,109,204,216,46,208,123,172,93,77,19,169,36,150,110,40,2,52,123,99,124,194,73,14,171,9,248,127,151,2,215,138,174,159,119,222,121,7,207,63,255,60,92,46,151,196,138,162,164,75,23,54,25,25,25,40,45,21,210,255,123,83,6,243,232,254,64,182,13,253,250,245,131,195,225,128,217,108,102,49,27,222,186,149,187,149,229,196,235,243,9,106,103,90,101,47,43,225,172,33,192,93,167,177,99,120,230,153,103,80,94,94,46,89,32,197,43,156,161,100,57,166,84,35,123,78,141,74,45,145,170,187,73,84,244,111,121,76,151,37,7,2,125,167,197,159,134,156,16,43,129,106,241,226,197,226,152,187,54,197,93,203,60,110,153,200,18,23,63,254,248,227,40,143,95,111,173,219,213,76,28,131,222,156,204,210,5,210,46,230,206,96,50,2,179,46,4,110,23,149,89,62,254,248,99,204,154,53,11,173,173,173,18,215,37,77,204,49,153,76,176,90,173,98,189,110,111,177,116,1,226,249,240,119,192,231,243,73,50,178,249,77,105,146,151,187,211,252,126,33,243,89,239,21,252,255,55,153,133,5,90,90,90,240,248,227,143,163,181,181,85,177,139,84,60,147,3,127,239,48,210,77,5,113,12,33,166,91,80,80,16,229,94,78,84,18,149,220,210,117,58,157,98,6,247,73,16,215,237,238,57,148,103,241,242,101,66,193,96,16,30,143,7,159,127,254,57,217,121,112,22,203,71,232,21,40,203,1,206,39,198,196,247,223,127,143,93,187,118,245,137,238,67,9,77,164,226,159,211,45,173,74,213,13,60,112,22,217,4,172,92,185,18,15,61,244,16,154,155,155,225,247,251,153,245,196,147,238,184,113,164,39,37,142,54,3,173,189,68,231,250,132,27,240,135,224,243,249,224,241,120,36,201,52,188,8,190,218,196,78,111,182,64,64,32,38,61,98,186,60,140,6,224,217,75,128,124,18,223,253,238,187,239,240,198,27,111,72,186,72,241,37,95,177,38,8,185,167,136,17,78,40,2,120,147,156,193,44,184,151,169,48,70,162,18,169,40,120,194,165,139,45,155,205,38,202,200,246,225,22,127,137,130,82,115,3,191,223,143,77,155,54,161,177,81,16,205,73,149,230,6,93,129,80,62,4,0,115,231,206,237,180,17,66,111,32,95,77,98,186,242,149,107,90,149,170,27,184,253,84,96,150,168,215,188,113,227,70,220,119,223,125,104,108,108,148,184,152,41,233,78,154,52,137,188,47,20,1,22,238,143,254,188,227,46,96,201,65,224,233,117,192,79,255,3,60,241,133,94,191,68,29,229,45,236,79,187,221,174,88,142,162,6,254,38,11,6,5,82,210,211,189,76,145,239,36,177,105,225,58,253,231,63,255,97,153,162,74,234,98,157,17,47,221,82,166,145,189,175,3,240,144,243,155,151,151,23,215,181,233,42,228,238,101,26,102,24,58,116,40,217,225,36,176,116,187,131,46,213,230,26,83,168,185,65,87,48,121,16,171,238,248,234,171,175,112,244,232,81,85,107,183,183,64,243,236,101,147,201,132,126,253,132,18,145,180,64,70,215,112,237,104,18,231,21,244,154,119,238,220,137,199,31,127,28,129,64,0,161,16,209,89,230,51,152,89,109,231,155,219,128,231,55,1,31,236,2,30,255,2,184,234,35,224,154,185,192,147,95,2,255,61,64,38,177,84,112,245,87,16,210,205,206,206,134,195,225,136,138,107,198,178,112,233,99,36,18,17,181,100,245,74,164,146,99,242,32,224,215,147,217,49,253,223,255,253,31,126,248,225,7,213,14,82,242,85,185,210,111,54,155,205,226,111,79,38,233,114,11,101,37,9,200,158,38,85,201,19,169,40,233,218,108,54,148,105,213,226,47,24,34,146,163,107,126,0,254,246,13,249,187,151,162,179,230,6,219,182,109,35,59,158,61,132,148,40,246,70,8,210,144,225,112,152,73,67,82,105,75,121,206,68,111,176,118,53,19,199,160,155,201,100,66,110,110,46,17,111,72,133,137,190,183,225,226,161,192,43,63,1,254,119,21,224,9,98,237,218,181,56,120,240,32,198,143,31,47,41,163,201,204,204,196,244,233,211,241,238,187,239,18,107,119,222,247,138,31,103,183,219,73,226,81,42,120,29,4,75,119,240,224,193,49,99,132,6,131,33,234,70,162,207,169,59,13,128,254,238,101,30,191,60,141,136,129,108,174,66,91,91,27,102,205,154,133,183,223,126,91,18,155,150,123,129,212,18,145,248,210,153,96,48,152,92,129,140,38,81,2,50,51,51,51,33,177,92,57,228,139,116,139,197,2,171,213,42,146,238,145,38,98,109,119,213,147,225,235,32,99,236,104,51,112,84,120,252,161,153,144,120,136,27,79,249,14,125,196,34,52,32,3,181,230,6,129,64,0,203,150,45,19,189,64,169,94,155,27,11,63,26,10,20,101,2,53,110,172,94,189,26,191,254,245,175,225,116,58,89,232,50,20,10,177,121,144,73,226,166,48,18,74,186,64,90,149,74,19,156,57,152,180,6,252,19,73,136,216,179,103,15,70,143,30,13,139,197,34,73,64,122,228,145,71,80,88,88,136,170,170,42,12,25,50,4,35,70,140,192,166,77,155,80,87,87,135,129,3,7,50,149,159,15,63,252,48,53,188,14,21,68,109,168,172,172,44,166,5,197,67,190,162,165,147,14,128,228,89,186,0,137,149,61,115,9,112,243,39,64,93,59,246,238,221,139,87,95,125,21,15,63,252,112,148,90,21,253,93,84,185,74,222,208,130,183,118,131,193,96,114,45,93,33,115,217,110,183,71,253,134,158,100,47,243,239,81,114,47,219,108,54,12,31,62,156,236,24,12,3,139,15,0,55,142,87,254,32,119,64,153,92,143,187,226,203,24,238,133,82,147,74,247,0,239,90,246,122,189,98,115,131,126,182,212,108,110,16,47,76,70,82,231,255,226,102,120,189,94,124,242,201,39,152,49,99,6,108,54,27,130,193,160,68,161,42,94,5,184,100,34,97,164,171,100,229,82,66,72,41,85,170,250,118,210,152,220,150,240,245,134,182,248,241,112,224,237,237,64,5,201,142,149,103,48,211,199,123,238,185,135,197,115,252,126,63,70,143,30,13,159,207,135,246,246,118,214,25,7,0,224,10,16,75,192,158,196,243,32,88,186,197,197,197,146,172,88,53,240,214,46,157,108,216,239,1,146,107,233,2,68,232,228,255,126,4,220,189,24,8,69,176,96,193,2,76,154,52,9,87,92,113,69,76,194,226,193,223,59,22,139,133,252,190,100,146,174,96,233,58,157,78,213,238,66,137,76,166,162,164,107,181,90,49,97,194,4,56,28,14,114,14,94,217,2,212,182,147,50,51,151,159,44,216,126,104,38,4,91,27,123,1,105,54,155,209,191,127,127,12,25,50,4,69,69,69,24,48,96,0,114,114,114,176,106,213,42,236,217,179,167,87,75,77,170,41,80,125,251,237,183,168,168,168,32,59,77,59,133,133,168,122,45,174,29,69,66,1,238,0,62,251,236,51,220,118,219,109,76,177,142,230,75,208,251,43,149,9,23,208,65,123,89,98,233,166,130,117,53,125,62,41,184,159,88,8,156,49,136,108,227,11,72,39,153,84,199,200,124,160,162,21,38,147,137,21,134,243,147,21,0,230,154,147,139,76,208,215,217,2,8,32,139,160,33,217,201,248,37,132,72,132,69,88,73,73,137,106,86,44,125,148,199,113,233,223,76,218,14,72,78,34,149,28,147,6,18,201,203,215,182,34,18,137,96,246,236,217,24,57,114,36,70,141,26,213,105,205,49,5,253,253,41,209,200,190,81,148,128,212,34,115,25,80,86,164,178,90,173,232,215,175,31,126,246,179,159,225,163,143,62,34,247,236,135,187,99,126,142,197,98,65,97,97,33,202,202,202,80,90,90,138,210,210,82,148,149,149,177,86,129,52,233,206,239,247,195,227,241,96,223,190,125,132,116,245,74,212,146,89,221,221,61,127,241,36,80,45,93,186,84,124,195,213,189,216,181,76,145,97,5,174,27,3,124,184,27,77,77,77,88,190,124,57,110,188,241,70,38,19,75,235,250,105,85,71,42,91,187,154,184,151,229,150,46,75,253,111,242,146,218,76,99,146,78,68,32,36,78,96,219,143,147,13,32,214,222,105,3,69,18,30,221,159,184,52,82,13,194,49,181,182,182,42,234,48,83,119,101,56,28,142,138,37,210,132,35,170,42,20,14,135,147,75,186,21,98,230,114,73,73,9,83,157,138,103,82,231,39,27,38,1,105,51,165,206,194,233,246,83,129,157,39,128,141,149,112,187,221,120,244,209,71,241,206,59,239,40,146,46,93,153,203,93,204,180,197,29,128,228,214,234,10,238,229,220,220,92,77,36,32,233,103,240,139,71,222,109,250,248,227,143,99,224,192,129,248,238,187,239,96,183,219,81,80,80,128,138,138,10,180,182,182,34,47,47,15,67,134,12,97,228,58,112,224,64,137,168,10,175,100,70,137,41,16,8,192,231,243,73,165,38,123,97,73,82,44,217,199,182,182,54,172,91,183,142,236,56,166,63,89,172,247,5,252,207,120,210,10,180,35,140,249,243,231,227,218,107,175,101,214,110,71,71,7,204,102,179,100,236,164,34,225,2,26,39,82,209,9,134,145,110,40,66,136,183,191,51,145,95,27,63,184,102,220,3,7,14,68,93,93,29,33,31,95,7,176,185,138,108,0,137,13,158,94,36,146,240,200,252,212,168,111,243,145,132,161,250,250,122,73,154,60,63,97,81,130,229,187,221,208,162,249,64,32,0,187,221,14,187,221,78,44,196,100,122,30,132,120,174,197,98,65,65,65,65,84,109,174,18,228,86,174,68,119,57,149,164,237,12,6,224,169,139,128,91,62,5,78,184,113,240,224,65,188,244,210,75,248,211,159,254,36,89,12,1,80,76,252,160,247,79,74,244,212,21,44,221,1,3,6,196,101,165,119,21,188,69,34,39,94,128,144,253,111,127,251,91,4,2,1,182,81,119,34,133,124,236,240,139,80,122,140,52,225,206,239,247,179,201,153,169,184,249,58,200,2,84,235,121,73,150,173,222,179,143,146,90,185,52,129,202,239,247,99,205,154,53,201,109,110,240,238,14,224,174,211,19,255,185,5,25,36,204,182,236,16,202,203,203,177,97,195,6,92,126,249,229,204,218,165,9,85,169,30,219,77,8,233,242,217,165,114,75,87,162,35,11,232,51,184,213,32,172,218,13,6,3,126,243,155,223,192,110,183,163,162,162,2,7,15,30,196,254,253,251,81,89,89,73,72,184,61,8,108,168,36,27,64,18,17,38,15,18,73,120,88,110,114,142,95,16,73,96,150,170,0,57,233,210,125,232,117,9,135,195,8,6,131,204,213,156,153,153,41,144,110,18,99,236,66,60,119,192,128,1,146,62,185,74,150,174,82,230,50,221,52,111,96,223,93,244,179,147,114,175,95,253,23,232,8,99,225,194,133,152,52,105,18,174,190,250,234,40,66,160,150,24,15,163,209,8,135,131,136,110,164,66,76,151,74,64,42,37,186,37,218,218,149,255,143,102,52,211,248,157,92,207,154,238,43,39,94,222,205,72,73,151,150,98,133,66,33,148,209,236,104,128,184,152,147,53,47,117,1,252,194,83,158,177,76,155,27,44,95,190,156,236,108,51,1,63,73,66,115,131,143,191,7,174,56,5,24,148,149,248,207,190,117,34,176,236,16,0,96,222,188,121,184,240,194,11,225,112,56,88,169,148,220,187,151,106,132,11,104,144,72,197,63,167,27,141,47,250,253,126,98,93,141,238,159,168,175,237,26,132,85,187,197,98,65,78,78,14,114,114,114,48,116,232,80,92,122,233,165,48,153,76,104,111,111,199,238,221,187,177,107,215,46,236,217,179,7,149,149,149,100,128,183,250,129,181,71,201,6,144,18,131,201,131,136,4,224,25,131,128,226,126,49,190,52,129,16,44,93,58,25,243,22,2,63,105,241,147,13,213,49,166,155,197,98,65,110,110,46,234,234,234,146,155,216,38,184,151,187,234,90,230,17,14,135,209,220,220,76,158,36,59,137,74,9,227,11,128,223,76,1,94,250,26,0,240,231,63,255,25,163,70,141,194,216,177,99,163,22,72,74,46,230,148,104,100,47,44,84,149,36,32,129,196,91,187,128,152,213,205,147,46,37,94,37,194,229,247,149,223,7,128,232,233,233,232,232,96,132,27,8,4,88,125,184,215,235,37,164,59,105,96,143,127,75,76,36,176,98,136,158,3,121,115,131,242,242,114,18,167,6,72,185,97,150,45,113,95,26,15,42,90,200,60,251,197,81,162,157,156,104,140,204,7,206,26,12,108,169,102,243,244,148,41,83,162,98,187,169,156,80,149,112,247,178,124,224,243,170,84,132,116,147,56,209,115,153,152,153,153,153,200,206,206,134,211,233,132,205,102,99,25,142,197,197,197,184,226,138,43,16,12,6,209,208,208,128,237,219,183,99,231,206,157,216,179,103,15,142,31,23,98,192,141,94,96,213,17,178,1,192,252,233,192,80,29,172,95,129,116,217,100,204,65,110,41,80,203,151,186,92,104,140,139,254,206,3,7,14,164,132,123,185,180,180,84,181,139,16,15,165,82,161,72,36,130,150,22,33,54,156,204,114,161,88,184,101,34,137,239,126,89,142,246,246,118,60,246,216,99,120,247,221,119,37,164,75,59,68,201,189,23,162,254,114,18,235,116,133,133,42,85,163,210,34,145,138,130,255,60,249,226,145,186,156,149,58,54,201,195,90,242,99,163,164,75,61,68,124,162,97,126,126,62,170,170,170,122,85,6,115,172,4,170,37,75,150,136,11,146,100,184,150,119,157,32,143,95,150,107,67,186,0,177,118,183,84,3,32,10,112,19,39,78,132,221,110,103,53,187,116,97,70,137,23,72,204,226,48,81,208,164,94,68,78,188,38,147,9,217,217,217,104,106,106,74,174,117,37,172,218,51,51,51,225,116,58,145,145,145,129,140,140,12,216,237,118,182,66,2,192,6,115,78,78,14,138,139,139,49,109,218,52,120,189,94,84,87,87,99,251,246,237,216,181,107,23,246,239,223,47,90,89,205,62,96,168,14,199,207,145,174,210,32,146,91,31,242,133,15,205,12,45,42,18,68,207,147,117,45,194,17,54,201,21,23,23,75,44,221,174,38,82,185,92,66,141,101,42,90,186,20,79,92,8,28,106,4,170,93,56,124,248,48,94,120,225,5,204,154,53,75,226,6,163,132,64,73,197,96,48,136,74,110,201,178,116,219,3,108,204,41,169,81,37,18,114,107,151,127,78,207,143,156,108,229,150,140,210,248,7,192,50,90,1,68,121,125,134,12,25,34,144,110,234,39,83,201,23,156,242,230,6,94,175,23,107,214,172,33,59,15,202,98,205,56,116,197,78,129,116,119,215,18,35,71,232,59,157,80,156,83,76,196,76,14,55,97,253,250,245,168,170,170,130,211,233,68,48,24,140,202,100,78,69,177,140,132,167,123,42,173,58,77,38,147,24,215,77,38,233,10,150,110,78,78,14,107,150,238,112,56,36,4,156,153,153,137,172,172,44,100,101,101,33,59,59,27,57,57,57,200,205,205,69,126,126,62,70,140,24,129,171,174,186,10,15,60,240,0,158,126,250,105,49,230,166,87,203,66,47,153,0,153,5,36,64,62,241,40,109,60,169,13,28,40,184,209,146,229,117,168,113,1,126,146,8,83,82,82,162,170,218,68,127,15,15,121,34,149,72,186,41,106,233,2,196,197,55,251,82,192,66,110,183,197,139,23,99,241,226,197,172,241,61,175,207,204,187,77,153,172,103,178,72,151,75,60,84,210,93,214,194,205,204,127,46,63,110,249,206,83,60,105,242,36,74,95,147,119,169,82,250,155,186,171,75,74,74,200,151,247,162,246,129,124,214,50,111,229,126,245,213,87,104,104,16,90,123,94,61,50,57,201,159,59,107,200,99,56,2,172,175,208,238,123,4,105,200,142,142,14,38,13,201,203,173,202,155,220,167,146,52,164,38,53,22,74,55,77,97,97,33,121,49,153,46,205,38,177,25,183,205,102,147,108,52,171,87,141,132,233,99,118,118,54,219,24,233,182,232,212,213,199,39,146,174,220,218,136,53,233,201,175,7,107,183,152,172,107,193,53,58,40,45,45,85,37,92,57,228,132,43,201,94,78,101,75,23,32,162,237,191,61,135,61,125,225,133,23,176,111,223,62,213,54,128,6,131,33,249,141,236,27,69,9,72,167,211,169,234,190,77,36,148,72,93,238,173,81,219,148,148,191,228,201,85,60,241,154,205,102,177,110,61,197,45,221,46,213,230,26,0,92,149,132,230,6,117,237,82,117,175,47,142,106,247,93,151,15,103,137,111,203,151,47,71,99,99,163,164,17,130,90,236,63,21,160,89,151,33,254,121,202,168,82,53,138,153,152,22,139,69,178,241,98,18,114,18,150,19,113,70,70,134,180,223,167,206,164,75,59,242,0,157,91,24,114,87,179,201,100,194,128,1,164,107,7,218,131,172,131,140,174,16,226,185,253,250,245,99,74,71,241,168,53,1,209,46,54,86,26,145,106,217,203,74,184,97,28,112,233,48,0,128,215,235,197,172,89,179,208,216,216,24,213,6,144,78,22,204,210,77,86,157,174,134,18,144,157,65,205,99,19,203,139,163,244,26,127,124,74,97,47,86,171,219,230,39,155,150,232,33,1,40,149,9,81,210,173,175,175,199,214,173,91,201,142,83,6,3,69,26,100,14,119,6,106,229,82,108,59,174,221,216,181,152,72,221,46,128,246,246,118,44,90,180,72,98,237,42,17,111,170,16,176,102,106,2,114,215,16,155,232,147,153,72,37,76,34,133,133,133,18,119,148,60,206,195,19,49,79,194,188,85,236,112,56,196,73,177,89,7,210,13,133,137,184,7,164,109,240,120,40,61,87,154,160,216,181,0,146,179,8,18,44,221,162,162,34,73,182,161,154,235,18,80,190,97,194,225,176,40,3,153,202,238,101,30,143,93,0,148,144,88,237,209,163,71,241,252,243,207,163,189,189,61,170,13,96,36,18,73,126,157,174,176,72,205,200,200,80,205,92,214,51,65,69,141,116,59,123,143,252,189,252,188,196,72,23,72,249,100,42,222,173,44,119,45,47,95,190,92,108,110,112,237,232,228,28,160,144,68,197,250,167,7,66,192,166,99,218,125,223,117,99,216,98,123,225,194,133,112,187,221,93,106,165,153,44,104,238,94,166,131,92,162,74,21,10,199,254,0,173,208,36,54,227,150,199,121,212,98,71,74,36,76,137,56,55,87,200,88,214,35,166,43,88,185,64,180,165,27,207,196,195,79,54,89,89,89,98,130,65,50,92,204,66,185,80,89,89,153,106,18,149,18,148,178,151,125,62,97,193,147,74,226,24,177,144,105,37,245,187,54,114,254,87,172,88,129,207,62,251,140,17,47,239,30,99,225,11,127,136,180,163,211,27,194,253,146,157,157,45,113,213,106,77,182,106,153,234,221,157,60,149,114,30,232,120,203,201,201,17,73,34,69,251,246,202,127,191,82,115,131,21,43,86,144,157,179,109,192,69,101,201,57,80,33,137,170,184,184,24,22,139,176,8,254,178,92,187,239,203,182,177,12,237,186,186,58,172,94,189,90,49,84,147,106,214,174,38,253,116,233,35,63,184,25,233,134,35,146,4,13,221,16,8,17,145,127,136,164,171,164,100,163,20,71,82,74,222,144,88,239,122,88,186,94,145,116,233,36,17,203,197,167,180,194,231,127,27,155,208,147,104,233,210,36,170,88,174,65,37,240,147,143,223,47,184,4,123,131,123,153,98,100,62,240,191,83,217,211,87,94,121,5,251,247,239,103,253,119,233,164,193,174,17,144,28,107,87,7,9,72,32,154,84,148,254,167,246,90,188,80,187,15,204,102,179,24,59,215,154,116,123,56,223,43,17,110,32,16,192,247,223,127,79,90,167,2,68,12,35,25,205,13,218,252,164,5,35,128,225,195,135,139,29,162,54,85,50,15,157,38,184,105,60,96,34,227,240,227,143,63,142,74,76,84,234,95,157,108,232,102,233,178,228,29,32,57,19,189,44,19,83,45,246,163,228,134,82,74,216,160,226,234,0,128,86,29,72,87,176,116,187,98,105,168,173,240,77,38,147,24,143,214,251,90,184,3,204,109,169,150,185,44,7,127,179,200,39,94,230,82,75,245,68,42,57,174,27,3,92,65,212,130,252,126,63,158,122,234,41,22,223,165,113,41,73,185,67,50,106,117,27,197,196,67,126,81,10,36,86,202,144,255,155,119,159,202,55,190,78,87,254,190,120,160,182,160,102,37,116,41,104,233,170,157,31,222,181,188,120,241,98,241,13,201,234,155,187,251,4,91,84,140,28,57,18,167,158,122,42,121,210,30,4,182,86,107,247,189,131,179,129,75,72,189,230,225,195,135,177,101,203,22,214,228,158,183,118,251,44,233,170,197,20,233,138,146,9,184,39,35,174,203,73,64,246,235,215,79,85,210,142,63,110,254,111,165,155,149,89,239,122,88,186,2,233,118,213,42,84,90,72,152,76,38,209,53,174,247,181,168,144,102,46,199,171,70,165,102,233,136,164,219,139,44,93,138,63,157,15,148,229,0,0,142,29,59,134,151,95,126,25,30,143,135,197,119,169,176,9,128,164,90,186,131,6,13,138,178,116,123,66,190,242,107,41,39,87,26,143,83,218,148,8,152,126,78,60,144,223,7,102,179,89,212,96,214,58,131,185,155,66,13,74,132,203,55,55,88,191,126,61,217,113,84,126,242,212,254,4,215,178,205,102,195,176,97,195,112,218,105,167,49,209,23,77,179,152,1,137,8,7,95,62,164,70,188,201,38,95,77,234,116,229,147,60,125,204,200,200,32,59,37,35,142,40,88,186,54,155,45,42,62,197,67,237,134,80,34,223,156,28,50,97,234,25,211,165,223,173,6,165,227,87,186,22,108,193,160,247,181,16,92,203,22,139,37,74,68,159,255,93,244,119,200,111,16,185,187,177,163,67,112,187,247,54,75,23,0,28,22,18,223,21,122,26,175,91,183,14,75,150,44,97,196,27,12,6,147,75,186,77,82,75,55,81,132,75,31,229,100,203,147,137,124,163,175,169,213,97,242,159,173,4,53,247,178,164,178,34,5,45,93,64,58,230,229,205,13,214,174,93,11,183,219,77,118,76,150,149,11,176,204,229,97,195,134,33,35,35,3,121,121,121,24,57,82,40,91,90,95,161,109,30,207,248,2,210,37,14,192,182,109,219,112,240,224,193,152,164,155,108,104,154,189,44,31,220,76,97,167,49,9,49,93,133,102,220,177,172,93,30,106,86,47,179,22,131,97,237,39,69,161,217,129,154,197,161,116,188,242,255,41,78,52,122,187,151,133,114,161,120,26,29,196,2,31,223,2,208,59,45,93,128,40,235,60,114,46,123,250,143,127,252,3,7,14,28,128,215,235,69,48,24,20,173,133,164,88,186,98,226,97,119,174,17,15,165,248,172,60,62,73,99,148,129,64,0,126,191,31,62,159,143,149,83,241,217,221,177,178,83,59,155,84,229,11,103,73,6,115,131,135,221,103,154,160,11,243,189,124,65,161,84,38,68,179,150,1,144,56,110,50,154,27,0,196,32,216,71,68,57,70,141,26,197,202,44,39,79,158,76,94,111,246,17,133,42,45,33,136,101,68,34,17,69,177,12,185,87,36,153,228,171,89,76,151,62,210,77,162,74,149,12,75,87,152,64,50,51,51,227,34,46,64,57,81,137,191,105,153,165,11,104,95,171,43,88,186,116,18,86,58,54,57,148,86,247,244,90,136,98,37,58,147,174,96,233,118,197,181,76,161,52,105,51,189,226,222,148,72,37,199,213,163,136,130,16,128,64,32,128,215,94,123,13,45,45,45,240,249,124,98,22,168,222,181,186,238,0,75,128,145,171,81,117,135,112,233,163,90,157,41,37,90,175,215,171,186,241,245,204,124,162,76,103,86,140,210,124,196,223,11,146,178,33,94,220,33,69,32,111,110,64,207,87,121,121,57,190,253,246,91,178,211,69,101,164,179,85,50,176,167,14,232,32,247,225,132,9,19,224,116,58,225,116,58,113,206,57,231,136,222,43,45,179,152,1,224,130,82,160,148,24,117,107,215,174,197,241,227,199,21,173,93,121,55,175,100,64,55,75,87,170,74,149,188,152,110,78,78,78,84,107,53,122,188,157,65,126,195,218,237,118,209,253,167,35,233,42,185,247,226,141,235,210,107,33,214,77,235,188,0,82,232,46,20,47,225,202,255,102,194,24,64,239,116,47,243,120,228,60,96,56,241,156,212,214,214,226,131,15,62,128,215,235,21,73,87,111,75,151,243,128,200,221,203,64,124,18,144,74,11,36,165,236,91,74,182,30,143,7,30,143,7,46,151,11,199,143,31,199,206,157,59,81,95,95,143,198,198,70,84,87,87,227,219,111,191,149,184,222,213,212,135,148,200,87,126,175,240,150,46,237,160,4,64,183,90,221,120,23,46,106,94,1,170,64,197,126,235,181,201,119,45,155,205,102,140,26,53,138,233,25,20,22,22,98,196,8,193,250,214,58,174,107,48,0,55,79,0,64,22,174,243,231,207,79,89,105,200,132,55,60,144,79,160,244,102,149,184,52,147,24,211,205,207,207,87,92,241,170,65,41,230,203,111,86,171,149,8,52,104,29,215,245,74,73,183,171,196,75,95,143,138,233,122,59,200,132,174,71,157,107,56,194,146,85,40,233,242,238,101,254,24,121,40,185,133,34,17,78,141,202,128,222,109,233,2,36,174,59,231,50,224,182,79,1,111,7,118,238,220,137,65,131,6,37,207,189,44,220,47,38,147,9,54,155,45,110,197,48,32,122,129,164,70,186,60,241,210,173,161,161,1,111,188,241,6,22,45,90,132,96,48,136,145,35,71,98,232,208,161,88,187,118,45,130,193,32,38,77,154,132,15,62,248,0,253,251,247,103,223,195,223,11,145,136,122,59,55,165,152,46,37,222,156,156,28,52,54,54,166,148,28,164,82,44,151,175,205,93,189,122,53,217,113,96,38,112,230,224,228,29,168,144,68,53,124,248,112,100,101,101,73,198,203,89,103,157,133,131,7,15,2,53,110,96,127,131,182,137,94,87,142,4,222,218,14,52,251,176,100,201,18,220,121,231,157,112,56,28,146,70,8,180,251,80,119,242,17,18,5,205,44,93,32,58,142,200,172,171,36,150,12,13,28,56,80,181,68,165,43,110,90,58,168,196,166,7,250,88,186,22,139,37,174,201,47,150,75,45,105,170,84,199,93,204,101,201,215,232,118,197,117,201,79,226,44,129,196,97,1,140,201,187,137,18,134,178,28,146,209,44,96,197,138,21,34,129,233,77,186,130,103,200,225,112,196,37,177,72,161,148,40,165,228,74,246,249,124,240,122,189,104,111,111,135,219,237,70,107,107,43,62,251,236,51,92,127,253,245,152,63,127,62,203,74,63,88,125,20,43,247,125,141,96,7,121,190,107,215,46,60,255,252,243,240,122,189,138,49,187,206,98,187,74,247,176,217,108,22,155,128,164,88,50,149,90,153,208,230,205,155,81,95,95,79,118,186,122,100,242,198,127,71,24,248,142,196,107,199,140,25,195,196,131,44,22,11,108,54,27,206,59,239,60,113,95,173,93,204,118,51,48,125,28,0,160,173,173,13,139,23,47,78,73,177,12,93,220,203,81,19,125,179,143,197,0,116,131,16,211,45,44,44,84,140,233,198,235,94,166,143,212,122,103,82,125,154,91,186,100,210,177,90,173,81,19,94,87,92,227,116,162,161,210,126,0,244,35,93,174,92,72,77,24,67,13,74,37,67,98,179,131,94,110,229,242,184,226,20,224,103,68,198,47,20,10,17,235,11,208,191,78,151,75,60,236,108,145,170,38,94,193,19,174,146,43,217,237,118,163,173,173,13,7,14,28,192,3,15,60,128,71,31,125,84,252,189,25,22,224,161,169,192,234,219,129,79,111,4,254,126,13,243,102,44,88,176,0,53,53,53,49,133,16,98,129,222,7,188,65,80,86,86,70,94,212,146,116,187,48,193,199,74,56,243,251,253,88,182,108,25,217,209,0,146,19,144,44,236,111,96,94,184,241,227,199,71,201,233,22,23,23,139,157,156,180,118,49,3,192,244,177,76,237,109,193,130,5,240,120,60,81,177,221,100,187,151,53,169,211,149,147,19,157,232,153,64,70,50,84,169,56,117,157,174,146,45,160,158,193,204,244,151,181,142,233,10,173,240,104,173,115,60,132,219,153,181,203,172,116,189,220,253,66,18,85,172,70,7,157,93,23,254,134,97,253,140,123,123,60,87,142,135,166,18,213,42,64,44,137,210,221,210,37,247,103,103,53,237,114,87,178,146,117,75,93,199,62,159,15,30,143,7,237,237,237,112,185,92,104,106,106,194,123,239,189,135,91,111,189,21,155,55,111,22,191,251,162,50,96,254,13,68,208,158,170,43,77,26,8,220,77,178,97,125,62,31,62,250,232,35,69,107,55,150,21,163,230,173,146,116,27,74,33,75,87,45,233,172,161,161,1,95,127,253,53,217,233,204,193,164,119,110,178,32,232,45,27,12,6,140,29,59,54,74,82,215,98,177,96,202,148,41,100,223,35,205,218,199,204,115,29,196,205,12,160,166,166,6,107,215,174,141,18,203,224,137,23,208,223,218,213,213,210,101,217,203,128,190,46,230,160,178,4,100,87,44,69,186,159,252,134,101,25,204,90,147,174,96,233,210,120,73,87,92,227,252,223,252,177,179,190,188,122,37,182,9,229,66,52,86,217,153,18,149,26,232,100,212,210,34,88,206,125,201,210,5,0,155,153,212,239,242,191,43,73,238,229,220,220,92,85,111,132,146,101,219,89,162,84,123,123,59,218,218,218,176,125,251,118,252,242,151,191,196,27,111,188,33,54,173,40,200,0,94,248,49,217,10,50,162,143,233,186,49,64,22,89,96,45,88,176,0,46,151,43,202,125,24,143,21,35,191,15,140,70,163,152,193,124,194,173,185,206,117,188,33,20,53,215,178,164,185,65,50,107,115,1,150,68,85,90,90,42,122,253,56,24,141,70,76,157,42,74,158,226,139,114,237,143,233,150,9,196,3,0,96,222,188,121,138,30,145,100,214,237,106,214,196,158,127,78,7,184,197,98,129,221,46,164,181,235,153,76,213,24,159,4,36,255,168,6,249,123,153,245,174,83,76,151,111,118,64,143,167,51,40,45,22,36,170,84,58,187,151,203,186,208,232,64,169,190,147,254,191,181,85,88,53,247,53,75,23,32,157,136,30,187,64,124,158,36,75,87,46,96,2,32,138,120,149,200,65,141,108,107,106,106,240,231,63,255,25,119,223,125,55,73,176,1,72,60,242,134,113,192,252,233,177,197,250,29,22,224,103,99,0,0,245,245,245,88,177,98,69,151,99,187,74,94,56,179,217,140,193,131,133,68,164,112,132,228,30,104,129,46,214,233,42,45,98,188,94,47,86,174,92,73,118,202,178,2,23,151,105,113,164,241,30,36,179,116,71,140,24,161,170,28,86,86,86,38,134,22,181,142,235,2,64,105,14,112,62,81,25,219,183,111,31,118,238,220,153,82,98,25,186,105,47,211,191,217,106,72,79,75,87,112,101,27,12,157,75,64,42,33,214,66,162,160,160,128,252,83,167,236,101,135,195,209,105,50,139,18,98,198,216,117,118,47,23,23,23,119,171,209,1,32,157,228,93,46,97,114,236,107,150,46,197,101,195,9,25,1,250,215,233,10,247,76,81,81,81,84,14,132,60,89,74,41,27,89,30,187,109,105,105,193,234,213,171,113,203,45,183,96,254,252,249,162,168,201,41,121,192,123,215,2,15,159,27,223,226,233,134,113,170,2,247,177,38,84,37,143,15,191,8,45,42,42,18,107,74,147,232,98,142,21,203,13,4,2,216,187,119,47,126,248,225,7,178,243,79,70,16,175,72,178,112,180,5,104,37,13,71,134,13,27,22,149,137,78,203,186,194,225,48,38,77,154,68,222,243,93,173,62,243,205,109,162,52,228,220,185,115,217,226,76,205,218,213,147,124,117,201,94,230,19,22,152,59,86,207,90,93,78,2,50,86,226,78,103,241,81,57,201,73,136,75,167,58,93,73,231,153,46,66,126,45,196,18,46,29,174,69,55,26,29,200,33,119,103,50,210,77,70,185,80,155,31,88,87,174,253,247,204,60,27,24,211,63,105,238,101,165,26,93,64,217,18,83,75,148,58,122,244,40,254,240,135,63,224,145,71,30,65,109,173,160,76,100,51,1,191,153,2,252,243,58,34,227,23,47,6,102,50,107,120,223,190,125,216,177,99,135,98,134,170,210,68,170,100,229,210,205,106,181,138,249,25,90,145,174,202,34,32,122,55,117,215,242,146,37,75,196,29,83,196,181,12,144,133,52,205,72,167,245,214,180,107,86,32,16,192,196,137,2,9,70,0,172,171,208,254,216,78,43,2,198,145,185,121,243,230,205,56,122,244,168,234,226,76,111,104,26,211,165,143,116,147,168,82,233,105,233,202,202,31,212,146,119,212,16,235,6,214,173,145,189,64,186,78,167,179,203,86,186,210,38,81,165,210,227,90,148,199,223,232,64,205,205,76,31,233,198,234,116,147,225,94,206,180,2,127,250,28,216,160,241,4,98,53,1,179,47,213,246,59,148,32,44,144,248,112,12,32,158,127,165,172,100,126,210,165,101,64,31,125,244,17,110,54,222,86,99,0,0,32,0,73,68,65,84,190,249,102,124,249,229,151,226,103,159,61,4,152,55,29,184,99,18,96,238,198,20,116,211,4,246,231,188,121,243,84,19,170,248,227,85,170,233,149,47,66,153,215,42,73,181,186,252,113,42,233,81,187,92,46,241,60,158,146,7,140,25,160,254,97,122,64,168,207,117,56,28,216,187,119,47,246,239,223,143,154,154,26,52,55,55,163,165,165,5,45,45,45,104,107,107,67,123,123,59,6,13,26,36,118,54,211,35,139,25,96,210,144,225,112,24,115,231,206,101,9,85,188,168,74,50,196,50,52,245,77,40,185,113,68,85,42,253,99,186,180,121,123,87,72,139,135,146,72,3,35,93,79,16,240,119,104,231,238,17,18,169,120,237,104,57,226,177,212,249,107,161,171,123,89,136,231,90,173,214,184,26,29,240,80,34,220,112,56,44,146,110,50,26,216,27,13,132,236,31,94,77,18,127,206,45,209,238,187,134,100,3,191,63,151,196,27,245,168,199,108,21,75,250,168,4,36,32,37,92,254,58,240,110,69,154,161,188,127,255,126,252,249,207,127,198,119,223,125,39,126,110,174,29,248,221,57,164,44,170,39,152,52,16,24,59,0,216,91,143,141,27,55,162,170,170,10,78,167,83,34,130,96,50,153,16,14,135,165,237,17,5,40,17,174,201,100,66,73,73,9,137,51,39,57,131,89,158,1,78,173,220,47,190,248,66,172,77,191,118,116,82,143,17,0,179,116,189,94,47,230,206,157,203,254,77,189,6,249,249,249,40,40,40,64,94,94,30,156,78,39,138,138,138,112,232,208,33,224,155,26,192,229,7,178,108,218,30,223,37,67,73,102,247,113,23,86,175,94,141,187,239,190,27,14,135,131,213,18,211,46,94,212,8,209,11,154,199,116,1,21,85,170,36,196,116,187,34,1,169,148,192,163,212,227,147,145,46,160,173,139,89,176,116,51,50,50,20,147,191,58,35,92,126,63,58,217,176,36,48,127,136,220,4,90,34,65,141,14,0,241,218,176,172,215,100,169,81,229,57,72,179,139,223,175,6,54,31,211,246,187,46,42,211,79,0,65,33,241,16,128,162,133,203,139,92,180,181,181,161,190,190,30,175,189,246,26,126,249,203,95,74,9,247,154,81,192,130,27,122,78,184,20,55,141,7,64,106,153,227,145,252,227,161,228,94,150,104,48,107,85,214,18,195,144,82,171,113,86,108,110,96,49,38,175,185,1,143,11,74,129,115,139,129,161,57,172,83,22,0,166,44,118,224,192,1,108,216,176,1,159,125,246,25,230,206,157,75,8,23,32,11,186,13,149,218,31,159,201,200,198,137,207,231,195,130,5,11,20,181,187,245,46,31,210,60,10,47,95,81,38,69,149,170,11,18,144,242,186,67,57,217,242,53,115,161,80,8,22,139,69,76,46,105,246,1,133,153,218,252,6,129,116,179,178,178,226,78,162,226,147,94,148,226,89,18,85,170,122,143,182,43,207,30,52,58,0,148,187,174,248,124,194,34,39,89,137,84,121,66,124,61,16,2,30,90,5,188,120,57,112,214,144,216,239,233,13,16,238,23,179,217,12,171,213,26,85,47,74,39,170,80,40,36,177,110,55,111,222,140,23,94,120,1,199,142,113,11,144,210,126,68,101,107,242,160,196,30,227,101,195,129,87,182,0,13,30,44,95,190,28,119,221,117,87,92,146,127,74,9,85,81,25,204,199,93,250,121,21,56,40,149,94,81,130,168,172,172,196,174,93,187,200,142,23,150,1,57,73,106,110,192,227,145,243,164,207,155,188,228,220,213,184,132,71,55,121,164,255,243,115,165,88,95,150,3,211,18,180,0,139,133,107,71,3,127,251,6,112,5,240,217,103,159,225,182,219,110,131,195,225,128,205,102,67,71,71,135,100,46,138,68,212,37,68,19,9,221,220,203,212,210,101,19,125,147,151,172,120,186,19,211,233,42,132,152,46,21,54,143,39,121,71,41,153,129,207,34,228,31,45,22,11,2,129,128,46,150,110,102,102,102,183,92,227,64,244,10,223,233,116,194,108,54,19,1,134,250,118,96,88,174,22,71,78,80,33,102,46,119,165,209,129,28,60,249,6,2,66,114,81,178,44,221,124,46,169,205,31,2,126,183,18,120,249,39,201,213,193,77,4,132,251,133,149,247,1,18,18,0,32,33,220,154,154,26,188,246,218,107,82,217,74,139,145,196,108,127,121,154,40,112,145,72,152,141,68,125,232,205,237,104,107,107,195,178,101,203,112,235,173,183,194,110,183,179,5,49,117,49,203,199,152,82,168,197,100,50,137,164,27,12,3,181,110,160,72,95,209,9,181,50,33,154,64,197,206,109,178,19,168,212,144,231,32,155,90,98,92,163,71,36,98,61,122,144,3,100,110,184,126,44,240,254,46,52,55,55,99,217,178,101,184,233,166,155,96,179,217,96,177,88,20,199,137,214,228,171,89,157,174,146,101,101,48,112,117,173,17,176,155,91,115,52,74,117,151,213,44,93,165,149,166,60,101,95,222,235,179,186,186,90,108,23,165,229,64,18,74,134,178,179,179,59,117,141,243,80,114,45,203,137,23,128,182,158,135,80,152,37,167,80,75,55,158,70,7,64,180,252,35,255,63,70,186,201,136,233,2,204,210,181,90,133,239,247,135,128,223,174,4,190,57,158,156,227,73,20,132,251,133,134,50,232,253,64,9,128,90,182,109,109,109,88,184,112,33,110,190,249,102,44,95,190,92,36,133,73,3,129,127,95,15,220,115,134,54,132,75,113,221,24,38,249,247,233,167,159,74,92,204,74,137,50,60,148,238,7,70,186,128,238,201,84,177,74,133,60,30,15,214,172,89,67,118,44,204,32,137,104,189,17,249,78,66,200,63,30,14,220,56,94,191,239,189,113,28,51,238,228,161,136,206,198,137,22,208,173,100,136,143,35,178,201,85,175,178,161,166,232,76,204,88,19,188,82,125,28,31,191,242,122,189,112,187,221,88,186,116,41,158,122,234,41,81,170,79,7,75,87,41,145,42,94,226,165,127,243,158,7,93,84,169,106,220,9,105,116,64,31,233,198,206,123,178,196,49,4,210,205,204,204,20,245,101,125,29,192,204,21,146,114,138,94,7,97,49,220,175,31,233,79,42,47,91,105,111,111,199,129,3,7,112,255,253,247,227,233,167,159,22,149,193,178,172,196,149,252,247,171,181,245,154,80,228,58,88,108,179,178,178,18,27,55,110,100,37,42,74,229,67,74,19,42,191,0,181,217,108,98,134,173,22,201,84,42,19,186,90,221,51,61,223,91,182,108,17,75,173,174,74,98,115,131,222,138,1,25,146,113,178,126,253,250,152,227,4,208,54,182,171,105,19,123,254,57,31,215,165,250,193,186,88,186,193,16,169,169,132,40,1,169,52,209,243,113,42,249,160,151,151,66,84,84,84,224,209,71,31,197,219,111,191,45,198,21,139,50,129,137,133,218,253,14,159,84,28,3,136,95,190,146,238,171,148,64,162,75,9,151,224,90,54,24,12,170,194,24,252,113,82,200,7,190,220,26,96,164,155,52,247,50,241,18,4,2,1,220,113,199,29,24,58,116,40,249,191,183,3,120,112,5,83,235,233,117,224,18,15,249,115,237,247,251,225,114,185,240,206,59,239,224,214,91,111,197,182,109,219,196,247,92,54,140,232,37,95,55,134,244,54,213,11,92,249,208,39,159,124,34,209,217,237,172,30,83,62,238,204,102,179,24,254,210,48,131,185,179,5,191,124,145,147,50,205,13,122,51,110,21,197,50,120,105,72,165,113,162,181,181,171,171,246,50,125,204,200,16,116,85,245,176,116,155,148,37,32,41,248,137,92,173,246,144,146,173,203,229,194,226,197,139,241,171,95,253,10,59,118,236,16,191,227,154,81,192,220,159,3,227,186,80,228,223,21,248,59,72,98,7,212,27,30,196,155,88,37,191,38,172,54,81,203,178,33,33,137,42,59,59,187,211,70,7,106,80,74,112,99,170,70,73,78,164,242,251,253,200,201,201,193,3,15,60,128,225,195,135,147,215,60,65,224,193,229,172,237,89,175,2,39,1,9,128,185,150,191,255,254,123,220,121,231,157,120,243,205,55,165,139,205,87,126,66,106,137,251,71,107,239,106,142,17,121,192,20,226,22,222,190,125,59,14,29,58,164,42,130,16,143,68,36,115,49,235,88,54,20,43,127,164,169,169,73,108,6,49,121,16,41,31,75,163,235,24,145,199,220,242,187,119,239,198,158,61,123,152,7,179,207,144,46,133,146,133,69,221,86,186,212,135,54,138,18,144,52,30,74,39,119,57,217,170,245,251,116,185,92,56,118,236,24,254,240,135,63,224,185,231,158,19,149,144,242,29,36,99,245,241,11,181,141,43,10,86,46,32,106,47,119,39,145,10,136,246,58,20,21,21,145,23,52,181,116,123,214,232,64,205,181,204,110,142,36,187,151,59,58,58,96,181,90,145,151,151,135,63,254,241,143,24,49,66,40,231,104,15,2,247,47,3,246,212,37,231,248,186,11,193,3,53,96,192,0,118,127,28,62,124,24,51,102,204,16,203,62,76,6,34,44,255,241,116,109,107,148,227,193,255,144,248,96,36,18,81,45,31,226,69,51,212,182,72,36,34,150,52,106,81,54,212,73,201,144,82,109,238,138,21,43,196,220,133,84,77,160,234,45,144,73,67,202,187,15,233,37,13,169,121,76,151,62,242,113,68,150,76,165,163,165,107,181,90,153,107,153,130,31,232,114,178,229,101,236,86,174,92,137,219,110,187,13,235,214,173,19,63,247,71,67,137,170,206,5,165,218,255,6,175,72,186,180,68,169,171,49,93,165,77,162,194,163,229,181,16,44,221,161,67,135,198,221,232,64,9,252,205,192,122,233,2,73,183,116,233,34,192,225,112,32,63,63,31,79,62,249,164,148,120,127,179,12,216,87,159,156,99,236,14,26,165,37,118,161,80,8,139,22,45,18,197,72,70,228,1,31,252,12,248,237,57,164,9,65,178,113,94,9,80,76,44,192,53,107,214,160,174,174,142,197,236,228,174,102,254,145,223,40,217,177,251,65,39,75,55,86,153,144,164,54,55,195,66,196,30,210,232,62,206,26,66,148,188,0,172,95,191,30,149,149,149,170,93,170,180,68,82,44,221,129,3,7,146,23,245,168,213,21,86,237,242,182,83,157,181,32,115,185,92,168,174,174,198,19,79,60,129,63,254,241,143,104,106,106,34,111,204,182,1,207,94,2,204,185,76,191,90,57,193,210,149,147,84,87,173,93,165,107,209,191,127,127,242,162,150,94,7,33,166,59,100,200,16,166,254,163,180,8,224,161,148,177,76,31,35,17,78,2,210,104,72,222,196,159,231,96,45,196,218,219,219,97,179,217,224,112,56,80,80,80,128,217,179,103,139,196,235,10,0,247,45,35,13,191,83,29,145,8,203,194,239,215,175,31,203,94,102,34,48,165,253,128,119,174,1,70,247,79,226,65,202,96,52,48,107,215,231,243,97,209,162,69,76,247,151,39,95,254,81,105,235,232,232,16,13,2,111,71,226,231,39,133,201,92,205,181,28,8,4,176,111,223,62,28,57,114,132,236,120,249,8,137,0,69,26,221,132,16,219,13,133,66,152,55,111,94,84,66,149,92,84,69,11,2,214,61,166,171,155,75,147,66,176,116,51,51,51,89,121,138,82,27,50,190,193,118,91,91,27,214,175,95,143,219,111,191,93,92,105,2,192,212,98,96,222,207,245,87,131,225,72,55,158,86,120,157,129,191,38,140,116,131,97,109,178,175,93,126,102,57,149,150,150,50,194,237,110,31,93,250,200,228,240,146,217,97,200,108,36,139,48,0,110,183,27,102,179,153,17,111,97,97,33,158,127,254,121,49,198,219,230,7,238,91,10,28,108,76,222,241,198,131,22,31,16,34,231,153,181,126,4,112,249,229,151,19,66,186,126,108,242,74,180,98,225,234,81,236,184,254,251,223,255,194,229,114,193,235,245,178,210,62,159,207,39,41,245,163,27,173,70,160,251,178,134,44,128,230,214,46,47,244,162,228,90,94,188,120,177,184,243,181,105,215,114,66,112,249,8,214,171,121,249,242,229,104,108,108,148,120,68,120,23,179,86,208,65,153,130,128,143,35,234,98,93,81,52,138,171,118,0,138,46,28,62,118,91,87,87,135,57,115,230,96,230,204,153,98,154,190,211,2,252,241,60,224,213,43,72,250,185,222,16,72,151,183,18,121,189,98,64,185,241,117,103,130,222,6,3,87,55,13,104,179,8,170,16,99,99,197,197,197,81,229,78,242,227,139,85,151,203,255,205,72,55,89,153,203,20,130,139,185,165,165,5,38,147,9,86,171,21,118,187,29,78,167,19,131,6,13,194,75,47,189,132,97,195,134,145,125,91,253,192,140,165,192,225,166,36,30,112,39,224,36,32,115,114,114,216,245,106,110,110,38,231,92,175,218,250,174,194,105,97,196,84,95,95,143,207,63,255,28,237,237,237,172,227,141,124,107,111,111,135,219,237,102,155,203,229,66,67,67,3,118,236,216,161,107,139,63,121,153,34,53,2,220,110,183,216,220,96,120,174,118,73,154,39,27,204,70,82,183,11,192,227,241,168,214,119,243,196,155,104,2,214,213,189,76,45,93,73,59,60,65,88,93,51,112,53,186,0,36,109,200,120,235,214,229,114,97,203,150,45,184,227,142,59,176,96,193,2,241,68,159,54,16,248,232,122,178,194,79,22,132,102,7,74,245,173,128,58,225,202,165,251,148,200,216,106,181,194,98,17,136,75,11,210,45,23,27,29,240,4,47,39,89,181,5,130,18,33,135,195,97,52,55,55,147,15,74,182,213,37,144,110,67,67,3,147,19,180,88,44,176,219,237,112,56,28,24,60,120,48,94,125,245,85,177,156,168,197,7,220,187,4,56,146,162,196,43,144,170,197,98,129,213,106,101,227,109,213,170,85,240,251,253,192,252,189,192,209,230,36,31,164,10,110,24,199,106,88,23,46,92,8,151,203,21,69,172,46,151,11,109,109,109,104,109,109,69,75,75,11,234,235,235,177,122,245,106,204,153,51,7,15,60,240,0,254,249,207,127,138,98,55,137,38,93,110,238,86,186,103,121,215,242,23,95,124,129,182,54,225,251,211,9,84,137,197,117,99,216,98,125,209,162,69,112,187,221,146,94,187,90,103,50,107,18,36,48,24,164,82,90,114,23,51,179,116,35,32,19,253,64,141,244,138,1,54,137,228,231,231,75,6,53,45,55,233,232,232,128,219,237,198,123,239,189,135,143,62,250,72,44,67,177,154,128,123,207,0,110,153,152,252,98,116,193,210,181,219,237,44,17,9,144,174,146,233,57,167,255,167,144,215,181,242,177,11,58,176,156,78,39,90,91,91,181,241,60,8,241,220,254,253,251,179,99,148,47,8,232,255,233,152,81,90,76,200,159,183,182,10,22,116,178,50,151,41,132,90,221,250,250,122,54,198,45,22,11,91,200,88,44,22,12,25,50,4,175,190,250,42,238,191,255,126,84,84,84,16,141,238,123,151,2,111,95,5,12,213,65,68,162,43,16,22,169,116,172,153,76,38,105,253,170,71,200,200,126,247,90,109,239,219,238,96,112,54,112,97,41,240,69,57,14,28,56,128,93,187,118,97,226,196,137,240,251,253,176,88,44,48,26,141,76,179,123,219,182,109,88,187,118,45,182,108,217,34,77,202,3,136,202,213,212,98,224,204,4,235,69,203,192,223,11,0,148,155,27,152,141,250,104,20,159,76,200,178,1,63,29,13,124,244,29,234,235,235,177,106,213,42,252,252,231,63,135,205,102,131,213,106,149,116,169,162,243,17,207,103,61,133,110,13,15,120,226,165,245,178,145,72,68,123,210,109,18,107,14,233,128,142,68,34,48,26,141,8,133,66,56,116,232,16,102,207,158,141,195,135,15,139,239,25,221,31,120,234,34,96,120,158,118,199,213,21,8,217,203,180,67,15,239,162,165,228,165,68,180,74,49,35,186,162,227,51,246,50,51,51,5,210,213,206,189,60,100,200,16,73,28,61,24,12,50,87,121,36,18,81,180,226,121,11,152,95,121,134,66,33,145,116,83,196,189,76,45,111,26,66,145,183,151,43,41,41,193,235,175,191,142,251,238,187,15,149,149,149,100,92,222,179,4,120,251,106,160,44,39,214,55,232,11,78,2,146,134,51,44,22,11,166,79,159,142,85,171,86,145,99,175,109,39,241,233,119,174,33,170,80,169,132,155,38,0,95,148,3,32,86,76,113,113,49,108,54,27,140,70,35,246,238,221,139,13,27,54,96,203,150,45,162,21,73,97,54,2,103,13,38,18,133,23,150,105,234,65,225,23,153,114,75,55,16,8,160,170,170,74,108,110,112,65,105,234,157,227,190,128,155,198,3,243,246,0,33,82,102,118,229,149,87,74,26,102,200,61,111,137,34,92,64,67,210,149,31,164,188,62,212,102,179,145,2,123,173,227,186,2,233,58,157,78,4,2,1,120,189,94,230,70,248,228,147,79,240,207,127,254,147,137,184,195,100,32,2,237,119,157,174,79,35,134,120,81,73,8,38,39,39,71,98,233,42,17,174,146,155,86,94,142,64,179,58,105,186,124,118,118,54,170,171,171,53,117,47,23,21,21,73,50,71,205,102,51,59,94,139,197,194,38,120,58,62,120,107,87,233,55,177,90,233,100,38,82,1,146,152,46,189,57,169,155,153,246,232,164,191,167,180,180,148,17,239,177,99,199,8,193,221,43,16,111,73,191,100,254,10,17,77,98,14,132,217,108,102,91,110,110,46,94,124,241,69,220,123,239,189,168,175,175,39,139,169,7,150,3,111,93,149,124,111,3,143,211,139,128,81,249,192,129,70,124,243,205,55,248,242,203,47,113,228,200,17,236,220,185,83,92,168,81,152,12,68,112,226,199,195,129,139,203,128,126,250,84,35,200,239,77,122,15,243,205,13,152,139,59,157,64,165,13,138,178,128,31,13,3,86,29,193,225,195,135,241,245,215,95,227,146,75,46,145,116,31,162,243,81,175,33,93,32,182,42,85,102,102,38,33,93,45,51,152,59,194,36,121,5,68,62,209,235,245,34,28,14,163,190,190,30,111,188,241,6,246,239,223,47,238,59,52,7,120,234,98,210,28,59,149,16,10,3,171,73,217,64,70,70,6,139,179,1,162,38,46,16,221,161,132,39,42,57,233,6,2,1,120,60,30,86,86,193,50,54,19,189,0,10,133,153,200,64,126,126,62,75,90,163,100,68,227,235,180,21,27,221,120,171,87,41,78,45,205,94,78,141,152,174,219,237,102,19,37,79,188,212,165,73,199,126,89,89,25,94,123,237,53,220,119,223,125,100,161,83,239,33,22,239,223,174,78,13,181,33,225,126,204,203,203,99,215,133,186,102,135,14,29,138,151,95,126,25,51,102,204,32,4,182,175,129,116,86,122,245,10,192,150,66,229,44,55,79,0,158,248,18,161,80,8,239,190,251,174,244,53,3,128,211,138,136,108,229,143,134,137,237,25,245,64,68,218,102,147,122,109,232,24,161,121,38,172,185,193,0,103,239,109,110,208,29,108,170,212,87,104,229,150,9,192,42,50,183,206,155,55,15,83,167,78,101,77,238,229,34,62,17,217,181,235,9,116,49,231,228,196,107,50,153,56,85,42,13,73,151,203,180,180,90,173,104,111,111,199,146,37,75,240,251,223,255,94,36,92,3,200,77,250,175,235,82,143,112,1,224,229,175,153,139,150,138,75,208,218,73,181,132,48,121,178,72,107,107,107,212,70,247,243,120,60,28,233,38,248,90,28,119,145,82,36,144,242,19,154,49,74,143,143,30,131,219,237,102,153,166,116,33,160,38,229,71,55,22,135,75,17,75,215,227,241,72,92,250,252,88,183,88,44,172,148,200,233,116,98,216,176,97,120,253,245,215,69,245,163,186,118,224,238,197,186,74,15,170,66,176,116,105,27,76,74,186,52,43,123,204,152,49,120,225,133,23,224,112,8,100,245,77,13,240,167,207,201,2,43,85,240,227,225,210,182,139,0,233,110,243,187,115,128,165,183,144,5,206,244,113,250,18,174,12,106,9,84,219,182,109,195,137,19,130,102,247,213,163,72,35,246,147,5,159,31,213,247,251,198,21,0,147,73,249,234,246,237,219,113,240,224,193,152,243,78,162,160,75,76,151,62,242,196,155,159,159,79,10,191,181,180,116,57,221,229,150,150,22,204,157,59,23,7,15,30,20,95,31,148,5,60,113,97,226,27,108,39,2,71,155,129,151,190,6,190,34,13,193,141,70,35,166,77,155,38,113,203,82,75,209,231,243,193,237,118,195,239,247,51,97,122,159,207,199,220,86,242,30,157,244,6,167,221,146,216,128,74,180,165,203,149,11,5,131,65,28,59,118,12,153,153,153,112,58,157,108,18,183,90,173,200,200,200,128,205,102,131,221,110,135,205,102,67,191,126,253,96,183,219,153,133,37,183,118,67,161,16,188,94,225,218,166,136,165,27,8,4,36,101,6,60,233,242,94,30,138,225,195,135,227,245,215,95,199,140,25,51,200,36,91,219,78,92,205,127,187,90,247,62,174,18,8,11,213,162,162,34,9,233,210,113,103,52,26,49,121,242,100,204,158,61,27,15,63,252,48,145,40,92,87,1,60,179,158,220,75,9,116,195,117,27,22,19,240,243,177,164,81,250,143,135,147,134,247,131,146,120,78,21,192,123,161,0,176,251,86,162,11,112,213,200,36,29,93,18,208,17,38,86,231,3,103,233,39,58,4,144,68,217,111,106,16,137,68,240,209,71,31,97,204,152,49,44,161,74,222,44,35,81,214,174,46,62,161,164,169,82,9,164,107,52,26,165,29,129,0,146,189,246,219,179,147,63,105,203,177,175,30,248,199,46,224,139,163,146,18,131,7,31,124,16,35,71,142,100,174,217,142,142,14,188,252,242,203,88,184,112,161,184,50,238,41,26,189,196,5,150,168,137,83,136,231,2,192,171,175,190,26,247,219,236,118,59,174,190,250,106,60,255,252,243,204,178,151,175,58,25,233,38,59,145,74,176,168,194,225,48,220,110,55,10,10,10,162,136,151,79,16,227,49,98,196,8,188,254,250,235,184,255,254,251,201,53,172,113,3,119,11,196,155,172,204,224,38,81,2,146,207,94,166,242,163,116,17,113,254,249,231,99,214,172,89,120,226,137,39,8,113,44,57,72,132,66,126,119,78,114,142,91,142,95,157,14,252,127,147,147,125,20,82,200,140,37,62,20,68,155,27,124,245,213,87,228,197,211,139,82,39,206,175,7,246,213,147,42,141,245,21,250,150,72,157,95,66,84,214,42,90,241,197,23,95,224,248,241,227,146,132,42,122,15,208,177,159,8,232,222,79,151,174,254,153,107,77,203,68,42,129,208,105,153,0,0,210,9,229,149,159,0,143,93,144,90,132,251,205,113,82,138,113,219,66,96,173,72,184,37,37,37,120,233,165,151,112,215,93,119,193,102,179,177,11,255,213,87,95,225,205,55,223,148,18,174,209,64,202,29,186,187,153,12,164,36,36,81,168,113,117,237,251,5,78,242,249,124,152,63,127,62,190,249,230,27,69,65,242,80,40,68,106,70,129,148,113,47,3,64,99,99,99,84,230,56,111,241,154,205,102,88,173,86,137,171,121,228,200,145,120,237,181,215,68,205,223,227,46,226,106,174,117,235,255,91,194,17,82,206,132,104,210,149,31,123,102,102,38,166,77,155,134,135,30,122,72,92,76,124,244,29,240,222,78,253,143,91,9,169,96,113,199,128,92,16,195,239,247,99,205,154,53,39,103,115,131,112,4,248,187,208,181,237,203,114,125,191,219,96,96,210,144,193,96,16,31,127,252,177,98,195,140,88,34,67,93,133,174,217,15,186,55,61,224,220,203,0,136,171,233,145,115,117,203,82,140,11,27,43,201,68,245,173,180,5,220,136,17,35,112,199,29,119,96,218,180,105,44,184,79,19,168,58,58,58,164,138,84,191,158,76,110,210,84,171,155,252,253,185,100,139,23,190,14,96,249,33,224,185,13,0,192,36,218,204,102,51,75,58,161,214,46,35,221,100,139,99,216,204,132,248,219,131,104,108,108,140,202,38,7,162,23,159,114,140,30,61,26,111,188,241,6,102,204,152,65,50,131,171,93,98,57,81,129,142,10,104,205,94,214,66,146,246,158,166,27,159,141,205,215,137,223,112,195,13,104,109,109,197,219,111,191,77,62,227,175,219,128,126,182,228,138,201,164,42,84,18,169,194,225,48,252,126,63,86,175,94,77,246,203,176,0,151,14,75,214,81,234,139,67,141,192,219,223,176,48,26,182,84,17,49,32,61,245,212,167,157,66,198,109,179,15,75,150,44,193,47,126,241,139,40,107,151,79,134,236,41,116,119,47,43,170,82,5,67,36,14,147,104,80,210,237,103,3,30,57,143,144,110,42,32,20,38,73,3,255,216,9,28,146,42,19,141,31,63,30,183,223,126,59,46,186,232,34,56,28,14,73,108,19,16,75,130,134,15,31,14,167,211,9,207,232,126,132,116,251,2,236,102,224,103,99,128,5,123,129,3,141,48,26,141,98,57,23,196,223,78,221,113,0,146,239,94,6,136,64,70,123,43,154,155,155,85,87,195,74,113,93,254,53,158,120,27,26,26,128,99,109,132,120,95,186,28,40,205,33,49,175,191,124,5,156,49,136,100,221,106,1,78,2,50,55,55,87,226,26,167,196,11,64,242,59,34,145,8,126,245,171,95,161,181,181,21,255,249,207,127,200,155,231,108,34,2,4,169,114,191,165,24,228,164,219,209,209,129,67,135,14,137,90,1,63,30,158,90,205,13,22,31,0,158,90,215,249,126,137,128,63,68,8,88,171,49,174,4,155,153,168,153,189,253,13,92,46,23,254,251,223,255,226,206,59,239,132,221,110,103,214,110,34,197,50,52,173,211,141,75,149,10,32,55,187,22,86,90,163,151,180,253,122,236,130,228,52,216,150,35,24,2,150,29,2,222,223,69,38,85,14,103,156,113,6,110,191,253,118,76,153,50,133,145,45,149,104,164,49,5,74,54,84,220,35,39,39,7,158,64,135,202,151,245,98,8,214,171,221,110,71,48,24,140,106,84,17,137,68,88,169,84,74,132,8,242,28,64,101,43,234,234,234,162,92,81,64,116,78,131,28,244,181,177,99,199,226,205,55,223,196,61,247,220,131,198,198,70,82,159,125,203,167,36,195,242,88,27,121,174,101,119,31,97,145,74,21,181,120,210,229,147,194,248,251,154,254,206,223,254,246,183,112,185,92,88,186,116,41,177,150,31,255,2,200,178,2,231,20,107,119,188,189,20,52,62,78,199,114,48,24,196,202,149,43,197,29,82,205,181,188,51,65,57,35,49,48,112,224,64,212,215,215,19,69,192,47,202,245,37,93,128,100,179,191,191,11,240,19,253,134,159,255,252,231,204,195,200,235,8,36,66,44,35,41,150,110,148,42,85,125,187,54,164,123,243,4,82,42,144,108,248,58,128,133,251,128,127,125,75,178,84,5,24,141,70,76,157,58,21,119,220,113,7,198,143,31,207,244,122,173,86,107,84,173,24,37,26,122,177,119,238,220,137,227,199,143,3,181,6,192,29,72,190,155,53,145,16,226,202,199,143,31,199,168,81,163,88,50,149,92,210,18,64,242,99,186,0,139,235,214,214,214,70,105,91,83,196,114,47,243,175,141,29,59,22,111,189,245,22,102,206,156,137,234,234,106,152,130,17,156,141,18,108,174,218,140,48,64,174,181,86,224,218,96,242,53,245,242,77,78,186,20,143,62,250,40,92,46,23,214,175,95,79,44,243,223,175,6,254,122,37,48,177,80,187,99,238,77,8,16,137,89,58,247,1,96,153,248,27,54,144,144,10,134,230,0,19,82,236,124,237,34,164,59,113,226,68,220,121,231,157,200,200,200,96,70,1,223,31,27,80,206,236,229,199,61,255,58,189,87,130,193,32,60,30,15,94,122,233,37,236,222,189,155,132,220,58,194,250,10,20,229,216,73,182,248,39,251,80,83,83,131,47,190,248,2,215,92,115,141,68,44,131,214,84,167,52,233,42,169,82,241,55,175,221,110,39,89,168,90,197,117,147,77,184,46,63,240,241,247,192,220,61,146,182,121,102,179,25,23,95,124,49,110,191,253,118,140,24,49,2,14,135,131,165,169,211,149,21,77,94,225,229,30,121,109,98,171,85,32,217,80,4,216,90,221,183,26,92,183,145,120,45,47,64,78,5,4,248,13,64,234,88,186,32,77,15,228,132,171,230,102,150,255,143,191,87,198,141,27,135,127,255,251,223,216,176,97,3,50,51,51,97,177,88,80,94,94,78,196,52,218,19,152,232,38,71,163,180,13,38,47,201,201,147,48,61,102,254,247,209,223,252,220,115,207,225,193,7,31,196,142,29,59,200,98,115,230,10,146,141,61,34,69,36,85,147,9,65,89,206,102,179,177,60,133,142,142,14,124,245,213,87,162,44,229,181,163,147,120,128,10,104,240,252,255,237,93,121,112,84,213,158,254,146,144,94,210,233,116,39,100,35,157,149,199,142,16,66,8,36,8,134,69,226,10,18,2,4,195,226,171,97,202,17,144,177,166,222,188,165,106,44,245,205,76,61,100,198,133,153,103,149,229,60,173,82,158,203,40,79,113,164,158,202,67,9,60,12,160,60,149,69,8,130,198,16,178,64,54,98,214,78,167,59,61,127,156,62,183,207,61,57,183,151,164,55,240,126,85,183,238,165,187,163,247,156,123,238,249,126,251,79,186,239,153,51,103,34,53,53,21,241,241,241,35,180,64,111,164,203,127,199,154,214,173,86,43,180,90,45,138,139,139,9,233,246,218,128,83,77,161,183,146,84,205,2,246,95,4,134,157,120,231,157,119,80,86,86,38,237,205,108,32,231,88,139,101,132,188,246,50,235,215,53,24,12,132,116,67,209,87,55,148,232,232,39,68,187,239,188,108,147,212,106,181,184,235,174,187,176,105,211,38,228,228,228,72,121,169,116,241,178,100,203,87,67,161,15,157,126,54,125,250,116,226,211,237,239,7,78,92,189,181,72,151,169,34,38,42,1,105,179,217,220,100,22,65,154,110,87,87,151,208,188,204,191,160,60,241,138,94,220,148,148,20,172,88,177,2,93,93,93,232,232,232,128,209,232,202,51,13,129,166,107,50,153,100,235,143,39,94,86,72,160,141,29,232,120,19,19,19,241,204,51,207,96,251,246,237,164,0,77,247,160,171,65,194,42,210,144,224,167,138,254,33,34,128,131,184,77,168,169,210,110,183,187,43,80,197,68,1,247,132,184,87,183,55,156,118,155,150,243,243,243,97,54,155,253,38,93,209,231,116,79,179,217,108,208,104,52,136,137,137,193,162,69,139,240,242,203,47,187,77,204,161,38,221,28,51,169,117,125,164,30,181,181,181,248,234,171,175,176,120,241,98,12,13,13,65,163,209,72,164,43,114,17,249,131,144,121,235,69,169,67,102,179,153,4,141,220,42,164,219,210,3,252,241,44,240,127,23,73,64,128,11,6,131,1,247,223,127,63,170,170,170,144,158,158,46,51,33,139,200,150,221,240,0,183,150,203,110,122,90,173,22,249,249,249,56,113,226,4,112,162,49,92,35,14,60,28,195,64,31,33,150,248,248,120,89,1,1,186,177,247,247,51,235,37,18,52,93,87,174,110,79,79,143,176,143,177,8,60,137,177,96,77,232,180,100,103,72,72,151,201,209,101,53,91,246,254,148,204,228,236,88,83,82,82,240,252,243,207,227,145,71,30,33,93,149,218,251,129,29,31,146,6,9,145,16,91,17,106,92,238,0,254,253,175,82,177,152,236,236,108,201,114,211,214,214,134,179,103,207,146,223,45,206,145,186,86,69,12,190,110,1,0,24,141,70,76,153,50,5,241,241,241,18,233,106,181,90,89,204,137,175,132,11,184,115,148,217,194,43,105,105,105,152,49,99,6,206,157,59,7,28,173,7,126,179,40,244,29,222,54,205,150,210,150,222,122,235,45,20,21,21,65,175,215,203,2,170,198,234,215,13,153,79,151,158,89,210,29,63,126,60,137,216,11,69,51,251,96,226,135,27,192,107,103,72,186,139,195,189,201,154,76,38,148,151,151,99,253,250,245,72,78,78,86,212,108,217,212,12,165,66,10,108,49,125,26,212,82,84,84,68,72,247,90,47,185,135,72,107,19,55,26,244,216,164,28,101,131,193,48,66,99,148,149,128,28,23,77,90,48,134,27,76,41,72,17,225,242,65,85,244,51,122,205,74,206,78,167,83,170,134,67,243,98,117,58,157,187,108,106,80,53,93,121,9,72,37,43,149,232,190,89,56,157,78,88,44,22,236,217,179,7,143,60,242,8,174,95,191,78,74,92,238,252,144,152,154,141,218,224,141,33,82,224,116,2,39,27,129,55,206,145,179,11,122,189,30,107,214,172,65,76,76,140,164,229,70,116,115,3,151,166,59,109,218,52,24,12,6,196,197,197,33,46,46,78,34,93,214,42,39,130,136,152,232,251,96,183,219,101,65,162,54,155,13,11,23,46,36,164,219,49,0,156,187,14,228,167,7,117,120,35,48,39,157,184,37,191,105,197,201,147,39,81,95,95,143,248,248,120,137,116,69,249,186,254,146,111,200,60,213,34,223,144,84,149,42,152,185,186,193,68,109,27,240,171,67,192,250,125,164,34,143,195,45,233,111,219,182,13,251,246,237,195,142,29,59,144,149,149,5,147,201,4,163,209,40,45,92,37,63,46,75,188,188,182,193,71,146,46,88,176,192,125,47,52,207,237,102,135,203,159,11,144,128,30,10,54,136,42,98,234,46,83,184,72,215,106,181,142,104,204,192,106,186,124,96,21,61,243,194,20,95,243,88,163,209,132,136,116,201,123,152,158,158,46,52,39,243,247,204,223,55,173,49,173,211,233,164,26,211,123,246,236,113,215,246,190,220,73,124,188,214,91,48,226,158,98,208,14,188,127,17,168,252,19,176,243,35,25,225,210,134,17,63,251,217,207,36,77,183,186,186,154,124,57,94,31,121,145,222,189,54,41,165,241,182,219,110,147,178,42,232,161,213,106,165,131,10,136,252,65,215,47,253,158,63,179,135,94,175,199,146,37,75,220,36,22,234,66,25,20,155,73,177,140,225,225,97,188,245,214,91,82,108,137,210,123,237,47,194,226,211,29,81,149,234,102,51,47,127,213,66,114,108,57,179,110,102,102,38,42,43,43,113,223,125,247,33,33,33,65,138,240,227,131,163,148,200,213,151,8,87,118,99,206,204,204,68,70,70,6,137,98,62,209,72,234,136,222,236,112,145,46,29,35,15,167,147,105,235,23,41,17,219,46,147,224,240,240,176,172,241,129,183,151,147,79,191,17,17,47,61,146,146,92,129,72,125,193,215,116,105,97,12,209,90,228,77,205,244,190,89,176,99,158,62,125,58,158,123,238,57,236,220,185,147,8,75,103,174,19,65,245,185,187,34,171,125,230,88,209,209,79,242,203,247,93,144,5,77,70,69,69,97,238,220,185,120,240,193,7,177,104,209,34,89,64,224,217,179,103,221,21,229,238,159,18,121,243,113,230,154,84,44,101,206,156,57,30,45,117,162,96,41,37,80,225,153,117,159,217,237,118,104,52,26,100,100,100,96,242,228,201,164,70,126,117,61,240,88,113,208,134,167,136,37,185,128,197,8,52,245,224,224,193,131,216,177,99,7,226,227,227,133,181,152,35,50,144,138,7,27,72,229,174,74,117,147,152,151,107,92,213,163,206,200,171,71,77,156,56,17,27,55,110,148,162,221,232,226,164,11,147,55,35,251,66,182,236,134,204,155,150,105,219,184,216,216,88,20,22,22,18,210,253,186,133,104,16,145,148,84,63,26,252,72,54,44,154,203,200,71,60,58,157,78,116,117,185,106,58,71,66,97,12,64,86,10,178,179,179,19,217,217,217,138,230,101,254,69,229,175,121,107,6,125,214,137,137,46,215,65,176,52,93,251,176,52,247,60,233,42,145,47,187,46,89,240,227,46,40,40,192,211,79,63,141,95,252,226,23,164,204,225,241,171,192,147,213,192,191,47,139,248,114,141,94,113,185,131,4,77,126,116,89,234,168,5,144,245,187,108,217,50,84,85,85,97,218,180,105,82,176,16,205,203,181,217,108,238,10,84,0,233,40,20,105,112,153,150,117,58,157,52,6,94,121,160,41,67,254,144,15,159,114,198,29,175,183,190,0,0,26,121,73,68,65,84,119,178,90,184,112,33,33,221,198,110,50,191,147,199,7,101,120,138,136,137,38,145,204,255,121,28,86,171,21,135,14,29,194,214,173,91,3,86,10,50,108,129,84,178,170,84,63,14,146,28,182,72,240,207,241,24,118,2,159,214,145,38,4,151,58,100,95,205,152,49,3,155,54,109,66,105,105,169,100,114,17,105,182,188,207,86,201,71,6,140,220,132,217,52,33,94,211,141,141,141,197,252,249,243,113,224,192,1,18,184,245,85,11,176,48,194,76,84,254,194,165,233,106,181,90,97,160,145,211,233,116,55,35,143,132,32,42,128,144,191,110,28,96,181,163,179,179,211,167,64,42,17,68,145,194,148,128,131,78,186,55,6,36,95,250,248,241,227,133,129,94,254,16,47,32,111,214,126,251,237,183,227,183,191,253,45,30,127,252,113,18,157,122,240,123,82,142,245,87,126,148,9,141,20,56,157,68,112,120,227,28,73,215,99,96,50,153,176,114,229,74,172,91,183,14,25,25,25,178,96,35,54,11,97,104,104,200,221,220,96,78,58,144,107,14,195,64,188,224,43,18,68,53,117,234,84,232,116,58,89,45,110,62,254,196,83,32,21,11,86,145,160,193,161,172,101,71,163,209,160,180,180,20,175,190,250,42,249,131,234,250,208,147,46,64,10,148,188,244,37,208,61,136,51,103,206,140,250,157,22,33,232,121,186,172,84,195,111,42,146,166,11,16,243,76,56,91,154,241,160,213,163,94,59,35,229,169,81,20,22,22,98,203,150,45,152,55,111,222,136,234,81,244,160,139,136,213,88,248,104,80,37,178,21,129,39,93,186,64,11,11,11,161,209,104,136,6,113,226,234,45,67,186,122,189,94,40,164,0,112,231,52,70,138,79,23,32,218,110,115,143,68,186,99,121,73,69,62,211,160,71,47,51,37,32,77,38,147,87,43,12,123,45,34,94,126,204,78,167,19,101,101,101,232,237,237,197,239,126,247,59,242,253,59,231,73,137,214,127,152,23,156,49,5,26,86,59,240,231,75,68,179,101,58,104,1,64,78,78,14,42,42,42,70,184,150,68,21,229,236,118,59,154,154,154,220,77,88,34,173,2,21,64,124,211,181,237,0,136,63,151,22,194,96,139,97,248,75,184,128,123,189,208,107,190,204,104,108,108,44,38,78,156,136,236,236,108,52,52,52,16,191,110,56,202,220,234,93,245,175,223,171,133,217,108,30,51,209,178,8,139,166,75,15,121,85,170,8,33,93,171,43,16,226,143,103,100,213,163,162,162,162,112,251,237,183,99,243,230,205,152,53,107,150,199,130,22,162,72,100,17,217,250,178,80,217,223,138,106,225,26,141,70,76,159,62,157,36,149,223,10,169,67,46,210,53,24,12,178,57,164,136,138,138,98,2,169,34,68,211,5,36,210,109,109,109,85,140,96,246,23,44,241,198,199,187,42,182,13,58,130,83,173,199,21,68,69,35,82,61,153,149,69,247,201,19,47,245,199,243,38,185,242,242,114,252,248,227,143,120,225,133,23,200,31,255,225,43,162,241,110,184,45,176,227,9,36,218,251,137,128,240,238,5,41,135,28,32,227,46,40,40,192,186,117,235,176,120,241,226,17,214,46,190,162,28,141,126,141,142,102,106,138,143,139,142,204,230,6,231,219,164,10,90,249,249,249,178,124,92,127,205,201,60,120,37,140,221,207,198,141,27,7,173,86,139,146,146,18,66,186,151,58,128,166,238,240,228,120,231,167,33,106,255,69,220,123,239,189,178,251,29,43,66,214,196,158,94,243,228,225,174,74,21,102,191,174,135,234,81,75,150,44,193,150,45,91,48,121,242,100,25,217,122,202,177,229,37,65,192,63,178,229,193,110,130,188,57,166,168,168,136,144,110,125,23,105,13,23,97,13,187,253,130,139,116,141,70,227,136,77,139,206,91,196,69,47,3,178,82,144,108,106,1,32,247,113,42,61,123,79,86,161,168,168,40,24,12,76,183,161,94,91,224,27,125,187,114,116,245,122,189,98,188,129,167,117,203,187,66,248,32,56,118,62,30,122,232,33,116,119,119,99,239,222,189,228,203,103,143,147,58,205,247,69,88,211,246,111,219,73,187,194,191,124,47,243,215,106,52,26,44,93,186,20,149,149,149,152,54,109,154,44,192,136,146,45,95,52,130,6,14,57,28,14,140,27,55,14,121,121,121,208,233,116,176,78,208,69,78,108,2,11,87,126,238,184,113,227,48,115,230,76,69,147,242,88,32,114,155,81,223,110,105,105,41,222,126,251,109,242,195,35,245,225,9,18,237,24,128,211,233,196,217,179,103,81,92,92,236,183,86,175,132,144,214,94,102,175,233,36,199,199,199,135,183,42,149,135,234,81,101,101,101,216,188,121,179,84,61,138,13,127,103,131,163,120,147,75,32,201,150,133,146,57,102,193,130,5,120,249,229,151,201,143,78,92,189,185,219,170,185,52,137,228,228,228,17,164,75,231,85,42,142,17,73,155,149,171,64,70,91,91,91,64,204,203,244,76,159,185,94,239,14,214,10,10,233,186,204,203,70,163,81,50,135,250,187,185,82,226,165,17,186,188,182,75,225,116,58,177,99,199,14,116,119,119,227,253,247,223,39,190,228,127,61,10,36,104,73,129,136,112,194,233,36,181,127,223,56,7,252,173,89,246,149,217,108,198,202,149,43,81,81,81,129,9,19,38,72,169,46,148,40,68,217,9,116,238,28,14,135,116,142,137,137,145,42,28,69,100,28,11,32,5,81,77,154,52,9,6,131,65,166,84,240,107,99,172,90,175,40,85,110,198,140,25,72,73,73,33,173,46,171,235,67,79,186,231,174,3,123,207,0,0,46,94,188,40,53,0,9,196,152,195,210,79,151,149,134,205,102,51,153,216,80,147,110,128,170,71,209,5,227,105,33,6,194,36,193,254,183,248,96,170,201,147,39,187,23,232,201,198,155,155,116,93,154,110,118,118,182,76,176,161,155,121,116,116,52,17,210,128,200,51,47,131,148,130,12,132,121,153,127,87,232,51,119,56,28,193,241,235,186,52,93,190,4,36,123,63,190,222,55,159,6,69,43,14,1,114,115,243,175,127,253,107,244,244,244,224,211,79,63,37,57,238,191,249,4,120,225,94,160,96,66,0,7,230,35,172,118,146,107,255,230,185,17,49,28,185,185,185,168,168,168,192,61,247,220,227,83,42,32,63,127,236,26,160,196,114,253,250,117,18,135,81,119,35,124,230,83,37,56,134,165,254,222,51,103,206,148,34,175,69,238,158,209,66,100,209,97,247,52,90,139,249,192,129,3,228,94,58,250,67,83,173,235,187,78,224,127,190,4,170,127,144,2,11,211,210,210,100,150,139,177,42,81,97,45,3,25,29,29,141,228,228,100,92,190,124,57,116,5,50,234,187,128,215,78,147,32,41,65,245,168,117,235,214,33,37,37,101,68,78,26,107,50,18,249,108,131,73,182,162,5,74,55,51,106,98,158,51,103,14,73,65,248,162,41,244,29,58,2,137,86,98,58,78,73,73,145,85,188,161,154,19,37,96,0,17,105,94,238,238,238,30,117,132,163,210,115,102,159,181,195,225,8,78,174,174,75,232,77,78,78,30,117,144,12,5,251,123,145,143,151,158,157,78,39,158,122,234,41,244,244,244,224,139,47,190,32,194,239,63,29,4,94,186,31,152,26,196,22,134,44,90,251,136,149,235,221,90,89,97,150,168,168,40,20,22,22,98,253,250,245,88,184,112,161,204,95,203,11,223,158,242,238,1,72,21,167,232,26,166,245,170,1,16,179,245,246,63,3,127,87,64,218,217,69,66,238,249,229,78,201,234,55,123,246,236,17,133,123,2,101,102,5,196,197,97,168,95,183,180,180,148,144,238,176,19,248,235,21,210,107,59,88,168,239,2,254,240,37,112,168,78,202,77,6,128,89,179,102,97,219,182,109,35,72,247,166,209,116,129,145,27,74,90,154,171,141,85,176,125,186,23,219,73,65,139,234,122,217,164,166,164,164,96,237,218,181,40,47,47,71,98,98,226,8,41,214,91,169,198,96,107,182,44,120,173,135,245,235,46,88,176,128,144,110,223,16,145,12,231,134,65,91,24,43,26,187,129,239,73,5,156,228,228,100,233,25,80,115,37,245,135,73,145,188,145,164,233,186,164,112,90,28,3,192,168,204,203,74,26,64,116,116,52,98,99,99,49,56,56,24,84,77,55,45,45,205,167,53,238,235,56,0,121,241,12,182,65,2,61,239,222,189,27,143,62,250,40,206,159,63,79,198,182,243,35,82,167,57,219,20,136,145,137,113,145,241,215,218,221,254,90,173,86,139,101,203,150,161,178,178,18,83,166,76,241,218,148,132,215,108,249,77,153,90,104,88,45,55,54,54,22,51,103,206,132,197,98,33,157,163,154,122,128,127,251,43,240,244,103,192,124,11,176,44,15,40,205,13,188,11,193,87,184,82,133,162,162,162,70,4,81,5,146,112,41,68,194,101,108,108,44,10,10,10,96,50,153,72,138,96,117,125,112,72,183,177,155,144,237,199,223,201,148,176,188,188,60,108,219,182,13,171,86,173,146,58,125,177,110,196,136,39,93,81,64,6,37,142,160,87,165,250,186,133,228,216,114,101,18,45,22,11,54,108,216,16,208,234,81,193,34,91,22,252,252,81,210,45,46,46,150,200,9,39,27,111,46,210,29,180,19,255,217,179,39,164,133,159,157,157,45,105,186,44,233,106,52,26,88,44,22,210,58,206,49,236,229,63,28,66,48,165,32,199,154,94,160,20,96,162,213,106,209,219,219,27,28,210,117,69,47,103,100,100,140,32,145,177,128,53,51,139,224,116,58,145,156,156,140,231,158,123,14,219,182,109,67,93,93,29,17,0,118,252,25,120,229,1,32,213,32,252,187,81,97,216,9,28,187,66,200,246,203,22,217,87,73,73,73,146,191,54,45,45,205,103,19,178,146,85,128,223,11,120,226,77,72,72,192,222,189,123,241,251,223,255,30,135,14,29,34,193,129,67,195,64,205,85,114,252,238,24,49,179,47,205,5,150,230,5,118,30,188,193,229,207,205,201,201,65,98,98,162,199,188,220,177,250,115,233,153,39,222,216,216,88,232,245,122,204,159,63,159,40,19,167,154,2,219,55,188,165,7,120,229,107,224,192,183,50,178,181,88,44,216,186,117,43,30,120,224,1,24,141,70,201,189,24,72,77,63,108,62,93,186,153,72,5,50,2,77,186,53,202,213,163,170,170,170,80,86,86,134,184,184,184,128,85,143,10,54,216,5,42,10,166,74,74,74,194,180,105,211,112,225,194,5,34,96,108,47,10,250,61,249,133,206,1,226,187,106,236,38,146,125,19,115,110,237,147,252,39,0,41,167,57,107,214,44,105,177,71,69,69,73,193,73,180,25,0,0,224,219,14,241,255,43,28,112,145,174,221,110,135,221,110,23,174,9,127,53,94,222,119,31,31,31,143,142,142,142,160,106,186,227,199,143,31,33,209,143,118,125,139,252,187,44,88,75,64,70,70,134,212,32,161,185,185,25,104,233,37,45,1,255,176,146,164,20,141,5,253,67,100,115,253,223,111,128,171,221,178,175,38,78,156,136,138,138,10,220,125,247,221,48,26,141,126,145,173,72,153,80,26,59,79,42,195,195,195,152,58,117,42,158,121,230,25,116,117,117,225,200,145,35,248,228,147,79,220,189,117,29,78,34,136,254,173,25,120,230,56,41,194,191,52,143,104,193,153,65,246,255,186,72,151,205,207,21,249,170,3,5,37,11,158,86,171,197,29,119,220,65,72,119,104,152,236,233,119,141,177,245,97,107,31,177,120,190,127,81,22,145,158,158,158,142,45,91,182,96,245,234,213,18,217,178,129,114,74,90,238,104,230,34,164,62,93,122,102,23,159,172,42,213,160,29,208,142,225,150,134,157,192,225,31,200,164,114,27,242,244,233,211,177,105,211,38,44,89,178,36,40,213,163,66,9,94,211,141,141,141,133,78,167,67,81,81,17,33,221,111,219,67,23,120,64,97,115,144,116,37,74,166,141,221,114,98,29,240,94,228,158,166,63,61,249,228,147,48,26,141,178,194,2,52,13,135,22,212,7,64,54,210,73,73,192,242,188,240,183,68,99,74,65,118,119,119,143,122,189,40,249,115,99,99,99,145,149,149,69,90,229,5,154,116,135,28,82,212,120,106,106,106,64,205,137,74,196,235,116,58,71,244,226,205,205,205,197,158,61,123,176,109,219,54,34,92,212,221,0,254,241,35,224,197,251,71,23,169,126,173,151,164,1,238,175,37,221,171,152,123,42,42,42,194,250,245,235,81,92,92,60,42,127,45,29,135,167,103,76,199,206,254,142,198,36,208,177,211,207,238,187,239,62,44,91,182,12,125,125,125,56,121,242,36,170,171,171,113,242,228,73,116,118,118,18,129,244,92,43,57,254,251,115,96,202,120,183,6,60,41,201,255,121,241,132,250,46,73,0,203,207,207,15,184,150,167,4,209,122,167,249,186,122,189,158,4,79,30,169,31,61,233,182,247,147,88,158,119,107,165,252,99,128,184,23,55,110,220,136,242,242,114,36,36,36,120,108,68,115,211,248,116,69,11,143,149,104,36,159,46,64,38,102,52,81,124,246,97,82,41,70,80,61,106,238,220,185,216,188,121,51,230,207,159,31,178,234,81,193,4,191,41,179,164,187,120,241,98,188,246,218,107,228,37,61,217,24,248,188,71,170,173,54,9,200,149,211,86,149,160,211,233,144,148,148,4,139,197,130,156,156,28,100,103,103,35,55,55,23,121,121,121,200,201,201,129,193,96,144,22,61,93,35,116,220,0,241,185,205,154,53,11,239,189,247,30,145,84,255,163,134,28,241,26,32,207,76,202,233,209,35,199,76,180,130,80,4,149,37,104,129,216,104,73,122,30,139,166,40,114,33,104,181,90,119,211,131,230,158,192,222,123,167,187,26,85,90,90,154,112,147,101,239,205,95,136,136,151,205,227,101,45,0,83,166,76,193,243,207,63,143,237,219,183,19,83,250,249,54,224,159,255,2,252,215,221,64,172,143,233,53,231,91,137,9,249,147,58,153,233,80,167,211,97,249,242,229,168,172,172,196,164,73,147,132,254,90,95,246,3,126,79,240,54,39,188,192,193,22,31,97,247,66,141,70,3,189,94,143,21,43,86,96,241,226,197,176,90,173,56,125,250,52,142,28,57,130,19,39,78,144,22,137,0,41,24,113,169,131,148,41,204,54,17,237,119,105,46,48,35,101,236,181,172,153,166,245,115,231,206,85,36,221,64,65,100,98,102,149,9,163,209,136,121,243,230,225,216,177,99,196,236,238,175,98,214,101,37,169,63,239,156,151,117,183,74,74,74,194,131,15,62,136,138,138,10,152,76,38,89,215,36,165,44,21,165,231,239,47,194,210,79,151,37,140,164,164,36,183,47,210,95,210,245,80,61,106,225,194,133,216,188,121,51,102,207,158,237,147,102,203,75,177,254,190,88,161,4,111,98,166,121,130,249,249,249,48,155,205,164,33,192,145,122,255,73,215,230,32,190,14,145,9,184,209,55,109,53,58,154,148,44,76,77,77,69,102,102,166,212,9,41,35,35,3,89,89,89,82,80,2,61,232,34,87,50,241,83,95,24,93,55,78,167,19,27,55,110,196,165,75,151,112,240,224,65,162,9,0,68,251,163,218,0,139,152,40,32,203,36,39,227,92,51,144,99,10,124,95,215,68,61,208,218,39,53,129,31,107,4,176,34,233,126,250,3,240,247,115,3,87,193,205,149,163,27,19,19,131,228,228,100,97,245,161,64,248,239,60,153,154,1,183,198,59,123,246,108,60,251,236,179,120,236,177,199,72,169,196,47,154,128,199,15,3,187,238,84,110,106,62,236,36,141,207,223,56,39,35,14,128,152,204,87,173,90,133,138,138,10,41,51,129,223,11,148,50,19,198,234,86,242,54,110,246,57,211,247,152,182,185,27,26,26,66,105,105,41,138,139,139,97,181,90,113,225,194,5,137,128,175,94,117,197,168,52,252,8,188,122,154,28,105,6,23,1,231,145,122,206,163,105,0,239,42,138,65,223,89,81,203,209,96,104,187,74,164,171,211,233,176,100,201,18,66,186,253,67,100,45,248,146,203,221,61,8,188,126,150,184,20,250,221,245,23,204,102,51,54,108,216,128,181,107,215,194,108,54,203,82,66,249,194,38,190,20,58,26,13,194,102,94,102,55,19,189,94,79,2,9,124,245,235,246,218,92,213,163,206,1,55,220,213,163,98,98,98,176,116,233,210,176,87,143,10,22,232,189,176,37,247,216,151,213,96,48,160,184,184,24,31,127,252,49,112,244,10,241,237,242,181,152,111,12,200,137,148,189,246,67,91,77,76,76,196,132,9,19,144,149,149,5,139,197,2,139,197,130,140,140,12,89,78,27,123,240,121,205,108,97,17,254,224,77,57,108,97,12,167,211,137,132,132,4,236,218,181,11,79,60,241,4,218,218,218,80,91,91,139,203,151,47,163,174,174,14,63,252,240,3,26,26,26,112,227,198,13,34,200,57,156,196,100,198,213,202,5,64,10,90,240,100,156,107,6,210,227,71,167,49,184,254,132,13,0,243,199,7,230,73,234,215,106,181,200,205,205,37,63,236,181,1,15,190,75,54,216,201,73,164,2,89,134,145,144,240,104,2,77,190,35,130,75,98,98,34,244,122,253,136,150,109,129,122,7,88,2,82,242,239,82,44,88,176,0,187,118,237,194,47,127,249,75,216,237,118,34,104,236,58,6,252,203,29,242,255,104,159,13,56,112,137,236,5,77,114,11,192,164,73,147,176,118,237,90,148,149,149,193,104,52,142,48,27,250,147,153,48,22,109,95,68,188,34,77,151,166,132,197,198,198,194,225,112,72,241,1,67,67,67,24,26,26,66,73,73,9,230,206,157,139,193,193,65,124,255,253,247,56,114,228,8,106,106,106,80,87,87,71,230,238,122,31,41,244,243,214,55,196,221,177,36,151,104,192,69,22,223,173,61,46,129,133,42,43,34,77,55,88,16,41,19,58,157,14,75,151,46,197,238,221,187,73,94,115,117,189,103,210,237,181,17,43,199,155,231,100,110,24,163,209,136,245,235,215,163,178,178,18,73,73,73,30,219,20,122,114,47,210,251,28,11,66,30,72,197,47,50,141,70,131,180,180,52,18,181,232,45,87,183,115,128,188,92,239,68,126,245,168,96,66,180,41,211,182,88,101,101,101,132,116,135,157,164,97,248,236,52,178,17,95,239,37,155,18,35,245,41,129,106,171,41,41,41,200,202,202,66,102,102,38,38,76,152,0,139,197,130,204,204,76,89,133,26,165,77,75,233,96,127,195,254,141,210,198,71,193,110,200,116,252,148,140,82,83,83,81,82,82,130,193,193,65,216,108,54,216,108,54,88,173,86,212,215,215,227,202,149,43,184,114,229,10,174,94,189,138,250,250,122,180,182,182,146,151,23,32,26,94,199,192,136,72,86,104,99,220,230,105,150,140,179,77,202,173,19,127,180,74,2,96,127,127,255,152,242,250,232,179,101,243,58,29,14,7,30,120,224,1,188,244,210,75,104,105,105,33,27,202,7,223,142,252,99,163,70,78,194,25,70,96,66,188,50,41,15,59,73,129,24,16,141,144,237,138,67,159,3,189,167,64,64,137,120,249,32,179,168,168,40,44,95,190,28,79,61,245,20,158,120,226,9,34,64,237,39,247,137,135,11,137,143,246,131,111,137,165,171,87,238,175,93,176,96,1,42,43,43,49,127,254,124,41,6,64,201,132,172,228,175,13,180,91,137,39,94,0,178,255,31,125,7,134,135,135,165,231,77,15,187,221,46,157,105,195,132,132,132,4,204,156,57,19,91,183,110,69,99,99,35,170,171,171,81,83,83,131,139,23,47,146,185,236,28,0,222,171,37,71,188,6,184,35,135,8,105,197,153,202,107,248,244,53,73,112,153,55,111,30,116,58,157,44,136,40,24,26,46,157,27,122,102,173,160,84,153,72,78,78,70,97,97,33,78,156,56,65,92,6,143,206,151,197,80,0,32,251,218,219,223,144,130,71,76,190,181,193,96,192,218,181,107,177,97,195,6,36,39,39,43,42,98,190,68,164,179,247,58,22,132,181,181,31,53,43,90,44,22,66,186,141,221,226,63,190,214,75,76,200,239,203,171,71,197,197,197,73,213,163,38,76,152,48,234,234,81,244,254,216,115,36,131,159,71,250,162,234,116,58,172,90,181,10,239,190,251,46,106,106,106,200,134,202,153,218,40,168,182,154,158,158,142,156,156,28,201,156,148,145,145,129,244,244,116,217,198,235,73,96,81,58,216,57,246,244,25,255,29,123,205,66,41,46,128,13,186,208,235,245,146,118,224,112,56,144,154,154,138,130,130,2,217,103,118,187,29,109,109,109,18,33,83,50,110,110,110,118,119,47,26,116,144,64,60,62,58,58,10,132,184,88,19,117,102,2,153,231,55,206,73,1,26,236,198,62,218,205,138,127,190,26,141,6,169,169,169,248,240,195,15,241,193,7,31,224,252,249,243,104,104,104,64,83,83,147,187,186,17,64,200,72,116,239,20,44,41,39,104,73,190,170,235,183,83,167,78,149,105,186,193,240,225,209,177,241,196,203,86,173,98,199,95,94,94,142,190,190,62,236,218,181,139,124,177,255,162,155,124,25,80,95,232,134,13,27,144,231,170,107,204,151,104,12,134,191,118,180,227,166,215,116,93,83,33,203,233,36,13,222,105,132,51,109,5,200,147,48,171,5,155,76,38,76,154,52,9,15,61,244,16,90,90,90,112,244,232,81,124,246,217,103,248,230,155,111,220,21,204,62,188,76,14,221,56,98,253,90,158,7,220,158,237,22,194,218,250,128,221,159,73,247,90,82,82,34,145,110,48,35,151,249,249,225,53,93,135,195,1,189,94,143,59,239,188,147,144,110,255,16,113,53,236,190,147,184,135,122,109,68,176,216,123,70,86,51,95,175,215,99,205,154,53,168,170,170,66,106,106,170,208,140,236,75,97,147,160,172,3,103,32,123,22,41,128,46,46,186,120,104,19,103,171,213,138,222,222,94,60,254,248,227,216,183,111,31,217,192,254,180,222,109,10,169,239,34,147,249,225,101,89,2,187,201,100,194,234,213,171,81,89,89,137,228,228,228,136,170,30,21,10,176,243,201,206,41,157,215,129,129,1,28,63,126,28,29,29,29,48,155,205,24,63,126,60,190,251,238,59,244,244,244,32,37,37,5,25,25,25,136,139,139,27,161,97,250,170,173,42,145,40,191,121,177,4,41,50,215,121,250,30,144,63,19,126,204,252,70,196,30,252,102,37,58,179,36,76,207,125,125,125,18,25,55,52,52,72,71,71,71,7,49,113,250,0,147,201,132,207,63,255,28,137,137,137,138,233,6,158,214,26,125,29,233,6,204,110,180,244,249,14,14,14,98,112,112,16,86,171,85,186,238,232,232,64,67,67,3,154,155,155,209,210,210,130,198,198,70,52,53,53,161,189,189,29,221,221,221,238,174,54,10,136,142,142,198,155,111,190,137,197,139,23,75,239,18,221,148,130,161,241,178,99,101,247,6,118,172,67,67,67,210,248,94,127,253,117,188,248,226,139,48,24,12,88,190,124,57,162,162,162,176,127,255,126,24,141,70,220,123,239,189,88,179,102,13,146,146,146,70,104,180,158,76,200,225,220,15,248,90,212,244,204,31,44,17,43,17,48,125,255,217,53,98,179,217,208,222,222,142,99,199,142,225,216,177,99,56,125,250,180,91,48,163,24,23,77,4,199,120,13,17,188,92,129,70,249,249,249,216,183,111,159,44,168,49,144,93,134,148,230,131,30,172,96,65,159,127,107,107,43,86,172,88,225,142,225,208,143,35,130,227,213,110,89,52,178,78,167,195,234,213,171,177,101,203,22,164,166,166,42,22,59,10,7,217,82,132,148,116,217,9,165,47,212,192,192,0,94,124,241,69,236,222,189,155,252,120,81,54,80,146,73,76,126,71,234,71,84,143,90,183,110,29,202,203,203,97,54,155,35,186,122,84,48,161,180,49,139,94,62,122,205,190,192,192,72,203,131,39,237,83,137,84,189,145,41,191,136,69,255,22,93,179,103,118,204,162,13,201,219,225,237,119,34,82,102,137,152,30,45,45,45,146,102,124,245,234,85,52,52,52,96,104,104,8,147,39,79,70,76,76,12,90,91,91,161,209,104,240,240,195,15,163,172,172,76,70,184,254,154,106,69,99,20,105,56,244,224,63,167,215,236,184,186,187,187,209,210,210,130,214,214,86,244,244,244,32,51,51,19,38,147,9,157,157,157,24,24,24,64,65,65,1,10,11,11,101,132,27,200,52,9,79,99,5,48,130,92,68,227,180,217,108,210,248,232,223,241,49,3,74,241,1,193,242,215,6,114,14,216,107,111,4,236,203,154,101,9,184,167,167,7,53,53,53,56,122,244,40,78,157,58,37,213,47,167,21,223,6,7,137,73,54,37,37,5,175,188,242,10,10,10,10,100,62,221,64,229,110,123,155,7,126,13,176,130,230,225,195,135,177,115,231,78,244,244,244,32,46,46,14,249,249,249,56,115,230,12,250,251,251,17,23,23,135,85,171,86,225,231,63,255,57,210,210,210,70,240,2,75,182,74,86,14,32,52,22,207,144,144,46,0,225,6,66,137,183,182,182,22,101,101,101,146,54,145,146,146,130,246,246,118,105,1,102,102,102,162,170,170,10,43,87,174,148,164,47,106,54,138,228,234,81,193,132,18,249,240,18,48,171,253,177,230,44,58,126,37,18,229,231,206,147,54,234,43,129,122,90,216,162,231,65,77,112,74,227,86,218,148,68,255,102,55,44,118,206,68,164,76,231,75,233,160,96,55,124,54,72,135,143,35,240,119,179,226,55,94,111,207,151,189,22,221,191,200,95,74,239,157,110,72,236,6,197,187,18,68,239,79,32,33,122,142,188,245,130,142,145,239,224,196,11,139,222,172,54,74,150,148,72,217,15,124,37,96,165,117,43,242,3,243,199,224,224,32,234,234,234,208,219,219,139,41,83,166,64,171,213,162,185,185,25,54,155,13,5,5,5,48,155,205,50,161,145,119,43,1,193,153,47,209,26,224,5,136,174,174,46,212,213,213,33,61,61,29,209,209,209,232,239,239,199,181,107,215,144,155,155,43,197,154,176,165,36,61,213,95,8,53,217,82,132,148,116,61,17,239,71,31,125,132,195,135,15,99,206,156,57,40,41,41,193,241,227,199,113,234,212,41,204,155,55,15,43,86,172,144,249,101,148,38,244,167,64,182,20,162,23,82,244,18,178,159,179,127,39,34,77,95,181,85,209,181,232,204,95,139,254,237,237,115,209,152,69,227,231,231,194,211,231,74,228,44,34,97,209,239,233,253,178,27,61,187,22,249,151,92,105,45,250,50,86,111,154,189,39,1,65,52,23,172,16,165,20,97,174,36,40,4,243,221,97,199,43,50,169,138,198,69,161,100,169,9,165,191,54,24,240,182,222,121,161,82,201,130,195,11,223,188,197,139,245,161,122,203,36,8,182,240,69,207,252,88,248,184,12,106,201,161,130,151,167,53,29,110,205,150,71,72,73,23,16,155,68,89,179,216,208,208,144,68,22,128,120,115,83,242,67,70,154,217,40,216,240,197,20,37,218,120,1,49,81,142,70,91,229,175,69,255,246,246,185,191,16,105,191,252,181,39,82,102,175,125,209,154,69,27,61,32,223,236,217,64,61,95,181,43,95,199,233,237,30,69,194,1,187,177,242,164,171,116,239,129,186,239,209,66,73,208,80,90,207,244,190,248,227,86,220,11,124,89,227,162,245,224,77,104,241,213,82,16,46,225,75,73,144,160,223,83,176,207,94,180,166,35,129,108,165,123,13,21,233,2,222,77,162,34,73,12,240,190,185,41,77,40,127,125,43,130,127,25,61,145,140,8,190,144,169,175,164,234,237,187,96,65,52,54,37,98,246,133,148,189,125,70,33,218,236,149,2,202,232,239,199,50,54,111,66,131,167,49,240,80,34,169,64,221,247,104,161,244,124,148,158,1,123,127,158,44,51,236,239,110,118,248,66,192,222,132,50,250,91,209,250,229,45,7,225,16,190,232,61,122,26,3,61,216,123,243,20,123,194,222,127,56,215,66,200,73,151,158,249,137,20,153,196,164,155,228,38,51,146,39,52,92,240,244,34,242,191,19,205,79,168,181,213,80,64,105,105,123,155,43,17,97,41,205,169,72,163,242,100,49,8,196,88,188,109,186,158,198,197,222,139,136,172,34,225,93,242,229,249,80,140,85,72,188,217,225,73,184,84,58,248,191,83,90,195,225,18,190,148,20,9,111,99,80,26,11,255,125,184,17,82,210,5,124,91,20,190,110,108,145,56,161,225,70,32,30,231,79,97,30,189,105,199,190,92,3,163,15,18,27,11,252,209,236,61,253,141,55,194,10,247,58,240,69,104,186,21,132,195,64,194,23,45,88,9,158,132,197,112,10,95,222,4,95,22,74,66,66,36,173,135,144,147,46,224,221,196,199,67,73,50,231,191,87,161,98,172,240,101,163,87,66,184,53,44,111,247,232,11,89,121,251,46,220,80,18,122,84,140,132,175,130,152,183,117,27,206,57,246,69,120,100,17,73,247,174,132,176,144,46,224,89,123,160,159,69,242,98,80,241,211,131,191,47,188,10,21,145,4,127,182,250,72,93,203,183,194,59,24,54,210,101,113,43,44,6,21,42,84,168,80,161,194,27,66,218,240,64,9,42,145,170,80,161,66,133,138,159,2,66,208,221,91,133,10,21,42,84,168,80,1,168,164,171,66,133,10,21,42,84,132,12,42,233,170,80,161,66,133,10,21,33,130,74,186,42,84,168,80,161,66,69,136,160,146,174,10,21,42,84,168,80,17,34,168,164,171,66,133,10,21,42,84,132,8,42,233,170,80,161,66,133,10,21,33,130,74,186,42,84,168,80,161,66,69,136,160,146,174,10,21,42,84,168,80,17,34,168,164,171,66,133,10,21,42,84,132,8,42,233,170,80,161,66,133,10,21,33,130,74,186,42,84,168,80,161,66,69,136,240,255,62,141,197,176,205,212,126,210,0,0,0,0,73,69,78,68,174,66,96,130]`; denoLogoFileContents = JSON.parse(denoLogoFileContents); let uIntArrayBuffer = new Uint8Array(denoLogoFileContents); Deno.writeFileSync(path.join(newAppletPath, "static", "dinja.png"), uIntArrayBuffer); }}

/** * Creates a new Dinja project in the current directory */function createproject(appletName) { const __dirname = crossPlatformPathConversion(new URL(".", import.meta.url).pathname); if (existsSync(path.join(__dirname, "applets")) || existsSync(path.join(__dirname, "server.js"))) { throw new Error("Project already exists in the current folder."); } else {
if (appletName === undefined || appletName === null) { appletName = "main"; } // Making the applet directory Deno.mkdirSync(path.join(__dirname, "applets")); // Making the utilities directory Deno.mkdirSync(path.join(__dirname, "utilities")); // Making the libs directory Deno.mkdirSync(path.join(__dirname, "libs")); const encoder = new TextEncoder(); // Creating the server.js file let serverFileContents = ` import pogo from "https://deno.land/x/dinja/lib/pogo/main.ts"; import Dexecutor from "https://deno.land/x/dinja/lib/dexecutor/mod.ts"; import {dbconfig} from "./utilities/dbconfig.js"; // Creating the server and setting the port let port = 55555; if (Deno.args[0]) { port = Number.parseInt(Deno.args[0]); } const server = pogo.server({ port: port }); // Creating a database for the webapp export const database = new Dexecutor(dbconfig); database.connect(); // Importing routers and adding routers to the server import * as ${appletName} from "./applets/${appletName}/router.js"; server.router.add(${appletName}.router); // Starting the server console.log("Starting server at port " + port); server.start(); ` serverFileContents = dedent(serverFileContents); serverFileContents = encoder.encode(serverFileContents); Deno.writeFileSync(path.join(__dirname, "server.js"), serverFileContents); // Creating the util.js file let utilFileContents = ` import * as path from "https://deno.land/x/dinja/lib/std/path/mod.ts"; export function determineMimeType(fileName) { const fileExtension = path.extname(fileName); switch (fileExtension) { case ".aac": return "audio/aac"; case ".abw": return "application/x-abiword"; case ".arc": return "application/x-freearc"; case ".avi": return "video/x-msvideo"; case ".azw": return "application/vnd.amazon.ebook"; case ".bin": return "application/octet-stream"; case ".bmp": return "image/bmp"; case ".bz": return "application/x-bzip"; case ".bz2": return "application/x-bzip2"; case ".csh": return "application/x-csh"; case ".css": return "text/css"; case ".csv": return "text/csv"; case ".doc": return "application/msword"; case ".docx": return "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; case ".eot": return "application/vnd.ms-fontobject"; case ".epub": return "application/epub+zip"; case ".gz": return "application/gzip"; case ".gif": return "image/gif"; case ".htm": return "text/html"; case ".html": return "text/html"; case ".ico": return "image/vnd.microsoft.icon"; case ".ics": return "text/calendar"; case ".jar": return "application/java-archive"; case ".jpeg": return "image/jpeg"; case ".jpg": return "image/jpeg"; case ".js": return "text/javascript"; case ".json": return "application/json"; case ".jsonld": return "application/ld+json"; case ".mid": return "audio/midi"; case ".midi": return "audio/midi"; case ".mjs": return "text/javascript"; case ".mp3": return "audio/mpeg"; case ".mpeg": return "video/mpeg"; case ".mpkg": return "application/vnd.apple.installer+xml"; case ".odp": return "application/vnd.oasis.opendocument.presentation"; case ".ods": return "application/vnd.oasis.opendocument.spreadsheet"; case ".odt": return "application/vnd.oasis.opendocument.text"; case ".oga": return "audio/ogg"; case ".ogv": return "video/ogg"; case ".ogx": return "application/ogg"; case ".opus": return "audio/opus"; case ".otf": return "font/otf"; case ".png": return "image/png"; case ".pdf": return "application/pdf"; case ".php": return "application/php"; case ".ppt": return "application/vnd.ms-powerpoint"; case ".pptx": return "application/vnd.openxmlformats-officedocument.presentationml.presentation"; case ".rar": return "application/vnd.rar"; case ".rtf": return "application/rtf"; case ".sh": return "application/x-sh"; case ".svg": return "image/svg+xml"; case ".swf": return "application/x-shockwave-flash"; case ".tar": return "application/x-tar"; case ".tif": return "image/tiff"; case ".tiff": return "image/tiff"; case ".ts": return "video/mp2t"; case ".ttf": return "font/ttf"; case ".txt": return "text/plain"; case ".vsd": return "application/vnd.visio"; case ".wav": return "audio/wav"; case ".weba": return "audio/webm"; case ".webm": return "video/webm"; case ".webp": return "image/webp"; case ".woff": return "font/woff"; case ".woff2": return "font/woff2"; case ".xhtml": return "application/xhtml+xml"; case ".xls": return "application/vnd.ms-excel"; case ".xlsx": return "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"; case ".xml": return "application/xml"; case ".xul": return "application/vnd.mozilla.xul+xml"; case ".zip": return "application/zip"; case ".3gp": return "video/3gpp"; case ".3g2": return "video/3gpp2"; case ".7z": return "application/x-7z-compressed"; } } export function crossPlatformPathConversion(filePath) { if (Deno.build.os === "win") { filePath = filePath.split("/").join("\\\\"); filePath = filePath.substr(1, filePath.length - 1); } return filePath } ` utilFileContents = dedent(utilFileContents); utilFileContents = encoder.encode(utilFileContents); Deno.writeFileSync(path.join(__dirname, "utilities", "util.js"), utilFileContents); // Creating the dbconfig.js file let databaseConfigFileContents = ` export const dbconfig = { client: "sqlite3", connection: { filename: "sqlite.db", } } ` databaseConfigFileContents = dedent(databaseConfigFileContents); databaseConfigFileContents = encoder.encode(databaseConfigFileContents); Deno.writeFileSync(path.join(__dirname, "utilities", "dbconfig.js"), databaseConfigFileContents); // Creating the first applet createapp(appletName); }}

/** * Migrate */async function migrate() { let dbconfig = await import("./utilities/dbconfig.js"); const database = new Dexecutor(dbconfig.dbconfig); await database.connect(); const __dirname = crossPlatformPathConversion(new URL(".", import.meta.url).pathname); let appletFolders = Array.from(Deno.readDirSync(path.join(__dirname, "applets"))).map(fileInfo => fileInfo.name); let appletFolderPaths = appletFolders.map(filePath => path.join(__dirname, "applets", filePath)); let modelPaths = appletFolderPaths.map(filePath => path.join(filePath, "models.js")); // Iterating through all the model.js files in all applets for (let modelPath of modelPaths) { let exportedModel = await import(modelPath); for (let modelString of exportedModel.models) { try { console.log("Executing Query:"); console.log("=".repeat(80)); console.log(modelString); console.log(); await database.execute(modelString); } catch (err) {} } } // Running a query to create all tables from the exported models await database.close();}

/** * The Dinja CLI */if (import.meta.main) { /** * migrate function */ if (Deno.args[0] === "migrate") { await migrate(); }
/** * createapp function */ else if (Deno.args[0] === "createapp") { console.log(`Creating applet: ${Deno.args[1]}...`); createapp(Deno.args[1]); console.log(`${Deno.args[1]} created sucessfully`); } /** * createproject function */ else if (Deno.args[0] === "createproject") { console.log("Creating project..."); createproject(Deno.args[1]); console.log("Project created sucessfully"); } /** * Invalid command */ else { let commandList = [ "migrate", "createapp <applet_name>", "createproject [<applet_name>]", ]; let errorStatement = "\nInvalid Command. List of all valid commands:\n\n" commandList.forEach(command => errorStatement += " " + command + "\n"); console.log(errorStatement); }}