diff --git a/Dockerfile b/Dockerfile index d3dd0b39c4..d0d43c27c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ # Made available under the KBase Open Source License # -FROM ghcr.io/kbase/narrative-base-image:7.0.0 +FROM ghcr.io/kbase/narrative-base-image:7.1.0 # These ARGs values are passed in via the docker build command ARG BUILD_DATE diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e02ec7b3f5..df1d9e428d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,7 +2,51 @@ The Narrative Interface allows users to craft KBase Narratives using a combination of GUI-based commands, Python and R scripts, and graphical output elements. -This is built on the Jupyter Notebook v6.0.2 (more notes will follow). +This is built on the Jupyter Notebook v6.4.12 and IPython 8.5.0 (more notes will follow). + +## Version 5.1.3 + +- PTV-1620 - fix problem with Expression Pairwise Correlation creating or displaying large heatmaps and freezing or crashing browser +- PTV-1514 - sanitized HTML being used for app input tooltips + +Dependency Changes +- Python dependency updates + - black >=20.8b1 -> 22.8.0 + - coverage 6.2 -> 6.4.4 + - cryptography 37.0.4 -> 38.0.1 + - flake8 3.8.4 -> 5.0.4 + - jinja2 3.0.3 -> 3.1.2 + - jupyter-console 6.4.3 -> 6.4.4 + - pygments 2.12.0 -> 2.13.0 + - requests 2.27.1 -> 2.28.1 +- Javascript dependency updates + - @wdio/cli 7.19.6 -> 7.25.0 + - @wdio/local-runner 7.19.5 -> 7.25.0 + - @wdio/spec-reporter 7.19.5 -> 7.25.0 + - bootstrap 3.3.7 -> 3.4.1 + - bootstrap-slider 10.6.2 -> 11.0.2 + - chrome-launcher 0.14.2 -> 0.15.1 + - chromedriver ^101.0.0 -> ^105.0.0 + - cssnano 5.1.7 -> 5.1.13 + - jasmine-core 4.1.0 -> 4.3.0 + - jquery-ui 1.13.1 -> 1.13.2 + - karma-jasmine-html-reporter 1.7.0 -> 2.0.0 + - postcss-cli 9.1.0 -> 10.0.0 + - prettier 2.4.1 -> 2.7.1 + - puppeteer 13.7.0 -> 18.0.5 + - require-css 0.1.8 -> 0.1.10 + - sass 1.51.0 -> 1.55.0 + - selenium-standalone 8.1.1 -> 8.2.0 + - selenium-webdriver 4.1.2 -> 4.4.0 + - terser 5.13.1 -> 5.15.0 + - underscore 1.13.3 -> 1.13.6 + +Removed dependencies +**note** a number of these were removed from the narrative, but left in the narrative base image. The `requirements.txt` in this repo is intended for those packages required for the narrative to run. Any other packages, including scientific programming ones, useful for either KBase Apps or other manual use in Narrative code cells are included in the narrative base image (see [narrative-base-image](https://github.com/kbase/narrative-base-image) for more details). Also note that most of these are duplicated and included in that image - these are still necessary for narrative functionality when installed locally (i.e. not in a Docker image), so they're left in. + - plotly - not necessary for core narrative functionality, moved to narrative base image + - semantic_version -- removed, wasn't used effectively, and removed the need for it + - sklearn - still included, installed manually alongside clustergrammer in the install script, so the requirements.txt was removed + - sympy - not necessary for core narrative functionality, moved to narrative base image ### Version 5.1.2 - PTV-1823 - fixed problem where text input fields for apps were displaying incorrect data on reload diff --git a/docs/developer/local-docker.md b/docs/developer/local-docker.md index 4f414170c0..62378246bb 100644 --- a/docs/developer/local-docker.md +++ b/docs/developer/local-docker.md @@ -131,3 +131,29 @@ make start build-image=f env=next local-narrative=t ## Done You should now be able to navigate to https://ci.kbase.us, log in, and pull a Narrative from the Dashboard. + +## Testing with a local container + +Testing instructions assume that all JS and Python dependencies are installed locally, and that Narrative is built on the host for local usage. + +This, however, is not necessary with the container, although it is necessary for now to install JS dependencies because tooling relies up it. Of course, +it would be possible to run any node-based tool via a simple node container, but that is for another day. + +- Get the narrative running in one terminal window: + - `make dev-image` + - `ENV=ci make run-dev-image` +- In another terminal window: + - `NARRATIVE_SERVER_URL=http://localhost:8888 npm run test_local` + +Please note the volume mounts in `scripts/local-def-run.sh`. Not all directories in kbase-extension/static local narrative repo are mounted, due to +the fact that ext_components is installed. + +To explain the `ext_` directories briefly. + +- `ext_modules` is where all node modules should be placed; that is what it was originally designed for and a very few npm dependencies are placed there; + it does not exist until the narrative is built. +- `ext_components` is where `node_modules` is copied to, for those bower components which were migrated to npm modules; it also does not exist until the + narrative is built. +- `ext_packages` is where old dependencies which cannot be brought into the codebase as normal npm dependencies reside; it essentially never changes as + it freezes certain dependencies that could not be brought in as bower dependencies when the narrative was converted from manually installed + dependencies to bower. diff --git a/kbase-extension/static/kbase/js/common/html.js b/kbase-extension/static/kbase/js/common/html.js index 3361851ac9..2c9cedac42 100644 --- a/kbase-extension/static/kbase/js/common/html.js +++ b/kbase-extension/static/kbase/js/common/html.js @@ -1,4 +1,4 @@ -define(['uuid'], (Uuid) => { +define(['uuid', 'util/string'], (Uuid, StringUtil) => { 'use strict'; const TAGS = {}; @@ -102,10 +102,7 @@ define(['uuid'], (Uuid) => { })(); switch (typeof attribValue) { case 'string': { - const escapedValue = attribValue.replace( - new RegExp('\\' + quoteChar, 'g'), - '\\' + quoteChar - ); + const escapedValue = StringUtil.escape(attribValue); return `${attribName}=${quoteChar}${escapedValue}${quoteChar}`; } case 'boolean': diff --git a/kbase-extension/static/kbase/js/widgets/function_output/kbaseExpressionPairwiseCorrelation.js b/kbase-extension/static/kbase/js/widgets/function_output/kbaseExpressionPairwiseCorrelation.js index 4f393c7595..693738a0e3 100644 --- a/kbase-extension/static/kbase/js/widgets/function_output/kbaseExpressionPairwiseCorrelation.js +++ b/kbase-extension/static/kbase/js/widgets/function_output/kbaseExpressionPairwiseCorrelation.js @@ -1,30 +1,82 @@ +/* eslint-disable strict */ /** * Pairwise correlation of gene expression profiles. * * Pavel Novichkov * @public */ +define([ + 'kbwidget', + 'jquery', + 'widgets/common/jQueryUtils', + 'kbaseExpressionGenesetBaseWidget', + 'kbaseHeatmap', -const MAGIC_DOWNLOAD_NUMBER = 50; + /* for effect */ + 'bootstrap', +], (KBWidget, $, { $el }, kbaseExpressionGenesetBaseWidget, kbaseHeatmap) => { + // The "MAX_GENES_*" constants are utilized to control performance of using a + // matrix, which has N² character, generally. -define(['kbwidget', 'bootstrap', 'jquery', 'kbaseExpressionGenesetBaseWidget', 'kbaseHeatmap'], ( - KBWidget, - bootstrap, - $, - kbaseExpressionGenesetBaseWidget, - kbaseHeatmap -) => { - 'use strict'; + // Controls the max genes for which a heatmap will be inserted into the DOM. + const MAX_GENES_FOR_INLINE_HEATMAP = 50; + + // Controls the max genes for which a heatmap will be generated (and queried for), period. + const MAX_GENES_FOR_HEATMAP = 200; + + // Heatmap display controls. + const HEATMAP_COLORS = ['#FFA500', '#FFFFFF', '#0066AA']; + const HEATMAP_MIN_VALUE = -1.0; + const HEATMAP_MAX_VALUE = 1.0; + const HEATMAP_ROW_HEIGHT = 15; + const HEATMAP_MIN_HEIGHT = 210; + + // See base-extension/static/kbase/js/widgets/vis/kbaseHeatmap.js + const HEATMAP_Y_GUTTER = 80; + const HEATMAP_Y_PADDING = 20; + const HEATMAP_X_GUTTER = 110; + const HEATMAP_X_PADDING = 150; + + function $renderWarningAlert(warningContent) { + const $warningElement = $el('div') + .addClass('alert alert-warning') + .css('display', 'flex') + .css('flex-direction', 'row') + .css('align-items', 'center'); + + $warningElement.append( + $el('span') + .addClass('fa fa-exclamation-triangle') + .css('margin-right', '0.5em') + .css('font-size', '130%') + ); + if (typeof warningContent === 'string') { + $warningElement.append($el('span').text(warningContent)); + } else { + $warningElement.append(warningContent); + } + return $warningElement; + } + + /** + * kbaseExpressionPairwiseCorrelation object viewer widget + * + * constructor params: + * - geneIds {} + * - workspaceID {} + * - expressionMatrixID {} + * + * from kbaseExpressionGenesetBaseWidget + * - featureset {} + * - loadingImage {} + */ return KBWidget({ name: 'kbaseExpressionPairwiseCorrelation', parent: kbaseExpressionGenesetBaseWidget, version: '1.0.0', - maxRange: null, - minRange: null, - - // To be overriden to specify additional parameters + // To be overridden to specify additional parameters getSubmtrixParams: function () { const self = this; @@ -33,18 +85,6 @@ define(['kbwidget', 'bootstrap', 'jquery', 'kbaseExpressionGenesetBaseWidget', ' features = $.map(self.options.geneIds.split(','), $.trim); } - self.minRange = -1; - self.maxRange = 1; - if (self.options.minRange) { - self.minRange = self.options.minRange; - } - if (self.options.maxRange) { - self.maxRange = self.options.maxRange; - } - if (self.minRange > self.maxRange) { - self.minRange = self.maxRange; - } - return { input_data: self.options.workspaceID + '/' + self.options.expressionMatrixID, row_ids: features, @@ -53,86 +93,169 @@ define(['kbwidget', 'bootstrap', 'jquery', 'kbaseExpressionGenesetBaseWidget', ' }; }, - buildWidget: function ($containerDiv) { - const self = this; + $renderDownloadControl: function ($heatmapContainer, label, controlType = 'button') { + const downloadHeatmap = () => { + // Extract the heatmap svg content + const file = new Blob([$heatmapContainer.find('svg')[0].outerHTML], { + type: 'text', + }); + + // Create a donor link element which will be "clicked" to download the content + // extracted above. + const link = document.createElement('a'); + const url = URL.createObjectURL(file); + link.href = url; + link.download = 'pairwise.svg'; + document.body.appendChild(link); + link.click(); + + // Theoretically this ensures that the link and url are not needed any more. + // Note that there is nothing really to "download", as the heatmap content is + // already loaded in the browser. + // I didn't find documentation for this, but I figure that, the click is + // not handled until the next turn of the wheel in the JS event loop. So the + // timeout just lets the event loop handle the click, and timers are executed + // after any pending events, so this should ensure that the link being clicked + // is not removed until the link 'click' is handled. + setTimeout(() => { + document.body.removeChild(link); + window.URL.revokeObjectURL(url); + }, 0); + }; + + if (controlType === 'button') { + return $el('button') + .attr('data-testid', 'download-button') + .append('Download the SVG image file for this pairwise correlation') + .addClass('btn btn-primary') + .click(() => { + downloadHeatmap(); + }); + } + return $el('a') + .attr('href', '#') + .click((event) => { + event.preventDefault(); + downloadHeatmap(); + }) + .text(label); + }, + + buildWidget: function ($hostDiv) { const submatrixStat = this.submatrixStat; const rowDescriptors = submatrixStat.row_descriptors; const values = submatrixStat.row_pairwise_correlation.comparison_values; //Build row ids const rowIds = []; - let i; - for (i = 0; i < rowDescriptors.length; i++) { - rowIds.push(rowDescriptors[i].id); + + for (const { id } of rowDescriptors) { + rowIds.push(id); } // Build data const data = []; - for (i = 0; i < rowDescriptors.length; i++) { + + for (let i = 0; i < rowDescriptors.length; i++) { const row = []; for (let j = 0; j < rowDescriptors.length; j++) { - row.push(values[i][j].toFixed(3)); + row.push(values[i][j]); } data.push(row); } - const heatmap = { + const dataset = { row_ids: rowIds, row_labels: rowIds, column_ids: rowIds, column_labels: rowIds, - data: data, + data, }; - const size = rowIds.length; - let rowH = 15; - let hmH = 80 + 20 + size * rowH; + const $container = $el('div').css('margin-top', '5px'); + $hostDiv.html($container); - if (hmH < 210) { - hmH = 210; - rowH = Math.round((hmH - 100) / size); + if (rowIds.length > MAX_GENES_FOR_HEATMAP) { + const message = [ + `The selected cluster has ${rowIds.length} genes.`, + [ + `Heatmaps cannot be generated for clusters with more than ${MAX_GENES_FOR_HEATMAP} genes, `, + 'for performance reasons.', + ].join(''), + ].join(' '); + $container.append($renderWarningAlert(message)); + return; } - const colW = rowH; - const hmW = 150 + 110 + size * colW; - const $heatmapDiv = $( - "
" - ); - // $containerDiv.append($heatmapDiv); - $containerDiv.append("
"); + const [heatmapWidth, heatmapHeight] = (() => { + const size = rowIds.length; + let rowHeight = HEATMAP_ROW_HEIGHT; + let height = HEATMAP_Y_GUTTER + HEATMAP_Y_PADDING + size * rowHeight; + + // Under HEATMAP_MIN_HEIGHT pixels, we set the height to the min height. + if (height < HEATMAP_MIN_HEIGHT) { + height = HEATMAP_MIN_HEIGHT; + rowHeight = Math.round( + (height - (HEATMAP_Y_GUTTER + HEATMAP_Y_PADDING)) / size + ); + } + const columnWidth = rowHeight; + const width = HEATMAP_X_GUTTER + HEATMAP_X_PADDING + size * columnWidth; + + return [width, height]; + })(); + + const $heatmapContainer = $el('div') + .css('width', `${heatmapWidth}px`) + .css('height', `${heatmapHeight}px`) + .attr('data-testid', 'heatmap'); // TODO: heatmap values out of range still scale color instead of just the max/min color - new kbaseHeatmap($heatmapDiv, { - dataset: heatmap, - colors: ['#FFA500', '#FFFFFF', '#0066AA'], - minValue: self.minRange, - maxValue: self.maxRange, + new kbaseHeatmap($heatmapContainer, { + dataset, + colors: HEATMAP_COLORS, + minValue: HEATMAP_MIN_VALUE, + maxValue: HEATMAP_MAX_VALUE, }); - if (rowIds.length < MAGIC_DOWNLOAD_NUMBER) { - $containerDiv.append($heatmapDiv); - } else { - const $svg = $heatmapDiv.find('svg'); - const $dummy = $.jqElem('div').append($svg); - - $containerDiv.append( - $.jqElem('button') - .append('Please download the svg of this pairwise correlation') - .addClass('btn btn-primary') - .on('click', (e) => { - const file = new Blob([$dummy.html()], { type: 'text' }); - const a = document.createElement('a'), - url = URL.createObjectURL(file); - a.href = url; - a.download = 'pairwise.svg'; - document.body.appendChild(a); - a.click(); - setTimeout(() => { - document.body.removeChild(a); - window.URL.revokeObjectURL(url); - }, 0); - }) + if (rowIds.length > MAX_GENES_FOR_INLINE_HEATMAP) { + const $message = $el('span') + .append($el('span').text(`The selected cluster has ${rowIds.length} genes.`)) + .append(' ') + .append( + $el('span').text( + [ + `Heatmaps for clusters with more than ${MAX_GENES_FOR_INLINE_HEATMAP} genes are not `, + 'displayed inline, for performance reasons.', + ].join('') + ) + ) + .append(' ') + .append( + $el('p') + .append('However you may') + .append(' ') + .append( + this.$renderDownloadControl( + $heatmapContainer, + 'download the heatmap', + 'link' + ) + ) + .append( + ' as an SVG image file and view it with your favorite graphics program.' + ) + ); + $container.append($renderWarningAlert($message)); + + $container.append( + $el('p').append( + this.$renderDownloadControl($heatmapContainer, 'download', 'button') + ) ); + return; } + + $container.append($heatmapContainer); }, }); }); diff --git a/package-lock.json b/package-lock.json index f1a26ad255..7279cb9475 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,16 @@ { "name": "kbase-narrative-core", - "version": "5.1.2", + "version": "5.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "kbase-narrative-core", - "version": "5.1.2", + "version": "5.1.3", "dependencies": { "bluebird": "3.7.2", - "bootstrap": "3.3.7", - "bootstrap-slider": "10.6.2", + "bootstrap": "3.4.1", + "bootstrap-slider": "11.0.2", "bowser": "1.0.0", "corejs-typeahead": "^1.3.1", "d3": "3.5.6", @@ -24,7 +24,7 @@ "handlebars": "^4.7.7", "jquery": "2.2.4", "jquery-nearest": "1.4.0", - "jquery-ui": "^1.13.1", + "jquery-ui": "^1.13.2", "jquery.tipsy": "1.0.3", "js-yaml": "3.14.1", "kbase-common-js": "https://github.com/kbase/kbase-common-js/archive/refs/tags/v2.16.0.tar.gz", @@ -34,7 +34,7 @@ "numeral": "1.5.0", "plotly.js-dist-min": "1.50.0", "pure-uuid": "1.6.2", - "require-css": "0.1.8", + "require-css": "0.1.10", "require-yaml": "github:m90/require-yaml", "requirejs-domready": "2.0.1", "requirejs-json": "0.0.3", @@ -43,23 +43,23 @@ "select2-bootstrap-theme": "0.1.0-beta.10", "spark-md5": "3.0.2", "text": "github:requirejs/text", - "underscore": "^1.13.3" + "underscore": "1.13.6" }, "devDependencies": { "@lodder/grunt-postcss": "^3.0.1", "@types/puppeteer": "5.4.4", "@wdio/browserstack-service": "^7.19.7", - "@wdio/cli": "^7.19.6", - "@wdio/local-runner": "^7.19.3", + "@wdio/cli": "7.25.0", + "@wdio/local-runner": "7.25.0", "@wdio/mocha-framework": "^7.20.0", "@wdio/selenium-standalone-service": "^7.19.1", - "@wdio/spec-reporter": "^7.19.1", + "@wdio/spec-reporter": "7.25.0", "autoprefixer": "^10.4.5", "bootstrap-sass": "^3.4.1", - "chrome-launcher": "^0.14.0", - "chromedriver": "^101.0.0", + "chrome-launcher": "0.15.1", + "chromedriver": "^105.0.0", "commander": "^9.3.0", - "cssnano": "^5.0.6", + "cssnano": "5.1.13", "ejs": "^3.1.7", "eslint": "^8.16.0", "eslint-config-prettier": "^8.3.0", @@ -75,7 +75,7 @@ "grunt-stylelint": "^0.16.0", "husky": "^7.0.2", "jasmine-ajax": "^4.0.0", - "jasmine-core": "^4.1.0", + "jasmine-core": "^4.3.0", "jasmine-jquery": "^2.1.1", "karma": "^6.3.16", "karma-brief-reporter": "^0.2.1", @@ -84,7 +84,7 @@ "karma-es6-shim": "^1.0.0", "karma-firefox-launcher": "^2.1.1", "karma-jasmine": "^5.0.1", - "karma-jasmine-html-reporter": "^1.7.0", + "karma-jasmine-html-reporter": "2.0.0", "karma-jasmine-matchers": "^5.0.0", "karma-json-result-reporter": "^1.0.0", "karma-mocha-reporter": "^2.2.5", @@ -94,17 +94,17 @@ "load-grunt-tasks": "^5.1.0", "msw": "0.35.0", "postcss": "^8.3.2", - "postcss-cli": "^9.1.0", + "postcss-cli": "10.0.0", "postcss-discard-comments": "^5.1.2", "postcss-remove-prefixes": "^1.2.0", "postcss-scss": "^4.0.4", "postcss-unprefix": "^2.1.4", - "prettier": "2.4.1", - "puppeteer": "^13.5.1", + "prettier": "2.7.1", + "puppeteer": "18.0.5", "requirejs": "2.3.6", - "sass": "^1.51.0", - "selenium-standalone": "^8.0.10", - "selenium-webdriver": "4.1.2", + "sass": "1.55.0", + "selenium-standalone": "8.2.0", + "selenium-webdriver": "4.4.0", "string-template": "^1.0.0", "string.prototype.endswith": "1.0.0", "string.prototype.startswith": "1.0.0", @@ -113,7 +113,7 @@ "stylelint-config-recommended": "^5.0.0", "stylelint-config-sass-guidelines": "^8.0.0", "stylelint-config-standard": "^22.0.0", - "terser": "^5.7.2", + "terser": "5.15.0", "wdio-chromedriver-service": "^7.3.2", "webdriverio": "^7.19.7" } @@ -605,6 +605,30 @@ "node": ">=6.0.0" } }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.4.12", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.12.tgz", @@ -729,9 +753,9 @@ } }, "node_modules/@testim/chrome-version": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@testim/chrome-version/-/chrome-version-1.1.2.tgz", - "integrity": "sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@testim/chrome-version/-/chrome-version-1.1.3.tgz", + "integrity": "sha512-g697J3WxV/Zytemz8aTuKjTGYtta9+02kva3C1xc7KXB8GdbfE1akGJIsZLyY/FSh2QrnE+fiB7vmWU3XNcb6A==", "dev": true }, "node_modules/@trysound/sax": { @@ -786,10 +810,14 @@ "dev": true }, "node_modules/@types/easy-table": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/easy-table/-/easy-table-0.0.33.tgz", - "integrity": "sha512-/vvqcJPmZUfQwCgemL0/34G7bIQnCuvgls379ygRlcC1FqNqk3n+VZ15dAO51yl6JNDoWd8vsk+kT8zfZ1VZSw==", - "dev": true + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@types/easy-table/-/easy-table-1.2.0.tgz", + "integrity": "sha512-gVQkR2G/q6UK3wQT+waY9tCrbFauzMoBfJpMxHSuemHLQ8HpHdUIQ9YyRwYMfNX4CfoAoj/eJATyECGkFr65Pg==", + "deprecated": "This is a stub types definition. easy-table provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "easy-table": "*" + } }, "node_modules/@types/ejs": { "version": "3.1.0", @@ -1118,9 +1146,9 @@ } }, "node_modules/@wdio/cli": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@wdio/cli/-/cli-7.19.6.tgz", - "integrity": "sha512-lcHos0zyIQumdt+uzCbzVwJuzMyCI/Tv7nt6CcaJtIkpuut5WZ9H7V6IM3j1UYV0SEqz58KU+VPB82qazEP+YQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/cli/-/cli-7.25.0.tgz", + "integrity": "sha512-bN+ExZ6oP1taLgnNRT+fDcB+dCgElEj87sXPDR95nR+W0w3z8a77dlps+OwE2xEozgsEqlNfiuapI8uUQqTmrg==", "dev": true, "dependencies": { "@types/ejs": "^3.0.5", @@ -1129,25 +1157,26 @@ "@types/lodash.flattendeep": "^4.4.6", "@types/lodash.pickby": "^4.6.6", "@types/lodash.union": "^4.6.6", - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/recursive-readdir": "^2.2.0", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "async-exit-hook": "^2.0.1", "chalk": "^4.0.0", "chokidar": "^3.0.0", "cli-spinners": "^2.1.0", "ejs": "^3.0.1", "fs-extra": "^10.0.0", - "inquirer": "8.2.2", + "inquirer": "8.2.4", "lodash.flattendeep": "^4.4.0", "lodash.pickby": "^4.6.0", "lodash.union": "^4.6.0", "mkdirp": "^1.0.4", "recursive-readdir": "^2.2.2", - "webdriverio": "7.19.5", + "webdriverio": "7.25.0", "yargs": "^17.0.0", "yarn-install": "^1.0.0" }, @@ -1158,63 +1187,107 @@ "node": ">=12.0.0" } }, - "node_modules/@wdio/cli/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@wdio/cli/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/cli/node_modules/@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + }, + "engines": { + "node": ">=12.0.0" } }, - "node_modules/@wdio/cli/node_modules/chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", + "node_modules/@wdio/cli/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", "dev": true, "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" + "@types/node": "^18.0.0", + "got": "^11.8.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@wdio/cli/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, "node_modules/@wdio/cli/node_modules/devtools": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.19.5.tgz", - "integrity": "sha512-O62fArKiAT7fxTgn3GagEFZPpKF2Kfx/HkzGmJVIlBktrN4bJ+DAwZh6d27U9hE6qraMbVPEw+tW6T3RWoj0Sw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.25.0.tgz", + "integrity": "sha512-SU9jKoJJccXKXfYiIqgktoL5TuzLglqcHeivPPJjzhX17S99zH9bHw4SyhQALox3J1Xgmim+dzO6yTQtRU6cAQ==", "dev": true, "dependencies": { - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/ua-parser-js": "^0.7.33", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "chrome-launcher": "^0.15.0", "edge-paths": "^2.1.0", "puppeteer-core": "^13.1.3", "query-selector-shadow-dom": "^1.0.0", "ua-parser-js": "^1.0.1", - "uuid": "^8.0.0" + "uuid": "^9.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/@wdio/cli/node_modules/devtools-protocol": { - "version": "0.0.982423", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.982423.tgz", - "integrity": "sha512-FnVW2nDbjGNw1uD/JRC+9U5768W7e1TfUwqbDTcSsAu1jXFjITSX8w3rkW5FEpHRMPPGpvNSmO1pOpqByiWscA==", + "version": "0.0.1049481", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1049481.tgz", + "integrity": "sha512-QeoiFUnCNlXusSIfCOov0bn9uGTx7Q+9Cj+vvNFzHym5OcJeXyFxXNtvWtFmDorlEnTJYL5S6wXv+kgAg1s/Zw==", "dev": true }, + "node_modules/@wdio/cli/node_modules/glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@wdio/cli/node_modules/minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", @@ -1246,26 +1319,35 @@ "node": "*" } }, + "node_modules/@wdio/cli/node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/@wdio/cli/node_modules/webdriverio": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.19.5.tgz", - "integrity": "sha512-FDq6ULiXFhAzIxQ+NI/GprYoouT5GUDhdXNJkMHYT6wBSC0shEtbpu8+ciAB7lqbsD/D9pADePtj+18+gEG0zA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.25.0.tgz", + "integrity": "sha512-7s7PSeGpcUkZq3UTjdG8etbblAerp27Jyf/VQ4Nr0bdZACDfsCVSyvQQuD0HH880VryV+7tjXK6cSV4eYzY64Q==", "dev": true, "dependencies": { "@types/aria-query": "^5.0.0", - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/repl": "7.25.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "archiver": "^5.0.0", "aria-query": "^5.0.0", "css-shorthand-properties": "^1.1.1", "css-value": "^0.0.1", - "devtools": "7.19.5", - "devtools-protocol": "^0.0.982423", + "devtools": "7.25.0", + "devtools-protocol": "^0.0.1049481", "fs-extra": "^10.0.0", "grapheme-splitter": "^1.0.2", "lodash.clonedeep": "^4.5.0", @@ -1278,7 +1360,7 @@ "resq": "^1.9.1", "rgb2hex": "0.2.5", "serialize-error": "^8.0.0", - "webdriver": "7.19.5" + "webdriver": "7.25.0" }, "engines": { "node": ">=12.0.0" @@ -1300,16 +1382,16 @@ } }, "node_modules/@wdio/local-runner": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/local-runner/-/local-runner-7.19.5.tgz", - "integrity": "sha512-VZr726za6JHY+14SqEEq/VolKIsC2QgMH9BhX3sw0yWUsRxWy4M7STl2fiQWgJbW0bc2Z74TRLrx7TYfncIPpw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/local-runner/-/local-runner-7.25.0.tgz", + "integrity": "sha512-XDNAKjwAg+TQ8o7GSub75fOHNnyTXzvcHH1W/Ad3B+EY9Kze7EBbHj2u6om+TL8i9HOblqqor5SVwiXdOxBpag==", "dev": true, "dependencies": { "@types/stream-buffers": "^3.0.3", "@wdio/logger": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/runner": "7.19.5", - "@wdio/types": "7.19.5", + "@wdio/repl": "7.25.0", + "@wdio/runner": "7.25.0", + "@wdio/types": "7.25.0", "async-exit-hook": "^2.0.1", "split2": "^4.0.0", "stream-buffers": "^3.0.2" @@ -1321,6 +1403,33 @@ "@wdio/cli": "^7.0.0" } }, + "node_modules/@wdio/local-runner/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/local-runner/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "dependencies": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@wdio/logger": { "version": "7.19.0", "resolved": "https://registry.npmjs.org/@wdio/logger/-/logger-7.19.0.tgz", @@ -1384,38 +1493,38 @@ } }, "node_modules/@wdio/protocols": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-7.19.0.tgz", - "integrity": "sha512-ji74rQag6v+INSNd0J8eAh2rpH5vOXgeiP5Qr32K6PWU6HzYWuAFH2x4srXsH0JawHCdTK2OQAOYrLmMb44hug==", + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-7.22.0.tgz", + "integrity": "sha512-8EXRR+Ymdwousm/VGtW3H1hwxZ/1g1H99A1lF0U4GuJ5cFWHCd0IVE5H31Z52i8ZruouW8jueMkGZPSo2IIUSQ==", "dev": true, "engines": { "node": ">=12.0.0" } }, "node_modules/@wdio/repl": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/repl/-/repl-7.19.5.tgz", - "integrity": "sha512-Rej9SrH2DIPQ2342o4ixF48fJYsaeU4rtz+R7wYv6J1RZaNQvINdO21HoODfJ7DIDltVWzvLhCOe4CgzGubRGA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/repl/-/repl-7.25.0.tgz", + "integrity": "sha512-XhWsiOgKnkJ/0z2Um+ckcLVUHjyBB9JEtdP2mY2LjkK55W2/mXl+Mg0G3zNbG3YvT8VCV3QzSFAJKBhyfaBjwA==", "dev": true, "dependencies": { - "@wdio/utils": "7.19.5" + "@wdio/utils": "7.25.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/@wdio/reporter": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/reporter/-/reporter-7.19.5.tgz", - "integrity": "sha512-1h2IM+xF1Oc483HZElhOVgKrgSxI8erMQJ8fTgPo17aeWQFU2rl5HsdY49+LRU5YEmSHNm3HbNn8fs1nkpSnIA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/reporter/-/reporter-7.25.0.tgz", + "integrity": "sha512-Hp42KdBruuv3gR+zavw46l3FyElCTW8EABib59h1/G0J6rT8Vjf5H5wGXdv+K2NJCJqhZd2HkpgmMlx7B9bstA==", "dev": true, "dependencies": { "@types/diff": "^5.0.0", - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/object-inspect": "^1.8.0", "@types/supports-color": "^8.1.0", "@types/tmp": "^0.2.0", - "@wdio/types": "7.19.5", + "@wdio/types": "7.25.0", "diff": "^5.0.0", "fs-extra": "^10.0.0", "object-inspect": "^1.10.3", @@ -1425,82 +1534,153 @@ "node": ">=12.0.0" } }, + "node_modules/@wdio/reporter/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/reporter/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "dependencies": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@wdio/runner": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/runner/-/runner-7.19.5.tgz", - "integrity": "sha512-9eKoTqT/Ht8RPlVfqBcDTvhluP/nwyHOvqw0+zHUoJHTtLFCsZNcAXnBgAuozIrHFgyX5e4LMQLvY0voWDmqCQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/runner/-/runner-7.25.0.tgz", + "integrity": "sha512-Op5WJ5a8gvpseqvBqVubDZfCRBsDLeGp9uyZGQzvgWlCgrMfPeId+plSKdL2Z5qkSjApOYyeagQ6njF/ztdRkw==", "dev": true, "dependencies": { - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "deepmerge": "^4.0.0", "gaze": "^1.1.2", - "webdriver": "7.19.5", - "webdriverio": "7.19.5" + "webdriver": "7.25.0", + "webdriverio": "7.25.0" }, "engines": { "node": ">=12.0.0" } }, - "node_modules/@wdio/runner/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@wdio/runner/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/runner/node_modules/@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + }, + "engines": { + "node": ">=12.0.0" } }, - "node_modules/@wdio/runner/node_modules/chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", + "node_modules/@wdio/runner/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", "dev": true, "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" + "@types/node": "^18.0.0", + "got": "^11.8.1" }, "engines": { - "node": ">=12.13.0" + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@wdio/runner/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, "node_modules/@wdio/runner/node_modules/devtools": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.19.5.tgz", - "integrity": "sha512-O62fArKiAT7fxTgn3GagEFZPpKF2Kfx/HkzGmJVIlBktrN4bJ+DAwZh6d27U9hE6qraMbVPEw+tW6T3RWoj0Sw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.25.0.tgz", + "integrity": "sha512-SU9jKoJJccXKXfYiIqgktoL5TuzLglqcHeivPPJjzhX17S99zH9bHw4SyhQALox3J1Xgmim+dzO6yTQtRU6cAQ==", "dev": true, "dependencies": { - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/ua-parser-js": "^0.7.33", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "chrome-launcher": "^0.15.0", "edge-paths": "^2.1.0", "puppeteer-core": "^13.1.3", "query-selector-shadow-dom": "^1.0.0", "ua-parser-js": "^1.0.1", - "uuid": "^8.0.0" + "uuid": "^9.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/@wdio/runner/node_modules/devtools-protocol": { - "version": "0.0.982423", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.982423.tgz", - "integrity": "sha512-FnVW2nDbjGNw1uD/JRC+9U5768W7e1TfUwqbDTcSsAu1jXFjITSX8w3rkW5FEpHRMPPGpvNSmO1pOpqByiWscA==", + "version": "0.0.1049481", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1049481.tgz", + "integrity": "sha512-QeoiFUnCNlXusSIfCOov0bn9uGTx7Q+9Cj+vvNFzHym5OcJeXyFxXNtvWtFmDorlEnTJYL5S6wXv+kgAg1s/Zw==", "dev": true }, + "node_modules/@wdio/runner/node_modules/glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/@wdio/runner/node_modules/minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", @@ -1532,26 +1712,35 @@ "node": "*" } }, + "node_modules/@wdio/runner/node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/@wdio/runner/node_modules/webdriverio": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.19.5.tgz", - "integrity": "sha512-FDq6ULiXFhAzIxQ+NI/GprYoouT5GUDhdXNJkMHYT6wBSC0shEtbpu8+ciAB7lqbsD/D9pADePtj+18+gEG0zA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.25.0.tgz", + "integrity": "sha512-7s7PSeGpcUkZq3UTjdG8etbblAerp27Jyf/VQ4Nr0bdZACDfsCVSyvQQuD0HH880VryV+7tjXK6cSV4eYzY64Q==", "dev": true, "dependencies": { "@types/aria-query": "^5.0.0", - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/repl": "7.25.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "archiver": "^5.0.0", "aria-query": "^5.0.0", "css-shorthand-properties": "^1.1.1", "css-value": "^0.0.1", - "devtools": "7.19.5", - "devtools-protocol": "^0.0.982423", + "devtools": "7.25.0", + "devtools-protocol": "^0.0.1049481", "fs-extra": "^10.0.0", "grapheme-splitter": "^1.0.2", "lodash.clonedeep": "^4.5.0", @@ -1564,7 +1753,7 @@ "resq": "^1.9.1", "rgb2hex": "0.2.5", "serialize-error": "^8.0.0", - "webdriver": "7.19.5" + "webdriver": "7.25.0" }, "engines": { "node": ">=12.0.0" @@ -1593,14 +1782,14 @@ } }, "node_modules/@wdio/spec-reporter": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/spec-reporter/-/spec-reporter-7.19.5.tgz", - "integrity": "sha512-ovkjhOowpSJKblEIC5Si+pOmr0/fUqo+bNkxZwYDNSzIwPyxJnED17WSNYw+JAzSp2PgfNwjELoQfMNCDPQvAQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/spec-reporter/-/spec-reporter-7.25.0.tgz", + "integrity": "sha512-QyObfa3CcWCRuTcKTqK85GnMn+qR2fzFCrKGqDHU5bhsToaJTZNAubE+YpUAq8iWEL67wi3EUKKtY/gUGiQcrQ==", "dev": true, "dependencies": { - "@types/easy-table": "^0.0.33", - "@wdio/reporter": "7.19.5", - "@wdio/types": "7.19.5", + "@types/easy-table": "^1.2.0", + "@wdio/reporter": "7.25.0", + "@wdio/types": "7.25.0", "chalk": "^4.0.0", "easy-table": "^1.1.1", "pretty-ms": "^7.0.0" @@ -1612,6 +1801,33 @@ "@wdio/cli": "^7.0.0" } }, + "node_modules/@wdio/spec-reporter/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/spec-reporter/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "dependencies": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@wdio/types": { "version": "7.19.5", "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.19.5.tgz", @@ -1629,19 +1845,46 @@ } }, "node_modules/@wdio/utils": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-7.19.5.tgz", - "integrity": "sha512-UvZK8PvY50aUEg5CYSDkkT2NsDA0+Eo7QWjreA3L5ff50jaFrYnpVOyfX4PjWhErH8gZtYSwep+DSgldCUInGQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-7.25.0.tgz", + "integrity": "sha512-dRPJoVb2wsMv/GFwAVcVbp0+8CE+vVeW/+lpre6ocn36WAnDQJD6X5UGYde5oQeXGyjzj1/nMHBSsr+ifvuJRQ==", "dev": true, "dependencies": { "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", + "@wdio/types": "7.25.0", "p-iteration": "^1.1.8" }, "engines": { "node": ">=12.0.0" } }, + "node_modules/@wdio/utils/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/@wdio/utils/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "dependencies": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, "node_modules/@xmldom/xmldom": { "version": "0.7.5", "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.7.5.tgz", @@ -1991,6 +2234,12 @@ "node": ">=0.12.0" } }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, "node_modules/at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", @@ -2034,12 +2283,13 @@ } }, "node_modules/axios": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", - "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", "dev": true, "dependencies": { - "follow-redirects": "^1.14.4" + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" } }, "node_modules/bail": { @@ -2189,15 +2439,15 @@ "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "node_modules/bootstrap": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz", - "integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E=", + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz", + "integrity": "sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==", "engines": { - "node": ">=0.10.1" + "node": ">=6" } }, "node_modules/bootstrap-sass": { @@ -2207,9 +2457,9 @@ "dev": true }, "node_modules/bootstrap-slider": { - "version": "10.6.2", - "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-10.6.2.tgz", - "integrity": "sha512-8JTPZB9QVOdrGzYF3YgC3YW6ssfPeBvBwZnXffiZ7YH/zz1D0EKlZvmQsm/w3N0XjVNYQEoQ0ax+jHrErV4K1Q==" + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-11.0.2.tgz", + "integrity": "sha512-CdwS+Z6X79OkLes9RfDgPB9UIY/+81wTkm6ktdSB6hdyiRbjJLFQIjZdnEr55tDyXZfgC7U6yeSXkNN9ZdGqjA==" }, "node_modules/bowser": { "version": "1.0.0", @@ -2586,9 +2836,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001402", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz", - "integrity": "sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==", + "version": "1.0.30001427", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz", + "integrity": "sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ==", "dev": true, "funding": [ { @@ -2695,9 +2945,9 @@ "dev": true }, "node_modules/chrome-launcher": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.14.2.tgz", - "integrity": "sha512-Nk8DUCIfPR6p9WClPPFeP2ztpAdkT8xueoiDS03csea1uoJjm4w0p5Oy1hjykyjT1EQ0MMrEshLD3C8gHXyiZw==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", + "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", "dev": true, "dependencies": { "@types/node": "*", @@ -2705,22 +2955,25 @@ "is-wsl": "^2.2.0", "lighthouse-logger": "^1.0.0" }, + "bin": { + "print-chrome-path": "bin/print-chrome-path.js" + }, "engines": { "node": ">=12.13.0" } }, "node_modules/chromedriver": { - "version": "101.0.0", - "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-101.0.0.tgz", - "integrity": "sha512-LkkWxy6KM/0YdJS8qBeg5vfkTZTRamhBfOttb4oic4echDgWvCU1E8QcBbUBOHqZpSrYMyi7WMKmKMhXFUaZ+w==", + "version": "105.0.1", + "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-105.0.1.tgz", + "integrity": "sha512-QqylH9mvl4Ybq3mmHsym7jeq/LhEi2sPtD8ffd9ixiDFdPRlh2F4vzrzK+myj1MiXb0TYJK7+OCcMEmsB3Sm/Q==", "dev": true, "hasInstallScript": true, "dependencies": { - "@testim/chrome-version": "^1.1.2", - "axios": "^0.24.0", - "del": "^6.0.0", + "@testim/chrome-version": "^1.1.3", + "axios": "^0.27.2", + "del": "^6.1.1", "extract-zip": "^2.0.1", - "https-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", "proxy-from-env": "^1.1.0", "tcp-port-used": "^1.0.1" }, @@ -2986,9 +3239,9 @@ "dev": true }, "node_modules/colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==", + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "node_modules/colorette": { @@ -3006,6 +3259,18 @@ "node": ">=0.1.90" } }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/commander": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-9.3.0.tgz", @@ -3258,9 +3523,9 @@ } }, "node_modules/css-declaration-sorter": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.2.2.tgz", - "integrity": "sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", "dev": true, "engines": { "node": "^10 || ^12 || >=14" @@ -3344,12 +3609,12 @@ } }, "node_modules/cssnano": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.7.tgz", - "integrity": "sha512-pVsUV6LcTXif7lvKKW9ZrmX+rGRzxkEdJuVJcp5ftUjWITgwam5LMZOgaTvUrWPkcORBey6he7JKb4XAJvrpKg==", + "version": "5.1.13", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz", + "integrity": "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==", "dev": true, "dependencies": { - "cssnano-preset-default": "^5.2.7", + "cssnano-preset-default": "^5.2.12", "lilconfig": "^2.0.3", "yaml": "^1.10.2" }, @@ -3365,36 +3630,36 @@ } }, "node_modules/cssnano-preset-default": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.7.tgz", - "integrity": "sha512-JiKP38ymZQK+zVKevphPzNSGHSlTI+AOwlasoSRtSVMUU285O7/6uZyd5NbW92ZHp41m0sSHe6JoZosakj63uA==", + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", + "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", "dev": true, "dependencies": { - "css-declaration-sorter": "^6.2.2", + "css-declaration-sorter": "^6.3.0", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.0", - "postcss-discard-comments": "^5.1.1", + "postcss-convert-values": "^5.1.2", + "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", - "postcss-merge-rules": "^5.1.1", + "postcss-merge-longhand": "^5.1.6", + "postcss-merge-rules": "^5.1.2", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.2", - "postcss-minify-selectors": "^5.2.0", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.0", - "postcss-normalize-repeat-style": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", "postcss-normalize-unicode": "^5.1.0", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.1", + "postcss-ordered-values": "^5.1.3", "postcss-reduce-initial": "^5.1.0", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", @@ -3660,9 +3925,9 @@ } }, "node_modules/del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "dev": true, "dependencies": { "globby": "^11.0.1", @@ -3681,6 +3946,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -3812,24 +4086,6 @@ "balanced-match": "^1.0.0" } }, - "node_modules/devtools/node_modules/chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "dev": true, - "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" - }, - "engines": { - "node": ">=12.13.0" - } - }, "node_modules/devtools/node_modules/glob": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", @@ -4188,16 +4444,18 @@ "dev": true }, "node_modules/es-abstract": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.5.tgz", - "integrity": "sha512-Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA==", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", + "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", "dependencies": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", "get-symbol-description": "^1.0.0", "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", "is-callable": "^1.2.4", @@ -4206,12 +4464,13 @@ "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.0", + "object-inspect": "^1.12.2", "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -5202,6 +5461,20 @@ "node": ">=0.10.0" } }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/fraction.js": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", @@ -5270,11 +5543,36 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "node_modules/function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gaze": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", @@ -5306,13 +5604,13 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "dependencies": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -6429,7 +6727,7 @@ "node_modules/immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", "dev": true }, "node_modules/immutable": { @@ -6505,9 +6803,9 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "node_modules/inquirer": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz", - "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==", + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", "dev": true, "dependencies": { "ansi-escapes": "^4.2.1", @@ -6523,7 +6821,8 @@ "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12.0.0" @@ -7284,9 +7583,9 @@ "dev": true }, "node_modules/jasmine-core": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.1.0.tgz", - "integrity": "sha512-8E8BiffCL8sBwK1zU9cbavLe8xpJAgOduSJ6N8PJVv8VosQ/nxVTuXj2kUeHxTlZBVvh24G19ga7xdiaxlceKg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.4.0.tgz", + "integrity": "sha512-+l482uImx5BVd6brJYlaHe2UwfKoZBqQfNp20ZmdNfsjGFTemGfqHLsXjKEW23w9R/m8WYeFc9JmIgjj6dUtAA==", "dev": true }, "node_modules/jasmine-expect": { @@ -7377,9 +7676,9 @@ } }, "node_modules/jquery-ui": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.1.tgz", - "integrity": "sha512-2VlU59N5P4HaumDK1Z3XEVjSvegFbEOQRgpHUBaB2Ak98Axl3hFhJ6RFcNQNuk9SfL6WxIbuLst8dW/U56NSiA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.2.tgz", + "integrity": "sha512-wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q==", "dependencies": { "jquery": ">=1.8.0 <4.0.0" } @@ -7500,15 +7799,15 @@ } }, "node_modules/jszip": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.9.1.tgz", - "integrity": "sha512-H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw==", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", "dev": true, "dependencies": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", - "set-immediate-shim": "~1.0.1" + "setimmediate": "^1.0.5" } }, "node_modules/jszip/node_modules/readable-stream": { @@ -7662,14 +7961,14 @@ } }, "node_modules/karma-jasmine-html-reporter": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz", - "integrity": "sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-2.0.0.tgz", + "integrity": "sha512-SB8HNNiazAHXM1vGEzf8/tSyEhkfxuDdhYdPBX2Mwgzt0OuF2gicApQ+uvXLID/gXyJQgvrM9+1/2SxZFUUDIA==", "dev": true, "peerDependencies": { - "jasmine-core": ">=3.8", - "karma": ">=0.9", - "karma-jasmine": ">=1.1" + "jasmine-core": "^4.0.0", + "karma": "^6.0.0", + "karma-jasmine": "^5.0.0" } }, "node_modules/karma-jasmine-matchers": { @@ -8664,7 +8963,7 @@ "node_modules/lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, "node_modules/lodash.merge": { @@ -8679,12 +8978,6 @@ "integrity": "sha1-feoh2MGNdwOifHBMFdO4SmfjOv8=", "dev": true }, - "node_modules/lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", - "dev": true - }, "node_modules/lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", @@ -8700,7 +8993,7 @@ "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, "node_modules/lodash.zip": { @@ -9765,9 +10058,9 @@ } }, "node_modules/nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "dependencies": { "boolbase": "^1.0.0" @@ -9799,9 +10092,9 @@ } }, "node_modules/object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==", + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", "funding": { "url": "https://github.com/sponsors/ljharb" } @@ -9815,13 +10108,13 @@ } }, "node_modules/object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" }, "engines": { @@ -10784,18 +11077,18 @@ } }, "node_modules/postcss-cli": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-9.1.0.tgz", - "integrity": "sha512-zvDN2ADbWfza42sAnj+O2uUWyL0eRL1V+6giM2vi4SqTR3gTYy8XzcpfwccayF2szcUif0HMmXiEaDv9iEhcpw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.0.0.tgz", + "integrity": "sha512-Wjy/00wBBEgQqnSToznxLWDnATznokFGXsHtF/3G8glRZpz5KYlfHcBW/VMJmWAeF2x49zjgy4izjM3/Wx1dKA==", "dev": true, "dependencies": { "chokidar": "^3.3.0", "dependency-graph": "^0.11.0", "fs-extra": "^10.0.0", "get-stdin": "^9.0.0", - "globby": "^12.0.0", + "globby": "^13.0.0", "picocolors": "^1.0.0", - "postcss-load-config": "^3.0.0", + "postcss-load-config": "^4.0.0", "postcss-reporter": "^7.0.0", "pretty-hrtime": "^1.0.3", "read-cache": "^1.0.0", @@ -10806,34 +11099,21 @@ "postcss": "index.js" }, "engines": { - "node": ">=12" + "node": ">=14" }, "peerDependencies": { "postcss": "^8.0.0" } }, - "node_modules/postcss-cli/node_modules/array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/postcss-cli/node_modules/globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", "dev": true, "dependencies": { - "array-union": "^3.0.1", "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^4.0.0" }, @@ -10875,11 +11155,12 @@ } }, "node_modules/postcss-convert-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", - "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", + "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", "dev": true, "dependencies": { + "browserslist": "^4.20.3", "postcss-value-parser": "^4.2.0" }, "engines": { @@ -10982,16 +11263,16 @@ } }, "node_modules/postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dev": true, "dependencies": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" }, "engines": { - "node": ">= 10" + "node": ">= 14" }, "funding": { "type": "opencollective", @@ -11010,6 +11291,15 @@ } } }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.1.1.tgz", + "integrity": "sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, "node_modules/postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", @@ -11017,9 +11307,9 @@ "dev": true }, "node_modules/postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", + "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0", @@ -11033,9 +11323,9 @@ } }, "node_modules/postcss-merge-rules": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.1.tgz", - "integrity": "sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", + "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", "dev": true, "dependencies": { "browserslist": "^4.16.6", @@ -11083,9 +11373,9 @@ } }, "node_modules/postcss-minify-params": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.2.tgz", - "integrity": "sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", + "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", "dev": true, "dependencies": { "browserslist": "^4.16.6", @@ -11100,9 +11390,9 @@ } }, "node_modules/postcss-minify-selectors": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", - "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dev": true, "dependencies": { "postcss-selector-parser": "^6.0.5" @@ -11142,9 +11432,9 @@ } }, "node_modules/postcss-normalize-positions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", - "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -11157,9 +11447,9 @@ } }, "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", - "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dev": true, "dependencies": { "postcss-value-parser": "^4.2.0" @@ -11249,9 +11539,9 @@ } }, "node_modules/postcss-ordered-values": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.1.tgz", - "integrity": "sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dev": true, "dependencies": { "cssnano-utils": "^3.1.0", @@ -11772,15 +12062,18 @@ } }, "node_modules/prettier": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", - "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", "dev": true, "bin": { "prettier": "bin-prettier.js" }, "engines": { "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, "node_modules/pretty-bytes": { @@ -11947,27 +12240,26 @@ } }, "node_modules/puppeteer": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.7.0.tgz", - "integrity": "sha512-U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz", + "integrity": "sha512-s4erjxU0VtKojPvF+KvLKG6OHUPw7gO2YV1dtOsoryyCbhrs444fXb4QZqGWuTv3V/rgSCUzeixxu34g0ZkSMA==", "dev": true, "hasInstallScript": true, "dependencies": { "cross-fetch": "3.1.5", "debug": "4.3.4", - "devtools-protocol": "0.0.981744", + "devtools-protocol": "0.0.1036444", "extract-zip": "2.0.1", "https-proxy-agent": "5.0.1", - "pkg-dir": "4.2.0", "progress": "2.0.3", "proxy-from-env": "1.1.0", "rimraf": "3.0.2", "tar-fs": "2.1.1", "unbzip2-stream": "1.4.3", - "ws": "8.5.0" + "ws": "8.8.1" }, "engines": { - "node": ">=10.18.1" + "node": ">=14.1.0" } }, "node_modules/puppeteer-core": { @@ -12030,6 +12322,12 @@ "node": ">= 6.0.0" } }, + "node_modules/puppeteer/node_modules/devtools-protocol": { + "version": "0.0.1036444", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz", + "integrity": "sha512-0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw==", + "dev": true + }, "node_modules/puppeteer/node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -12043,6 +12341,27 @@ "node": ">= 6" } }, + "node_modules/puppeteer/node_modules/ws": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", + "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/pure-uuid": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/pure-uuid/-/pure-uuid-1.6.2.tgz", @@ -12361,6 +12680,22 @@ "node": ">=0.10.0" } }, + "node_modules/regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -12457,9 +12792,9 @@ } }, "node_modules/require-css": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/require-css/-/require-css-0.1.8.tgz", - "integrity": "sha1-8uhnu48fTaG3/ucbgZv6PCa5BO8=" + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/require-css/-/require-css-0.1.10.tgz", + "integrity": "sha512-v9XczgOfDKMkHdndAwuEDEasYNJPbL3aVDTM9tbRoAefjLm3kUZdt/Fg6Xi+0HJzliL21gGPWTXDV87XuOwCIQ==" }, "node_modules/require-directory": { "version": "2.1.1", @@ -12754,9 +13089,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/sass": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.51.0.tgz", - "integrity": "sha512-haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA==", + "version": "1.55.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz", + "integrity": "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -12781,9 +13116,9 @@ "integrity": "sha1-uUJuz8A79KI152oTI3dXQxBGmsA=" }, "node_modules/selenium-standalone": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/selenium-standalone/-/selenium-standalone-8.1.1.tgz", - "integrity": "sha512-pTdDwZEr8285qaX8n1/6sa7dug7Hhj4LAS5WfR4v9DDfVvsuX2DQYGboJJ3RROGeG9aGHTpZMsdwJGnGsn5J8Q==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/selenium-standalone/-/selenium-standalone-8.2.0.tgz", + "integrity": "sha512-gRFJm2A91sL0/4PavIsfTVNjyqNjk+zbdJg/zAYgTMjuoWJv+BlYJh+1UbEtyjt4YvZACYif1DFAzFjQapqiOA==", "dev": true, "dependencies": { "commander": "^9.0.0", @@ -12810,14 +13145,14 @@ } }, "node_modules/selenium-webdriver": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.2.tgz", - "integrity": "sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.4.0.tgz", + "integrity": "sha512-Du+/xfpvNi9zHAeYgXhOWN9yH0hph+cuX+hHDBr7d+SbtQVcfNJwBzLsbdHrB1Wh7MHXFuIkSG88A9TRRQUx3g==", "dev": true, "dependencies": { - "jszip": "^3.6.0", + "jszip": "^3.10.0", "tmp": "^0.2.1", - "ws": ">=7.4.6" + "ws": ">=8.7.0" }, "engines": { "node": ">= 10.15.0" @@ -12835,6 +13170,27 @@ "node": ">=8.17.0" } }, + "node_modules/selenium-webdriver/node_modules/ws": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", + "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", @@ -12879,19 +13235,16 @@ } }, "node_modules/set-cookie-parser": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.4.8.tgz", - "integrity": "sha512-edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.5.1.tgz", + "integrity": "sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==", "dev": true }, - "node_modules/set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "dev": true }, "node_modules/setprototypeof": { "version": "1.2.0", @@ -13134,6 +13487,7 @@ "version": "0.1.8", "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", "dev": true }, "node_modules/stack-utils": { @@ -15244,14 +15598,14 @@ } }, "node_modules/terser": { - "version": "5.13.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.13.1.tgz", - "integrity": "sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", + "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", "dev": true, "dependencies": { + "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.8.0-beta.0", "source-map-support": "~0.5.20" }, "bin": { @@ -15267,44 +15621,6 @@ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true }, - "node_modules/terser/node_modules/source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dev": true, - "dependencies": { - "whatwg-url": "^7.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/terser/node_modules/tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", - "dev": true, - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/terser/node_modules/webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "node_modules/terser/node_modules/whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "dependencies": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } - }, "node_modules/text": { "version": "2.0.16", "resolved": "git+ssh://git@github.com/requirejs/text.git#3f9d4c19b3a1a3c6f35650c5788cbea1db93197a", @@ -15597,9 +15913,9 @@ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" }, "node_modules/underscore": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.3.tgz", - "integrity": "sha512-QvjkYpiD+dJJraRA8+dGAU4i7aBbb2s0S3jA45TFOvg2VgqvdCDd/3N6CqA8gluk1W91GLoXg5enMUx560QzuA==" + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, "node_modules/underscore.string": { "version": "3.3.6", @@ -15954,25 +16270,108 @@ } }, "node_modules/webdriver": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-7.19.5.tgz", - "integrity": "sha512-kdOC6w2LSZO2zQ+sNQjHRP4CVQzo1C+g2EDz7g3czOQv2Oo8WqkVlMT9hIBiMLHQfh896gFh776GUCDnEd9emg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-7.25.0.tgz", + "integrity": "sha512-fYsxVMHpYAXecJP1m+fqC3BSKrWS3fcCiI120NRnZrZ52vcodpiJSuOAedKIXegQZlzl77U4VWeSHiY1f6Iseg==", "dev": true, "dependencies": { - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "got": "^11.0.2", - "ky": "^0.30.0", + "ky": "0.30.0", "lodash.merge": "^4.6.1" }, "engines": { "node": ">=12.0.0" } }, + "node_modules/webdriver/node_modules/@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "node_modules/webdriver/node_modules/@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", + "dev": true, + "dependencies": { + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/webdriver/node_modules/@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "dependencies": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + }, + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "typescript": "^4.6.2" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/webdriver/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/webdriver/node_modules/glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/webdriver/node_modules/minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/webdriverio": { "version": "7.20.1", "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.20.1.tgz", @@ -16975,6 +17374,29 @@ "integrity": "sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg==", "dev": true }, + "@jridgewell/source-map": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", + "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } + } + }, "@jridgewell/sourcemap-codec": { "version": "1.4.12", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.12.tgz", @@ -17074,9 +17496,9 @@ } }, "@testim/chrome-version": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@testim/chrome-version/-/chrome-version-1.1.2.tgz", - "integrity": "sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@testim/chrome-version/-/chrome-version-1.1.3.tgz", + "integrity": "sha512-g697J3WxV/Zytemz8aTuKjTGYtta9+02kva3C1xc7KXB8GdbfE1akGJIsZLyY/FSh2QrnE+fiB7vmWU3XNcb6A==", "dev": true }, "@trysound/sax": { @@ -17128,10 +17550,13 @@ "dev": true }, "@types/easy-table": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/easy-table/-/easy-table-0.0.33.tgz", - "integrity": "sha512-/vvqcJPmZUfQwCgemL0/34G7bIQnCuvgls379ygRlcC1FqNqk3n+VZ15dAO51yl6JNDoWd8vsk+kT8zfZ1VZSw==", - "dev": true + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@types/easy-table/-/easy-table-1.2.0.tgz", + "integrity": "sha512-gVQkR2G/q6UK3wQT+waY9tCrbFauzMoBfJpMxHSuemHLQ8HpHdUIQ9YyRwYMfNX4CfoAoj/eJATyECGkFr65Pg==", + "dev": true, + "requires": { + "easy-table": "*" + } }, "@types/ejs": { "version": "3.1.0", @@ -17450,9 +17875,9 @@ } }, "@wdio/cli": { - "version": "7.19.6", - "resolved": "https://registry.npmjs.org/@wdio/cli/-/cli-7.19.6.tgz", - "integrity": "sha512-lcHos0zyIQumdt+uzCbzVwJuzMyCI/Tv7nt6CcaJtIkpuut5WZ9H7V6IM3j1UYV0SEqz58KU+VPB82qazEP+YQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/cli/-/cli-7.25.0.tgz", + "integrity": "sha512-bN+ExZ6oP1taLgnNRT+fDcB+dCgElEj87sXPDR95nR+W0w3z8a77dlps+OwE2xEozgsEqlNfiuapI8uUQqTmrg==", "dev": true, "requires": { "@types/ejs": "^3.0.5", @@ -17461,29 +17886,59 @@ "@types/lodash.flattendeep": "^4.4.6", "@types/lodash.pickby": "^4.6.6", "@types/lodash.union": "^4.6.6", - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/recursive-readdir": "^2.2.0", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "async-exit-hook": "^2.0.1", "chalk": "^4.0.0", "chokidar": "^3.0.0", "cli-spinners": "^2.1.0", "ejs": "^3.0.1", "fs-extra": "^10.0.0", - "inquirer": "8.2.2", + "inquirer": "8.2.4", "lodash.flattendeep": "^4.4.0", "lodash.pickby": "^4.6.0", "lodash.union": "^4.6.0", "mkdirp": "^1.0.4", "recursive-readdir": "^2.2.2", - "webdriverio": "7.19.5", + "webdriverio": "7.25.0", "yargs": "^17.0.0", "yarn-install": "^1.0.0" }, "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", + "dev": true, + "requires": { + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + } + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -17493,45 +17948,46 @@ "balanced-match": "^1.0.0" } }, - "chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "dev": true, - "requires": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - } - }, "devtools": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.19.5.tgz", - "integrity": "sha512-O62fArKiAT7fxTgn3GagEFZPpKF2Kfx/HkzGmJVIlBktrN4bJ+DAwZh6d27U9hE6qraMbVPEw+tW6T3RWoj0Sw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.25.0.tgz", + "integrity": "sha512-SU9jKoJJccXKXfYiIqgktoL5TuzLglqcHeivPPJjzhX17S99zH9bHw4SyhQALox3J1Xgmim+dzO6yTQtRU6cAQ==", "dev": true, "requires": { - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/ua-parser-js": "^0.7.33", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "chrome-launcher": "^0.15.0", "edge-paths": "^2.1.0", "puppeteer-core": "^13.1.3", "query-selector-shadow-dom": "^1.0.0", "ua-parser-js": "^1.0.1", - "uuid": "^8.0.0" + "uuid": "^9.0.0" } }, "devtools-protocol": { - "version": "0.0.982423", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.982423.tgz", - "integrity": "sha512-FnVW2nDbjGNw1uD/JRC+9U5768W7e1TfUwqbDTcSsAu1jXFjITSX8w3rkW5FEpHRMPPGpvNSmO1pOpqByiWscA==", + "version": "0.0.1049481", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1049481.tgz", + "integrity": "sha512-QeoiFUnCNlXusSIfCOov0bn9uGTx7Q+9Cj+vvNFzHym5OcJeXyFxXNtvWtFmDorlEnTJYL5S6wXv+kgAg1s/Zw==", "dev": true }, + "glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, "minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", @@ -17547,26 +18003,32 @@ "integrity": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==", "dev": true }, + "uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true + }, "webdriverio": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.19.5.tgz", - "integrity": "sha512-FDq6ULiXFhAzIxQ+NI/GprYoouT5GUDhdXNJkMHYT6wBSC0shEtbpu8+ciAB7lqbsD/D9pADePtj+18+gEG0zA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.25.0.tgz", + "integrity": "sha512-7s7PSeGpcUkZq3UTjdG8etbblAerp27Jyf/VQ4Nr0bdZACDfsCVSyvQQuD0HH880VryV+7tjXK6cSV4eYzY64Q==", "dev": true, "requires": { "@types/aria-query": "^5.0.0", - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/repl": "7.25.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "archiver": "^5.0.0", "aria-query": "^5.0.0", "css-shorthand-properties": "^1.1.1", "css-value": "^0.0.1", - "devtools": "7.19.5", - "devtools-protocol": "^0.0.982423", + "devtools": "7.25.0", + "devtools-protocol": "^0.0.1049481", "fs-extra": "^10.0.0", "grapheme-splitter": "^1.0.2", "lodash.clonedeep": "^4.5.0", @@ -17579,7 +18041,7 @@ "resq": "^1.9.1", "rgb2hex": "0.2.5", "serialize-error": "^8.0.0", - "webdriver": "7.19.5" + "webdriver": "7.25.0" } } } @@ -17597,19 +18059,37 @@ } }, "@wdio/local-runner": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/local-runner/-/local-runner-7.19.5.tgz", - "integrity": "sha512-VZr726za6JHY+14SqEEq/VolKIsC2QgMH9BhX3sw0yWUsRxWy4M7STl2fiQWgJbW0bc2Z74TRLrx7TYfncIPpw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/local-runner/-/local-runner-7.25.0.tgz", + "integrity": "sha512-XDNAKjwAg+TQ8o7GSub75fOHNnyTXzvcHH1W/Ad3B+EY9Kze7EBbHj2u6om+TL8i9HOblqqor5SVwiXdOxBpag==", "dev": true, "requires": { "@types/stream-buffers": "^3.0.3", "@wdio/logger": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/runner": "7.19.5", - "@wdio/types": "7.19.5", + "@wdio/repl": "7.25.0", + "@wdio/runner": "7.25.0", + "@wdio/types": "7.25.0", "async-exit-hook": "^2.0.1", "split2": "^4.0.0", "stream-buffers": "^3.0.2" + }, + "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + } } }, "@wdio/logger": { @@ -17662,54 +18142,101 @@ } }, "@wdio/protocols": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-7.19.0.tgz", - "integrity": "sha512-ji74rQag6v+INSNd0J8eAh2rpH5vOXgeiP5Qr32K6PWU6HzYWuAFH2x4srXsH0JawHCdTK2OQAOYrLmMb44hug==", + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/@wdio/protocols/-/protocols-7.22.0.tgz", + "integrity": "sha512-8EXRR+Ymdwousm/VGtW3H1hwxZ/1g1H99A1lF0U4GuJ5cFWHCd0IVE5H31Z52i8ZruouW8jueMkGZPSo2IIUSQ==", "dev": true }, "@wdio/repl": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/repl/-/repl-7.19.5.tgz", - "integrity": "sha512-Rej9SrH2DIPQ2342o4ixF48fJYsaeU4rtz+R7wYv6J1RZaNQvINdO21HoODfJ7DIDltVWzvLhCOe4CgzGubRGA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/repl/-/repl-7.25.0.tgz", + "integrity": "sha512-XhWsiOgKnkJ/0z2Um+ckcLVUHjyBB9JEtdP2mY2LjkK55W2/mXl+Mg0G3zNbG3YvT8VCV3QzSFAJKBhyfaBjwA==", "dev": true, "requires": { - "@wdio/utils": "7.19.5" + "@wdio/utils": "7.25.0" } }, "@wdio/reporter": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/reporter/-/reporter-7.19.5.tgz", - "integrity": "sha512-1h2IM+xF1Oc483HZElhOVgKrgSxI8erMQJ8fTgPo17aeWQFU2rl5HsdY49+LRU5YEmSHNm3HbNn8fs1nkpSnIA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/reporter/-/reporter-7.25.0.tgz", + "integrity": "sha512-Hp42KdBruuv3gR+zavw46l3FyElCTW8EABib59h1/G0J6rT8Vjf5H5wGXdv+K2NJCJqhZd2HkpgmMlx7B9bstA==", "dev": true, "requires": { "@types/diff": "^5.0.0", - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/object-inspect": "^1.8.0", "@types/supports-color": "^8.1.0", "@types/tmp": "^0.2.0", - "@wdio/types": "7.19.5", + "@wdio/types": "7.25.0", "diff": "^5.0.0", "fs-extra": "^10.0.0", "object-inspect": "^1.10.3", "supports-color": "8.1.1" + }, + "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + } } }, "@wdio/runner": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/runner/-/runner-7.19.5.tgz", - "integrity": "sha512-9eKoTqT/Ht8RPlVfqBcDTvhluP/nwyHOvqw0+zHUoJHTtLFCsZNcAXnBgAuozIrHFgyX5e4LMQLvY0voWDmqCQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/runner/-/runner-7.25.0.tgz", + "integrity": "sha512-Op5WJ5a8gvpseqvBqVubDZfCRBsDLeGp9uyZGQzvgWlCgrMfPeId+plSKdL2Z5qkSjApOYyeagQ6njF/ztdRkw==", "dev": true, "requires": { - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "deepmerge": "^4.0.0", "gaze": "^1.1.2", - "webdriver": "7.19.5", - "webdriverio": "7.19.5" + "webdriver": "7.25.0", + "webdriverio": "7.25.0" }, "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", + "dev": true, + "requires": { + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + } + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + }, "brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", @@ -17719,45 +18246,46 @@ "balanced-match": "^1.0.0" } }, - "chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "dev": true, - "requires": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - } - }, "devtools": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.19.5.tgz", - "integrity": "sha512-O62fArKiAT7fxTgn3GagEFZPpKF2Kfx/HkzGmJVIlBktrN4bJ+DAwZh6d27U9hE6qraMbVPEw+tW6T3RWoj0Sw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/devtools/-/devtools-7.25.0.tgz", + "integrity": "sha512-SU9jKoJJccXKXfYiIqgktoL5TuzLglqcHeivPPJjzhX17S99zH9bHw4SyhQALox3J1Xgmim+dzO6yTQtRU6cAQ==", "dev": true, "requires": { - "@types/node": "^17.0.4", + "@types/node": "^18.0.0", "@types/ua-parser-js": "^0.7.33", - "@wdio/config": "7.19.5", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "chrome-launcher": "^0.15.0", "edge-paths": "^2.1.0", "puppeteer-core": "^13.1.3", "query-selector-shadow-dom": "^1.0.0", "ua-parser-js": "^1.0.1", - "uuid": "^8.0.0" + "uuid": "^9.0.0" } }, "devtools-protocol": { - "version": "0.0.982423", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.982423.tgz", - "integrity": "sha512-FnVW2nDbjGNw1uD/JRC+9U5768W7e1TfUwqbDTcSsAu1jXFjITSX8w3rkW5FEpHRMPPGpvNSmO1pOpqByiWscA==", + "version": "0.0.1049481", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1049481.tgz", + "integrity": "sha512-QeoiFUnCNlXusSIfCOov0bn9uGTx7Q+9Cj+vvNFzHym5OcJeXyFxXNtvWtFmDorlEnTJYL5S6wXv+kgAg1s/Zw==", "dev": true }, + "glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, "minimatch": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", @@ -17773,26 +18301,32 @@ "integrity": "sha512-00y/AXhx0/SsnI51fTc0rLRmafiGOM4/O+ny10Ps7f+j/b8p/ZY11ytMgznXkOVo4GQ+KwQG5UQLkLGirsACRg==", "dev": true }, + "uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "dev": true + }, "webdriverio": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.19.5.tgz", - "integrity": "sha512-FDq6ULiXFhAzIxQ+NI/GprYoouT5GUDhdXNJkMHYT6wBSC0shEtbpu8+ciAB7lqbsD/D9pADePtj+18+gEG0zA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriverio/-/webdriverio-7.25.0.tgz", + "integrity": "sha512-7s7PSeGpcUkZq3UTjdG8etbblAerp27Jyf/VQ4Nr0bdZACDfsCVSyvQQuD0HH880VryV+7tjXK6cSV4eYzY64Q==", "dev": true, "requires": { "@types/aria-query": "^5.0.0", - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/repl": "7.19.5", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/repl": "7.25.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "archiver": "^5.0.0", "aria-query": "^5.0.0", "css-shorthand-properties": "^1.1.1", "css-value": "^0.0.1", - "devtools": "7.19.5", - "devtools-protocol": "^0.0.982423", + "devtools": "7.25.0", + "devtools-protocol": "^0.0.1049481", "fs-extra": "^10.0.0", "grapheme-splitter": "^1.0.2", "lodash.clonedeep": "^4.5.0", @@ -17805,7 +18339,7 @@ "resq": "^1.9.1", "rgb2hex": "0.2.5", "serialize-error": "^8.0.0", - "webdriver": "7.19.5" + "webdriver": "7.25.0" } } } @@ -17827,17 +18361,35 @@ } }, "@wdio/spec-reporter": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/spec-reporter/-/spec-reporter-7.19.5.tgz", - "integrity": "sha512-ovkjhOowpSJKblEIC5Si+pOmr0/fUqo+bNkxZwYDNSzIwPyxJnED17WSNYw+JAzSp2PgfNwjELoQfMNCDPQvAQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/spec-reporter/-/spec-reporter-7.25.0.tgz", + "integrity": "sha512-QyObfa3CcWCRuTcKTqK85GnMn+qR2fzFCrKGqDHU5bhsToaJTZNAubE+YpUAq8iWEL67wi3EUKKtY/gUGiQcrQ==", "dev": true, "requires": { - "@types/easy-table": "^0.0.33", - "@wdio/reporter": "7.19.5", - "@wdio/types": "7.19.5", + "@types/easy-table": "^1.2.0", + "@wdio/reporter": "7.25.0", + "@wdio/types": "7.25.0", "chalk": "^4.0.0", "easy-table": "^1.1.1", "pretty-ms": "^7.0.0" + }, + "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + } } }, "@wdio/types": { @@ -17851,14 +18403,32 @@ } }, "@wdio/utils": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-7.19.5.tgz", - "integrity": "sha512-UvZK8PvY50aUEg5CYSDkkT2NsDA0+Eo7QWjreA3L5ff50jaFrYnpVOyfX4PjWhErH8gZtYSwep+DSgldCUInGQ==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/utils/-/utils-7.25.0.tgz", + "integrity": "sha512-dRPJoVb2wsMv/GFwAVcVbp0+8CE+vVeW/+lpre6ocn36WAnDQJD6X5UGYde5oQeXGyjzj1/nMHBSsr+ifvuJRQ==", "dev": true, "requires": { "@wdio/logger": "7.19.0", - "@wdio/types": "7.19.5", + "@wdio/types": "7.25.0", "p-iteration": "^1.1.8" + }, + "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + } } }, "@xmldom/xmldom": { @@ -18126,6 +18696,12 @@ "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==", "dev": true }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, "at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", @@ -18147,12 +18723,13 @@ } }, "axios": { - "version": "0.24.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz", - "integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==", + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz", + "integrity": "sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==", "dev": true, "requires": { - "follow-redirects": "^1.14.4" + "follow-redirects": "^1.14.9", + "form-data": "^4.0.0" } }, "bail": { @@ -18275,13 +18852,13 @@ "boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, "bootstrap": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz", - "integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E=" + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz", + "integrity": "sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA==" }, "bootstrap-sass": { "version": "3.4.3", @@ -18290,9 +18867,9 @@ "dev": true }, "bootstrap-slider": { - "version": "10.6.2", - "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-10.6.2.tgz", - "integrity": "sha512-8JTPZB9QVOdrGzYF3YgC3YW6ssfPeBvBwZnXffiZ7YH/zz1D0EKlZvmQsm/w3N0XjVNYQEoQ0ax+jHrErV4K1Q==" + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-11.0.2.tgz", + "integrity": "sha512-CdwS+Z6X79OkLes9RfDgPB9UIY/+81wTkm6ktdSB6hdyiRbjJLFQIjZdnEr55tDyXZfgC7U6yeSXkNN9ZdGqjA==" }, "bowser": { "version": "1.0.0", @@ -18568,9 +19145,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001402", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz", - "integrity": "sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==", + "version": "1.0.30001427", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001427.tgz", + "integrity": "sha512-lfXQ73oB9c8DP5Suxaszm+Ta2sr/4tf8+381GkIm1MLj/YdLf+rEDyDSRCzeltuyTVGm+/s18gdZ0q+Wmp8VsQ==", "dev": true }, "chalk": { @@ -18637,9 +19214,9 @@ "dev": true }, "chrome-launcher": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.14.2.tgz", - "integrity": "sha512-Nk8DUCIfPR6p9WClPPFeP2ztpAdkT8xueoiDS03csea1uoJjm4w0p5Oy1hjykyjT1EQ0MMrEshLD3C8gHXyiZw==", + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", + "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", "dev": true, "requires": { "@types/node": "*", @@ -18649,16 +19226,16 @@ } }, "chromedriver": { - "version": "101.0.0", - "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-101.0.0.tgz", - "integrity": "sha512-LkkWxy6KM/0YdJS8qBeg5vfkTZTRamhBfOttb4oic4echDgWvCU1E8QcBbUBOHqZpSrYMyi7WMKmKMhXFUaZ+w==", + "version": "105.0.1", + "resolved": "https://registry.npmjs.org/chromedriver/-/chromedriver-105.0.1.tgz", + "integrity": "sha512-QqylH9mvl4Ybq3mmHsym7jeq/LhEi2sPtD8ffd9ixiDFdPRlh2F4vzrzK+myj1MiXb0TYJK7+OCcMEmsB3Sm/Q==", "dev": true, "requires": { - "@testim/chrome-version": "^1.1.2", - "axios": "^0.24.0", - "del": "^6.0.0", + "@testim/chrome-version": "^1.1.3", + "axios": "^0.27.2", + "del": "^6.1.1", "extract-zip": "^2.0.1", - "https-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.1", "proxy-from-env": "^1.1.0", "tcp-port-used": "^1.0.1" }, @@ -18861,9 +19438,9 @@ } }, "colord": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.2.tgz", - "integrity": "sha512-Uqbg+J445nc1TKn4FoDPS6ZZqAvEDnwrH42yo8B40JSOgSLxMZ/gt3h4nmCtPLQeXhjJJkqBx7SCY35WnIixaQ==", + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, "colorette": { @@ -18878,6 +19455,15 @@ "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", "dev": true }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, "commander": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-9.3.0.tgz", @@ -19083,9 +19669,9 @@ "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==" }, "css-declaration-sorter": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.2.2.tgz", - "integrity": "sha512-Ufadglr88ZLsrvS11gjeu/40Lw74D9Am/Jpr3LlYm5Q4ZP5KdlUhG+6u2EjyXeZcxmZ2h1ebCKngDjolpeLHpg==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", + "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", "dev": true, "requires": {} }, @@ -19145,47 +19731,47 @@ "dev": true }, "cssnano": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.7.tgz", - "integrity": "sha512-pVsUV6LcTXif7lvKKW9ZrmX+rGRzxkEdJuVJcp5ftUjWITgwam5LMZOgaTvUrWPkcORBey6he7JKb4XAJvrpKg==", + "version": "5.1.13", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.13.tgz", + "integrity": "sha512-S2SL2ekdEz6w6a2epXn4CmMKU4K3KpcyXLKfAYc9UQQqJRkD/2eLUG0vJ3Db/9OvO5GuAdgXw3pFbR6abqghDQ==", "dev": true, "requires": { - "cssnano-preset-default": "^5.2.7", + "cssnano-preset-default": "^5.2.12", "lilconfig": "^2.0.3", "yaml": "^1.10.2" } }, "cssnano-preset-default": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.7.tgz", - "integrity": "sha512-JiKP38ymZQK+zVKevphPzNSGHSlTI+AOwlasoSRtSVMUU285O7/6uZyd5NbW92ZHp41m0sSHe6JoZosakj63uA==", + "version": "5.2.12", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.12.tgz", + "integrity": "sha512-OyCBTZi+PXgylz9HAA5kHyoYhfGcYdwFmyaJzWnzxuGRtnMw/kR6ilW9XzlzlRAtB6PLT/r+prYgkef7hngFew==", "dev": true, "requires": { - "css-declaration-sorter": "^6.2.2", + "css-declaration-sorter": "^6.3.0", "cssnano-utils": "^3.1.0", "postcss-calc": "^8.2.3", "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.0", - "postcss-discard-comments": "^5.1.1", + "postcss-convert-values": "^5.1.2", + "postcss-discard-comments": "^5.1.2", "postcss-discard-duplicates": "^5.1.0", "postcss-discard-empty": "^5.1.1", "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.4", - "postcss-merge-rules": "^5.1.1", + "postcss-merge-longhand": "^5.1.6", + "postcss-merge-rules": "^5.1.2", "postcss-minify-font-values": "^5.1.0", "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.2", - "postcss-minify-selectors": "^5.2.0", + "postcss-minify-params": "^5.1.3", + "postcss-minify-selectors": "^5.2.1", "postcss-normalize-charset": "^5.1.0", "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.0", - "postcss-normalize-repeat-style": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", "postcss-normalize-string": "^5.1.0", "postcss-normalize-timing-functions": "^5.1.0", "postcss-normalize-unicode": "^5.1.0", "postcss-normalize-url": "^5.1.0", "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.1", + "postcss-ordered-values": "^5.1.3", "postcss-reduce-initial": "^5.1.0", "postcss-reduce-transforms": "^5.1.0", "postcss-svgo": "^5.1.0", @@ -19386,9 +19972,9 @@ } }, "del": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/del/-/del-6.0.0.tgz", - "integrity": "sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==", + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "dev": true, "requires": { "globby": "^11.0.1", @@ -19401,6 +19987,12 @@ "slash": "^3.0.0" } }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true + }, "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", @@ -19495,18 +20087,6 @@ "balanced-match": "^1.0.0" } }, - "chrome-launcher": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.1.tgz", - "integrity": "sha512-UugC8u59/w2AyX5sHLZUHoxBAiSiunUhZa3zZwMH6zPVis0C3dDKiRWyUGIo14tTbZHGVviWxv3PQWZ7taZ4fg==", - "dev": true, - "requires": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - } - }, "glob": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", @@ -19788,16 +20368,18 @@ } }, "es-abstract": { - "version": "1.19.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.5.tgz", - "integrity": "sha512-Aa2G2+Rd3b6kxEUKTF4TaW67czBLyAv3z7VOhYRU50YBx+bbsYZ9xQP4lMNazePuFlybXI0V4MruPos7qUo5fA==", + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz", + "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==", "requires": { "call-bind": "^1.0.2", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", - "get-intrinsic": "^1.1.1", + "function.prototype.name": "^1.1.5", + "get-intrinsic": "^1.1.2", "get-symbol-description": "^1.0.0", "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", "is-callable": "^1.2.4", @@ -19806,12 +20388,13 @@ "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", "is-weakref": "^1.0.2", - "object-inspect": "^1.12.0", + "object-inspect": "^1.12.2", "object-keys": "^1.1.1", - "object.assign": "^4.1.2", - "string.prototype.trimend": "^1.0.4", - "string.prototype.trimstart": "^1.0.4", - "unbox-primitive": "^1.0.1" + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "string.prototype.trimend": "^1.0.5", + "string.prototype.trimstart": "^1.0.5", + "unbox-primitive": "^1.0.2" } }, "es-to-primitive": { @@ -20588,6 +21171,17 @@ "for-in": "^1.0.1" } }, + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + }, "fraction.js": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", @@ -20639,11 +21233,27 @@ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" }, + "function.prototype.name": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", + "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.19.0", + "functions-have-names": "^1.2.2" + } + }, "functional-red-black-tree": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" + }, "gaze": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", @@ -20666,13 +21276,13 @@ "dev": true }, "get-intrinsic": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", - "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", + "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", "requires": { "function-bind": "^1.1.1", "has": "^1.0.3", - "has-symbols": "^1.0.1" + "has-symbols": "^1.0.3" } }, "get-stdin": { @@ -21502,7 +22112,7 @@ "immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", - "integrity": "sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", "dev": true }, "immutable": { @@ -21563,9 +22173,9 @@ "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, "inquirer": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz", - "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==", + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz", + "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==", "dev": true, "requires": { "ansi-escapes": "^4.2.1", @@ -21581,7 +22191,8 @@ "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" } }, "internal-slot": { @@ -22108,9 +22719,9 @@ "dev": true }, "jasmine-core": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.1.0.tgz", - "integrity": "sha512-8E8BiffCL8sBwK1zU9cbavLe8xpJAgOduSJ6N8PJVv8VosQ/nxVTuXj2kUeHxTlZBVvh24G19ga7xdiaxlceKg==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-4.4.0.tgz", + "integrity": "sha512-+l482uImx5BVd6brJYlaHe2UwfKoZBqQfNp20ZmdNfsjGFTemGfqHLsXjKEW23w9R/m8WYeFc9JmIgjj6dUtAA==", "dev": true }, "jasmine-expect": { @@ -22189,9 +22800,9 @@ } }, "jquery-ui": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.1.tgz", - "integrity": "sha512-2VlU59N5P4HaumDK1Z3XEVjSvegFbEOQRgpHUBaB2Ak98Axl3hFhJ6RFcNQNuk9SfL6WxIbuLst8dW/U56NSiA==", + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.13.2.tgz", + "integrity": "sha512-wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q==", "requires": { "jquery": ">=1.8.0 <4.0.0" } @@ -22289,15 +22900,15 @@ } }, "jszip": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.9.1.tgz", - "integrity": "sha512-H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw==", + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", "dev": true, "requires": { "lie": "~3.3.0", "pako": "~1.0.2", "readable-stream": "~2.3.6", - "set-immediate-shim": "~1.0.1" + "setimmediate": "^1.0.5" }, "dependencies": { "readable-stream": { @@ -22472,9 +23083,9 @@ } }, "karma-jasmine-html-reporter": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-1.7.0.tgz", - "integrity": "sha512-pzum1TL7j90DTE86eFt48/s12hqwQuiD+e5aXx2Dc9wDEn2LfGq6RoAxEZZjFiN0RDSCOnosEKRZWxbQ+iMpQQ==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/karma-jasmine-html-reporter/-/karma-jasmine-html-reporter-2.0.0.tgz", + "integrity": "sha512-SB8HNNiazAHXM1vGEzf8/tSyEhkfxuDdhYdPBX2Mwgzt0OuF2gicApQ+uvXLID/gXyJQgvrM9+1/2SxZFUUDIA==", "dev": true, "requires": {} }, @@ -23224,7 +23835,7 @@ "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, "lodash.merge": { @@ -23239,12 +23850,6 @@ "integrity": "sha1-feoh2MGNdwOifHBMFdO4SmfjOv8=", "dev": true }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", - "dev": true - }, "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", @@ -23260,7 +23865,7 @@ "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, "lodash.zip": { @@ -24065,9 +24670,9 @@ } }, "nth-check": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz", - "integrity": "sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "requires": { "boolbase": "^1.0.0" @@ -24090,9 +24695,9 @@ "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" }, "object-inspect": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz", - "integrity": "sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==" + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", + "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, "object-keys": { "version": "1.1.1", @@ -24100,13 +24705,13 @@ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" }, "object.assign": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", - "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", "requires": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3", - "has-symbols": "^1.0.1", + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", "object-keys": "^1.1.1" } }, @@ -24819,18 +25424,18 @@ } }, "postcss-cli": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-9.1.0.tgz", - "integrity": "sha512-zvDN2ADbWfza42sAnj+O2uUWyL0eRL1V+6giM2vi4SqTR3gTYy8XzcpfwccayF2szcUif0HMmXiEaDv9iEhcpw==", + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.0.0.tgz", + "integrity": "sha512-Wjy/00wBBEgQqnSToznxLWDnATznokFGXsHtF/3G8glRZpz5KYlfHcBW/VMJmWAeF2x49zjgy4izjM3/Wx1dKA==", "dev": true, "requires": { "chokidar": "^3.3.0", "dependency-graph": "^0.11.0", "fs-extra": "^10.0.0", "get-stdin": "^9.0.0", - "globby": "^12.0.0", + "globby": "^13.0.0", "picocolors": "^1.0.0", - "postcss-load-config": "^3.0.0", + "postcss-load-config": "^4.0.0", "postcss-reporter": "^7.0.0", "pretty-hrtime": "^1.0.3", "read-cache": "^1.0.0", @@ -24838,22 +25443,15 @@ "yargs": "^17.0.0" }, "dependencies": { - "array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", - "dev": true - }, "globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", + "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", "dev": true, "requires": { - "array-union": "^3.0.1", "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", + "fast-glob": "^3.2.11", + "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^4.0.0" } @@ -24879,11 +25477,12 @@ } }, "postcss-convert-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.0.tgz", - "integrity": "sha512-GkyPbZEYJiWtQB0KZ0X6qusqFHUepguBCNFi9t5JJc7I2OTXG7C0twbTLvCfaKOLl3rSXmpAwV7W5txd91V84g==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.2.tgz", + "integrity": "sha512-c6Hzc4GAv95B7suy4udszX9Zy4ETyMCgFPUDtWjdFTKH1SE9eFY/jEpHSwTH1QPuwxHpWslhckUQWbNRM4ho5g==", "dev": true, "requires": { + "browserslist": "^4.20.3", "postcss-value-parser": "^4.2.0" } }, @@ -24949,13 +25548,21 @@ } }, "postcss-load-config": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.4.tgz", - "integrity": "sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==", + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", "dev": true, "requires": { "lilconfig": "^2.0.5", - "yaml": "^1.10.2" + "yaml": "^2.1.1" + }, + "dependencies": { + "yaml": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.1.1.tgz", + "integrity": "sha512-o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw==", + "dev": true + } } }, "postcss-media-query-parser": { @@ -24965,9 +25572,9 @@ "dev": true }, "postcss-merge-longhand": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.4.tgz", - "integrity": "sha512-hbqRRqYfmXoGpzYKeW0/NCZhvNyQIlQeWVSao5iKWdyx7skLvCfQFGIUsP9NUs3dSbPac2IC4Go85/zG+7MlmA==", + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.6.tgz", + "integrity": "sha512-6C/UGF/3T5OE2CEbOuX7iNO63dnvqhGZeUnKkDeifebY0XqkkvrctYSZurpNE902LDf2yKwwPFgotnfSoPhQiw==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0", @@ -24975,9 +25582,9 @@ } }, "postcss-merge-rules": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.1.tgz", - "integrity": "sha512-8wv8q2cXjEuCcgpIB1Xx1pIy8/rhMPIQqYKNzEdyx37m6gpq83mQQdCxgIkFgliyEnKvdwJf/C61vN4tQDq4Ww==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.2.tgz", + "integrity": "sha512-zKMUlnw+zYCWoPN6yhPjtcEdlJaMUZ0WyVcxTAmw3lkkN/NDMRkOkiuctQEoWAOvH7twaxUUdvBWl0d4+hifRQ==", "dev": true, "requires": { "browserslist": "^4.16.6", @@ -25007,9 +25614,9 @@ } }, "postcss-minify-params": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.2.tgz", - "integrity": "sha512-aEP+p71S/urY48HWaRHasyx4WHQJyOYaKpQ6eXl8k0kxg66Wt/30VR6/woh8THgcpRbonJD5IeD+CzNhPi1L8g==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.3.tgz", + "integrity": "sha512-bkzpWcjykkqIujNL+EVEPOlLYi/eZ050oImVtHU7b4lFS82jPnsCb44gvC6pxaNt38Els3jWYDHTjHKf0koTgg==", "dev": true, "requires": { "browserslist": "^4.16.6", @@ -25018,9 +25625,9 @@ } }, "postcss-minify-selectors": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.0.tgz", - "integrity": "sha512-vYxvHkW+iULstA+ctVNx0VoRAR4THQQRkG77o0oa4/mBS0OzGvvzLIvHDv/nNEM0crzN2WIyFU5X7wZhaUK3RA==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", "dev": true, "requires": { "postcss-selector-parser": "^6.0.5" @@ -25043,18 +25650,18 @@ } }, "postcss-normalize-positions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.0.tgz", - "integrity": "sha512-8gmItgA4H5xiUxgN/3TVvXRoJxkAWLW6f/KKhdsH03atg0cB8ilXnrB5PpSshwVu/dD2ZsRFQcR1OEmSBDAgcQ==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" } }, "postcss-normalize-repeat-style": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.0.tgz", - "integrity": "sha512-IR3uBjc+7mcWGL6CtniKNQ4Rr5fTxwkaDHwMBDGGs1x9IVRkYIT/M4NelZWkAOBdV6v3Z9S46zqaKGlyzHSchw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", "dev": true, "requires": { "postcss-value-parser": "^4.2.0" @@ -25108,9 +25715,9 @@ } }, "postcss-ordered-values": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.1.tgz", - "integrity": "sha512-7lxgXF0NaoMIgyihL/2boNAEZKiW0+HkMhdKMTD93CjW8TdCy2hSdj8lsAo+uwm7EDG16Da2Jdmtqpedl0cMfw==", + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", "dev": true, "requires": { "cssnano-utils": "^3.1.0", @@ -25480,9 +26087,9 @@ "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=" }, "prettier": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.4.1.tgz", - "integrity": "sha512-9fbDAXSBcc6Bs1mZrDYb3XKzDLm4EXXL9sC1LqKP5rZkT6KRr/rf9amVUcODVXgguK/isJz0d0hP72WeaKWsvA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", + "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", "dev": true }, "pretty-bytes": { @@ -25614,23 +26221,22 @@ } }, "puppeteer": { - "version": "13.7.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.7.0.tgz", - "integrity": "sha512-U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA==", + "version": "18.0.5", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-18.0.5.tgz", + "integrity": "sha512-s4erjxU0VtKojPvF+KvLKG6OHUPw7gO2YV1dtOsoryyCbhrs444fXb4QZqGWuTv3V/rgSCUzeixxu34g0ZkSMA==", "dev": true, "requires": { "cross-fetch": "3.1.5", "debug": "4.3.4", - "devtools-protocol": "0.0.981744", + "devtools-protocol": "0.0.1036444", "extract-zip": "2.0.1", "https-proxy-agent": "5.0.1", - "pkg-dir": "4.2.0", "progress": "2.0.3", "proxy-from-env": "1.1.0", "rimraf": "3.0.2", "tar-fs": "2.1.1", "unbzip2-stream": "1.4.3", - "ws": "8.5.0" + "ws": "8.8.1" }, "dependencies": { "agent-base": { @@ -25642,6 +26248,12 @@ "debug": "4" } }, + "devtools-protocol": { + "version": "0.0.1036444", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1036444.tgz", + "integrity": "sha512-0y4f/T8H9lsESV9kKP1HDUXgHxCdniFeJh6Erq+FbdOEvp/Ydp9t8kcAAM5gOd17pMrTDlFWntoHtzzeTUWKNw==", + "dev": true + }, "https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -25651,6 +26263,13 @@ "agent-base": "6", "debug": "4" } + }, + "ws": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", + "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "dev": true, + "requires": {} } } }, @@ -25939,6 +26558,16 @@ } } }, + "regexp.prototype.flags": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", + "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "functions-have-names": "^1.2.2" + } + }, "regexpp": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", @@ -26005,9 +26634,9 @@ } }, "require-css": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/require-css/-/require-css-0.1.8.tgz", - "integrity": "sha1-8uhnu48fTaG3/ucbgZv6PCa5BO8=" + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/require-css/-/require-css-0.1.10.tgz", + "integrity": "sha512-v9XczgOfDKMkHdndAwuEDEasYNJPbL3aVDTM9tbRoAefjLm3kUZdt/Fg6Xi+0HJzliL21gGPWTXDV87XuOwCIQ==" }, "require-directory": { "version": "2.1.1", @@ -26237,9 +26866,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "sass": { - "version": "1.51.0", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.51.0.tgz", - "integrity": "sha512-haGdpTgywJTvHC2b91GSq+clTKGbtkkZmVAb82jZQN/wTy6qs8DdFm2lhEQbEwrY0QDRgSQ3xDurqM977C3noA==", + "version": "1.55.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz", + "integrity": "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==", "dev": true, "requires": { "chokidar": ">=3.0.0 <4.0.0", @@ -26258,9 +26887,9 @@ "integrity": "sha1-uUJuz8A79KI152oTI3dXQxBGmsA=" }, "selenium-standalone": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/selenium-standalone/-/selenium-standalone-8.1.1.tgz", - "integrity": "sha512-pTdDwZEr8285qaX8n1/6sa7dug7Hhj4LAS5WfR4v9DDfVvsuX2DQYGboJJ3RROGeG9aGHTpZMsdwJGnGsn5J8Q==", + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/selenium-standalone/-/selenium-standalone-8.2.0.tgz", + "integrity": "sha512-gRFJm2A91sL0/4PavIsfTVNjyqNjk+zbdJg/zAYgTMjuoWJv+BlYJh+1UbEtyjt4YvZACYif1DFAzFjQapqiOA==", "dev": true, "requires": { "commander": "^9.0.0", @@ -26280,14 +26909,14 @@ } }, "selenium-webdriver": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.1.2.tgz", - "integrity": "sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-4.4.0.tgz", + "integrity": "sha512-Du+/xfpvNi9zHAeYgXhOWN9yH0hph+cuX+hHDBr7d+SbtQVcfNJwBzLsbdHrB1Wh7MHXFuIkSG88A9TRRQUx3g==", "dev": true, "requires": { - "jszip": "^3.6.0", + "jszip": "^3.10.0", "tmp": "^0.2.1", - "ws": ">=7.4.6" + "ws": ">=8.7.0" }, "dependencies": { "tmp": { @@ -26298,6 +26927,13 @@ "requires": { "rimraf": "^3.0.0" } + }, + "ws": { + "version": "8.8.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz", + "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==", + "dev": true, + "requires": {} } } }, @@ -26333,15 +26969,15 @@ } }, "set-cookie-parser": { - "version": "2.4.8", - "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.4.8.tgz", - "integrity": "sha512-edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg==", + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.5.1.tgz", + "integrity": "sha512-1jeBGaKNGdEq4FgIrORu/N570dwoPYio8lSoYLWmX7sQ//0JY08Xh9o5pBcgmHQ/MbsYp/aZnOe1s1lIsbLprQ==", "dev": true }, - "set-immediate-shim": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz", - "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=", + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", "dev": true }, "setprototypeof": { @@ -28102,14 +28738,14 @@ "integrity": "sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==" }, "terser": { - "version": "5.13.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.13.1.tgz", - "integrity": "sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==", + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.0.tgz", + "integrity": "sha512-L1BJiXVmheAQQy+as0oF3Pwtlo4s3Wi1X2zNZ2NxOB4wx9bdS9Vk67XQENLFdLYGCK/Z2di53mTj/hBafR+dTA==", "dev": true, "requires": { + "@jridgewell/source-map": "^0.3.2", "acorn": "^8.5.0", "commander": "^2.20.0", - "source-map": "~0.8.0-beta.0", "source-map-support": "~0.5.20" }, "dependencies": { @@ -28118,41 +28754,6 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true - }, - "source-map": { - "version": "0.8.0-beta.0", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz", - "integrity": "sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==", - "dev": true, - "requires": { - "whatwg-url": "^7.0.0" - } - }, - "tr46": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", - "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "webidl-conversions": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", - "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", - "dev": true - }, - "whatwg-url": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz", - "integrity": "sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==", - "dev": true, - "requires": { - "lodash.sortby": "^4.7.0", - "tr46": "^1.0.1", - "webidl-conversions": "^4.0.2" - } } } }, @@ -28376,9 +28977,9 @@ "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==" }, "underscore": { - "version": "1.13.3", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.3.tgz", - "integrity": "sha512-QvjkYpiD+dJJraRA8+dGAU4i7aBbb2s0S3jA45TFOvg2VgqvdCDd/3N6CqA8gluk1W91GLoXg5enMUx560QzuA==" + "version": "1.13.6", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.6.tgz", + "integrity": "sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==" }, "underscore.string": { "version": "3.3.6", @@ -28647,20 +29248,82 @@ } }, "webdriver": { - "version": "7.19.5", - "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-7.19.5.tgz", - "integrity": "sha512-kdOC6w2LSZO2zQ+sNQjHRP4CVQzo1C+g2EDz7g3czOQv2Oo8WqkVlMT9hIBiMLHQfh896gFh776GUCDnEd9emg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/webdriver/-/webdriver-7.25.0.tgz", + "integrity": "sha512-fYsxVMHpYAXecJP1m+fqC3BSKrWS3fcCiI120NRnZrZ52vcodpiJSuOAedKIXegQZlzl77U4VWeSHiY1f6Iseg==", "dev": true, "requires": { - "@types/node": "^17.0.4", - "@wdio/config": "7.19.5", + "@types/node": "^18.0.0", + "@wdio/config": "7.25.0", "@wdio/logger": "7.19.0", - "@wdio/protocols": "7.19.0", - "@wdio/types": "7.19.5", - "@wdio/utils": "7.19.5", + "@wdio/protocols": "7.22.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", "got": "^11.0.2", - "ky": "^0.30.0", + "ky": "0.30.0", "lodash.merge": "^4.6.1" + }, + "dependencies": { + "@types/node": { + "version": "18.7.22", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.22.tgz", + "integrity": "sha512-TsmoXYd4zrkkKjJB0URF/mTIKPl+kVcbqClB2F/ykU7vil1BfWZVndOnpEIozPv4fURD28gyPFeIkW2G+KXOvw==", + "dev": true + }, + "@wdio/config": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/config/-/config-7.25.0.tgz", + "integrity": "sha512-fttJIPu9x2H9sz6g7GsDNx0LH6S3EyXUjrk3nUz+ccwgnXtq3E3WyGgBdZsAObItvvplLNM5nSdtWNZSW0+Dzw==", + "dev": true, + "requires": { + "@wdio/logger": "7.19.0", + "@wdio/types": "7.25.0", + "@wdio/utils": "7.25.0", + "deepmerge": "^4.0.0", + "glob": "^8.0.3" + } + }, + "@wdio/types": { + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@wdio/types/-/types-7.25.0.tgz", + "integrity": "sha512-BET/5UZSobAiBSbpWlUzcdjU1WszuUhaGBY7Pj4aAZjlvEeU5ZW5q2/655kxAvFhqHZ4AFEgd6NXg8krOEkXaA==", + "dev": true, + "requires": { + "@types/node": "^18.0.0", + "got": "^11.8.1" + } + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "glob": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", + "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + } + }, + "minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + } } }, "webdriverio": { diff --git a/package.json b/package.json index fd9258c02c..64dc4e864d 100644 --- a/package.json +++ b/package.json @@ -1,24 +1,24 @@ { "name": "kbase-narrative-core", "description": "Core components for the KBase Narrative Interface", - "version": "5.1.2", + "version": "5.1.3", "private": true, "repository": "github.com/kbase/narrative", "devDependencies": { "@lodder/grunt-postcss": "^3.0.1", "@types/puppeteer": "5.4.4", "@wdio/browserstack-service": "^7.19.7", - "@wdio/cli": "^7.19.6", - "@wdio/local-runner": "^7.19.3", + "@wdio/cli": "7.25.0", + "@wdio/local-runner": "7.25.0", "@wdio/mocha-framework": "^7.20.0", "@wdio/selenium-standalone-service": "^7.19.1", - "@wdio/spec-reporter": "^7.19.1", + "@wdio/spec-reporter": "7.25.0", "autoprefixer": "^10.4.5", "bootstrap-sass": "^3.4.1", - "chrome-launcher": "^0.14.0", - "chromedriver": "^101.0.0", + "chrome-launcher": "0.15.1", + "chromedriver": "^105.0.0", "commander": "^9.3.0", - "cssnano": "^5.0.6", + "cssnano": "5.1.13", "ejs": "^3.1.7", "eslint": "^8.16.0", "eslint-config-prettier": "^8.3.0", @@ -34,7 +34,7 @@ "grunt-stylelint": "^0.16.0", "husky": "^7.0.2", "jasmine-ajax": "^4.0.0", - "jasmine-core": "^4.1.0", + "jasmine-core": "^4.3.0", "jasmine-jquery": "^2.1.1", "karma": "^6.3.16", "karma-brief-reporter": "^0.2.1", @@ -43,7 +43,7 @@ "karma-es6-shim": "^1.0.0", "karma-firefox-launcher": "^2.1.1", "karma-jasmine": "^5.0.1", - "karma-jasmine-html-reporter": "^1.7.0", + "karma-jasmine-html-reporter": "2.0.0", "karma-jasmine-matchers": "^5.0.0", "karma-json-result-reporter": "^1.0.0", "karma-mocha-reporter": "^2.2.5", @@ -53,17 +53,17 @@ "load-grunt-tasks": "^5.1.0", "msw": "0.35.0", "postcss": "^8.3.2", - "postcss-cli": "^9.1.0", + "postcss-cli": "10.0.0", "postcss-discard-comments": "^5.1.2", "postcss-remove-prefixes": "^1.2.0", "postcss-scss": "^4.0.4", "postcss-unprefix": "^2.1.4", - "prettier": "2.4.1", - "puppeteer": "^13.5.1", + "prettier": "2.7.1", + "puppeteer": "18.0.5", "requirejs": "2.3.6", - "sass": "^1.51.0", - "selenium-standalone": "^8.0.10", - "selenium-webdriver": "4.1.2", + "sass": "1.55.0", + "selenium-standalone": "8.2.0", + "selenium-webdriver": "4.4.0", "string-template": "^1.0.0", "string.prototype.endswith": "1.0.0", "string.prototype.startswith": "1.0.0", @@ -72,10 +72,48 @@ "stylelint-config-recommended": "^5.0.0", "stylelint-config-sass-guidelines": "^8.0.0", "stylelint-config-standard": "^22.0.0", - "terser": "^5.7.2", + "terser": "5.15.0", "wdio-chromedriver-service": "^7.3.2", "webdriverio": "^7.19.7" }, + "dependencies": { + "bluebird": "3.7.2", + "bootstrap": "3.4.1", + "bootstrap-slider": "11.0.2", + "bowser": "1.0.0", + "corejs-typeahead": "^1.3.1", + "d3": "3.5.6", + "datatables.net": "^1.12.1", + "datatables.net-bs": "^1.12.1", + "datatables.net-buttons-bs": "2.2.3", + "dropzone": "5.7.0", + "file-saver": "1.3.4", + "font-awesome": "4.7.0", + "google-code-prettify": "1.0.5", + "handlebars": "^4.7.7", + "jquery": "2.2.4", + "jquery-nearest": "1.4.0", + "jquery-ui": "^1.13.2", + "jquery.tipsy": "1.0.3", + "js-yaml": "3.14.1", + "kbase-common-js": "https://github.com/kbase/kbase-common-js/archive/refs/tags/v2.16.0.tar.gz", + "kbase-sdk-clients-js": "https://github.com/eapearson/kbase-sdk-clients-js/archive/refs/tags/v0.5.1.tar.gz", + "kbase-service-clients-js": "https://github.com/kbase/kbase-service-clients-js/archive/refs/tags/v3.3.4.tar.gz", + "kbase-ui-plugin-catalog": "https://github.com/kbase/kbase-ui-plugin-catalog/archive/refs/tags/v2.2.5.tar.gz", + "numeral": "1.5.0", + "plotly.js-dist-min": "1.50.0", + "pure-uuid": "1.6.2", + "require-css": "0.1.10", + "require-yaml": "github:m90/require-yaml", + "requirejs-domready": "2.0.1", + "requirejs-json": "0.0.3", + "requirejs-plugins": "1.0.2", + "select2": "4.0.13", + "select2-bootstrap-theme": "0.1.0-beta.10", + "spark-md5": "3.0.2", + "text": "github:requirejs/text", + "underscore": "1.13.6" + }, "browserslist": [ "defaults" ], @@ -124,43 +162,5 @@ "*.{scss,css,css.map}": [ "npm run compile_css_files" ] - }, - "dependencies": { - "bluebird": "3.7.2", - "bootstrap": "3.3.7", - "bootstrap-slider": "10.6.2", - "bowser": "1.0.0", - "corejs-typeahead": "^1.3.1", - "d3": "3.5.6", - "datatables.net": "^1.12.1", - "datatables.net-bs": "^1.12.1", - "datatables.net-buttons-bs": "2.2.3", - "dropzone": "5.7.0", - "file-saver": "1.3.4", - "font-awesome": "4.7.0", - "google-code-prettify": "1.0.5", - "handlebars": "^4.7.7", - "jquery": "2.2.4", - "jquery-nearest": "1.4.0", - "jquery-ui": "^1.13.1", - "jquery.tipsy": "1.0.3", - "js-yaml": "3.14.1", - "kbase-common-js": "https://github.com/kbase/kbase-common-js/archive/refs/tags/v2.16.0.tar.gz", - "kbase-sdk-clients-js": "https://github.com/eapearson/kbase-sdk-clients-js/archive/refs/tags/v0.5.1.tar.gz", - "kbase-service-clients-js": "https://github.com/kbase/kbase-service-clients-js/archive/refs/tags/v3.3.4.tar.gz", - "kbase-ui-plugin-catalog": "https://github.com/kbase/kbase-ui-plugin-catalog/archive/refs/tags/v2.2.5.tar.gz", - "numeral": "1.5.0", - "plotly.js-dist-min": "1.50.0", - "pure-uuid": "1.6.2", - "require-css": "0.1.8", - "require-yaml": "github:m90/require-yaml", - "requirejs-domready": "2.0.1", - "requirejs-json": "0.0.3", - "requirejs-plugins": "1.0.2", - "select2": "4.0.13", - "select2-bootstrap-theme": "0.1.0-beta.10", - "spark-md5": "3.0.2", - "text": "github:requirejs/text", - "underscore": "^1.13.3" } } diff --git a/scripts/install_narrative.sh b/scripts/install_narrative.sh index f552d29a3a..8d164ea33f 100755 --- a/scripts/install_narrative.sh +++ b/scripts/install_narrative.sh @@ -37,8 +37,8 @@ # # 8. Done! -IPYTHON_VERSION=8.4.0 -NOTEBOOK_VERSION=6.4.11 +IPYTHON_VERSION=8.5.0 +NOTEBOOK_VERSION=6.4.12 IPYWIDGETS_VERSION=7.6.3 SCRIPT_TGT="kbase-narrative" @@ -87,10 +87,6 @@ done console "Install: complete log in: $logfile" -# TODO - -# Test for conda, fail otherwise -# Test for Python >= 3.5 or so (not sure which) - if [ ! $update_only -eq 1 ] then # Install external JavaScript code @@ -125,7 +121,7 @@ then fi # Install sklearn and clustergrammer - # ------------------------------ + # ---------------------------------- pip --no-cache-dir install pandas sklearn clustergrammer_widget | tee -a "${logfile}" if [ $? -ne 0 ]; then console "pip install for biokbase requirements failed: please examine $logfile" diff --git a/scripts/local-dev-run.sh b/scripts/local-dev-run.sh index e80c614644..f538f8e6c5 100644 --- a/scripts/local-dev-run.sh +++ b/scripts/local-dev-run.sh @@ -1,14 +1,27 @@ root=$(git rev-parse --show-toplevel) -kbase_dir=kbase-extension +# Most of KBase javascript source; directory structure does not allow +# mounting all of it because npm dependencies are installed within static. +# Best would be one parent directory for KBase JS, one for all installed. +# Note that if you want to fiddle with dependencies locally w/in the image +# you can add a --mount of the entirety of kbase-extension +kbase_dir=kbase-extension/static/kbase src_dir=src test_dir=test ext_components_dir=kbase-extension/static/ext_components nbextension_dir=nbextensions container_root=/kb/dev_container/narrative/ + +# +# We need the ENV to pass in to the Narrative for selecting the config. +# if [ -z "$ENV" ]; then echo "The 'ENV' environment variable is required, set to either ci, next, appdev, or prod" exit 1 fi + +# +# This port is exposed on the host. +# if [ -z "$PORT" ]; then PORT=8888 fi diff --git a/src/biokbase/narrative/__init__.py b/src/biokbase/narrative/__init__.py index 6a76eb851b..e8d88e5b4a 100644 --- a/src/biokbase/narrative/__init__.py +++ b/src/biokbase/narrative/__init__.py @@ -1,8 +1,5 @@ __all__ = ["magics", "common", "handlers", "contents", "services", "widgetmanager"] - -from semantic_version import Version - -__version__ = Version("5.1.2") +__version__ = "5.1.3" def version(): diff --git a/src/config.json b/src/config.json index a6850bf206..245147a066 100644 --- a/src/config.json +++ b/src/config.json @@ -391,5 +391,5 @@ "globus_upload_url": "https://app.globus.org/file-manager?destination_id=c3c0a65f-5827-4834-b6c9-388b0b19953a" }, "use_local_widgets": true, - "version": "5.1.2" + "version": "5.1.3" } diff --git a/src/config.json.templ b/src/config.json.templ index 0f96eebf72..a808e32f71 100644 --- a/src/config.json.templ +++ b/src/config.json.templ @@ -391,5 +391,5 @@ "globus_upload_url": "https://app.globus.org/file-manager?destination_id=c3c0a65f-5827-4834-b6c9-388b0b19953a" }, "use_local_widgets": true, - "version": "5.1.2" + "version": "5.1.3" } diff --git a/src/requirements-no-deps.txt b/src/requirements-no-deps.txt deleted file mode 100644 index 0c62c11b42..0000000000 --- a/src/requirements-no-deps.txt +++ /dev/null @@ -1 +0,0 @@ -sklearn diff --git a/src/requirements.txt b/src/requirements.txt index 0fb51c3313..d3e4742600 100644 --- a/src/requirements.txt +++ b/src/requirements.txt @@ -1,27 +1,25 @@ +# Other Python modules installed locally by the local installation script: +# pandas +# sklearn +# clustergrammer_widget beautifulsoup4==4.11.1 -black>=20.8b1 -bokeh==2.3.3 -chart_studio==1.1.0 -coverage==6.2 -cryptography==37.0.4 +black==22.8.0 +coverage==6.4.4 +cryptography==38.0.1 decorator==5.1.1 -flake8>=3.8.4 +flake8==3.8.4 html5lib==1.1 idna==3.3 -jinja2==3.0.3 +jinja2==3.1.2 jupyter-console==6.4.3 markupsafe==2.0.1 ndg-httpsclient==0.5.1 -pillow==8.4.0 -plotly==5.9.0 -pygments==2.12.0 +pygments==2.13.0 pymongo==4.1.0 pyopenssl==22.0.0 pytest==7.0.1 pytest-cov==3.0.0 -requests==2.27.1 +requests==2.28.1 rsa==4.9 -semantic_version==2.10.0 -sympy==1.9 terminado==0.12.1 # ensure pip installs all deps diff --git a/test/unit/karma.conf.js b/test/unit/karma.conf.js index a46c5b9626..96d2f94a31 100644 --- a/test/unit/karma.conf.js +++ b/test/unit/karma.conf.js @@ -1,7 +1,7 @@ module.exports = function (config) { 'use strict'; - const narrativeServer = 'http://localhost:32323'; + const narrativeServer = process.env.NARRATIVE_SERVER_URL || 'http://localhost:32323'; const alwaysExclude = [ 'kbase-extension/static/buildTools/*.js', @@ -60,6 +60,7 @@ module.exports = function (config) { // tests and test resources { pattern: 'test/unit/testUtil.js', nocache: true }, { pattern: 'test/unit/mocks.js', nocache: true }, + { pattern: 'test/unit/utils/*.js', included: false, nocache: true }, { pattern: 'test/unit/test-main.js', nocache: true }, { pattern: 'test/unit/spec/**/*.js', included: false, nocache: true }, { pattern: 'test/unit/spec/**/*.json', included: false, nocache: true }, @@ -135,6 +136,11 @@ module.exports = function (config) { // start these browsers // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher browsers: ['ChromeHeadless'], + // enable the following setting to prevent source code log entries from cluttering up + // test output. + // browserConsoleLogOptions: { + // level: 'disable' + // }, browserNoActivityTimeout: 30000, singleRun: true, proxies: { @@ -143,6 +149,8 @@ module.exports = function (config) { '/narrative/static/': '/base/kbase-extension/static/', '/narrative/static/base': `${narrativeServer}/narrative/static/base`, '/narrative/static/notebook': `${narrativeServer}/narrative/static/notebook`, + '/narrative/static/ext_modules': `${narrativeServer}/narrative/static/ext_modules`, + '/narrative/static/ext_components': `${narrativeServer}/narrative/static/ext_components`, '/narrative/static/components': `${narrativeServer}/narrative/static/components`, '/narrative/static/services': `${narrativeServer}/narrative/static/services`, '/narrative/static/bidi': `${narrativeServer}/narrative/static/bidi`, diff --git a/test/unit/karma.local.conf.js b/test/unit/karma.local.conf.js index f49670fa12..90c927e02a 100644 --- a/test/unit/karma.local.conf.js +++ b/test/unit/karma.local.conf.js @@ -9,7 +9,28 @@ module.exports = function (config) { }); config.preprocessors = {}; config.reporters = ['kjhtml', 'brief']; - config.exclude = config.exclude.filter((file) => { - return file.indexOf('test/unit/spec/') === -1; - }); + config.exclude = config.exclude + .filter((file) => { + return file.indexOf('test/unit/spec/') === -1; + }) + .concat([ + // To isolate groups of tests, uncomment ALL of the + // exclude filters below, and comment the group you + // want to test. + // + // 'test/unit/spec/*.js', + // 'test/unit/spec/api/**/*', + // 'test/unit/spec/appWidgets/**/*', + // 'test/unit/spec/common/**/*', + // 'test/unit/spec/function_output/*.js', + // 'test/unit/spec/function_output/kbaseSampleSet/**/*', + // 'test/unit/spec/function_output/modeling/**/*', + // 'test/unit/spec/function_output/rna-seq/**/*', + // 'test/unit/spec/jsonrpc/**/*', + // 'test/unit/spec/narrative_core/**/*', + // 'test/unit/spec/nbextensions/**/*', + // 'test/unit/spec/util/**/*', + // 'test/unit/spec/vis/**/*', + // 'test/unit/spec/widgets/**/*' + ]); }; diff --git a/test/unit/spec/common/html-Spec.js b/test/unit/spec/common/html-Spec.js index d0972cad26..3e08a01103 100644 --- a/test/unit/spec/common/html-Spec.js +++ b/test/unit/spec/common/html-Spec.js @@ -166,6 +166,17 @@ define(['common/html', 'testUtil'], (html, TestUtil) => { ); }); + it('Creates a tag with properly escaped attribute values', () => { + const div = html.tag('div'); + const value = + '"This is a very "strange" value with of thingies <=> <= => in it'; + const escapedValue = + '"This is a very "strange" value with <lots> of <tag> thingies <=> <= => in it'; + expect(div({ attribute: value }, 'hello')).toEqual( + `
hello
` + ); + }); + it('Creates a tag with empty attributes', () => { const div = html.tag('div'); expect(div({}, 'hello')).toEqual('
hello
'); diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation-spec.js b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation-spec.js deleted file mode 100644 index 2b5e72fd61..0000000000 --- a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation-spec.js +++ /dev/null @@ -1,8 +0,0 @@ -define(['kbaseExpressionPairwiseCorrelation'], (Widget) => { - 'use strict'; - describe('The kbaseExpressionPairwiseCorrelation widget', () => { - it('should be defined', () => { - expect(Widget).toBeDefined(); - }); - }); -}); diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.request.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.request.json new file mode 100644 index 0000000000..e4b91580ff --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.request.json @@ -0,0 +1,22 @@ +{ + "input_data": "eapearson:narrative_1626270955005/SomeFakeData", + "row_ids": [ + "b2577", + "b2783", + "b3240", + "b3264", + "b3685", + "b3719", + "b3770", + "b3771", + "b3772", + "b3773", + "b3856", + "b4012", + "b4013", + "b4016", + "b4480" + ], + "fl_row_pairwise_correlation": 1, + "fl_row_set_stats": 1 +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.response.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.response.json new file mode 100644 index 0000000000..0c7ddcff94 --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/KBaseFeatureValues.get_submatrix_stat.response.json @@ -0,0 +1,578 @@ +{ + "mtx_descriptor": { + "matrix_id": "SomeFakeData", + "matrix_name": "SomeFakeData", + "genome_id": "NC_000913", + "genome_name": "Escherichia coli str. K-12 substr. MG1655", + "rows_count": 4297, + "columns_count": 16, + "scale": "1.0", + "type": "log-ratio" + }, + "row_descriptors": [ + { + "index": 3471, + "id": "b2577", + "name": "yfiE; NP_417072.4", + "description": "", + "properties": { + "function": "putative transcriptional regulator LYSR-type" + } + }, + { + "index": 317, + "id": "b2783", + "name": "mazE; NP_417263.1", + "description": "", + "properties": { + "function": "suppressor of inhibitory function of ChpA, PemI-like, autoregulated" + } + }, + { + "index": 2, + "id": "b3240", + "name": "aaeB; NP_417707.1", + "description": "", + "properties": { + "function": "p-hydroxybenzoic acid efflux system component" + } + }, + { + "index": 607, + "id": "b3264", + "name": "acrS; NP_417730.1", + "description": "", + "properties": { + "function": "putative transcriptional regulator" + } + }, + { + "index": 3790, + "id": "b3685", + "name": "yidE; NP_418140.4", + "description": "", + "properties": { + "function": "putative transport protein" + } + }, + { + "index": 3808, + "id": "b3719", + "name": "yieL; NP_418175.3", + "description": "", + "properties": { + "function": "putative xylanase" + } + }, + { + "index": 1191, + "id": "b3770", + "name": "ilvE; YP_026247.1", + "description": "", + "properties": { + "function": "branched-chain amino acid aminotransferase" + } + }, + { + "index": 1190, + "id": "b3771", + "name": "ilvD; YP_026248.1", + "description": "", + "properties": { + "function": "dihydroxyacid dehydratase" + } + }, + { + "index": 1187, + "id": "b3772", + "name": "ilvA; NP_418220.1", + "description": "", + "properties": { + "function": "threonine deaminase (dehydratase)" + } + }, + { + "index": 1198, + "id": "b3773", + "name": "ilvY; NP_418221.1", + "description": "", + "properties": { + "function": "positive regulator for ilvC" + } + }, + { + "index": 1504, + "id": "b3856", + "name": "mobB; NP_418293.2", + "description": "", + "properties": { + "function": "molybdopterin-guanine dinucleotide biosynthesis protein B" + } + }, + { + "index": 3860, + "id": "b4012", + "name": "yjaB; NP_418436.1", + "description": "", + "properties": { + "function": "GNAT-family putative N-acetyltransferase; acetyl coenzyme A-binding protein" + } + }, + { + "index": 1441, + "id": "b4013", + "name": "metA; NP_418437.1", + "description": "", + "properties": { + "function": "homoserine O-transsuccinylase" + } + }, + { + "index": 20, + "id": "b4016", + "name": "aceK; NP_418440.1", + "description": "", + "properties": { + "function": "isocitrate dehydrogenase kinase/phosphatase" + } + }, + { + "index": 1042, + "id": "b4480", + "name": "hdfR; YP_026246.1", + "description": "", + "properties": { + "function": "transcriptional regulator of the flhDC operon" + } + } + ], + "column_descriptors": [ + { + "index": 0, + "id": "dinI_U_N0025_r1", + "name": "dinI_U_N0025_r1", + "description": "" + }, + { + "index": 1, + "id": "dinP_U_N0025_r1", + "name": "dinP_U_N0025_r1", + "description": "" + }, + { + "index": 2, + "id": "lexA_U_N0025_r1", + "name": "lexA_U_N0025_r1", + "description": "" + }, + { + "index": 3, + "id": "lon_U_N0025_r1", + "name": "lon_U_N0025_r1", + "description": "" + }, + { + "index": 4, + "id": "luc_U_N0025_r1", + "name": "luc_U_N0025_r1", + "description": "" + }, + { + "index": 5, + "id": "mazF_U_N0025_r1", + "name": "mazF_U_N0025_r1", + "description": "" + }, + { + "index": 6, + "id": "recA_U_N0025_r1", + "name": "recA_U_N0025_r1", + "description": "" + }, + { + "index": 7, + "id": "relA_U_N0025_r1", + "name": "relA_U_N0025_r1", + "description": "" + }, + { + "index": 8, + "id": "ruvA_U_N0025_r1", + "name": "ruvA_U_N0025_r1", + "description": "" + }, + { + "index": 9, + "id": "sulA_U_N0025_r1", + "name": "sulA_U_N0025_r1", + "description": "" + }, + { + "index": 10, + "id": "umuD_U_N0025_r1", + "name": "umuD_U_N0025_r1", + "description": "" + }, + { + "index": 11, + "id": "uvrA_U_N0025_r1", + "name": "uvrA_U_N0025_r1", + "description": "" + }, + { + "index": 12, + "id": "yebF_U_N0075_r1", + "name": "yebF_U_N0075_r1", + "description": "" + }, + { + "index": 13, + "id": "luc_U_N0075_r1", + "name": "luc_U_N0075_r1", + "description": "" + }, + { + "index": 14, + "id": "zipA_U_N0075_r1", + "name": "zipA_U_N0075_r1", + "description": "" + }, + { + "index": 15, + "id": "luc_U_N0000_r1", + "name": "luc_U_N0000_r1", + "description": "" + } + ], + "row_set_stats": { + "size": 15, + "avgs": [ + 7.965988749999999, + 9.82917625, + 7.286126250000001, + 5.254217499999999, + 8.661893749999999, + 7.4318550000000005, + 9.420829374999999, + 9.005433749999998, + 8.52346625, + 9.257608125000003, + 8.465367500000001, + 8.199311250000001, + 7.650228124999999, + 7.8894006249999995, + 7.9328675 + ], + "mins": [ + 7.58978, + 9.48039, + 7.10019, + 4.91117, + 8.14978, + 7.23288, + 9.10786, + 8.6889, + 8.04549, + 8.98882, + 8.09435, + 7.91399, + 7.22429, + 7.37685, + 7.68091 + ], + "maxs": [ + 8.3333, + 11.3225, + 7.52368, + 5.93069, + 9.21615, + 7.84092, + 10.0325, + 9.87766, + 9.52762, + 9.54846, + 9.25855, + 8.86664, + 9.61267, + 8.59386, + 8.48711 + ], + "stds": [ + 0.1909051983533535, + 0.4290931937139841, + 0.11390133290850171, + 0.3013492112151615, + 0.29390294701652786, + 0.1594826755899628, + 0.24199795595469414, + 0.3007836838853908, + 0.4365958212943258, + 0.1723090497611294, + 0.30764217143731537, + 0.26749713059831753, + 0.5615652522989499, + 0.38856487966994196, + 0.21246876446511687 + ], + "missing_values": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "row_pairwise_correlation": { + "comparison_values": [ + [ + 1.0, + 0.6018429361382868, + 0.29904770920981405, + 0.46980581631266116, + 0.5387801214903442, + 0.47658736405622587, + 0.32000963538728433, + 0.4479140130277746, + 0.4000589915166305, + 0.4561500412935423, + 0.5290339213967058, + 0.5723667129436993, + 0.5655030385804087, + 0.3702247501389539, + 0.708571074262316 + ], + [ + 0.6018429361382868, + 1.0, + 0.5561549843550488, + 0.650934110319146, + 0.673919824281657, + 0.5315787150313852, + 0.7527989439550824, + 0.86078680953388, + 0.7717892073902702, + 0.6501145951681541, + 0.4900454893783157, + 0.5988962278046348, + 0.9655902300706546, + 0.651151220253155, + 0.8338567938441126 + ], + [ + 0.29904770920981405, + 0.5561549843550488, + 1.0, + 0.681474112190119, + 0.5306533463209009, + 0.6569615651487016, + 0.8059266964925361, + 0.7325315388939992, + 0.7421727410979497, + 0.5225466529189772, + 0.5214492294353774, + 0.6186955345760032, + 0.6940627631920074, + 0.739325101866303, + 0.5896521889414131 + ], + [ + 0.46980581631266116, + 0.650934110319146, + 0.681474112190119, + 1.0, + 0.8468908413340549, + 0.8505137833248657, + 0.7838887321753953, + 0.7429420110063414, + 0.8474922274861435, + 0.8453568865989507, + 0.904005248695589, + 0.9160698130130819, + 0.7261166283348682, + 0.7952783727947108, + 0.7745193914420165 + ], + [ + 0.5387801214903442, + 0.673919824281657, + 0.5306533463209009, + 0.8468908413340549, + 1.0, + 0.79077619661794, + 0.7419261278211566, + 0.7563563045496577, + 0.7859878187500132, + 0.9364051030924977, + 0.8838949830892893, + 0.8752102393157168, + 0.7337779453442035, + 0.7565704198417222, + 0.8327506000989965 + ], + [ + 0.47658736405622587, + 0.5315787150313852, + 0.6569615651487016, + 0.8505137833248657, + 0.79077619661794, + 1.0, + 0.7377781999174864, + 0.7637376525738111, + 0.8473384483262808, + 0.7532347093494044, + 0.8335365513281722, + 0.8839042654336433, + 0.6165885280133098, + 0.8663430115910818, + 0.6557462342141327 + ], + [ + 0.32000963538728433, + 0.7527989439550824, + 0.8059266964925361, + 0.7838887321753953, + 0.7419261278211566, + 0.7377781999174864, + 1.0, + 0.9295626396162263, + 0.9002811465217788, + 0.7892279129468772, + 0.635836390956183, + 0.7583006738547735, + 0.8148612969641271, + 0.7767183313271234, + 0.653125413889168 + ], + [ + 0.4479140130277746, + 0.86078680953388, + 0.7325315388939992, + 0.7429420110063414, + 0.7563563045496577, + 0.7637376525738111, + 0.9295626396162263, + 1.0, + 0.9468222244168536, + 0.77428401767522, + 0.6393903705645138, + 0.7641576931536185, + 0.8859269655753559, + 0.8548393071343574, + 0.7007371345032092 + ], + [ + 0.4000589915166305, + 0.7717892073902702, + 0.7421727410979497, + 0.8474922274861435, + 0.7859878187500132, + 0.8473384483262808, + 0.9002811465217788, + 0.9468222244168536, + 1.0, + 0.7984481182294477, + 0.7562896850220264, + 0.8650099235849553, + 0.8064812744529402, + 0.9368932472524163, + 0.7055133658676277 + ], + [ + 0.4561500412935423, + 0.6501145951681541, + 0.5225466529189772, + 0.8453568865989507, + 0.9364051030924977, + 0.7532347093494044, + 0.7892279129468772, + 0.77428401767522, + 0.7984481182294477, + 1.0, + 0.8707797519457617, + 0.8817213994787809, + 0.6779658386318619, + 0.7637218331314857, + 0.7480672434374122 + ], + [ + 0.5290339213967058, + 0.4900454893783157, + 0.5214492294353774, + 0.904005248695589, + 0.8838949830892893, + 0.8335365513281722, + 0.635836390956183, + 0.6393903705645138, + 0.7562896850220264, + 0.8707797519457617, + 1.0, + 0.9440189662075849, + 0.5652188691439768, + 0.7716465971273988, + 0.7098147193268579 + ], + [ + 0.5723667129436993, + 0.5988962278046348, + 0.6186955345760032, + 0.9160698130130819, + 0.8752102393157168, + 0.8839042654336433, + 0.7583006738547735, + 0.7641576931536185, + 0.8650099235849553, + 0.8817213994787809, + 0.9440189662075849, + 1.0, + 0.6432019553299185, + 0.8649173651566664, + 0.7400066514058525 + ], + [ + 0.5655030385804087, + 0.9655902300706546, + 0.6940627631920074, + 0.7261166283348682, + 0.7337779453442035, + 0.6165885280133098, + 0.8148612969641271, + 0.8859269655753559, + 0.8064812744529402, + 0.6779658386318619, + 0.5652188691439768, + 0.6432019553299185, + 1.0, + 0.703629677305293, + 0.848434871520189 + ], + [ + 0.3702247501389539, + 0.651151220253155, + 0.739325101866303, + 0.7952783727947108, + 0.7565704198417222, + 0.8663430115910818, + 0.7767183313271234, + 0.8548393071343574, + 0.9368932472524163, + 0.7637218331314857, + 0.7716465971273988, + 0.8649173651566664, + 0.703629677305293, + 1.0, + 0.6901809268249964 + ], + [ + 0.708571074262316, + 0.8338567938441126, + 0.5896521889414131, + 0.7745193914420165, + 0.8327506000989965, + 0.6557462342141327, + 0.653125413889168, + 0.7007371345032092, + 0.7055133658676277, + 0.7480672434374122, + 0.7098147193268579, + 0.7400066514058525, + 0.848434871520189, + 0.6901809268249964, + 1.0 + ] + ] + } +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/constructorParams.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/constructorParams.json new file mode 100644 index 0000000000..040b7254eb --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case1/constructorParams.json @@ -0,0 +1,5 @@ +{ + "geneIds": "b2577,b2783,b3240,b3264,b3685,b3719,b3770,b3771,b3772,b3773,b3856,b4012,b4013,b4016,b4480", + "expressionMatrixID": "SomeFakeData", + "workspaceID": "eapearson:narrative_1626270955005" +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.request.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.request.json new file mode 100644 index 0000000000..1ff0b81083 --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.request.json @@ -0,0 +1,62 @@ +{ + "input_data": "eapearson:narrative_1626270955005/SomeFakeData", + "row_ids": [ + "b0023", + "b0405", + "b0469", + "b0536", + "b0672", + "b0738", + "b1088", + "b1530", + "b1826", + "b1910", + "b2255", + "b2316", + "b2317", + "b2512", + "b2533", + "b2695", + "b2765", + "b2807", + "b2960", + "b3162", + "b3171", + "b3175", + "b3185", + "b3186", + "b3191", + "b3228", + "b3237", + "b3257", + "b3261", + "b3273", + "b3360", + "b3492", + "b3570", + "b3606", + "b3703", + "b3704", + "b3705", + "b3706", + "b3727", + "b3728", + "b3740", + "b3741", + "b3783", + "b4060", + "b4156", + "b4234", + "b4369", + "b4410", + "b4418", + "b4433", + "b4434", + "b4448", + "b4501", + "b4557", + "b4607" + ], + "fl_row_pairwise_correlation": 1, + "fl_row_set_stats": 1 +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.response.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.response.json new file mode 100644 index 0000000000..cc733b9519 --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/KBaseFeatureValues.get_submatrix_stat.response.json @@ -0,0 +1,3927 @@ +{ + "mtx_descriptor": { + "matrix_id": "SomeFakeData", + "matrix_name": "SomeFakeData", + "genome_id": "NC_000913", + "genome_name": "Escherichia coli str. K-12 substr. MG1655", + "rows_count": 4297, + "columns_count": 16, + "scale": "1.0", + "type": "log-ratio" + }, + "row_descriptors": [ + { + "index": 2189, + "id": "b0023", + "name": "rpsT; NP_414564.1", + "description": "", + "properties": { "function": "30S ribosomal subunit protein S20" } + }, + { + "index": 1975, + "id": "b0405", + "name": "queA; NP_414939.1", + "description": "", + "properties": { + "function": "synthesis of queuine in tRNA; probably S-adenosylmethionine:tRNA ribosyltransferase-isomerase" + } + }, + { + "index": 108, + "id": "b0469", + "name": "apt; NP_415002.1", + "description": "", + "properties": { "function": "adenine phosphoribosyltransferase" } + }, + { + "index": 136, + "id": "b0536", + "name": "argU", + "description": "", + "properties": { "function": "anticodon: UCU" } + }, + { + "index": 1300, + "id": "b0672", + "name": "leuW", + "description": "", + "properties": { "function": "anticodon: CAA" } + }, + { + "index": 2491, + "id": "b0738", + "name": "tolR; NP_415266.1", + "description": "", + "properties": { + "function": "putative inner membrane protein, involved in the tonB-independent uptake of group A colicins" + } + }, + { + "index": 2977, + "id": "b1088", + "name": "yceD; NP_415606.1", + "description": "", + "properties": { "function": "DUF177 family protein" } + }, + { + "index": 1395, + "id": "b1530", + "name": "marR; NP_416047.4", + "description": "", + "properties": { + "function": "multiple antibiotic resistance protein; repressor of mar operon" + } + }, + { + "index": 1460, + "id": "b1826", + "name": "mgrB; NP_416340.1", + "description": "", + "properties": { + "function": "regulatory peptide for PhoPQ, feedback inhibition" + } + }, + { + "index": 443, + "id": "b1910", + "name": "cysT", + "description": "", + "properties": { "function": "anticodon: GCA" } + }, + { + "index": 140, + "id": "b2255", + "name": "arnA; NP_416758.1", + "description": "", + "properties": { "function": "putative transformylase" } + }, + { + "index": 15, + "id": "b2316", + "name": "accD; NP_416819.1", + "description": "", + "properties": { + "function": "acetylCoA carboxylase, carboxytransferase component, beta subunit" + } + }, + { + "index": 484, + "id": "b2317", + "name": "dedA; NP_416820.1", + "description": "", + "properties": { "function": "DedA family inner membrane protein" } + }, + { + "index": 212, + "id": "b2512", + "name": "bamB; NP_417007.1", + "description": "", + "properties": { "function": "putative dehydrogenase" } + }, + { + "index": 2408, + "id": "b2533", + "name": "suhB; NP_417028.1", + "description": "", + "properties": { "function": "inositol-1-monophosphatase" } + }, + { + "index": 2308, + "id": "b2695", + "name": "serV", + "description": "", + "properties": { "function": "anticodon: GCU" } + }, + { + "index": 2379, + "id": "b2765", + "name": "queD; NP_417245.1", + "description": "", + "properties": { "function": "putative 6-pyruvoyl tetrahydrobiopterin synthase" } + }, + { + "index": 3541, + "id": "b2807", + "name": "ygdD; NP_417287.1", + "description": "", + "properties": { "function": "UPF0382 family inner membrane protein" } + }, + { + "index": 2521, + "id": "b2960", + "name": "trmI; NP_417435.1", + "description": "", + "properties": { "function": "tRNA m(7)G46 methyltransferase, SAM-dependent" } + }, + { + "index": 483, + "id": "b3162", + "name": "deaD; NP_417631.2", + "description": "", + "properties": { "function": "inducible ATP-independent RNA helicase" } + }, + { + "index": 1455, + "id": "b3171", + "name": "metY", + "description": "", + "properties": { "function": "anticodon: CAU" } + }, + { + "index": 2294, + "id": "b3175", + "name": "secG; NP_417642.1", + "description": "", + "properties": { "function": "protein export - membrane protein" } + }, + { + "index": 2149, + "id": "b3185", + "name": "rpmA; NP_417652.1", + "description": "", + "properties": { "function": "50S ribosomal subunit protein L27" } + }, + { + "index": 2144, + "id": "b3186", + "name": "rplU; NP_417653.1", + "description": "", + "properties": { "function": "50S ribosomal subunit protein L21" } + }, + { + "index": 4239, + "id": "b3191", + "name": "mlaB; NP_417658.4", + "description": "", + "properties": { + "function": "ABC transporter maintaining OM lipid asymmetry, cytoplasmic STAS component" + } + }, + { + "index": 2384, + "id": "b3228", + "name": "sspB; NP_417695.1", + "description": "", + "properties": { "function": "stringent starvation protein B" } + }, + { + "index": 133, + "id": "b3237", + "name": "argR; NP_417704.1", + "description": "", + "properties": { + "function": "repressor of arg regulon; cer-mediated site specific recombination" + } + }, + { + "index": 3676, + "id": "b3257", + "name": "yhdT; NP_417723.1", + "description": "", + "properties": { "function": "DUF997 family putative inner membrane protein" } + }, + { + "index": 719, + "id": "b3261", + "name": "fis; NP_417727.1", + "description": "", + "properties": { + "function": "site-specific DNA inversion stimulation factor; DNA-binding protein; a trans activator for transcription" + } + }, + { + "index": 2474, + "id": "b3273", + "name": "thrV", + "description": "", + "properties": { "function": "anticodon: GGU" } + }, + { + "index": 1739, + "id": "b3360", + "name": "pabA; NP_417819.1", + "description": "", + "properties": { "function": "p-aminobenzoate synthetase, component II" } + }, + { + "index": 3725, + "id": "b3492", + "name": "yhiN; NP_417949.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 218, + "id": "b3570", + "name": "bax; YP_026230.1", + "description": "", + "properties": { "function": "putative ATP-binding protein" } + }, + { + "index": 3767, + "id": "b3606", + "name": "trmL; NP_418063.1", + "description": "", + "properties": { + "function": "tRNA Leu mC34,mU34 2'-O-methyltransferase, SAM-dependent" + } + }, + { + "index": 2156, + "id": "b3703", + "name": "rpmH; NP_418158.1", + "description": "", + "properties": { "function": "50S ribosomal subunit protein L34" } + }, + { + "index": 2115, + "id": "b3704", + "name": "rnpA; NP_418159.1", + "description": "", + "properties": { + "function": "RNase P is an essential enzyme responsible for the processing of the 5' ends of precursors to tRNA, 4.5S RNA, and other naturally occurring stable RNA molecules; RNase P also affects gene expression of polycistronic operon mRNAs" + } + }, + { + "index": 3788, + "id": "b3705", + "name": "yidC; NP_418161.1", + "description": "", + "properties": { "function": "60 KD inner-membrane protein" } + }, + { + "index": 1494, + "id": "b3706", + "name": "mnmE; NP_418162.1", + "description": "", + "properties": { + "function": "tRNA U34 5-methylaminomethyl-2-thiouridine modification GTPase" + } + }, + { + "index": 1922, + "id": "b3727", + "name": "pstC; NP_418183.1", + "description": "", + "properties": { + "function": "high-affinity phosphate-specific transport system, cytoplasmic membrane component; membrane component of ABC superfamily" + } + }, + { + "index": 1923, + "id": "b3728", + "name": "pstS; NP_418184.1", + "description": "", + "properties": { + "function": "high-affinity phosphate-specific transport system; periplasmic phosphate-binding protein; periplasmic-binding component of ABC superfamily" + } + }, + { + "index": 898, + "id": "b3740", + "name": "rsmG; NP_418196.1", + "description": "", + "properties": { + "function": "glucose-inhibited division; chromosome replication?" + } + }, + { + "index": 1495, + "id": "b3741", + "name": "mnmG; NP_418197.1", + "description": "", + "properties": { + "function": "glucose-inhibited division; chromosome replication?" + } + }, + { + "index": 2066, + "id": "b3783", + "name": "rho; NP_418230.1", + "description": "", + "properties": { + "function": "transcription termination factor Rho; polarity suppressor" + } + }, + { + "index": 3877, + "id": "b4060", + "name": "yjcB; NP_418484.4", + "description": "", + "properties": { "function": "putative inner membrane protein" } + }, + { + "index": 3903, + "id": "b4156", + "name": "yjeM; NP_418580.2", + "description": "", + "properties": { "function": "putative transport" } + }, + { + "index": 3921, + "id": "b4234", + "name": "yjgA; NP_418655.1", + "description": "", + "properties": { "function": "putative alpha helix protein" } + }, + { + "index": 1297, + "id": "b4369", + "name": "leuP", + "description": "", + "properties": { "function": "anticodon: CAG" } + }, + { + "index": 575, + "id": "b4410", + "name": "ecnA; YP_026283.1", + "description": "", + "properties": { + "function": "entericidin A; antidote to lipoprotein entericidin B; component of a chromosomally encoded addiction module" + } + }, + { + "index": 1916, + "id": "b4418", + "name": "psrD", + "description": "", + "properties": { "function": "identified in a large scale screen" } + }, + { + "index": 2249, + "id": "b4433", + "name": "sdsR", + "description": "", + "properties": { "function": "identified in a large scale screen" } + }, + { "index": 1241, "id": "b4434", "name": "", "description": "", "properties": {} }, + { "index": 1917, "id": "b4448", "name": "", "description": "", "properties": {} }, + { + "index": 2499, + "id": "b4501", + "name": "torI; YP_588463.1", + "description": "", + "properties": { "function": "response regulator inhibitor for tor operon" } + }, + { + "index": 3789, + "id": "b4557", + "name": "yidD; YP_588472.1", + "description": "", + "properties": { + "function": "membrane protein insertion efficiency factor, UPF0161 family inner membrane protein" + } + }, + { "index": 2253, "id": "b4607", "name": "", "description": "", "properties": {} } + ], + "column_descriptors": [ + { + "index": 0, + "id": "dinI_U_N0025_r1", + "name": "dinI_U_N0025_r1", + "description": "" + }, + { + "index": 1, + "id": "dinP_U_N0025_r1", + "name": "dinP_U_N0025_r1", + "description": "" + }, + { + "index": 2, + "id": "lexA_U_N0025_r1", + "name": "lexA_U_N0025_r1", + "description": "" + }, + { "index": 3, "id": "lon_U_N0025_r1", "name": "lon_U_N0025_r1", "description": "" }, + { "index": 4, "id": "luc_U_N0025_r1", "name": "luc_U_N0025_r1", "description": "" }, + { + "index": 5, + "id": "mazF_U_N0025_r1", + "name": "mazF_U_N0025_r1", + "description": "" + }, + { + "index": 6, + "id": "recA_U_N0025_r1", + "name": "recA_U_N0025_r1", + "description": "" + }, + { + "index": 7, + "id": "relA_U_N0025_r1", + "name": "relA_U_N0025_r1", + "description": "" + }, + { + "index": 8, + "id": "ruvA_U_N0025_r1", + "name": "ruvA_U_N0025_r1", + "description": "" + }, + { + "index": 9, + "id": "sulA_U_N0025_r1", + "name": "sulA_U_N0025_r1", + "description": "" + }, + { + "index": 10, + "id": "umuD_U_N0025_r1", + "name": "umuD_U_N0025_r1", + "description": "" + }, + { + "index": 11, + "id": "uvrA_U_N0025_r1", + "name": "uvrA_U_N0025_r1", + "description": "" + }, + { + "index": 12, + "id": "yebF_U_N0075_r1", + "name": "yebF_U_N0075_r1", + "description": "" + }, + { + "index": 13, + "id": "luc_U_N0075_r1", + "name": "luc_U_N0075_r1", + "description": "" + }, + { + "index": 14, + "id": "zipA_U_N0075_r1", + "name": "zipA_U_N0075_r1", + "description": "" + }, + { "index": 15, "id": "luc_U_N0000_r1", "name": "luc_U_N0000_r1", "description": "" } + ], + "row_set_stats": { + "size": 55, + "avgs": [ + 11.20231875, + 10.241290000000001, + 10.528062499999999, + 8.902198750000002, + 11.5326625, + 9.377836875000002, + 12.401962500000002, + 8.6126525, + 10.114389375, + 9.685018750000001, + 8.284933125000002, + 10.23698125, + 9.222926875000002, + 10.58621875, + 8.9630525, + 11.03375625, + 8.871122500000002, + 8.48272, + 10.0688625, + 10.446339374999999, + 10.086891875, + 10.98535625, + 11.467568750000002, + 13.330268750000002, + 9.885044999999998, + 10.764131249999998, + 8.863575625000001, + 8.881969375, + 11.457818750000001, + 11.497106250000002, + 8.223355, + 9.066665625, + 9.46598875, + 8.593311875000001, + 11.946406249999999, + 11.70776875, + 10.275043125000002, + 10.101922499999999, + 9.1050525, + 9.75814375, + 9.100859999999999, + 9.928133124999999, + 10.70153125, + 8.050854375, + 8.333586250000002, + 10.110821875, + 11.258868750000001, + 8.212398125, + 11.237856249999998, + 6.620853749999998, + 8.673351875, + 7.8316775, + 7.6354781250000014, + 12.389362499999997, + 7.59651875 + ], + "mins": [ + 10.7447, + 9.97734, + 10.1762, + 8.37743, + 10.7805, + 9.14808, + 12.1303, + 8.22859, + 9.55093, + 8.73296, + 8.06733, + 9.90485, + 8.5513, + 10.3376, + 8.62601, + 10.6364, + 8.40796, + 8.16446, + 9.77041, + 9.90113, + 9.19191, + 10.7033, + 11.2061, + 13.1408, + 9.73093, + 10.5309, + 8.56843, + 8.48952, + 11.0768, + 10.9319, + 8.01121, + 8.79739, + 9.0078, + 8.09333, + 11.6109, + 11.3504, + 9.9405, + 9.75105, + 8.59352, + 9.23436, + 8.78506, + 9.59136, + 10.3931, + 7.55273, + 8.07083, + 9.8586, + 10.4707, + 7.85074, + 10.9271, + 6.36893, + 7.05455, + 7.39217, + 7.13872, + 12.0415, + 7.17227 + ], + "maxs": [ + 12.0372, + 10.8995, + 11.1473, + 9.92457, + 12.7966, + 9.87538, + 12.676, + 9.0837, + 10.9052, + 10.8585, + 8.55756, + 10.8011, + 10.0073, + 11.0562, + 9.46608, + 11.7243, + 9.47469, + 9.03444, + 10.5057, + 11.3735, + 11.0555, + 11.4098, + 11.8724, + 13.5319, + 10.0672, + 11.0891, + 9.27716, + 9.32933, + 12.2547, + 11.9809, + 8.52862, + 9.4475, + 10.269, + 9.17813, + 12.5465, + 12.4652, + 10.8323, + 10.4061, + 9.92243, + 10.6118, + 9.42219, + 10.3954, + 11.3884, + 8.92969, + 8.83808, + 10.4958, + 11.9035, + 8.91466, + 11.7541, + 7.11782, + 11.3862, + 8.37542, + 8.2606, + 12.8099, + 7.83068 + ], + "stds": [ + 0.3405647001060641, + 0.2629077506147991, + 0.2932814231530299, + 0.4088423437116887, + 0.5546939947694884, + 0.19319065883969813, + 0.12574115674670708, + 0.18699554866359794, + 0.288415352491709, + 0.5102483934304283, + 0.15408754865200303, + 0.2389807913306005, + 0.2916702218538089, + 0.17857589317990272, + 0.23541993559028349, + 0.32065455965103623, + 0.2861157180699215, + 0.22308120153881178, + 0.21327035529268143, + 0.43609767133015437, + 0.5078113527445504, + 0.22918972917286967, + 0.22523980914793923, + 0.09969891152030373, + 0.09727902062281127, + 0.14918985988218728, + 0.20037929889649275, + 0.2517532420835593, + 0.2861943028055125, + 0.2868698902958158, + 0.1292882572136128, + 0.15989197878437603, + 0.28945361325262464, + 0.2354099252571634, + 0.28821034787980804, + 0.32601081724128916, + 0.25915864566499924, + 0.16707702066212848, + 0.3386303583456943, + 0.36315981840644207, + 0.17453424248553634, + 0.23696430835940255, + 0.27585145934904903, + 0.4118418896448613, + 0.20691705564871476, + 0.1929852490811582, + 0.3939858199119182, + 0.27728760347862047, + 0.21858945375215771, + 0.2053130311784098, + 1.0047062360990153, + 0.2516503564471943, + 0.2722950848673488, + 0.24151911691071865, + 0.17609769719770144 + ], + "missing_values": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "row_pairwise_correlation": { + "comparison_values": [ + [ + 1.0, + 0.8629652250594473, + 0.6951402995723002, + 0.702298173236793, + 0.8248279899339853, + 0.8324940886476504, + 0.7572331204639541, + 0.7133087376174891, + 0.5902884147559744, + 0.7411891799798727, + 0.47395312937453077, + 0.8024707914638494, + 0.588819404799639, + 0.7251702214749848, + 0.6012729010602168, + 0.6788553913943665, + 0.5922589496895686, + 0.6979742324561288, + 0.8549471802066542, + 0.7522467760157958, + 0.722403739449925, + 0.717963556931512, + 0.662379426440537, + 0.8397997533702517, + 0.5147987124475846, + 0.5394309535854055, + 0.5012238820812672, + 0.856541163169654, + 0.7522226850131966, + 0.739553829796627, + 0.4560410034153618, + 0.6976006203043668, + 0.8007158337390459, + 0.7787099173948823, + 0.657625356008451, + 0.6913339999100656, + 0.568017284925346, + 0.48353375597692544, + 0.5955529525365492, + 0.7756923036287177, + 0.42223090730704527, + 0.790452643626611, + 0.5579519895526596, + 0.7525425565180153, + 0.3207899864368061, + 0.6828686046002139, + 0.5758810057641066, + 0.7322784771511003, + 0.8852002860409804, + 0.6940734260935649, + 0.7429955297172559, + 0.26185111103209263, + 0.5644704605658656, + 0.5728671814306577, + 0.4331430433385417 + ], + [ + 0.8629652250594473, + 1.0, + 0.6925075845453909, + 0.7734024991728853, + 0.7453214458064065, + 0.8508725389155831, + 0.694318786231997, + 0.7333596064119943, + 0.490751836366302, + 0.6020477454503209, + 0.5775403313330677, + 0.5848093926847858, + 0.3958871619903253, + 0.8082776970903425, + 0.6349402849066227, + 0.659219938266192, + 0.5684835896952013, + 0.6399824335225491, + 0.7745594010612042, + 0.8034945977215372, + 0.7763281128202395, + 0.7883489361557003, + 0.5311321028886156, + 0.6627436511808833, + 0.5575737058786162, + 0.5364375957179154, + 0.38891122400509165, + 0.6931835077163555, + 0.643323752109422, + 0.643599470623371, + 0.38827271854425727, + 0.6225326644987587, + 0.6746852799231634, + 0.6013311981049947, + 0.702073614157279, + 0.6806972818747983, + 0.588522257346482, + 0.4713126359814718, + 0.5438165086290786, + 0.6553880434171927, + 0.5123877791304763, + 0.8297349858738079, + 0.5947733114777909, + 0.7526860259644382, + 0.3845353483683253, + 0.6941098965595139, + 0.3701351210228471, + 0.5555668215102132, + 0.6791334423093658, + 0.6028785385284049, + 0.6205522055461917, + 0.13289204975664873, + 0.6111037257482353, + 0.6235901313062604, + 0.18769418751140904 + ], + [ + 0.6951402995723002, + 0.6925075845453909, + 1.0, + 0.6923900758250098, + 0.689225377758439, + 0.6263993248823602, + 0.6318114970561575, + 0.7442352528817722, + 0.26786904836230496, + 0.6347287897331069, + 0.5101421622547873, + 0.5476604044354711, + 0.35790554051695067, + 0.7175277927639786, + 0.915593591705924, + 0.6168172567851022, + 0.7077698077816419, + 0.5413464823205022, + 0.44920161839137157, + 0.6942284505204617, + 0.6649088923229602, + 0.8741761700642151, + 0.7216409074944775, + 0.48229901614240667, + 0.6468561406778311, + 0.3885738865780917, + 0.7336613670127667, + 0.634148869312101, + 0.8745335509430935, + 0.42965905126029924, + 0.4521559128515069, + 0.8769137268151772, + 0.6813101366723743, + 0.5202679683444098, + 0.8279645876242001, + 0.8212586576920822, + 0.9061890416590161, + 0.6907052654399594, + 0.36144655079391214, + 0.5797103607349733, + 0.766319236790855, + 0.7579470275407942, + 0.8293874629941828, + 0.5425396514896069, + 0.5326259499048108, + 0.8702245284239429, + 0.33149042324596406, + 0.6624279547229898, + 0.6150720325003957, + 0.7872412471549995, + 0.5124049742501592, + 0.41032941068460144, + 0.3136227346107198, + 0.6420912099935601, + 0.2622043624200369 + ], + [ + 0.702298173236793, + 0.7734024991728853, + 0.6923900758250098, + 1.0, + 0.8112000957971212, + 0.743293736039709, + 0.5223183765676122, + 0.6913049456115814, + 0.5798731213697554, + 0.7734716587464037, + 0.5662640596478806, + 0.5035496590390346, + 0.4252438345418904, + 0.7358369955975347, + 0.6771875448736171, + 0.8905486020471881, + 0.5417060162987692, + 0.645782167482547, + 0.5931308625022902, + 0.8116109927882285, + 0.9057842384376201, + 0.8070306472444178, + 0.5704108200517843, + 0.5994568494805425, + 0.6654008991615136, + 0.6425188542285984, + 0.621489993373934, + 0.7129039452522833, + 0.6435387155689796, + 0.6504330520685565, + 0.5788592139728179, + 0.5161211197560255, + 0.6469276450272693, + 0.524494898759689, + 0.7142146617235287, + 0.6273912459983808, + 0.6586079577112284, + 0.6483601578158656, + 0.47511425833345583, + 0.5753574472122742, + 0.4947163068709446, + 0.8192209629941541, + 0.7147280647457499, + 0.7501300951186878, + 0.5834674041643115, + 0.7765834947336338, + 0.657430683383244, + 0.6247054445311422, + 0.7222999582880033, + 0.725142199107481, + 0.6728149035280914, + 0.4157263241802078, + 0.7968159323621162, + 0.7163917056068443, + 0.483185072306144 + ], + [ + 0.8248279899339853, + 0.7453214458064065, + 0.689225377758439, + 0.8112000957971212, + 1.0, + 0.8269867724285005, + 0.6538077994541561, + 0.7844549456641219, + 0.7827937344830183, + 0.9448993817920638, + 0.6082758123499391, + 0.7721208594264075, + 0.638309522375083, + 0.7688782414818147, + 0.6720294045395411, + 0.8001498364065807, + 0.7027230193235726, + 0.8568995028368115, + 0.6281500496196887, + 0.7908930024329534, + 0.7206053957814076, + 0.8289218880019585, + 0.7356313191320075, + 0.8104615630259541, + 0.7018824495377805, + 0.7151159036774977, + 0.49217846422616796, + 0.7789188193510862, + 0.731160444145802, + 0.7660749982234306, + 0.5293728954688586, + 0.5018082441900183, + 0.8436341082696549, + 0.7909965608095163, + 0.7247433938503173, + 0.7341165108387565, + 0.6994854794772025, + 0.6101617310232824, + 0.7106004525965413, + 0.7676436265052962, + 0.4683509640587339, + 0.8120130565543037, + 0.7963659564538127, + 0.8023781824163846, + 0.5030222923035175, + 0.7044574125247881, + 0.7499779744551919, + 0.7934362756632658, + 0.8695460824878364, + 0.7015979900188997, + 0.7586690373373817, + 0.53450861911678, + 0.665257014717626, + 0.717637778878373, + 0.6175511697153209 + ], + [ + 0.8324940886476504, + 0.8508725389155831, + 0.6263993248823602, + 0.743293736039709, + 0.8269867724285005, + 1.0, + 0.4983821743009257, + 0.5520506121199485, + 0.6424311718207952, + 0.7317897348021376, + 0.4866485889017061, + 0.67604366273293, + 0.6941970931399771, + 0.7217461331557851, + 0.5836053472432742, + 0.6272952603742175, + 0.5855454862490391, + 0.7944160817249541, + 0.7467582434582546, + 0.8632830241999623, + 0.7529861191213474, + 0.789375091117978, + 0.559256427985686, + 0.778256883426652, + 0.6082403599775861, + 0.7066917190746899, + 0.39765814920923626, + 0.7099287012102277, + 0.7068058842456154, + 0.7196224492404283, + 0.3937597836598041, + 0.5041007566478678, + 0.8620496048058066, + 0.8159878280020518, + 0.732191752455463, + 0.7643193838175814, + 0.6170600490102527, + 0.5094102522882691, + 0.7180559438039522, + 0.748643927897088, + 0.5168228749317352, + 0.8539280238211381, + 0.7068514035006839, + 0.8756044084736673, + 0.39190882883611533, + 0.7110043542669149, + 0.5525950071667688, + 0.7168994073108517, + 0.8137037015924088, + 0.6680242035964035, + 0.8034545868303146, + 0.22010739392640574, + 0.6796574849157799, + 0.6249006931408002, + 0.44003988877993483 + ], + [ + 0.7572331204639541, + 0.694318786231997, + 0.6318114970561575, + 0.5223183765676122, + 0.6538077994541561, + 0.4983821743009257, + 1.0, + 0.872245639140696, + 0.5715664327488877, + 0.6345075783043638, + 0.4534595429320693, + 0.742661098620352, + 0.21811314912395657, + 0.7153365391003224, + 0.6053925823011767, + 0.45328219522224167, + 0.582776421339898, + 0.5040838445906838, + 0.5435860249239791, + 0.45800041630751254, + 0.4278017076436623, + 0.5564214472968223, + 0.6037486965338841, + 0.4601814027419743, + 0.5080638515399573, + 0.34353527803052963, + 0.2705269841833788, + 0.5081514402419615, + 0.5198760462844418, + 0.43272275974605445, + 0.4320195384145167, + 0.6452037452319478, + 0.46172161846716536, + 0.46425569560732616, + 0.3915461666984023, + 0.4053809015414234, + 0.47668312007225866, + 0.24395418921719836, + 0.4249542174314602, + 0.7389001383570759, + 0.287253268200691, + 0.462014912044365, + 0.4191926873599968, + 0.4585106750411235, + 0.2479360012518816, + 0.5392900839314851, + 0.2529067667024334, + 0.5350013884808905, + 0.5500716128232604, + 0.4741656271997366, + 0.4406513465035413, + 0.05750375132222895, + 0.37975844851879526, + 0.26624624733314073, + 0.29072040148806544 + ], + [ + 0.7133087376174891, + 0.7333596064119943, + 0.7442352528817722, + 0.6913049456115814, + 0.7844549456641219, + 0.5520506121199485, + 0.872245639140696, + 1.0, + 0.606212820356735, + 0.7675879287578471, + 0.5788496653034906, + 0.7142543518157604, + 0.2546191988420479, + 0.875564837697998, + 0.7779679496212573, + 0.7047774094584309, + 0.7984540023413167, + 0.6466293567108736, + 0.4019966885778924, + 0.5245644040175356, + 0.5873065008909873, + 0.7511991911083193, + 0.7288379511347647, + 0.45234367468248693, + 0.6060662741507457, + 0.4104531308377713, + 0.334927249002717, + 0.5633454439732395, + 0.6498310727407556, + 0.4032835986437483, + 0.4099049076747425, + 0.6230927384227812, + 0.5110517160209186, + 0.4948371117878921, + 0.5384562099497818, + 0.5029220299995399, + 0.6840550554950587, + 0.44767336908925215, + 0.46673319716167805, + 0.7205300615588743, + 0.3673575199964541, + 0.5802779517563432, + 0.6353839824400918, + 0.5422163182605549, + 0.3096922530950202, + 0.5926197676907629, + 0.44017281194113717, + 0.5339624641209154, + 0.5799540189171172, + 0.5907429720217906, + 0.49281797859010296, + 0.22185189385984438, + 0.48160484336305687, + 0.4413790713047968, + 0.3454380602039918 + ], + [ + 0.5902884147559744, + 0.490751836366302, + 0.26786904836230496, + 0.5798731213697554, + 0.7827937344830183, + 0.6424311718207952, + 0.5715664327488877, + 0.606212820356735, + 1.0, + 0.8670469211513488, + 0.5261496863847464, + 0.7641386816620059, + 0.5676125178169319, + 0.5814751911737903, + 0.3319101560578253, + 0.5738111518779017, + 0.536592129408449, + 0.7959878841543522, + 0.48315424338674057, + 0.5363921807745362, + 0.4106519826546177, + 0.520292741894577, + 0.47067044514373474, + 0.6387379668186228, + 0.5330091860948736, + 0.6683853543377106, + 0.07536378613421765, + 0.5283109097719736, + 0.29450450308506754, + 0.6307231046833143, + 0.48249385947968804, + 0.10026018684784194, + 0.6185372047082166, + 0.7318478689694716, + 0.3199050814940094, + 0.33977196530862563, + 0.30808944178687636, + 0.2710166123552009, + 0.6892095753569024, + 0.707396603944475, + 0.07929761778232437, + 0.4950580060859055, + 0.48715737712864277, + 0.7345481506856675, + 0.2939613217118969, + 0.33668125776687224, + 0.6180734253667994, + 0.6085971617830556, + 0.6606036793659644, + 0.32205803992743365, + 0.7058468399924752, + 0.17560599129549312, + 0.6810012978004116, + 0.2808487981321887, + 0.6620671093641269 + ], + [ + 0.7411891799798727, + 0.6020477454503209, + 0.6347287897331069, + 0.7734716587464037, + 0.9448993817920638, + 0.7317897348021376, + 0.6345075783043638, + 0.7675879287578471, + 0.8670469211513488, + 1.0, + 0.5499059513035836, + 0.8167088500601404, + 0.6566800803981429, + 0.7017905605105, + 0.6476916515767231, + 0.8030763799776229, + 0.7316418378586514, + 0.8526359513049687, + 0.5301016801546837, + 0.6825659121694067, + 0.659069386327838, + 0.7749829137560109, + 0.7238639094012755, + 0.7561319665090985, + 0.6386566870434928, + 0.690961060761799, + 0.4514449807544754, + 0.739900991479534, + 0.6560267093343943, + 0.6948777408244979, + 0.564790687752113, + 0.4364851279000524, + 0.7997489605535821, + 0.8070463016047017, + 0.6045205835136181, + 0.6136518754939914, + 0.6409622075747646, + 0.5524193380058694, + 0.68858978998094, + 0.7662412832367974, + 0.36268246773969626, + 0.7042464691340575, + 0.7425426937925255, + 0.7762863296206317, + 0.45155929586732785, + 0.6092622503106636, + 0.7897138626406015, + 0.7791480981421057, + 0.8538249377503986, + 0.6176057442661567, + 0.7733556035359226, + 0.46572531460619115, + 0.6889207216539872, + 0.5575078259349129, + 0.7293152451616163 + ], + [ + 0.47395312937453077, + 0.5775403313330677, + 0.5101421622547873, + 0.5662640596478806, + 0.6082758123499391, + 0.4866485889017061, + 0.4534595429320693, + 0.5788496653034906, + 0.5261496863847464, + 0.5499059513035836, + 1.0, + 0.2938292883887166, + 0.29086252211487673, + 0.6196873465776163, + 0.3667352261009779, + 0.5330571558274751, + 0.38418010353583526, + 0.4541449122374831, + 0.42239605706877603, + 0.7295335516037487, + 0.4058705047490784, + 0.7396933411642336, + 0.18203000755330062, + 0.3607856076070778, + 0.8043597665062642, + 0.6049530567463816, + 0.3502797979617842, + 0.35762439453153655, + 0.36969510112923537, + 0.6009515100361764, + 0.7590415322468563, + 0.33180389643733355, + 0.5345741431299958, + 0.5063519514538602, + 0.7286225343385712, + 0.6668899301131829, + 0.39210795777007174, + 0.7571172595077037, + 0.46293302449770135, + 0.3875895835017295, + 0.6561248114928686, + 0.6699600386938163, + 0.7017860045524812, + 0.7188021817193497, + 0.7720522620379693, + 0.5843644671610747, + 0.19649074175450637, + 0.3086212196261295, + 0.40514698723013426, + 0.38791500729773926, + 0.5267435719414724, + 0.4857857199141157, + 0.381467260611558, + 0.6993465262785614, + 0.026868040273543888 + ], + [ + 0.8024707914638494, + 0.5848093926847858, + 0.5476604044354711, + 0.5035496590390346, + 0.7721208594264075, + 0.67604366273293, + 0.742661098620352, + 0.7142543518157604, + 0.7641386816620059, + 0.8167088500601404, + 0.2938292883887166, + 1.0, + 0.6316154651115794, + 0.6504599206538844, + 0.6117233974094844, + 0.5291821315082574, + 0.637192433154124, + 0.7659468837018023, + 0.5732522602383568, + 0.4870051570002683, + 0.4593420256184656, + 0.539257356816626, + 0.70963014933385, + 0.7210873865378185, + 0.38145858776468355, + 0.5207164705263665, + 0.2863401181022031, + 0.7010404186605367, + 0.6492302074666684, + 0.5610153075758382, + 0.2561479714713767, + 0.558380233988538, + 0.7039014923094815, + 0.7915635350666606, + 0.3767795328256058, + 0.4482834622075978, + 0.5591159493011754, + 0.23853715205450596, + 0.6687597677291603, + 0.8639236127421852, + 0.16327602476678915, + 0.49207575574304946, + 0.48387445193684503, + 0.6188107142412002, + 0.08669692690125573, + 0.4530271613460297, + 0.5652173550193235, + 0.8161364577242004, + 0.7795349977693646, + 0.5990395559833124, + 0.7283842054113374, + 0.10634760750046486, + 0.5196786798147742, + 0.21734132961304298, + 0.681603655759193 + ], + [ + 0.588819404799639, + 0.3958871619903253, + 0.35790554051695067, + 0.4252438345418904, + 0.638309522375083, + 0.6941970931399771, + 0.21811314912395657, + 0.2546191988420479, + 0.5676125178169319, + 0.6566800803981429, + 0.29086252211487673, + 0.6316154651115794, + 1.0, + 0.3289824769456938, + 0.35991180626310304, + 0.5144061125495554, + 0.2493570037509309, + 0.4862194780580989, + 0.5081740171948583, + 0.6079897795580487, + 0.5380468462432806, + 0.5033762668668742, + 0.23624608774609263, + 0.7038544778604391, + 0.45113852447434794, + 0.8083531479338757, + 0.44343551250931496, + 0.5555395837486018, + 0.6348309508872, + 0.6514678029300895, + 0.3753185094756571, + 0.3400025915257212, + 0.8558151155481148, + 0.8801874792877611, + 0.4834073589505676, + 0.5535978269160636, + 0.3499788269107566, + 0.519160695692936, + 0.7963035419734869, + 0.6191549156858583, + 0.39045330979030907, + 0.5242956805789583, + 0.4993974163360984, + 0.7719520080739405, + 0.30996672652320173, + 0.3507170655414111, + 0.6338045307287739, + 0.6717464826504348, + 0.8086686290239311, + 0.5345878733957407, + 0.9040048879772337, + 0.42463246175497343, + 0.5855141192907051, + 0.4303879739499074, + 0.6084875056774202 + ], + [ + 0.7251702214749848, + 0.8082776970903425, + 0.7175277927639786, + 0.7358369955975347, + 0.7688782414818147, + 0.7217461331557851, + 0.7153365391003224, + 0.875564837697998, + 0.5814751911737903, + 0.7017905605105, + 0.6196873465776163, + 0.6504599206538844, + 0.3289824769456938, + 1.0, + 0.7316201865433702, + 0.637952771017083, + 0.7679138752178166, + 0.7278287920131269, + 0.44190005202142724, + 0.6515198171079951, + 0.6126959584702301, + 0.7654610567442846, + 0.6699536052672407, + 0.483686360954834, + 0.686211209670609, + 0.4426303070058058, + 0.325687622382518, + 0.6122250262529406, + 0.6724205517920598, + 0.4356594593192346, + 0.33298240708110827, + 0.6299851484387251, + 0.5728330489142496, + 0.5621064989650918, + 0.5957184635472158, + 0.5641649634826457, + 0.7053141377456306, + 0.5190346724149048, + 0.4214671667748953, + 0.6782797889458168, + 0.43799512281660075, + 0.6924190995291998, + 0.6609265522654292, + 0.6480426832240671, + 0.3204667312776347, + 0.636058562703117, + 0.45683874015722786, + 0.5360566374290023, + 0.5538160230421568, + 0.6778434044066529, + 0.5750760951037514, + 0.14794448618283643, + 0.47425759747315155, + 0.5056897510415799, + 0.3195359216043015 + ], + [ + 0.6012729010602168, + 0.6349402849066227, + 0.915593591705924, + 0.6771875448736171, + 0.6720294045395411, + 0.5836053472432742, + 0.6053925823011767, + 0.7779679496212573, + 0.3319101560578253, + 0.6476916515767231, + 0.3667352261009779, + 0.6117233974094844, + 0.35991180626310304, + 0.7316201865433702, + 1.0, + 0.6261851542465904, + 0.7326552911447984, + 0.5545648341317787, + 0.27060780892649056, + 0.5527089350281476, + 0.65005318841617, + 0.776597175679066, + 0.7579826046958557, + 0.39300103380506907, + 0.58787323032419, + 0.38263013333407264, + 0.6096354515090511, + 0.5639932204827306, + 0.8366605921588584, + 0.2590179303279054, + 0.22306004635493928, + 0.7584583379490181, + 0.603219519014997, + 0.4489288168407916, + 0.6597292748066725, + 0.639612239997603, + 0.9410009817351205, + 0.530022054496218, + 0.3795551414040919, + 0.5959955434380652, + 0.5647019053471931, + 0.611233643902712, + 0.7727706172170932, + 0.46087319171517555, + 0.3222253216413145, + 0.7339988918109087, + 0.3586177034010345, + 0.6761542290086491, + 0.5329532135799724, + 0.7747632180631138, + 0.5152024738897231, + 0.2586709097873072, + 0.3780198275335965, + 0.4447591698947423, + 0.3694769598707767 + ], + [ + 0.6788553913943665, + 0.659219938266192, + 0.6168172567851022, + 0.8905486020471881, + 0.8001498364065807, + 0.6272952603742175, + 0.45328219522224167, + 0.7047774094584309, + 0.5738111518779017, + 0.8030763799776229, + 0.5330571558274751, + 0.5291821315082574, + 0.5144061125495554, + 0.637952771017083, + 0.6261851542465904, + 1.0, + 0.586155073363979, + 0.5843940875207893, + 0.49297701728591337, + 0.6673270459249286, + 0.8999299770676251, + 0.7752820070285948, + 0.5392008274785269, + 0.5945552997804776, + 0.5458754711428525, + 0.6379603657671634, + 0.5499841647423336, + 0.687236757884366, + 0.6678983188439384, + 0.5841258395613287, + 0.5511589679248219, + 0.42101491142124176, + 0.6470799596150545, + 0.5793706743605879, + 0.6612685966719074, + 0.5640159015388537, + 0.5660852857934638, + 0.6582146251837621, + 0.5495939053479072, + 0.5596652033570304, + 0.3774502979430853, + 0.7049886793824653, + 0.6639269825167656, + 0.7216804610349735, + 0.44882595303123013, + 0.5997838913272302, + 0.7678404067847342, + 0.5192898647268234, + 0.7777486165591498, + 0.6422812430112779, + 0.7039533829369689, + 0.4928756627305519, + 0.8007736971033648, + 0.6725539785720249, + 0.4675310409870475 + ], + [ + 0.5922589496895686, + 0.5684835896952013, + 0.7077698077816419, + 0.5417060162987692, + 0.7027230193235726, + 0.5855454862490391, + 0.582776421339898, + 0.7984540023413167, + 0.536592129408449, + 0.7316418378586514, + 0.38418010353583526, + 0.637192433154124, + 0.2493570037509309, + 0.7679138752178166, + 0.7326552911447984, + 0.586155073363979, + 1.0, + 0.795103932409825, + 0.24776530541892144, + 0.40741230210550294, + 0.4699713295706067, + 0.7363828444084977, + 0.8632474676242224, + 0.4574448133396966, + 0.4350800221791539, + 0.1904822905581787, + 0.1930287876257665, + 0.5536874095800808, + 0.6105717291006557, + 0.23010352162200745, + 0.1964467719233881, + 0.4651333589840063, + 0.5279078165984106, + 0.5362197126679538, + 0.5131792111920804, + 0.5227527207113459, + 0.7296042988580698, + 0.3425538260082451, + 0.332839109945062, + 0.5887808113281571, + 0.2869774198756471, + 0.5681970119646083, + 0.6637698820189338, + 0.4504756085046259, + 0.11835701833943499, + 0.5170692460872319, + 0.48931347428542266, + 0.47288775554857243, + 0.523355313640957, + 0.4613553835862867, + 0.38019580503727507, + 0.10496351766228496, + 0.2958731815424229, + 0.33955044131228845, + 0.3424356846920388 + ], + [ + 0.6979742324561288, + 0.6399824335225491, + 0.5413464823205022, + 0.645782167482547, + 0.8568995028368115, + 0.7944160817249541, + 0.5040838445906838, + 0.6466293567108736, + 0.7959878841543522, + 0.8526359513049687, + 0.4541449122374831, + 0.7659468837018023, + 0.4862194780580989, + 0.7278287920131269, + 0.5545648341317787, + 0.5843940875207893, + 0.795103932409825, + 1.0, + 0.5343084678960888, + 0.625782194153331, + 0.4947454771979007, + 0.6921710085797622, + 0.7949885490945624, + 0.7748295387086904, + 0.46157042163769096, + 0.45873114899624795, + 0.21621373308413627, + 0.7488558731893117, + 0.5200662277594923, + 0.6192520695710337, + 0.26558847949027736, + 0.3388744114503201, + 0.7150571374283239, + 0.7530321797703213, + 0.532618689896447, + 0.5773823756437433, + 0.6393620401678438, + 0.3365455545040665, + 0.535208314025157, + 0.6548495169520024, + 0.24510997571640739, + 0.7135105175754505, + 0.6598028008461208, + 0.6772010366593769, + 0.2534066952209815, + 0.533592315570884, + 0.6618301795950425, + 0.7299098297203935, + 0.7008627450826909, + 0.4972456841322136, + 0.5943987489351065, + 0.2168760001195797, + 0.4999320196487072, + 0.4656702129957007, + 0.6122091164522541 + ], + [ + 0.8549471802066542, + 0.7745594010612042, + 0.44920161839137157, + 0.5931308625022902, + 0.6281500496196887, + 0.7467582434582546, + 0.5435860249239791, + 0.4019966885778924, + 0.48315424338674057, + 0.5301016801546837, + 0.42239605706877603, + 0.5732522602383568, + 0.5081740171948583, + 0.44190005202142724, + 0.27060780892649056, + 0.49297701728591337, + 0.24776530541892144, + 0.5343084678960888, + 1.0, + 0.7808919281896529, + 0.5905894293517182, + 0.5577420946972477, + 0.3652111303208291, + 0.8134377233851837, + 0.3649253578261341, + 0.5294136402916668, + 0.47081845936982814, + 0.738658364194091, + 0.47417503013285, + 0.8710363800010306, + 0.5247880302733151, + 0.5180350728599078, + 0.6589571762848973, + 0.6597523150223126, + 0.5575991324748925, + 0.6253665413993195, + 0.3040808618035864, + 0.4025231465529437, + 0.5691841089261424, + 0.6260640229086107, + 0.41718170028397167, + 0.7781309287307409, + 0.3621570413758753, + 0.7386887870504235, + 0.4381460823772646, + 0.5945164834207689, + 0.39132703520186857, + 0.6402221509222179, + 0.7808421140525537, + 0.49604350716660905, + 0.6141437074397053, + 0.2487831921025849, + 0.5336693165449621, + 0.5670279877188443, + 0.37161236863274777 + ], + [ + 0.7522467760157958, + 0.8034945977215372, + 0.6942284505204617, + 0.8116109927882285, + 0.7908930024329534, + 0.8632830241999623, + 0.45800041630751254, + 0.5245644040175356, + 0.5363921807745362, + 0.6825659121694067, + 0.7295335516037487, + 0.4870051570002683, + 0.6079897795580487, + 0.6515198171079951, + 0.5527089350281476, + 0.6673270459249286, + 0.40741230210550294, + 0.625782194153331, + 0.7808919281896529, + 1.0, + 0.7415072499680035, + 0.8643699519082066, + 0.4060390085021637, + 0.6945352110599505, + 0.7870198709035521, + 0.7784513413873206, + 0.6675314898790742, + 0.6623561434137271, + 0.6809876068105372, + 0.8485913113044284, + 0.6981863408699183, + 0.5757809668174528, + 0.8084076499128166, + 0.7047170134891101, + 0.8793263249865078, + 0.8883622743650897, + 0.6279925979809005, + 0.7945292300213009, + 0.6699095654024301, + 0.6423866023463809, + 0.7823558997062845, + 0.9512167188440357, + 0.7993882293935993, + 0.9072468360832515, + 0.7794891099866268, + 0.8552204190508966, + 0.4393225174828128, + 0.6996476745548, + 0.7584809555483166, + 0.7278183290006627, + 0.7551247467954745, + 0.5270472837165733, + 0.6270870996833807, + 0.8477625044416357, + 0.3725249003701879 + ], + [ + 0.722403739449925, + 0.7763281128202395, + 0.6649088923229602, + 0.9057842384376201, + 0.7206053957814076, + 0.7529861191213474, + 0.4278017076436623, + 0.5873065008909873, + 0.4106519826546177, + 0.659069386327838, + 0.4058705047490784, + 0.4593420256184656, + 0.5380468462432806, + 0.6126959584702301, + 0.65005318841617, + 0.8999299770676251, + 0.4699713295706067, + 0.4947454771979007, + 0.5905894293517182, + 0.7415072499680035, + 1.0, + 0.7648305186354992, + 0.45998370155877427, + 0.5893956714828947, + 0.5079958463755935, + 0.6495899018402082, + 0.591500735677047, + 0.6704743344030045, + 0.7310868315107651, + 0.5689425300590765, + 0.4657667728061033, + 0.529599769681511, + 0.6900009765413642, + 0.5535136804098054, + 0.7171463764240498, + 0.6212630077161436, + 0.5733717029241501, + 0.6005695803282244, + 0.5312916746658296, + 0.5467927570619039, + 0.47331517583398347, + 0.7453508678995515, + 0.6345763353166856, + 0.7271347937079433, + 0.42005224297308025, + 0.6901012783648205, + 0.6463531231046701, + 0.5195820786823444, + 0.7714761103838159, + 0.6958025430586443, + 0.7204295323227098, + 0.3540651974330295, + 0.8285650071827741, + 0.6807812244225939, + 0.34032663625035986 + ], + [ + 0.717963556931512, + 0.7883489361557003, + 0.8741761700642151, + 0.8070306472444178, + 0.8289218880019585, + 0.789375091117978, + 0.5564214472968223, + 0.7511991911083193, + 0.520292741894577, + 0.7749829137560109, + 0.7396933411642336, + 0.539257356816626, + 0.5033762668668742, + 0.7654610567442846, + 0.776597175679066, + 0.7752820070285948, + 0.7363828444084977, + 0.6921710085797622, + 0.5577420946972477, + 0.8643699519082066, + 0.7648305186354992, + 1.0, + 0.6111436617629002, + 0.5878919716256154, + 0.7648702025934173, + 0.6457408399899921, + 0.60176303534076, + 0.6254246405947157, + 0.7881076634212489, + 0.6302641490127812, + 0.6349663258625524, + 0.6439854217318116, + 0.785828879352681, + 0.6834437887621163, + 0.9208378215122691, + 0.8969450788214214, + 0.7973866332493587, + 0.7959106828752557, + 0.6130833225152242, + 0.6540684367567086, + 0.7820278454152093, + 0.8950742735989863, + 0.9267526029386453, + 0.8124910478975139, + 0.6729749726862672, + 0.8501520828822448, + 0.4609366703538527, + 0.6177455782859254, + 0.7202476671792521, + 0.7004174498066894, + 0.6709961465407668, + 0.4896132569637386, + 0.5652555987564903, + 0.7968001438743832, + 0.2933073893532326 + ], + [ + 0.662379426440537, + 0.5311321028886156, + 0.7216409074944775, + 0.5704108200517843, + 0.7356313191320075, + 0.559256427985686, + 0.6037486965338841, + 0.7288379511347647, + 0.47067044514373474, + 0.7238639094012755, + 0.18203000755330062, + 0.70963014933385, + 0.23624608774609263, + 0.6699536052672407, + 0.7579826046958557, + 0.5392008274785269, + 0.8632474676242224, + 0.7949885490945624, + 0.3652111303208291, + 0.4060390085021637, + 0.45998370155877427, + 0.6111436617629002, + 1.0, + 0.5924887145314193, + 0.3486951467571271, + 0.12372134619401592, + 0.3932077545873011, + 0.7152174427091532, + 0.6546696151260883, + 0.3300196471728246, + 0.09861651517066358, + 0.5647874645554849, + 0.5233717914609977, + 0.4662742250523863, + 0.45624447618613273, + 0.5056370289340543, + 0.805114808645805, + 0.26620004080872495, + 0.2542406426544316, + 0.5907155634558137, + 0.22265353139193303, + 0.5773586300856484, + 0.5901379676710221, + 0.3285528271685241, + 0.10215873248843302, + 0.5905140122983539, + 0.5659548235632066, + 0.7050550254747846, + 0.593322597356946, + 0.6101658354176572, + 0.3282854722477459, + 0.2155764136165785, + 0.2400283729889583, + 0.353775598255562, + 0.5577879438126266 + ], + [ + 0.8397997533702517, + 0.6627436511808833, + 0.48229901614240667, + 0.5994568494805425, + 0.8104615630259541, + 0.778256883426652, + 0.4601814027419743, + 0.45234367468248693, + 0.6387379668186228, + 0.7561319665090985, + 0.3607856076070778, + 0.7210873865378185, + 0.7038544778604391, + 0.483686360954834, + 0.39300103380506907, + 0.5945552997804776, + 0.4574448133396966, + 0.7748295387086904, + 0.8134377233851837, + 0.6945352110599505, + 0.5893956714828947, + 0.5878919716256154, + 0.5924887145314193, + 1.0, + 0.33941208706208376, + 0.5497424862239034, + 0.4519427673346164, + 0.9155548656053714, + 0.5609558702016147, + 0.8575710293871396, + 0.36143699869708046, + 0.43188394470749597, + 0.8521385447764038, + 0.8484664361639245, + 0.5460647318616675, + 0.6193889671372136, + 0.4430716256070857, + 0.403586357236963, + 0.5791602528785198, + 0.5707360617361696, + 0.3042634908466649, + 0.7561559878660862, + 0.4813075513023034, + 0.7205104255460103, + 0.32454359861116494, + 0.4798077490711936, + 0.7362507380228429, + 0.784574061899774, + 0.8930231070325614, + 0.49193587916377063, + 0.7083017848618428, + 0.41894096554953525, + 0.5180709822770697, + 0.5856738378742669, + 0.6147667803715157 + ], + [ + 0.5147987124475846, + 0.5575737058786162, + 0.6468561406778311, + 0.6654008991615136, + 0.7018824495377805, + 0.6082403599775861, + 0.5080638515399573, + 0.6060662741507457, + 0.5330091860948736, + 0.6386566870434928, + 0.8043597665062642, + 0.38145858776468355, + 0.45113852447434794, + 0.686211209670609, + 0.58787323032419, + 0.5458754711428525, + 0.4350800221791539, + 0.46157042163769096, + 0.3649253578261341, + 0.7870198709035521, + 0.5079958463755935, + 0.7648702025934173, + 0.3486951467571271, + 0.33941208706208376, + 1.0, + 0.6948607067685473, + 0.55582133480542, + 0.3570993706629163, + 0.5962974092359369, + 0.525356375445779, + 0.7072006307693133, + 0.46211423155675685, + 0.6170273754221599, + 0.5011778391521222, + 0.7421015871854306, + 0.7252787978429343, + 0.6173962865589471, + 0.8096355182936111, + 0.5337907812464833, + 0.575083094300812, + 0.7351276871396094, + 0.7017756376859011, + 0.8145814077292791, + 0.7148674588661866, + 0.7678097770005362, + 0.7594011172046455, + 0.3001132519374269, + 0.5203232559236648, + 0.49163117237500453, + 0.6699509396745588, + 0.6229472829683543, + 0.5340278947595937, + 0.425005820368396, + 0.677874207651114, + 0.28489556809249034 + ], + [ + 0.5394309535854055, + 0.5364375957179154, + 0.3885738865780917, + 0.6425188542285984, + 0.7151159036774977, + 0.7066917190746899, + 0.34353527803052963, + 0.4104531308377713, + 0.6683853543377106, + 0.690961060761799, + 0.6049530567463816, + 0.5207164705263665, + 0.8083531479338757, + 0.4426303070058058, + 0.38263013333407264, + 0.6379603657671634, + 0.1904822905581787, + 0.45873114899624795, + 0.5294136402916668, + 0.7784513413873206, + 0.6495899018402082, + 0.6457408399899921, + 0.12372134619401592, + 0.5497424862239034, + 0.6948607067685473, + 1.0, + 0.4370491427139446, + 0.3963277821511094, + 0.5524150872948992, + 0.740417421988675, + 0.64659085917822, + 0.2851954745520818, + 0.759569150669264, + 0.7299171835762884, + 0.6365001945796966, + 0.619579761753517, + 0.363905463666038, + 0.6426958856110754, + 0.8901805785050906, + 0.6661208452699673, + 0.5353162315736032, + 0.6058494490221931, + 0.659219525947102, + 0.8800618902766162, + 0.6191237254991655, + 0.5386842031806405, + 0.49307724850316087, + 0.5946844200204846, + 0.7200973651863622, + 0.5661418413749104, + 0.8800865413964702, + 0.5043780320672817, + 0.8028832836192932, + 0.6179310338889371, + 0.4663935500245699 + ], + [ + 0.5012238820812672, + 0.38891122400509165, + 0.7336613670127667, + 0.621489993373934, + 0.49217846422616796, + 0.39765814920923626, + 0.2705269841833788, + 0.334927249002717, + 0.07536378613421765, + 0.4514449807544754, + 0.3502797979617842, + 0.2863401181022031, + 0.44343551250931496, + 0.325687622382518, + 0.6096354515090511, + 0.5499841647423336, + 0.1930287876257665, + 0.21621373308413627, + 0.47081845936982814, + 0.6675314898790742, + 0.591500735677047, + 0.60176303534076, + 0.3932077545873011, + 0.4519427673346164, + 0.55582133480542, + 0.4370491427139446, + 1.0, + 0.5935573135813705, + 0.7180607063539658, + 0.5444284186843679, + 0.5440870169254735, + 0.7301181530026677, + 0.5612028464890676, + 0.36955586103043053, + 0.6793944012972332, + 0.6914783151828011, + 0.6632121609115212, + 0.7871340652391345, + 0.2671488072407408, + 0.3488026440402955, + 0.736064899812138, + 0.6699888763720007, + 0.6038923727118914, + 0.4609059335373485, + 0.6888934399235728, + 0.7541947688160984, + 0.38327864420765567, + 0.6592182928443261, + 0.5848027751026038, + 0.78561101868267, + 0.48728188047468735, + 0.6950239259252013, + 0.2810559635045038, + 0.678658093641584, + 0.4272972571 + ], + [ + 0.856541163169654, + 0.6931835077163555, + 0.634148869312101, + 0.7129039452522833, + 0.7789188193510862, + 0.7099287012102277, + 0.5081514402419615, + 0.5633454439732395, + 0.5283109097719736, + 0.739900991479534, + 0.35762439453153655, + 0.7010404186605367, + 0.5555395837486018, + 0.6122250262529406, + 0.5639932204827306, + 0.687236757884366, + 0.5536874095800808, + 0.7488558731893117, + 0.738658364194091, + 0.6623561434137271, + 0.6704743344030045, + 0.6254246405947157, + 0.7152174427091532, + 0.9155548656053714, + 0.3570993706629163, + 0.3963277821511094, + 0.5935573135813705, + 1.0, + 0.6468248628082224, + 0.7315752588841518, + 0.3231786372240426, + 0.5994088421576014, + 0.7708748563584856, + 0.7298755655511605, + 0.5638520317629749, + 0.5907145526884405, + 0.5875337764508315, + 0.4699945138969622, + 0.36231077923867794, + 0.5052901674537698, + 0.31950893468015845, + 0.7741932667982495, + 0.4983584218152351, + 0.6308707018186144, + 0.30469247698465135, + 0.5630856687742846, + 0.7521814643369239, + 0.7746990828886321, + 0.8361825948514834, + 0.6232669235321825, + 0.6508537807747686, + 0.38414032464542214, + 0.46866346481253596, + 0.5757897728826676, + 0.5943470928997487 + ], + [ + 0.7522226850131966, + 0.643323752109422, + 0.8745335509430935, + 0.6435387155689796, + 0.731160444145802, + 0.7068058842456154, + 0.5198760462844418, + 0.6498310727407556, + 0.29450450308506754, + 0.6560267093343943, + 0.36969510112923537, + 0.6492302074666684, + 0.6348309508872, + 0.6724205517920598, + 0.8366605921588584, + 0.6678983188439384, + 0.6105717291006557, + 0.5200662277594923, + 0.47417503013285, + 0.6809876068105372, + 0.7310868315107651, + 0.7881076634212489, + 0.6546696151260883, + 0.5609558702016147, + 0.5962974092359369, + 0.5524150872948992, + 0.7180607063539658, + 0.6468248628082224, + 1.0, + 0.4766929199641688, + 0.3557885351172263, + 0.8361448974287438, + 0.7730558673864518, + 0.6558500979875536, + 0.7809741192567801, + 0.7959823821101546, + 0.8323367507920442, + 0.6948103749822634, + 0.5687048384087192, + 0.7080535796799806, + 0.6689575793209719, + 0.6970543228989458, + 0.770921283244195, + 0.6183219157844283, + 0.38345149111209076, + 0.7768926645378577, + 0.5078781160507132, + 0.7167739934155257, + 0.7645831478943595, + 0.9058233277192275, + 0.6992399153968847, + 0.4646584556242914, + 0.4372365384485173, + 0.6318574334432308, + 0.39984287696033133 + ], + [ + 0.739553829796627, + 0.643599470623371, + 0.42965905126029924, + 0.6504330520685565, + 0.7660749982234306, + 0.7196224492404283, + 0.43272275974605445, + 0.4032835986437483, + 0.6307231046833143, + 0.6948777408244979, + 0.6009515100361764, + 0.5610153075758382, + 0.6514678029300895, + 0.4356594593192346, + 0.2590179303279054, + 0.5841258395613287, + 0.23010352162200745, + 0.6192520695710337, + 0.8710363800010306, + 0.8485913113044284, + 0.5689425300590765, + 0.6302641490127812, + 0.3300196471728246, + 0.8575710293871396, + 0.525356375445779, + 0.740417421988675, + 0.5444284186843679, + 0.7315752588841518, + 0.4766929199641688, + 1.0, + 0.6758671080194396, + 0.4100765175054122, + 0.7662569142693431, + 0.7604574543842632, + 0.6452372824103336, + 0.6952847132450156, + 0.3465271375243113, + 0.5982443824673476, + 0.6835521326278476, + 0.5885960637102227, + 0.5135831354977233, + 0.8020950997116336, + 0.5403573085601644, + 0.8298598328361, + 0.6686410747727248, + 0.593197764706396, + 0.5661384995644634, + 0.7169777575164966, + 0.8252666574177342, + 0.5173140777086904, + 0.7107103346609926, + 0.5880209802538026, + 0.599041626724906, + 0.746512561089821, + 0.5295534674378615 + ], + [ + 0.4560410034153618, + 0.38827271854425727, + 0.4521559128515069, + 0.5788592139728179, + 0.5293728954688586, + 0.3937597836598041, + 0.4320195384145167, + 0.4099049076747425, + 0.48249385947968804, + 0.564790687752113, + 0.7590415322468563, + 0.2561479714713767, + 0.3753185094756571, + 0.33298240708110827, + 0.22306004635493928, + 0.5511589679248219, + 0.1964467719233881, + 0.26558847949027736, + 0.5247880302733151, + 0.6981863408699183, + 0.4657667728061033, + 0.6349663258625524, + 0.09861651517066358, + 0.36143699869708046, + 0.7072006307693133, + 0.64659085917822, + 0.5440870169254735, + 0.3231786372240426, + 0.3557885351172263, + 0.6758671080194396, + 1.0, + 0.3482673363922229, + 0.5041592703374846, + 0.47396083593826094, + 0.6447951437379092, + 0.6097247936680626, + 0.22935227728496244, + 0.7418477644365599, + 0.4845448759114179, + 0.4457695095110361, + 0.6362379441072442, + 0.5999389007425701, + 0.5774215823147155, + 0.6863953202215352, + 0.8593708118353481, + 0.6295145520663958, + 0.29208857243891195, + 0.3442585170920063, + 0.5494235292000766, + 0.39079270113968145, + 0.5383711409931871, + 0.5900162192215144, + 0.4924081458528776, + 0.6525424969271569, + 0.21946400435847507 + ], + [ + 0.6976006203043668, + 0.6225326644987587, + 0.8769137268151772, + 0.5161211197560255, + 0.5018082441900183, + 0.5041007566478678, + 0.6452037452319478, + 0.6230927384227812, + 0.10026018684784194, + 0.4364851279000524, + 0.33180389643733355, + 0.558380233988538, + 0.3400025915257212, + 0.6299851484387251, + 0.7584583379490181, + 0.42101491142124176, + 0.4651333589840063, + 0.3388744114503201, + 0.5180350728599078, + 0.5757809668174528, + 0.529599769681511, + 0.6439854217318116, + 0.5647874645554849, + 0.43188394470749597, + 0.46211423155675685, + 0.2851954745520818, + 0.7301181530026677, + 0.5994088421576014, + 0.8361448974287438, + 0.4100765175054122, + 0.3482673363922229, + 1.0, + 0.5522508187686587, + 0.45676328337482286, + 0.6343126685547402, + 0.6640555554263987, + 0.7305390262983555, + 0.5625809131038114, + 0.2831209199584873, + 0.5776591406842503, + 0.6728552568831139, + 0.601506689526823, + 0.5501697088376758, + 0.42554789921195463, + 0.3871383057872213, + 0.7374960295661791, + 0.2071692136426184, + 0.6293417366745352, + 0.5628758840101845, + 0.7884510420320767, + 0.46211373911566306, + 0.28348229345739795, + 0.19114176303764807, + 0.478394954066714, + 0.23970391761817925 + ], + [ + 0.8007158337390459, + 0.6746852799231634, + 0.6813101366723743, + 0.6469276450272693, + 0.8436341082696549, + 0.8620496048058066, + 0.46172161846716536, + 0.5110517160209186, + 0.6185372047082166, + 0.7997489605535821, + 0.5345741431299958, + 0.7039014923094815, + 0.8558151155481148, + 0.5728330489142496, + 0.603219519014997, + 0.6470799596150545, + 0.5279078165984106, + 0.7150571374283239, + 0.6589571762848973, + 0.8084076499128166, + 0.6900009765413642, + 0.785828879352681, + 0.5233717914609977, + 0.8521385447764038, + 0.6170273754221599, + 0.759569150669264, + 0.5612028464890676, + 0.7708748563584856, + 0.7730558673864518, + 0.7662569142693431, + 0.5041592703374846, + 0.5522508187686587, + 1.0, + 0.9335126862328416, + 0.7805990694150056, + 0.8172531736159692, + 0.613366674078672, + 0.6477475666453228, + 0.7205131507895256, + 0.6491089905787653, + 0.6000936167776898, + 0.7924132890212263, + 0.7610278944792424, + 0.8474456892567902, + 0.49630507492452747, + 0.6553980820605277, + 0.6441815566232456, + 0.7793313211094962, + 0.8909743120781746, + 0.6448051700490596, + 0.8820234775413807, + 0.4978669407644338, + 0.5769515160657505, + 0.6790770045287557, + 0.4938100129266611 + ], + [ + 0.7787099173948823, + 0.6013311981049947, + 0.5202679683444098, + 0.524494898759689, + 0.7909965608095163, + 0.8159878280020518, + 0.46425569560732616, + 0.4948371117878921, + 0.7318478689694716, + 0.8070463016047017, + 0.5063519514538602, + 0.7915635350666606, + 0.8801874792877611, + 0.5621064989650918, + 0.4489288168407916, + 0.5793706743605879, + 0.5362197126679538, + 0.7530321797703213, + 0.6597523150223126, + 0.7047170134891101, + 0.5535136804098054, + 0.6834437887621163, + 0.4662742250523863, + 0.8484664361639245, + 0.5011778391521222, + 0.7299171835762884, + 0.36955586103043053, + 0.7298755655511605, + 0.6558500979875536, + 0.7604574543842632, + 0.47396083593826094, + 0.45676328337482286, + 0.9335126862328416, + 1.0, + 0.6120954541356265, + 0.6770411690498347, + 0.4538951311161603, + 0.5262455038352616, + 0.7681910027783937, + 0.7097535327124769, + 0.43001935950987813, + 0.6862014092828203, + 0.616168264745125, + 0.8601258073909129, + 0.3567218137351025, + 0.47591559424130636, + 0.6504950328367937, + 0.7234161811753109, + 0.8786707409833031, + 0.5192959585366906, + 0.8916120819065487, + 0.354989719273405, + 0.5693762585658797, + 0.5107323473513393, + 0.5520130421275401 + ], + [ + 0.657625356008451, + 0.702073614157279, + 0.8279645876242001, + 0.7142146617235287, + 0.7247433938503173, + 0.732191752455463, + 0.3915461666984023, + 0.5384562099497818, + 0.3199050814940094, + 0.6045205835136181, + 0.7286225343385712, + 0.3767795328256058, + 0.4834073589505676, + 0.5957184635472158, + 0.6597292748066725, + 0.6612685966719074, + 0.5131792111920804, + 0.532618689896447, + 0.5575991324748925, + 0.8793263249865078, + 0.7171463764240498, + 0.9208378215122691, + 0.45624447618613273, + 0.5460647318616675, + 0.7421015871854306, + 0.6365001945796966, + 0.6793944012972332, + 0.5638520317629749, + 0.7809741192567801, + 0.6452372824103336, + 0.6447951437379092, + 0.6343126685547402, + 0.7805990694150056, + 0.6120954541356265, + 1.0, + 0.9653827848408003, + 0.7276237164664335, + 0.8508044319211333, + 0.5427610894773056, + 0.5053406061056883, + 0.8721355296463299, + 0.8684544205779278, + 0.9149823976971974, + 0.7460439687831026, + 0.75148805289902, + 0.8906008613470255, + 0.35065784041726056, + 0.5642790413194622, + 0.6629933598938287, + 0.7182422028959581, + 0.6260883960226669, + 0.6073001703626565, + 0.4578670147106799, + 0.8931763282354799, + 0.13004621045635045 + ], + [ + 0.6913339999100656, + 0.6806972818747983, + 0.8212586576920822, + 0.6273912459983808, + 0.7341165108387565, + 0.7643193838175814, + 0.4053809015414234, + 0.5029220299995399, + 0.33977196530862563, + 0.6136518754939914, + 0.6668899301131829, + 0.4482834622075978, + 0.5535978269160636, + 0.5641649634826457, + 0.639612239997603, + 0.5640159015388537, + 0.5227527207113459, + 0.5773823756437433, + 0.6253665413993195, + 0.8883622743650897, + 0.6212630077161436, + 0.8969450788214214, + 0.5056370289340543, + 0.6193889671372136, + 0.7252787978429343, + 0.619579761753517, + 0.6914783151828011, + 0.5907145526884405, + 0.7959823821101546, + 0.6952847132450156, + 0.6097247936680626, + 0.6640555554263987, + 0.8172531736159692, + 0.6770411690498347, + 0.9653827848408003, + 1.0, + 0.7463598941371801, + 0.8192630877844033, + 0.5985918227390843, + 0.5804113495392926, + 0.8860725714880688, + 0.8902547373530147, + 0.8935546045389889, + 0.7515242707963997, + 0.7290434245493987, + 0.8816250151249093, + 0.33225716675223316, + 0.6619356000951124, + 0.7020469947989408, + 0.7244501417292802, + 0.6239614425561772, + 0.6079139572724931, + 0.3668940819697448, + 0.8549078318557962, + 0.22756286997075234 + ], + [ + 0.568017284925346, + 0.588522257346482, + 0.9061890416590161, + 0.6586079577112284, + 0.6994854794772025, + 0.6170600490102527, + 0.47668312007225866, + 0.6840550554950587, + 0.30808944178687636, + 0.6409622075747646, + 0.39210795777007174, + 0.5591159493011754, + 0.3499788269107566, + 0.7053141377456306, + 0.9410009817351205, + 0.5660852857934638, + 0.7296042988580698, + 0.6393620401678438, + 0.3040808618035864, + 0.6279925979809005, + 0.5733717029241501, + 0.7973866332493587, + 0.805114808645805, + 0.4430716256070857, + 0.6173962865589471, + 0.363905463666038, + 0.6632121609115212, + 0.5875337764508315, + 0.8323367507920442, + 0.3465271375243113, + 0.22935227728496244, + 0.7305390262983555, + 0.613366674078672, + 0.4538951311161603, + 0.7276237164664335, + 0.7463598941371801, + 1.0, + 0.6022778545777003, + 0.37244141090593696, + 0.5734495727234761, + 0.6447408348027299, + 0.7046917074579007, + 0.8440411029581469, + 0.4705463435260318, + 0.4226453834445787, + 0.8048465847297002, + 0.36886459616411293, + 0.743062222187207, + 0.5294781889800391, + 0.8217993976426745, + 0.45823282938122134, + 0.3915206839447881, + 0.2815101727261982, + 0.5623611401840852, + 0.42629668595115366 + ], + [ + 0.48353375597692544, + 0.4713126359814718, + 0.6907052654399594, + 0.6483601578158656, + 0.6101617310232824, + 0.5094102522882691, + 0.24395418921719836, + 0.44767336908925215, + 0.2710166123552009, + 0.5524193380058694, + 0.7571172595077037, + 0.23853715205450596, + 0.519160695692936, + 0.5190346724149048, + 0.530022054496218, + 0.6582146251837621, + 0.3425538260082451, + 0.3365455545040665, + 0.4025231465529437, + 0.7945292300213009, + 0.6005695803282244, + 0.7959106828752557, + 0.26620004080872495, + 0.403586357236963, + 0.8096355182936111, + 0.6426958856110754, + 0.7871340652391345, + 0.4699945138969622, + 0.6948103749822634, + 0.5982443824673476, + 0.7418477644365599, + 0.5625809131038114, + 0.6477475666453228, + 0.5262455038352616, + 0.8508044319211333, + 0.8192630877844033, + 0.6022778545777003, + 1.0, + 0.4595252603154142, + 0.39694335693629795, + 0.8567347076286411, + 0.7609624686383666, + 0.7981131422820589, + 0.7018642448720448, + 0.8392931259541389, + 0.7396313057395751, + 0.39987702261869235, + 0.4707280170805058, + 0.5741966684658992, + 0.7055213808957669, + 0.6150520572256253, + 0.7736863697146518, + 0.37545486226116315, + 0.8522136416537838, + 0.2376413104000962 + ], + [ + 0.5955529525365492, + 0.5438165086290786, + 0.36144655079391214, + 0.47511425833345583, + 0.7106004525965413, + 0.7180559438039522, + 0.4249542174314602, + 0.46673319716167805, + 0.6892095753569024, + 0.68858978998094, + 0.46293302449770135, + 0.6687597677291603, + 0.7963035419734869, + 0.4214671667748953, + 0.3795551414040919, + 0.5495939053479072, + 0.332839109945062, + 0.535208314025157, + 0.5691841089261424, + 0.6699095654024301, + 0.5312916746658296, + 0.6130833225152242, + 0.2542406426544316, + 0.5791602528785198, + 0.5337907812464833, + 0.8901805785050906, + 0.2671488072407408, + 0.36231077923867794, + 0.5687048384087192, + 0.6835521326278476, + 0.4845448759114179, + 0.2831209199584873, + 0.7205131507895256, + 0.7681910027783937, + 0.5427610894773056, + 0.5985918227390843, + 0.37244141090593696, + 0.4595252603154142, + 1.0, + 0.8251649586419518, + 0.4184262672649404, + 0.5473586362268361, + 0.5915840865570614, + 0.8224813902248974, + 0.3937764796771681, + 0.4547160707979772, + 0.4229255743902108, + 0.618648667312379, + 0.7432365611800761, + 0.5047066930695003, + 0.8029072623620341, + 0.3478852634743982, + 0.7096776933578679, + 0.4669190528686385, + 0.4876997585292196 + ], + [ + 0.7756923036287177, + 0.6553880434171927, + 0.5797103607349733, + 0.5753574472122742, + 0.7676436265052962, + 0.748643927897088, + 0.7389001383570759, + 0.7205300615588743, + 0.707396603944475, + 0.7662412832367974, + 0.3875895835017295, + 0.8639236127421852, + 0.6191549156858583, + 0.6782797889458168, + 0.5959955434380652, + 0.5596652033570304, + 0.5887808113281571, + 0.6548495169520024, + 0.6260640229086107, + 0.6423866023463809, + 0.5467927570619039, + 0.6540684367567086, + 0.5907155634558137, + 0.5707360617361696, + 0.575083094300812, + 0.6661208452699673, + 0.3488026440402955, + 0.5052901674537698, + 0.7080535796799806, + 0.5885960637102227, + 0.4457695095110361, + 0.5776591406842503, + 0.6491089905787653, + 0.7097535327124769, + 0.5053406061056883, + 0.5804113495392926, + 0.5734495727234761, + 0.39694335693629795, + 0.8251649586419518, + 1.0, + 0.3776777526021729, + 0.5889464578241208, + 0.587311784847951, + 0.7288421156673721, + 0.28360562544798257, + 0.6229872735705675, + 0.4340895543936887, + 0.7386706728165131, + 0.7667827435687988, + 0.6997260213285673, + 0.7257842165551043, + 0.17056401264216373, + 0.615811990966776, + 0.35737497899967685, + 0.5897220794503727 + ], + [ + 0.42223090730704527, + 0.5123877791304763, + 0.766319236790855, + 0.4947163068709446, + 0.4683509640587339, + 0.5168228749317352, + 0.287253268200691, + 0.3673575199964541, + 0.07929761778232437, + 0.36268246773969626, + 0.6561248114928686, + 0.16327602476678915, + 0.39045330979030907, + 0.43799512281660075, + 0.5647019053471931, + 0.3774502979430853, + 0.2869774198756471, + 0.24510997571640739, + 0.41718170028397167, + 0.7823558997062845, + 0.47331517583398347, + 0.7820278454152093, + 0.22265353139193303, + 0.3042634908466649, + 0.7351276871396094, + 0.5353162315736032, + 0.736064899812138, + 0.31950893468015845, + 0.6689575793209719, + 0.5135831354977233, + 0.6362379441072442, + 0.6728552568831139, + 0.6000936167776898, + 0.43001935950987813, + 0.8721355296463299, + 0.8860725714880688, + 0.6447408348027299, + 0.8567347076286411, + 0.4184262672649404, + 0.3776777526021729, + 1.0, + 0.7326023014031839, + 0.788604984759007, + 0.5929242842417228, + 0.8326906256359132, + 0.805354012593053, + 0.053796833208945675, + 0.4548892246671756, + 0.4310173036219101, + 0.6269683297643535, + 0.45072800383388006, + 0.5982967102096893, + 0.19753401872418186, + 0.7771469941803861, + 0.032731626731159896 + ], + [ + 0.790452643626611, + 0.8297349858738079, + 0.7579470275407942, + 0.8192209629941541, + 0.8120130565543037, + 0.8539280238211381, + 0.462014912044365, + 0.5802779517563432, + 0.4950580060859055, + 0.7042464691340575, + 0.6699600386938163, + 0.49207575574304946, + 0.5242956805789583, + 0.6924190995291998, + 0.611233643902712, + 0.7049886793824653, + 0.5681970119646083, + 0.7135105175754505, + 0.7781309287307409, + 0.9512167188440357, + 0.7453508678995515, + 0.8950742735989863, + 0.5773586300856484, + 0.7561559878660862, + 0.7017756376859011, + 0.6058494490221931, + 0.6699888763720007, + 0.7741932667982495, + 0.6970543228989458, + 0.8020950997116336, + 0.5999389007425701, + 0.601506689526823, + 0.7924132890212263, + 0.6862014092828203, + 0.8684544205779278, + 0.8902547373530147, + 0.7046917074579007, + 0.7609624686383666, + 0.5473586362268361, + 0.5889464578241208, + 0.7326023014031839, + 1.0, + 0.7899773796837984, + 0.8357753889650615, + 0.6909112123199109, + 0.8408121807603572, + 0.5109076551080264, + 0.6975987331721503, + 0.7667953306665668, + 0.7019846738039903, + 0.6563481076781236, + 0.5106515293289268, + 0.5297807504043254, + 0.8480693097103007, + 0.38498957136239476 + ], + [ + 0.5579519895526596, + 0.5947733114777909, + 0.8293874629941828, + 0.7147280647457499, + 0.7963659564538127, + 0.7068514035006839, + 0.4191926873599968, + 0.6353839824400918, + 0.48715737712864277, + 0.7425426937925255, + 0.7017860045524812, + 0.48387445193684503, + 0.4993974163360984, + 0.6609265522654292, + 0.7727706172170932, + 0.6639269825167656, + 0.6637698820189338, + 0.6598028008461208, + 0.3621570413758753, + 0.7993882293935993, + 0.6345763353166856, + 0.9267526029386453, + 0.5901379676710221, + 0.4813075513023034, + 0.8145814077292791, + 0.659219525947102, + 0.6038923727118914, + 0.4983584218152351, + 0.770921283244195, + 0.5403573085601644, + 0.5774215823147155, + 0.5501697088376758, + 0.7610278944792424, + 0.616168264745125, + 0.9149823976971974, + 0.8935546045389889, + 0.8440411029581469, + 0.7981131422820589, + 0.5915840865570614, + 0.587311784847951, + 0.788604984759007, + 0.7899773796837984, + 1.0, + 0.7136545199522731, + 0.699985745147547, + 0.8539692813394073, + 0.41386710226805895, + 0.6478078562929117, + 0.6182397021369073, + 0.7277158375405801, + 0.6279023843608449, + 0.5871649440940815, + 0.4676762568843967, + 0.7744223588648688, + 0.322545316445902 + ], + [ + 0.7525425565180153, + 0.7526860259644382, + 0.5425396514896069, + 0.7501300951186878, + 0.8023781824163846, + 0.8756044084736673, + 0.4585106750411235, + 0.5422163182605549, + 0.7345481506856675, + 0.7762863296206317, + 0.7188021817193497, + 0.6188107142412002, + 0.7719520080739405, + 0.6480426832240671, + 0.46087319171517555, + 0.7216804610349735, + 0.4504756085046259, + 0.6772010366593769, + 0.7386887870504235, + 0.9072468360832515, + 0.7271347937079433, + 0.8124910478975139, + 0.3285528271685241, + 0.7205104255460103, + 0.7148674588661866, + 0.8800618902766162, + 0.4609059335373485, + 0.6308707018186144, + 0.6183219157844283, + 0.8298598328361, + 0.6863953202215352, + 0.42554789921195463, + 0.8474456892567902, + 0.8601258073909129, + 0.7460439687831026, + 0.7515242707963997, + 0.4705463435260318, + 0.7018642448720448, + 0.8224813902248974, + 0.7288421156673721, + 0.5929242842417228, + 0.8357753889650615, + 0.7136545199522731, + 1.0, + 0.616018761092741, + 0.6514967007921513, + 0.5514749272837632, + 0.6427389866846546, + 0.8222662206340359, + 0.6027663211345444, + 0.9041786716124249, + 0.39732193146864037, + 0.7683540642189276, + 0.6838791905304409, + 0.4520097546912284 + ], + [ + 0.3207899864368061, + 0.3845353483683253, + 0.5326259499048108, + 0.5834674041643115, + 0.5030222923035175, + 0.39190882883611533, + 0.2479360012518816, + 0.3096922530950202, + 0.2939613217118969, + 0.45155929586732785, + 0.7720522620379693, + 0.08669692690125573, + 0.30996672652320173, + 0.3204667312776347, + 0.3222253216413145, + 0.44882595303123013, + 0.11835701833943499, + 0.2534066952209815, + 0.4381460823772646, + 0.7794891099866268, + 0.42005224297308025, + 0.6729749726862672, + 0.10215873248843302, + 0.32454359861116494, + 0.7678097770005362, + 0.6191237254991655, + 0.6888934399235728, + 0.30469247698465135, + 0.38345149111209076, + 0.6686410747727248, + 0.8593708118353481, + 0.3871383057872213, + 0.49630507492452747, + 0.3567218137351025, + 0.75148805289902, + 0.7290434245493987, + 0.4226453834445787, + 0.8392931259541389, + 0.3937764796771681, + 0.28360562544798257, + 0.8326906256359132, + 0.6909112123199109, + 0.699985745147547, + 0.616018761092741, + 1.0, + 0.7191310852956534, + 0.17967760053919274, + 0.4186751408419962, + 0.4132661066097924, + 0.4727057085828567, + 0.422530499036957, + 0.7407952127447323, + 0.3384970514979354, + 0.8053042226258179, + 0.1811016982733757 + ], + [ + 0.6828686046002139, + 0.6941098965595139, + 0.8702245284239429, + 0.7765834947336338, + 0.7044574125247881, + 0.7110043542669149, + 0.5392900839314851, + 0.5926197676907629, + 0.33668125776687224, + 0.6092622503106636, + 0.5843644671610747, + 0.4530271613460297, + 0.3507170655414111, + 0.636058562703117, + 0.7339988918109087, + 0.5997838913272302, + 0.5170692460872319, + 0.533592315570884, + 0.5945164834207689, + 0.8552204190508966, + 0.6901012783648205, + 0.8501520828822448, + 0.5905140122983539, + 0.4798077490711936, + 0.7594011172046455, + 0.5386842031806405, + 0.7541947688160984, + 0.5630856687742846, + 0.7768926645378577, + 0.593197764706396, + 0.6295145520663958, + 0.7374960295661791, + 0.6553980820605277, + 0.47591559424130636, + 0.8906008613470255, + 0.8816250151249093, + 0.8048465847297002, + 0.7396313057395751, + 0.4547160707979772, + 0.6229872735705675, + 0.805354012593053, + 0.8408121807603572, + 0.8539692813394073, + 0.6514967007921513, + 0.7191310852956534, + 1.0, + 0.29776953856935817, + 0.6816816781811098, + 0.6297475609513381, + 0.8356402867844536, + 0.5441057283984415, + 0.47912583418001975, + 0.44820816756485676, + 0.7595025420634289, + 0.28845528818374216 + ], + [ + 0.5758810057641066, + 0.3701351210228471, + 0.33149042324596406, + 0.657430683383244, + 0.7499779744551919, + 0.5525950071667688, + 0.2529067667024334, + 0.44017281194113717, + 0.6180734253667994, + 0.7897138626406015, + 0.19649074175450637, + 0.5652173550193235, + 0.6338045307287739, + 0.45683874015722786, + 0.3586177034010345, + 0.7678404067847342, + 0.48931347428542266, + 0.6618301795950425, + 0.39132703520186857, + 0.4393225174828128, + 0.6463531231046701, + 0.4609366703538527, + 0.5659548235632066, + 0.7362507380228429, + 0.3001132519374269, + 0.49307724850316087, + 0.38327864420765567, + 0.7521814643369239, + 0.5078781160507132, + 0.5661384995644634, + 0.29208857243891195, + 0.2071692136426184, + 0.6441815566232456, + 0.6504950328367937, + 0.35065784041726056, + 0.33225716675223316, + 0.36886459616411293, + 0.39987702261869235, + 0.4229255743902108, + 0.4340895543936887, + 0.053796833208945675, + 0.5109076551080264, + 0.41386710226805895, + 0.5514749272837632, + 0.17967760053919274, + 0.29776953856935817, + 1.0, + 0.5644072476149137, + 0.7850014583011238, + 0.47607629842101673, + 0.6380202754176039, + 0.4854339125867203, + 0.6233804204319154, + 0.4805555201460712, + 0.7282364968524548 + ], + [ + 0.7322784771511003, + 0.5555668215102132, + 0.6624279547229898, + 0.6247054445311422, + 0.7934362756632658, + 0.7168994073108517, + 0.5350013884808905, + 0.5339624641209154, + 0.6085971617830556, + 0.7791480981421057, + 0.3086212196261295, + 0.8161364577242004, + 0.6717464826504348, + 0.5360566374290023, + 0.6761542290086491, + 0.5192898647268234, + 0.47288775554857243, + 0.7299098297203935, + 0.6402221509222179, + 0.6996476745548, + 0.5195820786823444, + 0.6177455782859254, + 0.7050550254747846, + 0.784574061899774, + 0.5203232559236648, + 0.5946844200204846, + 0.6592182928443261, + 0.7746990828886321, + 0.7167739934155257, + 0.7169777575164966, + 0.3442585170920063, + 0.6293417366745352, + 0.7793313211094962, + 0.7234161811753109, + 0.5642790413194622, + 0.6619356000951124, + 0.743062222187207, + 0.4707280170805058, + 0.618648667312379, + 0.7386706728165131, + 0.4548892246671756, + 0.6975987331721503, + 0.6478078562929117, + 0.6427389866846546, + 0.4186751408419962, + 0.6816816781811098, + 0.5644072476149137, + 1.0, + 0.7913382248929021, + 0.7709816814506418, + 0.702531186725725, + 0.42988668374840205, + 0.4646415085785533, + 0.4851657893283401, + 0.7926604436540065 + ], + [ + 0.8852002860409804, + 0.6791334423093658, + 0.6150720325003957, + 0.7222999582880033, + 0.8695460824878364, + 0.8137037015924088, + 0.5500716128232604, + 0.5799540189171172, + 0.6606036793659644, + 0.8538249377503986, + 0.40514698723013426, + 0.7795349977693646, + 0.8086686290239311, + 0.5538160230421568, + 0.5329532135799724, + 0.7777486165591498, + 0.523355313640957, + 0.7008627450826909, + 0.7808421140525537, + 0.7584809555483166, + 0.7714761103838159, + 0.7202476671792521, + 0.593322597356946, + 0.8930231070325614, + 0.49163117237500453, + 0.7200973651863622, + 0.5848027751026038, + 0.8361825948514834, + 0.7645831478943595, + 0.8252666574177342, + 0.5494235292000766, + 0.5628758840101845, + 0.8909743120781746, + 0.8786707409833031, + 0.6629933598938287, + 0.7020469947989408, + 0.5294781889800391, + 0.5741966684658992, + 0.7432365611800761, + 0.7667827435687988, + 0.4310173036219101, + 0.7667953306665668, + 0.6182397021369073, + 0.8222662206340359, + 0.4132661066097924, + 0.6297475609513381, + 0.7850014583011238, + 0.7913382248929021, + 1.0, + 0.6846788611479842, + 0.8521609245081485, + 0.4925100051023798, + 0.7039725520423332, + 0.6405386999852365, + 0.6489350586655714 + ], + [ + 0.6940734260935649, + 0.6028785385284049, + 0.7872412471549995, + 0.725142199107481, + 0.7015979900188997, + 0.6680242035964035, + 0.4741656271997366, + 0.5907429720217906, + 0.32205803992743365, + 0.6176057442661567, + 0.38791500729773926, + 0.5990395559833124, + 0.5345878733957407, + 0.6778434044066529, + 0.7747632180631138, + 0.6422812430112779, + 0.4613553835862867, + 0.4972456841322136, + 0.49604350716660905, + 0.7278183290006627, + 0.6958025430586443, + 0.7004174498066894, + 0.6101658354176572, + 0.49193587916377063, + 0.6699509396745588, + 0.5661418413749104, + 0.78561101868267, + 0.6232669235321825, + 0.9058233277192275, + 0.5173140777086904, + 0.39079270113968145, + 0.7884510420320767, + 0.6448051700490596, + 0.5192959585366906, + 0.7182422028959581, + 0.7244501417292802, + 0.8217993976426745, + 0.7055213808957669, + 0.5047066930695003, + 0.6997260213285673, + 0.6269683297643535, + 0.7019846738039903, + 0.7277158375405801, + 0.6027663211345444, + 0.4727057085828567, + 0.8356402867844536, + 0.47607629842101673, + 0.7709816814506418, + 0.6846788611479842, + 1.0, + 0.6651985286404798, + 0.4742895936784022, + 0.47212492819644186, + 0.6261728783704935, + 0.5082171033542839 + ], + [ + 0.7429955297172559, + 0.6205522055461917, + 0.5124049742501592, + 0.6728149035280914, + 0.7586690373373817, + 0.8034545868303146, + 0.4406513465035413, + 0.49281797859010296, + 0.7058468399924752, + 0.7733556035359226, + 0.5267435719414724, + 0.7283842054113374, + 0.9040048879772337, + 0.5750760951037514, + 0.5152024738897231, + 0.7039533829369689, + 0.38019580503727507, + 0.5943987489351065, + 0.6141437074397053, + 0.7551247467954745, + 0.7204295323227098, + 0.6709961465407668, + 0.3282854722477459, + 0.7083017848618428, + 0.6229472829683543, + 0.8800865413964702, + 0.48728188047468735, + 0.6508537807747686, + 0.6992399153968847, + 0.7107103346609926, + 0.5383711409931871, + 0.46211373911566306, + 0.8820234775413807, + 0.8916120819065487, + 0.6260883960226669, + 0.6239614425561772, + 0.45823282938122134, + 0.6150520572256253, + 0.8029072623620341, + 0.7257842165551043, + 0.45072800383388006, + 0.6563481076781236, + 0.6279023843608449, + 0.9041786716124249, + 0.422530499036957, + 0.5441057283984415, + 0.6380202754176039, + 0.702531186725725, + 0.8521609245081485, + 0.6651985286404798, + 1.0, + 0.35519963160112644, + 0.7683334139492171, + 0.5161803705495828, + 0.5544846587947807 + ], + [ + 0.26185111103209263, + 0.13289204975664873, + 0.41032941068460144, + 0.4157263241802078, + 0.53450861911678, + 0.22010739392640574, + 0.05750375132222895, + 0.22185189385984438, + 0.17560599129549312, + 0.46572531460619115, + 0.4857857199141157, + 0.10634760750046486, + 0.42463246175497343, + 0.14794448618283643, + 0.2586709097873072, + 0.4928756627305519, + 0.10496351766228496, + 0.2168760001195797, + 0.2487831921025849, + 0.5270472837165733, + 0.3540651974330295, + 0.4896132569637386, + 0.2155764136165785, + 0.41894096554953525, + 0.5340278947595937, + 0.5043780320672817, + 0.6950239259252013, + 0.38414032464542214, + 0.4646584556242914, + 0.5880209802538026, + 0.5900162192215144, + 0.28348229345739795, + 0.4978669407644338, + 0.354989719273405, + 0.6073001703626565, + 0.6079139572724931, + 0.3915206839447881, + 0.7736863697146518, + 0.3478852634743982, + 0.17056401264216373, + 0.5982967102096893, + 0.5106515293289268, + 0.5871649440940815, + 0.39732193146864037, + 0.7407952127447323, + 0.47912583418001975, + 0.4854339125867203, + 0.42988668374840205, + 0.4925100051023798, + 0.4742895936784022, + 0.35519963160112644, + 1.0, + 0.2003831818378147, + 0.7989547160899797, + 0.3443237879511283 + ], + [ + 0.5644704605658656, + 0.6111037257482353, + 0.3136227346107198, + 0.7968159323621162, + 0.665257014717626, + 0.6796574849157799, + 0.37975844851879526, + 0.48160484336305687, + 0.6810012978004116, + 0.6889207216539872, + 0.381467260611558, + 0.5196786798147742, + 0.5855141192907051, + 0.47425759747315155, + 0.3780198275335965, + 0.8007736971033648, + 0.2958731815424229, + 0.4999320196487072, + 0.5336693165449621, + 0.6270870996833807, + 0.8285650071827741, + 0.5652555987564903, + 0.2400283729889583, + 0.5180709822770697, + 0.425005820368396, + 0.8028832836192932, + 0.2810559635045038, + 0.46866346481253596, + 0.4372365384485173, + 0.599041626724906, + 0.4924081458528776, + 0.19114176303764807, + 0.5769515160657505, + 0.5693762585658797, + 0.4578670147106799, + 0.3668940819697448, + 0.2815101727261982, + 0.37545486226116315, + 0.7096776933578679, + 0.615811990966776, + 0.19753401872418186, + 0.5297807504043254, + 0.4676762568843967, + 0.7683540642189276, + 0.3384970514979354, + 0.44820816756485676, + 0.6233804204319154, + 0.4646415085785533, + 0.7039725520423332, + 0.47212492819644186, + 0.7683334139492171, + 0.2003831818378147, + 1.0, + 0.4469325785976202, + 0.4759146196601045 + ], + [ + 0.5728671814306577, + 0.6235901313062604, + 0.6420912099935601, + 0.7163917056068443, + 0.717637778878373, + 0.6249006931408002, + 0.26624624733314073, + 0.4413790713047968, + 0.2808487981321887, + 0.5575078259349129, + 0.6993465262785614, + 0.21734132961304298, + 0.4303879739499074, + 0.5056897510415799, + 0.4447591698947423, + 0.6725539785720249, + 0.33955044131228845, + 0.4656702129957007, + 0.5670279877188443, + 0.8477625044416357, + 0.6807812244225939, + 0.7968001438743832, + 0.353775598255562, + 0.5856738378742669, + 0.677874207651114, + 0.6179310338889371, + 0.678658093641584, + 0.5757897728826676, + 0.6318574334432308, + 0.746512561089821, + 0.6525424969271569, + 0.478394954066714, + 0.6790770045287557, + 0.5107323473513393, + 0.8931763282354799, + 0.8549078318557962, + 0.5623611401840852, + 0.8522136416537838, + 0.4669190528686385, + 0.35737497899967685, + 0.7771469941803861, + 0.8480693097103007, + 0.7744223588648688, + 0.6838791905304409, + 0.8053042226258179, + 0.7595025420634289, + 0.4805555201460712, + 0.4851657893283401, + 0.6405386999852365, + 0.6261728783704935, + 0.5161803705495828, + 0.7989547160899797, + 0.4469325785976202, + 1.0, + 0.18794660071275177 + ], + [ + 0.4331430433385417, + 0.18769418751140904, + 0.2622043624200369, + 0.483185072306144, + 0.6175511697153209, + 0.44003988877993483, + 0.29072040148806544, + 0.3454380602039918, + 0.6620671093641269, + 0.7293152451616163, + 0.026868040273543888, + 0.681603655759193, + 0.6084875056774202, + 0.3195359216043015, + 0.3694769598707767, + 0.4675310409870475, + 0.3424356846920388, + 0.6122091164522541, + 0.37161236863274777, + 0.3725249003701879, + 0.34032663625035986, + 0.2933073893532326, + 0.5577879438126266, + 0.6147667803715157, + 0.28489556809249034, + 0.4663935500245699, + 0.4272972571, + 0.5943470928997487, + 0.39984287696033133, + 0.5295534674378615, + 0.21946400435847507, + 0.23970391761817925, + 0.4938100129266611, + 0.5520130421275401, + 0.13004621045635045, + 0.22756286997075234, + 0.42629668595115366, + 0.2376413104000962, + 0.4876997585292196, + 0.5897220794503727, + 0.032731626731159896, + 0.38498957136239476, + 0.322545316445902, + 0.4520097546912284, + 0.1811016982733757, + 0.28845528818374216, + 0.7282364968524548, + 0.7926604436540065, + 0.6489350586655714, + 0.5082171033542839, + 0.5544846587947807, + 0.3443237879511283, + 0.4759146196601045, + 0.18794660071275177, + 1.0 + ] + ] + } +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/constructorParams.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/constructorParams.json new file mode 100644 index 0000000000..313a22fde2 --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case2/constructorParams.json @@ -0,0 +1,5 @@ +{ + "geneIds": "b0023,b0405,b0469,b0536,b0672,b0738,b1088,b1530,b1826,b1910,b2255,b2316,b2317,b2512,b2533,b2695,b2765,b2807,b2960,b3162,b3171,b3175,b3185,b3186,b3191,b3228,b3237,b3257,b3261,b3273,b3360,b3492,b3570,b3606,b3703,b3704,b3705,b3706,b3727,b3728,b3740,b3741,b3783,b4060,b4156,b4234,b4369,b4410,b4418,b4433,b4434,b4448,b4501,b4557,b4607", + "expressionMatrixID": "SomeFakeData", + "workspaceID": "eapearson:narrative_1626270955005" +} \ No newline at end of file diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.request.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.request.json new file mode 100644 index 0000000000..296d86955c --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.request.json @@ -0,0 +1,269 @@ +{ + "input_data": "eapearson:narrative_1626270955005/SomeFakeData", + "row_ids": [ + "b0049", + "b0080", + "b0111", + "b0149", + "b0181", + "b0185", + "b0187", + "b0190", + "b0215", + "b0225", + "b0226", + "b0340", + "b0349", + "b0383", + "b0387", + "b0409", + "b0410", + "b0415", + "b0416", + "b0418", + "b0420", + "b0421", + "b0424", + "b0425", + "b0446", + "b0452", + "b0454", + "b0457", + "b0462", + "b0484", + "b0487", + "b0491", + "b0493", + "b0494", + "b0496", + "b0524", + "b0529", + "b0555", + "b0567", + "b0569", + "b0570", + "b0572", + "b0573", + "b0574", + "b0575", + "b0579", + "b0606", + "b0607", + "b0612", + "b0624", + "b0634", + "b0635", + "b0637", + "b0638", + "b0639", + "b0640", + "b0641", + "b0642", + "b0653", + "b0676", + "b0683", + "b0686", + "b0687", + "b0688", + "b0695", + "b0696", + "b0730", + "b0732", + "b0733", + "b0734", + "b0735", + "b0762", + "b0765", + "b0766", + "b0773", + "b0776", + "b0777", + "b0778", + "b0802", + "b0806", + "b0814", + "b0815", + "b0834", + "b0835", + "b0838", + "b0839", + "b0840", + "b0841", + "b0842", + "b0843", + "b0845", + "b0849", + "b0850", + "b0851", + "b0853", + "b0874", + "b0876", + "b0877", + "b0885", + "b0886", + "b0887", + "b0912", + "b0913", + "b0915", + "b0918", + "b0922", + "b0923", + "b0925", + "b0926", + "b0927", + "b0945", + "b0946", + "b0947", + "b0948", + "b0949", + "b0950", + "b0951", + "b0955", + "b0956", + "b0961", + "b0962", + "b0982", + "b0983", + "b0984", + "b0985", + "b0986", + "b0987", + "b0996", + "b0998", + "b0999", + "b1021", + "b1022", + "b1023", + "b1024", + "b1029", + "b1033", + "b1034", + "b1037", + "b1045", + "b1068", + "b1100", + "b1103", + "b1104", + "b1106", + "b1110", + "b1111", + "b1114", + "b1129", + "b1130", + "b1131", + "b1134", + "b1135", + "b1143", + "b1171", + "b1181", + "b1187", + "b1191", + "b1207", + "b1208", + "b1209", + "b1211", + "b1212", + "b1214", + "b1215", + "b1219", + "b1220", + "b1221", + "b1245", + "b1246", + "b1248", + "b1254", + "b1255", + "b1257", + "b1259", + "b1260", + "b1273", + "b1277", + "b1280", + "b1283", + "b1284", + "b1285", + "b1288", + "b1290", + "b1291", + "b1292", + "b1293", + "b1294", + "b1319", + "b1320", + "b1357", + "b1358", + "b1360", + "b1370", + "b1412", + "b1414", + "b1420", + "b1434", + "b1435", + "b1469", + "b1478", + "b1540", + "b1542", + "b1550", + "b1587", + "b1588", + "b1591", + "b1595", + "b1596", + "b1626", + "b1632", + "b1661", + "b1664", + "b1710", + "b1715", + "b1726", + "b1729", + "b1733", + "b1764", + "b1765", + "b1768", + "b1789", + "b1793", + "b1812", + "b1813", + "b1877", + "b1924", + "b1955", + "b1960", + "b1981", + "b2032", + "b2033", + "b2034", + "b2036", + "b2037", + "b2038", + "b2044", + "b2143", + "b2177", + "b2179", + "b2263", + "b2265", + "b2299", + "b2301", + "b2311", + "b2320", + "b2330", + "b2351", + "b2442", + "b2509", + "b2604", + "b2667", + "b3065", + "b3294", + "b3499", + "b3988", + "b4399", + "b4428", + "b4517", + "b4539", + "b4571", + "b4577", + "b4593" + ], + "fl_row_pairwise_correlation": 1, + "fl_row_set_stats": 1 +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.response.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.response.json new file mode 100644 index 0000000000..05eabc6141 --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/KBaseFeatureValues.get_submatrix_stat.response.json @@ -0,0 +1,72592 @@ +{ + "mtx_descriptor": { + "matrix_id": "SomeFakeData", + "matrix_name": "SomeFakeData", + "genome_id": "NC_000913", + "genome_name": "Escherichia coli str. K-12 substr. MG1655", + "rows_count": 4297, + "columns_count": 16, + "scale": "1.0", + "type": "log-ratio" + }, + "row_descriptors": [ + { + "index": 101, + "id": "b0049", + "name": "apaH; NP_414591.1", + "description": "", + "properties": { "function": "diadenosine tetraphosphatase" } + }, + { + "index": 806, + "id": "b0080", + "name": "cra; NP_414622.1", + "description": "", + "properties": { + "function": "transcriptional repressor of fru operon and others" + } + }, + { + "index": 91, + "id": "b0111", + "name": "ampE; NP_414653.1", + "description": "", + "properties": { "function": "regulates ampC" } + }, + { + "index": 1528, + "id": "b0149", + "name": "mrcB; NP_414691.1", + "description": "", + "properties": { + "function": "peptidoglycan synthetase; penicillin-binding protein 1B" + } + }, + { + "index": 1337, + "id": "b0181", + "name": "lpxA; NP_414723.1", + "description": "", + "properties": { + "function": "UDP-N-acetylglucosamine acetyltransferase; lipid A biosynthesis" + } + }, + { + "index": 12, + "id": "b0185", + "name": "accA; NP_414727.1", + "description": "", + "properties": { + "function": "acetylCoA carboxylase, carboxytransferase component, alpha subunit" + } + }, + { + "index": 2707, + "id": "b0187", + "name": "yaeR; NP_414729.4", + "description": "", + "properties": { "function": "putative lyase" } + }, + { + "index": 2706, + "id": "b0190", + "name": "yaeQ; NP_414732.1", + "description": "", + "properties": { "function": "PDDEXK superfamily protein" } + }, + { + "index": 540, + "id": "b0215", + "name": "dnaQ; NP_414751.1", + "description": "", + "properties": { "function": "DNA polymerase III, epsilon subunit" } + }, + { + "index": 2718, + "id": "b0225", + "name": "yafQ; NP_414760.1", + "description": "", + "properties": { + "function": "mRNA interferase toxin of toxin-antitoxin pair YafQ/DinJ" + } + }, + { + "index": 518, + "id": "b0226", + "name": "dinJ; NP_414761.1", + "description": "", + "properties": { "function": "damage-inducible protein J" } + }, + { + "index": 420, + "id": "b0340", + "name": "cynS; NP_414874.1", + "description": "", + "properties": { "function": "cyanate aminohydrolase, cyanase" } + }, + { + "index": 1465, + "id": "b0349", + "name": "mhpC; NP_414883.5", + "description": "", + "properties": { + "function": "2-hydroxy-6-ketonona-2,4-dienedioic acid hydrolase" + } + }, + { + "index": 1814, + "id": "b0383", + "name": "phoA; NP_414917.2", + "description": "", + "properties": { "function": "alkaline phosphatase; start codon corrected" } + }, + { + "index": 2764, + "id": "b0387", + "name": "yaiI; NP_414921.2", + "description": "", + "properties": { "function": "UPF0178 family protein" } + }, + { + "index": 2293, + "id": "b0409", + "name": "secF; NP_414943.1", + "description": "", + "properties": { "function": "protein secretion, membrane protein" } + }, + { + "index": 2776, + "id": "b0410", + "name": "yajD; NP_414944.1", + "description": "", + "properties": { "function": "HNH nuclease family protein" } + }, + { + "index": 2079, + "id": "b0415", + "name": "ribE; NP_414949.1", + "description": "", + "properties": { "function": "riboflavin synthase, beta chain" } + }, + { + "index": 1693, + "id": "b0416", + "name": "nusB; NP_414950.1", + "description": "", + "properties": { "function": "transcription termination; L factor" } + }, + { + "index": 1791, + "id": "b0418", + "name": "pgpA; NP_414952.1", + "description": "", + "properties": { "function": "phosphatidylglycerophosphatase" } + }, + { + "index": 568, + "id": "b0420", + "name": "dxs; NP_414954.1", + "description": "", + "properties": { + "function": "1-deoxyxylulose-5-phosphate synthase; flavoprotein" + } + }, + { + "index": 1232, + "id": "b0421", + "name": "ispA; NP_414955.1", + "description": "", + "properties": { "function": "geranyltranstransferase" } + }, + { + "index": 2779, + "id": "b0424", + "name": "yajL; NP_414958.4", + "description": "", + "properties": { "function": "oxidative-stress-resistance chaperone" } + }, + { + "index": 1748, + "id": "b0425", + "name": "panE; NP_414959.1", + "description": "", + "properties": { "function": "2-dehydropantoate 2-reductase" } + }, + { + "index": 353, + "id": "b0446", + "name": "cof; NP_414980.2", + "description": "", + "properties": { + "function": "thiamine pyrimidine pyrophosphate hydrolase; HMP-PP phosphatase" + } + }, + { + "index": 2447, + "id": "b0452", + "name": "tesB; NP_414986.1", + "description": "", + "properties": { "function": "acyl-CoA thioesterase 2" } + }, + { + "index": 2798, + "id": "b0454", + "name": "ybaZ; NP_414988.1", + "description": "", + "properties": { + "function": "excision repair protein, alkyltransferase-like protein ATL" + } + }, + { + "index": 4014, + "id": "b0457", + "name": "ylaB; NP_414990.2", + "description": "", + "properties": { + "function": "putative membrane-anchored cyclic-di-GMP phosphodiesterase" + } + }, + { + "index": 29, + "id": "b0462", + "name": "acrB; NP_414995.1", + "description": "", + "properties": { "function": "acridine efflux pump" } + }, + { + "index": 354, + "id": "b0484", + "name": "copA; NP_415017.1", + "description": "", + "properties": { "function": "copper transporter" } + }, + { + "index": 398, + "id": "b0487", + "name": "cueR; NP_415020.1", + "description": "", + "properties": { + "function": "copper-responsive regulon transcriptional regulator" + } + }, + { + "index": 2805, + "id": "b0491", + "name": "fetB; NP_415024.4", + "description": "", + "properties": { "function": "putative metal resistance protein" } + }, + { + "index": 2807, + "id": "b0493", + "name": "ybbO; NP_415026.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 2446, + "id": "b0494", + "name": "tesA; NP_415027.1", + "description": "", + "properties": { + "function": "acyl-CoA thioesterase I; also functions as protease I" + } + }, + { + "index": 2808, + "id": "b0496", + "name": "ybbP; NP_415029.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 1341, + "id": "b0524", + "name": "lpxH; NP_415057.1", + "description": "", + "properties": { "function": "UDP-2,3-diacylglucosamine pyrophosphohydrolase" } + }, + { + "index": 780, + "id": "b0529", + "name": "folD; NP_415062.1", + "description": "", + "properties": { + "function": "5,10-methylene-tetrahydrofolate dehydrogenase; 5,10-methylene-tetrahydrofolate cyclohydrolase" + } + }, + { + "index": 161, + "id": "b0555", + "name": "rrrD; NP_415087.1", + "description": "", + "properties": { "function": "bacteriophage lambda lysozyme homolog" } + }, + { + "index": 2812, + "id": "b0567", + "name": "ybcH; NP_415099.1", + "description": "", + "properties": { "function": "PRK09936 family protein" } + }, + { + "index": 1621, + "id": "b0569", + "name": "nfrB; NP_415101.1", + "description": "", + "properties": { + "function": "bacteriophage N4 receptor, subunit, inner membrane protein" + } + }, + { + "index": 404, + "id": "b0570", + "name": "cusS; NP_415102.1", + "description": "", + "properties": { + "function": "copper-sensing histidine kinase in two-component regulatory system with CusR" + } + }, + { + "index": 401, + "id": "b0572", + "name": "cusC; NP_415104.1", + "description": "", + "properties": { + "function": "copper/silver efflux system, outer membrane component" + } + }, + { + "index": 402, + "id": "b0573", + "name": "cusF; NP_415105.1", + "description": "", + "properties": { "function": "periplasmic copper- and silver-binding protein" } + }, + { + "index": 400, + "id": "b0574", + "name": "cusB; NP_415106.1", + "description": "", + "properties": { + "function": "copper/silver efflux system, membrane fusion protein" + } + }, + { + "index": 399, + "id": "b0575", + "name": "cusA; NP_415107.1", + "description": "", + "properties": { "function": "copper/silver efflux system, membrane component" } + }, + { + "index": 2825, + "id": "b0579", + "name": "ybdF; NP_415111.1", + "description": "", + "properties": { "function": "DUF419 family protein" } + }, + { + "index": 62, + "id": "b0606", + "name": "ahpF; NP_415139.2", + "description": "", + "properties": { + "function": "alkyl hydroperoxide reductase, F52a subunit; detoxification of hydroperoxides" + } + }, + { + "index": 2606, + "id": "b0607", + "name": "uspG; NP_415140.1", + "description": "", + "properties": { "function": "universal stress protein UP12" } + }, + { + "index": 325, + "id": "b0612", + "name": "citT; NP_415145.1", + "description": "", + "properties": { "function": "citrate/succinate antiporter; citrate carrier" } + }, + { + "index": 363, + "id": "b0624", + "name": "flc; NP_415157.1", + "description": "", + "properties": { + "function": "fluoride efflux channel, dual topology membrane protein" + } + }, + { + "index": 1530, + "id": "b0634", + "name": "mrdB; NP_415167.1", + "description": "", + "properties": { + "function": "rod shape-determining membrane protein; sensitivity to radiation and drugs" + } + }, + { + "index": 1529, + "id": "b0635", + "name": "mrdA; NP_415168.1", + "description": "", + "properties": { + "function": "cell elongation, e phase; peptidoglycan synthetase; penicillin-binding protein 2" + } + }, + { + "index": 2837, + "id": "b0637", + "name": "rsfS; NP_415170.4", + "description": "", + "properties": { "function": "ribosomal silencing factor" } + }, + { + "index": 347, + "id": "b0638", + "name": "cobC; NP_415171.1", + "description": "", + "properties": { + "function": "homolog of Salmonella cobC, a phosphohistidine protein" + } + }, + { + "index": 1573, + "id": "b0639", + "name": "nadD; NP_415172.1", + "description": "", + "properties": { + "function": "nicotinic acid mononucleotide adenylyltransferase, NAD(P)-dependent" + } + }, + { + "index": 1096, + "id": "b0640", + "name": "holA; NP_415173.1", + "description": "", + "properties": { "function": "DNA polymerase III, delta subunit" } + }, + { + "index": 2096, + "id": "b0641", + "name": "lptE; NP_415174.1", + "description": "", + "properties": { "function": "a minor lipoprotein" } + }, + { + "index": 1298, + "id": "b0642", + "name": "leuS; NP_415175.1", + "description": "", + "properties": { "function": "leucine tRNA synthetase" } + }, + { + "index": 950, + "id": "b0653", + "name": "gltK; NP_415186.1", + "description": "", + "properties": { + "function": "glutamate/aspartate transport system permease; membrane component of ABC superfamily" + } + }, + { + "index": 1579, + "id": "b0676", + "name": "nagC; NP_415202.1", + "description": "", + "properties": { + "function": "transcriptional repressor of nag (N-acetylglucosamine) operon" + } + }, + { + "index": 845, + "id": "b0683", + "name": "fur; NP_415209.1", + "description": "", + "properties": { "function": "negative regulator" } + }, + { + "index": 2853, + "id": "b0686", + "name": "ybfF; NP_415212.1", + "description": "", + "properties": { "function": "acyl-CoA esterase" } + }, + { + "index": 2301, + "id": "b0687", + "name": "seqA; NP_415213.1", + "description": "", + "properties": { "function": "negative modulator of initiation of replication" } + }, + { + "index": 1790, + "id": "b0688", + "name": "pgm; NP_415214.1", + "description": "", + "properties": { "function": "phosphoglucomutase" } + }, + { + "index": 1258, + "id": "b0695", + "name": "kdpD; NP_415223.1", + "description": "", + "properties": { + "function": "sensor for high-affinity potassium transport system; sensory histidine kinase" + } + }, + { + "index": 1257, + "id": "b0696", + "name": "kdpC; NP_415224.1", + "description": "", + "properties": { "function": "high-affinity potassium transport system" } + }, + { + "index": 1491, + "id": "b0730", + "name": "mngR; NP_415258.1", + "description": "", + "properties": { + "function": "transcriptional regulator of succinylCoA synthetase operon" + } + }, + { + "index": 1490, + "id": "b0732", + "name": "mngB; NP_415260.1", + "description": "", + "properties": { "function": "putative sugar hydrolase" } + }, + { + "index": 415, + "id": "b0733", + "name": "cydA; NP_415261.2", + "description": "", + "properties": { + "function": "cytochrome d terminal oxidase, polypeptide subunit I" + } + }, + { + "index": 416, + "id": "b0734", + "name": "cydB; NP_415262.1", + "description": "", + "properties": { + "function": "cytochrome d terminal oxidase polypeptide subunit II" + } + }, + { + "index": 2866, + "id": "b0735", + "name": "ybgE; NP_415263.1", + "description": "", + "properties": { + "function": "putative inner membrane protein in cydABX-ybgE operon" + } + }, + { + "index": 2896, + "id": "b0762", + "name": "acrZ; NP_415283.1", + "description": "", + "properties": { + "function": "AcrAB-TolC efflux pump accessory protein, membrane-associated" + } + }, + { + "index": 1507, + "id": "b0765", + "name": "modC; NP_415286.1", + "description": "", + "properties": { "function": "ATP-binding component of molybdate transport" } + }, + { + "index": 2878, + "id": "b0766", + "name": "ybhA; NP_415287.1", + "description": "", + "properties": { "function": "putative phosphatase" } + }, + { + "index": 2879, + "id": "b0773", + "name": "ybhB; NP_415294.1", + "description": "", + "properties": { "function": "kinase inhibitor homolog, UPF0098 family" } + }, + { + "index": 247, + "id": "b0776", + "name": "bioF; NP_415297.1", + "description": "", + "properties": { "function": "8-amino-7-oxononanoate synthase" } + }, + { + "index": 245, + "id": "b0777", + "name": "bioC; NP_415298.1", + "description": "", + "properties": { + "function": "biotin biosynthesis; reaction prior to pimeloyl CoA" + } + }, + { + "index": 246, + "id": "b0778", + "name": "bioD; NP_415299.1", + "description": "", + "properties": { "function": "dethiobiotin synthetase" } + }, + { + "index": 2903, + "id": "b0802", + "name": "ybiJ; NP_415323.1", + "description": "", + "properties": { "function": "DUF1471 family putative periplasmic protein" } + }, + { + "index": 1400, + "id": "b0806", + "name": "mcbA; NP_415327.2", + "description": "", + "properties": { "function": "colanic acid mucoidy stimulation protein" } + }, + { + "index": 1707, + "id": "b0814", + "name": "ompX; NP_415335.1", + "description": "", + "properties": { "function": "outer membrane protein X" } + }, + { + "index": 2905, + "id": "b0815", + "name": "opgE; NP_415336.1", + "description": "", + "properties": { "function": "putative enzyme" } + }, + { + "index": 4026, + "id": "b0834", + "name": "yliF; NP_415355.1", + "description": "", + "properties": { "function": "putative membrane-anchored diguanylate cyclase" } + }, + { + "index": 4027, + "id": "b0835", + "name": "rimO; NP_415356.1", + "description": "", + "properties": { "function": "ribosomal protein S12 methylthiotransferase" } + }, + { + "index": 4029, + "id": "b0838", + "name": "gstB; NP_415359.4", + "description": "", + "properties": { "function": "putative transferase" } + }, + { + "index": 450, + "id": "b0839", + "name": "dacC; NP_415360.1", + "description": "", + "properties": { + "function": "D-alanyl-D-alanine carboxypeptidase; penicillin-binding protein 6" + } + }, + { + "index": 494, + "id": "b0840", + "name": "deoR; NP_415361.1", + "description": "", + "properties": { + "function": "transcriptional repressor for deo operon, tsx, nupG" + } + }, + { + "index": 2917, + "id": "b0841", + "name": "ybjG; NP_415362.1", + "description": "", + "properties": { "function": "undecaprenyl pyrophosphate phosphatase" } + }, + { + "index": 339, + "id": "b0842", + "name": "mdfA; NP_415363.1", + "description": "", + "properties": { "function": "proton motive force efflux pump" } + }, + { + "index": 2918, + "id": "b0843", + "name": "ybjH; NP_415364.1", + "description": "", + "properties": { "function": "uncharacterized protein" } + }, + { + "index": 2920, + "id": "b0845", + "name": "ybjJ; NP_415366.1", + "description": "", + "properties": { "function": "putative DEOR-type transcriptional regulator" } + }, + { + "index": 990, + "id": "b0849", + "name": "grxA; NP_415370.1", + "description": "", + "properties": { + "function": "glutaredoxin1 redox coenzyme for glutathione-dependent ribonucleotide reductase" + } + }, + { + "index": 2914, + "id": "b0850", + "name": "ybjC; NP_415371.1", + "description": "", + "properties": { "function": "DUF1418 family protein" } + }, + { + "index": 1622, + "id": "b0851", + "name": "nfsA; NP_415372.1", + "description": "", + "properties": { "function": "nitroreductase A, NADPH-dependent, FMN-dependent" } + }, + { + "index": 2924, + "id": "b0853", + "name": "ybjN; NP_415374.1", + "description": "", + "properties": { "function": "putative sensory transduction regulator" } + }, + { + "index": 2916, + "id": "b0874", + "name": "ybjE; NP_415395.2", + "description": "", + "properties": { "function": "putative surface protein" } + }, + { + "index": 2915, + "id": "b0876", + "name": "ybjD; NP_415397.1", + "description": "", + "properties": { + "function": "putative OLD family ATP-dependent endonuclease; DUF2813 family protein" + } + }, + { + "index": 2930, + "id": "b0877", + "name": "ybjX; NP_415398.1", + "description": "", + "properties": { "function": "putative enzyme" } + }, + { + "index": 6, + "id": "b0885", + "name": "aat; NP_415405.1", + "description": "", + "properties": { "function": "leucyl, phenylalanyl-tRNA-protein transferase" } + }, + { + "index": 417, + "id": "b0886", + "name": "cydC; NP_415406.1", + "description": "", + "properties": { + "function": "ATP-binding component of cytochrome-related transport" + } + }, + { + "index": 418, + "id": "b0887", + "name": "cydD; NP_415407.1", + "description": "", + "properties": { + "function": "ATP-binding component of cytochrome-related transport, Zn sensitive" + } + }, + { + "index": 1183, + "id": "b0912", + "name": "ihfB; NP_415432.1", + "description": "", + "properties": { + "function": "integration host factor (IHF), beta subunit; site-specific recombination" + } + }, + { + "index": 2933, + "id": "b0913", + "name": "ycaI; NP_415433.4", + "description": "", + "properties": { "function": "ComEC family inner membrane protein" } + }, + { + "index": 1342, + "id": "b0915", + "name": "lpxK; NP_415435.1", + "description": "", + "properties": { "function": "lipid A 4'kinase" } + }, + { + "index": 1262, + "id": "b0918", + "name": "kdsB; NP_415438.1", + "description": "", + "properties": { "function": "CTP:CMP-3-deoxy-D-manno-octulosonate transferase" } + }, + { + "index": 1552, + "id": "b0922", + "name": "mukF; NP_415442.1", + "description": "", + "properties": { "function": "mukF protein (killing factor KICB)" } + }, + { + "index": 1551, + "id": "b0923", + "name": "mukE; NP_415443.2", + "description": "", + "properties": { + "function": "chromosome condensin MukBEF, MukE localization factor" + } + }, + { + "index": 2942, + "id": "b0925", + "name": "ldtD; NP_415445.1", + "description": "", + "properties": { "function": "putative amidase" } + }, + { + "index": 2947, + "id": "b0926", + "name": "ycbK; NP_415446.1", + "description": "", + "properties": { "function": "M15A protease-related family periplasmic protein" } + }, + { + "index": 2948, + "id": "b0927", + "name": "ycbL; NP_415447.1", + "description": "", + "properties": { "function": "putative metal-binding enzyme" } + }, + { + "index": 1964, + "id": "b0945", + "name": "pyrD; NP_415465.1", + "description": "", + "properties": { "function": "dihydro-orotate dehydrogenase" } + }, + { + "index": 2955, + "id": "b0946", + "name": "zapC; NP_415466.4", + "description": "", + "properties": { "function": "FtsZ stabilizer" } + }, + { + "index": 2956, + "id": "b0947", + "name": "ycbX; NP_415467.1", + "description": "", + "properties": { + "function": "6-N-hydroxylaminopurine detoxification oxidoreductase" + } + }, + { + "index": 2093, + "id": "b0948", + "name": "rlmL; NP_415468.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 2607, + "id": "b0949", + "name": "uup; NP_415469.1", + "description": "", + "properties": { + "function": "putative ATP-binding component of a transport system" + } + }, + { + "index": 1871, + "id": "b0950", + "name": "pqiA; NP_415470.1", + "description": "", + "properties": { "function": "paraquat-inducible protein A" } + }, + { + "index": 1872, + "id": "b0951", + "name": "pqiB; NP_415471.1", + "description": "", + "properties": { + "function": "paraquat-inducible, SoxRS-regulated MCE domain protein" + } + }, + { + "index": 2957, + "id": "b0955", + "name": "ycbZ; NP_415475.1", + "description": "", + "properties": { "function": "putative ATP-dependent protease" } + }, + { + "index": 2945, + "id": "b0956", + "name": "matP; NP_415476.1", + "description": "", + "properties": { "function": "putative dehydrogenase" } + }, + { + "index": 2961, + "id": "b0961", + "name": "yccF; NP_415481.1", + "description": "", + "properties": { "function": "DUF307 family inner membrane protein" } + }, + { + "index": 1044, + "id": "b0962", + "name": "helD; NP_415482.1", + "description": "", + "properties": { "function": "DNA helicase IV" } + }, + { + "index": 619, + "id": "b0982", + "name": "etp; NP_415502.4", + "description": "", + "properties": { "function": "putative phosphatase" } + }, + { + "index": 894, + "id": "b0983", + "name": "gfcE; NP_415503.1", + "description": "", + "properties": { + "function": "putative function in exopolysaccharide production" + } + }, + { + "index": 893, + "id": "b0984", + "name": "gfcD; NP_415504.1", + "description": "", + "properties": { + "function": "putative O-antigen capsule production periplasmic protein" + } + }, + { + "index": 892, + "id": "b0985", + "name": "gfcC; NP_415505.1", + "description": "", + "properties": { + "function": "putative O-antigen capsule production periplasmic protein" + } + }, + { + "index": 891, + "id": "b0986", + "name": "gfcB; NP_415506.1", + "description": "", + "properties": { "function": "putative regulator" } + }, + { + "index": 890, + "id": "b0987", + "name": "gfcA; NP_415507.2", + "description": "", + "properties": { + "function": "O-antigen capsule production threonine-rich inner membrane protein" + } + }, + { + "index": 2497, + "id": "b0996", + "name": "torC; NP_415516.1", + "description": "", + "properties": { + "function": "trimethylamine N-oxide reductase, cytochrome c-type subunit" + } + }, + { + "index": 2498, + "id": "b0998", + "name": "torD; NP_415518.1", + "description": "", + "properties": { "function": "part of trimethylamine-N-oxide oxidoreductase" } + }, + { + "index": 279, + "id": "b0999", + "name": "cbpM; NP_415519.1", + "description": "", + "properties": { "function": "modulator of CbpA co-chaperone" } + }, + { + "index": 1786, + "id": "b1021", + "name": "pgaD; NP_415540.1", + "description": "", + "properties": { + "function": "biofilm PGA synthase PgaCD, regulatory subunit; c-di-GMP-stimulated activity and dimerization" + } + }, + { + "index": 1785, + "id": "b1022", + "name": "pgaC; NP_415541.1", + "description": "", + "properties": { + "function": "biofilm PGA synthase PgaCD, catalytic subunit; poly-beta-1,6-N-acetyl-D-glucosamine synthase" + } + }, + { + "index": 1784, + "id": "b1023", + "name": "pgaB; NP_415542.1", + "description": "", + "properties": { + "function": "poly-beta-1,6-N-acetyl-D-glucosamine (PGA) N-deacetylase outer membrane export lipoprotein" + } + }, + { + "index": 1783, + "id": "b1024", + "name": "pgaA; NP_415543.1", + "description": "", + "properties": { "function": "putative outer membrane protein" } + }, + { + "index": 2971, + "id": "b1029", + "name": "ycdU; NP_415548.1", + "description": "", + "properties": { "function": "putative inner membrane protein" } + }, + { + "index": 896, + "id": "b1033", + "name": "ghrA; NP_415551.2", + "description": "", + "properties": { "function": "putative dehydrogenase" } + }, + { + "index": 2972, + "id": "b1034", + "name": "ycdX; NP_415552.1", + "description": "", + "properties": { "function": "alkaline phosphatase" } + }, + { + "index": 379, + "id": "b1037", + "name": "csgG; NP_415555.1", + "description": "", + "properties": { + "function": "curli production assembly/transport component, 2nd curli operon" + } + }, + { + "index": 4034, + "id": "b1045", + "name": "ymdB; NP_415563.1", + "description": "", + "properties": { "function": "putative polyprotein" } + }, + { + "index": 2984, + "id": "b1068", + "name": "yceM; NP_415586.1", + "description": "", + "properties": { "function": "putative virulence factor" } + }, + { + "index": 2989, + "id": "b1100", + "name": "ycfH; NP_415618.1", + "description": "", + "properties": { "function": "putative DNase" } + }, + { + "index": 1065, + "id": "b1103", + "name": "hinT; NP_415621.3", + "description": "", + "properties": { + "function": "purine nucleoside phosphoramidase, dadA activator protein" + } + }, + { + "index": 2992, + "id": "b1104", + "name": "ycfL; NP_415622.1", + "description": "", + "properties": { "function": "uncharacterized protein" } + }, + { + "index": 2461, + "id": "b1106", + "name": "thiK; NP_415624.1", + "description": "", + "properties": { "function": "putative beta-glucosidase" } + }, + { + "index": 2990, + "id": "b1110", + "name": "ycfJ; NP_415628.1", + "description": "", + "properties": { "function": "uncharacterized protein" } + }, + { + "index": 2995, + "id": "b1111", + "name": "ycfQ; NP_415629.4", + "description": "", + "properties": { "function": "repressor for bhsA(ycfR)" } + }, + { + "index": 1456, + "id": "b1114", + "name": "mfd; NP_415632.1", + "description": "", + "properties": { + "function": "transcription-repair coupling factor; mutation frequency decline" + } + }, + { + "index": 1819, + "id": "b1129", + "name": "phoQ; NP_415647.1", + "description": "", + "properties": { "function": "sensor protein PhoQ" } + }, + { + "index": 1818, + "id": "b1130", + "name": "phoP; NP_415648.1", + "description": "", + "properties": { "function": "transcriptional regulatory protein" } + }, + { + "index": 1938, + "id": "b1131", + "name": "purB; NP_415649.1", + "description": "", + "properties": { "function": "adenylosuccinate lyase" } + }, + { + "index": 1673, + "id": "b1134", + "name": "nudJ; NP_415652.1", + "description": "", + "properties": { + "function": "bifunctional thiamine pyrimidine pyrophosphate hydrolase and thiamine pyrophosphate hydrolase" + } + }, + { + "index": 2101, + "id": "b1135", + "name": "rluE; NP_415653.4", + "description": "", + "properties": { "function": "23S rRNA pseudouridine(2457) synthase" } + }, + { + "index": 4041, + "id": "b1143", + "name": "ymfI; NP_415661.2", + "description": "", + "properties": { "function": "e14 prophage; uncharacterized protein" } + }, + { + "index": 4055, + "id": "b1171", + "name": "ymgD; NP_415689.2", + "description": "", + "properties": { "function": "uncharacterized protein" } + }, + { + "index": 3009, + "id": "b1181", + "name": "ycgN; NP_415699.5", + "description": "", + "properties": { "function": "UPF0153 family cysteine cluster protein" } + }, + { + "index": 663, + "id": "b1187", + "name": "fadR; NP_415705.1", + "description": "", + "properties": { + "function": "negative regulator for fad regulon, and positive activator of fabA" + } + }, + { + "index": 408, + "id": "b1191", + "name": "cvrA; NP_415709.2", + "description": "", + "properties": { "function": "putative cation/proton antiporter" } + }, + { + "index": 1905, + "id": "b1207", + "name": "prs; NP_415725.1", + "description": "", + "properties": { "function": "phosphoribosylpyrophosphate synthetase" } + }, + { + "index": 1235, + "id": "b1208", + "name": "ispE; NP_415726.1", + "description": "", + "properties": { "function": "4-diphosphocytidyl-2-C-methylerythritol kinase" } + }, + { + "index": 1324, + "id": "b1209", + "name": "lolB; NP_415727.1", + "description": "", + "properties": { "function": "outer-membrane lipoprotein" } + }, + { + "index": 1875, + "id": "b1211", + "name": "prfA; NP_415729.1", + "description": "", + "properties": { "function": "peptide chain release factor RF-1" } + }, + { + "index": 1886, + "id": "b1212", + "name": "prmC; NP_415730.1", + "description": "", + "properties": { "function": "possible protoporphyrinogen oxidase" } + }, + { + "index": 3015, + "id": "b1214", + "name": "ychA; NP_415732.1", + "description": "", + "properties": { "function": "transglutaminase-like TPR-repeat protein" } + }, + { + "index": 1261, + "id": "b1215", + "name": "kdsA; NP_415733.1", + "description": "", + "properties": { "function": "2-dehydro-3-deoxyphosphooctulonate aldolase" } + }, + { + "index": 3021, + "id": "b1219", + "name": "ychN; NP_415737.1", + "description": "", + "properties": { "function": "putative sulfur relay protein" } + }, + { + "index": 3022, + "id": "b1220", + "name": "ychO; NP_415738.2", + "description": "", + "properties": { "function": "conserved protein, invasin-like" } + }, + { + "index": 1603, + "id": "b1221", + "name": "narL; NP_415739.1", + "description": "", + "properties": { + "function": "pleiotrophic regulation of anaerobic respiration: response regulator for nar, frd, dms and tor genes" + } + }, + { + "index": 1712, + "id": "b1245", + "name": "oppC; NP_415761.1", + "description": "", + "properties": { + "function": "homolog of Salmonella oligopeptide transport permease protein; membrane component of ABC superfamily" + } + }, + { + "index": 1713, + "id": "b1246", + "name": "oppD; YP_025300.1", + "description": "", + "properties": { + "function": "homolog of Salmonella ATP-binding protein of oligopeptide ABC transport system" + } + }, + { + "index": 3040, + "id": "b1248", + "name": "yciU; NP_415764.4", + "description": "", + "properties": { "function": "UPF0263 family protein" } + }, + { + "index": 3026, + "id": "b1254", + "name": "yciB; NP_415770.1", + "description": "", + "properties": { "function": "IspA family inner membrane protein" } + }, + { + "index": 3027, + "id": "b1255", + "name": "yciC; NP_415771.1", + "description": "", + "properties": { "function": "UPF0259 family inner membrane protein" } + }, + { + "index": 3028, + "id": "b1257", + "name": "yciE; NP_415773.1", + "description": "", + "properties": { + "function": "putative rubrerythrin/ferritin-like metal-binding protein" + } + }, + { + "index": 3030, + "id": "b1259", + "name": "yciG; NP_415775.4", + "description": "", + "properties": { "function": "KGG family protein" } + }, + { + "index": 2523, + "id": "b1260", + "name": "trpA; NP_415776.1", + "description": "", + "properties": { "function": "tryptophan synthase, alpha protein" } + }, + { + "index": 3035, + "id": "b1273", + "name": "yciN; NP_415789.1", + "description": "", + "properties": { "function": "DUF2498 protein YciN" } + }, + { + "index": 2075, + "id": "b1277", + "name": "ribA; NP_415793.1", + "description": "", + "properties": { "function": "GTP cyclohydrolase II" } + }, + { + "index": 3034, + "id": "b1280", + "name": "yciM; NP_415796.1", + "description": "", + "properties": { "function": "putative heat shock protein" } + }, + { + "index": 1716, + "id": "b1283", + "name": "osmB; NP_415799.1", + "description": "", + "properties": { "function": "osmotically inducible lipoprotein" } + }, + { + "index": 3039, + "id": "b1284", + "name": "yciT; NP_415800.1", + "description": "", + "properties": { "function": "putative DEOR-type transcriptional regulator" } + }, + { + "index": 968, + "id": "b1285", + "name": "gmr; NP_415801.1", + "description": "", + "properties": { + "function": "cyclic-di-GMP phosphodiesterase; csgD regulator; modulator of RNase II stability" + } + }, + { + "index": 651, + "id": "b1288", + "name": "fabI; NP_415804.1", + "description": "", + "properties": { "function": "enoyl-[acyl-carrier-protein] reductase (NADH)" } + }, + { + "index": 2271, + "id": "b1290", + "name": "sapF; NP_415806.1", + "description": "", + "properties": { + "function": "putative ATP-binding protein of peptide transport system" + } + }, + { + "index": 2270, + "id": "b1291", + "name": "sapD; NP_415807.1", + "description": "", + "properties": { + "function": "putative ATP-binding protein of peptide transport system" + } + }, + { + "index": 2269, + "id": "b1292", + "name": "sapC; NP_415808.1", + "description": "", + "properties": { + "function": "homolog of Salmonella peptide transport permease protein; membrane component of ABC superfamily" + } + }, + { + "index": 2268, + "id": "b1293", + "name": "sapB; NP_415809.1", + "description": "", + "properties": { + "function": "homolog of Salmonella peptide transport permease protein; membrane component of ABC superfamily" + } + }, + { + "index": 2267, + "id": "b1294", + "name": "sapA; NP_415810.1", + "description": "", + "properties": { + "function": "homolog of Salmonella peptide transport periplasmic protein; periplasmic-binding component of ABC superfamily" + } + }, + { + "index": 1701, + "id": "b1319", + "name": "ompG; NP_415835.1", + "description": "", + "properties": { "function": "outer membrane protein" } + }, + { + "index": 3059, + "id": "b1320", + "name": "ycjW; NP_415836.1", + "description": "", + "properties": { "function": "putative LACI-type transcriptional regulator" } + }, + { + "index": 3070, + "id": "b1357", + "name": "ydaS; NP_415875.1", + "description": "", + "properties": { + "function": "Rac prophage; putative DNA-binding transcriptional regulator" + } + }, + { + "index": 3071, + "id": "b1358", + "name": "ydaT; NP_415876.1", + "description": "", + "properties": { "function": "Rac prophage; uncharacterized protein" } + }, + { + "index": 3073, + "id": "b1360", + "name": "ydaV; NP_415878.1", + "description": "", + "properties": { "function": "putative DNA replication factor" } + }, + { + "index": 1208, + "id": "b1370", + "name": "insH1; NP_415888.1", + "description": "", + "properties": { "function": "IS5 transposase and trans-activator" } + }, + { + "index": 207, + "id": "b1412", + "name": "azoR; NP_415930.1", + "description": "", + "properties": { "function": "acyl carrier protein phosphodiesterase" } + }, + { + "index": 3085, + "id": "b1414", + "name": "ydcF; NP_415932.1", + "description": "", + "properties": { "function": "DUF218 superfamily protein, SAM-binding" } + }, + { + "index": 1514, + "id": "b1420", + "name": "mokB; NP_415937.1", + "description": "", + "properties": { + "function": "regulatory peptide whose translation enables hokB expression" + } + }, + { + "index": 3092, + "id": "b1434", + "name": "ydcN; NP_415951.1", + "description": "", + "properties": { "function": "putative DNA-binding transcriptional regulator" } + }, + { + "index": 3094, + "id": "b1435", + "name": "ydcP; NP_415952.2", + "description": "", + "properties": { "function": "putative protease" } + }, + { + "index": 1606, + "id": "b1469", + "name": "narU; NP_415986.1", + "description": "", + "properties": { "function": "nitrite extrusion protein 2" } + }, + { + "index": 40, + "id": "b1478", + "name": "adhP; NP_415995.4", + "description": "", + "properties": { "function": "alcohol dehydrogenase" } + }, + { + "index": 3136, + "id": "b1540", + "name": "rspR; NP_416058.1", + "description": "", + "properties": { "function": "transcriptional repressor for rspAB" } + }, + { + "index": 3137, + "id": "b1542", + "name": "ydfI; NP_416060.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 971, + "id": "b1550", + "name": "gnsB; NP_416068.2", + "description": "", + "properties": { + "function": "Qin prophage; multicopy suppressor of secG(Cs) and fabA6(Ts)" + } + }, + { + "index": 4096, + "id": "b1587", + "name": "ynfE; NP_416104.1", + "description": "", + "properties": { "function": "putative selenate reductase, periplasmic" } + }, + { + "index": 4097, + "id": "b1588", + "name": "ynfF; NP_416105.4", + "description": "", + "properties": { "function": "S- and N-oxide reductase, A subunit, periplasmic" } + }, + { + "index": 531, + "id": "b1591", + "name": "dmsD; NP_416108.2", + "description": "", + "properties": { + "function": "twin-argninine leader-binding protein for DmsA and TorA" + } + }, + { + "index": 4101, + "id": "b1595", + "name": "ynfL; NP_416112.1", + "description": "", + "properties": { "function": "putative transcriptional regulator LYSR-type" } + }, + { + "index": 4102, + "id": "b1596", + "name": "ynfM; NP_416113.1", + "description": "", + "properties": { "function": "putative transport protein" } + }, + { + "index": 3154, + "id": "b1626", + "name": "ydgK; NP_416143.2", + "description": "", + "properties": { "function": "DUF2569 family inner membrane protein" } + }, + { + "index": 2223, + "id": "b1632", + "name": "rsxE; NP_416149.1", + "description": "", + "properties": { "function": "electron transport complex protein" } + }, + { + "index": 297, + "id": "b1661", + "name": "cfa; NP_416178.1", + "description": "", + "properties": { "function": "cyclopropane fatty acyl phospholipid synthase" } + }, + { + "index": 3166, + "id": "b1664", + "name": "ydhQ; NP_416181.1", + "description": "", + "properties": { "function": "possible enzyme" } + }, + { + "index": 261, + "id": "b1710", + "name": "btuE; NP_416225.1", + "description": "", + "properties": { "function": "vitamin B12 transport" } + }, + { + "index": 1796, + "id": "b1715", + "name": "pheM; NP_416230.1", + "description": "", + "properties": { + "function": "phenylalanyl-tRNA synthetase (pheST) operon leader peptide" + } + }, + { + "index": 4108, + "id": "b1726", + "name": "yniB; NP_416240.1", + "description": "", + "properties": { "function": "putative inner membrane protein" } + }, + { + "index": 3207, + "id": "b1729", + "name": "ydjN; NP_416243.1", + "description": "", + "properties": { "function": "putative transporter" } + }, + { + "index": 305, + "id": "b1733", + "name": "chbG; NP_416247.1", + "description": "", + "properties": { "function": "chito-oligosaccharide deacetylase" } + }, + { + "index": 2300, + "id": "b1764", + "name": "selD; NP_416278.1", + "description": "", + "properties": { + "function": "selenophosphate synthase, H(2)Se added to acrylyl-tRNA" + } + }, + { + "index": 3197, + "id": "b1765", + "name": "ydjA; NP_416279.1", + "description": "", + "properties": { "function": "putative oxidoreductase" } + }, + { + "index": 1835, + "id": "b1768", + "name": "pncA; NP_416282.4", + "description": "", + "properties": { "function": "nicotinamidase/pyrazinamidase" } + }, + { + "index": 3220, + "id": "b1789", + "name": "yeaL; NP_416303.1", + "description": "", + "properties": { "function": "UPF0756 family putative inner membrane protein" } + }, + { + "index": 4124, + "id": "b1793", + "name": "yoaF; NP_416307.1", + "description": "", + "properties": { "function": "DUF333 family outer membrane lipoprotein" } + }, + { + "index": 1740, + "id": "b1812", + "name": "pabB; NP_416326.1", + "description": "", + "properties": { "function": "p-aminobenzoate synthetase, component I" } + }, + { + "index": 1675, + "id": "b1813", + "name": "nudL; NP_416327.1", + "description": "", + "properties": { + "function": "putative CoA pyrophosphohydrolase, weak 3-phosphohydroxypyruvate phosphatase" + } + }, + { + "index": 3261, + "id": "b1877", + "name": "yecT; NP_416391.4", + "description": "", + "properties": { "function": "uncharacterized protein" } + }, + { + "index": 751, + "id": "b1924", + "name": "fliD; NP_416434.1", + "description": "", + "properties": { + "function": "flagellar biosynthesis; filament capping protein; enables filament assembly" + } + }, + { + "index": 3271, + "id": "b1955", + "name": "yedP; NP_416464.1", + "description": "", + "properties": { "function": "putative mannosyl-3-phosphoglycerate phosphatase" } + }, + { + "index": 2626, + "id": "b1960", + "name": "vsr; NP_416469.1", + "description": "", + "properties": { "function": "DNA mismatch endonuclease, patch repair protein" } + }, + { + "index": 2331, + "id": "b1981", + "name": "shiA; NP_416488.1", + "description": "", + "properties": { "function": "shikimate transporter" } + }, + { + "index": 2631, + "id": "b2032", + "name": "wbbK; NP_416536.1", + "description": "", + "properties": { "function": "putative glucose transferase" } + }, + { + "index": 2630, + "id": "b2033", + "name": "wbbJ; NP_416537.1", + "description": "", + "properties": { "function": "putative O-acetyl transferase" } + }, + { + "index": 2629, + "id": "b2034", + "name": "wbbI; NP_416538.1", + "description": "", + "properties": { "function": "putative Galf transferase" } + }, + { + "index": 906, + "id": "b2036", + "name": "glf; NP_416540.1", + "description": "", + "properties": { "function": "UDP-galactopyranose mutase" } + }, + { + "index": 2047, + "id": "b2037", + "name": "wzxB; NP_416541.1", + "description": "", + "properties": { "function": "putative O-antigen transporter" } + }, + { + "index": 2045, + "id": "b2038", + "name": "rfbC; NP_416542.1", + "description": "", + "properties": { "function": "dTDP-6-deoxy-D-glucose-3,5 epimerase" } + }, + { + "index": 2642, + "id": "b2044", + "name": "wcaL; NP_416548.1", + "description": "", + "properties": { + "function": "putative colanic acid biosynthesis glycosyl transferase" + } + }, + { + "index": 293, + "id": "b2143", + "name": "cdd; NP_416648.1", + "description": "", + "properties": { "function": "cytidine/deoxycytidine deaminase" } + }, + { + "index": 3349, + "id": "b2177", + "name": "yejA; NP_416682.4", + "description": "", + "properties": { "function": "periplasmic-binding component of ABC superfamily" } + }, + { + "index": 3351, + "id": "b2179", + "name": "yejE; NP_416684.1", + "description": "", + "properties": { + "function": "putative transport system permease protein; membrane component of ABC superfamily" + } + }, + { + "index": 3374, + "id": "b2263", + "name": "menH; NP_416766.1", + "description": "", + "properties": { "function": "putative enzyme" } + }, + { + "index": 1439, + "id": "b2265", + "name": "menF; NP_416768.4", + "description": "", + "properties": { + "function": "isochorismate hydroxymutase 2, menaquinone biosynthesis" + } + }, + { + "index": 3389, + "id": "b2299", + "name": "yfcD; NP_416802.1", + "description": "", + "properties": { "function": "putative regulator" } + }, + { + "index": 3391, + "id": "b2301", + "name": "yfcF; NP_416804.1", + "description": "", + "properties": { "function": "glutathione S-transferase" } + }, + { + "index": 2566, + "id": "b2311", + "name": "ubiX; NP_416814.1", + "description": "", + "properties": { "function": "3-octaprenyl-4-hydroxybenzoate carboxy-lyase" } + }, + { + "index": 1762, + "id": "b2320", + "name": "pdxB; NP_416823.1", + "description": "", + "properties": { "function": "erythronate-4-phosphate dehyrogenase" } + }, + { + "index": 1885, + "id": "b2330", + "name": "prmB; NP_416833.4", + "description": "", + "properties": { "function": "putative adenine-specific methylase" } + }, + { + "index": 3411, + "id": "b2351", + "name": "gtrB; NP_416852.1", + "description": "", + "properties": { + "function": "CPS-53 (KpLE1) prophage; bactoprenol glucosyl transferase" + } + }, + { + "index": 1225, + "id": "b2442", + "name": "intZ; NP_416937.2", + "description": "", + "properties": { "function": "putative prophage integrase" } + }, + { + "index": 2663, + "id": "b2509", + "name": "xseA; NP_417004.1", + "description": "", + "properties": { "function": "exonuclease VII, large subunit" } + }, + { + "index": 3476, + "id": "b2604", + "name": "yfiN; NP_417095.1", + "description": "", + "properties": { "function": "putative membrane-anchored diguanylate cyclase" } + }, + { + "index": 3509, + "id": "b2667", + "name": "ygaV; NP_417153.1", + "description": "", + "properties": { "function": "tributyltin-inducible repressor of ygaVP" } + }, + { + "index": 2190, + "id": "b3065", + "name": "rpsU; NP_417537.1", + "description": "", + "properties": { "function": "30S ribosomal subunit protein S21" } + }, + { + "index": 2140, + "id": "b3294", + "name": "rplQ; NP_417753.1", + "description": "", + "properties": { "function": "50S ribosomal subunit protein L17" } + }, + { + "index": 3727, + "id": "b3499", + "name": "rlmJ; NP_417956.1", + "description": "", + "properties": { + "function": "23S rRNA m(6)A2030 methyltransferase, SAM-dependent" + } + }, + { + "index": 2161, + "id": "b3988", + "name": "rpoC; NP_418415.1", + "description": "", + "properties": { "function": "RNA polymerase, beta prime subunit" } + }, + { + "index": 366, + "id": "b4399", + "name": "creC; NP_418816.1", + "description": "", + "properties": { + "function": "catabolite repression sensor kinase for PhoB; alternative sensor for pho regulon" + } + }, + { + "index": 1093, + "id": "b4428", + "name": "hokB; YP_025301.1", + "description": "", + "properties": { "function": "small toxic membrane polypeptide" } + }, + { + "index": 970, + "id": "b4517", + "name": "gnsA; YP_588446.1", + "description": "", + "properties": { + "function": "putative phosphatidylethanolamine synthesis regulator" + } + }, + { + "index": 4138, + "id": "b4539", + "name": "yoeB; YP_588458.1", + "description": "", + "properties": { "function": "toxin of the YoeB-YefM toxin-antitoxin system" } + }, + { + "index": 2632, + "id": "b4571", + "name": "wbbL", + "description": "", + "properties": { + "function": "pseudogene, lipopolysaccharide biosynthesis protein" + } + }, + { + "index": 2330, + "id": "b4577", + "name": "sgrS", + "description": "", + "properties": { + "function": "sRNA antisense regulator destabilzes ptsG mRNA, Hfq-dependent; regulated by sgrR" + } + }, + { + "index": 4059, + "id": "b4593", + "name": "ymgI; YP_001165314.1", + "description": "", + "properties": { "function": "uncharacterized protein" } + } + ], + "column_descriptors": [ + { + "index": 0, + "id": "dinI_U_N0025_r1", + "name": "dinI_U_N0025_r1", + "description": "" + }, + { + "index": 1, + "id": "dinP_U_N0025_r1", + "name": "dinP_U_N0025_r1", + "description": "" + }, + { + "index": 2, + "id": "lexA_U_N0025_r1", + "name": "lexA_U_N0025_r1", + "description": "" + }, + { "index": 3, "id": "lon_U_N0025_r1", "name": "lon_U_N0025_r1", "description": "" }, + { "index": 4, "id": "luc_U_N0025_r1", "name": "luc_U_N0025_r1", "description": "" }, + { + "index": 5, + "id": "mazF_U_N0025_r1", + "name": "mazF_U_N0025_r1", + "description": "" + }, + { + "index": 6, + "id": "recA_U_N0025_r1", + "name": "recA_U_N0025_r1", + "description": "" + }, + { + "index": 7, + "id": "relA_U_N0025_r1", + "name": "relA_U_N0025_r1", + "description": "" + }, + { + "index": 8, + "id": "ruvA_U_N0025_r1", + "name": "ruvA_U_N0025_r1", + "description": "" + }, + { + "index": 9, + "id": "sulA_U_N0025_r1", + "name": "sulA_U_N0025_r1", + "description": "" + }, + { + "index": 10, + "id": "umuD_U_N0025_r1", + "name": "umuD_U_N0025_r1", + "description": "" + }, + { + "index": 11, + "id": "uvrA_U_N0025_r1", + "name": "uvrA_U_N0025_r1", + "description": "" + }, + { + "index": 12, + "id": "yebF_U_N0075_r1", + "name": "yebF_U_N0075_r1", + "description": "" + }, + { + "index": 13, + "id": "luc_U_N0075_r1", + "name": "luc_U_N0075_r1", + "description": "" + }, + { + "index": 14, + "id": "zipA_U_N0075_r1", + "name": "zipA_U_N0075_r1", + "description": "" + }, + { "index": 15, "id": "luc_U_N0000_r1", "name": "luc_U_N0000_r1", "description": "" } + ], + "row_set_stats": { + "size": 262, + "avgs": [ + 8.400690625000001, + 8.407144374999998, + 8.44748125, + 9.042010625, + 9.447801875, + 10.159741249999998, + 8.644387499999999, + 9.653245624999998, + 8.453385625, + 8.366935, + 10.08014125, + 6.30295125, + 7.497438750000001, + 7.767166874999999, + 8.338250625, + 9.5060075, + 9.02082875, + 10.7537725, + 10.63816125, + 8.639195, + 9.108811875, + 9.623093749999999, + 8.171508125, + 9.152482500000001, + 8.577593750000002, + 7.948522499999999, + 7.795365624999999, + 7.211286874999999, + 9.570337499999999, + 7.549113749999998, + 8.358983125, + 7.773356874999998, + 9.32620625, + 8.9507525, + 8.463189375, + 9.305594375, + 9.706005625, + 7.310214375, + 7.23217375, + 6.917414375, + 8.580288125000001, + 6.420243750000001, + 6.842983750000001, + 8.124515, + 7.495327500000001, + 8.52197375, + 10.190248125, + 9.01283625, + 7.27770375, + 8.424977499999999, + 9.42749875, + 9.17210375, + 10.431251875000001, + 7.840079375, + 9.403994375, + 9.295072500000002, + 10.136405, + 10.442903124999999, + 7.6010987499999985, + 9.51979, + 10.655361250000002, + 7.7362318750000005, + 10.30456625, + 8.918514374999999, + 8.142278125, + 8.51592625, + 7.67814875, + 7.026485000000001, + 11.167869999999999, + 11.27279375, + 9.56278625, + 8.4225525, + 8.223741249999998, + 9.210486874999999, + 8.3607925, + 7.108703125, + 7.551960625, + 7.455745, + 8.514006875, + 7.97322875, + 12.261099999999999, + 6.776467500000002, + 7.790185625, + 8.671911875, + 8.6858525, + 8.379026249999999, + 8.403626874999999, + 9.136331250000001, + 7.998885, + 7.771748124999999, + 8.46683625, + 8.488504375000002, + 9.959993125, + 9.852795624999999, + 8.80770625, + 6.7886975, + 8.253788125, + 9.682459999999999, + 8.79527625, + 8.789579374999999, + 7.97690375, + 10.28668625, + 7.230000625000001, + 8.913481875, + 9.750099375000001, + 9.601610625, + 10.339603125, + 8.56955875, + 9.331809374999999, + 9.475431875, + 8.681324375, + 8.651659375, + 8.84833375, + 8.955975625, + 9.20587625, + 8.323670000000002, + 8.636725625, + 9.52986125, + 9.000765625000001, + 8.488120625, + 8.7139825, + 7.921924375, + 7.934651874999999, + 7.035368749999999, + 6.844358749999999, + 7.753783125, + 8.630262500000002, + 7.432470625, + 7.36623375, + 8.2215575, + 7.209766875000001, + 7.2021500000000005, + 5.642698125, + 6.700414374999999, + 6.289706250000001, + 9.276006875, + 8.882265000000002, + 7.004701874999999, + 7.8898025, + 8.138014375, + 8.135046874999999, + 9.006285, + 8.978897499999999, + 9.884110625000002, + 7.68384375, + 8.833654999999998, + 8.98969125, + 8.32128625, + 10.1420075, + 9.44139625, + 8.8801075, + 8.504666875, + 6.4528043749999995, + 7.505706875, + 7.9184656250000005, + 9.214166249999998, + 7.94142375, + 10.0179225, + 10.06385625, + 9.020993125, + 9.64214625, + 8.27033875, + 9.259271875, + 10.162074999999998, + 9.134199375, + 7.84939125, + 9.502129374999999, + 10.5193425, + 10.624606250000001, + 9.3754075, + 9.590270625, + 9.421359375, + 5.993303125, + 8.23959, + 8.717820000000001, + 9.109106875, + 9.514606875, + 7.758353124999999, + 8.352821875, + 7.869138750000001, + 6.475474999999999, + 10.434039375, + 8.451044374999999, + 8.077291249999998, + 8.530113125, + 7.9560224999999996, + 9.0859075, + 7.435146875, + 7.517438125, + 5.353336875, + 7.26360625, + 7.838798749999999, + 7.74411625, + 8.283148125, + 7.658919375000002, + 7.478328125000001, + 7.759327500000001, + 8.562673125, + 7.508682499999999, + 7.96044375, + 8.505898125, + 7.250713124999999, + 7.869052499999999, + 6.77550625, + 7.201696250000001, + 8.149839374999999, + 8.445151874999999, + 7.10362875, + 8.129729999999999, + 9.026498750000002, + 8.84369125, + 8.62929625, + 8.882686249999999, + 7.635718125, + 8.981146875, + 7.996482499999999, + 7.2219918750000005, + 10.172735, + 10.020966875000001, + 9.04420875, + 8.4020975, + 8.232546874999999, + 8.44203375, + 8.108551874999998, + 5.84194875, + 6.538343749999999, + 8.378215624999998, + 8.751618125, + 7.047917500000001, + 10.6091775, + 9.790276249999998, + 9.95337125, + 9.311693749999998, + 9.42902, + 9.4973675, + 8.41531125, + 8.977505, + 7.75459625, + 7.128201874999999, + 8.311846250000002, + 9.436146874999999, + 8.428005, + 7.917099375, + 7.428610624999998, + 8.956360625, + 9.884345, + 9.525203125, + 8.0434925, + 8.52834125, + 8.50362375, + 8.325458124999999, + 12.679125, + 12.644118749999999, + 9.1461425, + 10.289569375000001, + 7.582818124999999, + 7.9019125, + 9.760705625, + 8.577284375000001, + 9.795306875000001, + 8.091331250000001, + 4.47685375 + ], + "mins": [ + 7.51022, + 7.62243, + 7.5511, + 8.36207, + 8.56021, + 9.37319, + 7.81544, + 9.30568, + 7.82758, + 6.81945, + 9.4495, + 5.5831, + 6.78641, + 7.16672, + 7.51133, + 8.47195, + 8.25218, + 9.65276, + 9.29768, + 7.42564, + 8.29426, + 8.79043, + 7.23043, + 8.21033, + 7.87889, + 6.83021, + 7.15264, + 6.29093, + 8.91409, + 6.81738, + 7.70575, + 6.94703, + 8.72629, + 8.50852, + 7.72677, + 8.39235, + 8.64604, + 6.97642, + 6.47713, + 6.18242, + 7.99054, + 6.06338, + 6.67369, + 7.6384, + 6.90476, + 7.79734, + 9.42541, + 7.93729, + 6.58814, + 7.88945, + 8.74729, + 8.43564, + 9.75773, + 6.71026, + 8.79455, + 8.31719, + 8.94025, + 9.63321, + 6.94706, + 8.99123, + 9.97968, + 6.56921, + 9.44053, + 8.10717, + 7.5395, + 8.12772, + 6.76513, + 6.3563, + 9.79632, + 10.0414, + 7.98478, + 6.90499, + 7.25899, + 8.29057, + 7.50491, + 6.35913, + 6.99261, + 7.04612, + 7.76566, + 7.48517, + 11.2987, + 5.85026, + 7.41458, + 7.55982, + 7.82431, + 7.31586, + 7.16146, + 7.97827, + 7.13788, + 6.89823, + 7.58676, + 7.55961, + 8.92442, + 8.97939, + 7.66986, + 6.04351, + 7.40978, + 8.18818, + 8.02717, + 8.05274, + 6.50363, + 9.2544, + 6.44647, + 8.06512, + 8.80903, + 8.83571, + 9.55455, + 8.02118, + 8.41044, + 8.40156, + 7.54646, + 7.64531, + 7.74557, + 7.92321, + 8.30685, + 6.84122, + 7.87661, + 8.11461, + 8.21063, + 7.75733, + 7.93456, + 7.37514, + 7.38623, + 6.54398, + 6.10984, + 7.17234, + 7.89164, + 6.88703, + 6.82953, + 7.80147, + 6.40004, + 6.42731, + 4.89252, + 5.46779, + 5.64341, + 8.52182, + 7.7945, + 6.14508, + 7.33336, + 7.28596, + 6.99413, + 7.48027, + 7.9035, + 9.29175, + 7.0826, + 7.92112, + 8.10413, + 7.8868, + 9.78013, + 8.42854, + 7.8975, + 7.5732, + 5.45668, + 6.93229, + 6.89776, + 8.28327, + 7.35489, + 8.6318, + 9.27932, + 7.93658, + 8.10718, + 7.6316, + 8.0326, + 9.25342, + 7.77312, + 7.04871, + 8.53348, + 9.54548, + 9.5943, + 8.20784, + 7.95955, + 8.27485, + 5.27949, + 7.81099, + 7.86362, + 8.35064, + 8.67397, + 7.18481, + 7.56961, + 6.90586, + 5.6974, + 9.07708, + 7.74886, + 6.64044, + 7.59469, + 6.70702, + 8.16586, + 6.72052, + 6.78053, + 4.58457, + 6.5448, + 7.20975, + 6.69861, + 7.19347, + 6.98457, + 6.5034, + 6.47836, + 7.55188, + 6.64541, + 7.59196, + 7.62184, + 6.72502, + 6.51408, + 6.11689, + 6.38464, + 7.14096, + 7.74481, + 6.0353, + 6.98445, + 8.14126, + 8.05288, + 7.72511, + 8.1789, + 5.38098, + 7.55792, + 7.44719, + 6.70354, + 9.38233, + 9.16007, + 7.54788, + 7.8139, + 7.64657, + 7.75722, + 7.58945, + 5.14731, + 6.09566, + 7.86187, + 8.2905, + 6.53713, + 9.54704, + 8.85205, + 8.4477, + 7.88179, + 8.45205, + 8.24297, + 8.14778, + 8.26757, + 7.22105, + 6.58866, + 7.62287, + 8.85968, + 7.99451, + 7.40783, + 6.87059, + 8.33134, + 9.38189, + 8.78886, + 7.59435, + 7.83986, + 7.96553, + 7.99271, + 12.0456, + 11.8737, + 8.50125, + 9.68571, + 6.78047, + 7.07886, + 9.33334, + 7.7914, + 8.65253, + 7.00642, + 3.94807 + ], + "maxs": [ + 8.80192, + 8.82404, + 8.81247, + 9.32598, + 10.0373, + 10.5193, + 8.93557, + 9.88055, + 8.77453, + 9.13282, + 10.5079, + 6.6064, + 7.72619, + 8.30254, + 8.61095, + 10.1879, + 9.40893, + 11.1329, + 11.411, + 8.96471, + 9.41857, + 10.366, + 8.45937, + 9.46379, + 8.80533, + 8.4622, + 8.13272, + 7.52047, + 9.98459, + 7.85322, + 8.58867, + 8.14359, + 9.59838, + 9.23295, + 8.66982, + 9.90446, + 10.2722, + 7.50444, + 7.49557, + 7.26928, + 8.82333, + 6.64133, + 7.04997, + 8.33255, + 7.77154, + 8.90008, + 10.5916, + 9.46564, + 7.50772, + 8.71108, + 9.70835, + 9.44818, + 11.1056, + 8.48455, + 9.99881, + 10.1935, + 10.9932, + 10.7832, + 7.88225, + 9.82051, + 11.043, + 8.05195, + 10.6021, + 9.50762, + 8.43619, + 8.69571, + 8.00558, + 7.24024, + 12.019, + 12.0096, + 10.2679, + 8.82169, + 8.48709, + 9.5337, + 8.6314, + 7.40247, + 7.80696, + 7.65696, + 8.9454, + 8.18338, + 12.7016, + 7.53127, + 8.08534, + 9.16907, + 9.03393, + 8.93272, + 8.74922, + 9.68744, + 8.72286, + 8.20607, + 8.76962, + 8.88622, + 10.5738, + 10.1306, + 9.16389, + 7.191, + 8.60247, + 10.7727, + 9.20777, + 9.18181, + 8.44659, + 10.9381, + 7.51614, + 9.58679, + 10.0226, + 9.95016, + 10.7631, + 8.88166, + 9.75951, + 9.76141, + 9.45785, + 9.39734, + 9.28524, + 9.26201, + 9.60153, + 8.65503, + 9.11992, + 9.91281, + 9.41589, + 8.77214, + 8.97868, + 8.15492, + 8.21252, + 7.28223, + 7.21078, + 8.07987, + 9.14761, + 7.66877, + 7.58326, + 8.5303, + 7.74832, + 7.59102, + 6.37983, + 7.68617, + 6.64182, + 9.58796, + 9.5329, + 7.32108, + 8.16701, + 8.4326, + 8.81816, + 9.52388, + 9.41992, + 10.1343, + 8.02526, + 9.1459, + 9.30761, + 8.58154, + 10.4263, + 10.114, + 9.56268, + 9.25566, + 6.92114, + 7.88756, + 8.31546, + 9.61826, + 8.26167, + 10.6701, + 10.4659, + 9.48744, + 10.3436, + 8.74144, + 9.67745, + 10.6231, + 9.56449, + 8.13535, + 9.99359, + 11.0164, + 11.1833, + 9.69042, + 10.2329, + 10.0807, + 6.34299, + 8.43992, + 9.06443, + 10.0148, + 10.1601, + 8.13168, + 8.82484, + 8.48537, + 6.89138, + 11.0908, + 8.96832, + 8.52678, + 9.08409, + 8.39476, + 9.41195, + 7.70179, + 7.98184, + 5.61437, + 7.53015, + 8.09019, + 8.20045, + 8.63814, + 8.02728, + 7.97853, + 8.28503, + 8.97159, + 7.85213, + 8.33765, + 8.96442, + 7.56212, + 8.55914, + 7.07031, + 7.50523, + 8.58654, + 8.66619, + 7.37403, + 8.97672, + 9.46886, + 9.26509, + 8.97858, + 9.24436, + 8.44344, + 9.50944, + 8.39975, + 7.41707, + 10.5356, + 10.4773, + 9.66832, + 8.74959, + 8.62179, + 8.71737, + 8.42014, + 6.211, + 6.74206, + 8.60099, + 9.00973, + 7.52739, + 11.0404, + 10.3954, + 10.4105, + 9.73244, + 9.71213, + 9.92587, + 8.62952, + 9.61339, + 8.09095, + 7.47456, + 8.6704, + 9.89838, + 8.64017, + 8.27886, + 7.64882, + 9.27755, + 10.363, + 10.0307, + 8.46033, + 9.19597, + 8.78629, + 8.60943, + 13.081, + 12.8962, + 9.37593, + 10.7358, + 7.87873, + 8.16484, + 10.094, + 9.11125, + 10.5049, + 8.49985, + 4.93824 + ], + "stds": [ + 0.3752370402731008, + 0.2796859637276245, + 0.3144570271409645, + 0.22033867436195453, + 0.3083976541030267, + 0.25398661694073577, + 0.30370989509727864, + 0.15080624690724842, + 0.23018974190780825, + 0.5866726133713761, + 0.30895976889933957, + 0.24015951179372422, + 0.2235842017041156, + 0.2314145886129842, + 0.2830360997109439, + 0.350900232022342, + 0.31573348131770884, + 0.3644153170491052, + 0.4365191249246704, + 0.37684512070610654, + 0.3014238486963443, + 0.33097084286232814, + 0.32749391795306676, + 0.31109000520749597, + 0.26742832804011857, + 0.3535654520924426, + 0.26609752633119954, + 0.33036483587530413, + 0.23004109219876367, + 0.24661250057191614, + 0.2313043450152129, + 0.3041249704253993, + 0.23644655956825994, + 0.2027741200613792, + 0.253080140811002, + 0.33768464864858244, + 0.40985099476059594, + 0.14425388872719047, + 0.28933136603497844, + 0.33956886949912923, + 0.20784061021910508, + 0.12945491317443295, + 0.10465311703432435, + 0.2150268118165733, + 0.2299057219093659, + 0.2576305257502173, + 0.3692472653063933, + 0.3718296757723891, + 0.24223745630751103, + 0.23139532313049596, + 0.27842773783934205, + 0.21807892240730983, + 0.2873438344380881, + 0.39633153163260937, + 0.2834989528485954, + 0.42815899812258224, + 0.45037052809140754, + 0.31883252359650616, + 0.23152205665623604, + 0.23467761890161865, + 0.28168626808028796, + 0.40520128185415466, + 0.3083297481133901, + 0.3330004731722112, + 0.2077126476399146, + 0.1380029844544433, + 0.2846065224334584, + 0.25399598369528076, + 0.5765374293718203, + 0.49422136264195116, + 0.546902208075935, + 0.4251488131544845, + 0.3146290810224001, + 0.3640145777432318, + 0.2835478241026253, + 0.31287885987431296, + 0.23489321413410386, + 0.13886581254338054, + 0.2969734151899514, + 0.1761653831630948, + 0.34346977353667274, + 0.40457043410676147, + 0.17438713985340215, + 0.4548839267947921, + 0.30371513323068605, + 0.39328540767700326, + 0.3725026499005298, + 0.36778456661248493, + 0.3597382631488252, + 0.2674572145775532, + 0.29833475354317446, + 0.364994770975672, + 0.3700403728553369, + 0.30414524716476604, + 0.3889098629395592, + 0.2652200232134318, + 0.28330268193150493, + 0.5177213931836314, + 0.3281758319940699, + 0.28212260888884816, + 0.48564920614060514, + 0.39279837698026865, + 0.2782041457268086, + 0.3084567360526432, + 0.33694407847532115, + 0.3134395434841993, + 0.25073246463694443, + 0.22185299597931973, + 0.33036167109132075, + 0.42747787054175873, + 0.5245673582673472, + 0.406082794981003, + 0.4185736042939959, + 0.339270681491318, + 0.31659423700535033, + 0.4465607796929775, + 0.3318118275763891, + 0.4652164845442029, + 0.30427714954119806, + 0.30347468347939127, + 0.2708380213707079, + 0.20898603997934898, + 0.20581984210205934, + 0.2055935902332561, + 0.2708532004579848, + 0.23039297329327685, + 0.3078181007348333, + 0.1963042780131141, + 0.1659861784155536, + 0.18541167559424807, + 0.2943596602507155, + 0.26916638618767635, + 0.32596802999105606, + 0.47740326166975083, + 0.26721846031228197, + 0.3092370926375371, + 0.41850345368547026, + 0.3221555447961694, + 0.20804804187174336, + 0.3215203193987123, + 0.4175884240687833, + 0.5446052962773439, + 0.42517152058120405, + 0.20303945105877827, + 0.2175269778173118, + 0.2993945541700225, + 0.3013827306681657, + 0.18294159450035774, + 0.1652906773938971, + 0.49438209898653646, + 0.43242443291285015, + 0.4255187655042372, + 0.4301890402287307, + 0.23351462428775205, + 0.3924938316962233, + 0.3882680939741679, + 0.2659805406134065, + 0.48913602596823724, + 0.344069269515602, + 0.40994635365648757, + 0.568060714922563, + 0.30000901072856695, + 0.44343307887765504, + 0.4504824593255547, + 0.5232408150551555, + 0.2970484467304956, + 0.4627327567753515, + 0.3469861182141635, + 0.38255378265676576, + 0.3966010912323196, + 0.6719732772213368, + 0.47107397698548, + 0.27899547032687944, + 0.1625017575699824, + 0.3286303443282944, + 0.3728078737315641, + 0.41657344637280525, + 0.2448249895665269, + 0.3124524222815103, + 0.43013937128757074, + 0.2575859641621284, + 0.511832781241019, + 0.3042373703972773, + 0.5483104932776075, + 0.3451579458299972, + 0.47085115876817524, + 0.3366985226875817, + 0.25846066619426517, + 0.31833083164571113, + 0.307756024424516, + 0.2650674961307025, + 0.25121756453653205, + 0.3832554868643979, + 0.41278343751041746, + 0.3121001764277777, + 0.4737050410008145, + 0.4676836192769638, + 0.43030558359873755, + 0.36130711266179083, + 0.17596468948343014, + 0.36260245153094334, + 0.20077907482998156, + 0.576753777199017, + 0.2697709120191921, + 0.35734655873302223, + 0.400411256193242, + 0.22495061325303523, + 0.34200679579749094, + 0.5047881626187366, + 0.38545315471316766, + 0.36106675703854757, + 0.32883522850357744, + 0.3319159817157547, + 0.8483220813442557, + 0.49661627543095743, + 0.22813576897686738, + 0.18354684903202043, + 0.35198770128135637, + 0.42819383987035203, + 0.5735732684830538, + 0.24421226880182192, + 0.21500711516036722, + 0.2969012340352708, + 0.23456451982965512, + 0.28011954490598, + 0.1868469164806671, + 0.20668353267636827, + 0.24098544493305674, + 0.27251030198263443, + 0.4026273179587626, + 0.3793829393260413, + 0.57802089757926, + 0.48517541946358617, + 0.32863851160000507, + 0.4360797002154537, + 0.11364046121430538, + 0.35368993471683646, + 0.23134034802645198, + 0.22641265901648838, + 0.29575011839670795, + 0.2879329188710163, + 0.1860033355256477, + 0.2104269451209058, + 0.20353802181963448, + 0.2872168816410053, + 0.25534649805052456, + 0.4225581608207917, + 0.21201149162250618, + 0.2977950836593289, + 0.23332976283577692, + 0.15656888005895886, + 0.2536052851710046, + 0.22106533941725634, + 0.20638516217661243, + 0.20999058980404334, + 0.296681506989538, + 0.3366071166112407, + 0.20687383211251417, + 0.4207366387495271, + 0.4144108250953995, + 0.41582814565434767, + 0.2578843476929146 + ], + "missing_values": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + "row_pairwise_correlation": { + "comparison_values": [ + [ + 1.0, + 0.7849391635220895, + 0.7541109621190161, + 0.5668810866383799, + 0.7716016083489241, + 0.7350616978799459, + 0.714138670449779, + 0.8679604030630229, + 0.8180315427187194, + 0.7256553302270345, + 0.7527614020146991, + 0.7988679761202162, + 0.7885243151930609, + 0.751914022829578, + 0.7708471994179191, + 0.7671237346845473, + 0.8280290108243041, + 0.8918239974595232, + 0.8195152443815206, + 0.7244976730818781, + 0.9115947584082412, + 0.732650249758149, + 0.7292231934745876, + 0.7820229341932031, + 0.7624968581775231, + 0.8237135035045737, + 0.7040977681989717, + 0.8039461257330617, + 0.8056999724608441, + 0.7797425357200877, + 0.8820793484061057, + 0.7470832167203673, + 0.8188037454685972, + 0.7891653867615764, + 0.7169440477276298, + 0.9105191194620055, + 0.8858111090785722, + 0.3211095205195129, + 0.8504456497427838, + 0.8114823128219812, + 0.7979469088803465, + 0.6633684038147416, + 0.32268402244274486, + 0.6013950037014011, + 0.6676457507865475, + 0.6853379596235551, + 0.8757496991633374, + 0.8222411339907025, + 0.6498425756315815, + 0.7434806304840446, + 0.8564801420268351, + 0.6615651975466161, + 0.7130206753601408, + 0.8610433149984253, + 0.823057972396558, + 0.887456876304408, + 0.9066805120376948, + 0.8379227960547818, + 0.34423396606697104, + 0.8506454621798658, + 0.8118099420808538, + 0.8055733768213393, + 0.8280382329570498, + 0.8232001445549572, + 0.6777636763608105, + 0.5420690520124016, + 0.8103869137616776, + 0.7890830278758001, + 0.8534083959801619, + 0.9128977864721384, + 0.820010679587218, + 0.6820060018642214, + 0.840845597541143, + 0.8991005580703367, + 0.7924570470304649, + 0.7295608844843493, + 0.719079914582328, + 0.6322285864888243, + 0.9098651625232248, + 0.7827593043446601, + 0.8705234339353497, + 0.4023641895021711, + 0.7726338395622078, + 0.7221142193696773, + 0.8742359668328046, + 0.90466090893595, + 0.8620076353194797, + 0.632790402620558, + 0.506069291657534, + 0.7088761039819321, + 0.8170721569763097, + 0.8049344598862257, + 0.5990827924677931, + 0.8131340803099661, + 0.7238266076626487, + 0.8237513136367108, + 0.771282359709781, + 0.7235684431556827, + 0.8071187410698925, + 0.8396890643721394, + 0.8186599676381979, + 0.8620490166222189, + 0.7651564998796943, + 0.7753981270908621, + 0.8753254675574348, + 0.7200379791661691, + 0.7545812818551698, + 0.8797308857795821, + 0.6483046697378598, + 0.7518406977020196, + 0.8317630476416008, + 0.6704530250963063, + 0.879711441966169, + 0.8886144247199995, + 0.8245177303724308, + 0.7936319743417084, + 0.8743795999477474, + 0.8803538830805332, + 0.6069637602992042, + 0.7511606942721303, + 0.7811297564256953, + 0.7666880499251392, + 0.8770646414201827, + 0.8100550418825665, + 0.7476945592482228, + 0.7070613341358527, + 0.3265992994938507, + 0.7371188771324023, + 0.5019337236879492, + 0.6450081336040199, + 0.7058522523088616, + 0.6545574617021764, + 0.6420505045102908, + 0.5918422924736316, + 0.6824847438065458, + 0.9046470086341049, + 0.8769724189905301, + 0.6407394295243288, + 0.5840368539371179, + 0.7659477544778566, + 0.8533965578268343, + 0.7761907895482058, + 0.7879896780258754, + 0.831043161488916, + 0.46855723727233173, + 0.7616278993142084, + 0.6085760589090321, + 0.5132470170342239, + 0.47603543394863473, + 0.8326759956445972, + 0.9262076979523259, + 0.8728647438311863, + 0.910833095930484, + 0.8446190872201204, + 0.7076418452726603, + 0.7325939842017165, + 0.657243314257735, + 0.8374314657209619, + 0.9078785157911314, + 0.9192879631964612, + 0.8662662569060147, + 0.7990996454961748, + 0.835976493563244, + 0.7609666240661186, + 0.8395429768342692, + 0.7786493512057514, + 0.8048666482034152, + 0.8384581186207266, + 0.8373989017738963, + 0.809187933921086, + 0.7595930680589054, + 0.8090106985957923, + 0.6724133100016102, + 0.6434413469732826, + 0.7931606701040569, + 0.5053857531245801, + 0.8127490320213707, + 0.5762954659502385, + 0.9176451666706013, + 0.8279016476150004, + 0.7871871134859081, + 0.8278211615430003, + 0.8309440217036909, + 0.8218432448331704, + 0.7648645548466834, + 0.8377087747213215, + 0.7904559266342291, + 0.860092144287839, + 0.6566843205615431, + 0.897964336469178, + 0.7830049694676406, + 0.7234687702531881, + 0.736403286184343, + 0.8187703730779046, + 0.6463924969646238, + 0.684826685974069, + 0.8425513374922514, + 0.8158385362907584, + 0.6210018738653852, + 0.6640016921893587, + 0.815470814493188, + 0.6788905487132834, + 0.7863558427688302, + 0.5838946368965401, + 0.7950110833335353, + 0.8233176437837672, + 0.7960610800502188, + 0.7062056404907603, + 0.48013370535727706, + 0.683627216398995, + 0.7088639743334252, + 0.7355436374396269, + 0.8045637743066667, + 0.8101966559725807, + 0.6508104006630554, + 0.44614823635937323, + 0.6693320102363379, + 0.8299103575171095, + 0.8221083303150023, + 0.73562558684868, + 0.6115741780765618, + 0.4759671344821562, + 0.6978821149821525, + 0.8105236207712759, + 0.7334530120961907, + 0.6834453565084908, + 0.6719650804351036, + 0.7820641363401932, + 0.7936306566554635, + 0.8984694077908097, + 0.8429232901453366, + 0.7580266359858557, + 0.8374843682447105, + 0.701714363125391, + 0.8117914647843132, + 0.4892181402054188, + 0.4385180083245351, + 0.6650976147455627, + 0.8484997682070461, + 0.8439891117320668, + 0.850601093246933, + 0.6586749950608982, + 0.6621925586196411, + 0.5067574087665828, + 0.6622575483550658, + 0.7975706585910677, + 0.8242800899618076, + 0.47584971965266787, + 0.5945928458310511, + 0.8009134544847604, + 0.5762640798052169, + 0.3509661126449716, + 0.6499668209591389, + 0.6849778135243032, + 0.6513284240270237, + 0.8062044959029471, + 0.6501047313701779, + 0.6034086346113962, + 0.7266223610495236, + 0.8747177152598445, + 0.6890301856315435, + 0.6748621821500345 + ], + [ + 0.7849391635220895, + 1.0, + 0.8551240252120365, + 0.5777652353235815, + 0.6586239107803618, + 0.6853400907967183, + 0.8488775128780865, + 0.6987765887385626, + 0.7008611977817479, + 0.7681424908836458, + 0.7844314675005563, + 0.8434874165829854, + 0.8019635394255897, + 0.5824645484278694, + 0.7031388933627349, + 0.6037939878334586, + 0.595790740709878, + 0.8822006296171455, + 0.6806380613322052, + 0.7767626565771164, + 0.7868008463769065, + 0.5946857040828978, + 0.7757383674177466, + 0.8353847157048903, + 0.6727610946040731, + 0.7643284413774191, + 0.6606510973612832, + 0.7776413896728619, + 0.7184463158170762, + 0.7633906367644288, + 0.7320309390507557, + 0.8544243709673892, + 0.7613432979507777, + 0.6217169311405318, + 0.7086285149916629, + 0.6696121487707483, + 0.7818992233141338, + 0.20586770682325076, + 0.7029848182182508, + 0.5390018342808711, + 0.7536509016085334, + 0.6296004882122656, + 0.06808718158395273, + 0.5193830142683268, + 0.5813840498398788, + 0.7278339962575637, + 0.6030025264334169, + 0.8031811419820176, + 0.6397606667816117, + 0.42691047477339816, + 0.7350863454199303, + 0.5993614699772418, + 0.44805866799027294, + 0.7275423917350047, + 0.5755840908538662, + 0.6441208895828368, + 0.7115116990287899, + 0.6178741558830096, + 0.28204827770435265, + 0.7084639671791216, + 0.5713693176859367, + 0.6507641387820848, + 0.7067344872599818, + 0.6400234419516994, + 0.7032286658023371, + 0.5009506061480868, + 0.7494902448387297, + 0.5966232415545546, + 0.8277074358746788, + 0.8248856060459678, + 0.7371125349304894, + 0.7384186262087539, + 0.8195791630108082, + 0.6640478523619593, + 0.7319005323427944, + 0.5282019978477048, + 0.5070045976418351, + 0.5087417895414134, + 0.7260296460834148, + 0.6182766812397947, + 0.802161686011747, + 0.23808580053458253, + 0.6610423329641612, + 0.4401894961925411, + 0.7334641072858701, + 0.8520770847115546, + 0.8049172287392918, + 0.574546398538027, + 0.27567778403169135, + 0.6473333524386498, + 0.7864156728493534, + 0.6362110135922331, + 0.5622807534642951, + 0.6863352581751875, + 0.6149153272154583, + 0.6155771361587756, + 0.8060642953895482, + 0.5667318664009616, + 0.713013247534515, + 0.8913883862149512, + 0.7551784549738597, + 0.6417230081116122, + 0.6068776168011707, + 0.5450236060952175, + 0.727741486536614, + 0.7272456232002544, + 0.573136455935198, + 0.6951291862640593, + 0.502060796932667, + 0.5823536928751649, + 0.5263597261776212, + 0.5112213807058555, + 0.7501499845442952, + 0.7692687967307413, + 0.6247887229414485, + 0.7154830071672671, + 0.572907409441066, + 0.7864075348492309, + 0.5320021093770901, + 0.4981443225276089, + 0.6246246790411533, + 0.5633812381922552, + 0.7248309275442809, + 0.6194127870536512, + 0.5759881481225317, + 0.5553006651327563, + 0.2506272229345835, + 0.6398199753712154, + 0.5101010776358899, + 0.454706971088275, + 0.5707989645230683, + 0.6520340374917044, + 0.5411434755339575, + 0.4572512238246664, + 0.6751880853236839, + 0.6976944361481083, + 0.6462694386878914, + 0.5756285850151363, + 0.3380895636081851, + 0.5900046964102837, + 0.6181344099955393, + 0.6545464653135988, + 0.6034303721254954, + 0.7275804254793823, + 0.4237651105948122, + 0.6882959755584128, + 0.5261062109532979, + 0.3860515250010591, + 0.4194900674636172, + 0.5985252359268958, + 0.6126745263654402, + 0.6087774821196607, + 0.6710195361003257, + 0.7002188214789458, + 0.5098597389748464, + 0.47842353880088806, + 0.31700459294267297, + 0.6390476464879574, + 0.6383366541857588, + 0.6672649890268404, + 0.6622288808518825, + 0.5228811527216376, + 0.6540945681325948, + 0.5292669945068862, + 0.6975256970145646, + 0.6221022097101686, + 0.542185645501432, + 0.5988157243250164, + 0.6022339042072844, + 0.6217693899193167, + 0.5349873116202613, + 0.5619266659107679, + 0.46754708502867615, + 0.5109552587847258, + 0.5386777276897651, + 0.1329801406009738, + 0.4668552023304388, + 0.4753892993115896, + 0.856948515935389, + 0.5138174771149275, + 0.6266987320052175, + 0.5735374414416068, + 0.5488544304241505, + 0.6375340119629994, + 0.7302510063618135, + 0.6826425848284028, + 0.6377501745254981, + 0.6975680686640165, + 0.48210664119708485, + 0.6894176619069813, + 0.594357927011768, + 0.6088706165097127, + 0.5777310545204524, + 0.5788777468611002, + 0.3989041806514934, + 0.49860287885708154, + 0.6348846327019175, + 0.5174802454525185, + 0.48838630477915945, + 0.36258059696322975, + 0.5969055109122728, + 0.5106918562312055, + 0.5555010850442267, + 0.3195039148760504, + 0.6006198039528585, + 0.5693094672527623, + 0.6598329640650125, + 0.5631039944721361, + 0.3004614675785658, + 0.41035190843036556, + 0.47925574282420097, + 0.48702972101644576, + 0.5519304822974054, + 0.59854991125826, + 0.560772914713871, + 0.2923251582043561, + 0.599382399330956, + 0.5725133351564694, + 0.5770917516821131, + 0.5200212976030757, + 0.5598176668091789, + 0.1411820404442375, + 0.430773756227243, + 0.5353271675646113, + 0.5197313790620277, + 0.4245382630100821, + 0.5071957060936046, + 0.4744577698922722, + 0.6802729129338697, + 0.7077715893473278, + 0.536481328259964, + 0.6049996798223787, + 0.6563557098598738, + 0.5996800470465574, + 0.6592728026771468, + 0.24012109064411327, + 0.3336713637888294, + 0.43908091039466646, + 0.5764524239520662, + 0.6038899312364366, + 0.7050038516452347, + 0.4058103911461033, + 0.5320573973354883, + 0.3594007346894688, + 0.45003519330858793, + 0.5188484517524409, + 0.6729514944308213, + 0.18281265429068405, + 0.2041201436968588, + 0.6572427300548727, + 0.3654430865482873, + 0.25017905444146804, + 0.6335171395008529, + 0.7247700709187358, + 0.546679361838954, + 0.7067713545188556, + 0.4580840695604981, + 0.4657581876760005, + 0.7289238713265862, + 0.648899493670782, + 0.6379226414025353, + 0.5154685938140455 + ], + [ + 0.7541109621190161, + 0.8551240252120365, + 1.0, + 0.642521711879868, + 0.6336408694203769, + 0.7248409124871534, + 0.8233915263874027, + 0.7755509265750044, + 0.6809508678386486, + 0.8183069649544625, + 0.7775286678471383, + 0.7073970850169512, + 0.8475052429226512, + 0.4671683372095688, + 0.8222564278751824, + 0.5098079263884879, + 0.6502301478239141, + 0.8848877763128851, + 0.6229295705203429, + 0.898008699105271, + 0.8345724506823421, + 0.5130333092281252, + 0.8959594292908792, + 0.8154968076390053, + 0.5789367136652226, + 0.698669483475032, + 0.8440364762355815, + 0.8714430694704774, + 0.6345973467939655, + 0.5960915933022308, + 0.7275627850021958, + 0.7431698500897661, + 0.7483407331376813, + 0.6305027747512132, + 0.8634599804575683, + 0.6466761611961627, + 0.7827156942905765, + 0.15021477328637958, + 0.6371432343721034, + 0.6330130839217393, + 0.8623681596794676, + 0.7093241072951283, + 0.16039199066681797, + 0.6544238488779291, + 0.8325221078803671, + 0.7668071477946521, + 0.6945986855122824, + 0.8676076380443262, + 0.7759588086368459, + 0.5266177446347003, + 0.758340370966224, + 0.5892505038909924, + 0.3893245644155247, + 0.6399226581672924, + 0.3965784619290104, + 0.5190146923427799, + 0.6366768709365006, + 0.6725987107591745, + 0.4392836411842665, + 0.6924270345680982, + 0.5187451995987683, + 0.7599489483568909, + 0.6696936826759521, + 0.588838795873455, + 0.9101969863238945, + 0.6833236139089891, + 0.7530390130636706, + 0.745799278646292, + 0.7504970757997839, + 0.7222727178638602, + 0.6765742340948973, + 0.7010835774149148, + 0.9037448016025692, + 0.7058084591554975, + 0.7953948816309124, + 0.7604970104230402, + 0.7645540228893923, + 0.53949634501701, + 0.7925972875655312, + 0.6917331375724959, + 0.7411837102431303, + 0.2608412770176778, + 0.6234760346103133, + 0.6022865900421341, + 0.7672129417606601, + 0.8084900831622518, + 0.8178176030720107, + 0.6104488931611873, + 0.32720487542654636, + 0.6031251947070219, + 0.8837746868859305, + 0.791719551392699, + 0.7030695843218421, + 0.753279747830691, + 0.7604692036301192, + 0.5999899057984398, + 0.7517294788038967, + 0.49975126110085955, + 0.8087449335399266, + 0.8394991969045583, + 0.8256360068034223, + 0.6119735780796874, + 0.6455507582763933, + 0.5303666676100465, + 0.8490704518120016, + 0.8485354251865572, + 0.6536528003356553, + 0.7594137533172987, + 0.5252872054647387, + 0.7898853556146737, + 0.590965762590678, + 0.7025829491849447, + 0.8368878789793611, + 0.7942812518316126, + 0.6409579811221565, + 0.7573191747554828, + 0.6339251453227802, + 0.8630851125069121, + 0.7203958976971201, + 0.6731423704561614, + 0.7202210058035652, + 0.6347300730681386, + 0.7235116895321017, + 0.615373154780326, + 0.6444755436800736, + 0.5964787087293747, + 0.24069764399183646, + 0.7760343501319988, + 0.6298879022963174, + 0.6049447622683332, + 0.6892705456995736, + 0.6504363222874677, + 0.5437897566473631, + 0.5102018147936864, + 0.8271624922057086, + 0.7220111473119841, + 0.661380517250822, + 0.7812087982374045, + 0.46802019461086636, + 0.728802858428547, + 0.6574311040877412, + 0.8096353285406522, + 0.7427800020773702, + 0.7775499234805093, + 0.4074975852474531, + 0.8668578418815182, + 0.6454445473647875, + 0.44166047757414517, + 0.3771845940604741, + 0.6671476523416587, + 0.6765346560575606, + 0.6022829286913496, + 0.7218321766753517, + 0.7220100302929046, + 0.6766546681470932, + 0.6307197095821683, + 0.4205349976428156, + 0.6838046184191245, + 0.6556208103812862, + 0.7166940790228644, + 0.7330894050738398, + 0.5921854495230113, + 0.7886384813113062, + 0.6971907748262011, + 0.8392233689818677, + 0.734589888611586, + 0.6524367196013167, + 0.6663980703137695, + 0.6700534242619753, + 0.7428209768626997, + 0.6787227522857688, + 0.6525261741541339, + 0.6530918777935436, + 0.6484959460157732, + 0.6736178262787863, + 0.11731623430487745, + 0.5286039522689029, + 0.627228383667276, + 0.8132645667460842, + 0.5892800927166139, + 0.5564159671287343, + 0.6683803469533868, + 0.5920109897243443, + 0.7965639936581449, + 0.7707010088490068, + 0.8343841331411425, + 0.7372411195394754, + 0.8379325484981631, + 0.6820064144771484, + 0.7983692262190306, + 0.7480552376426628, + 0.801306648429036, + 0.7039605028739069, + 0.7273810832227042, + 0.5660202583321555, + 0.6633509862908374, + 0.7557753397093174, + 0.6436623602742021, + 0.6801025818514967, + 0.4073487896701377, + 0.6859383304052669, + 0.5558767352603405, + 0.5709162935938901, + 0.5419865618745692, + 0.7366845206679616, + 0.7380971751545808, + 0.7804325680317359, + 0.70969746053695, + 0.3599288558010976, + 0.5656449110826524, + 0.6933515231025257, + 0.6095062068588538, + 0.6753263191474095, + 0.7118419939314153, + 0.7482195581128233, + 0.45620592574454005, + 0.6424067973574497, + 0.7191524545745309, + 0.7073853264276841, + 0.6314543001515762, + 0.7452640632261974, + 0.23453504009770984, + 0.6312535491476362, + 0.6613090974084935, + 0.49541584808011574, + 0.6429917455939157, + 0.6979669164811466, + 0.6561421387686228, + 0.6685961724345448, + 0.8304081519475868, + 0.6292043740017615, + 0.7934902459332756, + 0.7558232163887548, + 0.698666265340851, + 0.8009713217738662, + 0.2188176487004814, + 0.3873531163082299, + 0.5201427308982743, + 0.6392426863490126, + 0.6714376787010489, + 0.576695347033269, + 0.555649921418682, + 0.8108721641497482, + 0.42867639652277495, + 0.621424796524844, + 0.40911918542691733, + 0.7397214047328218, + 0.18337381608583728, + 0.26719844026087386, + 0.8274471677404974, + 0.39465360894525153, + 0.35930004538886495, + 0.6767476690127024, + 0.773799246716738, + 0.5169628701903984, + 0.7909450686229432, + 0.6563293639207025, + 0.3764352551437156, + 0.7038216465337519, + 0.6550090730984657, + 0.7990272485828862, + 0.5597998438500295 + ], + [ + 0.5668810866383799, + 0.5777652353235815, + 0.642521711879868, + 1.0, + 0.8178867030747404, + 0.769198863309506, + 0.6527566428124087, + 0.5483867516009823, + 0.6491249243544625, + 0.736285298842078, + 0.5638897404185095, + 0.585170437070234, + 0.7272589979879437, + 0.6499159360620039, + 0.8075704725325457, + 0.7499736876882857, + 0.5265146656122833, + 0.710813722387841, + 0.8198460133648089, + 0.7777889135663089, + 0.7201158959901944, + 0.772040700507162, + 0.7389698728858477, + 0.7876692884900606, + 0.5948313589893259, + 0.7738994612988828, + 0.6382816584496883, + 0.6730561709435883, + 0.7444420777585187, + 0.6379118291398856, + 0.6911597242077535, + 0.6410973191165731, + 0.6732108667660399, + 0.5169049445630858, + 0.8569067997830574, + 0.6876829260890973, + 0.6404277493691648, + 0.6137854901638613, + 0.5536794731529381, + 0.6844880674853895, + 0.6177900958736411, + 0.6446037267144598, + 0.48413320010619815, + 0.8060811492182475, + 0.7928571003296435, + 0.7280555882764655, + 0.647997211838597, + 0.7794388816750116, + 0.8578823956857881, + 0.6391436181309198, + 0.6807657475277489, + 0.8411653577369747, + 0.6958867608461291, + 0.6276805914188901, + 0.4379105242052306, + 0.5274323081347876, + 0.6754253585848163, + 0.7025342152099958, + 0.8282590892769611, + 0.5668637532847238, + 0.6351484821221123, + 0.8139131528068129, + 0.6448350963299377, + 0.6964084657175689, + 0.722076645110835, + 0.8213496340095332, + 0.8451591762177841, + 0.7869709327837086, + 0.5249785714521552, + 0.518348586376883, + 0.7365953537830806, + 0.8173237326402384, + 0.7018580963635278, + 0.6538936717409881, + 0.7339079338510539, + 0.7244911200585579, + 0.6967869543740506, + 0.7748824545788812, + 0.5711914440779307, + 0.7010763013710217, + 0.6287505902731542, + 0.8124744900366104, + 0.5263830605540317, + 0.7360324154708647, + 0.6446781081812992, + 0.64302791514085, + 0.8032549203934384, + 0.8867196668545863, + 0.8204867079384073, + 0.7570843632195091, + 0.7742731794770664, + 0.7237674774634621, + 0.7561857780024956, + 0.7047774494709936, + 0.7669304133130366, + 0.7307841114068312, + 0.6137663950019864, + 0.82298253932964, + 0.6607991829510982, + 0.5654990584994043, + 0.7400308539618787, + 0.7319478951245392, + 0.797312753752616, + 0.7912530381444669, + 0.6798273674808082, + 0.6687000347727987, + 0.8263236954582355, + 0.7446209436207001, + 0.80757803659982, + 0.7176449337248934, + 0.6289720077193505, + 0.8478839610849263, + 0.6041087507886514, + 0.7224914821763718, + 0.7620877736836504, + 0.8607734687667166, + 0.6051062232124838, + 0.7550148641573062, + 0.7721574929378577, + 0.7213423574213023, + 0.6814623228906183, + 0.7028456638955111, + 0.6903131213190685, + 0.6046692088319319, + 0.7817007327258394, + 0.7574642213539364, + 0.8205868346760561, + 0.7113013462909695, + 0.8753216358476987, + 0.6409001266889688, + 0.8460939180178747, + 0.8544433070978605, + 0.7311419988323382, + 0.8697155119430078, + 0.5412647642872721, + 0.662114483505495, + 0.724943302163568, + 0.817400870753044, + 0.5101987286515323, + 0.7740553252957446, + 0.7690086051231024, + 0.7882317228330216, + 0.7133352872233186, + 0.7505590284229481, + 0.819959593548706, + 0.8157091316925349, + 0.7936901370942396, + 0.6681108430874367, + 0.6547451872025766, + 0.4939974461710705, + 0.6245962155885882, + 0.629059346433179, + 0.6220955869258837, + 0.6927878456395812, + 0.8208653680475496, + 0.7586520896774182, + 0.556159050194168, + 0.8152907368118298, + 0.6752409364403855, + 0.6986032567756595, + 0.753510420473966, + 0.674328023806992, + 0.7863742913330138, + 0.5768953054269975, + 0.6516742417515363, + 0.7465574765932128, + 0.6118994441405299, + 0.8423305261998965, + 0.8150634887456345, + 0.8333965492087243, + 0.7917768015700333, + 0.7652132581277502, + 0.7285389771381885, + 0.5919203426435053, + 0.7456080409156147, + 0.4596430313701929, + 0.6405238162525444, + 0.7322642123102486, + 0.5437098759993297, + 0.7164557095576987, + 0.7153665746790178, + 0.7281544066635799, + 0.6725527538867264, + 0.7431127455010025, + 0.7404082276143209, + 0.7654772380355602, + 0.808284216186449, + 0.6785545209331216, + 0.8023282609569268, + 0.5590170008733423, + 0.692045465269612, + 0.6601147703616098, + 0.7792497390581985, + 0.6605928993918612, + 0.6990733500920897, + 0.5762460284212267, + 0.7595403667356063, + 0.7026738962386884, + 0.6716357983169193, + 0.6055922615733692, + 0.7255647653772768, + 0.6234943852098299, + 0.613886365007898, + 0.6373434490730495, + 0.6995498490169324, + 0.7274211039054229, + 0.7593801804436056, + 0.850035012213112, + 0.8224225945953093, + 0.7198721321680617, + 0.6351440487252786, + 0.6000107878733506, + 0.5904581519318932, + 0.8016842845456027, + 0.8420776711543564, + 0.6953417796929632, + 0.8145000717045091, + 0.6763588108642188, + 0.5739636469332964, + 0.7634563870831882, + 0.5973981234802874, + 0.4173313327074782, + 0.7070457983457517, + 0.717614138655168, + 0.7632152630015197, + 0.7816831405520065, + 0.7076036435072585, + 0.5924822270160482, + 0.5202123565746322, + 0.6732238656598358, + 0.7560281237437158, + 0.7409887245881832, + 0.7883357981267225, + 0.8734044813651305, + 0.7991237534941456, + 0.4259855922336472, + 0.513742582577274, + 0.6034060688542137, + 0.7163114663608101, + 0.6438626321879913, + 0.5137549922136807, + 0.6817399808018366, + 0.5724587132055212, + 0.7942306610698493, + 0.6480131507647731, + 0.5778867259550221, + 0.4137272953081984, + 0.5728105774908322, + 0.4812919487318704, + 0.5792440672629103, + 0.5713998123732807, + 0.77738017425939, + 0.8511258532699046, + 0.758661297603529, + 0.7765077390265557, + 0.6798517871202818, + 0.7698422099585732, + 0.5661878006735306, + 0.5237536776931778, + 0.7814281722286324, + 0.7969931154013726, + 0.6491422975248977 + ], + [ + 0.7716016083489241, + 0.6586239107803618, + 0.6336408694203769, + 0.8178867030747404, + 1.0, + 0.8869525811590862, + 0.7510881597531793, + 0.7752753286426093, + 0.6992153151359722, + 0.7575795308995198, + 0.6970503801264544, + 0.7647302192829784, + 0.731209625537404, + 0.8777417347050376, + 0.8251595826106317, + 0.8625274269531918, + 0.6770738586450615, + 0.7974835427032377, + 0.9253336103985929, + 0.7555881417310605, + 0.8381338788976544, + 0.9165747088102894, + 0.8338353555539345, + 0.8836517604969556, + 0.6429950986755754, + 0.9221582670195619, + 0.6916327502872712, + 0.739900555118535, + 0.9073258580393213, + 0.7774577810713518, + 0.8077582136209401, + 0.7913326333119586, + 0.8779724087694533, + 0.7457728681472274, + 0.8077534623866675, + 0.9093820666392137, + 0.8475855121786561, + 0.5583105656351257, + 0.6983211654387974, + 0.7665072485309378, + 0.7922757452208189, + 0.7073153549909347, + 0.5216537051446603, + 0.7483513998758503, + 0.7495800839258568, + 0.7832589346640701, + 0.8112600973720072, + 0.8435616094784028, + 0.7893980834177897, + 0.7242338903785538, + 0.7708410139141116, + 0.8169640937581145, + 0.8477696385600278, + 0.8698808681291756, + 0.7399864902675947, + 0.819202941239629, + 0.9028018482546912, + 0.8148821004018157, + 0.6806055664289105, + 0.7540804957735608, + 0.7217311391826077, + 0.8551126385371973, + 0.7591866345586774, + 0.8548174062642403, + 0.7185902809160198, + 0.762377873565876, + 0.9063494348634169, + 0.8077478686631681, + 0.7848067013324076, + 0.8094685773822755, + 0.8880488496251866, + 0.8483090135521397, + 0.7085384079998017, + 0.7543396691662948, + 0.8585379429981872, + 0.7295827817806806, + 0.7289748333231227, + 0.8021808855051483, + 0.7409228375706032, + 0.7429389141835508, + 0.8737831500517375, + 0.7143196168155419, + 0.6408484335659862, + 0.740545505316944, + 0.7957084987315524, + 0.7841182177121532, + 0.8336435016850416, + 0.8674455423882571, + 0.7829095741807617, + 0.8840254323060158, + 0.8210002421878504, + 0.8133450419791544, + 0.7569411901347202, + 0.8392702948257406, + 0.7548157767902733, + 0.8525216584673931, + 0.6760832341871694, + 0.9398742340959655, + 0.7992252580830046, + 0.7922032198928886, + 0.8442672749677744, + 0.8696817727605333, + 0.7539027062691698, + 0.9412251828661146, + 0.8216286173379024, + 0.7102315137877722, + 0.9105700032782417, + 0.8458786749488055, + 0.8280388270722998, + 0.755152200175188, + 0.8047888214071527, + 0.7209695082459141, + 0.69231255075932, + 0.8017631564124118, + 0.8396976128672315, + 0.8581909635198636, + 0.8339446547298435, + 0.8536912708785447, + 0.593284879020496, + 0.7425171659927443, + 0.7863743798648145, + 0.7540621562596309, + 0.8301373698744878, + 0.7169576512958412, + 0.6984245475608573, + 0.7122259706035178, + 0.7259780562797983, + 0.8126489292910293, + 0.7036851292934534, + 0.6912623657738259, + 0.7425648977702566, + 0.8147416239528, + 0.6550148066516186, + 0.767319326802887, + 0.6180467968222376, + 0.8232159876370259, + 0.8823117396976661, + 0.6930048172768204, + 0.6056936282592132, + 0.8498468651764911, + 0.8997953091010834, + 0.7872470257451145, + 0.8377503319035278, + 0.8900010922321604, + 0.736432342294662, + 0.8485988957211376, + 0.7966875180580781, + 0.7495208686582405, + 0.7663575087182188, + 0.7144150108685494, + 0.8449674034794254, + 0.871340896043159, + 0.8133936069525721, + 0.6895464272283883, + 0.8120300176030733, + 0.7734458876329698, + 0.6401865037143541, + 0.8948022173189702, + 0.7960049636693547, + 0.837625573124891, + 0.8442440898420158, + 0.8678446195645253, + 0.8101932643186612, + 0.6922149914144675, + 0.746390513325836, + 0.7690218947536464, + 0.7358386412579379, + 0.897985593214979, + 0.9026706543148105, + 0.8446437849919326, + 0.8148632585371889, + 0.8657653057591065, + 0.682232737711827, + 0.626200306224115, + 0.8004960185696692, + 0.6847265231731406, + 0.7869700352338476, + 0.7401183574417947, + 0.7689278739676866, + 0.8075181993096511, + 0.8158628797196037, + 0.832042456132418, + 0.8693508263658467, + 0.8010244484946506, + 0.8410767569580577, + 0.7942993298686402, + 0.8584003870674886, + 0.7353385460209351, + 0.6416745826084863, + 0.681757647053798, + 0.744944549934323, + 0.6622138496621637, + 0.7633125960079702, + 0.7746231305400642, + 0.6974186221267663, + 0.5926461679096439, + 0.8565590325646307, + 0.7680702749325111, + 0.6907742995921048, + 0.7320285090833983, + 0.8853348846299747, + 0.6482319159123481, + 0.7373753377575207, + 0.655808201099405, + 0.7421081032329038, + 0.8189460267827655, + 0.7914790525796426, + 0.7531743999364345, + 0.763306448088365, + 0.737851222066421, + 0.7565315378583888, + 0.7540730391040182, + 0.7376114806412332, + 0.8295809482226986, + 0.7497778486005633, + 0.5653260972408802, + 0.6833876070948832, + 0.7434699655740603, + 0.7341801843240846, + 0.7961313012404267, + 0.5756614419108765, + 0.6355264236092033, + 0.7456466267542011, + 0.8143970317923749, + 0.7682136856987476, + 0.6594811267980335, + 0.7117763986430535, + 0.7498639479325064, + 0.6930856894684521, + 0.7500875424468556, + 0.8538187976016167, + 0.7217435569692231, + 0.8476576350250526, + 0.788314606826714, + 0.8582792042190815, + 0.5666924135247219, + 0.5161010276253937, + 0.7498150424174455, + 0.8524144971538912, + 0.7834062816982008, + 0.807519977541165, + 0.7325493801624705, + 0.6025958821052217, + 0.6990330889084175, + 0.7029675931652037, + 0.725529924564441, + 0.6495508793634018, + 0.6560582807535903, + 0.7076254628289279, + 0.6845151209263278, + 0.628519795210598, + 0.6924045099597995, + 0.8503575503093632, + 0.7929894983209154, + 0.8785931079943582, + 0.7161520492292264, + 0.7410959825380006, + 0.7057789920616891, + 0.7035778108295832, + 0.916194326089721, + 0.7338869242090338, + 0.6720612337673384 + ], + [ + 0.7350616978799459, + 0.6853400907967183, + 0.7248409124871534, + 0.769198863309506, + 0.8869525811590862, + 1.0, + 0.8004318563200101, + 0.6811509207051737, + 0.6175249758058226, + 0.7025808187161175, + 0.6031236209751487, + 0.7414553305882781, + 0.7847202302747385, + 0.8320169401027382, + 0.800367951303242, + 0.7950615920998453, + 0.6247918438723372, + 0.8261666942330831, + 0.8671058270448897, + 0.7890617836380908, + 0.8445737114178368, + 0.8368352690604883, + 0.8122290850672857, + 0.8737904938806648, + 0.5389936715150104, + 0.8546179131239526, + 0.6741163002391034, + 0.7284223893926556, + 0.9013958288827889, + 0.6771655269668486, + 0.7402169569889119, + 0.6852640059240426, + 0.8445808015164753, + 0.7112120845385236, + 0.8597782531915283, + 0.7997964987622673, + 0.7833909209477168, + 0.32292980961470363, + 0.6192133306545838, + 0.6013815228067753, + 0.7789567117803106, + 0.7027020668049155, + 0.4259651292880163, + 0.8116946551255151, + 0.7994535824278579, + 0.7186704502386074, + 0.6965447019476686, + 0.7804709011416374, + 0.7935863790518985, + 0.5457711313893545, + 0.786314699324852, + 0.8557864462891007, + 0.7720251175120626, + 0.7924141533077872, + 0.5677275620453022, + 0.710779322757753, + 0.8194529013972353, + 0.6852460912672667, + 0.6591477737368446, + 0.7099943049629885, + 0.6294421352608708, + 0.7849386555451994, + 0.6956365202994269, + 0.7667509066974036, + 0.752333902312645, + 0.656676127294354, + 0.9275124833489474, + 0.8146866788679562, + 0.7696310648492214, + 0.7265108181144565, + 0.8239486664593171, + 0.9026927788825878, + 0.7152907512523314, + 0.6459221845804999, + 0.8842360080983228, + 0.7477896108953974, + 0.7425106470748837, + 0.7784887331158055, + 0.7270450779494838, + 0.6771215821041672, + 0.8613282212955435, + 0.6704373944521599, + 0.5433980350397509, + 0.7099441048036181, + 0.7049261534115561, + 0.6785278535441333, + 0.8031848247936801, + 0.8168443088819637, + 0.7066394866250446, + 0.8627892369760185, + 0.8336540071039148, + 0.8423903756933211, + 0.7566619018952611, + 0.8348821106542773, + 0.7657360086125561, + 0.7376976211860016, + 0.6295909503742795, + 0.8083296807456316, + 0.8197370459255009, + 0.7973968416370895, + 0.8249034206574017, + 0.7724521462421371, + 0.6073759423521716, + 0.8574283240720136, + 0.8428069919097233, + 0.747285059521881, + 0.9005833771090506, + 0.7489346565963834, + 0.7307955556372567, + 0.7190330147303984, + 0.7084061611610655, + 0.680120983024557, + 0.6776616705038464, + 0.8217677710989362, + 0.7574746423594347, + 0.8457424080434788, + 0.7050886385145887, + 0.8662754760760933, + 0.5962641435391322, + 0.7915630716859102, + 0.7714774066617767, + 0.7212149516585857, + 0.7015656570290465, + 0.6344639307286098, + 0.5918944647333292, + 0.5750171098636405, + 0.6179017199662605, + 0.8461981310056805, + 0.6656938897914843, + 0.7163643939633093, + 0.6840840315136757, + 0.6795277683085869, + 0.5284141108352131, + 0.6499313423668717, + 0.6921537287508703, + 0.7118707671251255, + 0.8214884579627543, + 0.7899942835994501, + 0.4140670350499163, + 0.7896268027785934, + 0.8384480169875347, + 0.7467030009845492, + 0.7377312545034478, + 0.7902338300874179, + 0.6862342495431892, + 0.8987498637517951, + 0.7907008594325258, + 0.5869076346669809, + 0.4927146991510116, + 0.6490691951624435, + 0.770483505536543, + 0.7450867889109432, + 0.7014444372171732, + 0.587626834260962, + 0.8388286168696836, + 0.7124937510573737, + 0.4625113083842458, + 0.8296507149156624, + 0.7194922498373798, + 0.7518268181768931, + 0.7754749446269683, + 0.7504994527410027, + 0.8018223309544837, + 0.6736909404262111, + 0.758913827471425, + 0.7650727828834092, + 0.679285220506898, + 0.8288522584894477, + 0.8271481372450005, + 0.7970743114616549, + 0.7736927896295671, + 0.7969369351309318, + 0.6411395757135145, + 0.6293463524191014, + 0.7910553836580771, + 0.37871173377138173, + 0.6625986624638265, + 0.6952836642452372, + 0.7027966728301521, + 0.7323757947936038, + 0.7768903027532675, + 0.8090255958079596, + 0.762123318850963, + 0.7696348611685395, + 0.7486665360084369, + 0.8359814473213173, + 0.8666994692730012, + 0.7201880188349271, + 0.5839797190987989, + 0.7272529277313278, + 0.7155688794962315, + 0.6931616513655169, + 0.7814255957196016, + 0.7522193548184508, + 0.5695886191149809, + 0.5938179877138803, + 0.8031069869220614, + 0.7239289761308073, + 0.6306359489232658, + 0.721206426523689, + 0.7705537346552336, + 0.5261516542343869, + 0.6424074330549133, + 0.5331481202915632, + 0.7242484619701968, + 0.8185405081397125, + 0.7795772518301265, + 0.7422354840539321, + 0.6786377405913462, + 0.7173852912691218, + 0.7268454028769034, + 0.58940990729031, + 0.632499717443655, + 0.7379407767407483, + 0.7247246425782278, + 0.5831492153719755, + 0.6281425524242956, + 0.6841516656776933, + 0.626286823945785, + 0.7688935700108267, + 0.5762645726324842, + 0.40995898791167934, + 0.6969721000758107, + 0.7325594913460961, + 0.638492776417452, + 0.6561975602158535, + 0.6223877766980901, + 0.6744724562141552, + 0.6093472416584578, + 0.7458205300150405, + 0.7811275719334257, + 0.7291698526416354, + 0.8187536528161882, + 0.7400553231649802, + 0.8428957549385119, + 0.44693220432170383, + 0.4727082508327012, + 0.49349218066802286, + 0.7189721983259014, + 0.7499803864156989, + 0.7482904490750315, + 0.6319913216651836, + 0.6325917464122939, + 0.6252716914763029, + 0.7126240135387575, + 0.5631018035645087, + 0.5992237169444542, + 0.421743081770098, + 0.49422156751857843, + 0.6017822803197137, + 0.38487019894275226, + 0.6713581400901406, + 0.8751419947611714, + 0.7408766923190806, + 0.8399848260316947, + 0.6671413193053598, + 0.7034995651125653, + 0.5706733059189526, + 0.654329034927233, + 0.8437551274918822, + 0.7570136802796565, + 0.6644740660579551 + ], + [ + 0.714138670449779, + 0.8488775128780865, + 0.8233915263874027, + 0.6527566428124087, + 0.7510881597531793, + 0.8004318563200101, + 1.0, + 0.7262936934599219, + 0.7406222908740331, + 0.8702232327041244, + 0.871452470497122, + 0.6845525569505423, + 0.6605423573180418, + 0.631413187263621, + 0.7855073502864348, + 0.642220133638892, + 0.6497907487153625, + 0.8545737974933639, + 0.688158447065236, + 0.8126289642491697, + 0.7804104266465527, + 0.6780564417967159, + 0.8163286524553536, + 0.9326111387892018, + 0.5465278874895086, + 0.7406590339209734, + 0.5715372620529051, + 0.761715892693261, + 0.8326106411395677, + 0.6566122896059856, + 0.6649860214101019, + 0.805524154163707, + 0.782338168019785, + 0.6456689793672012, + 0.7991237824207473, + 0.6805356437019512, + 0.7431598877700847, + 0.0930804534050157, + 0.5672178039405412, + 0.5151544272889158, + 0.7266029556727022, + 0.5604104228400907, + 0.024799340789711917, + 0.5951048976678416, + 0.6764117636927595, + 0.7821087361840672, + 0.6067863872145627, + 0.881631262148835, + 0.680539962151728, + 0.3734581492754622, + 0.7644943807826089, + 0.6119611829642541, + 0.5835206081092914, + 0.7046444246636318, + 0.4933340188613543, + 0.6251374903610077, + 0.7133579403725983, + 0.5185703362696882, + 0.38527446849796954, + 0.6066243447162725, + 0.6262372033194736, + 0.6484218295487525, + 0.7255330612458094, + 0.6639083188623436, + 0.7557829016578835, + 0.6581575277138213, + 0.8294753880321043, + 0.6545005567659806, + 0.7458343399013415, + 0.7213292999291705, + 0.725692195436933, + 0.8081061242633842, + 0.7804790731824256, + 0.5812021391694039, + 0.7571084157257763, + 0.537199947949593, + 0.5419854972975505, + 0.44321238207838776, + 0.7324739677647389, + 0.4911295575615296, + 0.7959922398339294, + 0.4076136313405837, + 0.5562485118031826, + 0.40807673877070005, + 0.6819973501255212, + 0.7480544201051509, + 0.7747144879268403, + 0.7353955780209077, + 0.46876746530787844, + 0.6449021182350804, + 0.783399291284763, + 0.7159862931204788, + 0.5502652997306875, + 0.6546717737867949, + 0.626040652281634, + 0.6145307574955323, + 0.6454845347720448, + 0.6059473086126826, + 0.8099322179022893, + 0.8469373699720384, + 0.6813267873056293, + 0.6561686011777981, + 0.5884666546557208, + 0.629644467036261, + 0.709305132291403, + 0.8909301912995333, + 0.6807442783719759, + 0.7309076730542571, + 0.525190086081937, + 0.5888635363485165, + 0.49221417571391585, + 0.6735541747659848, + 0.672890561330161, + 0.6872198069890638, + 0.5563320624464083, + 0.6949661932048957, + 0.531207592853307, + 0.7661515120928264, + 0.6175253742419823, + 0.5537555962967126, + 0.5432888496038158, + 0.5148875498381819, + 0.6599782359590369, + 0.6492628117532612, + 0.5425885241978708, + 0.5953492164751223, + 0.42268092816196046, + 0.6578532500634776, + 0.5513757889622365, + 0.40155006227293066, + 0.6935583307993403, + 0.726629737995566, + 0.6836921840860252, + 0.6115463691868276, + 0.8122009634716489, + 0.6272139538083801, + 0.6481214634178342, + 0.6372798713164399, + 0.2658723014363684, + 0.6306266309546301, + 0.6285964830589484, + 0.6466136695711991, + 0.5936104089216685, + 0.7402082389320149, + 0.5159921999151984, + 0.8225122540969522, + 0.5137698954634738, + 0.42912846906208174, + 0.4708564163616222, + 0.4906967568524511, + 0.6010423494973637, + 0.587143977200952, + 0.606723606760673, + 0.6613388540321635, + 0.6235144013079728, + 0.469172345892448, + 0.2733001803658716, + 0.6969496721182782, + 0.6882666987025616, + 0.6460250771339906, + 0.6493854919535281, + 0.570274247481445, + 0.7327731657877484, + 0.5100434967918184, + 0.6414756618369347, + 0.5686909894846724, + 0.4829226810102862, + 0.663089205645631, + 0.621711799981266, + 0.6498930701010023, + 0.6120200545235038, + 0.6102713340111549, + 0.5813137389235786, + 0.359208325641285, + 0.5363770418300893, + 0.17556758321520102, + 0.4724190067049677, + 0.45498444300832386, + 0.7915287453666572, + 0.5526443921355935, + 0.6044659955804855, + 0.5571503239886205, + 0.5534084832245715, + 0.6207262042284245, + 0.6866478563843761, + 0.7328047985538639, + 0.69931750118257, + 0.6787984714145844, + 0.5509232508453175, + 0.5937006997706434, + 0.5453784882723283, + 0.5419628871354532, + 0.5233387419480691, + 0.5155987244056492, + 0.3182520543518298, + 0.5156151197644246, + 0.7278932803070647, + 0.5595171859634211, + 0.41509694079613507, + 0.3604474834002475, + 0.6479125183895511, + 0.5327737508142745, + 0.4766288213987509, + 0.29017093106516245, + 0.5818393873162205, + 0.564718481735671, + 0.5765761124411186, + 0.5502178085215368, + 0.49464730175660104, + 0.40011988158580036, + 0.6008025311415505, + 0.4773673319156446, + 0.46390355124135246, + 0.6619219967057267, + 0.5939882505623406, + 0.3283648504746151, + 0.5102236019581547, + 0.56547113648118, + 0.5166183837139309, + 0.4873496930105245, + 0.459384435888523, + 0.179372792169207, + 0.4331655007272573, + 0.534903924123421, + 0.4569204520777088, + 0.4848652507435144, + 0.42721672764776936, + 0.452906599728138, + 0.7871961325465734, + 0.6957649501553238, + 0.5668820167000498, + 0.5984242633191252, + 0.6241961470695069, + 0.5821991352823983, + 0.6775913388591118, + 0.14254837517038133, + 0.2194640390549252, + 0.3585492670473361, + 0.5121313257550305, + 0.5027443498077402, + 0.7468613088122915, + 0.31199370841412516, + 0.45934021322005547, + 0.34380390303725605, + 0.5381333550616539, + 0.4477934574866889, + 0.7587950329004663, + 0.17380391634034384, + 0.27676120841326207, + 0.5779920477188141, + 0.27366454148764635, + 0.3969112208644087, + 0.6311466666762826, + 0.7828955633074586, + 0.58654780446165, + 0.6502838845418241, + 0.4818802489393839, + 0.4334909676693844, + 0.8596087463953768, + 0.6585968183124792, + 0.6757676196909661, + 0.47871732817510415 + ], + [ + 0.8679604030630229, + 0.6987765887385626, + 0.7755509265750044, + 0.5483867516009823, + 0.7752753286426093, + 0.6811509207051737, + 0.7262936934599219, + 1.0, + 0.761760186925567, + 0.7817451916307879, + 0.7767080702384975, + 0.7880954171343073, + 0.7787029816588796, + 0.6746752064674084, + 0.8811613671632204, + 0.7011022423170169, + 0.8185011719165155, + 0.874094542782754, + 0.7525683274835376, + 0.7470032687621566, + 0.8857807346853964, + 0.6771964611678796, + 0.849199601532515, + 0.7732992453745692, + 0.7435864637770443, + 0.8173735953356519, + 0.7926821357539412, + 0.9055399946942325, + 0.7202468557450658, + 0.6876491423341285, + 0.8655051906707172, + 0.8006799598388645, + 0.8539008287651983, + 0.7898807889096491, + 0.7567998473790211, + 0.8827734355586889, + 0.8885042179734507, + 0.29593795500392595, + 0.8006969249682809, + 0.8519256349885095, + 0.8825775410051421, + 0.7042218784363041, + 0.30565289011968383, + 0.6269460938311376, + 0.7509120920688942, + 0.75970434939626, + 0.8972308392936581, + 0.8098220930495006, + 0.7367026764765625, + 0.7469675178509356, + 0.8415002685096142, + 0.6163804522507313, + 0.6666870160861759, + 0.8163512171140817, + 0.7448561342516478, + 0.7914053094501824, + 0.8279873766075214, + 0.8667123696743204, + 0.37548054557816346, + 0.8380416638530431, + 0.7248153783666774, + 0.868505326237049, + 0.8312112685293284, + 0.8080808813818481, + 0.7820928328752461, + 0.6580018241041073, + 0.7660402817416395, + 0.7533587746016689, + 0.7855665320545795, + 0.8361430633837432, + 0.7465040335227294, + 0.6299100687884842, + 0.8713616683720474, + 0.9009610628633958, + 0.8306556459088124, + 0.7802624196408388, + 0.7989353425495678, + 0.6213439916978232, + 0.8680201256889799, + 0.8073659663576748, + 0.7940210373477646, + 0.3505787798305645, + 0.8149944724347739, + 0.7412465519668846, + 0.9324656802301585, + 0.9211977028353401, + 0.856904285479412, + 0.6263757045880782, + 0.43805748742567724, + 0.6779691910830935, + 0.8929824155069574, + 0.7871533162667109, + 0.6410430417797462, + 0.8443105081581924, + 0.7843805185353446, + 0.8227559484206527, + 0.8241694417165979, + 0.680080626409475, + 0.8175492709410549, + 0.8196646539370386, + 0.8347149574990032, + 0.8301592482279129, + 0.7762993736284846, + 0.7194794997991197, + 0.8979912346581, + 0.7697237353136002, + 0.6696517984378718, + 0.8909555197825039, + 0.6837664610010643, + 0.8570815516716377, + 0.8058668689736657, + 0.71542381788807, + 0.9328088285376084, + 0.8624365720200046, + 0.8339484444967783, + 0.7965975251478635, + 0.8908548846610415, + 0.9031221746294161, + 0.695240936799343, + 0.7528401908429321, + 0.803099361075316, + 0.7884272842555288, + 0.9125601217541927, + 0.8632996445528522, + 0.752331425830519, + 0.7618127472774293, + 0.33338693213809684, + 0.8395174364347726, + 0.5449349051145009, + 0.7196797182695405, + 0.7532942506746771, + 0.7511905126256243, + 0.6702666486297989, + 0.621201182929494, + 0.785329178098702, + 0.9247228468464717, + 0.8298749891849968, + 0.6600461971417918, + 0.6970378641316495, + 0.8591713655406217, + 0.8521604057280481, + 0.8657702377862153, + 0.8776625192115318, + 0.8783619490143154, + 0.4122568950529294, + 0.8164321485137029, + 0.6824076113678124, + 0.6413693331514277, + 0.6026872843080141, + 0.8315607070624755, + 0.8819429995207609, + 0.866413860540011, + 0.9232589410103355, + 0.8041155944717665, + 0.7166590465287924, + 0.7600931694444397, + 0.6722835437521483, + 0.8081433604338811, + 0.8434402426213645, + 0.9094892024329925, + 0.8539515321945955, + 0.8325331970016538, + 0.8442532348591218, + 0.7871757162403533, + 0.8894414827088556, + 0.8124985482762407, + 0.8017093036595583, + 0.8156534452784107, + 0.8188664534041667, + 0.8331363212327237, + 0.7669740324306503, + 0.7829775580462851, + 0.7314317057305815, + 0.6840026137651132, + 0.8163437537438413, + 0.5709724209466687, + 0.8003499430318379, + 0.6072725591630168, + 0.9131803532587929, + 0.8147483951750475, + 0.7089129117268969, + 0.8066822071470394, + 0.8078919130435716, + 0.8722807518591207, + 0.8490744284595737, + 0.8436308483348853, + 0.8275466973670547, + 0.9169600517045211, + 0.7122641877775511, + 0.8689366815555506, + 0.8593918511383556, + 0.8104199155373177, + 0.7542045667581392, + 0.8424569019373728, + 0.7061372803385237, + 0.6884112046836122, + 0.8789973546824973, + 0.8127410718464254, + 0.7373823837722006, + 0.6101621963140782, + 0.8525441469417486, + 0.8021769392621273, + 0.8214323011263427, + 0.7085441722686229, + 0.8033312447071993, + 0.8080453163759438, + 0.7857500766512394, + 0.6959354080349106, + 0.4738466058486597, + 0.6941977361613694, + 0.7899999348906426, + 0.829711301959686, + 0.8389008887654894, + 0.8437406597954654, + 0.722108219476015, + 0.5176478285693915, + 0.6111458345666327, + 0.8664108772529211, + 0.8693639513196125, + 0.7510098570865568, + 0.6952732910949073, + 0.5945097575603216, + 0.7368786841496529, + 0.8141450276710861, + 0.6703770322937218, + 0.6885127725878534, + 0.7442718027242903, + 0.7976292628970262, + 0.8275019905227119, + 0.8933936039629852, + 0.7758010763737567, + 0.8073388634014608, + 0.8458314893736639, + 0.716611441330292, + 0.8213658443356088, + 0.41604694029218653, + 0.5611982865249202, + 0.775036093323388, + 0.8342514342069696, + 0.8084093285970597, + 0.7695420499036678, + 0.6810821456586221, + 0.7267798069220669, + 0.506774659587137, + 0.6858225113237392, + 0.7172056301610861, + 0.8379235643276295, + 0.5275839245662213, + 0.6089525417514806, + 0.8337377794748146, + 0.6309771812406696, + 0.408347427591087, + 0.6351374525157778, + 0.7409030236028241, + 0.587289937472605, + 0.8933248831240437, + 0.7341312945315439, + 0.6853217917629855, + 0.7616731230258119, + 0.7941838161154292, + 0.7630063499654061, + 0.5278176898574112 + ], + [ + 0.8180315427187194, + 0.7008611977817479, + 0.6809508678386486, + 0.6491249243544625, + 0.6992153151359722, + 0.6175249758058226, + 0.7406222908740331, + 0.761760186925567, + 1.0, + 0.7685613002512861, + 0.7671023819702998, + 0.6738973602651267, + 0.6755181681300315, + 0.6307579769899402, + 0.7727197676063899, + 0.8208673064763382, + 0.9085769893116107, + 0.8160686576502003, + 0.7906322356981731, + 0.7422185799768799, + 0.7636658811630613, + 0.684917881548865, + 0.6243555846277302, + 0.8062723252427586, + 0.8512297325865605, + 0.7683486045232382, + 0.4770037119247963, + 0.7311950056953511, + 0.7840458391068109, + 0.8104330791370854, + 0.8251785169410232, + 0.7118630736002949, + 0.6348511675498436, + 0.5572799235051431, + 0.6341816149363921, + 0.8271420280793198, + 0.7310791126497628, + 0.3820782767210001, + 0.8468878025624452, + 0.7773329089276779, + 0.6972261803694721, + 0.5969816748482287, + 0.3235453682779697, + 0.41881941688990576, + 0.5456731130586004, + 0.6766454961974782, + 0.6605391724199788, + 0.8368168065854803, + 0.5886781037973198, + 0.5686773351171747, + 0.7503483369960682, + 0.6824101795556492, + 0.7418651196960413, + 0.825843461500166, + 0.7660653055257935, + 0.8163222060046423, + 0.8351546154074859, + 0.7099779942581955, + 0.47586626611917626, + 0.5736614226821893, + 0.9435153749612017, + 0.7285214782530076, + 0.9208458965407557, + 0.7681360915987274, + 0.6441217436348938, + 0.7139059706398256, + 0.75235549331679, + 0.6275072694927694, + 0.6046603155932332, + 0.7403110952091381, + 0.7189112970854137, + 0.7503607903064946, + 0.8301747084353502, + 0.8438447107312425, + 0.6619944585085359, + 0.5656965147467928, + 0.5275903006751514, + 0.5679613985132493, + 0.8851433363915973, + 0.6799722337387141, + 0.7495245725295476, + 0.5177240818136518, + 0.6714066738926011, + 0.5641172397097888, + 0.82849188530284, + 0.8254424446143834, + 0.8803360261934516, + 0.7761323659621748, + 0.589306055621166, + 0.6583586484460925, + 0.7027733331570131, + 0.6501004780514763, + 0.450338708686783, + 0.6320331205623148, + 0.6615709307802763, + 0.8287080089587893, + 0.7645175342614045, + 0.6984122928688139, + 0.6234109140026705, + 0.6721670778280733, + 0.664259298081035, + 0.8283839607589196, + 0.8444410623552557, + 0.6850958561925528, + 0.6649234701140102, + 0.7717106462343594, + 0.7273558976993652, + 0.7872045435730282, + 0.6212489519928464, + 0.5970040954457273, + 0.6064227413666594, + 0.7529909215472356, + 0.7749797112605111, + 0.793696187435914, + 0.7136888472741136, + 0.7526336600809557, + 0.6784735075801346, + 0.749887549910632, + 0.7039129319812131, + 0.5931163072895657, + 0.631484785207677, + 0.6268939762308517, + 0.7690689987299673, + 0.8857428497025246, + 0.8375459110638234, + 0.8117177145358538, + 0.48047702676879855, + 0.5842944319736505, + 0.6886007110889384, + 0.44130878178550387, + 0.840425968422278, + 0.8067960433405296, + 0.8628087057353891, + 0.7569296118026023, + 0.7285691149179006, + 0.7346375378695589, + 0.7134636600386219, + 0.5541546190222228, + 0.3963227335695038, + 0.6227788550400529, + 0.713029781733904, + 0.6650734837450062, + 0.6295963258744179, + 0.7428194277694695, + 0.614035763573334, + 0.724565605465943, + 0.4671149011792354, + 0.3164700228018155, + 0.3679813300548396, + 0.5366034919109423, + 0.7054763207925893, + 0.6650580818242042, + 0.7117370997103785, + 0.8653426811462847, + 0.5726880959364645, + 0.5831620628367308, + 0.4450947939313176, + 0.7853184230762428, + 0.8442686389460036, + 0.8122740499092403, + 0.7280671590740353, + 0.5944923852525538, + 0.7768472647619544, + 0.4944776343273855, + 0.6175799903692349, + 0.5833925286548786, + 0.551150836114898, + 0.7579610167373965, + 0.6818364572493137, + 0.7213552544203184, + 0.623590460566144, + 0.6376896200375307, + 0.7738122088983627, + 0.5214602576146543, + 0.6319992325042074, + 0.3891322811903589, + 0.6390928029846579, + 0.3609098983892239, + 0.798022145136138, + 0.6725037020486698, + 0.7924795950919831, + 0.6386499023492235, + 0.6130283236141285, + 0.6342970203786811, + 0.5980624660848121, + 0.6884361752333467, + 0.6612908924904717, + 0.7941570333914373, + 0.6988480808653816, + 0.6847284387214432, + 0.6536090212050487, + 0.5222919656336699, + 0.5882913652207811, + 0.6200085881414059, + 0.49165784101548815, + 0.4482984826652262, + 0.7876447570496893, + 0.6751090271282649, + 0.4137613820594235, + 0.51068703685942, + 0.6685548444359835, + 0.8210895710450336, + 0.697121048754014, + 0.4097722130298818, + 0.5405142822803437, + 0.5915015321953446, + 0.6990441714147199, + 0.7109568824168624, + 0.5509073988929736, + 0.47640557304545145, + 0.4698018736531486, + 0.5105336552975582, + 0.5694790099241094, + 0.802338221318729, + 0.5928056266084558, + 0.45407434760926224, + 0.6343835062530135, + 0.6354696566629074, + 0.562231064669353, + 0.5458106413954898, + 0.48956216702826005, + 0.21062729197950306, + 0.5102431769957362, + 0.6721538305819457, + 0.6563697835996135, + 0.6724274111655911, + 0.5112676652846531, + 0.5013646789356445, + 0.7636050654848731, + 0.7789663718842987, + 0.6750441691738824, + 0.611259563751515, + 0.692298763837324, + 0.6478016071083995, + 0.6351346356507003, + 0.39548359914730286, + 0.3303891299399923, + 0.5111064902026596, + 0.6839618333009643, + 0.5606480156394783, + 0.7231297241951076, + 0.468939642844893, + 0.4928792913444096, + 0.5399172972144621, + 0.38636148411822313, + 0.7658899421271653, + 0.7800947524783652, + 0.37241748606065833, + 0.36096481413150655, + 0.6513969202484888, + 0.4443735347331532, + 0.4237509161849825, + 0.6365899805072405, + 0.8165235161067879, + 0.604308926627598, + 0.7933762176921055, + 0.518566751090413, + 0.5941060663449861, + 0.7438936253747245, + 0.7314672415984442, + 0.598229967905506, + 0.4853208523517661 + ], + [ + 0.7256553302270345, + 0.7681424908836458, + 0.8183069649544625, + 0.736285298842078, + 0.7575795308995198, + 0.7025808187161175, + 0.8702232327041244, + 0.7817451916307879, + 0.7685613002512861, + 1.0, + 0.9359468838268524, + 0.6643221323186685, + 0.6500069694703637, + 0.5637699499409972, + 0.8309461784849055, + 0.6350935710838318, + 0.6934351647067903, + 0.8731718285882023, + 0.7361363167630679, + 0.9086124919132135, + 0.821552216615645, + 0.6868084906110933, + 0.8772596605754652, + 0.9091758971187285, + 0.5811233821396484, + 0.7131933662571612, + 0.7062852468510139, + 0.8751745226625591, + 0.7736679295393319, + 0.5753576261530916, + 0.6816359186164176, + 0.7592322386881684, + 0.7512477128228323, + 0.6831215890412263, + 0.8515996645555004, + 0.7332036241494656, + 0.8481165983069732, + 0.23566028549005016, + 0.5506238663866221, + 0.7209700317049353, + 0.7166801296217878, + 0.49033699399437297, + 0.11692077260291701, + 0.673374102943215, + 0.7079108967154236, + 0.9466315424481623, + 0.7578913191413225, + 0.9475963039257594, + 0.8026811925824583, + 0.639264913209809, + 0.8257612822570826, + 0.6041540051063389, + 0.5884896228007358, + 0.6910971291523941, + 0.49647488589960576, + 0.6169517997543679, + 0.7095152407927446, + 0.630135796871678, + 0.4931635125671012, + 0.7199749763251228, + 0.6537540546532521, + 0.8137143985152608, + 0.7046607883353482, + 0.6819945272083769, + 0.8481475229963811, + 0.7215918636636081, + 0.7948664487619979, + 0.780049276665688, + 0.7241800646002482, + 0.7265584145804115, + 0.8156767062215899, + 0.7520969667710106, + 0.8702598497982472, + 0.719015574861951, + 0.7648317515007644, + 0.67889451195424, + 0.6498961737986321, + 0.5153588694575485, + 0.7605742614566506, + 0.6340550923305146, + 0.7427476910528811, + 0.4959896890293058, + 0.7571379118030418, + 0.5780835071520756, + 0.7780321059088845, + 0.8000034810208944, + 0.8460258398070726, + 0.7819350857237708, + 0.5808159425870029, + 0.6056057170601128, + 0.8117485752302741, + 0.8123250113803704, + 0.6770053655880354, + 0.6968662983704624, + 0.8184761830406921, + 0.6388347124730755, + 0.7230746091609414, + 0.690750200557321, + 0.8388737244540623, + 0.8174298643809056, + 0.7944027066102588, + 0.7177831469056781, + 0.7034122197615279, + 0.685283099371458, + 0.7663823964993919, + 0.9176875024289386, + 0.7161956497316111, + 0.8702136800715536, + 0.674199848825389, + 0.7730877220475838, + 0.6905695142869078, + 0.8342432481961644, + 0.7453029808357353, + 0.7120293967319979, + 0.671146214974956, + 0.7963992177367131, + 0.6902484297807239, + 0.8029348608408573, + 0.807040112888519, + 0.7083390688256589, + 0.6994109739800851, + 0.6660557076931481, + 0.796018358617112, + 0.7225695901525269, + 0.7141563391664218, + 0.8003738596176305, + 0.5614372416985346, + 0.7369744972737018, + 0.7032484191714476, + 0.4941369126609045, + 0.8333038259261175, + 0.8666759653941356, + 0.7824825962608931, + 0.7608379176126439, + 0.8293463565475893, + 0.7292538376808504, + 0.7582475709145243, + 0.7636176503273379, + 0.5935570161571867, + 0.7531630677453001, + 0.7020493968043597, + 0.8085419730172599, + 0.6928084619665454, + 0.8609789294062252, + 0.5884315853560204, + 0.8663619990825275, + 0.6647499940513635, + 0.6637154768642398, + 0.6297191682446232, + 0.6609867025592314, + 0.7051593655074158, + 0.7208352843400181, + 0.7500190510269594, + 0.775482692361541, + 0.7248154673808923, + 0.6949751190456089, + 0.5771863270195386, + 0.8446183430544508, + 0.8103646524733882, + 0.7456116000535158, + 0.8123336314539392, + 0.7312134068104708, + 0.8661312499381568, + 0.6824616591201882, + 0.7576838652624086, + 0.6884790094295119, + 0.6861767462842973, + 0.7792232462899366, + 0.7384828356785448, + 0.7786930976572538, + 0.7728431113129911, + 0.766160222007784, + 0.6439921189532302, + 0.433501560199032, + 0.6602642217988487, + 0.3791803772623984, + 0.6696080004386381, + 0.6787424619773205, + 0.8383947910267967, + 0.6835555225849815, + 0.5879057394283975, + 0.6696520101195933, + 0.7048979268459099, + 0.7501021327356522, + 0.7675794320997359, + 0.7778016303963139, + 0.7551264176926538, + 0.7781876232946814, + 0.733838156665557, + 0.6386028839171686, + 0.6968469293665832, + 0.6784485340079458, + 0.6500780118919051, + 0.6401152749560997, + 0.579982507958815, + 0.6327226423799794, + 0.8514751280713222, + 0.7226650960214873, + 0.6015665303407555, + 0.3990381287906916, + 0.817589863043629, + 0.6733535459759362, + 0.6102143408434203, + 0.581591937581674, + 0.7410199713878177, + 0.6572368170225928, + 0.6255676026131508, + 0.7284641823298657, + 0.6502604727841569, + 0.5865049033510207, + 0.734196147628793, + 0.6911614617590491, + 0.6840685376671813, + 0.8374341958251493, + 0.8016670601089854, + 0.33308541064060276, + 0.6544683245925708, + 0.7200168763801696, + 0.6741038165185633, + 0.6346980954614647, + 0.6592324507349403, + 0.4082722617211087, + 0.6343149034367902, + 0.6938996616363248, + 0.6233999106006707, + 0.5600712617026108, + 0.6572483542778826, + 0.6103463231702765, + 0.7995942861658888, + 0.803451505217968, + 0.7200652639257422, + 0.7729097917046364, + 0.7492984154616174, + 0.7527826096176689, + 0.7800638449968407, + 0.3112714742648768, + 0.22145797664104702, + 0.6082360131221618, + 0.6714583705735447, + 0.6420957192146811, + 0.7166758557248523, + 0.555179536170607, + 0.6303497301028147, + 0.5217547330563239, + 0.6668994072910991, + 0.5004584661592549, + 0.7598944308352643, + 0.41537049529886155, + 0.5072439145891273, + 0.752181002755168, + 0.6181537247330535, + 0.5064014253123316, + 0.6124990279910353, + 0.7527006587457759, + 0.5801245374067487, + 0.7085133672810311, + 0.6704469350370048, + 0.545362780029405, + 0.8311610194741277, + 0.7624326275490599, + 0.8541780918498874, + 0.4930540134807932 + ], + [ + 0.7527614020146991, + 0.7844314675005563, + 0.7775286678471383, + 0.5638897404185095, + 0.6970503801264544, + 0.6031236209751487, + 0.871452470497122, + 0.7767080702384975, + 0.7671023819702998, + 0.9359468838268524, + 1.0, + 0.6038318786472161, + 0.5416338233759109, + 0.5199781088676098, + 0.7477502298475108, + 0.5661584898821095, + 0.7182727369866901, + 0.8112670141775691, + 0.6436404311860842, + 0.7919818969984982, + 0.7777701428725146, + 0.6448401639199768, + 0.8098956503941581, + 0.8722873457761898, + 0.5712631321806864, + 0.6630036946271957, + 0.6325559501333328, + 0.7984710985679131, + 0.7401001717507621, + 0.5832050815848965, + 0.670835213506525, + 0.7745557212959355, + 0.7341454596562305, + 0.7183560479483541, + 0.7097292571727057, + 0.7087095008024513, + 0.8097098604776545, + 0.09468573444484606, + 0.5549378567168943, + 0.6797230255297064, + 0.6960074675779054, + 0.42191847285208656, + 0.04978312981777829, + 0.5208001078956168, + 0.5982732038950165, + 0.8261530611144208, + 0.7170461690908877, + 0.916631660000606, + 0.6179965502700908, + 0.561229451038221, + 0.7623490503431634, + 0.41851962479199195, + 0.5247749050606009, + 0.7027527863422481, + 0.5688718344321033, + 0.6604192228521674, + 0.7225176250658133, + 0.5574110673257633, + 0.2853753825449693, + 0.6483016617971177, + 0.6524467508399314, + 0.6844789171657788, + 0.7010377404555701, + 0.6789496149501669, + 0.7318742929538176, + 0.6107137094137212, + 0.6790859323022777, + 0.6252020089786081, + 0.7298429441529842, + 0.7635087551185846, + 0.7234028299462462, + 0.6202543571078025, + 0.7914666972125165, + 0.677162572675326, + 0.6420346653177156, + 0.5519226202842351, + 0.5208226659991806, + 0.33901756830966534, + 0.7863351466689841, + 0.5028135338683456, + 0.7356521430204948, + 0.3045321614902817, + 0.6556427818968796, + 0.4106624768558527, + 0.7342675381402318, + 0.7914194460860907, + 0.7433807268221615, + 0.6420227326974519, + 0.4046932685614081, + 0.4841945226761682, + 0.7186826765607292, + 0.7110328239729772, + 0.4798729223348513, + 0.5725019210528914, + 0.634978784103902, + 0.5771951415218906, + 0.6466683154874295, + 0.570369683770026, + 0.7783098734490457, + 0.8220070455987496, + 0.6793532581641718, + 0.664155348341315, + 0.6027157654803007, + 0.5739528558462493, + 0.6854695287992366, + 0.9037327308180053, + 0.6021034219403264, + 0.8011355496922832, + 0.4979255987817716, + 0.6403625884945525, + 0.5932669400291706, + 0.7123898711405574, + 0.688206675211755, + 0.6311095442033197, + 0.5488655625393893, + 0.6299881704019676, + 0.6338396844524707, + 0.7200892782986397, + 0.6395205094789531, + 0.5446056381982319, + 0.562973687848707, + 0.4891843371324955, + 0.7207451080421986, + 0.6933787703791561, + 0.5845996109156449, + 0.653735500251297, + 0.3449504087866401, + 0.5971685158007993, + 0.47945323078460783, + 0.3373468767045992, + 0.705182832751695, + 0.7590254416237268, + 0.7026903587446256, + 0.6111194624049933, + 0.7758929644724858, + 0.7026523877770114, + 0.6765240807267399, + 0.5709687391071295, + 0.5131040397142261, + 0.6361697881474303, + 0.6151260555824746, + 0.6701603810269862, + 0.6284807055597259, + 0.7860245822689328, + 0.3955723893659786, + 0.7555216857375043, + 0.4641092605042314, + 0.5057626810624836, + 0.5557699015666868, + 0.597257700414861, + 0.669995850910335, + 0.6855074030801009, + 0.7184505443512283, + 0.7081608551276709, + 0.5447830274452176, + 0.5432777688983177, + 0.48204440662964493, + 0.7308578377875694, + 0.7728695130862243, + 0.6937557567464914, + 0.7000609253995966, + 0.6441543669707167, + 0.7416580579342961, + 0.5721695539926681, + 0.6611078069022064, + 0.5267434618112767, + 0.5745953603754941, + 0.6566826943375346, + 0.622596599061989, + 0.6256486494551814, + 0.631377270653515, + 0.6496790726643582, + 0.5374723394216568, + 0.30468347342221597, + 0.5099923444271739, + 0.3749505991115018, + 0.5734621741983195, + 0.5031586734155277, + 0.8609984852618215, + 0.5864869263694009, + 0.5004730942860187, + 0.5397390212419342, + 0.6080119429620301, + 0.6355446008244348, + 0.6576595518528127, + 0.6811995427118939, + 0.6270500826136188, + 0.6935423905112179, + 0.5917980809701626, + 0.576369127860194, + 0.5654996203190201, + 0.525791102965844, + 0.4846850847487698, + 0.528452471688465, + 0.43058425995308663, + 0.5398263836875938, + 0.7449422136756217, + 0.5835445010471868, + 0.4344586371201135, + 0.2924338810399936, + 0.7306287146757809, + 0.5507429540736203, + 0.536679036479164, + 0.4193122651096806, + 0.612557255180963, + 0.547495614744498, + 0.5160947066413313, + 0.5267959612305689, + 0.45640220715176666, + 0.402081808592216, + 0.6493319380452584, + 0.6541094441408308, + 0.6075833910045564, + 0.7316929700554807, + 0.5946617684352673, + 0.13156702887414035, + 0.45543280503069755, + 0.6149994416373374, + 0.6295214032695594, + 0.45716666202868955, + 0.494752869954814, + 0.35053824142630524, + 0.45979584146191443, + 0.6303592832894321, + 0.4849604846054077, + 0.43593413238789275, + 0.5042174705495843, + 0.5386967872653173, + 0.833764565370961, + 0.7238310726930366, + 0.6133153743944935, + 0.6112726194044527, + 0.6083159323107764, + 0.5480217425153036, + 0.6435240005140954, + 0.21208881670400495, + 0.0807192539598082, + 0.547852722264699, + 0.6108219505039548, + 0.538518927871867, + 0.7497886678309015, + 0.3921662248950899, + 0.5227822488732737, + 0.29240919828663464, + 0.5404896852567012, + 0.5128874397248349, + 0.8663630578678716, + 0.291187311355321, + 0.4643904594596717, + 0.7182160188550066, + 0.5000235465616047, + 0.27385345364357794, + 0.4558878421334277, + 0.7017251798467811, + 0.5057757921876485, + 0.6618973826771881, + 0.5010369858256355, + 0.4734852619366689, + 0.9217408716824114, + 0.6677626934975439, + 0.6965665096919983, + 0.4393885096529593 + ], + [ + 0.7988679761202162, + 0.8434874165829854, + 0.7073970850169512, + 0.585170437070234, + 0.7647302192829784, + 0.7414553305882781, + 0.6845525569505423, + 0.7880954171343073, + 0.6738973602651267, + 0.6643221323186685, + 0.6038318786472161, + 1.0, + 0.8384401652498945, + 0.7649754238204404, + 0.7545978369298295, + 0.7891808287697267, + 0.6523002602870259, + 0.8631782917819504, + 0.8285384610981327, + 0.6912738631592145, + 0.8068294218858683, + 0.7386655099017544, + 0.7668919991661001, + 0.747215673758305, + 0.7881969121674034, + 0.9066491774696034, + 0.6745422591906529, + 0.8364334541288603, + 0.7658189399934052, + 0.8429086120633726, + 0.8205141716692623, + 0.810402609320485, + 0.834251345948399, + 0.68413261057168, + 0.670225032226271, + 0.8347242349203636, + 0.8167001239864665, + 0.4307105116756398, + 0.8382764299867304, + 0.6789124132078738, + 0.834883119917348, + 0.7632035221084826, + 0.2986930289642145, + 0.5718393573141108, + 0.5849663173795889, + 0.7101804584459666, + 0.6894224097164403, + 0.7007998753490903, + 0.6854457606939854, + 0.5728433321516684, + 0.763351828463363, + 0.8033168424875182, + 0.6483137937963257, + 0.8334508436526545, + 0.7507568291719933, + 0.8066933809612725, + 0.8163412863465334, + 0.8000616588684272, + 0.43895765343562987, + 0.8171007285141016, + 0.6549683062817137, + 0.8008656336260744, + 0.8115353301975062, + 0.7720056746404848, + 0.6854075915995916, + 0.4710616588872118, + 0.8220554841290183, + 0.6634647843041391, + 0.7689503154223691, + 0.8160957298208743, + 0.7739049681758975, + 0.7815455106903724, + 0.8176858846694312, + 0.7862571740263226, + 0.8216575536395371, + 0.6431941239312231, + 0.6316222136960454, + 0.7719411070904431, + 0.7443350474244623, + 0.8408447666656065, + 0.7899967392467699, + 0.3878956940316202, + 0.814630223275594, + 0.6817844187345414, + 0.8495204272631518, + 0.8577832821110258, + 0.8680803045385066, + 0.63778819135636, + 0.44314204708782245, + 0.851766066545354, + 0.8339005870885224, + 0.6338734351259316, + 0.6298042960774145, + 0.800280430004532, + 0.7096014281941538, + 0.8216698973337851, + 0.9030715604335275, + 0.7635682612593105, + 0.6370749684038206, + 0.8069534102481043, + 0.824644904847354, + 0.8072405530342895, + 0.738813083024176, + 0.7273345510870104, + 0.7959480776307407, + 0.5579105297979953, + 0.674227334587688, + 0.7207242708372679, + 0.6767294439898703, + 0.683900182745927, + 0.6938646210363723, + 0.5279723478800761, + 0.8185856411595347, + 0.8672050705940832, + 0.846534319992614, + 0.8528080523004817, + 0.7674440758555697, + 0.8430812378747027, + 0.5250194105257383, + 0.6288062700181082, + 0.7882612530754096, + 0.7907475371975845, + 0.8319274133339001, + 0.7279369004914733, + 0.7053319366629641, + 0.6635878240942681, + 0.4462858032446997, + 0.7655972119073022, + 0.5921585516045078, + 0.66307645730536, + 0.6378870617420543, + 0.7064837621166162, + 0.5595246196063838, + 0.5678398205211179, + 0.6304900925034989, + 0.8045152708580384, + 0.7613222881418488, + 0.5916441208780725, + 0.5089929116992353, + 0.7391720280927482, + 0.8127701667011902, + 0.7319609521010565, + 0.7369038790823682, + 0.8009497434521465, + 0.5600495649293895, + 0.6871600137682806, + 0.7101015204291649, + 0.5606897025052832, + 0.5453086050520426, + 0.7176822534711855, + 0.7620016022302633, + 0.7700605188076239, + 0.8094556167823007, + 0.6690412734200017, + 0.5971316870050971, + 0.6470116151373612, + 0.4680747899640179, + 0.7334290523647896, + 0.6675983873504431, + 0.800176094546921, + 0.7408772422174852, + 0.6655772840239438, + 0.6772125234833228, + 0.5882240209670403, + 0.7780196439494614, + 0.7503528218143543, + 0.6564744209075285, + 0.7402013057647541, + 0.7341407088491053, + 0.7419977081836747, + 0.6004064914296652, + 0.6601120218411025, + 0.5319509927329436, + 0.7467846229708169, + 0.7274174172200043, + 0.35824697487939444, + 0.6455308629068767, + 0.6212744573914528, + 0.8235268559887424, + 0.6603719454974835, + 0.8165912844245582, + 0.7315755032859105, + 0.7214526698493863, + 0.7222160230740066, + 0.7822235088831129, + 0.7064923265635418, + 0.7418663921673608, + 0.767177287196788, + 0.5084024773815157, + 0.7810914952619892, + 0.7710521000171413, + 0.7196767089509519, + 0.7453390515426705, + 0.7512064855546832, + 0.6035369481986059, + 0.45769029155895924, + 0.712668464038609, + 0.6441887590230233, + 0.6873968513662577, + 0.6671758825271991, + 0.6975244294684618, + 0.6819608440503475, + 0.7686040331644318, + 0.5353099805143777, + 0.6965322583501703, + 0.6954549607625536, + 0.8132671896710622, + 0.7109112057932706, + 0.4359924882765868, + 0.6156034586543897, + 0.5039256234410983, + 0.6179058312416709, + 0.6736517715293634, + 0.6728740046084134, + 0.6433128607950163, + 0.5405954041660281, + 0.6758316825466065, + 0.6703167595927059, + 0.667822400193342, + 0.7147149373537612, + 0.627864381716296, + 0.3768453610283867, + 0.6305679992440534, + 0.6569456338787194, + 0.6604886060480002, + 0.5307751267694633, + 0.6601713612054715, + 0.5865562704330213, + 0.5488626349569005, + 0.7280295214732974, + 0.6748468731104547, + 0.6592372362740071, + 0.792376484235592, + 0.6983644720314337, + 0.7430198655709056, + 0.5245205326013893, + 0.662841524521053, + 0.6417465042684882, + 0.7519634515093339, + 0.7849792476889418, + 0.719655797779134, + 0.6589783919303658, + 0.6294650457923139, + 0.5523587761325817, + 0.4877395726211913, + 0.7083071467534406, + 0.5347416288378127, + 0.5014932474673454, + 0.4020216718178133, + 0.66146666661866, + 0.5251769918227405, + 0.4244838438912269, + 0.7934213585859577, + 0.736706638094014, + 0.7040243669218067, + 0.8040031164645342, + 0.6161962539989445, + 0.7778556221297118, + 0.5504331001275025, + 0.7679070139110455, + 0.6450507832591875, + 0.4657260747201354 + ], + [ + 0.7885243151930609, + 0.8019635394255897, + 0.8475052429226512, + 0.7272589979879437, + 0.731209625537404, + 0.7847202302747385, + 0.6605423573180418, + 0.7787029816588796, + 0.6755181681300315, + 0.6500069694703637, + 0.5416338233759109, + 0.8384401652498945, + 1.0, + 0.6385757322326676, + 0.8267297484096409, + 0.7060355237491465, + 0.6451738507416466, + 0.8877339825393581, + 0.7936415625508175, + 0.8109022776602551, + 0.8547101659765436, + 0.6270987739300938, + 0.8069103353598369, + 0.7591527393241924, + 0.7360332762626295, + 0.8391255256977669, + 0.830364810207186, + 0.8173231146276231, + 0.6858825971569142, + 0.7390544926528283, + 0.8551308349430122, + 0.7657970973814275, + 0.7738195147569752, + 0.6294991527018573, + 0.8360226969485105, + 0.7622892911112779, + 0.7983607937490654, + 0.4650175588910347, + 0.8063968374054138, + 0.7114711907905346, + 0.8545475784518152, + 0.8502018455483017, + 0.4614741616494706, + 0.7263861187957966, + 0.8127262318055067, + 0.6846215565906978, + 0.7395999024471914, + 0.7339833833088214, + 0.8360124022825539, + 0.6299963052122257, + 0.7670023859360867, + 0.803919093461683, + 0.5923577634713915, + 0.7534157038373632, + 0.5900284749363987, + 0.6410416580194047, + 0.7508473291103582, + 0.8627703255028619, + 0.5727111216597089, + 0.7711986181761703, + 0.6146398494600168, + 0.8394606063253115, + 0.7402699335738446, + 0.7139430918857211, + 0.7957143907576102, + 0.6840639459410238, + 0.8162613904763064, + 0.7797360518239908, + 0.7852771142200561, + 0.7746786972174121, + 0.7660195547983586, + 0.7687490493903615, + 0.8531738647586795, + 0.8237296933443262, + 0.8677966067208874, + 0.8107728596280102, + 0.8067132179868945, + 0.8129759143171174, + 0.7579559920029044, + 0.8584078004486679, + 0.8038526191298773, + 0.4734994610995753, + 0.6853766070175787, + 0.7941466078878089, + 0.8273609299947422, + 0.8594608085476203, + 0.8869192926570013, + 0.6685817125583438, + 0.468803155156742, + 0.7966258299128965, + 0.9164046489127924, + 0.7827275072481665, + 0.800999985966636, + 0.9115754189125989, + 0.8250480514636659, + 0.7792359898013971, + 0.8536438082117667, + 0.6877277847363192, + 0.7566528414771393, + 0.796937024812643, + 0.9053578844671683, + 0.757375016963727, + 0.7521937844275332, + 0.7002531981794857, + 0.8936741468523931, + 0.6670586277809583, + 0.7225073368774229, + 0.7857878641050959, + 0.7375504250557932, + 0.8205894791245352, + 0.7196557172928725, + 0.6372211329535219, + 0.8887710226996619, + 0.9471064716737007, + 0.8505605880970045, + 0.8904080602211946, + 0.7523478212740917, + 0.9276577878124281, + 0.6926101575511788, + 0.7754257917092104, + 0.8637892860992437, + 0.8118138573600783, + 0.8317047921637274, + 0.7133949500456286, + 0.7670103023835019, + 0.6753382571748648, + 0.3873861305326858, + 0.877428597436683, + 0.7246228603357001, + 0.8410425395785098, + 0.6875091414063624, + 0.6918907850888941, + 0.5289488246832207, + 0.5667489021385609, + 0.6762907053524336, + 0.8321885472272524, + 0.782019376587568, + 0.7887717581983837, + 0.5274932842542547, + 0.8018717434069731, + 0.8162112006401974, + 0.8643662104267142, + 0.8150451771972995, + 0.7853284061407954, + 0.5661867429435713, + 0.8202040587081143, + 0.7950568070922596, + 0.5344023657690122, + 0.42435472288661275, + 0.747496319796991, + 0.7571059874417964, + 0.7180779337407921, + 0.7860252390209386, + 0.7838131925668749, + 0.7707796801794101, + 0.7619524564362816, + 0.5354734380784177, + 0.7628785171094353, + 0.7020313466184238, + 0.8141451817097723, + 0.8210770452037567, + 0.6985173575968485, + 0.8079821374242483, + 0.7513663948166239, + 0.8747146785376139, + 0.8874700691057592, + 0.7629419235960216, + 0.777869579300562, + 0.8162400891928716, + 0.8458744007174335, + 0.7508664821277379, + 0.7449996433760988, + 0.7185078359418553, + 0.8537000028686192, + 0.8487635198406692, + 0.3347155577979912, + 0.6733435033450842, + 0.6531407088638228, + 0.7844423846473381, + 0.7356094133798184, + 0.7625754863098547, + 0.8388321585324346, + 0.7142074292706255, + 0.8725460250646025, + 0.8670602859618864, + 0.8576213431614216, + 0.8449233431131928, + 0.8690281517457417, + 0.7100143329847624, + 0.8838735749000747, + 0.8455399198021402, + 0.8643261675500835, + 0.870968617846305, + 0.8582757709406706, + 0.7119233637052388, + 0.6840719200066224, + 0.7896994450528246, + 0.7579149203761281, + 0.771255697278483, + 0.6606313536313704, + 0.7269192482167705, + 0.6922540381832102, + 0.7740757172342274, + 0.6547139276629911, + 0.7712182585818881, + 0.8472938001458193, + 0.9120553979995284, + 0.8160638059495854, + 0.47979292285543695, + 0.7590796221716597, + 0.6663724929073658, + 0.6305810136915122, + 0.7638231368332564, + 0.7698331916013145, + 0.7789035971498108, + 0.6941128727315947, + 0.7948838381156013, + 0.7942491099286927, + 0.7548076159620629, + 0.8319686439998917, + 0.79408699829232, + 0.3570615806797748, + 0.7423040920418748, + 0.7584876231242236, + 0.7166537134672927, + 0.7557878064039804, + 0.7692768939224379, + 0.7403081255101346, + 0.6185778469939037, + 0.8505323804062507, + 0.7254846016266187, + 0.8449095055049181, + 0.8908014803420484, + 0.8318043036756314, + 0.8506457983154606, + 0.4539018347660003, + 0.689977489785866, + 0.6215105398262731, + 0.7802189577612074, + 0.8178020978089459, + 0.6205021693116982, + 0.7268800892250991, + 0.7685763527034267, + 0.6914969193341899, + 0.6478578399142013, + 0.6218090457719032, + 0.6026791611307996, + 0.3991776566290828, + 0.36020408248724084, + 0.7728147097727699, + 0.4998742699985345, + 0.551396693820746, + 0.8470455709330812, + 0.7760506412905286, + 0.6785075406337276, + 0.8667107271467963, + 0.7613565102109566, + 0.5667862457440638, + 0.5562801753456534, + 0.7782271000925283, + 0.798287446854086, + 0.6789651696860397 + ], + [ + 0.751914022829578, + 0.5824645484278694, + 0.4671683372095688, + 0.6499159360620039, + 0.8777417347050376, + 0.8320169401027382, + 0.631413187263621, + 0.6746752064674084, + 0.6307579769899402, + 0.5637699499409972, + 0.5199781088676098, + 0.7649754238204404, + 0.6385757322326676, + 1.0, + 0.7406002146412475, + 0.8754856587627394, + 0.6913164230496455, + 0.679613706163489, + 0.8547798910428043, + 0.5578847699047753, + 0.7846739529814228, + 0.8712201258055186, + 0.6384062543360075, + 0.7296116204288657, + 0.7063858978848716, + 0.873273518516066, + 0.5066349399952126, + 0.6282112195719386, + 0.8474949902283732, + 0.8411829302632193, + 0.7895022750787393, + 0.7044420001319589, + 0.8348456263576072, + 0.6224608318951005, + 0.6038691388388496, + 0.87821382098527, + 0.7487104157362573, + 0.37317608256518864, + 0.7207018149112369, + 0.6532739929729393, + 0.641325144711797, + 0.5533488383558862, + 0.36927321017031683, + 0.6304403142846506, + 0.5657562502762228, + 0.5961241881265723, + 0.7135379229002774, + 0.6423957890763609, + 0.5794178348833305, + 0.6422612688774884, + 0.7377966368949574, + 0.8260421474619204, + 0.8104343197206194, + 0.878332812924342, + 0.8068680154657503, + 0.8517455873155895, + 0.8779694615010439, + 0.7129519479517942, + 0.5205688062761146, + 0.7658682950330034, + 0.7376579097050467, + 0.7377521325446404, + 0.7408752993815716, + 0.8535923450923105, + 0.47629125012629386, + 0.4674100955248214, + 0.8476315456472623, + 0.6469688516182406, + 0.6856920553659097, + 0.744722068421556, + 0.7506974776576483, + 0.819701581559213, + 0.6262311716302387, + 0.7020684713035317, + 0.7877473933744495, + 0.5890445260496494, + 0.5880926972380929, + 0.7026395691633717, + 0.6527844245330752, + 0.6888045586290644, + 0.7742103127759522, + 0.593733843365394, + 0.5928848419378713, + 0.6729699051868565, + 0.7726352070681867, + 0.7174538916988912, + 0.7698567238041115, + 0.6899149462280489, + 0.6475325027975511, + 0.8026460955876961, + 0.7013783283710194, + 0.6091645090869149, + 0.5410341478773514, + 0.7231517237293326, + 0.609884785818486, + 0.8303893563442987, + 0.6865046467512802, + 0.8550760029848138, + 0.6168129065806327, + 0.675962719008627, + 0.6937399906255935, + 0.8196441993372414, + 0.6818886430571014, + 0.869867309613288, + 0.7358114708797538, + 0.500351620026863, + 0.8150798198655232, + 0.6618547788537851, + 0.721973235063508, + 0.5847816933778053, + 0.7322155401330236, + 0.5757280493392419, + 0.6314760448050545, + 0.7572616659619693, + 0.8229571090122024, + 0.7556541686111967, + 0.7703741864718479, + 0.7797635957796093, + 0.48415522654030696, + 0.618793683831861, + 0.6793590442344222, + 0.7027938924097852, + 0.7415373641337364, + 0.7140319057238578, + 0.5627452237141874, + 0.5861455659140381, + 0.6011252256395171, + 0.6667403755367303, + 0.5016405663318177, + 0.5752824886663298, + 0.6214388129849447, + 0.6550935710122425, + 0.5400582413509325, + 0.6381614956529257, + 0.3913348815044779, + 0.7740900428009913, + 0.8454543583662986, + 0.533567306422721, + 0.5165081013545981, + 0.7687891422777443, + 0.8663396418553777, + 0.6650670775539852, + 0.7380801182015794, + 0.8051872955319933, + 0.549397966107377, + 0.6717866904692266, + 0.7091143848127469, + 0.5911253132256591, + 0.652343555901918, + 0.6611209195264526, + 0.8004216282446464, + 0.8306023672345093, + 0.7309824810096569, + 0.5263668364291171, + 0.6714397807969009, + 0.6539661869924989, + 0.5761734182038254, + 0.7901540542057195, + 0.7493551396327667, + 0.8270999604645489, + 0.7482848959963627, + 0.7661060261234847, + 0.6719224066951242, + 0.5606699990989109, + 0.6693653699285901, + 0.7061081932698612, + 0.6412908187592037, + 0.8312145354248339, + 0.8085507470228456, + 0.7490897688302833, + 0.6581702453634392, + 0.7159929065766836, + 0.5753621676073685, + 0.5054557567227755, + 0.7298076003137695, + 0.5805505970497058, + 0.7477940391801322, + 0.583806462164161, + 0.7095970930565308, + 0.7736079472910065, + 0.903029003333596, + 0.7761796851504922, + 0.8020169583750235, + 0.683940684800114, + 0.6719912040651809, + 0.6915451718737713, + 0.7833580554093295, + 0.6833586416579005, + 0.4729798753265736, + 0.6884425634795881, + 0.7160845581522767, + 0.5727359748849653, + 0.7025948902040445, + 0.732687534309562, + 0.6156350227449919, + 0.44852166158646267, + 0.6761779564232306, + 0.6824548780057279, + 0.5758786220095669, + 0.703193235533038, + 0.7470508744970843, + 0.6412577190649947, + 0.7076952670097132, + 0.5128394433613951, + 0.6730894106992539, + 0.701723191394222, + 0.6929608073000059, + 0.6290277941891032, + 0.589792615685473, + 0.6237305938262669, + 0.5698145953007149, + 0.6575974321088693, + 0.6197813951266946, + 0.6677305371215887, + 0.5868921453677965, + 0.5052037320725897, + 0.5689451877240289, + 0.6728994424998579, + 0.6416934722024209, + 0.7069517905644329, + 0.36439122204049357, + 0.5630116413040582, + 0.6060526041969337, + 0.7065437602892959, + 0.7742013343191564, + 0.5679166653959882, + 0.5948306366872987, + 0.5887746563418902, + 0.5889164963811105, + 0.6835784419086062, + 0.7998336704898248, + 0.5791371891778507, + 0.765223217750846, + 0.6694172045776019, + 0.7329793174152525, + 0.41726663062256564, + 0.5197832906289394, + 0.6194610543325744, + 0.7750431037073165, + 0.7361765956353892, + 0.760278187467587, + 0.6108101314863448, + 0.43421869909077726, + 0.5886817654138075, + 0.5716415590372659, + 0.7998172542773003, + 0.49040293294904164, + 0.6684820097568425, + 0.6219452489059847, + 0.4443627782220823, + 0.5342261432499666, + 0.5284002210438451, + 0.7629592296910045, + 0.5518833623472377, + 0.8027115302427646, + 0.6404083570691927, + 0.5967143846561296, + 0.7181145189153388, + 0.5460843865813839, + 0.8484355538338781, + 0.5389276654762143, + 0.6222983072885979 + ], + [ + 0.7708471994179191, + 0.7031388933627349, + 0.8222564278751824, + 0.8075704725325457, + 0.8251595826106317, + 0.800367951303242, + 0.7855073502864348, + 0.8811613671632204, + 0.7727197676063899, + 0.8309461784849055, + 0.7477502298475108, + 0.7545978369298295, + 0.8267297484096409, + 0.7406002146412475, + 1.0, + 0.782280453442332, + 0.7937604364852335, + 0.8652884684396491, + 0.8175856301562953, + 0.8173298505855238, + 0.9207374425666599, + 0.7838664014491792, + 0.8935760664197789, + 0.8536918419055354, + 0.787259082549755, + 0.8678200869918695, + 0.7935308739620357, + 0.9139470913304524, + 0.7830675573921231, + 0.7335636055513445, + 0.8805987166646654, + 0.807933285063586, + 0.8767905661391506, + 0.734610053992007, + 0.8801889888747468, + 0.8482310555726399, + 0.8296216138270306, + 0.3322512286705062, + 0.7678755701543675, + 0.8509794218615198, + 0.8502682936484054, + 0.7360043490548835, + 0.36808007912311375, + 0.8074935142886439, + 0.8861371455745214, + 0.784111987917863, + 0.834114786858379, + 0.8465435722870359, + 0.8576843528940602, + 0.7354788888161812, + 0.8778659107490949, + 0.7946133048310893, + 0.7084805468970695, + 0.7956590196720863, + 0.6361498555464158, + 0.7129795246410832, + 0.8146028127289937, + 0.8382571056811877, + 0.6231700983994297, + 0.7792991053809715, + 0.7551092666563156, + 0.9292460688515706, + 0.8466879889472415, + 0.8651013888639482, + 0.8256942359436877, + 0.7513072701316993, + 0.8784596818274929, + 0.7882269847386834, + 0.6638601317749607, + 0.6951394620044654, + 0.7185087375903891, + 0.7889204851970533, + 0.9008497428377791, + 0.861431985138246, + 0.8725680669319378, + 0.8553035244697261, + 0.8421823487490696, + 0.7138734256257276, + 0.8120048606775532, + 0.8326017845190431, + 0.730828932861717, + 0.5575432993331402, + 0.726467463918282, + 0.8046018681615915, + 0.9031328848313215, + 0.8682773209157802, + 0.9157794790028004, + 0.7711783616258526, + 0.5866625930737179, + 0.7270886040670627, + 0.9548882881346292, + 0.7791600989585538, + 0.6860751141482839, + 0.8131496091711703, + 0.8346513933379073, + 0.8539566981824744, + 0.8413986075119346, + 0.7469904769705022, + 0.7781764638156987, + 0.7491810401792345, + 0.8300231524065766, + 0.8500752212330345, + 0.8501521440538262, + 0.7599362090580881, + 0.8775603592497541, + 0.8221696277633435, + 0.7657894611667192, + 0.848637321646989, + 0.7601606135253063, + 0.8656400188472267, + 0.735860530033632, + 0.8888317278999207, + 0.8859470962392377, + 0.8858539646396548, + 0.8719153423473981, + 0.8820969328252516, + 0.7919340260531782, + 0.9352492159568744, + 0.8514863964704718, + 0.7877797212202792, + 0.7862280881851298, + 0.8013964587474275, + 0.8540995060269212, + 0.8570287995818978, + 0.8082689746060665, + 0.802745048959491, + 0.5439307150969311, + 0.8575741445977185, + 0.7261082129989768, + 0.7424392750444861, + 0.8984011818325501, + 0.8776383267518212, + 0.7620284812125033, + 0.7969264153657513, + 0.7505563804219284, + 0.8784611214396995, + 0.8343434043327053, + 0.8242469889421932, + 0.6671228120446517, + 0.9270462670135529, + 0.8927139650367137, + 0.919217384460045, + 0.8990858109393729, + 0.8952868382275437, + 0.5619232476899013, + 0.9066483727800958, + 0.7947803035999582, + 0.6601888049072885, + 0.6436653089537976, + 0.6953967540722744, + 0.8129657907868084, + 0.8039587270398215, + 0.838847683853095, + 0.7559285659071567, + 0.808533877311012, + 0.8111022805216002, + 0.6334611148708521, + 0.8548279001524594, + 0.820075189900495, + 0.9001404694621132, + 0.8440284458552025, + 0.7852028432397471, + 0.8765789840630559, + 0.712047288303608, + 0.8739702788021873, + 0.8511515354150483, + 0.735535697279726, + 0.8880580829632472, + 0.8561003796368329, + 0.896465941310962, + 0.8121740843821285, + 0.7824992525841256, + 0.8291061117091955, + 0.6867413721606191, + 0.8547830751323213, + 0.491301139206655, + 0.7565289465379843, + 0.6963533674566422, + 0.8110705716876208, + 0.8297269578335748, + 0.799761033808966, + 0.8179874523282293, + 0.758023059142871, + 0.8861632958698769, + 0.825944687327418, + 0.9133321923341385, + 0.9234030607377782, + 0.9264503484945963, + 0.8384802260484909, + 0.8250129290939584, + 0.8962635461360619, + 0.8435598446630215, + 0.8644499546123627, + 0.836296671739862, + 0.7627197547061587, + 0.667567686423707, + 0.8535782267834187, + 0.7959134161211561, + 0.7749750119190788, + 0.647629126189332, + 0.8302421410735024, + 0.8050342156678598, + 0.8019093693916344, + 0.7208877158384598, + 0.8259442029630009, + 0.8186726654700345, + 0.8413531866370639, + 0.8192489511681841, + 0.6178732231335351, + 0.7241411655615814, + 0.7604680872980605, + 0.8005783534413322, + 0.748517455368991, + 0.8777434113741208, + 0.8390810497193891, + 0.6743444944584069, + 0.7123236000946701, + 0.8498082793206843, + 0.7830969894269257, + 0.7969057754807631, + 0.6824284480428643, + 0.5274355097314153, + 0.7476025747400776, + 0.8500442523828377, + 0.7448063707454935, + 0.8329719040499516, + 0.7837188757630155, + 0.704700088630427, + 0.7355804138906666, + 0.877055396390118, + 0.8035029202290666, + 0.8403381156320804, + 0.88019442750746, + 0.8335633538553452, + 0.8616453093494203, + 0.33954085907567005, + 0.6238244322386454, + 0.7188459558538488, + 0.8317350241193759, + 0.7769232107570739, + 0.6681037631997617, + 0.6875994978239153, + 0.7303910582297904, + 0.6343018573756022, + 0.7155204707700878, + 0.7205135689062431, + 0.6960563679992158, + 0.58176384802955, + 0.5355181572877223, + 0.7245712647869119, + 0.5988272906009117, + 0.5850075138939859, + 0.7923927921809331, + 0.7898323351971119, + 0.7095507226659981, + 0.9289696801944024, + 0.8224837564657099, + 0.7237737500396187, + 0.7313910858786238, + 0.8120775602777119, + 0.8591124009727128, + 0.6121229546283153 + ], + [ + 0.7671237346845473, + 0.6037939878334586, + 0.5098079263884879, + 0.7499736876882857, + 0.8625274269531918, + 0.7950615920998453, + 0.642220133638892, + 0.7011022423170169, + 0.8208673064763382, + 0.6350935710838318, + 0.5661584898821095, + 0.7891808287697267, + 0.7060355237491465, + 0.8754856587627394, + 0.782280453442332, + 1.0, + 0.8107461626497264, + 0.7604686891289765, + 0.9535843151952947, + 0.6400815556874808, + 0.7736753121328372, + 0.9032294665025721, + 0.6235331337472437, + 0.7770991899829883, + 0.8464988655602693, + 0.9285929234557987, + 0.495619548245059, + 0.687135156762008, + 0.9165546994128079, + 0.859340253690231, + 0.8760118251840499, + 0.7252617844152462, + 0.7320915932820997, + 0.661000541284759, + 0.6436709743482829, + 0.9214288957764893, + 0.7163042607664322, + 0.5265247233802294, + 0.833388926427714, + 0.7725325987238462, + 0.6844018776099449, + 0.6900811389594155, + 0.5305265985250379, + 0.5998080124601739, + 0.5859391454216532, + 0.6369174623720604, + 0.6963570644830929, + 0.7054781385790014, + 0.638569125638769, + 0.6162363590316349, + 0.7284331217659713, + 0.8938504656989306, + 0.939382289607649, + 0.9000397025423433, + 0.8617469262551418, + 0.9039953702472884, + 0.9243918435049082, + 0.7839152148638704, + 0.6832527200830676, + 0.6434793097174635, + 0.9020202954488857, + 0.7994607227977754, + 0.9101373294704301, + 0.919781070348444, + 0.5400390557395525, + 0.6184869428671751, + 0.864220542825137, + 0.6732008237091093, + 0.5961567626633766, + 0.7097300838739427, + 0.7853200433399933, + 0.8491010905881019, + 0.7190971450424398, + 0.8191190777205529, + 0.7280123015731885, + 0.6314202379901361, + 0.5922090264998342, + 0.8054263022922316, + 0.7603023117442032, + 0.7569838866610882, + 0.7549339139006119, + 0.7617266680266118, + 0.6407951264636138, + 0.7331964908975178, + 0.8055944572743771, + 0.750021109974613, + 0.8641662142869082, + 0.8595727779033816, + 0.7823270325799545, + 0.8906177452172122, + 0.7307756424794533, + 0.6436141597859663, + 0.5466344502211706, + 0.728188434005125, + 0.7013612212431336, + 0.9346885029739075, + 0.7483449368101655, + 0.9164247899074822, + 0.5804362533291558, + 0.6133945558840739, + 0.7136344033603897, + 0.9338938000405511, + 0.829088359623915, + 0.8999609287768583, + 0.7043526602258832, + 0.6042366558049506, + 0.8389089436664364, + 0.7425944983805683, + 0.8162946920951483, + 0.6266216572805693, + 0.7091341341769901, + 0.7115561884614484, + 0.7123313514630256, + 0.8471837170576525, + 0.8723424412038209, + 0.857463217670745, + 0.7570334160064477, + 0.7768268538290634, + 0.6256469115086952, + 0.6926525126967054, + 0.743120549317701, + 0.7456208601055748, + 0.7855116822708152, + 0.8313200332060767, + 0.8045798093889031, + 0.7616361379250707, + 0.7119596413174144, + 0.6827490703859375, + 0.6980228439661176, + 0.6267357327581713, + 0.8030045379462646, + 0.8327325633027909, + 0.762087101066484, + 0.8208779888079859, + 0.5653850606810522, + 0.7863174139240702, + 0.8290115359973725, + 0.5821738468817229, + 0.4756335954818224, + 0.7474306413624361, + 0.8915798833400489, + 0.6852557265932461, + 0.712164544881375, + 0.7695958742841097, + 0.7495618224364948, + 0.7161332095980371, + 0.6896203637064898, + 0.5172731960718878, + 0.5249655810565089, + 0.5679349994047279, + 0.7756477340371272, + 0.7916754075489816, + 0.7575533926297504, + 0.6930223899376206, + 0.6901230917377718, + 0.7205613292665438, + 0.5300563785680446, + 0.8577536996125725, + 0.8041295489967181, + 0.8398460949616852, + 0.754178771234307, + 0.7090566943933336, + 0.7455247147841078, + 0.5119044809466983, + 0.6429279521326234, + 0.6751289398408246, + 0.606622892793286, + 0.8722173177831551, + 0.8198254872344094, + 0.7898992297323538, + 0.698503621189559, + 0.7445686413126892, + 0.7296185179968793, + 0.6517929017168281, + 0.7650749985109951, + 0.583130560329173, + 0.7393918382226968, + 0.5317071795562696, + 0.6930628314656516, + 0.7962015138444962, + 0.9403509945841092, + 0.7756379443688868, + 0.7409134754623103, + 0.6769795985240054, + 0.6368451974027451, + 0.7138313879257114, + 0.7789089470910031, + 0.714152616807679, + 0.649288310519308, + 0.6700805857831001, + 0.7025487271634383, + 0.5479045632844414, + 0.7293580156911655, + 0.706140926044221, + 0.600684214861074, + 0.4457332722131054, + 0.7797946343477398, + 0.7198964979988919, + 0.5263498853748274, + 0.7981257500689045, + 0.730505595108432, + 0.7640889991639247, + 0.8310660863406538, + 0.511762472722176, + 0.6076903433814416, + 0.6898458125200795, + 0.7818079587429333, + 0.7709260470513778, + 0.7294693594871475, + 0.6704983076201874, + 0.4928193478092777, + 0.5888621943617967, + 0.6075089591198989, + 0.8083843356155022, + 0.6334679446722812, + 0.6421775568639599, + 0.6610500425324255, + 0.6507542645904949, + 0.5848716478799619, + 0.7297425388016513, + 0.4674856541969973, + 0.40058012564585943, + 0.6012727838219709, + 0.7449272041238693, + 0.7814069216444025, + 0.7052475963615619, + 0.5591759358646674, + 0.5508650174836854, + 0.6097206736261124, + 0.6957450656056294, + 0.7835609843248209, + 0.608597184581495, + 0.7860582335937607, + 0.7156629994303342, + 0.6913992766627336, + 0.5617160687466688, + 0.5916309617545653, + 0.5910130967558994, + 0.7866146213119777, + 0.6931474940815364, + 0.7223692028728417, + 0.6232809711635242, + 0.46502634484821953, + 0.7254179698125897, + 0.4734450913740467, + 0.8572513540252248, + 0.570399718279022, + 0.6249400521336285, + 0.5421996526419007, + 0.5328004450327695, + 0.48474057950433347, + 0.6687713983374637, + 0.8498673590260069, + 0.7712479260809431, + 0.8932903015822795, + 0.7764408358173681, + 0.6668449727972301, + 0.8270518440609274, + 0.595094185855275, + 0.8569802595933355, + 0.6196705679790555, + 0.5861357519677126 + ], + [ + 0.8280290108243041, + 0.595790740709878, + 0.6502301478239141, + 0.5265146656122833, + 0.6770738586450615, + 0.6247918438723372, + 0.6497907487153625, + 0.8185011719165155, + 0.9085769893116107, + 0.6934351647067903, + 0.7182727369866901, + 0.6523002602870259, + 0.6451738507416466, + 0.6913164230496455, + 0.7937604364852335, + 0.8107461626497264, + 1.0, + 0.7565156635196825, + 0.7557483028480134, + 0.6983037301455786, + 0.7826537940764302, + 0.6605044733490586, + 0.640243955852524, + 0.7215821271845676, + 0.8557051288881561, + 0.7712401557997989, + 0.5721356048075181, + 0.7533238395993778, + 0.7529108121096233, + 0.7694102286137025, + 0.8898907998981642, + 0.6997705774525187, + 0.6499666247322858, + 0.6051273267499923, + 0.5684528412763149, + 0.8704533466859435, + 0.7388105561488011, + 0.18592134575683852, + 0.8257963980599624, + 0.807570624360785, + 0.7185650703932133, + 0.5555632756652001, + 0.3172583705236026, + 0.4191743593299729, + 0.5698410658105085, + 0.6315347376133343, + 0.7412704786209551, + 0.7581934304184748, + 0.502735722196755, + 0.6164191970459186, + 0.7166349901213237, + 0.6283484321830728, + 0.7203320385814181, + 0.8757241822304167, + 0.8198436323353399, + 0.8448726679857965, + 0.8514695700798196, + 0.717310999987997, + 0.46048323880410286, + 0.6278958244659596, + 0.9012461515579017, + 0.7429545193063654, + 0.9101742153803245, + 0.8271134026033099, + 0.59285668024488, + 0.600533144370135, + 0.6920140394600468, + 0.5912359962589848, + 0.5906352326573479, + 0.7493988511919429, + 0.6650729547978759, + 0.6886915311076215, + 0.8309295876051558, + 0.8799266619993414, + 0.6434538894529428, + 0.6189794178072701, + 0.5965578761740846, + 0.5183011028307469, + 0.8869351733256416, + 0.6778966255747414, + 0.7071346224620394, + 0.4269834987092495, + 0.6233003875881999, + 0.6242764364193744, + 0.8916165792282582, + 0.8093891438440906, + 0.8431732721405031, + 0.6727015015921993, + 0.49808045918595767, + 0.6305794153428369, + 0.6964872677379181, + 0.6346751651506688, + 0.4161144305574734, + 0.643323279670452, + 0.6841349123535126, + 0.8181565452614513, + 0.7686803588634379, + 0.653604461313935, + 0.5970725681660456, + 0.6354224921663552, + 0.67242172291648, + 0.8141338653426126, + 0.7742645018077553, + 0.6837372737381425, + 0.7406931988818437, + 0.7286019939582935, + 0.7161242575530993, + 0.7379774985281968, + 0.6298917414026984, + 0.6623292730302266, + 0.6762466478507716, + 0.7205728385220234, + 0.8173849898952062, + 0.8056680504596058, + 0.7511015462931823, + 0.7136581725167329, + 0.7664374705959595, + 0.7746933056773754, + 0.7048798686028409, + 0.6284998037760009, + 0.7076376153309002, + 0.618134879241894, + 0.7780009754402056, + 0.886576543199769, + 0.7428584779130457, + 0.7102990117584584, + 0.345486316526595, + 0.6128138229979312, + 0.549974998426652, + 0.4890100069872212, + 0.7721486775392711, + 0.7343429878280585, + 0.7192790111247442, + 0.656700772480991, + 0.6657534565365447, + 0.8137107447327757, + 0.7673875011203449, + 0.5038894716202467, + 0.5380942633035801, + 0.7070841473959893, + 0.7765042514520183, + 0.7056820921210332, + 0.7200189669327203, + 0.7865116960934138, + 0.4054323918056347, + 0.718077467671556, + 0.5466183701973613, + 0.3292789601915826, + 0.3469643468783206, + 0.6383194124423046, + 0.7782917857084696, + 0.7476027134074869, + 0.7877713187375104, + 0.7242278752921135, + 0.5657274639950443, + 0.6570526910524416, + 0.5491871297145922, + 0.7835672797146056, + 0.8502408084594368, + 0.8689533435168044, + 0.7476377687786013, + 0.6536431824905561, + 0.767497831066664, + 0.5726138986199588, + 0.7071393808901362, + 0.6092272040937653, + 0.6180121023319921, + 0.7672289604156023, + 0.7084073942377107, + 0.7331910100879782, + 0.6379270683544767, + 0.655453885918854, + 0.7691051912339244, + 0.5567361451240933, + 0.6780452943330812, + 0.4574335392618791, + 0.7087743885159996, + 0.3959117999047964, + 0.8149836908745647, + 0.7457329811871677, + 0.7966113952093647, + 0.7030864892683386, + 0.6588884886961062, + 0.691710975720087, + 0.5553769773938043, + 0.7083652428226404, + 0.6716996572007637, + 0.8286572115207974, + 0.6612970315943959, + 0.7597422335748831, + 0.734601599563888, + 0.5677137161062106, + 0.612954476051398, + 0.7259329313765818, + 0.5660370656088922, + 0.4982117105928242, + 0.7723844134697844, + 0.7015808734542773, + 0.47315630822652266, + 0.5497757629744242, + 0.7111290634475805, + 0.8197268720445898, + 0.7845858105060364, + 0.4947690132061289, + 0.5906888618028797, + 0.6386028448929163, + 0.7151547875525243, + 0.6734735288833301, + 0.4600945768202324, + 0.5389777374445301, + 0.5320092541437371, + 0.6368887915859891, + 0.6760332164928874, + 0.8046540244229218, + 0.5830112141280779, + 0.4245168558088819, + 0.4998426315389839, + 0.6972962900289417, + 0.6814500082169037, + 0.5855168428226997, + 0.49045984637768897, + 0.32524571797815505, + 0.5229019791023316, + 0.7245834328576776, + 0.6536769848736934, + 0.6672549103961293, + 0.5672585389305534, + 0.57930016257333, + 0.7554753001587973, + 0.8064620546342538, + 0.7260288455914296, + 0.6327754230475517, + 0.7269420573152032, + 0.5909220056367869, + 0.639166023273156, + 0.3014118613349161, + 0.3673920376930237, + 0.5783042997961002, + 0.7317993637427073, + 0.6148687248640617, + 0.6579588291255907, + 0.5195679933130523, + 0.5795742532583085, + 0.510193905538599, + 0.4132917091692657, + 0.7687024004715215, + 0.8185591374863281, + 0.42410208906813857, + 0.4681790588929858, + 0.6801475090898021, + 0.4450478217092514, + 0.39096047610982304, + 0.6217900512583511, + 0.6995934017962809, + 0.651359378217141, + 0.822468409316478, + 0.5948346749534918, + 0.6254785715681246, + 0.7114758361685894, + 0.7411686322402367, + 0.5911046311901594, + 0.5231082712707423 + ], + [ + 0.8918239974595232, + 0.8822006296171455, + 0.8848877763128851, + 0.710813722387841, + 0.7974835427032377, + 0.8261666942330831, + 0.8545737974933639, + 0.874094542782754, + 0.8160686576502003, + 0.8731718285882023, + 0.8112670141775691, + 0.8631782917819504, + 0.8877339825393581, + 0.679613706163489, + 0.8652884684396491, + 0.7604686891289765, + 0.7565156635196825, + 1.0, + 0.8589393633764092, + 0.8915895744619242, + 0.9226979118344071, + 0.7465823852074918, + 0.8729053966370613, + 0.9050171162629158, + 0.731478284751673, + 0.8585023174882576, + 0.7713652740591896, + 0.9260834205601506, + 0.8387695160677496, + 0.7285576540031037, + 0.844376628784844, + 0.7958687852866426, + 0.8566141987536265, + 0.7773669020215067, + 0.8782275224124607, + 0.8473013772767045, + 0.9075917581479451, + 0.3475071860037787, + 0.7828238367434824, + 0.7616409547734474, + 0.8689541532650478, + 0.7180608111103516, + 0.3016966946897712, + 0.7292483115620462, + 0.7641445051416533, + 0.8370034143228003, + 0.801953582281736, + 0.8939899168737632, + 0.8418117624964359, + 0.6441668634405945, + 0.9095809974900835, + 0.7616231881107022, + 0.702122223068636, + 0.8269390200942952, + 0.6662257901267835, + 0.7708363072409721, + 0.8476875880490876, + 0.8020787321119938, + 0.46165449575113643, + 0.8223698696197447, + 0.746295535258418, + 0.869405949725186, + 0.8350684990873375, + 0.7793209779660335, + 0.8670594206802734, + 0.6797120115066836, + 0.8777608053076826, + 0.8314388746551837, + 0.8639382041710164, + 0.8597515211063503, + 0.8678839374342973, + 0.8107531447533657, + 0.929161179324973, + 0.8490163318041398, + 0.8755100851803407, + 0.7678818504444744, + 0.7432879879286876, + 0.7192341516975401, + 0.8912911308708907, + 0.7982256087102684, + 0.8916441871920776, + 0.4840797702098547, + 0.8205259290617425, + 0.7161103962540053, + 0.8672060817213775, + 0.9030376310567725, + 0.9392093958265831, + 0.7535212721215676, + 0.5475843379364489, + 0.772666369482701, + 0.9251730453866095, + 0.8721616785960076, + 0.7287020293533859, + 0.8667424113887356, + 0.8529928490569755, + 0.7817436576940762, + 0.8493867136100264, + 0.7357044212822783, + 0.8759004091607868, + 0.9099021875368404, + 0.8987627646053751, + 0.8300102549439997, + 0.7611386969101356, + 0.7537145718680689, + 0.896803822055824, + 0.862255703556722, + 0.7701093741704308, + 0.9087165525208479, + 0.7052722150525593, + 0.8142095249565331, + 0.7640800798787808, + 0.7471146301685717, + 0.8958968921943643, + 0.9259504505826405, + 0.818829379180672, + 0.9065304217575813, + 0.7909966290347433, + 0.9404648464506825, + 0.7338767490513065, + 0.8131049076995321, + 0.8277844538550615, + 0.7984274632249636, + 0.8715633704500966, + 0.8249860979913122, + 0.7948037415320947, + 0.773094382942708, + 0.4634795495327365, + 0.8701651743163591, + 0.6883787748398623, + 0.7122180506474398, + 0.8013868575327893, + 0.7981572090677943, + 0.704905740095904, + 0.6734569409809609, + 0.8609637748069437, + 0.8485565376102029, + 0.8334574029337412, + 0.8010514961227163, + 0.526750628563453, + 0.7908849930205302, + 0.832464378102548, + 0.8564664572795708, + 0.7623514102965423, + 0.8523517392954063, + 0.6190301371234566, + 0.8982690251249968, + 0.7242951303456064, + 0.582316876022191, + 0.4846966462985043, + 0.7726976329353831, + 0.8248460387212239, + 0.7960664921687718, + 0.8478534677103164, + 0.8630563050340625, + 0.7781502964423831, + 0.7448629772452848, + 0.5451256867568746, + 0.8632921108132676, + 0.8508297876151738, + 0.854853596838313, + 0.8699502168916375, + 0.7636570740103823, + 0.8946078602510859, + 0.7505159354852121, + 0.8690777966412229, + 0.827002201370206, + 0.7725133314054776, + 0.8314750736464561, + 0.8222930561880295, + 0.8400410539673213, + 0.7852005448849634, + 0.8028800353648365, + 0.6767869605668788, + 0.6833093660835765, + 0.8076326527618433, + 0.3644930929211729, + 0.7177174057718123, + 0.645336733554615, + 0.9111536257632165, + 0.7595434569839351, + 0.7409792205861638, + 0.8013566384652727, + 0.7656616336223977, + 0.8428349667512234, + 0.8484728926868287, + 0.8709937138384971, + 0.8512481111537934, + 0.8824795366255821, + 0.7124097854386132, + 0.8498952382386059, + 0.8036022110558992, + 0.7978431001925484, + 0.7950264818117376, + 0.7856559582673817, + 0.6176952729089397, + 0.6637464174405482, + 0.8960179242734639, + 0.7934304740429226, + 0.6707831646139418, + 0.6106783246469715, + 0.8057298885553901, + 0.7220903509599593, + 0.7484288212208893, + 0.5907434360259375, + 0.7940525224609941, + 0.8090598943287443, + 0.8109536908048337, + 0.7894161019730456, + 0.567120818758655, + 0.6999748338009318, + 0.7354010700997817, + 0.6691572785434295, + 0.7595389976438909, + 0.8430696879515217, + 0.7719017629255513, + 0.5081398870540089, + 0.7248698160169254, + 0.7928632426451601, + 0.7398639912731968, + 0.7609095699738282, + 0.7202649223060045, + 0.36374089171027524, + 0.718300053892067, + 0.7686770546441194, + 0.6736279040870272, + 0.6788516346037344, + 0.6914314254688894, + 0.722213190755943, + 0.7872804855162806, + 0.8926973388506414, + 0.7661162616457756, + 0.8313359001987269, + 0.863718892681764, + 0.7901054045224268, + 0.8548228458356782, + 0.464979111446267, + 0.4664606354842021, + 0.6026597678598297, + 0.7781387101000662, + 0.805531729463747, + 0.8277365650172519, + 0.6535124050359531, + 0.7132938511736724, + 0.5703592910427793, + 0.6830511762850229, + 0.661381058213787, + 0.7892311681205051, + 0.3779936027491236, + 0.4393687663154778, + 0.809749367931669, + 0.541247186390033, + 0.48488860304928866, + 0.7556468108881125, + 0.8282864205580769, + 0.6698273383501041, + 0.849287202186742, + 0.7012682353523968, + 0.6285609714695077, + 0.7990720079589789, + 0.8350492259553556, + 0.8534626318404364, + 0.5668907796967015 + ], + [ + 0.8195152443815206, + 0.6806380613322052, + 0.6229295705203429, + 0.8198460133648089, + 0.9253336103985929, + 0.8671058270448897, + 0.688158447065236, + 0.7525683274835376, + 0.7906322356981731, + 0.7361363167630679, + 0.6436404311860842, + 0.8285384610981327, + 0.7936415625508175, + 0.8547798910428043, + 0.8175856301562953, + 0.9535843151952947, + 0.7557483028480134, + 0.8589393633764092, + 1.0, + 0.7594869006719532, + 0.852419642857102, + 0.9351939988845938, + 0.7529264127289725, + 0.8518384034111748, + 0.7769003111650881, + 0.9453321068142593, + 0.6447399281182598, + 0.7806876445763921, + 0.9294227541075641, + 0.8092755673018899, + 0.8706889149424961, + 0.728665055064526, + 0.822018143530439, + 0.7542635865510452, + 0.7784102479200191, + 0.9383671177837446, + 0.8342836909819669, + 0.5972153048060737, + 0.800991839674783, + 0.817099469241561, + 0.7734662647209906, + 0.7173820635639868, + 0.5905501017164081, + 0.7417403602130536, + 0.6895100976015569, + 0.7462019354666803, + 0.7798669590766698, + 0.799355429239601, + 0.7870441386658674, + 0.7138078672211264, + 0.8201385798785885, + 0.9032872923221278, + 0.9239787343429503, + 0.906983053308775, + 0.8114156589183569, + 0.8846778388226304, + 0.9441004702946008, + 0.8452045310797369, + 0.6889829872722563, + 0.7480607130244821, + 0.8444040393284934, + 0.8858868962380176, + 0.8588580261960839, + 0.898974238006159, + 0.6963754593889653, + 0.6874921253844093, + 0.9026785501569313, + 0.8026580695729449, + 0.738585946593449, + 0.7930998055327417, + 0.894898144619595, + 0.8660507687326272, + 0.7733859217846649, + 0.8441036693176867, + 0.8200515073593999, + 0.740467098248051, + 0.6936881210671143, + 0.8841911516585628, + 0.8132613217333574, + 0.8190369350483687, + 0.8561487275028301, + 0.7679664756208515, + 0.7272871318840155, + 0.8029813482052653, + 0.8264293430071421, + 0.7950511539977406, + 0.9060217236025735, + 0.8800304978750882, + 0.810853107332772, + 0.9117875384633813, + 0.8200129321057779, + 0.8012578464146449, + 0.7047832879554419, + 0.8307276178185268, + 0.8111864529703864, + 0.9019708672017862, + 0.7655749582395258, + 0.9477620784646846, + 0.7282441203439778, + 0.7438994056649836, + 0.8473086194687528, + 0.9357084512443123, + 0.8140952161159072, + 0.9351860217351117, + 0.8079278330280849, + 0.6957119202235995, + 0.9017915603594961, + 0.8542671597189601, + 0.8498026225855272, + 0.7436679108914831, + 0.814940754040775, + 0.749989627685836, + 0.7531665702879834, + 0.89817646967196, + 0.9056848271210249, + 0.9338244744338873, + 0.8332559378556974, + 0.8676920656587972, + 0.654528234943434, + 0.8136655322358897, + 0.841085317762839, + 0.8181259269232074, + 0.8433855673114665, + 0.8213751418601201, + 0.8281071454056911, + 0.7846300594310759, + 0.7415536914169315, + 0.8173211948291557, + 0.7560830069029957, + 0.7366566784446505, + 0.8180375220912502, + 0.852058080551776, + 0.7201388593050906, + 0.8121123737912053, + 0.6516925603953997, + 0.8382789583764527, + 0.8928750257392967, + 0.7256178593286903, + 0.571001660499193, + 0.8116136954818988, + 0.9326104615423375, + 0.7902894138607169, + 0.7730897976905712, + 0.840177495102143, + 0.8059167956336287, + 0.8286347738361833, + 0.796591642447136, + 0.6542934808621237, + 0.5951386312918895, + 0.7040002744755173, + 0.8511483722912709, + 0.8641239228418134, + 0.8309037512027558, + 0.7626974649778512, + 0.7992424351342537, + 0.8149985498635003, + 0.6225610703988842, + 0.9300050528644261, + 0.8497158105689132, + 0.8716810972005208, + 0.8580991332968018, + 0.8178990894975121, + 0.8373163383445675, + 0.6589700029274289, + 0.7520054003614248, + 0.7862075495513409, + 0.7432141334595015, + 0.9203398140493263, + 0.900305877612456, + 0.8542304055178028, + 0.8018192335434474, + 0.8551647088525925, + 0.6944384996788157, + 0.7101538585289124, + 0.8457701842402594, + 0.6232847282762498, + 0.7983831796221383, + 0.6890411568436297, + 0.7652285892566503, + 0.8313632042633367, + 0.88492759290758, + 0.8511560472005751, + 0.8375563848448235, + 0.7857433772298913, + 0.7688006391346343, + 0.792632777618356, + 0.8566727142986397, + 0.7706234474355683, + 0.6870519679638218, + 0.7347108230555046, + 0.7735009589712593, + 0.6710917918773354, + 0.8222606044731584, + 0.7849638510397092, + 0.6953926988623234, + 0.5455497664601432, + 0.8712522384667548, + 0.7961844880307385, + 0.6489163891369444, + 0.8133002562062775, + 0.831569444622111, + 0.7282029254557555, + 0.8277873214474221, + 0.6343859758180203, + 0.7272377978401708, + 0.8134707850756882, + 0.8339603741219094, + 0.8381628083814625, + 0.7740420272326225, + 0.7791035347457804, + 0.6581994465537082, + 0.6834851042192112, + 0.7343945612741727, + 0.867424323098194, + 0.7452547001688318, + 0.6151324289550474, + 0.7308749750981837, + 0.7339767265086651, + 0.6792444672569473, + 0.8235156128775816, + 0.5965178125769557, + 0.5018617357458631, + 0.7433985189939807, + 0.8307991969688934, + 0.8028288731159384, + 0.7209335243028616, + 0.6830944115068748, + 0.704977457294057, + 0.6451446749643872, + 0.7753719513031171, + 0.8545187095303068, + 0.7354899442829044, + 0.8730839612155872, + 0.8089325451764905, + 0.8206575577502977, + 0.6622660594999579, + 0.5634438136975279, + 0.6822664048988416, + 0.8686448481940295, + 0.8149059924618596, + 0.8083579926830329, + 0.7555120490559739, + 0.6060756724087958, + 0.7556793480319852, + 0.6289052472933846, + 0.8215742252781997, + 0.62523316434128, + 0.631000435854679, + 0.6157196559059346, + 0.6760962444564411, + 0.605786596689617, + 0.6933416504675612, + 0.8799372494218946, + 0.8081687405221292, + 0.8997258994793944, + 0.7877624205414266, + 0.7448909834172815, + 0.7991364374416229, + 0.6673942989173471, + 0.926182002874153, + 0.7638207574124133, + 0.6215689756232697 + ], + [ + 0.7244976730818781, + 0.7767626565771164, + 0.898008699105271, + 0.7777889135663089, + 0.7555881417310605, + 0.7890617836380908, + 0.8126289642491697, + 0.7470032687621566, + 0.7422185799768799, + 0.9086124919132135, + 0.7919818969984982, + 0.6912738631592145, + 0.8109022776602551, + 0.5578847699047753, + 0.8173298505855238, + 0.6400815556874808, + 0.6983037301455786, + 0.8915895744619242, + 0.7594869006719532, + 1.0, + 0.8122548023582482, + 0.6071918517861993, + 0.8974760183084362, + 0.8837665630341643, + 0.5736680072737296, + 0.7423881544620745, + 0.8139002195857596, + 0.8558296169420415, + 0.7410067235926184, + 0.6050969291682844, + 0.7295036541090595, + 0.7352406500088168, + 0.702931047404894, + 0.5745442821065894, + 0.8928047836084043, + 0.7216988937624322, + 0.8336627735972388, + 0.30302134434800615, + 0.5810547310465863, + 0.671462656268867, + 0.7866260384221125, + 0.6136148307951161, + 0.2498376176720028, + 0.6808131269693478, + 0.7818035762498012, + 0.9188451505895104, + 0.7311559217940584, + 0.9249287108919853, + 0.8400955524958627, + 0.5990972545138648, + 0.7523152676206298, + 0.6967682884542938, + 0.5493316324330968, + 0.7190825192689649, + 0.44684781117444344, + 0.5640888515944397, + 0.6931313891063603, + 0.6750634027965878, + 0.6338652490723155, + 0.7016534078884199, + 0.5959456770517838, + 0.8235953220160359, + 0.677481949827365, + 0.6192454487954473, + 0.9163763507735538, + 0.8097480079804141, + 0.8073005720231955, + 0.8294042941100878, + 0.7735077588741619, + 0.7613873410846155, + 0.8546666863765915, + 0.8375686374799182, + 0.902609789821646, + 0.7287949418514708, + 0.8196155289616653, + 0.7412780438055702, + 0.7349548273320485, + 0.6357176862455282, + 0.7666044101253561, + 0.6897942143278469, + 0.8032714166922993, + 0.5201768597966238, + 0.6657217665265077, + 0.6551142014738285, + 0.7936558271983634, + 0.7884934938863581, + 0.8856885198032849, + 0.8058027349276793, + 0.5887795758697474, + 0.7130281656741285, + 0.8377798037999764, + 0.8742583299889579, + 0.8293445985690457, + 0.8105640595113184, + 0.9002048224851221, + 0.6375808303014641, + 0.7499259925188666, + 0.6924240587473478, + 0.8488051683092348, + 0.8300260482997226, + 0.8966295614953316, + 0.6729543003032968, + 0.6909049552764822, + 0.7045710975351227, + 0.8538698468881888, + 0.8772528208242707, + 0.8153247742154611, + 0.8355141879366375, + 0.7327236024586383, + 0.830741094461517, + 0.7123903969975167, + 0.7726314479422121, + 0.7832747129139433, + 0.7964160438920996, + 0.7074497491960267, + 0.8622189575568756, + 0.7077851253392723, + 0.865870162023528, + 0.8159501203563345, + 0.7709692519873597, + 0.8287297477410991, + 0.6976875511103052, + 0.7927740306603865, + 0.6599252451596059, + 0.7166583005099881, + 0.73121467483788, + 0.5250659167805619, + 0.820080607636125, + 0.809118261657847, + 0.6157782272310007, + 0.773083060217665, + 0.7926305080009163, + 0.6403647428936438, + 0.6730881544757141, + 0.8170340343865996, + 0.7323155651301836, + 0.7697458550279581, + 0.8194577128238936, + 0.5533383397176471, + 0.7699161595734225, + 0.7174826772401841, + 0.862282521626836, + 0.7328263577414288, + 0.8668707845133548, + 0.6184472787012247, + 0.9276522125706739, + 0.7885022460290644, + 0.5910038345307037, + 0.48920081219140266, + 0.7192283951895367, + 0.7047029269335028, + 0.6820618166100617, + 0.7350330741356768, + 0.7699805254137687, + 0.7883870881859852, + 0.7444723786160907, + 0.550751652261013, + 0.8444052248905688, + 0.7550714025604394, + 0.7489282303148244, + 0.8498086192041043, + 0.7160747151083169, + 0.8936979225462328, + 0.7623271025923891, + 0.8254701085777223, + 0.7723773815593636, + 0.7371661666857711, + 0.779996231294411, + 0.7759984504551608, + 0.8345945084134608, + 0.8021766224995367, + 0.7901517287038813, + 0.6972790883222356, + 0.6139387793455232, + 0.729506049508177, + 0.2790766941791143, + 0.6526923203241995, + 0.7222185337857479, + 0.8139744901026751, + 0.6796550347577093, + 0.6291062989471092, + 0.7578090916857001, + 0.7114662083828113, + 0.8209555473890038, + 0.810950597559321, + 0.8111347791189293, + 0.7693559867191537, + 0.8204258964146085, + 0.7290323772190392, + 0.7285734713991358, + 0.7612921467763498, + 0.7602061727634938, + 0.7244968654416831, + 0.7539511046436335, + 0.6360016639537572, + 0.6818805512966797, + 0.8718526543810902, + 0.7536734590164881, + 0.6836666439657638, + 0.4443826964320701, + 0.8073101128929554, + 0.6771907445558231, + 0.6264729968403827, + 0.6240780075560438, + 0.7492414486785176, + 0.755669190581737, + 0.7664432033867787, + 0.8244289722956576, + 0.6235749580855106, + 0.6841572709167234, + 0.7458473691984043, + 0.6312390319469436, + 0.7479961316048683, + 0.8366453182043017, + 0.8655114087002796, + 0.45060548009175827, + 0.7256800585066693, + 0.7419042202015643, + 0.7116314267413268, + 0.7235991510891792, + 0.7808672667414515, + 0.3203216743451972, + 0.7039746048460088, + 0.6939274073200205, + 0.6445885340886647, + 0.621210167090457, + 0.7484558793301985, + 0.6956726584294987, + 0.7256076176466668, + 0.846900007607994, + 0.7430066716311522, + 0.8521233481402943, + 0.8327189964087889, + 0.8201114924228601, + 0.8548345364859098, + 0.33136487745023213, + 0.30651272081837755, + 0.586778954548276, + 0.6829877556029127, + 0.6872945940390748, + 0.6252950338819763, + 0.657551076433549, + 0.7742891242212244, + 0.6569735579882496, + 0.6593605022818931, + 0.4265773663246917, + 0.7251188458041736, + 0.3202323014319943, + 0.4150158137813592, + 0.8334690066804767, + 0.5442357841873756, + 0.6041006993502566, + 0.7665801793931191, + 0.8034749576692758, + 0.6554183506283343, + 0.7237058017989465, + 0.7354765444292387, + 0.4320849489392977, + 0.7142112610263696, + 0.7833431418893848, + 0.874637242145405, + 0.5997459448834181 + ], + [ + 0.9115947584082412, + 0.7868008463769065, + 0.8345724506823421, + 0.7201158959901944, + 0.8381338788976544, + 0.8445737114178368, + 0.7804104266465527, + 0.8857807346853964, + 0.7636658811630613, + 0.821552216615645, + 0.7777701428725146, + 0.8068294218858683, + 0.8547101659765436, + 0.7846739529814228, + 0.9207374425666599, + 0.7736753121328372, + 0.7826537940764302, + 0.9226979118344071, + 0.852419642857102, + 0.8122548023582482, + 1.0, + 0.8099224985088296, + 0.870273875758586, + 0.8808773617766354, + 0.7476545939455793, + 0.8562283631254313, + 0.8094482538175422, + 0.8925309473155081, + 0.8338769501135626, + 0.7384431595180866, + 0.877604295856913, + 0.7996509275067945, + 0.9162232668910532, + 0.8490258960584355, + 0.877935582253336, + 0.8935485390188143, + 0.9434233980745923, + 0.30504570214652965, + 0.8074128941122896, + 0.861712140404004, + 0.8509101490937155, + 0.7186656689158397, + 0.38831757028009917, + 0.8220573519602221, + 0.8429556663510275, + 0.7946530821348098, + 0.9030627663331533, + 0.8632601618352725, + 0.8431159216932289, + 0.8100287302815201, + 0.9530428198742033, + 0.7615097257185339, + 0.7245880055348668, + 0.8377586334558035, + 0.7140959553582564, + 0.806051530034259, + 0.8881834299062255, + 0.8681876856136789, + 0.5086172271447443, + 0.9054215659858428, + 0.759468004341591, + 0.9202850220564704, + 0.8041442639581744, + 0.8790032671366763, + 0.7941380412216634, + 0.6307299458525056, + 0.8959453161060071, + 0.858348690919456, + 0.8341911361098361, + 0.8440076274391602, + 0.8303012546164088, + 0.7726815748719377, + 0.8804158627270711, + 0.8915601160396367, + 0.9231173023123042, + 0.882494084282366, + 0.8481800462641923, + 0.7266266028574855, + 0.8790106427123583, + 0.8505272850528902, + 0.8592750946555018, + 0.5238939554854568, + 0.8033842153783805, + 0.819840267149591, + 0.9013600893579551, + 0.9125935536692868, + 0.9071565486889367, + 0.7166941529823632, + 0.563526189889744, + 0.7292434926334204, + 0.9470648386677584, + 0.8732210330693772, + 0.7253243361565624, + 0.8798708890296498, + 0.8440303601708307, + 0.8372195029834116, + 0.8327789776955395, + 0.7692904778876057, + 0.8768991407947273, + 0.8792941922676414, + 0.9007724737048509, + 0.8910546085369289, + 0.7732588584379858, + 0.8081510683911204, + 0.9405747552931519, + 0.8262315436422444, + 0.7899684226241365, + 0.9119566612255513, + 0.7464143479603232, + 0.8687275675172633, + 0.856743412688816, + 0.8041298543201384, + 0.9093059701275489, + 0.9328534710151015, + 0.8800338741854589, + 0.8748359266011883, + 0.8736621431810273, + 0.9671517680449269, + 0.7571344736961583, + 0.8504467970210083, + 0.8460461450446651, + 0.8518498548711354, + 0.9009179069834166, + 0.8420952937170905, + 0.766721730357651, + 0.7696100392530084, + 0.45876287274768557, + 0.8883826697056277, + 0.6409715639137676, + 0.784572087332145, + 0.805188844192969, + 0.7777497662024596, + 0.6753118092234148, + 0.703489359349051, + 0.7522002833343557, + 0.9202175982698803, + 0.9299054654690624, + 0.8400399784526102, + 0.6932906811144848, + 0.9052405433699231, + 0.9135004831138074, + 0.8947053313439092, + 0.8895801550940067, + 0.9065605935957495, + 0.5420654153683243, + 0.8893614163269341, + 0.7623277252052535, + 0.6721932054964443, + 0.5926251126685772, + 0.8329743775750085, + 0.9233756607476648, + 0.9042462534035016, + 0.9105278888764899, + 0.8041142227416496, + 0.8371997708844691, + 0.8380805183858047, + 0.7091366936174177, + 0.9034723787903284, + 0.9060059878264582, + 0.9362153552548956, + 0.9120275060732962, + 0.8679073418102735, + 0.9096962546725047, + 0.8217062972722297, + 0.9234339528823364, + 0.885410685254777, + 0.8564629042317398, + 0.9016959150604179, + 0.9015737813214649, + 0.8895232227173638, + 0.8582289118578517, + 0.8649697009190699, + 0.7604667926583804, + 0.6915762976329133, + 0.8942665503600231, + 0.529643528420971, + 0.8433310174009518, + 0.7322936954896163, + 0.9089994661172204, + 0.8749261289449798, + 0.814706027646081, + 0.8925507235336451, + 0.8645741222953629, + 0.9138424054546381, + 0.8546145965872484, + 0.9510943128906284, + 0.9448009494935613, + 0.9304020704432829, + 0.7732539178826872, + 0.919112181427519, + 0.8901966220930946, + 0.8642718586344647, + 0.8924375996367315, + 0.8859120985102361, + 0.7632176503466275, + 0.7517930378504194, + 0.8797338859912052, + 0.8605675196859821, + 0.758469030670092, + 0.7177699717297644, + 0.8920094245672805, + 0.7101129702519487, + 0.8318417728948156, + 0.7178543903163732, + 0.8861231198900897, + 0.8902432112778003, + 0.838918403851216, + 0.8002715805329799, + 0.592562819188282, + 0.7704997204058334, + 0.8171942905227575, + 0.8263773689159136, + 0.8299557529616962, + 0.878007367413114, + 0.8038503655673235, + 0.5603259463322772, + 0.7356897382423069, + 0.8927233224213533, + 0.8443641532315249, + 0.8390549840434337, + 0.7297230282347394, + 0.5834183057085878, + 0.7895827557776123, + 0.9144613415746987, + 0.7845744408474701, + 0.7707703305571314, + 0.7781680027211672, + 0.7994745713906953, + 0.786405932313439, + 0.9438424408195296, + 0.8776362392454651, + 0.8726254102121895, + 0.9164081783848217, + 0.8276827327511296, + 0.8986069018236678, + 0.479514749651144, + 0.5371845169156378, + 0.7150710960484865, + 0.8917321465997724, + 0.8959809833342907, + 0.825107004226626, + 0.723858457033415, + 0.7517409820053941, + 0.6073497432415085, + 0.8102793309212213, + 0.7583394271144448, + 0.7708442483217661, + 0.580159628236459, + 0.6336834111323185, + 0.7802014305737267, + 0.6492329164136019, + 0.5219562043881915, + 0.744718315381805, + 0.7168127470656148, + 0.7028932153610691, + 0.8780981782432024, + 0.7973447633457148, + 0.696663394771219, + 0.7664940668730158, + 0.9034400493940435, + 0.8635654876242187, + 0.725017425369367 + ], + [ + 0.732650249758149, + 0.5946857040828978, + 0.5130333092281252, + 0.772040700507162, + 0.9165747088102894, + 0.8368352690604883, + 0.6780564417967159, + 0.6771964611678796, + 0.684917881548865, + 0.6868084906110933, + 0.6448401639199768, + 0.7386655099017544, + 0.6270987739300938, + 0.8712201258055186, + 0.7838664014491792, + 0.9032294665025721, + 0.6605044733490586, + 0.7465823852074918, + 0.9351939988845938, + 0.6071918517861993, + 0.8099224985088296, + 1.0, + 0.7076775744882406, + 0.8199320569026554, + 0.688971048561295, + 0.8955657922234056, + 0.5341986110234981, + 0.7036021028120226, + 0.9195059233656885, + 0.7480505117233578, + 0.7753051496495065, + 0.6724012868884005, + 0.8565218047825852, + 0.809904842816094, + 0.7113246068318902, + 0.8843489026872045, + 0.7619427422530108, + 0.5123359033552433, + 0.7068818809521518, + 0.7700774620018048, + 0.7052576007196611, + 0.6302484936800582, + 0.5590893248843125, + 0.7580233245656179, + 0.6514823554679782, + 0.6473462178429886, + 0.7175660269229883, + 0.7374615433938971, + 0.7089545664918241, + 0.6744315782429193, + 0.8021997077032963, + 0.8223568434034442, + 0.9142463547577852, + 0.8415521229547119, + 0.7770978313605929, + 0.865892400235087, + 0.9154420775175766, + 0.749285632017853, + 0.6071287419220817, + 0.6823404635550355, + 0.7941156670144032, + 0.812593866930535, + 0.7950556333547838, + 0.9128740336087299, + 0.5951823447026179, + 0.5725933933481826, + 0.8608840907236623, + 0.7035688044948942, + 0.6369331105716224, + 0.6814616098789233, + 0.7726738125259427, + 0.7772378887476584, + 0.6362029564745989, + 0.7253354322314164, + 0.7464004180229086, + 0.6793214591521565, + 0.6178205916837184, + 0.7927819700611574, + 0.7392435208515847, + 0.7142291397653351, + 0.7658991146994693, + 0.733442701106414, + 0.6365960688717278, + 0.7101692363926798, + 0.7182495947080182, + 0.6887030119668174, + 0.777970434258265, + 0.8087099103250573, + 0.7771941302598302, + 0.814805789715012, + 0.7546931856374284, + 0.7009356556685654, + 0.549317030882397, + 0.6858515281726473, + 0.6516217342390023, + 0.8461044036502215, + 0.6345165543449652, + 0.9010801886369254, + 0.6537885269419197, + 0.6724677175454354, + 0.7074878842590423, + 0.8990373114748983, + 0.7211206345058292, + 0.8837785496677049, + 0.6949576261857127, + 0.6540037559574399, + 0.8256396826630631, + 0.766263360156196, + 0.7262310668877054, + 0.629860302564115, + 0.7175577780768336, + 0.72787732972069, + 0.6148078123062775, + 0.7704025580711437, + 0.8116871301785118, + 0.8093552850972711, + 0.7440071985842857, + 0.7719016785044281, + 0.5311830613016978, + 0.7070253632464519, + 0.6748559679424959, + 0.7088200198963087, + 0.7217463119067369, + 0.7556329292073632, + 0.6996848232985505, + 0.676469169370729, + 0.7421901347208498, + 0.7200114621064975, + 0.6062332450853133, + 0.6321531357650851, + 0.7666490017828763, + 0.8009874137171605, + 0.6824914188993223, + 0.7932312638271087, + 0.565689451808378, + 0.7556527872509399, + 0.818937075007289, + 0.6535825149072693, + 0.5284110698649145, + 0.7645865296803588, + 0.8866800829547482, + 0.6730965466940741, + 0.7219074497764754, + 0.7650729839070469, + 0.7394309041568393, + 0.7538564314223615, + 0.6854131962726698, + 0.6509610965204753, + 0.6598952062645326, + 0.5768371985675088, + 0.7982059636526991, + 0.8293963990037445, + 0.7558414351202076, + 0.6057061817660642, + 0.7136704232542224, + 0.7168199069983089, + 0.5547115693725463, + 0.8462405528087165, + 0.7750559503367038, + 0.7932600306481319, + 0.733097325103386, + 0.7660597665006299, + 0.7158813624413711, + 0.5214505628237616, + 0.6366518653019317, + 0.6629396016331104, + 0.6200200545404176, + 0.8578847224880589, + 0.8202621674510078, + 0.7367454133102732, + 0.7085356613336043, + 0.7687318306438906, + 0.5869742772450076, + 0.5567588235244225, + 0.7466418882782264, + 0.6596910613378139, + 0.719659287535432, + 0.6479665461805755, + 0.6709944077871307, + 0.7597211711104234, + 0.8152491701934, + 0.7335538340001512, + 0.770428353198535, + 0.6742482616874251, + 0.6608073894324161, + 0.7265123838289508, + 0.8160311390354883, + 0.6517877484137237, + 0.5935021234157145, + 0.6062811746259307, + 0.6695107229404907, + 0.5584049349284722, + 0.7424240567968401, + 0.660605563622326, + 0.6125095592741501, + 0.42835488989424064, + 0.7549074436748161, + 0.6715601036512091, + 0.5622588788584078, + 0.7939076664111124, + 0.7668337823665741, + 0.5751771270386432, + 0.7272846956638039, + 0.5515142136454839, + 0.6593210678253769, + 0.7254958907871392, + 0.708431193742406, + 0.6954537477631001, + 0.7364625778341212, + 0.6582621421594375, + 0.6151288955060881, + 0.6816842840908585, + 0.6032907473491138, + 0.7631188383345545, + 0.6235379055004173, + 0.5280264582001208, + 0.5783668640724532, + 0.6318568067485377, + 0.5803151325771932, + 0.7086923589911012, + 0.4128461731284322, + 0.5584150508251031, + 0.650735079939067, + 0.8009817903119559, + 0.6981051550590441, + 0.6522634466030053, + 0.5707874059239824, + 0.6031865006005037, + 0.5656090875710408, + 0.6448700972666228, + 0.7851145451990731, + 0.5910222295369311, + 0.7464569333627693, + 0.6780302515479081, + 0.7259429348146086, + 0.6140531271221521, + 0.5036247608951163, + 0.6383400189196808, + 0.8203050460750855, + 0.7374646571241448, + 0.8083512212805001, + 0.6472863142267877, + 0.48272968706807284, + 0.5895203528203379, + 0.6073669303393892, + 0.8209586917690376, + 0.5564033023611399, + 0.6650018054479151, + 0.6470210075542331, + 0.5246540136409057, + 0.5499334676501462, + 0.6019868224639278, + 0.7783054008997461, + 0.7170001975244927, + 0.8693922413006171, + 0.7034066934539316, + 0.653002383684628, + 0.8292961175784311, + 0.6841923477437557, + 0.8497757328139097, + 0.6723207157921812, + 0.5382173567450952 + ], + [ + 0.7292231934745876, + 0.7757383674177466, + 0.8959594292908792, + 0.7389698728858477, + 0.8338353555539345, + 0.8122290850672857, + 0.8163286524553536, + 0.849199601532515, + 0.6243555846277302, + 0.8772596605754652, + 0.8098956503941581, + 0.7668919991661001, + 0.8069103353598369, + 0.6384062543360075, + 0.8935760664197789, + 0.6235331337472437, + 0.640243955852524, + 0.8729053966370613, + 0.7529264127289725, + 0.8974760183084362, + 0.870273875758586, + 0.7076775744882406, + 1.0, + 0.8744778809180449, + 0.5739594277832453, + 0.818460076452057, + 0.9054024793660003, + 0.9201760398662858, + 0.7376205708041063, + 0.6231422042953132, + 0.7628349695594201, + 0.8077631030209039, + 0.8815151177388989, + 0.7483702815544656, + 0.9044279582152005, + 0.7713010932601576, + 0.876345723562193, + 0.30150790469012134, + 0.6103324890133619, + 0.7354168797014051, + 0.9049898464368096, + 0.7104759972266408, + 0.30007189250386723, + 0.7808129448994235, + 0.8720883358570523, + 0.8767388040253333, + 0.8091387186195084, + 0.8963922919469643, + 0.866822627632611, + 0.6758606700815086, + 0.7983590700738565, + 0.6720769309122288, + 0.5519658954847548, + 0.740358463100107, + 0.5045381343311197, + 0.6159254920313337, + 0.7378418179179036, + 0.76181918955978, + 0.5679668971694921, + 0.7893356327303326, + 0.5293097708868677, + 0.8796553590665518, + 0.6841326182874066, + 0.7169007806438159, + 0.9298416936179892, + 0.7460577535637607, + 0.8217191288184498, + 0.8070989933095465, + 0.7956753754843, + 0.7680060266255117, + 0.787969827782315, + 0.7569391731201985, + 0.8656854986073287, + 0.7364182824726768, + 0.8726019030799025, + 0.8198603196866643, + 0.8261464777611961, + 0.6705410114263316, + 0.7635084981823638, + 0.753334696365311, + 0.7934341712478363, + 0.4243326898651013, + 0.6965533497243487, + 0.7059595669616212, + 0.8279543288931023, + 0.8239448508555315, + 0.8402431637031937, + 0.7186898735911488, + 0.5010822414607659, + 0.7254877379486727, + 0.9273717833010824, + 0.8471295494044907, + 0.801743358117468, + 0.8298573944929578, + 0.8357877858366355, + 0.6904629303076418, + 0.7631130403551146, + 0.7012775574598641, + 0.858051653585544, + 0.8689216491019932, + 0.9035022703135003, + 0.7142326560255589, + 0.6820371372133742, + 0.7107021523678606, + 0.899448427676099, + 0.8397140222349605, + 0.7609204154109132, + 0.8361498395270763, + 0.6929908833181474, + 0.8787919099189643, + 0.735273887887667, + 0.7535107253696558, + 0.8077569497242201, + 0.7981668535463093, + 0.7587542518048228, + 0.8374793249954224, + 0.7772241474274485, + 0.9085416045159237, + 0.7173908017336278, + 0.749606178803993, + 0.8129872547440795, + 0.724215992804628, + 0.8146719442774797, + 0.6612471147265411, + 0.6559731415475217, + 0.662663556195087, + 0.47460507314478334, + 0.8845776620626988, + 0.678327922655919, + 0.70060020396721, + 0.7348925322986916, + 0.7817993132363258, + 0.5674148478801865, + 0.6329207144285097, + 0.7887919440233082, + 0.8136863557262158, + 0.7841594186014567, + 0.8047819209458207, + 0.6695931173523961, + 0.8749219381019228, + 0.7993277705572129, + 0.8911344622772722, + 0.8674762449584748, + 0.9077582024914511, + 0.5193718813293925, + 0.9248150917422097, + 0.820551068462279, + 0.7245961125959991, + 0.6770372870024565, + 0.7647112397623472, + 0.7792074302486706, + 0.7778756374011938, + 0.823295852602717, + 0.669792313380196, + 0.7747173382732186, + 0.7645421226598542, + 0.5937001565834544, + 0.8053471599586592, + 0.7070400956002153, + 0.7891835396027086, + 0.8251108044517262, + 0.7858644503805676, + 0.8303464576846626, + 0.7692412721917392, + 0.8841251819506588, + 0.8076750117076262, + 0.7528432593125463, + 0.7886761298132222, + 0.8049774150976764, + 0.8258119089110394, + 0.7849778824827148, + 0.788517032098959, + 0.6429806430217427, + 0.6681972139107838, + 0.767526071250304, + 0.4203362618900906, + 0.6742335643634211, + 0.8064416637011307, + 0.8342880881253195, + 0.7037598938071246, + 0.6192593401394645, + 0.7659141588874936, + 0.761656745169711, + 0.8694134418417343, + 0.8825789639035322, + 0.8501683738712587, + 0.8379580885867315, + 0.8332768674669911, + 0.6882581059423277, + 0.75789707373894, + 0.8231455879017456, + 0.8325343255656683, + 0.7813604058941438, + 0.8017106963709754, + 0.7118889456123576, + 0.6709781193199762, + 0.8392841208625863, + 0.7185453118147755, + 0.8080491335315442, + 0.5344721525499777, + 0.850402350252203, + 0.6111425939654095, + 0.6703914442254384, + 0.7141241238587852, + 0.8186479328005325, + 0.8151338551915029, + 0.8005255449325228, + 0.7516754300727627, + 0.5473378150577662, + 0.695620724556226, + 0.8266178003308517, + 0.7992781749523981, + 0.7897399565746304, + 0.8001641506933208, + 0.8377826274144784, + 0.48857192981622416, + 0.6441968584906843, + 0.7830481478347189, + 0.8011380340696206, + 0.7531226774986636, + 0.7536298829007397, + 0.5362421174631894, + 0.754020507807926, + 0.7748797117321553, + 0.605987497509103, + 0.6318808026311121, + 0.8087202557750895, + 0.7652460483610652, + 0.6875685281208553, + 0.8187387400259003, + 0.7489851908997548, + 0.8316396643012386, + 0.8409718155486092, + 0.7779251843971797, + 0.8886399323244256, + 0.3623780359853879, + 0.47625433198637795, + 0.737347860699636, + 0.7777261260403457, + 0.774131545466024, + 0.6679700737750056, + 0.7154549873090857, + 0.8249182335022776, + 0.5476326822423883, + 0.7366469287498306, + 0.5014946208454837, + 0.7143146106323313, + 0.4556279462588303, + 0.536325068903303, + 0.8415448729314434, + 0.6000595195653006, + 0.5293874798485606, + 0.7657279619110084, + 0.7926759951259156, + 0.6855643892210536, + 0.7974428801473891, + 0.7808396016296157, + 0.5811763610177907, + 0.7468440634835521, + 0.779070436838086, + 0.8716475560926972, + 0.5657689806808651 + ], + [ + 0.7820229341932031, + 0.8353847157048903, + 0.8154968076390053, + 0.7876692884900606, + 0.8836517604969556, + 0.8737904938806648, + 0.9326111387892018, + 0.7732992453745692, + 0.8062723252427586, + 0.9091758971187285, + 0.8722873457761898, + 0.747215673758305, + 0.7591527393241924, + 0.7296116204288657, + 0.8536918419055354, + 0.7770991899829883, + 0.7215821271845676, + 0.9050171162629158, + 0.8518384034111748, + 0.8837665630341643, + 0.8808773617766354, + 0.8199320569026554, + 0.8744778809180449, + 1.0, + 0.6465658042936037, + 0.8422417380969288, + 0.6749968527510689, + 0.8089912816906286, + 0.9122138068812381, + 0.733474325577286, + 0.7699487581720962, + 0.8413419101160601, + 0.8421024308204862, + 0.7407560723997701, + 0.8714768337813938, + 0.8131711102657353, + 0.8742397978490536, + 0.3187500522603908, + 0.6796263934987181, + 0.7036210912188233, + 0.7933227649117585, + 0.650740123789461, + 0.3177572611334851, + 0.7186116922072291, + 0.7490266947159041, + 0.8674890411766343, + 0.7303399167866576, + 0.9404748474588167, + 0.8110631636061725, + 0.5893963672809917, + 0.8452413981521354, + 0.7387209860948301, + 0.7344683524983805, + 0.8237768487193018, + 0.6258950714684242, + 0.740339965699504, + 0.8467518795257352, + 0.6927736218705022, + 0.5734388105481703, + 0.711959982201001, + 0.7315541953703755, + 0.8032568671494149, + 0.7812557455832898, + 0.7936537792757857, + 0.8058685289364385, + 0.7628678086402427, + 0.8962156993695494, + 0.7713612619301625, + 0.8173647968265301, + 0.8168524005611895, + 0.8738732445214157, + 0.8831073107825326, + 0.8155020644315176, + 0.7258717920247767, + 0.8557399184833413, + 0.692041352032851, + 0.6566977178131719, + 0.6538002198042568, + 0.8151559358650273, + 0.6551922589418765, + 0.8960191518948462, + 0.6066538240144068, + 0.6608849394418345, + 0.5950913937192145, + 0.7839953591036922, + 0.8268104311669988, + 0.8724041961979031, + 0.8585166949586361, + 0.6421078833419083, + 0.7613422381971696, + 0.8524970047603734, + 0.8360289497207768, + 0.7022023576247751, + 0.7838590611907543, + 0.773623922957825, + 0.7457541749388874, + 0.7339685932268843, + 0.790210391689885, + 0.8634659781907768, + 0.8979085259018744, + 0.8336862273666372, + 0.807744015528327, + 0.6905546845557087, + 0.791584747176109, + 0.8040950640333152, + 0.918304079530014, + 0.822301109355771, + 0.8544476110305168, + 0.7150891416609637, + 0.7188818187034116, + 0.6838627855002128, + 0.7620851753100335, + 0.7393497787091685, + 0.8108164886394705, + 0.7166664621330692, + 0.8271194335748487, + 0.698530153854779, + 0.8642906006076774, + 0.6967440564232626, + 0.7080566626063782, + 0.7262118608931873, + 0.6698569786161837, + 0.7911776416717791, + 0.755194913341884, + 0.6850170343678018, + 0.7268569333527922, + 0.5909419230483826, + 0.7947175298839376, + 0.7194648058640647, + 0.5857887919456101, + 0.7827411024442587, + 0.847107877371768, + 0.7294949021333094, + 0.7397050424788691, + 0.8115295375269497, + 0.7507993360133269, + 0.8128390799933337, + 0.7555466560991955, + 0.46950170151338505, + 0.7580941206740334, + 0.7752685314020006, + 0.7637606349058673, + 0.7280629720406232, + 0.854924978688657, + 0.6807651974964174, + 0.9005749137489032, + 0.6734749663241318, + 0.5882661605657171, + 0.5772649004007532, + 0.63138378160167, + 0.742550353685696, + 0.7556746750816907, + 0.7350106628505869, + 0.757071485686732, + 0.7550816637760551, + 0.6685362574128323, + 0.4813319785425775, + 0.8634249466645316, + 0.8130343817827801, + 0.7726566188515699, + 0.8016451762782789, + 0.7426915968822809, + 0.8462571641884147, + 0.6460681678858157, + 0.7364304139681253, + 0.7001951280389364, + 0.6586127219192838, + 0.8059523019176078, + 0.7865589162608472, + 0.7773556043643953, + 0.7641996029261849, + 0.7787007559765996, + 0.689207847835944, + 0.5186569984729432, + 0.7050118315857625, + 0.41779172543676946, + 0.6565896187321271, + 0.6221232687669356, + 0.8526855059073396, + 0.699408640535831, + 0.7344039283632626, + 0.7282297510531631, + 0.7261277077812304, + 0.7468727920917334, + 0.7923222536854985, + 0.8175018058915319, + 0.8254429398444292, + 0.7685827049078716, + 0.6664551910009388, + 0.6817853836793816, + 0.6797478206089123, + 0.6462135861324975, + 0.700342160110667, + 0.6728942847167106, + 0.5326044957326171, + 0.5966963086013511, + 0.8451753108136825, + 0.7035982567108194, + 0.553552890596612, + 0.5506437047855196, + 0.8096669173521065, + 0.6318664849446085, + 0.6554772633592297, + 0.49538723627237413, + 0.6804166495288366, + 0.7146078084044494, + 0.7088741331805832, + 0.7160281006827423, + 0.6676869595851495, + 0.5891727580213978, + 0.7030034035050902, + 0.6246371110183055, + 0.6377322335078034, + 0.8178807495858021, + 0.7273114816764683, + 0.4233706038012711, + 0.6514382642252683, + 0.6800629000457796, + 0.6332193347749575, + 0.66758320306212, + 0.6095507156296436, + 0.3752894364940648, + 0.6072440525395741, + 0.7412305713744177, + 0.6478291749919571, + 0.5992760869171923, + 0.5927210061186154, + 0.6116982493369421, + 0.805419391208847, + 0.7944940561559374, + 0.7316769416159014, + 0.7260773067538634, + 0.7773853245023596, + 0.741157218020617, + 0.7926197568813074, + 0.39934661133566174, + 0.3197771147070562, + 0.5487905138100883, + 0.7121405108397787, + 0.6692606289447806, + 0.8292169606349781, + 0.5341962311940376, + 0.5825562446784206, + 0.5701992923122444, + 0.6529506627802282, + 0.6008910319042495, + 0.7824581322755718, + 0.3938887136900542, + 0.47811666068254616, + 0.6869042335689095, + 0.48753127667231994, + 0.5855531740453334, + 0.7589633460825688, + 0.8440745719938391, + 0.7418659233811008, + 0.7379524567383039, + 0.6444197728431318, + 0.5890892905405818, + 0.8738516298196863, + 0.8244874548284248, + 0.7991803896308312, + 0.6209146350844413 + ], + [ + 0.7624968581775231, + 0.6727610946040731, + 0.5789367136652226, + 0.5948313589893259, + 0.6429950986755754, + 0.5389936715150104, + 0.5465278874895086, + 0.7435864637770443, + 0.8512297325865605, + 0.5811233821396484, + 0.5712631321806864, + 0.7881969121674034, + 0.7360332762626295, + 0.7063858978848716, + 0.787259082549755, + 0.8464988655602693, + 0.8557051288881561, + 0.731478284751673, + 0.7769003111650881, + 0.5736680072737296, + 0.7476545939455793, + 0.688971048561295, + 0.5739594277832453, + 0.6465658042936037, + 1.0, + 0.834945819328099, + 0.5240244056062283, + 0.7334527761667524, + 0.6796242244821863, + 0.8955657055719176, + 0.9142285449980221, + 0.7545798551103641, + 0.6710233493157612, + 0.5504927581866692, + 0.5122448618190505, + 0.8287082049335346, + 0.675294387999584, + 0.40846022405855303, + 0.9331362462566339, + 0.8025043371558029, + 0.6863766851127938, + 0.6487386897158314, + 0.38205137296838826, + 0.43658422740759556, + 0.5067193704501657, + 0.534965325043493, + 0.6531695501080957, + 0.6320112909281019, + 0.5294517472079313, + 0.6088381563986975, + 0.7025398908328677, + 0.7309721979079735, + 0.6906338160662403, + 0.8451885624261493, + 0.8566552444720523, + 0.8229604861009453, + 0.8237424126809159, + 0.792676553701487, + 0.4487029649459208, + 0.6422639694014134, + 0.8794677912397104, + 0.750356503976786, + 0.925930083446476, + 0.8520491306879806, + 0.49630263102934696, + 0.5064916385107588, + 0.6865907232587466, + 0.49193965524590594, + 0.52108272884575, + 0.6841526191562494, + 0.5936179944252913, + 0.6716614698807831, + 0.7974000510035217, + 0.8888144309308393, + 0.6267474194202339, + 0.5745079615430206, + 0.5263797142519184, + 0.639494607689476, + 0.7718083510355661, + 0.7882633716309757, + 0.6216604645577448, + 0.42234195331190244, + 0.689407619642631, + 0.6498771568231135, + 0.8782319256295593, + 0.8496484708502219, + 0.8600130362151719, + 0.6076349056682694, + 0.42730030068305835, + 0.6676045765829209, + 0.7214632362666139, + 0.4615456966937177, + 0.37194992367454105, + 0.6191872430975599, + 0.6096172661438858, + 0.8823306847060555, + 0.8963754189728149, + 0.6781783220325771, + 0.43290006161982103, + 0.5703491024203291, + 0.6402735600523429, + 0.8347610151313806, + 0.862969474233016, + 0.6312231467431638, + 0.654301079050983, + 0.5359797921635555, + 0.5896327113919223, + 0.6597181139963975, + 0.6410570915714875, + 0.5869890719480478, + 0.5941318708934896, + 0.6429125341471751, + 0.8122199824787575, + 0.8416092696132835, + 0.8323673827604637, + 0.7525391466914734, + 0.7001742707259011, + 0.7550780136790749, + 0.6472769472956085, + 0.5273986193474041, + 0.6605264233283706, + 0.6704206213064917, + 0.7848316440487517, + 0.8906281852100142, + 0.8114982413949753, + 0.7342280856497273, + 0.38862859979128767, + 0.5754681500489748, + 0.578739674336875, + 0.536746965151073, + 0.7551388131849613, + 0.77476655336953, + 0.7217518875628282, + 0.66866487146244, + 0.49316943562971255, + 0.8157077075727006, + 0.705459191246178, + 0.4680841320772486, + 0.5158398965754569, + 0.6820181510706808, + 0.7811426092727077, + 0.6850157191777237, + 0.7028595863057245, + 0.7229464853910912, + 0.4575868070694744, + 0.5780125870662289, + 0.5536270094888671, + 0.3476026710102938, + 0.4282637939580291, + 0.5545718967233315, + 0.6926313841877365, + 0.7020510542916945, + 0.748079616972302, + 0.7223892508301302, + 0.476275741758574, + 0.6171623974404842, + 0.4967501037698816, + 0.7003222051899288, + 0.7423616285631158, + 0.8436669008911363, + 0.6792166095543319, + 0.5610441346199913, + 0.6437813455592247, + 0.4376085475373472, + 0.6555671978541798, + 0.6413406392655352, + 0.5420553955899761, + 0.7297220898331289, + 0.6763045253196879, + 0.7030617319886276, + 0.5330340917064321, + 0.5501618403006158, + 0.6977483752592771, + 0.6413043106365381, + 0.6692946056977365, + 0.4493063901207001, + 0.6420782049313486, + 0.37498671881534335, + 0.748824203664714, + 0.6931080434977077, + 0.8678854861285888, + 0.6552952136329878, + 0.5868063908696507, + 0.6458585382633004, + 0.5900561501463256, + 0.64464312463557, + 0.6675587120209907, + 0.7922132721839479, + 0.6409340482228133, + 0.7284790333287068, + 0.7427059643984302, + 0.5849060406163906, + 0.6793358742516018, + 0.6861393456344045, + 0.6074676041461783, + 0.37837044702149314, + 0.6379309788685712, + 0.607799703659585, + 0.5197755922315108, + 0.5898360337110284, + 0.5987570229468122, + 0.8420996748320637, + 0.8248644039843632, + 0.47998360449688043, + 0.5584613822839833, + 0.5743141331609144, + 0.752000542752331, + 0.6779871855711174, + 0.39651699829857234, + 0.5068640942299163, + 0.3507601312130021, + 0.5896758128958636, + 0.5969691020114126, + 0.7186562721936687, + 0.5468171180813327, + 0.5522664087176516, + 0.6111253304519528, + 0.6450301713091342, + 0.604367395777491, + 0.6016436908925513, + 0.462643238802226, + 0.29640600389491284, + 0.4841713095304541, + 0.6855269647732797, + 0.7256453989748993, + 0.6779962518739804, + 0.5727129255315605, + 0.4606142040866329, + 0.5977482842690571, + 0.7154405253761751, + 0.6375082036250104, + 0.5683836548070866, + 0.7112931761107257, + 0.6355045043514291, + 0.5811213183577691, + 0.3652824383951881, + 0.6156624922769739, + 0.6124298446581038, + 0.74622437821148, + 0.6284477033542961, + 0.5903502109632528, + 0.5371106289471167, + 0.4841708502070251, + 0.5570534862898886, + 0.31154019477801537, + 0.8874325415819644, + 0.5774311149928595, + 0.5319757051291834, + 0.3506390264465847, + 0.5550178067006145, + 0.4969891154532211, + 0.3599382362244454, + 0.6749371551820814, + 0.6848889316054676, + 0.6407064216820418, + 0.8871908158625708, + 0.564139253400931, + 0.7781198046150298, + 0.5620829128547751, + 0.6856181706575535, + 0.5396213187642657, + 0.47438057038919745 + ], + [ + 0.8237135035045737, + 0.7643284413774191, + 0.698669483475032, + 0.7738994612988828, + 0.9221582670195619, + 0.8546179131239526, + 0.7406590339209734, + 0.8173735953356519, + 0.7683486045232382, + 0.7131933662571612, + 0.6630036946271957, + 0.9066491774696034, + 0.8391255256977669, + 0.873273518516066, + 0.8678200869918695, + 0.9285929234557987, + 0.7712401557997989, + 0.8585023174882576, + 0.9453321068142593, + 0.7423881544620745, + 0.8562283631254313, + 0.8955657922234056, + 0.818460076452057, + 0.8422417380969288, + 0.834945819328099, + 1.0, + 0.7119175133072465, + 0.8250453612399934, + 0.8971388015747643, + 0.8933110186489082, + 0.9288973100843483, + 0.8494996531240924, + 0.8808460668773145, + 0.7474778908431577, + 0.7569866203066344, + 0.9380741333519853, + 0.8171206966845923, + 0.5185305167002461, + 0.8518045822206499, + 0.7905146700013097, + 0.8615453631777488, + 0.8077126382925249, + 0.4912315356232607, + 0.6893986800769996, + 0.7254838364731288, + 0.7198536375497083, + 0.7769666917039596, + 0.79551721475639, + 0.7415999225444034, + 0.6554772128738366, + 0.7790672379016694, + 0.8784091708783704, + 0.8329145375175095, + 0.9288010549837602, + 0.8288217766226187, + 0.8803093612995074, + 0.9336018937699821, + 0.8625812227630519, + 0.6415942651047638, + 0.7578611691371356, + 0.7935520028719082, + 0.8715434814146786, + 0.9002512849934593, + 0.9156658115216169, + 0.7090419595287025, + 0.6723759544218009, + 0.901534494282152, + 0.7307211273225651, + 0.7458707540217785, + 0.8143825323164421, + 0.8213028600949117, + 0.8590551099180566, + 0.8172141141378384, + 0.8448672295913607, + 0.8303504192377066, + 0.7229157899788778, + 0.7112535096823732, + 0.8350645097632251, + 0.8046187010126727, + 0.8307609076724916, + 0.8366794240707576, + 0.6121103598126294, + 0.6936376831627336, + 0.7641990319220597, + 0.8791408119082266, + 0.8565935226505398, + 0.9098824238862977, + 0.8125424734910606, + 0.6595635459293913, + 0.927091278428072, + 0.8710260098818166, + 0.7204974222214401, + 0.6651995535201989, + 0.8279463960744511, + 0.7500739664362852, + 0.9247846030626932, + 0.8354280809796308, + 0.8909491283408877, + 0.6936086381007568, + 0.7713933838911514, + 0.838508299641403, + 0.9066780362525694, + 0.833072513761438, + 0.8733943875433157, + 0.8336634028569616, + 0.6691248834874187, + 0.841125355736933, + 0.797023442899557, + 0.7951960624811287, + 0.742784904758757, + 0.7438497447350919, + 0.7005697127864576, + 0.8069822823458698, + 0.9050161333321517, + 0.9077198958077171, + 0.9049600939635005, + 0.8203599851873657, + 0.8910894703027126, + 0.6208744664304593, + 0.7104048375366896, + 0.8146069988829283, + 0.7753325494866299, + 0.8517998928188656, + 0.7999344191225255, + 0.7790133779087597, + 0.7140079230625985, + 0.6107166491027887, + 0.7995650055372849, + 0.6833768933326144, + 0.7085358855339156, + 0.7725766740183789, + 0.8334347492449592, + 0.6740245828783757, + 0.7366763203884933, + 0.6367761807354221, + 0.875539646217196, + 0.8468831623071679, + 0.6510370153163114, + 0.5591618689104926, + 0.8401901258478588, + 0.9289980412450525, + 0.7981891773512666, + 0.8392893226077198, + 0.8666580547911708, + 0.6717204666654086, + 0.8082693404474285, + 0.7880258128877853, + 0.6121759055572538, + 0.6367321028269242, + 0.6898138141562642, + 0.8301021997956735, + 0.841007817632173, + 0.8485980314978587, + 0.7056745805642669, + 0.7205935699608572, + 0.7533098323070397, + 0.5519998455339846, + 0.8479381681499355, + 0.7703703167013841, + 0.8787128161719924, + 0.8059208754134112, + 0.7615375549869606, + 0.7701389741671333, + 0.6153807552744939, + 0.78345676899083, + 0.7755831232571959, + 0.6801235468530884, + 0.87342078864892, + 0.8596898226327212, + 0.8359006902160445, + 0.7255758975108396, + 0.7747732708647823, + 0.690629066993172, + 0.7513410607893015, + 0.8032684022707135, + 0.5517746528786889, + 0.7290137631076241, + 0.6582522256323785, + 0.8026981822064707, + 0.7877356418620137, + 0.8931718350670794, + 0.8113268003353651, + 0.7844393532844631, + 0.7923696519158612, + 0.7985635034111366, + 0.7924069686242493, + 0.8359449710303178, + 0.79495709409903, + 0.6457441601026128, + 0.7637736855811356, + 0.7964060387003897, + 0.6956899969142977, + 0.794098403657473, + 0.7972261662657452, + 0.6774085815427239, + 0.5233521714678377, + 0.8121813948982708, + 0.7193723754738569, + 0.6906972874607878, + 0.7613860066351519, + 0.7916580332048353, + 0.726726191781367, + 0.8276192961063796, + 0.5999965702879976, + 0.7186155886984442, + 0.787280521791916, + 0.8780973411442423, + 0.7791261657253051, + 0.623871188923479, + 0.7045019093634186, + 0.6162578423656399, + 0.7091495432263325, + 0.7165522560071845, + 0.8074317705306204, + 0.7084727237830193, + 0.6410527471061495, + 0.6836646207781624, + 0.7274694964915351, + 0.7198064663004501, + 0.7808215906255861, + 0.5807476462259219, + 0.471013237543528, + 0.6809047996640857, + 0.7830317975448435, + 0.7489051765164567, + 0.7040626696921563, + 0.6953623061202414, + 0.6731032913813503, + 0.6399488437431585, + 0.7600514117749875, + 0.7938056932890037, + 0.697989752336409, + 0.8544578887501383, + 0.7588272198462216, + 0.8086280958988463, + 0.5220221050014047, + 0.6681796132383419, + 0.7119560103242166, + 0.84984642188956, + 0.7879436691880236, + 0.7489646482352458, + 0.7095361663730151, + 0.6347053130747333, + 0.6679408858184688, + 0.561263555829749, + 0.8109545126086284, + 0.636306932376169, + 0.5893943314822724, + 0.5388305185479211, + 0.6916154472046869, + 0.5351151750889497, + 0.5950766661683475, + 0.9042676065182228, + 0.8447577026437016, + 0.8952023100401503, + 0.8599398545146151, + 0.7276183432544463, + 0.8072520930143295, + 0.6665157434560883, + 0.8681244357266987, + 0.7082691061856637, + 0.6069920058750139 + ], + [ + 0.7040977681989717, + 0.6606510973612832, + 0.8440364762355815, + 0.6382816584496883, + 0.6916327502872712, + 0.6741163002391034, + 0.5715372620529051, + 0.7926821357539412, + 0.4770037119247963, + 0.7062852468510139, + 0.6325559501333328, + 0.6745422591906529, + 0.830364810207186, + 0.5066349399952126, + 0.7935308739620357, + 0.495619548245059, + 0.5721356048075181, + 0.7713652740591896, + 0.6447399281182598, + 0.8139002195857596, + 0.8094482538175422, + 0.5341986110234981, + 0.9054024793660003, + 0.6749968527510689, + 0.5240244056062283, + 0.7119175133072465, + 1.0, + 0.8418649506680804, + 0.5540432978246925, + 0.5020220398796541, + 0.7570156267845406, + 0.7117866801188919, + 0.7462232619863575, + 0.691451835812271, + 0.8248687439289955, + 0.6935536715846972, + 0.804837453438653, + 0.29282272697998646, + 0.5660945802719993, + 0.7361829898407483, + 0.8322948197878705, + 0.699765011245965, + 0.3611667787884685, + 0.7480049476646237, + 0.8673498725966393, + 0.7554330346313811, + 0.8460118906960117, + 0.7492066970242119, + 0.8015504206774169, + 0.7409893826827575, + 0.6765649160276698, + 0.5570713430567354, + 0.4097791593078021, + 0.632946870638403, + 0.444843592490001, + 0.503210575827252, + 0.6314213006951408, + 0.7969297940758566, + 0.5368517982321702, + 0.7886883357247361, + 0.395968016097576, + 0.8428704168429761, + 0.5517015242782155, + 0.6352874460836372, + 0.8368875924093384, + 0.6428401693578335, + 0.6736196244585037, + 0.7898425916632834, + 0.7493272450461511, + 0.7205139898016206, + 0.7080999765394038, + 0.5715712956980671, + 0.8103439735430775, + 0.7560436024313887, + 0.7760551986796936, + 0.8661126402371405, + 0.882634099773601, + 0.6396503908592883, + 0.6710534859122016, + 0.7686372899742493, + 0.6766812094312508, + 0.3294426947825747, + 0.6333552344309713, + 0.7819876236502874, + 0.7872552867972249, + 0.7814082264294733, + 0.7502465008375315, + 0.5489116855347965, + 0.3786898135355021, + 0.6313276410036316, + 0.8688146336925473, + 0.8128572728151764, + 0.8285725394852212, + 0.8392550027036386, + 0.8386716141428465, + 0.6112866833349394, + 0.7151372316238083, + 0.5908883599116563, + 0.7886794256397983, + 0.7544354032649614, + 0.9015763783281625, + 0.6277641457713451, + 0.6252539390667264, + 0.6281695651827555, + 0.9125292175655986, + 0.6820965801669358, + 0.6553182878835747, + 0.7822086903593377, + 0.6913118280382363, + 0.9298611099351426, + 0.7818667175058107, + 0.66302760357537, + 0.8282852486367734, + 0.7871202831882721, + 0.762662909354262, + 0.777568990904609, + 0.802467751029653, + 0.8653227165785624, + 0.6996773812275895, + 0.7745717596582572, + 0.8693627028990001, + 0.7268810194165746, + 0.8048636767052502, + 0.5506634601635033, + 0.6264758787512957, + 0.5796708368337172, + 0.2904542481511613, + 0.8565106969877488, + 0.5904546390489477, + 0.7866039792734354, + 0.6114162720410422, + 0.6367109459513596, + 0.38890682843183755, + 0.48611841611106604, + 0.6336406821704008, + 0.842445807853911, + 0.7673440393470354, + 0.7705803788568811, + 0.7816132510691771, + 0.8696452542672507, + 0.7716835905183307, + 0.9095541740374435, + 0.8918148228575815, + 0.8388279544491126, + 0.34887813569095905, + 0.81778689889672, + 0.8458966711917678, + 0.708116884051147, + 0.5821105388844606, + 0.8431916460422612, + 0.7787652739445676, + 0.7638149586154567, + 0.8464144796831954, + 0.6339629383488448, + 0.7618403175273638, + 0.8383696299670998, + 0.7172870940493218, + 0.7378415876094762, + 0.65241863051963, + 0.7690960584271833, + 0.8275386435251837, + 0.7788896125054693, + 0.7923609961197565, + 0.8682879023530693, + 0.9328281297051014, + 0.8525126815606019, + 0.8392605331400927, + 0.7382318919490455, + 0.8073356043428965, + 0.8217044020369879, + 0.8020742797800635, + 0.7945845437114101, + 0.624484428661517, + 0.7669180487659285, + 0.8031498331284719, + 0.4507307363554109, + 0.7132004230537247, + 0.8288349438876799, + 0.7620838786809264, + 0.7377137289756677, + 0.5298331166949094, + 0.813660960868255, + 0.7573160656234165, + 0.920025872185311, + 0.8609406889999692, + 0.8380087601755118, + 0.7862456652713398, + 0.8187415507643113, + 0.7086752475275522, + 0.8145286320520871, + 0.8501443728434684, + 0.8918256159401781, + 0.8107350741337856, + 0.8753659425356296, + 0.8149338222456018, + 0.7916385330182532, + 0.7800422401964481, + 0.7492425128604335, + 0.8786232886394966, + 0.5412514871316614, + 0.822574109369499, + 0.5478185015960905, + 0.7198180693767505, + 0.8228343008746115, + 0.8588055944913366, + 0.8627676728630469, + 0.8274735761682653, + 0.7456605714876656, + 0.44002233900799875, + 0.7958459677778067, + 0.8384744074686142, + 0.84803774867361, + 0.8983595289450794, + 0.7762314283577573, + 0.8384145310348164, + 0.5145120587105845, + 0.6569670838553547, + 0.8442627874718102, + 0.9040939590995903, + 0.8169677878583108, + 0.8488067769934307, + 0.5886245462355637, + 0.7935690626134357, + 0.7931277262052469, + 0.6373096294101814, + 0.6661610441223293, + 0.8848158794792924, + 0.8660982408591382, + 0.600122480372533, + 0.8223993219443304, + 0.7590843307327082, + 0.8837133757453238, + 0.8615343918675042, + 0.775074401534417, + 0.8714821148600109, + 0.3514539468070956, + 0.5458931229330729, + 0.7886321961268665, + 0.7991107524211878, + 0.8269864638336833, + 0.4917083042790706, + 0.8032007763185058, + 0.9068804212542357, + 0.5935580106125201, + 0.7616085940345995, + 0.4460258563916788, + 0.645693665659092, + 0.46645311649117877, + 0.5774006048549042, + 0.9065855761509072, + 0.6409140773980705, + 0.4916457285531252, + 0.7022403383780784, + 0.6384321892342673, + 0.6210364704946911, + 0.7820045886372083, + 0.8552779055787646, + 0.4793655392074837, + 0.5593652151665272, + 0.7426227667739052, + 0.8576385660375822, + 0.667215115533945 + ], + [ + 0.8039461257330617, + 0.7776413896728619, + 0.8714430694704774, + 0.6730561709435883, + 0.739900555118535, + 0.7284223893926556, + 0.761715892693261, + 0.9055399946942325, + 0.7311950056953511, + 0.8751745226625591, + 0.7984710985679131, + 0.8364334541288603, + 0.8173231146276231, + 0.6282112195719386, + 0.9139470913304524, + 0.687135156762008, + 0.7533238395993778, + 0.9260834205601506, + 0.7806876445763921, + 0.8558296169420415, + 0.8925309473155081, + 0.7036021028120226, + 0.9201760398662858, + 0.8089912816906286, + 0.7334527761667524, + 0.8250453612399934, + 0.8418649506680804, + 1.0, + 0.7217697680222743, + 0.6589724308290074, + 0.8266099856269659, + 0.7547086394071162, + 0.8599605538842929, + 0.7645911990620619, + 0.8414718226877601, + 0.820083775312704, + 0.8748116712383573, + 0.2859631776231746, + 0.7304608381974308, + 0.8169975485015, + 0.8898596668045179, + 0.6779209416421988, + 0.25357794158847924, + 0.7334783454282683, + 0.7911206675139831, + 0.8391921403223708, + 0.822955339848865, + 0.8504236725985378, + 0.8303844151577392, + 0.7046743748449881, + 0.8805958054170148, + 0.707407283877877, + 0.6034356839321657, + 0.7704091423108774, + 0.6067521564621831, + 0.704381646972877, + 0.7716232099606664, + 0.8037814951081278, + 0.46797088294781874, + 0.831553464098619, + 0.6720281297654658, + 0.9186089746519941, + 0.8086976648808691, + 0.766769608652437, + 0.8973178604256393, + 0.6340702840280785, + 0.8032591914803578, + 0.786045008822594, + 0.732198701634794, + 0.7509794081737536, + 0.7473363743612887, + 0.7151845868183907, + 0.9543166409370436, + 0.8545666869393845, + 0.8330224000566959, + 0.8156365251859818, + 0.7970252315690122, + 0.6786812984624162, + 0.8474243539357871, + 0.8421799932724142, + 0.7387115319508953, + 0.38066820263210627, + 0.8531538625086186, + 0.7588780003920411, + 0.9049578445723293, + 0.8730097860451823, + 0.9102850466768307, + 0.6698747393696508, + 0.4684807128518683, + 0.693401265264734, + 0.9335659063517141, + 0.7973738955292444, + 0.683803428949248, + 0.7969278984232238, + 0.8610889560436346, + 0.7596192111848117, + 0.8763875460584003, + 0.6745524774754342, + 0.7842621269203461, + 0.8117216022507598, + 0.8676284428499405, + 0.785060228590844, + 0.7821262581056058, + 0.6764783699344761, + 0.88697520845753, + 0.8096586573284502, + 0.6971991018642737, + 0.859352893804989, + 0.6724109899074199, + 0.8755925346185709, + 0.7556275003263148, + 0.7993716959565879, + 0.9065273596182285, + 0.86833112104607, + 0.8336396853770853, + 0.8819457350435376, + 0.8124328497453608, + 0.9205090859427832, + 0.7868654795078229, + 0.7895977893663745, + 0.8242090754596166, + 0.8030356785628637, + 0.8596490931807063, + 0.8146730924868394, + 0.7884568160143003, + 0.7703329045276094, + 0.43896306845082295, + 0.8628721576674276, + 0.657404060611593, + 0.702920606238301, + 0.831016107305794, + 0.8151638678823179, + 0.6793794228158119, + 0.6787411778170965, + 0.8240985192718799, + 0.863468642020718, + 0.7904218964391627, + 0.7936479838581312, + 0.684437963078615, + 0.8605918247351272, + 0.8362466983528617, + 0.908079382595865, + 0.8293484079772719, + 0.8834408130146093, + 0.5012463869749613, + 0.8775676666662726, + 0.7786592849565234, + 0.6584731344912298, + 0.5794822334713641, + 0.7847890962032685, + 0.8162359568529265, + 0.7986492520622087, + 0.8807933973269806, + 0.7592513098390341, + 0.7312266249966392, + 0.7860826803566819, + 0.6158528071804982, + 0.8217577635271512, + 0.7870374083399114, + 0.864185170602228, + 0.8428974464306654, + 0.7580857581887036, + 0.8534240963609409, + 0.7402370509190115, + 0.9086791653633589, + 0.8296466034581171, + 0.7668084355748449, + 0.8164506638211456, + 0.7916983259291805, + 0.8407212393668224, + 0.7542575400773803, + 0.7574111119312072, + 0.6576017577806035, + 0.7020268559617912, + 0.8046436260366092, + 0.3888242030445242, + 0.7185194381614006, + 0.7313455202234513, + 0.868953392661316, + 0.7481978377949622, + 0.6825310588806242, + 0.7675852241669274, + 0.7486476715079565, + 0.8627723051760512, + 0.8207423905710699, + 0.8469620629609335, + 0.8325360010356039, + 0.9102315162139182, + 0.7392965942126641, + 0.8351029262436596, + 0.8855190211855162, + 0.8610424812970351, + 0.814597454486303, + 0.8171952255457346, + 0.7252977581677592, + 0.6231108541402283, + 0.8550356375009941, + 0.7625955641928027, + 0.7899119149083778, + 0.5745539486571604, + 0.8106901682169206, + 0.756227920659739, + 0.7630320449046639, + 0.7155987651089052, + 0.8402284727513498, + 0.7923935206649078, + 0.8116426923842882, + 0.7971526061728973, + 0.505189252742007, + 0.7036621315411187, + 0.7485007218970345, + 0.7910852028750417, + 0.8001715882989802, + 0.8320108441296536, + 0.8207578911624763, + 0.5199488312678854, + 0.6662189444142921, + 0.8195673051979935, + 0.792938331938172, + 0.7558503610110868, + 0.737592984646096, + 0.473961770875015, + 0.7583139666060039, + 0.7842739009327535, + 0.6407609974350841, + 0.689170990974387, + 0.7960483153185429, + 0.7255140004980791, + 0.6876809656630132, + 0.869152967507308, + 0.7550390108135011, + 0.8402413600375541, + 0.8551397076610586, + 0.7779680702767607, + 0.8501806208631099, + 0.4005263382203845, + 0.5374117240954345, + 0.725663689336749, + 0.8040987904734246, + 0.8115604498848248, + 0.6890349123297305, + 0.7229565959834824, + 0.8126647776499667, + 0.5262729940765581, + 0.6715129849641794, + 0.6394585462678101, + 0.7153649204988727, + 0.4838583725402096, + 0.48666445893611593, + 0.8327179778459252, + 0.6330355205285367, + 0.43467793412610084, + 0.7133594122289327, + 0.7652527332466635, + 0.6180976313399533, + 0.8941387108998413, + 0.7655725236299004, + 0.7057161380770486, + 0.7242499286359574, + 0.7715435476100284, + 0.8710384419603929, + 0.4490143422657653 + ], + [ + 0.8056999724608441, + 0.7184463158170762, + 0.6345973467939655, + 0.7444420777585187, + 0.9073258580393213, + 0.9013958288827889, + 0.8326106411395677, + 0.7202468557450658, + 0.7840458391068109, + 0.7736679295393319, + 0.7401001717507621, + 0.7658189399934052, + 0.6858825971569142, + 0.8474949902283732, + 0.7830675573921231, + 0.9165546994128079, + 0.7529108121096233, + 0.8387695160677496, + 0.9294227541075641, + 0.7410067235926184, + 0.8338769501135626, + 0.9195059233656885, + 0.7376205708041063, + 0.9122138068812381, + 0.6796242244821863, + 0.8971388015747643, + 0.5540432978246925, + 0.7217697680222743, + 1.0, + 0.7634694351639251, + 0.8046817695356326, + 0.7736766090088949, + 0.803426376060159, + 0.7823397625998127, + 0.7638343076646711, + 0.8878131902665336, + 0.7932937304607507, + 0.3552638464895031, + 0.7093280459646285, + 0.6974002210892388, + 0.716689210450791, + 0.6522652048237527, + 0.3925321786548887, + 0.6829185092932261, + 0.6602875206094108, + 0.7501365711331266, + 0.7265122544954186, + 0.8263103147992619, + 0.6954914467941621, + 0.5661806188534864, + 0.7906549756067819, + 0.8107393990917243, + 0.8985408246591853, + 0.8679787971113793, + 0.7595848483651644, + 0.8659946685968652, + 0.917924260391354, + 0.6953064700151479, + 0.6142458329176703, + 0.6772655336533976, + 0.8134060581624667, + 0.7724919564186651, + 0.8378532258714413, + 0.8847918418616509, + 0.6398567604878842, + 0.6327205024540622, + 0.9170571485373782, + 0.7511194407624429, + 0.7389871679997484, + 0.7782571611171863, + 0.8648933294225049, + 0.8772291540930653, + 0.7282169978864274, + 0.731935197365255, + 0.7830269223008447, + 0.6457520461578135, + 0.6114427449485031, + 0.7117348535378284, + 0.7865836925764986, + 0.6475140896856424, + 0.8553838416520411, + 0.7276970890815874, + 0.6197513924788907, + 0.6467903245677857, + 0.7469581131340305, + 0.7462852175853593, + 0.8333019650916541, + 0.8844974082675164, + 0.7659562515141883, + 0.8631175615137484, + 0.7719548417717534, + 0.7758227312985734, + 0.6114086383364571, + 0.7539644232713165, + 0.7181028822958765, + 0.8266648698676043, + 0.6639879503286762, + 0.8836066963128915, + 0.7656794790554414, + 0.7728868621769907, + 0.7568198254085848, + 0.8900576847899003, + 0.7015449747903796, + 0.9025464158345964, + 0.7566496571127417, + 0.7803651729743533, + 0.862765750649498, + 0.8049727656579427, + 0.7645504109396926, + 0.6494106186823527, + 0.7112927752084393, + 0.7243042293095716, + 0.6886694533254641, + 0.8118396745374497, + 0.7720717590943625, + 0.8298774595507385, + 0.7255428216198575, + 0.8018355915717318, + 0.6094799397890965, + 0.7271665673202123, + 0.7224499169390775, + 0.6905690491033, + 0.7642390698548946, + 0.7508705303136544, + 0.6940783904928484, + 0.7007745245721938, + 0.6703094134636713, + 0.7286722142482316, + 0.6417657549777287, + 0.5886322897827827, + 0.7673307652585429, + 0.8096654598128897, + 0.7336631310446962, + 0.777111775734949, + 0.7093287270077195, + 0.7538720675691041, + 0.8453751097658521, + 0.6581021734348682, + 0.424483323102539, + 0.7397693294488936, + 0.8506016992275744, + 0.6791452245716654, + 0.6889284721464353, + 0.7935654221838505, + 0.7316957138539132, + 0.8148882702023293, + 0.6633629891491153, + 0.5607299768485495, + 0.5359013619417323, + 0.5918190158506068, + 0.7854930032170401, + 0.7971028644864301, + 0.752056592764003, + 0.685480256560989, + 0.7493093723301241, + 0.6895613928118027, + 0.4862402446858013, + 0.8793481090783374, + 0.8263202639538682, + 0.7871446062534309, + 0.7679500599341949, + 0.7448906928521083, + 0.7986096684182905, + 0.5812734612514038, + 0.6725593083602284, + 0.6541008782838655, + 0.6280255843129996, + 0.8537295151894914, + 0.8166621773603975, + 0.7671230336006573, + 0.75243869616428, + 0.7996138630596196, + 0.6699396966310458, + 0.5436339946084995, + 0.7266340042879401, + 0.5073344394473324, + 0.7066976007077145, + 0.5810918567612549, + 0.7639142220371985, + 0.7691377949737112, + 0.8297792931907659, + 0.7590196377168784, + 0.7567695482226984, + 0.6891756273128806, + 0.6823994481720314, + 0.7776123077119845, + 0.8057274479365607, + 0.6837365576792536, + 0.6184698399893038, + 0.6541449411480134, + 0.6318998362164224, + 0.5459811141408433, + 0.6830970700575424, + 0.6589642963411604, + 0.49811594593595626, + 0.5454967476947832, + 0.827825568724057, + 0.7190519250822176, + 0.4830764881147477, + 0.7267627685121434, + 0.7815454021595976, + 0.6092069839284169, + 0.7310271268712254, + 0.4490898956313248, + 0.6472335339451086, + 0.7094347822707646, + 0.7136461653219298, + 0.7091375235120364, + 0.746912457207486, + 0.6424854926519121, + 0.6222828015480539, + 0.5927174869267234, + 0.6003711305477291, + 0.8072981438296024, + 0.6437855030304221, + 0.498974639180584, + 0.608682952921351, + 0.6452663086648769, + 0.5938819994150936, + 0.6952382988783188, + 0.49085804893900137, + 0.3842684002545231, + 0.5826924022011801, + 0.7323984086972928, + 0.6837006349556548, + 0.6202720759759786, + 0.5046061896456825, + 0.5835311840795098, + 0.7244784681161774, + 0.7191968192430789, + 0.7809541161259439, + 0.6382655435350542, + 0.7648611504997916, + 0.6835845942045213, + 0.7350221685458065, + 0.4968728559349151, + 0.4055845636409447, + 0.5105586642598974, + 0.7296729432639318, + 0.6854015830747174, + 0.8317445857931365, + 0.5411118604176859, + 0.4787489160802055, + 0.6133624537162053, + 0.5986835430561985, + 0.7095481541451658, + 0.7057657885974408, + 0.4871830282770418, + 0.5600782721799581, + 0.5846131540227512, + 0.4211320514291151, + 0.6456067630907584, + 0.8052010257866965, + 0.7947411268963229, + 0.8805812902578408, + 0.7023719024477129, + 0.64687832264855, + 0.7079713392445599, + 0.767219966740778, + 0.8746212846175476, + 0.7006191615263508, + 0.6320851443525894 + ], + [ + 0.7797425357200877, + 0.7633906367644288, + 0.5960915933022308, + 0.6379118291398856, + 0.7774577810713518, + 0.6771655269668486, + 0.6566122896059856, + 0.6876491423341285, + 0.8104330791370854, + 0.5753576261530916, + 0.5832050815848965, + 0.8429086120633726, + 0.7390544926528283, + 0.8411829302632193, + 0.7335636055513445, + 0.859340253690231, + 0.7694102286137025, + 0.7285576540031037, + 0.8092755673018899, + 0.6050969291682844, + 0.7384431595180866, + 0.7480505117233578, + 0.6231422042953132, + 0.733474325577286, + 0.8955657055719176, + 0.8933110186489082, + 0.5020220398796541, + 0.6589724308290074, + 0.7634694351639251, + 1.0, + 0.865204298114976, + 0.8126497186105658, + 0.749449517426042, + 0.5028150667684594, + 0.5349529956059994, + 0.8429397847388979, + 0.7060940230651942, + 0.47016919538931357, + 0.8969307479270119, + 0.6756335160237704, + 0.7222023275359823, + 0.6806239374410277, + 0.35231606475812993, + 0.4157241728736289, + 0.4960930805945078, + 0.5646111907065922, + 0.6103661498018849, + 0.6994111757513277, + 0.5140471499591036, + 0.542419376633773, + 0.6626639750411141, + 0.7838537896744429, + 0.6853138061595071, + 0.898283656814834, + 0.8501346598646977, + 0.8497658874875009, + 0.8607027220654367, + 0.749380083641714, + 0.476942923032386, + 0.6568952531572817, + 0.8114364601495672, + 0.6948759877958455, + 0.8642152328662014, + 0.805974360712281, + 0.5143375704074541, + 0.5549050393900632, + 0.7782707068829532, + 0.5208773802330877, + 0.6529377639861039, + 0.7851965399728471, + 0.6881076824275375, + 0.8063364196653822, + 0.734551456380048, + 0.7739100075251675, + 0.7074131139105501, + 0.5012962929752839, + 0.4903719073402508, + 0.6665185877627059, + 0.7372037668863796, + 0.7317211075123236, + 0.7603063652544289, + 0.4316505712085977, + 0.6004228258267877, + 0.5648441347936672, + 0.8314713173709675, + 0.8331801460845332, + 0.8421098097804528, + 0.6662565758583961, + 0.4832113242789426, + 0.7836292732135024, + 0.7002296019587329, + 0.48969193457895166, + 0.45334069865271875, + 0.6560671846067396, + 0.5379735075242897, + 0.8685612173393535, + 0.830398836279546, + 0.7629179484627747, + 0.49462174956866883, + 0.6850739169312993, + 0.6741501860935611, + 0.7976640976722187, + 0.8044245346949365, + 0.7139259981305021, + 0.6666769173746256, + 0.5080524477122978, + 0.7190938310116916, + 0.626591641495637, + 0.6227736589842745, + 0.5126776266716172, + 0.5790713111035446, + 0.5356682068910231, + 0.7084737695041075, + 0.7941013953322387, + 0.7841840334659054, + 0.74005814397568, + 0.6862391996902925, + 0.7581541252271544, + 0.4866339131380209, + 0.44466421058002203, + 0.6286243097414783, + 0.6194951559970543, + 0.7517585432815251, + 0.758934229723375, + 0.68148362858001, + 0.6224743705734517, + 0.45465362620090916, + 0.5591486833676289, + 0.578406814099335, + 0.4626532459408839, + 0.6419231734020671, + 0.7002185919554031, + 0.6230383819313664, + 0.6059221628517493, + 0.4375110206380562, + 0.7612132817079698, + 0.7142013532885133, + 0.42492343434724017, + 0.4011405774900287, + 0.6526342971058908, + 0.7614871848888013, + 0.621434093570407, + 0.696572235502494, + 0.7656608969155133, + 0.5303658891401697, + 0.6021275775527449, + 0.5642386500225397, + 0.36016992391046376, + 0.5237515510630434, + 0.5580766480471636, + 0.694887207713332, + 0.6972713755268413, + 0.6987892870746816, + 0.6577008555643298, + 0.48147560626146185, + 0.5241794358722283, + 0.40996625703612366, + 0.688774213411381, + 0.6814494184442641, + 0.8042158118669459, + 0.6670743957199904, + 0.5723768069103484, + 0.5974252995388906, + 0.4154576575378316, + 0.6101029379832388, + 0.6131706769714077, + 0.5026914329448112, + 0.7200623971177444, + 0.6842646762726304, + 0.6824152077876117, + 0.5038384089246623, + 0.5575785088701167, + 0.6156164311978735, + 0.5891681497905117, + 0.6084971057351313, + 0.40713875741276895, + 0.5913149405040375, + 0.4209124215080878, + 0.7642382598952748, + 0.6245617711782486, + 0.9045399065148106, + 0.6469528507705723, + 0.633160806879841, + 0.6108244402075477, + 0.647445358574216, + 0.612936550158324, + 0.6495953032961855, + 0.71708286769296, + 0.48685946740296865, + 0.6834008048009163, + 0.6754295146311907, + 0.5216652743432318, + 0.6177370963569694, + 0.663579357712896, + 0.5395154155177345, + 0.32843887016052226, + 0.6122905892067604, + 0.5498418872776497, + 0.5069454294936864, + 0.5662823934798967, + 0.6156731770342766, + 0.7174114007282973, + 0.6943210199306845, + 0.38652985479845114, + 0.5327767383351182, + 0.5855324552618619, + 0.7604536667541647, + 0.6312225305241097, + 0.40675661461027474, + 0.4472674907420972, + 0.35570697823263886, + 0.531824643232708, + 0.5454172953014734, + 0.6312958571139179, + 0.5146612764399814, + 0.496753501680523, + 0.6178760431261366, + 0.5796861072251552, + 0.5747388769224697, + 0.5709217109868727, + 0.3930759466252693, + 0.2955511278843828, + 0.4717283878420187, + 0.6182202778843928, + 0.7077838959539521, + 0.5652813459279388, + 0.5580609843392951, + 0.4643600519151317, + 0.575717003389553, + 0.6682965050006191, + 0.6513245255909753, + 0.5041706021731648, + 0.6960897178102553, + 0.6233330081987363, + 0.6368406385195369, + 0.3753062242650864, + 0.5434813166080951, + 0.5917721591577264, + 0.7227678900148592, + 0.6188820344254341, + 0.6772567613852982, + 0.522636164468725, + 0.4512624016365104, + 0.5365390139741212, + 0.31382357087407914, + 0.8297149056902935, + 0.5455914513097009, + 0.4945750819564372, + 0.3545164304921871, + 0.5284409666799679, + 0.44613089056298055, + 0.37338795850970014, + 0.7625343773361789, + 0.7229747674399515, + 0.7203249630060886, + 0.7584844536113166, + 0.47791297892432466, + 0.6754728492556905, + 0.5607701940618045, + 0.7337226689638255, + 0.4492827523870588, + 0.544384269711573 + ], + [ + 0.8820793484061057, + 0.7320309390507557, + 0.7275627850021958, + 0.6911597242077535, + 0.8077582136209401, + 0.7402169569889119, + 0.6649860214101019, + 0.8655051906707172, + 0.8251785169410232, + 0.6816359186164176, + 0.670835213506525, + 0.8205141716692623, + 0.8551308349430122, + 0.7895022750787393, + 0.8805987166646654, + 0.8760118251840499, + 0.8898907998981642, + 0.844376628784844, + 0.8706889149424961, + 0.7295036541090595, + 0.877604295856913, + 0.7753051496495065, + 0.7628349695594201, + 0.7699487581720962, + 0.9142285449980221, + 0.9288973100843483, + 0.7570156267845406, + 0.8266099856269659, + 0.8046817695356326, + 0.865204298114976, + 1.0, + 0.8396545936670233, + 0.8040050524811513, + 0.7262883696764911, + 0.7071675611421078, + 0.9296052097837098, + 0.8084086397409295, + 0.3953400448070284, + 0.9010592154360888, + 0.8617557226675068, + 0.82834043222909, + 0.7599789092527194, + 0.463055442796796, + 0.6308613184047467, + 0.7292608955368984, + 0.6604827780856865, + 0.840269563015413, + 0.7681578899823625, + 0.6747767690249409, + 0.7153847180846455, + 0.7746921639283009, + 0.7683036214122869, + 0.7646905568486525, + 0.9199384100177687, + 0.8612745229415051, + 0.8647838167037655, + 0.9166929931857615, + 0.8898492353554125, + 0.5564198403040674, + 0.7624410528034486, + 0.8432262282912312, + 0.8597135533019928, + 0.9206250785419644, + 0.9240236655159061, + 0.6590096505915028, + 0.6425377266137698, + 0.8055881728362004, + 0.6958612476988021, + 0.7210188063349425, + 0.8247231934754993, + 0.754622529810962, + 0.7457666788151514, + 0.8673125087949212, + 0.9428542355754098, + 0.7643673254841992, + 0.7512606749539306, + 0.735592028331964, + 0.7238040186315906, + 0.8540981899702835, + 0.8289456382893756, + 0.7844937188843746, + 0.50754556098674, + 0.6810514503532656, + 0.7831651341597353, + 0.9352116968366844, + 0.9112160781860303, + 0.9117800911359681, + 0.7077706645573613, + 0.5350427543296818, + 0.7919908920071531, + 0.8582223885498351, + 0.7042023335172403, + 0.5964820122952337, + 0.8110893622429951, + 0.7605688178180192, + 0.9106675899908686, + 0.8677851511193636, + 0.7740566155538886, + 0.6773019239868806, + 0.7284911078361431, + 0.8171551998084234, + 0.8919202223439404, + 0.8533899189375065, + 0.7872741985831265, + 0.8600205122622797, + 0.6872550477558096, + 0.7584804804499231, + 0.8100925486346556, + 0.7662819920663017, + 0.7815547459381686, + 0.7661430462015094, + 0.7259111969869801, + 0.9012104693982473, + 0.9390340545665702, + 0.9102344821051114, + 0.8533798419258907, + 0.8486009986168598, + 0.900638210820761, + 0.7095519642401097, + 0.7224802123298915, + 0.8284502756879836, + 0.7523015910928179, + 0.8836298774931101, + 0.8681548941920149, + 0.8108767073170916, + 0.7267158815788252, + 0.4148924107191288, + 0.7621468328699701, + 0.6129426397815959, + 0.7105907488526181, + 0.7787383243463747, + 0.7982741144728083, + 0.6746139995953092, + 0.6817519402021441, + 0.6152429352161297, + 0.945770561938788, + 0.8583188002626916, + 0.6237340180678717, + 0.6344472810537466, + 0.8441403049528167, + 0.9164435919724837, + 0.8372281707562148, + 0.8675457419717729, + 0.855148002909164, + 0.49207289998994014, + 0.7736201370727893, + 0.7347693050356439, + 0.5156160858658497, + 0.5214529339776771, + 0.7390997588304624, + 0.8539783864541812, + 0.8478469021419534, + 0.8913007634849551, + 0.7718559348149052, + 0.6916604556474557, + 0.7877658421037812, + 0.6392736918243209, + 0.8342254395304537, + 0.8416939836742188, + 0.9343050946509397, + 0.8353153019472104, + 0.7550347823478321, + 0.8046547736400013, + 0.6782547231637317, + 0.8359441528796422, + 0.7932660867968513, + 0.7330924865644021, + 0.8599905960898128, + 0.8546997387154339, + 0.8470900789378372, + 0.741871661958521, + 0.7643659411306226, + 0.7734708291050892, + 0.7522912601063224, + 0.8212008966763341, + 0.561457620809137, + 0.7772691944046229, + 0.5689182016797724, + 0.8482535905369258, + 0.8459051865613567, + 0.8701444195477912, + 0.8348015739821262, + 0.7600832101259016, + 0.8387950446097889, + 0.7600330803043196, + 0.8252750753147542, + 0.8173753001284825, + 0.8754492248972586, + 0.7297929749094995, + 0.8542068117162654, + 0.8404645799027828, + 0.7294670401701535, + 0.7946019198214761, + 0.8481867177379181, + 0.7195026106017797, + 0.6226959110374217, + 0.8106009807279341, + 0.7673634015000088, + 0.6700190868666345, + 0.7014379128331306, + 0.7841109732876708, + 0.7962417876003941, + 0.894813777973357, + 0.6326933832504004, + 0.736541421897347, + 0.7949190576320907, + 0.876531532014805, + 0.7633678566587073, + 0.5144955860464389, + 0.7111929641237048, + 0.6288900936487836, + 0.7571672216080066, + 0.7909453675620328, + 0.8503979915480046, + 0.6941455164214321, + 0.6100578944722214, + 0.6627773887226222, + 0.8063769546017531, + 0.8071651877296651, + 0.7739984519121589, + 0.6141991465519698, + 0.454729687860885, + 0.6545748943521712, + 0.8267564760399311, + 0.7827537322998254, + 0.7761299073279956, + 0.7128332251133158, + 0.71550807926733, + 0.7314062012200147, + 0.8459668225038823, + 0.8055351216485497, + 0.747149761102225, + 0.8663716417050982, + 0.7413089008851301, + 0.7777194358176845, + 0.4062540490716238, + 0.6372280768616534, + 0.7219306398640007, + 0.8679289866421245, + 0.7867287398331568, + 0.688301064766144, + 0.6857671541899744, + 0.6672281520772516, + 0.6444288095468093, + 0.5555326942701907, + 0.848082040219145, + 0.7447993449166619, + 0.5482505573560468, + 0.5348054953590732, + 0.7536876244899868, + 0.5457699251071344, + 0.49718233332595174, + 0.8003382873334969, + 0.7717265249110028, + 0.8003458392954029, + 0.9322327095142889, + 0.7497324434162027, + 0.7356974602021825, + 0.6839882744754807, + 0.8419062015796696, + 0.7129250962281679, + 0.6775575417004482 + ], + [ + 0.7470832167203673, + 0.8544243709673892, + 0.7431698500897661, + 0.6410973191165731, + 0.7913326333119586, + 0.6852640059240426, + 0.805524154163707, + 0.8006799598388645, + 0.7118630736002949, + 0.7592322386881684, + 0.7745557212959355, + 0.810402609320485, + 0.7657970973814275, + 0.7044420001319589, + 0.807933285063586, + 0.7252617844152462, + 0.6997705774525187, + 0.7958687852866426, + 0.728665055064526, + 0.7352406500088168, + 0.7996509275067945, + 0.6724012868884005, + 0.8077631030209039, + 0.8413419101160601, + 0.7545798551103641, + 0.8494996531240924, + 0.7117866801188919, + 0.7547086394071162, + 0.7736766090088949, + 0.8126497186105658, + 0.8396545936670233, + 1.0, + 0.7738519766181375, + 0.6589412870819865, + 0.6994413863112641, + 0.7799765560970343, + 0.7931831883607517, + 0.26271103749047775, + 0.7379490760722374, + 0.6744273850548614, + 0.7462480918682162, + 0.694691123053863, + 0.17958892034273638, + 0.537814817894655, + 0.6537972266341702, + 0.7768502988598222, + 0.7406160042230041, + 0.7921060324032487, + 0.6493125925316786, + 0.5627849950238989, + 0.6768930278058032, + 0.6263095509607923, + 0.579134953335785, + 0.7967553335319647, + 0.7032758174332915, + 0.7059838739380419, + 0.7749326603166249, + 0.7290983387274302, + 0.47794107615802994, + 0.7256912157996982, + 0.6291132972674205, + 0.7304198380876763, + 0.7712002305798539, + 0.8014381276238584, + 0.6201526102009673, + 0.6252912003210529, + 0.7824516486576637, + 0.6021491578316052, + 0.7680153469087567, + 0.823632175825454, + 0.7581938105430897, + 0.7500955117845706, + 0.790612824292217, + 0.7527466109996256, + 0.760470976451856, + 0.594598132644161, + 0.6024733822627258, + 0.5402981468465897, + 0.668270144105544, + 0.6549550045794996, + 0.762770650551752, + 0.407788198299014, + 0.6296665406603505, + 0.550889982552258, + 0.8311937151822724, + 0.9055174239207154, + 0.814985094200036, + 0.6844290681018276, + 0.3979973100429815, + 0.726239685779326, + 0.8128675953831569, + 0.6156633287936516, + 0.614025901315133, + 0.7573392387798931, + 0.6681646732441062, + 0.7621367050962764, + 0.8291873050703574, + 0.7120126517237365, + 0.7085629855018807, + 0.8185178286811238, + 0.7746958443953716, + 0.7586890777717872, + 0.7096508755018772, + 0.6950714099141612, + 0.7676681178344172, + 0.709500219332678, + 0.6153124953842621, + 0.7377216006159054, + 0.72025038105747, + 0.6861001554883759, + 0.6271897021595529, + 0.5986791998486859, + 0.7963691180144743, + 0.7812481736986587, + 0.7420274740780718, + 0.7355446412844425, + 0.6953286988980303, + 0.800798222378477, + 0.6369562903979658, + 0.5236962138748567, + 0.7015321569873825, + 0.6229659788308997, + 0.8439212081825391, + 0.6924759739237202, + 0.6249723832866059, + 0.6638449229409242, + 0.3724566598582537, + 0.6773317556284696, + 0.5653837946322162, + 0.5418145802495223, + 0.6397665296276287, + 0.79782732053015, + 0.6416318252645888, + 0.6093831306591773, + 0.607766425995386, + 0.8210344683212243, + 0.7611035195326814, + 0.530073419206619, + 0.5471536959387593, + 0.7593099493143748, + 0.7416904800881896, + 0.7351862510575495, + 0.7826355757451243, + 0.8399970980764914, + 0.42658775017600065, + 0.6938164454723088, + 0.6358494497268503, + 0.564017819700443, + 0.6508663663326117, + 0.6290131603147889, + 0.6809325578053158, + 0.7407286409540491, + 0.7621558879002985, + 0.6818026577316876, + 0.5914957840321089, + 0.6154063121205431, + 0.5068865067442705, + 0.727737845681057, + 0.7021311954918029, + 0.7611650725674395, + 0.7281339431854755, + 0.6706996973404183, + 0.7031643135341659, + 0.5991956589501549, + 0.7351630491331759, + 0.6704515422521441, + 0.6081886511434758, + 0.7129438747764627, + 0.7277540129954079, + 0.733278601931468, + 0.6584100991750567, + 0.6692664508743156, + 0.6700983099050332, + 0.5620979093352855, + 0.6339760547167987, + 0.4446921808912793, + 0.6323307483423246, + 0.5298852245612645, + 0.8593537310618902, + 0.6875340813263766, + 0.739549184818791, + 0.6893743275437382, + 0.66230213139564, + 0.725506721407374, + 0.8039327253507819, + 0.7364436490016276, + 0.7275820587115307, + 0.7357932388685152, + 0.6131937062620405, + 0.6818431191126229, + 0.6706263836037646, + 0.6246605736388806, + 0.626687064597743, + 0.675136185072961, + 0.5465721639779386, + 0.6186914141082498, + 0.7042645778796186, + 0.6232130965451351, + 0.5763819542678407, + 0.47694357536022064, + 0.7398950614923795, + 0.6647075285860338, + 0.747035081943789, + 0.4808764618819377, + 0.639017254803562, + 0.6095005443821482, + 0.7051684375976218, + 0.6008009736255142, + 0.4647649537940306, + 0.5238850838518715, + 0.5589220320933798, + 0.6691378167022396, + 0.6514584457169019, + 0.7345194833740795, + 0.6377823488615381, + 0.44343784949963766, + 0.6238349204607913, + 0.6822449639323628, + 0.7164838169171241, + 0.6354405499673907, + 0.607525173665, + 0.3931758464351038, + 0.4708570648643635, + 0.6500156186030526, + 0.6842923189449067, + 0.52241201578499, + 0.5867378967118907, + 0.5432381389573365, + 0.7903455210812003, + 0.7315406198558052, + 0.6433969249296541, + 0.6511206620595341, + 0.7365162783985412, + 0.6727755080953803, + 0.6835026867019109, + 0.22812683666724717, + 0.5064567195669313, + 0.6319584155919356, + 0.6779381692117129, + 0.6206201870402548, + 0.6530763661694104, + 0.4729243096646173, + 0.5079071620252599, + 0.5475273528090916, + 0.5144447405079687, + 0.6133308566430764, + 0.7089038291966061, + 0.452798665819722, + 0.4564381680364188, + 0.6551506516848419, + 0.48843989460050286, + 0.4778415090023868, + 0.7074942430785324, + 0.7499088168959984, + 0.6984941835915196, + 0.7933598247340254, + 0.6368499955543467, + 0.6269594881001164, + 0.7303106472090946, + 0.7396176105348623, + 0.6602832282702779, + 0.6675562560666374 + ], + [ + 0.8188037454685972, + 0.7613432979507777, + 0.7483407331376813, + 0.6732108667660399, + 0.8779724087694533, + 0.8445808015164753, + 0.782338168019785, + 0.8539008287651983, + 0.6348511675498436, + 0.7512477128228323, + 0.7341454596562305, + 0.834251345948399, + 0.7738195147569752, + 0.8348456263576072, + 0.8767905661391506, + 0.7320915932820997, + 0.6499666247322858, + 0.8566141987536265, + 0.822018143530439, + 0.702931047404894, + 0.9162232668910532, + 0.8565218047825852, + 0.8815151177388989, + 0.8421024308204862, + 0.6710233493157612, + 0.8808460668773145, + 0.7462232619863575, + 0.8599605538842929, + 0.803426376060159, + 0.749449517426042, + 0.8040050524811513, + 0.7738519766181375, + 1.0, + 0.8316878166293479, + 0.8055591546785401, + 0.8585790119606721, + 0.8861506070592687, + 0.34679502444774507, + 0.7361916223016082, + 0.7536758279726805, + 0.8719661200799874, + 0.6840562457475665, + 0.36321025356726105, + 0.7982724454043789, + 0.7762020444559364, + 0.7121933327133124, + 0.8090538029444456, + 0.7966309141026792, + 0.785663634274503, + 0.7095128005563027, + 0.8995294147816897, + 0.7383408056160365, + 0.6989975020016119, + 0.8343547069154293, + 0.7011137098079839, + 0.7928221135702868, + 0.8653609230019201, + 0.8055554549364284, + 0.404279876808135, + 0.860718634642251, + 0.6594415843059748, + 0.8543710157654714, + 0.7538187090934307, + 0.8367515454263621, + 0.7667650637944873, + 0.570154946458872, + 0.8583710179656961, + 0.7458438917065302, + 0.8181144404879477, + 0.8037389838861908, + 0.7543546475458726, + 0.7389441551186432, + 0.7727296102871828, + 0.7625070927236859, + 0.8876068115887572, + 0.7641971172402524, + 0.7525052586537043, + 0.7159413832202806, + 0.7982013721922012, + 0.781993092288528, + 0.8427646044141157, + 0.42019598256711044, + 0.7377024992820107, + 0.7112817859937287, + 0.830527706835262, + 0.8368349779172097, + 0.8216971404475937, + 0.6373553655536779, + 0.4981863088685512, + 0.73395910140737, + 0.9055719084854319, + 0.7686194176208556, + 0.6386175100875274, + 0.8023538622875785, + 0.6975835640673989, + 0.7883985618877185, + 0.7646201442113443, + 0.748197186919664, + 0.8029836700316141, + 0.8659190798983701, + 0.8201493444594652, + 0.810908715236536, + 0.6909852793093512, + 0.761953186707965, + 0.8615482916874618, + 0.7231057337436643, + 0.7463731609633931, + 0.8118807367147648, + 0.62769968730049, + 0.7552535656596254, + 0.7505481125873349, + 0.676060820044183, + 0.778543429721758, + 0.8320985116273447, + 0.8174633436463106, + 0.8061296559639305, + 0.8100664166407198, + 0.9125153374705777, + 0.5543553717445889, + 0.7140779035398888, + 0.7248532233346551, + 0.7510075448375851, + 0.8018494050123119, + 0.7642514554391026, + 0.6253460263460211, + 0.6202599450840737, + 0.46816465406268537, + 0.8442407016278372, + 0.51443951096572, + 0.7037930349089043, + 0.6948266366359461, + 0.7112672616626565, + 0.5551073395652842, + 0.6047650466480023, + 0.6592944425809988, + 0.8512114376219866, + 0.824560048146215, + 0.7205032053853969, + 0.605889993884498, + 0.8479349737138044, + 0.8744890196966726, + 0.8072658686397053, + 0.8427882770108018, + 0.8604491606500295, + 0.5030978997244908, + 0.8328055377347415, + 0.7314631884355622, + 0.6869759308731723, + 0.6973577808960069, + 0.7605200362339171, + 0.8553668972610854, + 0.8584356231755493, + 0.8382625545376031, + 0.6471319654914505, + 0.7261984258883925, + 0.7029580881029086, + 0.5803850619859674, + 0.7896179591149987, + 0.7622516218824635, + 0.854205289034719, + 0.798620407684183, + 0.8125042098501016, + 0.758017009435173, + 0.6831818930765388, + 0.8295038755997788, + 0.804712982739231, + 0.7295773153541077, + 0.8169502489994296, + 0.8196519070930368, + 0.7787061970251853, + 0.7129582587382589, + 0.7521131870390347, + 0.5628801136657581, + 0.6071396813890456, + 0.7868052051654912, + 0.5308954322868165, + 0.7168294954245173, + 0.6992091569565847, + 0.8412383449666301, + 0.7453739927575623, + 0.7444459380767302, + 0.7700819291662668, + 0.8031198160681224, + 0.815325743912049, + 0.8365831250447734, + 0.8270372985382644, + 0.874808441394179, + 0.8155185152421489, + 0.5750694886306813, + 0.7945188297977296, + 0.8130344328264528, + 0.7745593856024592, + 0.7985423758570896, + 0.7857750000203618, + 0.676502073023006, + 0.5536209929140332, + 0.7719010921850813, + 0.7011912677079748, + 0.7326327934739258, + 0.6562010747097642, + 0.8093868442176243, + 0.6027905051546733, + 0.6946361225021045, + 0.6323510485601722, + 0.8025482256243492, + 0.8157602751533266, + 0.7631184537691568, + 0.6543032175955168, + 0.49285538651566635, + 0.6509015635876505, + 0.7656874460604677, + 0.7926080473241379, + 0.7270683137456452, + 0.7241868730193015, + 0.6844566800529159, + 0.4844233787528636, + 0.5841231488411949, + 0.7677656472076096, + 0.754187664852358, + 0.7345854051422751, + 0.5452313130515728, + 0.6150766700180085, + 0.7262046786166553, + 0.808063258286335, + 0.6502406828308914, + 0.6324163475901408, + 0.7147079854208189, + 0.7325154835883045, + 0.6712001938467034, + 0.7909254406143267, + 0.7693681652134816, + 0.7221085769607004, + 0.8140514001392731, + 0.708272230043354, + 0.8478360115750632, + 0.4466984919391182, + 0.5456059601549047, + 0.7183617402333933, + 0.8409488869520332, + 0.8352949862066484, + 0.8430654354110559, + 0.6788408561270226, + 0.6620800276715696, + 0.4472549081228229, + 0.7248050023517714, + 0.7383847045193289, + 0.6639461099285859, + 0.5609982694853659, + 0.583815680401202, + 0.6764711197614662, + 0.5959979366933408, + 0.40175343866573904, + 0.7214874235303257, + 0.6930439731334737, + 0.6892426213036618, + 0.7933487452824078, + 0.6669423960609042, + 0.7136002889792316, + 0.7520908204805236, + 0.8123787156277824, + 0.7427191176681852, + 0.5367656105744779 + ], + [ + 0.7891653867615764, + 0.6217169311405318, + 0.6305027747512132, + 0.5169049445630858, + 0.7457728681472274, + 0.7112120845385236, + 0.6456689793672012, + 0.7898807889096491, + 0.5572799235051431, + 0.6831215890412263, + 0.7183560479483541, + 0.68413261057168, + 0.6294991527018573, + 0.6224608318951005, + 0.734610053992007, + 0.661000541284759, + 0.6051273267499923, + 0.7773669020215067, + 0.7542635865510452, + 0.5745442821065894, + 0.8490258960584355, + 0.809904842816094, + 0.7483702815544656, + 0.7407560723997701, + 0.5504927581866692, + 0.7474778908431577, + 0.691451835812271, + 0.7645911990620619, + 0.7823397625998127, + 0.5028150667684594, + 0.7262883696764911, + 0.6589412870819865, + 0.8316878166293479, + 1.0, + 0.7232991367147135, + 0.7947074841523328, + 0.8054778608173171, + 0.24480498416115895, + 0.6417899638131848, + 0.7829201797730239, + 0.7579580239607095, + 0.6471847057569042, + 0.4428366539556483, + 0.7565092845769099, + 0.7144091571100263, + 0.6264831090580075, + 0.8156203242339269, + 0.6993152887495369, + 0.6913844962663325, + 0.6929516835364206, + 0.8148852260164399, + 0.539697325625833, + 0.7208003266951211, + 0.6957382988022693, + 0.6760268715903911, + 0.770968954302715, + 0.8136419762907898, + 0.749733843556382, + 0.3512096813257207, + 0.743860605273495, + 0.6191363070521949, + 0.7747304079486544, + 0.6888566087982958, + 0.8388523255304589, + 0.6349228720508096, + 0.4275169409785636, + 0.7197971859006665, + 0.7143542493568855, + 0.7148394232219234, + 0.7080417898947311, + 0.6942176296818858, + 0.5041671245071692, + 0.6472382879500037, + 0.7401097925711068, + 0.7056978202993585, + 0.7739361240395455, + 0.7175885637420667, + 0.6234933951747376, + 0.7752330355717335, + 0.6766826203410907, + 0.7216538454275832, + 0.45734274385122736, + 0.6878065341049117, + 0.6954344101051586, + 0.6880432223047229, + 0.7189283127440717, + 0.6638443280515262, + 0.5784968498179983, + 0.4900696715872921, + 0.6262870129063665, + 0.7969116549533385, + 0.7723719091374621, + 0.5380239573549098, + 0.7117435532486841, + 0.655022855707431, + 0.7023752903824174, + 0.5861671258955278, + 0.6685103563703385, + 0.7679197292085138, + 0.7465371123049682, + 0.7274759471587076, + 0.8213056788890312, + 0.5607898130897957, + 0.7139009690793187, + 0.7686381233491479, + 0.7295319998438091, + 0.6016855355796125, + 0.8161799741596806, + 0.5922558461283781, + 0.7349917641016028, + 0.7484390497072463, + 0.6573715095267334, + 0.7313492678700158, + 0.7616185923111743, + 0.7200708989639679, + 0.6923866067651417, + 0.7679320546790069, + 0.7694011695360529, + 0.5044197183721643, + 0.760923826730069, + 0.6951459657319038, + 0.6915142740628548, + 0.7358504953987958, + 0.6904478098632318, + 0.6165302610300865, + 0.5909158763421721, + 0.36909789160785916, + 0.7714382269473159, + 0.3832505064137485, + 0.715200238607885, + 0.6448614581074147, + 0.6539764028943342, + 0.5467397072220479, + 0.5826779251504141, + 0.7094292958182878, + 0.7976731437430484, + 0.7837456075116088, + 0.6678511349534877, + 0.6180688206195863, + 0.7547989411894014, + 0.8147247500299649, + 0.6854905062972623, + 0.744877505709223, + 0.6988518230712107, + 0.45464844523648146, + 0.7253104074964184, + 0.5784136041406839, + 0.6438745320728257, + 0.5246757636578564, + 0.6884694219648537, + 0.8353628293324558, + 0.8406387670096247, + 0.8426777026232253, + 0.618179887868041, + 0.6879456194333355, + 0.7335671826765137, + 0.6025318968856441, + 0.7588961318279673, + 0.7627811698305486, + 0.7520019645328806, + 0.7152856439817233, + 0.7771455599072775, + 0.7230195145781992, + 0.6767384503093624, + 0.7509481675805191, + 0.6665555513481456, + 0.718794582464721, + 0.745341480881722, + 0.7623748858291158, + 0.6726384035721822, + 0.7296713502535079, + 0.775343916734011, + 0.5361510990799353, + 0.5987774333002461, + 0.7494395337331647, + 0.6166014455353197, + 0.7200496948626762, + 0.6348214998384066, + 0.7444680312992575, + 0.7541057784074043, + 0.5803998167850176, + 0.7226055290320929, + 0.7444353547879397, + 0.7354469872614743, + 0.6806743325835811, + 0.7976918535042467, + 0.7941150226729145, + 0.6801163002272615, + 0.609726367151644, + 0.7094306631577634, + 0.6597954324778835, + 0.6621795483970274, + 0.7233208004028222, + 0.6826351535309424, + 0.5824565612712495, + 0.6323646201399884, + 0.7627594103844272, + 0.6946423006495427, + 0.5898347343254696, + 0.7490149438046374, + 0.7739765453526195, + 0.4307721840447276, + 0.7553580834184002, + 0.6040898070914692, + 0.730825117268131, + 0.7659095197060526, + 0.6590811419540263, + 0.5806889708271868, + 0.5335317946381907, + 0.6772196034790721, + 0.7468607713522069, + 0.7736567019126454, + 0.7094006271948506, + 0.750839419654999, + 0.5768061893047279, + 0.4097354510651475, + 0.4703602006042534, + 0.7088816601584328, + 0.7130850106706541, + 0.695150384961976, + 0.5731938419286784, + 0.600701884109506, + 0.6528799208323237, + 0.835104622336175, + 0.5389699034587275, + 0.6103729194470677, + 0.5550732757683831, + 0.7216781760724451, + 0.6521908900615597, + 0.7057923058907277, + 0.7218559443621619, + 0.6663187028966844, + 0.7163839042703452, + 0.5692320540192353, + 0.6978657622216242, + 0.5721966714394402, + 0.46645016032885156, + 0.6297148763121985, + 0.7909376253804788, + 0.7908324154214559, + 0.7898792817312635, + 0.6036768763801876, + 0.6078994707962835, + 0.3931264164830892, + 0.7289215388895911, + 0.6700024341228787, + 0.7349701862222981, + 0.515960328233709, + 0.6760251316008882, + 0.6873586578063989, + 0.5126893559811169, + 0.4116809941111991, + 0.5650066378287154, + 0.6289189385749356, + 0.6738056318714484, + 0.7418216491446107, + 0.6877708865821973, + 0.7295691427887558, + 0.7545099503482579, + 0.763494063150718, + 0.7451864111061943, + 0.5407433435380093 + ], + [ + 0.7169440477276298, + 0.7086285149916629, + 0.8634599804575683, + 0.8569067997830574, + 0.8077534623866675, + 0.8597782531915283, + 0.7991237824207473, + 0.7567998473790211, + 0.6341816149363921, + 0.8515996645555004, + 0.7097292571727057, + 0.670225032226271, + 0.8360226969485105, + 0.6038691388388496, + 0.8801889888747468, + 0.6436709743482829, + 0.5684528412763149, + 0.8782275224124607, + 0.7784102479200191, + 0.8928047836084043, + 0.877935582253336, + 0.7113246068318902, + 0.9044279582152005, + 0.8714768337813938, + 0.5122448618190505, + 0.7569866203066344, + 0.8248687439289955, + 0.8414718226877601, + 0.7638343076646711, + 0.5349529956059994, + 0.7071675611421078, + 0.6994413863112641, + 0.8055591546785401, + 0.7232991367147135, + 1.0, + 0.7200899345334241, + 0.8164747306357718, + 0.3807204922697956, + 0.5715582905189621, + 0.7145575114060341, + 0.7914287317095763, + 0.7227358833877818, + 0.36278439844936206, + 0.9009167414094187, + 0.9371729436119394, + 0.8423546681728933, + 0.7944322738793477, + 0.8703145500730278, + 0.963083664567252, + 0.6840957906119757, + 0.840638453835149, + 0.7574120736275455, + 0.6306547076066605, + 0.6312249937429881, + 0.40035319511111533, + 0.5450316953524992, + 0.6948727295373088, + 0.7563406498010218, + 0.6615922432194676, + 0.7498260411331874, + 0.5645614068773404, + 0.8792446186103673, + 0.6410582799726992, + 0.6885544327537364, + 0.9060131740692735, + 0.7933021636085056, + 0.8917661500249334, + 0.925088305252454, + 0.7408140364637181, + 0.6652133047579412, + 0.8051477993517266, + 0.7819945172706513, + 0.8243874816791539, + 0.7158960518771772, + 0.8941122423736025, + 0.881067366438337, + 0.8752839086353327, + 0.7345914174998069, + 0.7181542944103629, + 0.7535556010848656, + 0.7655950459976872, + 0.6360626339538408, + 0.6746696218082426, + 0.7874041343045339, + 0.729004333145149, + 0.7551943636806716, + 0.8364146967391396, + 0.8078171311569508, + 0.668969830435648, + 0.7296026445082461, + 0.9305963114066044, + 0.9233950044148242, + 0.8712654768023044, + 0.8668707383540842, + 0.8848740851580355, + 0.6942738718117641, + 0.6724671882397145, + 0.7302465982712548, + 0.9119056242254241, + 0.7947382227407416, + 0.8827230172962376, + 0.7447149896198321, + 0.7129439825697929, + 0.7686377366241364, + 0.8804332959124141, + 0.8527397195842047, + 0.8002962296075967, + 0.8801954670198492, + 0.7634595895176381, + 0.8875544265601737, + 0.7482618343884588, + 0.8505402061528455, + 0.7889713347292899, + 0.8216547209775712, + 0.767793311916426, + 0.8846336566579788, + 0.7199035122664647, + 0.8968194352634962, + 0.8119341486318777, + 0.8753338391412788, + 0.798178824575616, + 0.8036962733196493, + 0.7878242537129213, + 0.6493490740921901, + 0.7438596545244491, + 0.7529608968534723, + 0.600480324981741, + 0.9036577870039519, + 0.7865621150582099, + 0.787867934285321, + 0.8196256286567293, + 0.7846520106891335, + 0.667751580369629, + 0.7480683645853685, + 0.8067176675234683, + 0.7576093551544891, + 0.806490912623918, + 0.9535582895586531, + 0.5803119053165542, + 0.8633698879310375, + 0.804196159631067, + 0.8965408494467291, + 0.8082917307979518, + 0.8250304184711356, + 0.6840376695807087, + 0.954824420341339, + 0.8166845352736104, + 0.7291654823095269, + 0.591089446581591, + 0.7009941553558255, + 0.7625051204461988, + 0.7275458284380383, + 0.7597628976103795, + 0.7697495192051875, + 0.9268096760534659, + 0.8201618782147831, + 0.6056282167593217, + 0.8539447003235464, + 0.7605431736877492, + 0.7663637825659814, + 0.8530442451351872, + 0.7926925613534896, + 0.9158143043606951, + 0.8083209054234602, + 0.8597200415533223, + 0.8692762493102923, + 0.7857781153079678, + 0.8538210110279525, + 0.8606850688209188, + 0.8887419646480808, + 0.8952517694251677, + 0.8617681032668797, + 0.7520236637620505, + 0.672991837908266, + 0.8512572190610246, + 0.39146818275286166, + 0.7161793009742615, + 0.8060235764497572, + 0.7308377734586242, + 0.7787308335159957, + 0.6436006894720873, + 0.827643334640894, + 0.7709137119870978, + 0.8915328283985894, + 0.8761050726654505, + 0.9354689336854276, + 0.9192094785401131, + 0.827599708053541, + 0.8298810464908213, + 0.7684968658080122, + 0.7998217554113759, + 0.8596872957986134, + 0.8583991870411173, + 0.789057928267355, + 0.7116452382534154, + 0.7887873903365129, + 0.888851725557121, + 0.8261880087515773, + 0.7812636221698812, + 0.6290496725743964, + 0.8385139447165204, + 0.605758353291551, + 0.6633256614512191, + 0.7206017120249748, + 0.861029250174306, + 0.8713014043488244, + 0.8041369025359976, + 0.8458054936547811, + 0.7249817514365552, + 0.8015543966360049, + 0.8620008316566411, + 0.7103643691961858, + 0.739357689108023, + 0.8553392657264979, + 0.9048947617831847, + 0.6505215196111616, + 0.7963156340393748, + 0.8277959530890534, + 0.7429775304324385, + 0.8395267808594815, + 0.7940012479465254, + 0.4871605705444849, + 0.8204157564655866, + 0.801988370065441, + 0.6869120401792738, + 0.7836443404268107, + 0.7749286241290033, + 0.7708912332060389, + 0.6910358465921045, + 0.8511954998615453, + 0.8019088049338396, + 0.9079211527619281, + 0.876966374317346, + 0.8837545066158342, + 0.9218568940976211, + 0.4273608386365812, + 0.5021636440797221, + 0.6159549148906109, + 0.752123723431307, + 0.7891753762794684, + 0.6594998666040447, + 0.7111587172008728, + 0.765090735655079, + 0.6796997966499129, + 0.8581045363983334, + 0.4870073069107142, + 0.6423039407582802, + 0.46056933382596243, + 0.5284063865881148, + 0.7672958709456882, + 0.5687578817628268, + 0.6896023690316605, + 0.7918703756504859, + 0.7763822688161818, + 0.6750952688080061, + 0.7619184319391561, + 0.8423902487321595, + 0.5209801573831213, + 0.6791206135455982, + 0.8213061980725875, + 0.9440745761701869, + 0.6812176537981582 + ], + [ + 0.9105191194620055, + 0.6696121487707483, + 0.6466761611961627, + 0.6876829260890973, + 0.9093820666392137, + 0.7997964987622673, + 0.6805356437019512, + 0.8827734355586889, + 0.8271420280793198, + 0.7332036241494656, + 0.7087095008024513, + 0.8347242349203636, + 0.7622892911112779, + 0.87821382098527, + 0.8482310555726399, + 0.9214288957764893, + 0.8704533466859435, + 0.8473013772767045, + 0.9383671177837446, + 0.7216988937624322, + 0.8935485390188143, + 0.8843489026872045, + 0.7713010932601576, + 0.8131711102657353, + 0.8287082049335346, + 0.9380741333519853, + 0.6935536715846972, + 0.820083775312704, + 0.8878131902665336, + 0.8429397847388979, + 0.9296052097837098, + 0.7799765560970343, + 0.8585790119606721, + 0.7947074841523328, + 0.7200899345334241, + 1.0, + 0.883913778802925, + 0.48200937520235326, + 0.8707864762621863, + 0.8918740367259176, + 0.8275082986150881, + 0.7150705824260879, + 0.50370972698051, + 0.6540409074448269, + 0.6896545782854985, + 0.7344294447811095, + 0.8841171056853294, + 0.815085028407417, + 0.704139868460926, + 0.7948811277290962, + 0.8334868689491116, + 0.8025254702243064, + 0.8769711405619791, + 0.9483088164836108, + 0.9044947924450949, + 0.9545537816694956, + 0.975539430572507, + 0.8978880262695255, + 0.5711044264627413, + 0.8240652666684922, + 0.8756755067033118, + 0.8963987836620925, + 0.9018235009431109, + 0.935200409959679, + 0.6792689089561483, + 0.6489651345223166, + 0.8667080891273861, + 0.7855019757629169, + 0.7676328583930417, + 0.8661403093834495, + 0.8545086186074403, + 0.7817793409337064, + 0.8162781314131973, + 0.924684689841351, + 0.8260906590170854, + 0.7618861680785418, + 0.7453136596290351, + 0.7826324784356183, + 0.881837917802526, + 0.8460391363725325, + 0.8553404880210203, + 0.6067322391843787, + 0.7734824759279761, + 0.8101856522962421, + 0.9253576756724301, + 0.8785089629667215, + 0.9030314761983874, + 0.7848847105965351, + 0.6928275430162041, + 0.8492631415952847, + 0.831937900452552, + 0.7841528155834037, + 0.6429995254717701, + 0.8363498786703033, + 0.7809406656376404, + 0.942870046412003, + 0.8039840750490939, + 0.8964794778182011, + 0.744121823104779, + 0.7699005120124798, + 0.8417940654776347, + 0.9562835467911475, + 0.846035086938754, + 0.9109019315747366, + 0.8643923033870123, + 0.692559678864165, + 0.8602331471205822, + 0.8790307217017237, + 0.8043219302292681, + 0.7880485108784883, + 0.8715118064599336, + 0.7425393096331336, + 0.8437784920764881, + 0.900310551731379, + 0.9244204649249661, + 0.8753902228642696, + 0.932958536986068, + 0.8906026355595577, + 0.6489188804807415, + 0.7816914196346484, + 0.8458967279649262, + 0.8239180857756566, + 0.9100791717176474, + 0.8756353311630728, + 0.8109443381362789, + 0.7850456372891781, + 0.5786193560028158, + 0.7964275443525062, + 0.6377676638071542, + 0.7100373679055036, + 0.7972658749342336, + 0.8061656686808558, + 0.7150866614962054, + 0.7540739092416321, + 0.6548890291381919, + 0.9303525537069457, + 0.9277545627098132, + 0.6456731606039701, + 0.6788416067140214, + 0.8632448112874087, + 0.9564697018287104, + 0.8159876804744955, + 0.8656073067352565, + 0.9024635814359342, + 0.6260462458866145, + 0.8032191861785033, + 0.7468567508641293, + 0.6476445706291761, + 0.637579275131391, + 0.8025933124417132, + 0.9429487341364647, + 0.940409652039285, + 0.9311919014096306, + 0.7790774069359276, + 0.7560213535211044, + 0.8193795473489404, + 0.711201805262264, + 0.9174998351707017, + 0.9037568211508791, + 0.9585064100589181, + 0.8867209655278696, + 0.8707823266048292, + 0.8434465655715362, + 0.7218095306826721, + 0.8196888756746796, + 0.7943882041163962, + 0.7956802866464425, + 0.9265543305921968, + 0.9083530487663932, + 0.8694198246970326, + 0.7988451336871473, + 0.8569956970574891, + 0.7417517681731703, + 0.7095245335363274, + 0.8546086651199254, + 0.6900890619994416, + 0.8724753861056713, + 0.6637390991736982, + 0.8625824799261368, + 0.8839827551138144, + 0.8968703883183881, + 0.8755377550232325, + 0.8911581305224349, + 0.8334589506270033, + 0.7835915112407641, + 0.8191482405032808, + 0.8489396231994409, + 0.8524031914546297, + 0.6908374313349125, + 0.8284691384653803, + 0.838870380255979, + 0.7102482909011443, + 0.7975032339332363, + 0.8565681684693439, + 0.7436346007265489, + 0.6022572886346228, + 0.8855060010713598, + 0.8345547400845613, + 0.6913545848567482, + 0.7911633643589548, + 0.8849935102209249, + 0.7895593398011812, + 0.8831981804126908, + 0.685202015178902, + 0.77763342277619, + 0.8368017174048022, + 0.8475501170112686, + 0.7885518312445272, + 0.6580415838576529, + 0.7574540251619398, + 0.7079043035463858, + 0.8036057468582617, + 0.819117560890666, + 0.8816748103164261, + 0.7181925946631854, + 0.572137327682718, + 0.6772789041320074, + 0.8206546119073235, + 0.8115136940116067, + 0.809187513692655, + 0.6021957468690537, + 0.608980288550712, + 0.7541941010299555, + 0.8728761073230712, + 0.8111760039056255, + 0.7271027282743329, + 0.732091777975814, + 0.7766309521632421, + 0.7360947641629034, + 0.8493641007218529, + 0.8954160949523625, + 0.7483850673719524, + 0.8859040486593243, + 0.7635723519596586, + 0.8322387080190647, + 0.5972644738359295, + 0.5742779281311695, + 0.7858591458536967, + 0.9233724977064056, + 0.8524888760494671, + 0.8302972039542355, + 0.7612607447774836, + 0.6607316714164159, + 0.6673806534481784, + 0.642195477333296, + 0.8811252002433169, + 0.7448686829073058, + 0.6792602942768597, + 0.7107582876677214, + 0.7544595413917679, + 0.6582144510881751, + 0.5641811456724835, + 0.7934262269996816, + 0.7648074190314192, + 0.8306498116090699, + 0.8475773632117145, + 0.7490212103830503, + 0.8063722133997895, + 0.7002336357143181, + 0.9338350235582856, + 0.7130193431387696, + 0.639583128439338 + ], + [ + 0.8858111090785722, + 0.7818992233141338, + 0.7827156942905765, + 0.6404277493691648, + 0.8475855121786561, + 0.7833909209477168, + 0.7431598877700847, + 0.8885042179734507, + 0.7310791126497628, + 0.8481165983069732, + 0.8097098604776545, + 0.8167001239864665, + 0.7983607937490654, + 0.7487104157362573, + 0.8296216138270306, + 0.7163042607664322, + 0.7388105561488011, + 0.9075917581479451, + 0.8342836909819669, + 0.8336627735972388, + 0.9434233980745923, + 0.7619427422530108, + 0.876345723562193, + 0.8742397978490536, + 0.675294387999584, + 0.8171206966845923, + 0.804837453438653, + 0.8748116712383573, + 0.7932937304607507, + 0.7060940230651942, + 0.8084086397409295, + 0.7931831883607517, + 0.8861506070592687, + 0.8054778608173171, + 0.8164747306357718, + 0.883913778802925, + 1.0, + 0.3571527907721923, + 0.751159796521389, + 0.8321477038222856, + 0.8355112816732144, + 0.6283243838664075, + 0.36734889771374435, + 0.7227038554517767, + 0.7232739940393205, + 0.8705746154813677, + 0.8938398269907122, + 0.8724741939339156, + 0.8139899765040628, + 0.8216839329645154, + 0.9063979974795666, + 0.6819383197814012, + 0.6784456026952236, + 0.8505441757278966, + 0.7234576781798733, + 0.8003722877253557, + 0.8677567577486104, + 0.8404163021094578, + 0.44439044054303484, + 0.9298934969649642, + 0.6920894781209436, + 0.8926708090577137, + 0.7301569174794968, + 0.7967786216661971, + 0.7986511627286086, + 0.629537685035328, + 0.8244995943965121, + 0.8334607325636171, + 0.9126530797610131, + 0.9244439845336392, + 0.9076944149484458, + 0.7466880615999909, + 0.8432911790616959, + 0.8591378563267489, + 0.9098000784648371, + 0.8010406679489548, + 0.7707687430935685, + 0.7002080101495345, + 0.8530317339675527, + 0.814027790951282, + 0.9096833954907505, + 0.4642670976544964, + 0.8574528575248217, + 0.7467200917125295, + 0.8987744239074342, + 0.9139573239773151, + 0.880214250791281, + 0.6891368056080067, + 0.5358509686039037, + 0.7126751820888383, + 0.8772323108119057, + 0.8801883742405991, + 0.7665858779706619, + 0.8853949631578312, + 0.8517977057302429, + 0.7701837556232711, + 0.8265504308892284, + 0.7835147665373284, + 0.8897791011661718, + 0.9377378664161844, + 0.9367794137281064, + 0.83829917456081, + 0.701487499485391, + 0.8003181122112222, + 0.9201694280399907, + 0.7975071312018233, + 0.7774602494595567, + 0.923568367912414, + 0.7469131218239516, + 0.8506077040651604, + 0.89939638137138, + 0.6934689118520311, + 0.8572550430345961, + 0.8712739290913409, + 0.8360523779007969, + 0.8449161751941578, + 0.9103407719980549, + 0.9291883853895208, + 0.6733908379443655, + 0.8068924366605066, + 0.8724613946510323, + 0.8271691592108577, + 0.9247740329280185, + 0.8042339669870124, + 0.7073883728937995, + 0.7589210922734315, + 0.46136020080179707, + 0.8835886407371105, + 0.6307380334879311, + 0.7310278916707116, + 0.7115389305129239, + 0.7556873725343933, + 0.6036200876515307, + 0.6307082263894728, + 0.7373646148016231, + 0.8965547751909969, + 0.9250294126276267, + 0.7605783277264335, + 0.742589734718881, + 0.8534287358060146, + 0.8552068238570486, + 0.8670449300477927, + 0.8484373522623098, + 0.9345000648411106, + 0.5374393783503844, + 0.8501923563073429, + 0.7600381578694789, + 0.7343638185220455, + 0.6511967808915197, + 0.907075547899922, + 0.912885739470261, + 0.9288950933992729, + 0.9106525512155764, + 0.7966972824245829, + 0.7823716467963694, + 0.8085305804776415, + 0.7447665431277966, + 0.9035308951161117, + 0.8887063237606807, + 0.8985662756405488, + 0.931282709350149, + 0.9069254962818631, + 0.8852379381327551, + 0.8522652330344201, + 0.8972580834521736, + 0.8500757844403887, + 0.8905881728139398, + 0.8503852562689006, + 0.8732691208282863, + 0.8453291264560396, + 0.8313112183403086, + 0.8709724510575649, + 0.649611586783888, + 0.6380253231525699, + 0.8369326618064394, + 0.5897850995651335, + 0.8517585372906076, + 0.7513038454808948, + 0.9541943364680165, + 0.8159029273536492, + 0.7433347216277274, + 0.865824698941042, + 0.9034718115704838, + 0.8798133117815956, + 0.8891225791423832, + 0.8507176668756968, + 0.8669510918259992, + 0.8820708598968399, + 0.6613694936522532, + 0.8586476046334638, + 0.8520810668906167, + 0.8170953233220745, + 0.8157075622277645, + 0.8618433216089298, + 0.7513741906784408, + 0.705298507676935, + 0.8850223857959986, + 0.840141869155746, + 0.747525747904852, + 0.629128072413349, + 0.9295378201079494, + 0.7061467030884058, + 0.7916820173224719, + 0.730129078483938, + 0.84609056888518, + 0.8451841253665839, + 0.7680532071782237, + 0.7521607647289175, + 0.5761307005450504, + 0.7406127171732358, + 0.8240438020626302, + 0.8302833951349748, + 0.8784042698406886, + 0.8535558319693737, + 0.7846928635946653, + 0.3977822115211965, + 0.6985158824578531, + 0.8535926312743117, + 0.8508555050560442, + 0.8046078650504889, + 0.7516817294497774, + 0.6443197954144912, + 0.7886554296020338, + 0.8691674526835999, + 0.7637291809024132, + 0.5973333117070107, + 0.7891669746533806, + 0.8230350152994292, + 0.8021666103956412, + 0.9154964583389719, + 0.8535333374125379, + 0.8491563006565267, + 0.8920056301844482, + 0.8021372026712007, + 0.8836654828664338, + 0.5502172002743791, + 0.4168266657284995, + 0.7768218443537555, + 0.8782528085898339, + 0.886316295261406, + 0.8726926394049651, + 0.7526928463639471, + 0.7423567930786721, + 0.5984086623811938, + 0.7777326905703507, + 0.6966574628141202, + 0.7856069593708215, + 0.5836878529064501, + 0.686750655168587, + 0.826956401019244, + 0.7497375226858106, + 0.49292819887168554, + 0.6800101554085182, + 0.6871822356318272, + 0.6522598648183767, + 0.7835336074819126, + 0.7361504678911349, + 0.6631638610547803, + 0.7753154131343198, + 0.9008846903755819, + 0.8320698659797136, + 0.6471403287668769 + ], + [ + 0.3211095205195129, + 0.20586770682325076, + 0.15021477328637958, + 0.6137854901638613, + 0.5583105656351257, + 0.32292980961470363, + 0.0930804534050157, + 0.29593795500392595, + 0.3820782767210001, + 0.23566028549005016, + 0.09468573444484606, + 0.4307105116756398, + 0.4650175588910347, + 0.37317608256518864, + 0.3322512286705062, + 0.5265247233802294, + 0.18592134575683852, + 0.3475071860037787, + 0.5972153048060737, + 0.30302134434800615, + 0.30504570214652965, + 0.5123359033552433, + 0.30150790469012134, + 0.3187500522603908, + 0.40846022405855303, + 0.5185305167002461, + 0.29282272697998646, + 0.2859631776231746, + 0.3552638464895031, + 0.47016919538931357, + 0.3953400448070284, + 0.26271103749047775, + 0.34679502444774507, + 0.24480498416115895, + 0.3807204922697956, + 0.48200937520235326, + 0.3571527907721923, + 1.0, + 0.48956251779200755, + 0.5180033011329173, + 0.3983890103705806, + 0.5507062392868134, + 0.7239039405919825, + 0.368966582364346, + 0.32861217847432245, + 0.30676852156248097, + 0.3598119363548038, + 0.35314130782067993, + 0.5229061630072126, + 0.5151544272959796, + 0.3025340568468474, + 0.5881700349205619, + 0.543912589851534, + 0.39554470525751145, + 0.42414545363536565, + 0.4195731988311216, + 0.45457388593725734, + 0.6370378753677273, + 0.5606740490099811, + 0.30583057813913433, + 0.4272806807542655, + 0.5229218123183519, + 0.38706314513598894, + 0.37629102013979615, + 0.3659135758246861, + 0.5782358547315497, + 0.4404366315002383, + 0.4738439438336525, + 0.28555198570026147, + 0.33468403350548603, + 0.49239469732551105, + 0.3915394968301635, + 0.2688965106237846, + 0.46152902560599757, + 0.40613420907748327, + 0.4069949950094444, + 0.38889122193904624, + 0.7586771427866366, + 0.3205298074779252, + 0.6052043031789277, + 0.4003425108962419, + 0.6042819305304571, + 0.41875768195410074, + 0.5580590014145761, + 0.3624833706530842, + 0.3711137152762034, + 0.4590095934714678, + 0.5510379305781733, + 0.6484907133649449, + 0.6029733014404822, + 0.378171502620322, + 0.38291900436268983, + 0.5208235465247244, + 0.4791490111178561, + 0.39985961284441657, + 0.5858381637640347, + 0.35065059771666524, + 0.6673031909664281, + 0.2502667922597404, + 0.2330702604727996, + 0.4682156211805044, + 0.5283598792462123, + 0.6148240700385225, + 0.5716475595400159, + 0.31579030636760486, + 0.10884034686221851, + 0.528157775403294, + 0.4786109892138142, + 0.5598689140639891, + 0.38785948615276056, + 0.4650564854185747, + 0.3604170029869205, + 0.29677939798186764, + 0.44132059966938203, + 0.5665164287833254, + 0.5671585627682324, + 0.4790282306143396, + 0.38277152185943075, + 0.23534234125363554, + 0.4118424113065117, + 0.45618807742241957, + 0.5483637248646814, + 0.4683532050241191, + 0.36701468833088946, + 0.6406818875777537, + 0.5434996380565037, + 0.6771107264818385, + 0.4256641597135647, + 0.6494308749482263, + 0.517289895560874, + 0.45262005298716396, + 0.48813222780547944, + 0.4193234281455396, + 0.5491696931781903, + 0.1691799778216278, + 0.4021992084567322, + 0.4108550237838443, + 0.377520643400176, + 0.3476955809345946, + 0.39954874298024684, + 0.4988242948212809, + 0.4129083478946053, + 0.43170393271107094, + 0.3832665533146924, + 0.7567624945171487, + 0.3428402889067147, + 0.4703676790946215, + 0.4911768540038349, + 0.5003602998616609, + 0.3379240272196133, + 0.422183022677144, + 0.4234840384516464, + 0.4123758730907846, + 0.5324478779044175, + 0.45077040555019426, + 0.48609712406025335, + 0.4070786939742159, + 0.4762407622482586, + 0.34251795792644024, + 0.42905723422422676, + 0.4574763049283738, + 0.45536555707515397, + 0.3772809261674753, + 0.3082001632180361, + 0.28662772250573454, + 0.4690661490126972, + 0.4082387608221776, + 0.5178533821180665, + 0.5361402973492851, + 0.4972708201437444, + 0.43244126943024713, + 0.48679216601573483, + 0.3871886699708251, + 0.5805253388611431, + 0.505140341110995, + 0.5691211906918638, + 0.4530392876191262, + 0.4690076061200568, + 0.2212365283195546, + 0.40986370533607325, + 0.4841128340613944, + 0.46750820867710197, + 0.49950369119031746, + 0.41301066462798297, + 0.5189173385280859, + 0.3125547391582246, + 0.42113978756576326, + 0.3389533785805541, + 0.4224078867503858, + 0.2836706694696828, + 0.4152819263929559, + 0.35995149336854815, + 0.505825896785431, + 0.42505841933487226, + 0.5577192016149916, + 0.18850928678750237, + 0.46609934691113336, + 0.4367504119722361, + 0.4998910984346949, + 0.5684457182934705, + 0.43656665704044245, + 0.4397810565368069, + 0.43587036685133485, + 0.515985691702075, + 0.34906605237277927, + 0.4934435425867551, + 0.5649977739166228, + 0.5851134882382953, + 0.5808441342564697, + 0.5267260282316019, + 0.29178434945119797, + 0.3451207421997139, + 0.4134736022342934, + 0.4680815673558375, + 0.46081683827285097, + 0.5765568708648849, + 0.6374954904873514, + 0.37122573873535974, + 0.3278890914733187, + 0.5446358320221998, + 0.3896997206010861, + 0.4244903215241273, + 0.5894927386828436, + 0.4769242079172492, + 0.5513894356377724, + 0.492538728711518, + 0.5166089991798715, + 0.4682268566664136, + 0.10876882926642874, + 0.30620068133168604, + 0.4739066050720094, + 0.3834591082592347, + 0.4972810162970255, + 0.5801790995719402, + 0.48264589277681796, + 0.7604936872923221, + 0.5459670899149953, + 0.5865191600972908, + 0.5820895181266085, + 0.4874035117279976, + 0.3466334281822108, + 0.6617163012992822, + 0.34009646567834856, + 0.6552098555197077, + 0.2935881766134217, + 0.5398902824903954, + 0.06314330390219165, + 0.5753449017071983, + 0.4055836438105266, + 0.39735645501316663, + 0.55057893571484, + 0.5384939108020598, + 0.5749399163422889, + 0.5330849544429392, + 0.4946018614881171, + 0.38720509373161494, + 0.4380847102629972, + 0.4879804626158508, + 0.08048951326826155, + 0.5105732946060219, + 0.3408548910124161, + 0.28562433704805745 + ], + [ + 0.8504456497427838, + 0.7029848182182508, + 0.6371432343721034, + 0.5536794731529381, + 0.6983211654387974, + 0.6192133306545838, + 0.5672178039405412, + 0.8006969249682809, + 0.8468878025624452, + 0.5506238663866221, + 0.5549378567168943, + 0.8382764299867304, + 0.8063968374054138, + 0.7207018149112369, + 0.7678755701543675, + 0.833388926427714, + 0.8257963980599624, + 0.7828238367434824, + 0.800991839674783, + 0.5810547310465863, + 0.8074128941122896, + 0.7068818809521518, + 0.6103324890133619, + 0.6796263934987181, + 0.9331362462566339, + 0.8518045822206499, + 0.5660945802719993, + 0.7304608381974308, + 0.7093280459646285, + 0.8969307479270119, + 0.9010592154360888, + 0.7379490760722374, + 0.7361916223016082, + 0.6417899638131848, + 0.5715582905189621, + 0.8707864762621863, + 0.751159796521389, + 0.48956251779200755, + 1.0, + 0.8229168309178267, + 0.7995185652911558, + 0.7938588888805976, + 0.5023531082853057, + 0.4665044370759689, + 0.5747583187998111, + 0.5245784845096295, + 0.6989840932328537, + 0.66779164909335, + 0.5846723159227462, + 0.651217333632088, + 0.748912174752087, + 0.7486895511257454, + 0.7196503370280476, + 0.8569020215506968, + 0.8735584706891456, + 0.8795879048183933, + 0.8723513109728257, + 0.877495092808874, + 0.43510153511851424, + 0.7015177889276613, + 0.8640999521025049, + 0.7731385905799463, + 0.9129512486511601, + 0.8379357102704907, + 0.5703472406353082, + 0.547762943490325, + 0.7427190138730149, + 0.5940086107884401, + 0.6369613265392622, + 0.7725062591168453, + 0.6542717412535644, + 0.6741970358517794, + 0.777076367943116, + 0.905144130637278, + 0.7353702877040034, + 0.6660716005268739, + 0.632340120620419, + 0.734236633956496, + 0.8564348303947026, + 0.8581688344832542, + 0.743356317772972, + 0.416075070108667, + 0.7262969944091654, + 0.7084785195144326, + 0.8778884551746023, + 0.8745799464384351, + 0.8538949168521937, + 0.6154773699327817, + 0.4488390495633298, + 0.7394203972103267, + 0.7731694302594533, + 0.577908907850546, + 0.47213977285990205, + 0.7297123848609091, + 0.6175151389542832, + 0.92440533594178, + 0.8637724484778105, + 0.7087648547012491, + 0.5414228570484306, + 0.6742774915158871, + 0.7195006215964707, + 0.8813368090459877, + 0.8445227203426154, + 0.6880686250789978, + 0.734056673632457, + 0.553037868155782, + 0.6545124949716432, + 0.7254805058105049, + 0.6260212111513332, + 0.6341205789785928, + 0.6694711727562788, + 0.5969617726045087, + 0.8531224264134654, + 0.8928396670582972, + 0.8448272547010873, + 0.7674179008767619, + 0.7763851140518832, + 0.8073921718657051, + 0.5529647643602557, + 0.5966852069295774, + 0.715231642247784, + 0.7495293005811636, + 0.8153502304913834, + 0.8707873050044438, + 0.8148217470056893, + 0.7181286091222691, + 0.35361515408788324, + 0.6690769145640276, + 0.5882286770741051, + 0.6530942060127062, + 0.706914898703058, + 0.6873365913168774, + 0.6652641628598782, + 0.6155422593622037, + 0.5854709112825094, + 0.8315934100942091, + 0.7481226468633679, + 0.5255589124477489, + 0.4933878458808281, + 0.6991398471478926, + 0.8105964972184481, + 0.683037088234809, + 0.7568699546242755, + 0.7293866529908017, + 0.5186050460771945, + 0.6295795656380981, + 0.5379553356763669, + 0.3636001684006561, + 0.3977434572862735, + 0.6412375815657434, + 0.7911095176421236, + 0.7523376663218857, + 0.8020645752576062, + 0.7796651344419734, + 0.5468255274952679, + 0.6343660164992042, + 0.4969763345211259, + 0.7171282977379112, + 0.757138241706888, + 0.8709299826360094, + 0.7147679791517982, + 0.6291593432658044, + 0.6773280914501666, + 0.5325377614435558, + 0.7066293185826624, + 0.6933789714888973, + 0.6216468603288648, + 0.7477057525887055, + 0.7221542508432981, + 0.7271393825187343, + 0.5796938445724983, + 0.6181061044265275, + 0.7281387863234041, + 0.760535507938967, + 0.7426802800280219, + 0.4751855144897058, + 0.6859221852393893, + 0.42706767023760156, + 0.790266596425848, + 0.7092976920179194, + 0.8844174735259538, + 0.7276016074398028, + 0.6751586826059321, + 0.7006009597119398, + 0.6678782093168943, + 0.7153312098234129, + 0.7233928403037546, + 0.8305430681377545, + 0.6223287752948279, + 0.8265823424453509, + 0.7717311078508655, + 0.6572656715611033, + 0.7358587265988766, + 0.7615398922566221, + 0.6288546538625412, + 0.44307967814745, + 0.7026179099794726, + 0.6691469084295002, + 0.585812080265416, + 0.7163214574235222, + 0.6557818995612494, + 0.7835598803997542, + 0.8344475771646438, + 0.5229838278675829, + 0.6064981080799137, + 0.6956535041268086, + 0.8370843022813527, + 0.7044931246654561, + 0.39955985189127663, + 0.5667594772704166, + 0.4424418796858867, + 0.6019981873327754, + 0.649029814604716, + 0.723977881092751, + 0.5491339702148433, + 0.6121130277637357, + 0.6613521375529116, + 0.6920702984676698, + 0.6590527100795011, + 0.6640965976446396, + 0.5566435901540217, + 0.3642108707062491, + 0.5973445113664363, + 0.7567022036454297, + 0.7044255538776392, + 0.7140544677910099, + 0.6131155435583043, + 0.5887885303873032, + 0.6015924153186588, + 0.7732203715410367, + 0.6875763419502178, + 0.6170597722283715, + 0.7596697322695279, + 0.6521684217097611, + 0.6640027880191894, + 0.5522106762148864, + 0.6700328485536788, + 0.6395289451191039, + 0.8093815891014229, + 0.7324094666262198, + 0.70166437922262, + 0.6133680491115099, + 0.5858647685795878, + 0.5564569253940856, + 0.4114064449940332, + 0.8911129432963215, + 0.6386347981650529, + 0.5229536196073502, + 0.4097685452748126, + 0.6447310172712378, + 0.48978084953019163, + 0.37222325808379886, + 0.7098976823430104, + 0.744927745974692, + 0.6406009461929267, + 0.8907614007270214, + 0.5794775919672798, + 0.7549237084710371, + 0.5632096580846315, + 0.743087058922623, + 0.5415781486305409, + 0.5363198125714528 + ], + [ + 0.8114823128219812, + 0.5390018342808711, + 0.6330130839217393, + 0.6844880674853895, + 0.7665072485309378, + 0.6013815228067753, + 0.5151544272889158, + 0.8519256349885095, + 0.7773329089276779, + 0.7209700317049353, + 0.6797230255297064, + 0.6789124132078738, + 0.7114711907905346, + 0.6532739929729393, + 0.8509794218615198, + 0.7725325987238462, + 0.807570624360785, + 0.7616409547734474, + 0.817099469241561, + 0.671462656268867, + 0.861712140404004, + 0.7700774620018048, + 0.7354168797014051, + 0.7036210912188233, + 0.8025043371558029, + 0.7905146700013097, + 0.7361829898407483, + 0.8169975485015, + 0.6974002210892388, + 0.6756335160237704, + 0.8617557226675068, + 0.6744273850548614, + 0.7536758279726805, + 0.7829201797730239, + 0.7145575114060341, + 0.8918740367259176, + 0.8321477038222856, + 0.5180033011329173, + 0.8229168309178267, + 1.0, + 0.7719825974331314, + 0.6857619980508423, + 0.584539368364264, + 0.682870694869846, + 0.7355640850299021, + 0.6946456101422039, + 0.8947197980236496, + 0.7666122216924746, + 0.7491081661051521, + 0.9129835545276731, + 0.8138891551318298, + 0.6721397395948934, + 0.7499547492537497, + 0.7785972131554874, + 0.7732223647317279, + 0.8045998900903838, + 0.8456763962332968, + 0.9261985481858586, + 0.5736248991367675, + 0.7720378618432309, + 0.8152587372085319, + 0.9247855874543288, + 0.8136620713075507, + 0.8728128913178717, + 0.6862457106758317, + 0.6622711919506619, + 0.7302171490541705, + 0.7669997684509577, + 0.6053199880957599, + 0.7105691839240431, + 0.7193640791970768, + 0.5814526666700369, + 0.7930802350676189, + 0.9517024895069451, + 0.7402524859025387, + 0.8572176586956685, + 0.8050922078302059, + 0.7362097172729116, + 0.8391795933548162, + 0.8852419429369641, + 0.6734998254063495, + 0.5699512890621301, + 0.7982435858324171, + 0.865055439266451, + 0.8858889338231596, + 0.842578051513135, + 0.8374416774451366, + 0.693813100702985, + 0.6233116890744688, + 0.6556159427181071, + 0.8188885219881111, + 0.7500124483934092, + 0.6176888525452872, + 0.7568631264874486, + 0.7914159497988358, + 0.8820838772918906, + 0.7725068767233121, + 0.7786644358006416, + 0.6736109767047216, + 0.6379257134343459, + 0.7972176416760143, + 0.9119758701008944, + 0.8694237757886542, + 0.7744118004132006, + 0.802804688903564, + 0.6808623079516897, + 0.7150878061430157, + 0.8855668807183599, + 0.7648924474014057, + 0.851162075358525, + 0.8569524621991744, + 0.8351745714774294, + 0.8533016677074079, + 0.8447513036968733, + 0.8920446165489223, + 0.8159877319933683, + 0.902864725079488, + 0.8321435756478252, + 0.7496568378162516, + 0.7967156237552272, + 0.8129443577513866, + 0.8328703741727042, + 0.8876850632213491, + 0.868863542992112, + 0.8872057158653958, + 0.8537828431091614, + 0.5248165546900275, + 0.7735496673984144, + 0.6726372355234087, + 0.7534767811028514, + 0.8521818400251135, + 0.8226349890682914, + 0.7474918536592534, + 0.7901295724092274, + 0.6371715534799445, + 0.9100070406190754, + 0.8623067795397378, + 0.7125327490239328, + 0.8273353163769682, + 0.8707993567697978, + 0.8932849722654366, + 0.8498615318193262, + 0.8858181539870938, + 0.8422243890697445, + 0.5645930809366773, + 0.7525580729182527, + 0.6996441037576018, + 0.6845085303409302, + 0.6337365241372963, + 0.7687947889527066, + 0.8973748287260602, + 0.8921800965176726, + 0.922629923442012, + 0.8119716356157026, + 0.7389830748514206, + 0.8815018024024875, + 0.8161480258516363, + 0.8734950858225398, + 0.8773200606666491, + 0.9269022662345714, + 0.8612366240561472, + 0.8452522199836066, + 0.8372083744104895, + 0.7408732061208946, + 0.8178125760687637, + 0.7942121797343221, + 0.8198348917623821, + 0.8843593270845737, + 0.8691339788989864, + 0.8545152686421139, + 0.8166158053876719, + 0.8317614894846587, + 0.7993963326421146, + 0.7344035246532895, + 0.8672083150274319, + 0.7486404599741942, + 0.8811964774315588, + 0.6996288788806656, + 0.7797915176052927, + 0.8748617778757646, + 0.7668179889679558, + 0.8369284608867671, + 0.8357554009898007, + 0.8527596346371615, + 0.7500439189340213, + 0.8238754416665309, + 0.8343823901086037, + 0.8758387672661238, + 0.8395464492328045, + 0.8060135193061422, + 0.8705875489813016, + 0.7757734048175756, + 0.8438345123105865, + 0.8500296956759956, + 0.8622407000560504, + 0.6530035716615931, + 0.8527237415746866, + 0.840430536892582, + 0.7593543261005328, + 0.7548314268095431, + 0.870242609802409, + 0.7921248663609279, + 0.900464534682774, + 0.8288706305920743, + 0.7994586113581074, + 0.8274625097470112, + 0.8222977185545973, + 0.8204223525755192, + 0.6398461626566668, + 0.7795200880230145, + 0.7276473001268072, + 0.8805609036412959, + 0.8517116733510043, + 0.9169049950986057, + 0.770757258987678, + 0.6016309863148016, + 0.7131317578519222, + 0.8606369443120471, + 0.8337579195829382, + 0.8112143368848748, + 0.7048308840403944, + 0.6923511196946761, + 0.80645490361489, + 0.9492798021145692, + 0.8058986105226823, + 0.8213987204863373, + 0.8083462561564936, + 0.7961221782561184, + 0.6697296213126998, + 0.8516940968700906, + 0.8636232822066453, + 0.8015353676581738, + 0.8603369322367691, + 0.790869587325586, + 0.793596873845809, + 0.6283997410356411, + 0.5978446046061832, + 0.8665421885793462, + 0.9472278565828688, + 0.843426141601178, + 0.6783601238334255, + 0.8107642428559971, + 0.7372767535193553, + 0.675279713258519, + 0.6828257753414416, + 0.851812349862565, + 0.6978411399190843, + 0.7529077234804282, + 0.7449353914183429, + 0.7978448177528127, + 0.7804498807044901, + 0.5426000158204155, + 0.6630987640531198, + 0.6980732532550247, + 0.6746129475263187, + 0.8923375599169989, + 0.8215668589469886, + 0.8002390969369542, + 0.6343755406697512, + 0.8485177615240048, + 0.7799939704478066, + 0.6085715173517076 + ], + [ + 0.7979469088803465, + 0.7536509016085334, + 0.8623681596794676, + 0.6177900958736411, + 0.7922757452208189, + 0.7789567117803106, + 0.7266029556727022, + 0.8825775410051421, + 0.6972261803694721, + 0.7166801296217878, + 0.6960074675779054, + 0.834883119917348, + 0.8545475784518152, + 0.641325144711797, + 0.8502682936484054, + 0.6844018776099449, + 0.7185650703932133, + 0.8689541532650478, + 0.7734662647209906, + 0.7866260384221125, + 0.8509101490937155, + 0.7052576007196611, + 0.9049898464368096, + 0.7933227649117585, + 0.6863766851127938, + 0.8615453631777488, + 0.8322948197878705, + 0.8898596668045179, + 0.716689210450791, + 0.7222023275359823, + 0.82834043222909, + 0.7462480918682162, + 0.8719661200799874, + 0.7579580239607095, + 0.7914287317095763, + 0.8275082986150881, + 0.8355112816732144, + 0.3983890103705806, + 0.7995185652911558, + 0.7719825974331314, + 1.0, + 0.8562715833254511, + 0.4718447447515986, + 0.6546652916286934, + 0.8110641527744276, + 0.6962311530085707, + 0.7548418979397522, + 0.8180696360331228, + 0.766567809552744, + 0.6285321477838101, + 0.7729303676121867, + 0.7013975311773235, + 0.6106600885601696, + 0.8079430457105786, + 0.6457465763660892, + 0.7427991063536263, + 0.8101964499780562, + 0.8443899277574565, + 0.5028526294107668, + 0.7335022918060353, + 0.6339530280611101, + 0.8498147603546068, + 0.7985847015412372, + 0.7444606145591526, + 0.8853067449087061, + 0.7034315953809561, + 0.7844259487938904, + 0.7335135244335044, + 0.7617608110729386, + 0.7904389939794436, + 0.7112422403774968, + 0.7068290372363438, + 0.8429905431900757, + 0.8033231977724825, + 0.844051501278362, + 0.8069818655906842, + 0.811330304612264, + 0.7544053073507004, + 0.8807431467584883, + 0.8317183946592135, + 0.8197303279183027, + 0.3445589060272788, + 0.6883775270622791, + 0.7241847485445743, + 0.8552906674196254, + 0.8315356336164546, + 0.838515992447451, + 0.6553165355223185, + 0.44020842587782355, + 0.7783498126412353, + 0.9055070443263236, + 0.7845206092716693, + 0.6896485554589953, + 0.8212176414613191, + 0.7382916235439544, + 0.7918636685255616, + 0.7871537962637664, + 0.672174626643398, + 0.750524686953958, + 0.8285585446501547, + 0.8627686475440384, + 0.7707639896526645, + 0.7228550851931769, + 0.6803658184699035, + 0.8776528965706523, + 0.7437246169375961, + 0.7474045806890302, + 0.7905253288854126, + 0.5968952977134108, + 0.8082320855305737, + 0.695361736708173, + 0.6549697677778686, + 0.8493478105174067, + 0.8633179510228802, + 0.7820071940962484, + 0.8138132412823187, + 0.8001315434776178, + 0.9017669995779959, + 0.5731054681017058, + 0.7064250457045365, + 0.8009170267214142, + 0.7295221052570543, + 0.7872889728964174, + 0.7307774664643687, + 0.7076500808981078, + 0.611931446404852, + 0.36017952793165825, + 0.8606634261459291, + 0.6255038447489689, + 0.7399517179267195, + 0.6921161794219968, + 0.6833602343683473, + 0.5265634302683236, + 0.5506425067768491, + 0.7976797010565952, + 0.8189333278130122, + 0.7322166453214691, + 0.7017003438637991, + 0.5583387465244727, + 0.8040094142324192, + 0.8135975899823565, + 0.8071679500001882, + 0.8551851844707988, + 0.823668590102083, + 0.5132850547317656, + 0.8604541908697222, + 0.7096235422241232, + 0.5330369794385611, + 0.49653570087130133, + 0.7374726071592468, + 0.8142625926450404, + 0.756565789511159, + 0.8388547705426828, + 0.6904045597085204, + 0.6733414058311296, + 0.6964507826530058, + 0.48092247275706757, + 0.73376218794316, + 0.6733330945435062, + 0.8190362603218919, + 0.7551789587103722, + 0.7079766914045844, + 0.7500942089589943, + 0.6807579900351178, + 0.8433597634367036, + 0.7599846032900464, + 0.691244293354881, + 0.7437123255161311, + 0.7541721537055434, + 0.7669401153438999, + 0.6686969274135772, + 0.7029008774471346, + 0.6537950660100617, + 0.8145737583287002, + 0.7706575977782443, + 0.40106784808447976, + 0.6288202338700655, + 0.6682668440673005, + 0.8184855908515625, + 0.656070865648444, + 0.6894738128969633, + 0.743147424463924, + 0.715722075452938, + 0.8178196047585166, + 0.8068688432695874, + 0.806359791130255, + 0.7865132845245647, + 0.8517295049045227, + 0.6127140997012741, + 0.8266035608045365, + 0.82469372150624, + 0.7995161834128507, + 0.7737687471296613, + 0.8196302389794874, + 0.6679739387897359, + 0.5363853935513926, + 0.8050781974921299, + 0.667769171537941, + 0.7657416423239124, + 0.6561877639662764, + 0.7585719703560209, + 0.6323808320790757, + 0.7147589999646542, + 0.647928556721001, + 0.723640619921169, + 0.8269894088884082, + 0.8882020290732183, + 0.7313180542558465, + 0.4145704085194875, + 0.6462109063661189, + 0.7068848739812674, + 0.7167399338545003, + 0.7500519699110284, + 0.7418203613715426, + 0.6985393701873243, + 0.5677352344150638, + 0.5919793599332237, + 0.7289089729937944, + 0.7559162890204327, + 0.7109423781062745, + 0.7003860326887172, + 0.44997510890429887, + 0.7389853871538208, + 0.7798401100407848, + 0.5321994980822028, + 0.6811804304096529, + 0.7546510497088486, + 0.7598915270662946, + 0.594413699530678, + 0.7966130131370676, + 0.6986827277654707, + 0.7416000213366623, + 0.8096943525171105, + 0.6787175709236307, + 0.8293315919345844, + 0.5097276822447054, + 0.6036308730479126, + 0.7106603967545904, + 0.8109454050348136, + 0.7872985379441964, + 0.6962975926865755, + 0.7225641980054385, + 0.8473083737533714, + 0.4834960987959726, + 0.5917574357992293, + 0.6326822389472916, + 0.730233665740818, + 0.3991291361507935, + 0.44104634636345125, + 0.8480450518642328, + 0.4801357421164934, + 0.41693231161514516, + 0.7842222842404081, + 0.8577862381937699, + 0.6803566749194833, + 0.8699817748410608, + 0.6925169770892734, + 0.6395449118875549, + 0.6840712437664194, + 0.7370287237197538, + 0.7289938088965546, + 0.4801078309915451 + ], + [ + 0.6633684038147416, + 0.6296004882122656, + 0.7093241072951283, + 0.6446037267144598, + 0.7073153549909347, + 0.7027020668049155, + 0.5604104228400907, + 0.7042218784363041, + 0.5969816748482287, + 0.49033699399437297, + 0.42191847285208656, + 0.7632035221084826, + 0.8502018455483017, + 0.5533488383558862, + 0.7360043490548835, + 0.6900811389594155, + 0.5555632756652001, + 0.7180608111103516, + 0.7173820635639868, + 0.6136148307951161, + 0.7186656689158397, + 0.6302484936800582, + 0.7104759972266408, + 0.650740123789461, + 0.6487386897158314, + 0.8077126382925249, + 0.699765011245965, + 0.6779209416421988, + 0.6522652048237527, + 0.6806239374410277, + 0.7599789092527194, + 0.694691123053863, + 0.6840562457475665, + 0.6471847057569042, + 0.7227358833877818, + 0.7150705824260879, + 0.6283243838664075, + 0.5507062392868134, + 0.7938588888805976, + 0.6857619980508423, + 0.8562715833254511, + 1.0, + 0.5902775247117055, + 0.6000568759363342, + 0.7856525599884362, + 0.5230891363736174, + 0.6327546752034502, + 0.6360285066050081, + 0.7183440687659104, + 0.5306354218272032, + 0.5890820567473549, + 0.7445444195217082, + 0.6072832895498937, + 0.6376824009866933, + 0.5596294080762493, + 0.6310240673913544, + 0.6927686463488261, + 0.8401058177243617, + 0.6549930594584663, + 0.5689664818696993, + 0.5619725948989766, + 0.7511160600676462, + 0.7284355103026109, + 0.6952646024394278, + 0.696820693559246, + 0.678804959021331, + 0.7655744262049375, + 0.6866006882671364, + 0.5694048569876367, + 0.6044040750108163, + 0.6015744733419458, + 0.6481869118145341, + 0.6810062515115399, + 0.7209140965308881, + 0.7588730404822015, + 0.7784537319887649, + 0.7911239533613333, + 0.8187308886808012, + 0.687561422393617, + 0.8169681749718319, + 0.6571649671160145, + 0.5020918402194158, + 0.5409279181495577, + 0.7540362103900046, + 0.6960891204708356, + 0.7120231768402687, + 0.728913451061519, + 0.6779160030924505, + 0.5062069541024141, + 0.831928736543151, + 0.822623630301821, + 0.651746694288125, + 0.6864060915435873, + 0.791471666956019, + 0.6421689842660665, + 0.8195135248950625, + 0.6791671051680399, + 0.679691250349304, + 0.5950413017423154, + 0.6158439072004592, + 0.7536392167566817, + 0.764234172389785, + 0.7371894784447616, + 0.6792540965468397, + 0.7451938795171876, + 0.5391515581507849, + 0.6615104440859348, + 0.668634007719826, + 0.6550440881312252, + 0.7191850018950302, + 0.5839608472262069, + 0.5865992022618082, + 0.770666214139384, + 0.8167293806713035, + 0.760294498738815, + 0.7677205651206095, + 0.6663697187087472, + 0.7639194493058062, + 0.5209009749254986, + 0.644462284524438, + 0.7308264152059426, + 0.7365877171870716, + 0.7055373560728521, + 0.5831802766431506, + 0.7396484211324521, + 0.6024828991784758, + 0.41420809142089887, + 0.7576007498870253, + 0.6830519086359018, + 0.792897975873439, + 0.637201316094071, + 0.6238837821768352, + 0.5322267966210887, + 0.5879180277712853, + 0.655187792748081, + 0.7050160886045698, + 0.6415738496090118, + 0.6520186199405701, + 0.42001258268365477, + 0.7291435133476777, + 0.7543334708999581, + 0.6841338322789481, + 0.7884208533966861, + 0.6462229390808532, + 0.6160570408273167, + 0.7028180313468686, + 0.6346158033050712, + 0.45763523502112935, + 0.40450450986982234, + 0.5389639627498082, + 0.6846746943421607, + 0.6145989594780678, + 0.7119775014702225, + 0.6502132652982875, + 0.6647812676429538, + 0.6611512738439074, + 0.38633679174354607, + 0.6317243231628578, + 0.528625655367865, + 0.6962256961868076, + 0.6233818178402094, + 0.5760140084257267, + 0.6417276947259724, + 0.5675769881996633, + 0.7060371815435624, + 0.700922209072693, + 0.5751719149519183, + 0.6901426868105465, + 0.7106269850168523, + 0.7308122609129922, + 0.6354012213625291, + 0.6436486939781201, + 0.7443347545883097, + 0.9180244328311032, + 0.7566879735973808, + 0.3684152119140595, + 0.5600431792323312, + 0.5907139724406791, + 0.5916558925696377, + 0.6304116046566591, + 0.7180102765716505, + 0.7184024025997036, + 0.6128414064676816, + 0.7303889656369401, + 0.7295476230093184, + 0.7676223583142886, + 0.7444917894334262, + 0.7171104185801966, + 0.6632191889246216, + 0.7370105420967366, + 0.7090513527513191, + 0.7234631518986101, + 0.766900965628405, + 0.7418283265558586, + 0.6196896651812511, + 0.554116177592135, + 0.6987981150688273, + 0.6255405715377678, + 0.712847343114087, + 0.7872802041822866, + 0.6277034641957434, + 0.5532052475017957, + 0.7375409353025171, + 0.5869012001518833, + 0.6200478590674668, + 0.7675974781918368, + 0.9115586461317592, + 0.7475323217312287, + 0.49193938307471674, + 0.6660979425728967, + 0.5319639108370022, + 0.554178814851116, + 0.5993195613090361, + 0.681176358645026, + 0.6431938979462114, + 0.8187487183393164, + 0.7040810274585325, + 0.6487925811348135, + 0.6343028517915588, + 0.7347164685447978, + 0.7175036856430331, + 0.3480424892885815, + 0.6745456348142206, + 0.7080872912687679, + 0.5586614354958549, + 0.7672340425330081, + 0.6512797059079877, + 0.6405327370161583, + 0.4259740929368643, + 0.6623782299281894, + 0.6239705654530661, + 0.6649931229172767, + 0.7513093078382763, + 0.6812854554663436, + 0.719701339943617, + 0.5828307409923775, + 0.8186697794721477, + 0.5921198713712896, + 0.7198217374459406, + 0.7021889549671863, + 0.49194113020243924, + 0.6621451737748182, + 0.717756328673062, + 0.6302847892273986, + 0.5186553217947946, + 0.5853996280076964, + 0.5038761996354909, + 0.4344648429428838, + 0.3682141627614078, + 0.6893054936761365, + 0.33955771961666953, + 0.5883353674787777, + 0.8447459753665874, + 0.844181778495872, + 0.7131406683809951, + 0.8256046344953978, + 0.7182376604676648, + 0.6342441755375445, + 0.4162214329241853, + 0.674699253063112, + 0.6225831383317969, + 0.5923763860616746 + ], + [ + 0.32268402244274486, + 0.06808718158395273, + 0.16039199066681797, + 0.48413320010619815, + 0.5216537051446603, + 0.4259651292880163, + 0.024799340789711917, + 0.30565289011968383, + 0.3235453682779697, + 0.11692077260291701, + 0.04978312981777829, + 0.2986930289642145, + 0.4614741616494706, + 0.36927321017031683, + 0.36808007912311375, + 0.5305265985250379, + 0.3172583705236026, + 0.3016966946897712, + 0.5905501017164081, + 0.2498376176720028, + 0.38831757028009917, + 0.5590893248843125, + 0.30007189250386723, + 0.3177572611334851, + 0.38205137296838826, + 0.4912315356232607, + 0.3611667787884685, + 0.25357794158847924, + 0.3925321786548887, + 0.35231606475812993, + 0.463055442796796, + 0.17958892034273638, + 0.36321025356726105, + 0.4428366539556483, + 0.36278439844936206, + 0.50370972698051, + 0.36734889771374435, + 0.7239039405919825, + 0.5023531082853057, + 0.584539368364264, + 0.4718447447515986, + 0.5902775247117055, + 1.0, + 0.4687151965943218, + 0.443371105420366, + 0.15377538426252113, + 0.37875180614269044, + 0.27157159170798245, + 0.4686728431029261, + 0.5113971469583787, + 0.3235345603760377, + 0.5150411532361998, + 0.6158842626124039, + 0.4604880566522267, + 0.4684770734062643, + 0.4709830908501847, + 0.536096187239804, + 0.6279772265668369, + 0.5909459942572244, + 0.24155812550846564, + 0.44703242931879317, + 0.5103871736306285, + 0.3965191284798657, + 0.5047097726003448, + 0.32562203480954, + 0.49551493638693833, + 0.3600221160610614, + 0.40907030865482263, + 0.25935839990477544, + 0.3108960901111691, + 0.3979901082940146, + 0.314904784571816, + 0.19348307226293057, + 0.48371148166867006, + 0.3882525354588179, + 0.5555565701938251, + 0.4814273418969927, + 0.7566717462312541, + 0.44696892553586676, + 0.5511909564098456, + 0.42613101508121043, + 0.6043124808759466, + 0.2301250674232253, + 0.609520620469961, + 0.3481340697025738, + 0.2857511859391191, + 0.3705101148699329, + 0.4743925684611522, + 0.5641633137916764, + 0.5320881126584678, + 0.3874895772350565, + 0.4508917938207194, + 0.43615764835161136, + 0.4748936626110229, + 0.39669284903490787, + 0.555469957737549, + 0.2604897082099797, + 0.5634410489911819, + 0.2588238296663324, + 0.2248709149018354, + 0.4651074087927209, + 0.5565850620919802, + 0.4168121003476749, + 0.5378231280948332, + 0.3810731087207676, + 0.22590614604826378, + 0.5339095621331865, + 0.42733137149634803, + 0.4953938869151551, + 0.4201002269165513, + 0.4788343732207549, + 0.35154361453313626, + 0.3105659401907849, + 0.5104853221480464, + 0.5261191865039094, + 0.476299182271486, + 0.495756762019164, + 0.42205166264475735, + 0.1979260752516864, + 0.5161778790430395, + 0.5194781911150291, + 0.46693963290256296, + 0.36971957147882006, + 0.41745631275846146, + 0.5144464376804654, + 0.35060434411888947, + 0.4747033049502828, + 0.5216240458569905, + 0.5078630373692182, + 0.6658295741849835, + 0.3790346518034169, + 0.3822264492138812, + 0.2247626765351767, + 0.4192619227027887, + 0.23557068050934804, + 0.42434257865525854, + 0.45207391238548594, + 0.4172880047532821, + 0.37792641886526146, + 0.4311202918051759, + 0.550465865926944, + 0.3798707722845501, + 0.48887962592639445, + 0.3204579266797826, + 0.5847887055694186, + 0.41247904991969986, + 0.45324973763269366, + 0.33968112986344123, + 0.2222782959164409, + 0.33695268329448297, + 0.48586717797963097, + 0.4729907274343601, + 0.4254929999842114, + 0.36092594505534237, + 0.4619669115655837, + 0.5487989992045932, + 0.3928523287540772, + 0.4744472528405359, + 0.36456237915693696, + 0.4403421967489478, + 0.41170457654783277, + 0.47165915793448754, + 0.3739546234679337, + 0.34727598267307, + 0.32905771556222374, + 0.4231644287037296, + 0.4306348729698866, + 0.48106755220294706, + 0.5283740235304397, + 0.42456247944478454, + 0.4433825287943679, + 0.4904491760871291, + 0.4428435211296147, + 0.653420984136413, + 0.5715622040492434, + 0.6330122063070683, + 0.4535684932601463, + 0.4090256533286148, + 0.19843630090654943, + 0.4456567090472311, + 0.45943692225510674, + 0.5183992858185271, + 0.46347131228123356, + 0.43284899804854743, + 0.36830821592348, + 0.39214136007684985, + 0.4811225099523202, + 0.3555165686908801, + 0.3954261889114336, + 0.3652640646493421, + 0.4306685794138975, + 0.36215353680501655, + 0.5749432161217976, + 0.49862881988782876, + 0.5416011053257366, + 0.21621383180474082, + 0.44787758219839846, + 0.4164616211892209, + 0.42648446352149905, + 0.7240362813811979, + 0.4348669807247261, + 0.30043929726322377, + 0.5334566187196282, + 0.521975923760814, + 0.28961794624024517, + 0.5757878051768732, + 0.5786386064863228, + 0.514061331550417, + 0.4882482126574032, + 0.5617995234337961, + 0.3679575219747175, + 0.3896746172171643, + 0.44723960891091824, + 0.4836139286316537, + 0.3548494136931949, + 0.531990402541501, + 0.3798606850557393, + 0.3508792046649785, + 0.33800560729771656, + 0.5434868186351288, + 0.383666753457591, + 0.4490621827162597, + 0.5522111901081593, + 0.6444787294507446, + 0.42283644050893154, + 0.5632518218625188, + 0.44165976454298245, + 0.5333990834143961, + 0.09819659193573325, + 0.32440286804055135, + 0.46956875944573534, + 0.3733310164598661, + 0.48551080095991045, + 0.4301424600519126, + 0.4222134768491622, + 0.7681349824749939, + 0.5096703818744053, + 0.4950242795264791, + 0.6265208567475792, + 0.5099687503717495, + 0.3509926695799516, + 0.6287722558832886, + 0.44505562521577774, + 0.5705231277421619, + 0.33945430321010345, + 0.5469578230884506, + 0.2298893206840223, + 0.4767393431354547, + 0.4466622124453429, + 0.3948479539663162, + 0.35705052498327433, + 0.5411238221228091, + 0.558551877457853, + 0.48327912210652757, + 0.5915005440604169, + 0.4484599160624159, + 0.4912758240032, + 0.5010368402501802, + 0.1963652485701595, + 0.48801508955271283, + 0.373481633414387, + 0.37692602732135627 + ], + [ + 0.6013950037014011, + 0.5193830142683268, + 0.6544238488779291, + 0.8060811492182475, + 0.7483513998758503, + 0.8116946551255151, + 0.5951048976678416, + 0.6269460938311376, + 0.41881941688990576, + 0.673374102943215, + 0.5208001078956168, + 0.5718393573141108, + 0.7263861187957966, + 0.6304403142846506, + 0.8074935142886439, + 0.5998080124601739, + 0.4191743593299729, + 0.7292483115620462, + 0.7417403602130536, + 0.6808131269693478, + 0.8220573519602221, + 0.7580233245656179, + 0.7808129448994235, + 0.7186116922072291, + 0.43658422740759556, + 0.6893986800769996, + 0.7480049476646237, + 0.7334783454282683, + 0.6829185092932261, + 0.4157241728736289, + 0.6308613184047467, + 0.537814817894655, + 0.7982724454043789, + 0.7565092845769099, + 0.9009167414094187, + 0.6540409074448269, + 0.7227038554517767, + 0.368966582364346, + 0.4665044370759689, + 0.682870694869846, + 0.6546652916286934, + 0.6000568759363342, + 0.4687151965943218, + 1.0, + 0.8825509472898347, + 0.6639903959949353, + 0.7503270092848687, + 0.6620970178898433, + 0.9087114868246707, + 0.7165339832028212, + 0.8156872172417541, + 0.7277146967732131, + 0.6419377373306713, + 0.5511461876821792, + 0.37285312023645734, + 0.4939158334152622, + 0.6461020453995975, + 0.7110292924997096, + 0.6013466837323665, + 0.7329422753960344, + 0.4755337283294559, + 0.8347690913289707, + 0.513093803729504, + 0.7031774604586546, + 0.7311967487797183, + 0.5786707405569564, + 0.7950619053585438, + 0.8360405855626624, + 0.6194006510511822, + 0.5146869991666699, + 0.6789056686111139, + 0.6406717662207061, + 0.6436206680487824, + 0.631739939956875, + 0.8030246519909949, + 0.8695880233278334, + 0.8297751506471304, + 0.7457376871722364, + 0.5765478707719471, + 0.7110420824027631, + 0.6302658066654817, + 0.6564479945031276, + 0.6004659660670596, + 0.817272060504532, + 0.6088008902900093, + 0.6068970789745751, + 0.6952417897397443, + 0.6615838292627384, + 0.6429211504835035, + 0.6300563525795514, + 0.8494901613868563, + 0.8205655264313534, + 0.7613251071125544, + 0.7724704819254165, + 0.7898956973658755, + 0.6232047095356302, + 0.5571374601904606, + 0.6891764349706727, + 0.7863892844097998, + 0.6439298128579254, + 0.7735318697928731, + 0.70077009918256, + 0.5898836383289272, + 0.7308447518174583, + 0.7907089049453455, + 0.6801968034217184, + 0.702373652975178, + 0.7693050361237116, + 0.7146175580816817, + 0.8131737434159156, + 0.7322977751163599, + 0.7786415425959398, + 0.6564681314594022, + 0.7486784489242824, + 0.7580165609037419, + 0.8033478472078226, + 0.674346585527331, + 0.8167361988924493, + 0.69692499742553, + 0.8706651597701501, + 0.7239520833771791, + 0.773021892467248, + 0.6747697834477936, + 0.5863708913968801, + 0.62942743046712, + 0.6251036671534766, + 0.6042584768519317, + 0.8641463491430944, + 0.6262961540403269, + 0.8311693287369414, + 0.7232557586049295, + 0.6833188685730041, + 0.511672726460766, + 0.6794720213415049, + 0.5878824878776319, + 0.7133070953913501, + 0.7766884207842645, + 0.9224310427426551, + 0.6267004835069416, + 0.8433495591397075, + 0.812723934851683, + 0.8288628757330841, + 0.7605189281511849, + 0.7116971372138309, + 0.6006033639532452, + 0.8359376080617823, + 0.8216776090192774, + 0.7781248191419496, + 0.6041954161701185, + 0.6534376099175769, + 0.7310027168318364, + 0.7329051094214603, + 0.7008936500681697, + 0.5824050493436211, + 0.8937199796641212, + 0.8303182007485145, + 0.6525057356055775, + 0.7868626025842822, + 0.6882508722552351, + 0.7076698731125475, + 0.7756084679216189, + 0.7882232503917715, + 0.7994256776784122, + 0.745568755415641, + 0.7928785384888274, + 0.8490155592191928, + 0.7643652315979361, + 0.8167547803605925, + 0.8373272001866419, + 0.8047744877348998, + 0.8443840554598555, + 0.816259151873754, + 0.6027375895167092, + 0.6057469088809083, + 0.8528020142464837, + 0.503950953957487, + 0.7122216066934415, + 0.8123488273598108, + 0.5728853129132453, + 0.7800833548015053, + 0.5886164257034935, + 0.7995119140651976, + 0.7465480338750382, + 0.8332821699350659, + 0.7710483567555287, + 0.8687255669007823, + 0.9151857584177393, + 0.7126309484024829, + 0.7419614509947344, + 0.6926334871888362, + 0.7641848933528295, + 0.8176121574906631, + 0.8879281688348958, + 0.7467620528197926, + 0.7417000774925445, + 0.7099287248162304, + 0.7540423473649507, + 0.7646416097417172, + 0.7632354668308503, + 0.6990754976074275, + 0.7698847064561993, + 0.47043203730931854, + 0.64548033086337, + 0.747371220680334, + 0.845575305917729, + 0.8497066417676407, + 0.7037342782358442, + 0.7492987679150006, + 0.6966584663708438, + 0.8266215865765126, + 0.8361749366771614, + 0.7378510431994773, + 0.6956252580946116, + 0.7568338216353884, + 0.8156280741747518, + 0.6286019391576413, + 0.6787742172991005, + 0.7788963465993821, + 0.6816751093958047, + 0.8431084141989341, + 0.6534445605249737, + 0.6181870286006735, + 0.8073985011792016, + 0.8219003613503794, + 0.6750539394882416, + 0.7583905325629401, + 0.7292600034743507, + 0.7410360093666825, + 0.5219892873529193, + 0.7290617086498884, + 0.7763477170162694, + 0.8263230918049904, + 0.8177480783634549, + 0.8124541077307005, + 0.8441243966622104, + 0.45379107758840553, + 0.5479171596277298, + 0.604793435231831, + 0.761085849425778, + 0.8098022312500103, + 0.6028281439761282, + 0.7258298111996399, + 0.6646319536970628, + 0.6274631788295844, + 0.88856967345433, + 0.5287804338035514, + 0.44872059834675476, + 0.5788529930299907, + 0.6029866191154375, + 0.5883433618512579, + 0.5926622208100338, + 0.6534457553883147, + 0.7111783538014854, + 0.5546837763184235, + 0.6638495583621381, + 0.6757154512582018, + 0.8294013569725159, + 0.5883629759015386, + 0.5566969444985734, + 0.7700584183875336, + 0.8960346322365619, + 0.635817281616973 + ], + [ + 0.6676457507865475, + 0.5813840498398788, + 0.8325221078803671, + 0.7928571003296435, + 0.7495800839258568, + 0.7994535824278579, + 0.6764117636927595, + 0.7509120920688942, + 0.5456731130586004, + 0.7079108967154236, + 0.5982732038950165, + 0.5849663173795889, + 0.8127262318055067, + 0.5657562502762228, + 0.8861371455745214, + 0.5859391454216532, + 0.5698410658105085, + 0.7641445051416533, + 0.6895100976015569, + 0.7818035762498012, + 0.8429556663510275, + 0.6514823554679782, + 0.8720883358570523, + 0.7490266947159041, + 0.5067193704501657, + 0.7254838364731288, + 0.8673498725966393, + 0.7911206675139831, + 0.6602875206094108, + 0.4960930805945078, + 0.7292608955368984, + 0.6537972266341702, + 0.7762020444559364, + 0.7144091571100263, + 0.9371729436119394, + 0.6896545782854985, + 0.7232739940393205, + 0.32861217847432245, + 0.5747583187998111, + 0.7355640850299021, + 0.8110641527744276, + 0.7856525599884362, + 0.443371105420366, + 0.8825509472898347, + 1.0, + 0.6905486273150977, + 0.7976633947260527, + 0.7732672454803701, + 0.8878587238103, + 0.6943593508567076, + 0.7494988736151712, + 0.6915082602079573, + 0.56399895679279, + 0.5816715054090424, + 0.379110256863358, + 0.49886717020445237, + 0.650047177720157, + 0.7819703892635047, + 0.6755651971849689, + 0.6858480273814913, + 0.507673826277687, + 0.8539666106553562, + 0.6139887322808815, + 0.6953395264616168, + 0.8481669406764715, + 0.7622709116129125, + 0.8124260853389282, + 0.8576485040026077, + 0.6239778124368188, + 0.5711330349792223, + 0.6474905176871404, + 0.6606082751456608, + 0.7664267664551768, + 0.7117212974153719, + 0.832468838518815, + 0.9318011791163439, + 0.9449068238826759, + 0.7025392207745479, + 0.6849441187457783, + 0.7564210537494417, + 0.6522474342724588, + 0.5538796751565569, + 0.5448279770110632, + 0.8266010184609038, + 0.7121351723573517, + 0.7029581149671886, + 0.7524530699345666, + 0.7031695475163933, + 0.5757414534189641, + 0.6728485447442103, + 0.915687281478054, + 0.8469090692682705, + 0.8035789690691317, + 0.8219944810043067, + 0.8061353431403844, + 0.6969864717175175, + 0.6119487310677676, + 0.641550090320323, + 0.8178320201079337, + 0.6749501519986724, + 0.8177473622826429, + 0.707109062894299, + 0.6977056279750035, + 0.7019736930220828, + 0.8713027766247706, + 0.764166378087602, + 0.7406698532376802, + 0.7936681745150403, + 0.702659119675546, + 0.8972590350079628, + 0.7036722456168647, + 0.8320902135984609, + 0.7879827460456106, + 0.7930683825517924, + 0.7562662986276659, + 0.8018717197232793, + 0.7123072046167738, + 0.8659826890478104, + 0.7720327807227798, + 0.8321321082556407, + 0.7647771903814483, + 0.7545565963576601, + 0.7285019882446403, + 0.5979053735777672, + 0.6956672615627624, + 0.6478263064127028, + 0.4698505587879909, + 0.8675342042269413, + 0.6935754204527997, + 0.8233233088590549, + 0.7667907208813705, + 0.693665553924166, + 0.5665346384263333, + 0.6741686860800261, + 0.7157804016490856, + 0.7674871724302246, + 0.7541972865682642, + 0.8995525783374679, + 0.6208564048503494, + 0.8919716285636539, + 0.8065745262885773, + 0.8814602458059533, + 0.8792641835647119, + 0.7759750854102534, + 0.534404927267564, + 0.905550049204281, + 0.7951382203649153, + 0.667982803263365, + 0.5532972623616066, + 0.6645749628347191, + 0.7577665402184153, + 0.6977955467719653, + 0.7581129751765794, + 0.6628643129880825, + 0.8827792909864072, + 0.8228529119877813, + 0.6114359821566223, + 0.7638827353657525, + 0.6782579021836469, + 0.7615111060383829, + 0.781638439866549, + 0.7509620593840705, + 0.8394353622199469, + 0.784766562443727, + 0.8615610527557163, + 0.846736362871016, + 0.7482201224700448, + 0.8140181958428881, + 0.8337660399115153, + 0.861131975027979, + 0.852810851572454, + 0.8042637103081354, + 0.793438361775681, + 0.7421813547900101, + 0.8542867063350212, + 0.4212151170371124, + 0.6894979597717342, + 0.7830270860288, + 0.6436566175670683, + 0.7770383380048401, + 0.6132805521524172, + 0.8151036640374993, + 0.7213234951422224, + 0.9009568735740072, + 0.8143126415898513, + 0.9378802310226584, + 0.8988609044619356, + 0.8239590062994354, + 0.8383653914852407, + 0.7871017231321275, + 0.8227862776307612, + 0.8753122791734737, + 0.8646970870873464, + 0.8252786197124178, + 0.7612452670946198, + 0.7917566807752306, + 0.8146225270790385, + 0.7812265640607919, + 0.8258571442111287, + 0.6670253698063677, + 0.7914070005222443, + 0.5528558594544682, + 0.680361424256124, + 0.7663285889162994, + 0.8458918874559054, + 0.8930788218090043, + 0.845409353395499, + 0.8016023345476329, + 0.6163382802143332, + 0.7997238982435043, + 0.8534031458169707, + 0.7619207159786612, + 0.74055453706745, + 0.8103687789524525, + 0.8569330030128968, + 0.732629386043277, + 0.7137335008898427, + 0.835764196374356, + 0.7853018114241886, + 0.8290825206563853, + 0.7683997046214242, + 0.5385853220674353, + 0.8136604814458169, + 0.8304669435056123, + 0.6366911329323913, + 0.8649836492510007, + 0.8012059218629389, + 0.7981401815793572, + 0.5981506212239095, + 0.8142814996874916, + 0.779345381893897, + 0.8749203531134916, + 0.8500292507068777, + 0.8155841486355644, + 0.8879215675447021, + 0.36078350433001866, + 0.6166775180823971, + 0.6548529475039919, + 0.7700076416756715, + 0.7757818683730122, + 0.5161398119106827, + 0.7239587898478921, + 0.8230648555661401, + 0.6320029472639315, + 0.8340421398648936, + 0.4889485625351403, + 0.608922107697083, + 0.48101986135235575, + 0.5411854374560995, + 0.7620643976318294, + 0.5040632208674676, + 0.6416279922449587, + 0.7758300422007928, + 0.7258198606224059, + 0.6673115777722024, + 0.8025962867537952, + 0.8792763662174777, + 0.5029199086531823, + 0.583288345698321, + 0.7531333632429683, + 0.8767000649174171, + 0.7087702638161257 + ], + [ + 0.6853379596235551, + 0.7278339962575637, + 0.7668071477946521, + 0.7280555882764655, + 0.7832589346640701, + 0.7186704502386074, + 0.7821087361840672, + 0.75970434939626, + 0.6766454961974782, + 0.9466315424481623, + 0.8261530611144208, + 0.7101804584459666, + 0.6846215565906978, + 0.5961241881265723, + 0.784111987917863, + 0.6369174623720604, + 0.6315347376133343, + 0.8370034143228003, + 0.7462019354666803, + 0.9188451505895104, + 0.7946530821348098, + 0.6473462178429886, + 0.8767388040253333, + 0.8674890411766343, + 0.534965325043493, + 0.7198536375497083, + 0.7554330346313811, + 0.8391921403223708, + 0.7501365711331266, + 0.5646111907065922, + 0.6604827780856865, + 0.7768502988598222, + 0.7121933327133124, + 0.6264831090580075, + 0.8423546681728933, + 0.7344294447811095, + 0.8705746154813677, + 0.30676852156248097, + 0.5245784845096295, + 0.6946456101422039, + 0.6962311530085707, + 0.5230891363736174, + 0.15377538426252113, + 0.6639903959949353, + 0.6905486273150977, + 1.0, + 0.7795028235100901, + 0.8937950013181242, + 0.826835903396267, + 0.6785586691489547, + 0.7590676369069492, + 0.6492683992508614, + 0.5687308320302144, + 0.6817475542070637, + 0.48061014159104415, + 0.5848540277630285, + 0.67647239347339, + 0.6642717199071, + 0.5942235828443497, + 0.779131051462229, + 0.5579424141646663, + 0.8330733725178233, + 0.6279250924275613, + 0.6465403382729092, + 0.8247526887224569, + 0.7157126249577623, + 0.8031743643687465, + 0.8224575589348618, + 0.7593375050983855, + 0.7549442992927422, + 0.8873507516453005, + 0.7881374253568315, + 0.8398623902903394, + 0.7089256363688791, + 0.8191861240094234, + 0.7022439588688036, + 0.6927388284358136, + 0.5935352883905131, + 0.6685504224861002, + 0.6808651547939518, + 0.7508896797634245, + 0.5527615825224138, + 0.7825563979343528, + 0.6444445358640437, + 0.7882711011801785, + 0.7938349862864125, + 0.8407586815113572, + 0.799441841904912, + 0.6182186978986175, + 0.6903054721742995, + 0.7990481763003365, + 0.8260878199713461, + 0.8171776065913229, + 0.7903614575447814, + 0.8917568042455779, + 0.6424475905837631, + 0.7483471273495851, + 0.7632999365205497, + 0.8415218237864068, + 0.8193299795486935, + 0.8728459019372571, + 0.7103764735859406, + 0.6797312211022599, + 0.7543393710877451, + 0.8075871158554323, + 0.8170699189092709, + 0.7462864659705598, + 0.8565725551198453, + 0.7977412502969341, + 0.8274422344953061, + 0.7759071380405864, + 0.757733435484641, + 0.7461238299430281, + 0.7187175154995963, + 0.722609870490368, + 0.8347820305284039, + 0.7509974483249545, + 0.8051040765173663, + 0.7995451526332659, + 0.7438830510747219, + 0.8099530166127039, + 0.748674450260215, + 0.85078817201591, + 0.6499288043892408, + 0.6922450270428361, + 0.810687559821531, + 0.6160237024988804, + 0.7910612347650183, + 0.7662314724197149, + 0.5797368502793857, + 0.7608540816226201, + 0.8449926009829334, + 0.6971299020434112, + 0.7371869394663875, + 0.7626920440177358, + 0.7398511301233279, + 0.8134043321013322, + 0.7667319437462639, + 0.6794753949680674, + 0.7990134353603849, + 0.7219413354030553, + 0.8391072896126786, + 0.7345555004417008, + 0.902753632649524, + 0.6226311804632616, + 0.8417191696089411, + 0.7807703521240756, + 0.7732685484446343, + 0.6900438314427767, + 0.7468998155321253, + 0.7208515908558075, + 0.7624109406711016, + 0.7697489728362172, + 0.7376114469341699, + 0.7781017996998234, + 0.7651511080707627, + 0.6635613505816119, + 0.8727663092624606, + 0.7758498770763532, + 0.7420301942015815, + 0.8611993068531667, + 0.7964184880959176, + 0.873896563744355, + 0.7734008300184094, + 0.799674431514563, + 0.7545918017056128, + 0.7708400190706808, + 0.7973409713592138, + 0.7892498964000068, + 0.8291728247574206, + 0.8269383825081362, + 0.8280036921571045, + 0.6523181259160942, + 0.5225401065295139, + 0.7166492739593706, + 0.4313703119509745, + 0.7397705652661944, + 0.7829635856599746, + 0.8258456251676808, + 0.7209433805965606, + 0.6252217309644303, + 0.7566672632685555, + 0.7889180481084778, + 0.7942761134062067, + 0.8375181391188852, + 0.7709224367344732, + 0.7711330710750193, + 0.7671302110553545, + 0.713231640944992, + 0.6579482460195938, + 0.7398620037532421, + 0.7310795264213866, + 0.6979927186239653, + 0.7187496673024744, + 0.66453589173287, + 0.69925053702286, + 0.8645645621795094, + 0.7809965981659608, + 0.698997716071755, + 0.45790544190996363, + 0.8778314510182301, + 0.6938610006689983, + 0.6715889269488733, + 0.6778324672586636, + 0.7811462630906514, + 0.6956413687999436, + 0.6667692189928601, + 0.784362579972892, + 0.7098018296800443, + 0.6903243387471345, + 0.7525866009782342, + 0.7175922414565796, + 0.7612724969565601, + 0.8477279849440521, + 0.8722748312114545, + 0.3926312254967396, + 0.7361674266819832, + 0.7580748851903082, + 0.7336675145296013, + 0.7381375367347516, + 0.780881864347523, + 0.4989663458480474, + 0.7039217488676629, + 0.6962131061209649, + 0.7103136153838757, + 0.5154693890547043, + 0.7413096738968595, + 0.6652444358147187, + 0.7538146874664331, + 0.8090933978057647, + 0.7677036602650706, + 0.8294033620053188, + 0.815858411941912, + 0.8287726952364305, + 0.8241733444279824, + 0.3913935162138045, + 0.30937376478559786, + 0.676850148193884, + 0.6926629395004411, + 0.7032895405510458, + 0.6636160416501615, + 0.6576207734812202, + 0.6754742249711828, + 0.674230757558068, + 0.7097557042752418, + 0.44198248624602754, + 0.6659093880065688, + 0.5170531020198815, + 0.5920043419434584, + 0.7684261639307757, + 0.7020355975359686, + 0.6451968257173919, + 0.684044195345576, + 0.7095656818397903, + 0.6301311193547601, + 0.6664100050329075, + 0.7529511833483412, + 0.5630334649457291, + 0.6937924344423017, + 0.8163733446457883, + 0.86691950204307, + 0.5749645264888321 + ], + [ + 0.8757496991633374, + 0.6030025264334169, + 0.6945986855122824, + 0.647997211838597, + 0.8112600973720072, + 0.6965447019476686, + 0.6067863872145627, + 0.8972308392936581, + 0.6605391724199788, + 0.7578913191413225, + 0.7170461690908877, + 0.6894224097164403, + 0.7395999024471914, + 0.7135379229002774, + 0.834114786858379, + 0.6963570644830929, + 0.7412704786209551, + 0.801953582281736, + 0.7798669590766698, + 0.7311559217940584, + 0.9030627663331533, + 0.7175660269229883, + 0.8091387186195084, + 0.7303399167866576, + 0.6531695501080957, + 0.7769666917039596, + 0.8460118906960117, + 0.822955339848865, + 0.7265122544954186, + 0.6103661498018849, + 0.840269563015413, + 0.7406160042230041, + 0.8090538029444456, + 0.8156203242339269, + 0.7944322738793477, + 0.8841171056853294, + 0.8938398269907122, + 0.3598119363548038, + 0.6989840932328537, + 0.8947197980236496, + 0.7548418979397522, + 0.6327546752034502, + 0.37875180614269044, + 0.7503270092848687, + 0.7976633947260527, + 0.7795028235100901, + 1.0, + 0.7951958127641484, + 0.7713447040718617, + 0.9150340372920309, + 0.8232110489104928, + 0.6210419316594924, + 0.6842824255295097, + 0.7573069339763815, + 0.707544678292855, + 0.753955964596831, + 0.8164558739472719, + 0.8893443508132263, + 0.49663527294713955, + 0.9001084041354257, + 0.6744571405503055, + 0.9032015432087845, + 0.7017347488091729, + 0.8252860068135219, + 0.7071069560401396, + 0.6225963106547276, + 0.7831909776434742, + 0.8729099404976498, + 0.7831807666355834, + 0.8130917430145266, + 0.8155501190658752, + 0.6008201291311114, + 0.8032404492084169, + 0.898453844444719, + 0.8163784732315224, + 0.8657746478776949, + 0.872671090506109, + 0.6519449731863075, + 0.7709404180051319, + 0.8147308504370365, + 0.7529685848437709, + 0.5115641674490661, + 0.7848445014132979, + 0.8600309036247206, + 0.8749388471295564, + 0.86805865617351, + 0.8134182490871976, + 0.6551542505560266, + 0.5865899721002517, + 0.6703068592661879, + 0.8547536947837204, + 0.8563519255643545, + 0.7491220130591667, + 0.8699740455146027, + 0.8432459602776616, + 0.7980940463365597, + 0.723581926963481, + 0.7693472618318852, + 0.8533285564735325, + 0.7577010507342077, + 0.86932951601395, + 0.8479269538034272, + 0.7710292096065947, + 0.8291436367480783, + 0.921945741548352, + 0.704842239494444, + 0.7410068763725092, + 0.9293480644348913, + 0.8072006005763331, + 0.9244199367822491, + 0.9466364284842053, + 0.7787968632191519, + 0.8780243325021596, + 0.8355176366231076, + 0.8821511410262398, + 0.8149051539300746, + 0.9537437221302035, + 0.8832066580850879, + 0.7443899556802532, + 0.8578281216961564, + 0.8639080592369075, + 0.8493687586517554, + 0.9371658344323062, + 0.7573274209896489, + 0.7549569554462338, + 0.7826096350129813, + 0.4437061968667599, + 0.8298901569577147, + 0.5671421815682918, + 0.7776761813710495, + 0.7504654443774159, + 0.7356597336662593, + 0.6373115609011587, + 0.6863477268977151, + 0.6304485971053188, + 0.9584441292724978, + 0.9408987697385677, + 0.7429586150277464, + 0.8587672376945564, + 0.9307743909337449, + 0.9095226160992966, + 0.9109280814711481, + 0.9260175010360592, + 0.9076790321848938, + 0.45475882625684005, + 0.8007435333225188, + 0.7844906810159716, + 0.8020737894557276, + 0.7132423758665891, + 0.9118897917532932, + 0.9540681692241094, + 0.9526069452839634, + 0.9680516820046566, + 0.7930297694526648, + 0.8486361605176442, + 0.9152018609992209, + 0.8975628296317251, + 0.8988383450589915, + 0.9069130979575925, + 0.9327377122639526, + 0.9449331724166364, + 0.9522679813945316, + 0.9034793000254616, + 0.9164539475725696, + 0.9257093261053623, + 0.8866320704190577, + 0.9390750362872838, + 0.9132983739614821, + 0.941916113683374, + 0.9142028159922565, + 0.9210959832026765, + 0.9353283649269725, + 0.7513716400043325, + 0.6736624467797762, + 0.9001230737324222, + 0.7267439992820642, + 0.9493397955697817, + 0.7834221805110129, + 0.8535633786911248, + 0.9507580494089242, + 0.7152301492990277, + 0.9246956999185157, + 0.9376003145347498, + 0.9472062747392324, + 0.8685784991219303, + 0.9019213055239915, + 0.8829712949835602, + 0.87877771139495, + 0.8043916450805182, + 0.8713354336705732, + 0.8793666518506918, + 0.8446310834081667, + 0.834917329323103, + 0.9100344023046916, + 0.856642790307083, + 0.8601311553099416, + 0.901740748803157, + 0.9296661132135637, + 0.8146077453407885, + 0.6994968758008874, + 0.9564388108423669, + 0.7149375521597557, + 0.8644778375834163, + 0.8520945311069053, + 0.9304740583909245, + 0.9047868973626326, + 0.7958171656546501, + 0.7740969891207821, + 0.6372762619732435, + 0.8633910562358642, + 0.8955069278121032, + 0.9466032439970276, + 0.946494073011137, + 0.9137455343454757, + 0.827470338804007, + 0.5430348323598969, + 0.7256536003083616, + 0.9639127032442742, + 0.9686275164226176, + 0.8845451776981577, + 0.7558651301885208, + 0.7727338142413989, + 0.8467134428638751, + 0.9165555627009644, + 0.8379666027245878, + 0.7549420170174469, + 0.844894111639338, + 0.9152711553320526, + 0.7981947376126791, + 0.9189654064573116, + 0.937351614048972, + 0.8955627991476252, + 0.9212992386847675, + 0.8264926716056195, + 0.8959353603557442, + 0.4885581825509023, + 0.5374931387412322, + 0.8633204481756537, + 0.9232528855161655, + 0.9111014226893567, + 0.7252271104455065, + 0.81150340143164, + 0.7515072752847975, + 0.6614641126945857, + 0.8581049759873521, + 0.7214342712865776, + 0.7558237394518722, + 0.710733963557512, + 0.8389281005522058, + 0.8503486689338176, + 0.7912058572924363, + 0.5491961903628485, + 0.6509736385895367, + 0.6077037173853331, + 0.672353435266935, + 0.8103635186689437, + 0.8736547300650115, + 0.6558305522832707, + 0.6588568411552969, + 0.9164609414261939, + 0.8350971199609145, + 0.7552923642802305 + ], + [ + 0.8222411339907025, + 0.8031811419820176, + 0.8676076380443262, + 0.7794388816750116, + 0.8435616094784028, + 0.7804709011416374, + 0.881631262148835, + 0.8098220930495006, + 0.8368168065854803, + 0.9475963039257594, + 0.916631660000606, + 0.7007998753490903, + 0.7339833833088214, + 0.6423957890763609, + 0.8465435722870359, + 0.7054781385790014, + 0.7581934304184748, + 0.8939899168737632, + 0.799355429239601, + 0.9249287108919853, + 0.8632601618352725, + 0.7374615433938971, + 0.8963922919469643, + 0.9404748474588167, + 0.6320112909281019, + 0.79551721475639, + 0.7492066970242119, + 0.8504236725985378, + 0.8263103147992619, + 0.6994111757513277, + 0.7681578899823625, + 0.7921060324032487, + 0.7966309141026792, + 0.6993152887495369, + 0.8703145500730278, + 0.815085028407417, + 0.8724741939339156, + 0.35314130782067993, + 0.66779164909335, + 0.7666122216924746, + 0.8180696360331228, + 0.6360285066050081, + 0.27157159170798245, + 0.6620970178898433, + 0.7732672454803701, + 0.8937950013181242, + 0.7951958127641484, + 1.0, + 0.795507408824369, + 0.6749760763816995, + 0.8145578912493444, + 0.6656146813361727, + 0.6457908068506554, + 0.7807202077166167, + 0.589834421338856, + 0.7114479293759688, + 0.8057387075510412, + 0.7258695565418993, + 0.5643815855039658, + 0.7201769854814476, + 0.7231317412202696, + 0.8337576444213173, + 0.7662512932467274, + 0.7294392235036345, + 0.8760909021293364, + 0.8159839251201859, + 0.8520854503653493, + 0.8266860559590672, + 0.788745617671698, + 0.8150110427368508, + 0.8548261478247774, + 0.8058953584213016, + 0.8782577959262415, + 0.7736957435405581, + 0.8132596898903235, + 0.7300741731159746, + 0.7185669356863401, + 0.6046740392813499, + 0.8516147019479651, + 0.6953701470774006, + 0.8442293095675985, + 0.5228635338860673, + 0.6962290204283741, + 0.6313022883458609, + 0.8179288233444687, + 0.8432972830718111, + 0.8807044509060475, + 0.8304906495272005, + 0.6341194523135035, + 0.7086336570851394, + 0.8410117752438973, + 0.862382248109491, + 0.7225745284113709, + 0.7614392957196369, + 0.7960114189774607, + 0.7344455373348315, + 0.7179760473814585, + 0.7537197183408941, + 0.8638780868700732, + 0.8587148579176768, + 0.8438964405483931, + 0.7768419855016455, + 0.767874835170206, + 0.7598904007721121, + 0.8259259913090872, + 0.9101763039819263, + 0.8351783589900958, + 0.8952063137748241, + 0.6852252497632186, + 0.7869854184143003, + 0.7278635412907689, + 0.8262731663818674, + 0.7765043573463358, + 0.777761349390688, + 0.716169936271026, + 0.8221561470957699, + 0.755344226846153, + 0.8552593653751505, + 0.746926753138452, + 0.7166314822779887, + 0.7403867615433533, + 0.6806458521125078, + 0.8198306409682223, + 0.7261899752416884, + 0.749495019914897, + 0.7699478567613126, + 0.5503789247100223, + 0.7559949104497983, + 0.737066047108248, + 0.5430902441755524, + 0.8239921300434548, + 0.8292972929545955, + 0.7581663430951545, + 0.7497992095100302, + 0.8199462223824978, + 0.7803839444285418, + 0.8001454403132815, + 0.7575055701806336, + 0.5652835830668557, + 0.7790036732191032, + 0.7617898292439074, + 0.8147554449467462, + 0.7729936868191204, + 0.8929591938892341, + 0.6374101560564681, + 0.9073358441063546, + 0.6718949431558867, + 0.6059172614771257, + 0.6124264009276895, + 0.6982258096733323, + 0.7870921619540613, + 0.7584507994590227, + 0.7980281321406348, + 0.8225619709868559, + 0.7546565272139799, + 0.7109831696140995, + 0.575013984397031, + 0.8664749904446789, + 0.8317718367127253, + 0.8098700747801996, + 0.8419680542422351, + 0.7585280971934416, + 0.8794865540515862, + 0.7084555698295827, + 0.7815376251301793, + 0.7152301780259338, + 0.7093290745167217, + 0.8246525092949673, + 0.7985371218258385, + 0.8198110316771665, + 0.7934246735489894, + 0.806628532698649, + 0.719085470796325, + 0.5479194705666676, + 0.706202672442251, + 0.4213883455062177, + 0.696671314623671, + 0.6895084297996803, + 0.8657750254893222, + 0.7150131519021945, + 0.6774395803952957, + 0.7329676137905299, + 0.7580737523283047, + 0.7957674579206147, + 0.8034492528863618, + 0.8242545693829506, + 0.7811866777825291, + 0.8180738674521753, + 0.738246277720949, + 0.715174864520471, + 0.7291765488821729, + 0.6933500348007516, + 0.6850484301100377, + 0.7184552804142851, + 0.6214935942290518, + 0.6495024802227871, + 0.885690910237984, + 0.7474760434253815, + 0.637890395739038, + 0.49662890252684744, + 0.8478320517305212, + 0.661508246082944, + 0.6366138952284461, + 0.5920726953773946, + 0.7489917495770423, + 0.7554309500851275, + 0.7543868481381345, + 0.7715909410206155, + 0.6450208353453, + 0.6181531547654857, + 0.755465832717364, + 0.7047681427433478, + 0.7245901023342728, + 0.856293781256437, + 0.7936502483825993, + 0.41664409826470267, + 0.6998142582392822, + 0.749072207862839, + 0.7301307960448731, + 0.6733209058481268, + 0.669250238186777, + 0.41893527042235246, + 0.6884496925177304, + 0.7582230781642942, + 0.6573856722404021, + 0.6508953862641266, + 0.706769376184406, + 0.703392517556368, + 0.7962856108942986, + 0.8443229315559246, + 0.7871190344372693, + 0.7802987099903886, + 0.7990375858424358, + 0.7701261315902792, + 0.8446401160762399, + 0.3972860651558907, + 0.28572979129442466, + 0.6579563399332665, + 0.7566318061023091, + 0.6973676388329614, + 0.7611390057170162, + 0.6242021555052911, + 0.7066291093176755, + 0.5622312469758437, + 0.6663922654907455, + 0.5839908056786548, + 0.8185867097282509, + 0.4158758527079102, + 0.5334973388026539, + 0.8309462925498076, + 0.5839906104448076, + 0.5213457065923416, + 0.715903771132076, + 0.8477798280097265, + 0.6771515361788846, + 0.7513384922642946, + 0.6842994454596215, + 0.5181113471150037, + 0.8280043208894778, + 0.8286259740430919, + 0.807650757246996, + 0.6102232482230677 + ], + [ + 0.6498425756315815, + 0.6397606667816117, + 0.7759588086368459, + 0.8578823956857881, + 0.7893980834177897, + 0.7935863790518985, + 0.680539962151728, + 0.7367026764765625, + 0.5886781037973198, + 0.8026811925824583, + 0.6179965502700908, + 0.6854457606939854, + 0.8360124022825539, + 0.5794178348833305, + 0.8576843528940602, + 0.638569125638769, + 0.502735722196755, + 0.8418117624964359, + 0.7870441386658674, + 0.8400955524958627, + 0.8431159216932289, + 0.7089545664918241, + 0.866822627632611, + 0.8110631636061725, + 0.5294517472079313, + 0.7415999225444034, + 0.8015504206774169, + 0.8303844151577392, + 0.6954914467941621, + 0.5140471499591036, + 0.6747767690249409, + 0.6493125925316786, + 0.785663634274503, + 0.6913844962663325, + 0.963083664567252, + 0.704139868460926, + 0.8139899765040628, + 0.5229061630072126, + 0.5846723159227462, + 0.7491081661051521, + 0.766567809552744, + 0.7183440687659104, + 0.4686728431029261, + 0.9087114868246707, + 0.8878587238103, + 0.826835903396267, + 0.7713447040718617, + 0.795507408824369, + 1.0, + 0.7382649473728381, + 0.835648086153899, + 0.7834353491638344, + 0.6384004348828135, + 0.6056785715514797, + 0.40348490132679365, + 0.5230246192267547, + 0.6671499783446043, + 0.8012195678697557, + 0.6768333655976754, + 0.7627892766310093, + 0.5435131437029611, + 0.9083634752000876, + 0.6095364733371785, + 0.6701464543834228, + 0.8813942457897141, + 0.7776168533901954, + 0.847233454952785, + 0.9015110596809414, + 0.6954296274653243, + 0.6231001781692111, + 0.7934054495687201, + 0.7411558281197247, + 0.7811657300207174, + 0.7279692784414454, + 0.8935599194776833, + 0.887590869125658, + 0.8630486112170502, + 0.8172336021862886, + 0.6686396309002777, + 0.8177077211588768, + 0.7233707997430208, + 0.6686412229375881, + 0.7452527409039537, + 0.8328936117740795, + 0.7262164845125474, + 0.7409358795490228, + 0.8278432143932755, + 0.7830283212874308, + 0.6794507930328477, + 0.7232408866801537, + 0.9153514282839592, + 0.8837359529820622, + 0.8900542912666864, + 0.8732717234950793, + 0.9018821510705326, + 0.7067331073327955, + 0.7069431372639986, + 0.7557490594504258, + 0.847700779072942, + 0.7460538494972868, + 0.8898311892825173, + 0.7520834413860322, + 0.7274675945795646, + 0.759966674679478, + 0.8435057684678089, + 0.763758954137711, + 0.7561313599995456, + 0.8716949645655204, + 0.8002988601772594, + 0.89114227311268, + 0.77154002371786, + 0.8179804361197471, + 0.7714484375598271, + 0.8191672700465813, + 0.807131347733117, + 0.9034430405298713, + 0.7372595450806161, + 0.8781533180053597, + 0.7961658653084125, + 0.8833308905709345, + 0.8210146532084536, + 0.8628778351385105, + 0.802829942719688, + 0.6737452567310567, + 0.7837573110669271, + 0.7999268705505794, + 0.6660423973412332, + 0.9316463192689873, + 0.8350698249787182, + 0.8532280872796406, + 0.8139062852173662, + 0.8049780760742056, + 0.653423474179155, + 0.7630516855393803, + 0.7501664851439015, + 0.7496753741974017, + 0.7969327643924612, + 0.9569351749425115, + 0.6458561283463513, + 0.8632698570652895, + 0.8060778574734913, + 0.9045443815051418, + 0.8033515490914344, + 0.8062558643928743, + 0.7359325561972537, + 0.9043186572454911, + 0.8503385114615419, + 0.8003975425055319, + 0.6375279034827475, + 0.7128518113933068, + 0.745066352566571, + 0.7383617833770472, + 0.7523376186572271, + 0.7694832040347129, + 0.9151257205986144, + 0.8493097182956806, + 0.6527074798053032, + 0.8486684349712068, + 0.7312005422681859, + 0.757817199397687, + 0.8547423659457922, + 0.8104397979293944, + 0.8877691650442975, + 0.8007884050275477, + 0.8427281185467831, + 0.8987913879813645, + 0.8096091060746969, + 0.8454925957054723, + 0.8603426029844907, + 0.8847229350703343, + 0.8817969340108303, + 0.8519115369778935, + 0.7233300466011972, + 0.7188735055678411, + 0.8810714862214154, + 0.47432398713665297, + 0.7398152029013965, + 0.8342556402440711, + 0.688558044924136, + 0.7701992404649824, + 0.6448311982622618, + 0.832589617209918, + 0.7853254078841634, + 0.8851551128760553, + 0.8971384688117712, + 0.8877134663077207, + 0.9217780214870313, + 0.8200059326793354, + 0.8245210831376694, + 0.7450294172693257, + 0.8307093604037437, + 0.8850214147068269, + 0.9053193464828918, + 0.7988464043534494, + 0.7827188382941738, + 0.7339925746277944, + 0.8691641104001313, + 0.8288813075590501, + 0.8338162449424454, + 0.6657540093682089, + 0.835695912643228, + 0.6570511633039652, + 0.6994208961590792, + 0.7982811930361748, + 0.8518886653412014, + 0.8629989384731458, + 0.7986360819178148, + 0.8711060650330767, + 0.747930662076839, + 0.8369530707410094, + 0.8338001895622437, + 0.7227201174028764, + 0.7571657273964256, + 0.8496009796176389, + 0.9202142523489985, + 0.6885667920469432, + 0.8342629203857905, + 0.8230551069728962, + 0.7236044872572618, + 0.877238259895092, + 0.8280207564292629, + 0.5673016089275946, + 0.8703313300098966, + 0.8220523163135804, + 0.7268087932657097, + 0.7718951169399549, + 0.8184784598467171, + 0.7705873663001321, + 0.6137059008627666, + 0.8219204346092993, + 0.7853468963413875, + 0.9120457454115339, + 0.8868668375740598, + 0.9217751661972804, + 0.908157981751303, + 0.5484375783171391, + 0.5860268995384184, + 0.6840803742130717, + 0.7845595838689035, + 0.8195363905894778, + 0.639115264393395, + 0.7865467369153493, + 0.7587502940691805, + 0.7457482825260286, + 0.8484624721706665, + 0.5241501494376998, + 0.5342299264293503, + 0.5670877717882025, + 0.554649440632405, + 0.7360923585043987, + 0.6767728591689053, + 0.7270911424243252, + 0.7835301230867762, + 0.7414777600216858, + 0.6404032620932749, + 0.7636475741621823, + 0.8572670216730937, + 0.6073475432809541, + 0.5957052244466677, + 0.8073426443980034, + 0.9486225629849241, + 0.6104948897427667 + ], + [ + 0.7434806304840446, + 0.42691047477339816, + 0.5266177446347003, + 0.6391436181309198, + 0.7242338903785538, + 0.5457711313893545, + 0.3734581492754622, + 0.7469675178509356, + 0.5686773351171747, + 0.639264913209809, + 0.561229451038221, + 0.5728433321516684, + 0.6299963052122257, + 0.6422612688774884, + 0.7354788888161812, + 0.6162363590316349, + 0.6164191970459186, + 0.6441668634405945, + 0.7138078672211264, + 0.5990972545138648, + 0.8100287302815201, + 0.6744315782429193, + 0.6758606700815086, + 0.5893963672809917, + 0.6088381563986975, + 0.6554772128738366, + 0.7409893826827575, + 0.7046743748449881, + 0.5661806188534864, + 0.542419376633773, + 0.7153847180846455, + 0.5627849950238989, + 0.7095128005563027, + 0.6929516835364206, + 0.6840957906119757, + 0.7948811277290962, + 0.8216839329645154, + 0.5151544272959796, + 0.651217333632088, + 0.9129835545276731, + 0.6285321477838101, + 0.5306354218272032, + 0.5113971469583787, + 0.7165339832028212, + 0.6943593508567076, + 0.6785586691489547, + 0.9150340372920309, + 0.6749760763816995, + 0.7382649473728381, + 1.0, + 0.7643665023228352, + 0.5887017153684853, + 0.6156671037620799, + 0.6483307114706826, + 0.6398623368548743, + 0.6668281895060663, + 0.7225644424747724, + 0.8724298497829469, + 0.5098557712612656, + 0.8482998108873898, + 0.6230499840835176, + 0.8756988161527571, + 0.5704526686243135, + 0.7368475282397685, + 0.6056431680921285, + 0.5567106156194004, + 0.6658498717292877, + 0.8049176111936593, + 0.6261010440883662, + 0.6746236391432463, + 0.7176287537717946, + 0.4890803113383816, + 0.6686538464567181, + 0.8452614460248787, + 0.7388226095000598, + 0.8442519096881311, + 0.8132324007244585, + 0.6785333387791344, + 0.6643053170653548, + 0.8372464299960046, + 0.6164146157381962, + 0.530469422428405, + 0.7785460289819078, + 0.8703320700815064, + 0.789781894136399, + 0.759012313031861, + 0.7227350315086554, + 0.5706994331860684, + 0.596662092510684, + 0.5504227791500947, + 0.7370420963348667, + 0.7482583735666821, + 0.6962592732956782, + 0.7578603742694948, + 0.7722900186462998, + 0.7476386984951042, + 0.6585121594713942, + 0.7446113042927567, + 0.6908225131721597, + 0.603162228656377, + 0.7894530759452206, + 0.7923576245111186, + 0.7529353270962903, + 0.7596484446615238, + 0.7903757746000067, + 0.5335337966186502, + 0.6773195483051816, + 0.8445888562077731, + 0.7608095962189614, + 0.8510489163773919, + 0.9278548180721982, + 0.7409020337420297, + 0.7495190198136109, + 0.7315808369645826, + 0.8485617079624438, + 0.743346551335301, + 0.9120426034427667, + 0.7745767590167656, + 0.680887645480879, + 0.7956786842908652, + 0.793929925710313, + 0.8452260636174723, + 0.8584589474216581, + 0.7021270452578829, + 0.748016796134255, + 0.779746322283042, + 0.5112523153348145, + 0.7456553044579702, + 0.5933966643718185, + 0.75116675104055, + 0.708653994270435, + 0.6760413961989231, + 0.5780037703969501, + 0.6849708447303781, + 0.44374620996917596, + 0.8645802078874205, + 0.8774259628232292, + 0.718133019448789, + 0.9255879341845801, + 0.8684695057279178, + 0.8385575265871222, + 0.8434912672211874, + 0.8699395998494884, + 0.8302727555479382, + 0.48010981343222187, + 0.6724792910523454, + 0.7409115517100358, + 0.821245211886906, + 0.7411297063208891, + 0.8586935785300809, + 0.893733255723514, + 0.9046994250470852, + 0.8847188351084703, + 0.7277083922464036, + 0.7793614938202535, + 0.9012647972314314, + 0.9563213536219067, + 0.8422066483582767, + 0.8327545390678901, + 0.8745496130091119, + 0.8880343585707747, + 0.9150448017110548, + 0.8061967476444443, + 0.8426739349283237, + 0.8211887688465529, + 0.8439915106430721, + 0.9127965917060391, + 0.8608310018424897, + 0.885060365474182, + 0.8484148592341645, + 0.8547713769938803, + 0.8695365134072658, + 0.6871890227958383, + 0.6361068601422876, + 0.8669792156435113, + 0.8017273525481302, + 0.9411930455412206, + 0.8086747011746231, + 0.7144577694450308, + 0.8849826530203082, + 0.6759309696717564, + 0.8678876542046091, + 0.9131495418141224, + 0.8706831654122286, + 0.7847208365595579, + 0.7892298692290735, + 0.8185127620282513, + 0.8097185948016965, + 0.7728536295449595, + 0.780711960392166, + 0.8631399944062418, + 0.8070376414528145, + 0.8431494303787324, + 0.869134266122238, + 0.942624437869191, + 0.7367319472477022, + 0.7889368013991233, + 0.8745286738466679, + 0.8307470166191837, + 0.6917887898776304, + 0.904114340136834, + 0.6816754963111281, + 0.809082271149814, + 0.9192550590206644, + 0.8795897092605431, + 0.8506354441047936, + 0.7331854460477812, + 0.7734393482394787, + 0.6357710191139949, + 0.8366275524245474, + 0.8082700471475032, + 0.9331539077196078, + 0.9052313032551177, + 0.8442226468043577, + 0.8031231807849872, + 0.5238098594095948, + 0.7464466015945181, + 0.905704817084848, + 0.8881495698022214, + 0.8563255519574934, + 0.7172362392001885, + 0.8679465324364498, + 0.8787001039055724, + 0.928686347296259, + 0.868666364137958, + 0.7319923882578131, + 0.8824918931439126, + 0.868797028930243, + 0.6060820658054143, + 0.8332599557301409, + 0.9104304397901444, + 0.8353595142237813, + 0.862213246826172, + 0.8288043716698225, + 0.8329804917947845, + 0.613392743447976, + 0.5268065628942751, + 0.9173709183120643, + 0.9392354770542221, + 0.8962192375228669, + 0.6284491130499895, + 0.8772343388862648, + 0.7198483639469597, + 0.6927078630808905, + 0.8162699060471013, + 0.7466339068639526, + 0.5479122503418494, + 0.8538630022412913, + 0.8786104360582334, + 0.7510774978803948, + 0.9256544652652832, + 0.5334243200666445, + 0.5635989210077836, + 0.46366973363752045, + 0.5658268333870036, + 0.717124483591214, + 0.8301320494149953, + 0.666588742583078, + 0.4771805313070807, + 0.8584595487870513, + 0.7605499212129773, + 0.6857941797791205 + ], + [ + 0.8564801420268351, + 0.7350863454199303, + 0.758340370966224, + 0.6807657475277489, + 0.7708410139141116, + 0.786314699324852, + 0.7644943807826089, + 0.8415002685096142, + 0.7503483369960682, + 0.8257612822570826, + 0.7623490503431634, + 0.763351828463363, + 0.7670023859360867, + 0.7377966368949574, + 0.8778659107490949, + 0.7284331217659713, + 0.7166349901213237, + 0.9095809974900835, + 0.8201385798785885, + 0.7523152676206298, + 0.9530428198742033, + 0.8021997077032963, + 0.7983590700738565, + 0.8452413981521354, + 0.7025398908328677, + 0.7790672379016694, + 0.6765649160276698, + 0.8805958054170148, + 0.7906549756067819, + 0.6626639750411141, + 0.7746921639283009, + 0.6768930278058032, + 0.8995294147816897, + 0.8148852260164399, + 0.840638453835149, + 0.8334868689491116, + 0.9063979974795666, + 0.3025340568468474, + 0.748912174752087, + 0.8138891551318298, + 0.7729303676121867, + 0.5890820567473549, + 0.3235345603760377, + 0.8156872172417541, + 0.7494988736151712, + 0.7590676369069492, + 0.8232110489104928, + 0.8145578912493444, + 0.835648086153899, + 0.7643665023228352, + 1.0, + 0.7391607080207577, + 0.7265575505180805, + 0.7737715343819433, + 0.6601291991107415, + 0.770633260069127, + 0.8368500631752662, + 0.7895921888734879, + 0.38435664633033084, + 0.8745468616028863, + 0.7668671265211575, + 0.8804897742763504, + 0.7718159097323998, + 0.8132837754604604, + 0.7720150994855388, + 0.5599250790161883, + 0.8538947127095317, + 0.8163025683453939, + 0.7737427429934681, + 0.7617292701202043, + 0.7778836767887937, + 0.7238308361571004, + 0.8354994959550944, + 0.8315705439790736, + 0.8801031386989114, + 0.8059006418674102, + 0.7520802076666968, + 0.6877212409486984, + 0.8545176574604214, + 0.804734099053743, + 0.8101587875807208, + 0.5003811860513432, + 0.8560828847476876, + 0.7541881176002431, + 0.8349577413062236, + 0.8452402454513106, + 0.872001084807236, + 0.6678152251530043, + 0.5556167418290613, + 0.6356136133578151, + 0.8951801612471986, + 0.830825009618372, + 0.630433886386209, + 0.7945836371689421, + 0.7959221213729195, + 0.7749559495671066, + 0.7910318618089708, + 0.7144173116396457, + 0.8392099208329852, + 0.8345699722177704, + 0.8145903049190341, + 0.8489297878910407, + 0.73479096099761, + 0.7409901233746767, + 0.8495724750045235, + 0.8083656606732472, + 0.7217794400035178, + 0.8909780702516534, + 0.655626418933175, + 0.7854196677356071, + 0.797492525493856, + 0.7941893666910547, + 0.8386303503010883, + 0.8699032929021152, + 0.8217304638173732, + 0.840912258533896, + 0.8013165838981158, + 0.9114717631959065, + 0.7232533733569269, + 0.8288698542172397, + 0.7438599278835691, + 0.8307938030088505, + 0.8324091315625942, + 0.871160086801413, + 0.7536851235071684, + 0.783252431031849, + 0.4949270822500394, + 0.8483353805507854, + 0.6022112541750574, + 0.7182217339499308, + 0.8188716873497913, + 0.7585853590373689, + 0.7077607415164494, + 0.7057408274259007, + 0.7585101828481479, + 0.834930582064829, + 0.8591477748113, + 0.8348261557810971, + 0.6148445291581865, + 0.819936196753433, + 0.8504988730097678, + 0.836681523061214, + 0.7669049177125415, + 0.828404848120492, + 0.5664279784539841, + 0.8495442535055274, + 0.6817117209439416, + 0.651671833948288, + 0.5592621009095818, + 0.7683999326962145, + 0.8625238905664662, + 0.845536983432515, + 0.8335091805703295, + 0.8006245539935561, + 0.7917226279521328, + 0.7607344868027185, + 0.6450439380021528, + 0.8638098501668312, + 0.8934681953579392, + 0.8812563120020891, + 0.8616338207156387, + 0.8197732651574544, + 0.874667931270904, + 0.7399231058305519, + 0.8438260635857855, + 0.8392464323661121, + 0.7976916495760416, + 0.8568879679510789, + 0.8280112142390692, + 0.8209206922359442, + 0.7904053720559936, + 0.7963676928678753, + 0.6597788237056923, + 0.5686030632860563, + 0.8405248830265308, + 0.4817459505089791, + 0.7896973938635042, + 0.660889002182156, + 0.8579217815886225, + 0.8071889343256052, + 0.7504349363129071, + 0.8030251185760201, + 0.8075200002078882, + 0.8296121887824759, + 0.7913016829878362, + 0.8799636880452919, + 0.9068408071657765, + 0.8869748209513151, + 0.7202147270098094, + 0.846877464057498, + 0.8364523672253347, + 0.8121532065194497, + 0.8451162786218362, + 0.7837333368764501, + 0.6860663690368232, + 0.6366116555075778, + 0.8422567177968407, + 0.8166664505754218, + 0.6803540191112907, + 0.6526093753912735, + 0.8206341434860089, + 0.7103229461868429, + 0.7369359201558591, + 0.6538599874208709, + 0.8403689752552382, + 0.8123520270064483, + 0.7211536782224772, + 0.7460473114354005, + 0.5819255905145644, + 0.6979586040793084, + 0.77387542516949, + 0.7473690624957086, + 0.7370230817658793, + 0.8183776790786554, + 0.7484318298058208, + 0.48789858222611093, + 0.6859850591897538, + 0.828705569754477, + 0.7263150414602231, + 0.7627968619181031, + 0.6252336387727522, + 0.5449977458534481, + 0.7612829427415748, + 0.8490396687842834, + 0.7193231514769817, + 0.7114732844631008, + 0.6966276952263526, + 0.7143878230057092, + 0.7500055151756828, + 0.891439985564087, + 0.8079027505505658, + 0.8142432517072261, + 0.841015756250116, + 0.7827050694314476, + 0.840079076664901, + 0.48837961587089207, + 0.4524748838708442, + 0.6340100564682066, + 0.825070415190514, + 0.8461807920480248, + 0.8674938082815948, + 0.6597553916925828, + 0.6484701172999461, + 0.5126242831374838, + 0.7811913029506056, + 0.7546146599473236, + 0.7047127330232857, + 0.5484394056940954, + 0.5666563149639909, + 0.6753736057588575, + 0.6507236420739939, + 0.4372441823098056, + 0.6345865359262117, + 0.6499672827110244, + 0.5747684378669088, + 0.8104452005769647, + 0.6912742238357245, + 0.6974183716502559, + 0.7699990036819226, + 0.8342126106182004, + 0.8371551331652201, + 0.5449045098629106 + ], + [ + 0.6615651975466161, + 0.5993614699772418, + 0.5892505038909924, + 0.8411653577369747, + 0.8169640937581145, + 0.8557864462891007, + 0.6119611829642541, + 0.6163804522507313, + 0.6824101795556492, + 0.6041540051063389, + 0.41851962479199195, + 0.8033168424875182, + 0.803919093461683, + 0.8260421474619204, + 0.7946133048310893, + 0.8938504656989306, + 0.6283484321830728, + 0.7616231881107022, + 0.9032872923221278, + 0.6967682884542938, + 0.7615097257185339, + 0.8223568434034442, + 0.6720769309122288, + 0.7387209860948301, + 0.7309721979079735, + 0.8784091708783704, + 0.5570713430567354, + 0.707407283877877, + 0.8107393990917243, + 0.7838537896744429, + 0.7683036214122869, + 0.6263095509607923, + 0.7383408056160365, + 0.539697325625833, + 0.7574120736275455, + 0.8025254702243064, + 0.6819383197814012, + 0.5881700349205619, + 0.7486895511257454, + 0.6721397395948934, + 0.7013975311773235, + 0.7445444195217082, + 0.5150411532361998, + 0.7277146967732131, + 0.6915082602079573, + 0.6492683992508614, + 0.6210419316594924, + 0.6656146813361727, + 0.7834353491638344, + 0.5887017153684853, + 0.7391607080207577, + 1.0, + 0.8080965522673622, + 0.7670892280036387, + 0.6233778330484034, + 0.716464379708044, + 0.7831347806275551, + 0.7674912419855632, + 0.7683591252304012, + 0.6696731232740802, + 0.7317886917012772, + 0.830254929695508, + 0.7758405089138461, + 0.7716234156151517, + 0.6623103233747194, + 0.6456996731287353, + 0.9093672321443531, + 0.7579108308232485, + 0.565830670819181, + 0.598150652655095, + 0.7497426831341428, + 0.9066506620693506, + 0.7300049180958933, + 0.725157174628973, + 0.8300879453875182, + 0.716476600241985, + 0.6936760936151849, + 0.9096366209785309, + 0.659140495265993, + 0.8294151813775513, + 0.706923440739347, + 0.7652216001513259, + 0.6481856640904822, + 0.8049354659355104, + 0.745115823893156, + 0.6799920285795157, + 0.8670529300830733, + 0.8427935160053593, + 0.7807596809275612, + 0.9078795124273428, + 0.7937302338811545, + 0.6766066663313393, + 0.7039338806397406, + 0.7848322332325902, + 0.767827223179324, + 0.8635395113910227, + 0.7542277368032712, + 0.8752854422662473, + 0.5944941777110421, + 0.6000839267998501, + 0.7677872976158965, + 0.8321641967409009, + 0.8078921526925366, + 0.8532111264886276, + 0.7374228085703188, + 0.5430087750368825, + 0.8570393057143342, + 0.6910624307669054, + 0.8100500177933934, + 0.6793888550258427, + 0.6787890523429736, + 0.7133840579434184, + 0.6938146985082226, + 0.8458819492370873, + 0.87350646083976, + 0.9201354767671042, + 0.6931583747958956, + 0.8131615693410319, + 0.6661126358921109, + 0.749053731276268, + 0.7690762912508208, + 0.8312790896398352, + 0.7317440734101113, + 0.7154158579844249, + 0.7885675970093005, + 0.7378123498576309, + 0.7726714643811846, + 0.7737171163688121, + 0.8217455191661343, + 0.7305718153969598, + 0.7918771252021565, + 0.7680731014985369, + 0.6655716533447212, + 0.7916932842867296, + 0.5580706793853027, + 0.7008112928376103, + 0.7786006627060525, + 0.7540706744973931, + 0.4399637619352593, + 0.7769087213117759, + 0.856632902834504, + 0.7488849778420298, + 0.7129798117436863, + 0.7501684597120128, + 0.8202060423369771, + 0.7736888972959883, + 0.8109320242703788, + 0.5744932047180626, + 0.5164382488794387, + 0.5693542459371856, + 0.7135564676543104, + 0.695398162870697, + 0.6767927119236473, + 0.6488255791184637, + 0.7821638404561001, + 0.73725501355899, + 0.48478516548436357, + 0.8149692961448178, + 0.6832043746769073, + 0.7814353333599257, + 0.7520768492334662, + 0.6731144616309587, + 0.7509836257765188, + 0.5542995629731294, + 0.6952416142306407, + 0.7891564613318984, + 0.6269651752310732, + 0.8585281905550474, + 0.8145499767006029, + 0.835413161496639, + 0.7138741210958911, + 0.7262917505949117, + 0.7096074546538357, + 0.7399412825848495, + 0.8213924315843829, + 0.39617769834884164, + 0.6795413413002485, + 0.6707600151710007, + 0.5971787104441194, + 0.738046029435576, + 0.9104866097372759, + 0.7982608359189339, + 0.7252938384740588, + 0.7273473018413125, + 0.7064125779079814, + 0.7561076293591039, + 0.8357834715458032, + 0.7411557883295257, + 0.6665371609404693, + 0.705286062521828, + 0.779246714768183, + 0.7001738137410549, + 0.8431356322440943, + 0.7554110064594151, + 0.6751534065026947, + 0.4618981532492597, + 0.7500620081065331, + 0.7259809043107824, + 0.6855729100993385, + 0.7919912142115942, + 0.6933672596480742, + 0.7257786503230581, + 0.7330774016968153, + 0.5918779508879415, + 0.6900291696220313, + 0.754864108000589, + 0.8458397612304056, + 0.8702363737858184, + 0.7324778604168917, + 0.7394479119340768, + 0.5269720711292721, + 0.5344942934793449, + 0.5848788128317268, + 0.7449317690002075, + 0.7615698112278999, + 0.787981401599508, + 0.7922697978303507, + 0.6721922749549993, + 0.5542230804650016, + 0.809206829351045, + 0.5813989149436396, + 0.3737229180714313, + 0.7259017360445489, + 0.7079774296752162, + 0.7742919827914935, + 0.7535337230164716, + 0.6799600261569162, + 0.5655639864007013, + 0.4428766292545381, + 0.703695585122622, + 0.7685591717068014, + 0.7031166664032793, + 0.8353523127576491, + 0.8348029032440542, + 0.7912734174033395, + 0.5636111155569772, + 0.6989108683095396, + 0.5569179268274731, + 0.7494927703542199, + 0.7432091072654088, + 0.6094079141969413, + 0.7166235679073985, + 0.5845896600033036, + 0.7944897576424184, + 0.5634190224420002, + 0.7120427096382538, + 0.3605131039392809, + 0.605184357437031, + 0.42794776264406803, + 0.5092187473548955, + 0.4936819142168277, + 0.7402212773804183, + 0.9365479841674961, + 0.7408864553667255, + 0.8223244021920305, + 0.7402278696220344, + 0.7235918573099702, + 0.7420114591427935, + 0.4170639104551993, + 0.8196857418005401, + 0.6952925814469735, + 0.5689638837799068 + ], + [ + 0.7130206753601408, + 0.44805866799027294, + 0.3893245644155247, + 0.6958867608461291, + 0.8477696385600278, + 0.7720251175120626, + 0.5835206081092914, + 0.6666870160861759, + 0.7418651196960413, + 0.5884896228007358, + 0.5247749050606009, + 0.6483137937963257, + 0.5923577634713915, + 0.8104343197206194, + 0.7084805468970695, + 0.939382289607649, + 0.7203320385814181, + 0.702122223068636, + 0.9239787343429503, + 0.5493316324330968, + 0.7245880055348668, + 0.9142463547577852, + 0.5519658954847548, + 0.7344683524983805, + 0.6906338160662403, + 0.8329145375175095, + 0.4097791593078021, + 0.6034356839321657, + 0.8985408246591853, + 0.6853138061595071, + 0.7646905568486525, + 0.579134953335785, + 0.6989975020016119, + 0.7208003266951211, + 0.6306547076066605, + 0.8769711405619791, + 0.6784456026952236, + 0.543912589851534, + 0.7196503370280476, + 0.7499547492537497, + 0.6106600885601696, + 0.6072832895498937, + 0.6158842626124039, + 0.6419377373306713, + 0.56399895679279, + 0.5687308320302144, + 0.6842824255295097, + 0.6457908068506554, + 0.6384004348828135, + 0.6156671037620799, + 0.7265575505180805, + 0.8080965522673622, + 1.0, + 0.8164917101632524, + 0.8078189823480949, + 0.868853692487843, + 0.8918100666524174, + 0.7363457446794762, + 0.6161548563995265, + 0.5806466792173809, + 0.8677169646983072, + 0.750481408411487, + 0.8205145146664049, + 0.8757915707776592, + 0.49591831253559426, + 0.6033491820083322, + 0.8042704209753488, + 0.6827006269106958, + 0.5647811586118501, + 0.6380024775291999, + 0.7593984892274779, + 0.7330716003236702, + 0.5817187772198326, + 0.7465858245382656, + 0.6765340712768387, + 0.6190553793982198, + 0.5716660089797375, + 0.7815749012229788, + 0.7282311591078723, + 0.6671015475632205, + 0.7352898393951629, + 0.820536476667225, + 0.5957914449639885, + 0.7117544889867948, + 0.685793899871853, + 0.6350093801011786, + 0.7513737472650571, + 0.83426680365556, + 0.8427864262710304, + 0.8133352362254399, + 0.6646461163594718, + 0.6874027213384285, + 0.5149280569085924, + 0.6951958280441048, + 0.6567772028115108, + 0.8639022352479161, + 0.5720080109570428, + 0.8880682399470236, + 0.6160277562551721, + 0.5596947504112418, + 0.6453791227689234, + 0.9092808397871833, + 0.7237195514700769, + 0.9003772991648478, + 0.644989346803058, + 0.6080606462115031, + 0.8075017711683321, + 0.7622535277961466, + 0.7728583220431058, + 0.5925915406615291, + 0.713710357613487, + 0.6935732011080541, + 0.6142081225541292, + 0.7697630888823318, + 0.7970360699714282, + 0.7865366952619912, + 0.7315335122945066, + 0.7080956940137592, + 0.5452373930967959, + 0.7399121366036635, + 0.6761259734020894, + 0.7120300381015825, + 0.7122122314732707, + 0.8034722663035949, + 0.7514156645561542, + 0.7282847951462121, + 0.7405970138686144, + 0.6848540957657102, + 0.6233572678947313, + 0.6491299014569482, + 0.7669842997364288, + 0.7706058549843956, + 0.7338224529281683, + 0.8050013102638123, + 0.5796437571967364, + 0.7192427271308769, + 0.7994633286629147, + 0.584447743582144, + 0.44010362743178394, + 0.6921007709225588, + 0.8578479968516233, + 0.6199416757780352, + 0.6393832663472442, + 0.673272126734735, + 0.7772681184240952, + 0.7019881442708904, + 0.6177634448811589, + 0.5517792617043513, + 0.4958550217385623, + 0.5334897216327112, + 0.7669599047292534, + 0.7823391436136394, + 0.7098814117903374, + 0.6708897573047893, + 0.7228712218064077, + 0.7077973419190372, + 0.5352872916014063, + 0.8433137803421555, + 0.807827757315267, + 0.7732448222944406, + 0.7210500273169578, + 0.7441367503069984, + 0.7363949301223821, + 0.51788851485619, + 0.5699994962360678, + 0.6288117736742109, + 0.6092217715591063, + 0.8477449846713251, + 0.8053934708077982, + 0.7319897381589231, + 0.7178575306717919, + 0.7691380441845661, + 0.6740835147193637, + 0.5651080882689214, + 0.7586537145493499, + 0.6889635651694793, + 0.745675809437576, + 0.4921770742778179, + 0.6055495410660169, + 0.7920635489399933, + 0.8236704837427108, + 0.7473401365804032, + 0.7427531037702607, + 0.6336844028716568, + 0.5914595401654912, + 0.6852951973209472, + 0.7711570469519773, + 0.6299264109277892, + 0.620803025995127, + 0.5901524577930664, + 0.6151798779088317, + 0.48337632983477613, + 0.6872979271346977, + 0.6345023601996314, + 0.5442771324317209, + 0.44555547626849984, + 0.7941872381356043, + 0.7302854325579344, + 0.45190719930092804, + 0.8277065583832949, + 0.724825496652722, + 0.6735413661666273, + 0.7691380674766993, + 0.5077614900410443, + 0.5712366008522383, + 0.692420326761636, + 0.6717566966961291, + 0.6944201110111232, + 0.7957172958249761, + 0.687126878858054, + 0.5672371892481654, + 0.5678048391985121, + 0.5754820519518759, + 0.7946542324828884, + 0.5711809862516429, + 0.5936923171843348, + 0.5712648909748528, + 0.6195541699778263, + 0.5301022305400855, + 0.7085515774744148, + 0.40048110095971434, + 0.4810673604071996, + 0.6205264837351149, + 0.7551349097437866, + 0.7064098930860572, + 0.6860084155879925, + 0.47261911942054013, + 0.5857219947124445, + 0.6127301941994501, + 0.6382684272685824, + 0.764569958537277, + 0.5755290890601075, + 0.7269340770870493, + 0.6517404094775687, + 0.6536025099611406, + 0.64860600358904, + 0.5046108928463717, + 0.5432062101879008, + 0.7587344536345746, + 0.671836672272365, + 0.778624775489925, + 0.5967778734645098, + 0.38556177832099264, + 0.6701150323221595, + 0.5469505622804247, + 0.8195281147956467, + 0.5809055746283631, + 0.6155880864656582, + 0.6221670547866822, + 0.47998381630020026, + 0.4704456182709774, + 0.6808707428516183, + 0.7396395996545612, + 0.7084071373997862, + 0.8350169488853942, + 0.6757068057064586, + 0.6336139791993696, + 0.7865732201543547, + 0.6228574120223727, + 0.8302151999799869, + 0.6127024298870553, + 0.5221651439578014 + ], + [ + 0.8610433149984253, + 0.7275423917350047, + 0.6399226581672924, + 0.6276805914188901, + 0.8698808681291756, + 0.7924141533077872, + 0.7046444246636318, + 0.8163512171140817, + 0.825843461500166, + 0.6910971291523941, + 0.7027527863422481, + 0.8334508436526545, + 0.7534157038373632, + 0.878332812924342, + 0.7956590196720863, + 0.9000397025423433, + 0.8757241822304167, + 0.8269390200942952, + 0.906983053308775, + 0.7190825192689649, + 0.8377586334558035, + 0.8415521229547119, + 0.740358463100107, + 0.8237768487193018, + 0.8451885624261493, + 0.9288010549837602, + 0.632946870638403, + 0.7704091423108774, + 0.8679787971113793, + 0.898283656814834, + 0.9199384100177687, + 0.7967553335319647, + 0.8343547069154293, + 0.6957382988022693, + 0.6312249937429881, + 0.9483088164836108, + 0.8505441757278966, + 0.39554470525751145, + 0.8569020215506968, + 0.7785972131554874, + 0.8079430457105786, + 0.6376824009866933, + 0.4604880566522267, + 0.5511461876821792, + 0.5816715054090424, + 0.6817475542070637, + 0.7573069339763815, + 0.7807202077166167, + 0.6056785715514797, + 0.6483307114706826, + 0.7737715343819433, + 0.7670892280036387, + 0.8164917101632524, + 1.0, + 0.9126894134380518, + 0.9361671605278028, + 0.9666433147913454, + 0.7949089576847715, + 0.49182028186940036, + 0.7486413503854878, + 0.8528948200795302, + 0.7953367737115026, + 0.8907326428616055, + 0.8904612718597225, + 0.6296115505928211, + 0.604375000874431, + 0.7966913131151788, + 0.6361249323252818, + 0.7889990727884215, + 0.893903905942929, + 0.8229828510293448, + 0.8167625277757367, + 0.7854488798547847, + 0.8521090950379612, + 0.7706647191586117, + 0.6201035307665136, + 0.5925234133759301, + 0.7126336499825869, + 0.866916137401937, + 0.7403206315742112, + 0.888523257973892, + 0.5023909340932723, + 0.6679361033807572, + 0.6546302180927169, + 0.8991252225335872, + 0.8558372427727776, + 0.8814498990769505, + 0.723522931440328, + 0.5687845403375703, + 0.8110816843588651, + 0.7639990382954185, + 0.6940178788554575, + 0.550809382723625, + 0.7651163462176157, + 0.6968970777200618, + 0.8635059458486188, + 0.8173371505834734, + 0.8206413590210152, + 0.6709027438074067, + 0.798362479730777, + 0.7966221793711213, + 0.8638117284005418, + 0.7409841808503976, + 0.8167201125813872, + 0.8027025790445477, + 0.6821438053383587, + 0.8223313946973009, + 0.7710201107412705, + 0.7076083509606541, + 0.6588206807044951, + 0.7514215595265485, + 0.6098949664553741, + 0.7709556683538563, + 0.8692106744596773, + 0.8353562697094585, + 0.8078700729256842, + 0.833393748189718, + 0.8585226124566857, + 0.5515382946202856, + 0.6487229130287794, + 0.7828641097268575, + 0.6765926229684749, + 0.8260554771861699, + 0.8561831679695892, + 0.6883397943379495, + 0.649280132512404, + 0.4814444132642552, + 0.7307811738876437, + 0.5708665375181358, + 0.5938175261655633, + 0.6871982030843901, + 0.7534401757595741, + 0.6020091671818226, + 0.6212972427462394, + 0.597206104612586, + 0.8629849743950053, + 0.84810250162194, + 0.5310284285302822, + 0.5474149101032055, + 0.750959054967927, + 0.8689304962514013, + 0.729779226801211, + 0.7684215421182076, + 0.8575211538334718, + 0.5410229411302395, + 0.7582319497041426, + 0.686793431503451, + 0.489392463662309, + 0.5272240547442522, + 0.7298850312337727, + 0.8367148007763914, + 0.8557241853295333, + 0.8256818972786418, + 0.6884398674440014, + 0.6173229190274137, + 0.6792845411566624, + 0.5571666710571179, + 0.8346908272459642, + 0.8270217554691989, + 0.8860698122004795, + 0.8032583552619293, + 0.7570744451996361, + 0.7453671796837459, + 0.6018591715791173, + 0.7366683149488248, + 0.6947084230255601, + 0.6773396503315555, + 0.8123753959504398, + 0.7991493412530631, + 0.7531841060600809, + 0.6556208343392731, + 0.7258462309428002, + 0.6248897237784735, + 0.6149529541750461, + 0.7275457973834523, + 0.5713152113118216, + 0.7311852897857909, + 0.5250612511126391, + 0.8682375364914319, + 0.748220556068547, + 0.8684396529247183, + 0.7694304917698431, + 0.7714828432055932, + 0.727803241967903, + 0.7089021124421777, + 0.705244112949521, + 0.7483550714307946, + 0.7867631489920953, + 0.5261071721437195, + 0.7577134486706676, + 0.7522148949559508, + 0.5956252526278177, + 0.6911334341856926, + 0.7686078118894242, + 0.6078538423117757, + 0.44723006425575174, + 0.7794633892822315, + 0.6857341563650127, + 0.5548209621969513, + 0.6475532999944367, + 0.7760394450141996, + 0.7419443860557567, + 0.7884262658859768, + 0.5177230394365511, + 0.6300053596009058, + 0.7196281751855642, + 0.7705406459401991, + 0.6715477360358889, + 0.5099775020554617, + 0.6014045586754317, + 0.5829698984601202, + 0.6766304931642312, + 0.7236572550759108, + 0.7697937046303016, + 0.5930242384377317, + 0.4148323512752292, + 0.541514122979096, + 0.6812655690526622, + 0.6981346504406045, + 0.6736444055487899, + 0.4793388159309279, + 0.4483737031177671, + 0.5927247786850409, + 0.7605982809341018, + 0.7133744272743544, + 0.5795325995197741, + 0.6207017005428125, + 0.6530945332999158, + 0.7156649445911194, + 0.7725771363153033, + 0.7678363279296629, + 0.6294166197796628, + 0.7941554302909856, + 0.6504237090449642, + 0.7333751139013615, + 0.4686315218494431, + 0.4499446676296577, + 0.6698576259340518, + 0.824906860990694, + 0.7360257485686252, + 0.824720183422826, + 0.6335669877492892, + 0.5718016265911052, + 0.5647216235350223, + 0.4793094521551165, + 0.8363984948392975, + 0.7458543476313578, + 0.5108965942053323, + 0.5363829163042583, + 0.6738327514454947, + 0.528871211471067, + 0.45053382491292354, + 0.7675062456205257, + 0.7469129262150014, + 0.8090213018936666, + 0.7898748788204397, + 0.5930879744945889, + 0.7216595999565599, + 0.7444470952295066, + 0.8431089957351201, + 0.6147081994892322, + 0.5617034974416075 + ], + [ + 0.823057972396558, + 0.5755840908538662, + 0.3965784619290104, + 0.4379105242052306, + 0.7399864902675947, + 0.5677275620453022, + 0.4933340188613543, + 0.7448561342516478, + 0.7660653055257935, + 0.49647488589960576, + 0.5688718344321033, + 0.7507568291719933, + 0.5900284749363987, + 0.8068680154657503, + 0.6361498555464158, + 0.8617469262551418, + 0.8198436323353399, + 0.6662257901267835, + 0.8114156589183569, + 0.44684781117444344, + 0.7140959553582564, + 0.7770978313605929, + 0.5045381343311197, + 0.6258950714684242, + 0.8566552444720523, + 0.8288217766226187, + 0.444843592490001, + 0.6067521564621831, + 0.7595848483651644, + 0.8501346598646977, + 0.8612745229415051, + 0.7032758174332915, + 0.7011137098079839, + 0.6760268715903911, + 0.40035319511111533, + 0.9044947924450949, + 0.7234576781798733, + 0.42414545363536565, + 0.8735584706891456, + 0.7732223647317279, + 0.6457465763660892, + 0.5596294080762493, + 0.4684770734062643, + 0.37285312023645734, + 0.379110256863358, + 0.48061014159104415, + 0.707544678292855, + 0.589834421338856, + 0.40348490132679365, + 0.6398623368548743, + 0.6601291991107415, + 0.6233778330484034, + 0.8078189823480949, + 0.9126894134380518, + 1.0, + 0.9621867960671094, + 0.9197735984820694, + 0.771750133964136, + 0.32520001855333674, + 0.6684065958407536, + 0.8623154612413273, + 0.6713108668588273, + 0.8548226982321125, + 0.8776707306654239, + 0.3642786503632509, + 0.40355745491205697, + 0.6430828005832787, + 0.4824379139603965, + 0.6454924445821754, + 0.8061056306099068, + 0.6838399378212296, + 0.5905136548289601, + 0.6178116638102863, + 0.8338882345512773, + 0.5888024709004115, + 0.48904380516631274, + 0.451936551659902, + 0.6116270874405499, + 0.7726270630336061, + 0.6800810037708775, + 0.7361394342869398, + 0.4308999266307811, + 0.6442535947628814, + 0.5896527898990775, + 0.8090540336296642, + 0.7872187002444467, + 0.7356368484121644, + 0.5662276020584018, + 0.4824357387691517, + 0.6926212403934139, + 0.6010465047998484, + 0.5047260227760388, + 0.33494440158709327, + 0.6257378111089761, + 0.5108706515328675, + 0.8559952218307247, + 0.7221908162598588, + 0.7523450752182643, + 0.48709558072262454, + 0.6204329385867793, + 0.6165772884233933, + 0.8577631968437358, + 0.7094705762921739, + 0.7407787268044862, + 0.6372156754581751, + 0.47050723488666174, + 0.633068344750878, + 0.6799885896911273, + 0.6205194250612233, + 0.5118595844719707, + 0.6960077244950091, + 0.4784205803613013, + 0.692866043237491, + 0.764927264207601, + 0.7834942879259561, + 0.6539931269819391, + 0.7913972221662294, + 0.6885603694119746, + 0.3928735124435592, + 0.5164443307374841, + 0.6452907113265566, + 0.6138784323288388, + 0.7700594555395616, + 0.8277724875284526, + 0.6587220235283636, + 0.6126290312294437, + 0.37503340451269557, + 0.5449659474523625, + 0.38065784370608596, + 0.504647034461797, + 0.5814629558542673, + 0.6461001190159485, + 0.5845260350631666, + 0.5564726695927306, + 0.4178668448648106, + 0.8186917195865586, + 0.7661465906756458, + 0.3131892022130726, + 0.5235274059487074, + 0.625509776645293, + 0.7988296062520305, + 0.5628659833287745, + 0.6679627543202707, + 0.7027295679811177, + 0.4312047567235485, + 0.5089499338370028, + 0.4829327017513328, + 0.406688785102235, + 0.4813113938246071, + 0.6388860728535534, + 0.7899312802517221, + 0.822806340000676, + 0.7886924946131856, + 0.6440705600125622, + 0.4537522961992684, + 0.5885018678006982, + 0.5576054139281238, + 0.7172735454502415, + 0.7797350133239196, + 0.8265032000768567, + 0.6807135899226634, + 0.6790945577670834, + 0.5912621954479373, + 0.4751059221782002, + 0.5875633602409491, + 0.5584848726376183, + 0.5905161045763169, + 0.7188729115417818, + 0.7032741057986827, + 0.6232588873549244, + 0.533689548311891, + 0.624088061738397, + 0.5491850662530151, + 0.5427971960246578, + 0.6350013152601218, + 0.6807997638942853, + 0.7187628170176668, + 0.3531485866494417, + 0.7648815485059425, + 0.7170380327865152, + 0.8237133745603042, + 0.6723278651199716, + 0.7035563906622511, + 0.5887430915503139, + 0.5639984964649106, + 0.5651503660899277, + 0.6151799043778167, + 0.6595513621326051, + 0.4472994116098345, + 0.6664483257069801, + 0.6263397625030124, + 0.44090941302734277, + 0.5705856892692719, + 0.6538427312450498, + 0.5349206212264813, + 0.3596682427502313, + 0.6492374569653917, + 0.6116203224279135, + 0.41832925818073674, + 0.6675228492567998, + 0.6662091020737652, + 0.6923005462605301, + 0.8051516665038552, + 0.4386579556444686, + 0.5123469945388818, + 0.5907491359999435, + 0.649167019882736, + 0.5261855764570598, + 0.422482182243677, + 0.5111680801127957, + 0.42066756739461125, + 0.6284975745567075, + 0.638560611816746, + 0.6766128148027927, + 0.39737562963479756, + 0.36635150137826783, + 0.4519119709326543, + 0.6016829609684314, + 0.6289189134855699, + 0.575623089434249, + 0.3372857412836566, + 0.47486134703214145, + 0.47362088533143276, + 0.7008259369857905, + 0.6869496419326802, + 0.51326922514057, + 0.47400412968145134, + 0.5566155777557299, + 0.6417956906680664, + 0.6456841789451363, + 0.6858029174851059, + 0.4646696753303334, + 0.6621245648551362, + 0.5016159818695426, + 0.5487270045986717, + 0.5246421373375684, + 0.47645176695900404, + 0.647452036089242, + 0.7827577095893662, + 0.6652421666408949, + 0.7720772747574902, + 0.5394681655600155, + 0.37932995277470544, + 0.4741382467889452, + 0.35161900431213583, + 0.9217667558518685, + 0.6603418651499614, + 0.5827642879363533, + 0.577812285766987, + 0.5421799006533815, + 0.5162211493053617, + 0.32011357931226625, + 0.5851190996389115, + 0.5948912437134323, + 0.7021896254349999, + 0.7244266852457241, + 0.4785825875351046, + 0.7719425108532915, + 0.6159626044807813, + 0.7556405916325464, + 0.41996269027109795, + 0.4904804477074322 + ], + [ + 0.887456876304408, + 0.6441208895828368, + 0.5190146923427799, + 0.5274323081347876, + 0.819202941239629, + 0.710779322757753, + 0.6251374903610077, + 0.7914053094501824, + 0.8163222060046423, + 0.6169517997543679, + 0.6604192228521674, + 0.8066933809612725, + 0.6410416580194047, + 0.8517455873155895, + 0.7129795246410832, + 0.9039953702472884, + 0.8448726679857965, + 0.7708363072409721, + 0.8846778388226304, + 0.5640888515944397, + 0.806051530034259, + 0.865892400235087, + 0.6159254920313337, + 0.740339965699504, + 0.8229604861009453, + 0.8803093612995074, + 0.503210575827252, + 0.704381646972877, + 0.8659946685968652, + 0.8497658874875009, + 0.8647838167037655, + 0.7059838739380419, + 0.7928221135702868, + 0.770968954302715, + 0.5450316953524992, + 0.9545537816694956, + 0.8003722877253557, + 0.4195731988311216, + 0.8795879048183933, + 0.8045998900903838, + 0.7427991063536263, + 0.6310240673913544, + 0.4709830908501847, + 0.4939158334152622, + 0.49886717020445237, + 0.5848540277630285, + 0.753955964596831, + 0.7114479293759688, + 0.5230246192267547, + 0.6668281895060663, + 0.770633260069127, + 0.716464379708044, + 0.868853692487843, + 0.9361671605278028, + 0.9621867960671094, + 1.0, + 0.9699299428069051, + 0.7949323123000044, + 0.40467988738149674, + 0.72536716032571, + 0.8961307150921166, + 0.7544205803766753, + 0.8961517996416912, + 0.9058403020169178, + 0.517546863178827, + 0.4777257447426395, + 0.7714700295847196, + 0.6240465451976659, + 0.7066115679044437, + 0.8354263886643052, + 0.7640186531635371, + 0.6984214368194865, + 0.6996698724104625, + 0.8483388034484916, + 0.7006476267279872, + 0.597483532380605, + 0.5582700486481833, + 0.6897045334785677, + 0.8661704142104745, + 0.7388859227792085, + 0.8177663685437148, + 0.5083899946900456, + 0.7102491355053938, + 0.6575145178810717, + 0.8347576820988758, + 0.8028586126496803, + 0.8049255029875874, + 0.6786053615547502, + 0.5952790006904443, + 0.7759513123942386, + 0.6961749574515557, + 0.6435639738815523, + 0.4338229262436107, + 0.6926916095590051, + 0.6013198118171247, + 0.8932628714853503, + 0.7313063590028898, + 0.817898187477209, + 0.6104032115585682, + 0.7114396868502069, + 0.6973388151660369, + 0.9172014350217965, + 0.7465775520794852, + 0.8209919983094062, + 0.7219263550988756, + 0.598767805726074, + 0.756113699139131, + 0.7654311863484795, + 0.6480135606153444, + 0.5931901252750374, + 0.7515421485376858, + 0.5944036363842401, + 0.7367380386544639, + 0.8189431856674573, + 0.8156528190393503, + 0.7452550732506074, + 0.8318749749537923, + 0.768790877687235, + 0.46077637282891265, + 0.6323491139923556, + 0.7024574721364134, + 0.6963331918675678, + 0.7963644475223765, + 0.8480489964200614, + 0.714115289084293, + 0.670364209576304, + 0.476330306414048, + 0.6450841853984247, + 0.47612860447692146, + 0.5620988735666312, + 0.6816028792948007, + 0.6944828249392276, + 0.6555885761974731, + 0.6453607117794328, + 0.577984876029559, + 0.8293838068852002, + 0.8247389157248504, + 0.46682950170760457, + 0.5178056778475884, + 0.6932884544620851, + 0.8584308293090898, + 0.6255826203133784, + 0.711535752682283, + 0.7670326225094514, + 0.5562881623281465, + 0.6513258030015697, + 0.547707498284184, + 0.466730094347702, + 0.49846472504305006, + 0.6804613743132046, + 0.8649625028372968, + 0.8622158603465819, + 0.8370922230922062, + 0.6939875914212799, + 0.5736910130302538, + 0.6491735522607474, + 0.5568400246512792, + 0.8036779126368193, + 0.8369579415729499, + 0.8694240084322514, + 0.7435263547575033, + 0.7375040026163078, + 0.6926433067605722, + 0.5426096754993066, + 0.6614215458704297, + 0.6206972936295332, + 0.6449441976593545, + 0.8016304268442209, + 0.7672636199841891, + 0.6988831029782083, + 0.6226020007943579, + 0.7118100456038386, + 0.6022022425161896, + 0.594719761966365, + 0.7089813957498055, + 0.628657755556031, + 0.7545434350430226, + 0.47362998557197666, + 0.8087525323638386, + 0.7571552755269816, + 0.8603286851855027, + 0.7328141345966451, + 0.7735861903542302, + 0.6549039113437123, + 0.6175029357001567, + 0.673919410883051, + 0.709765851802548, + 0.7242572768109178, + 0.5151841342565374, + 0.7296915780371289, + 0.684776944454637, + 0.5266305959812501, + 0.6504652565281072, + 0.7066391376879365, + 0.5618751804145525, + 0.4158531644475307, + 0.7526537541157279, + 0.6849831205649974, + 0.4900870812228222, + 0.7485520756178018, + 0.741745268406248, + 0.6852734860052343, + 0.802312486849331, + 0.4830188061519872, + 0.6079678434102712, + 0.6885974210424238, + 0.7238317175963415, + 0.630084872881005, + 0.5273616744435228, + 0.5801752017391466, + 0.5254779818592622, + 0.6581222735388254, + 0.6656289012427754, + 0.7429104229781444, + 0.49988187172206255, + 0.42733253887464256, + 0.5222095886204218, + 0.6549954836988057, + 0.6536186729629935, + 0.6399557704689066, + 0.41377838107501985, + 0.48108814570467284, + 0.5812024150967573, + 0.7641919328461885, + 0.6855508787272524, + 0.5865164065196895, + 0.5326774229357133, + 0.6207949099698149, + 0.6622443228156267, + 0.7201300793200741, + 0.7666641753806028, + 0.5512445454520741, + 0.7306723266734978, + 0.575860519130205, + 0.6608597674210801, + 0.6012580652777046, + 0.4720887208324097, + 0.6449800340593749, + 0.8253413960080772, + 0.7408046766656833, + 0.8559685456559059, + 0.6013802891279744, + 0.49179231450142413, + 0.4982727959007685, + 0.4654878780167113, + 0.9060803473474427, + 0.7128888217739959, + 0.5792820909966794, + 0.6071538740178636, + 0.6147484328107261, + 0.5187488266885714, + 0.3947936927804595, + 0.6722270053679442, + 0.6918548521673632, + 0.7625776361017147, + 0.7555130716480256, + 0.5468966154378615, + 0.7956963588725857, + 0.6836429792292854, + 0.8332201570183568, + 0.5286538826997444, + 0.512852164743049 + ], + [ + 0.9066805120376948, + 0.7115116990287899, + 0.6366768709365006, + 0.6754253585848163, + 0.9028018482546912, + 0.8194529013972353, + 0.7133579403725983, + 0.8279873766075214, + 0.8351546154074859, + 0.7095152407927446, + 0.7225176250658133, + 0.8163412863465334, + 0.7508473291103582, + 0.8779694615010439, + 0.8146028127289937, + 0.9243918435049082, + 0.8514695700798196, + 0.8476875880490876, + 0.9441004702946008, + 0.6931313891063603, + 0.8881834299062255, + 0.9154420775175766, + 0.7378418179179036, + 0.8467518795257352, + 0.8237424126809159, + 0.9336018937699821, + 0.6314213006951408, + 0.7716232099606664, + 0.917924260391354, + 0.8607027220654367, + 0.9166929931857615, + 0.7749326603166249, + 0.8653609230019201, + 0.8136419762907898, + 0.6948727295373088, + 0.975539430572507, + 0.8677567577486104, + 0.45457388593725734, + 0.8723513109728257, + 0.8456763962332968, + 0.8101964499780562, + 0.6927686463488261, + 0.536096187239804, + 0.6461020453995975, + 0.650047177720157, + 0.67647239347339, + 0.8164558739472719, + 0.8057387075510412, + 0.6671499783446043, + 0.7225644424747724, + 0.8368500631752662, + 0.7831347806275551, + 0.8918100666524174, + 0.9666433147913454, + 0.9197735984820694, + 0.9699299428069051, + 1.0, + 0.8472440058166142, + 0.5167757581907965, + 0.7705451373198536, + 0.8922294884654028, + 0.8361941742215343, + 0.900897712002343, + 0.9429066330332504, + 0.6376061088708562, + 0.6141977579003971, + 0.8491119988130466, + 0.7214137610311422, + 0.7859654863171455, + 0.8749764918445752, + 0.8408621704873468, + 0.7860900711711067, + 0.7667942216189447, + 0.8797843681559155, + 0.7932903702872037, + 0.7036934503578521, + 0.6618973466280759, + 0.7603009573840837, + 0.8965881402077425, + 0.7785088692965497, + 0.89193577817, + 0.5965189419679198, + 0.7054047260232701, + 0.7277656276987634, + 0.8717900024560513, + 0.8539587921000275, + 0.8734136066581094, + 0.7670084396330968, + 0.6597011610685187, + 0.8236666451490307, + 0.8012435063835834, + 0.760175389847394, + 0.5722975433418709, + 0.7878788080182058, + 0.7080729770618717, + 0.9084572469706024, + 0.7678087265683764, + 0.8664653919525696, + 0.7274013322640079, + 0.7948701272819527, + 0.8013700095772882, + 0.9403464897319691, + 0.7787208942750462, + 0.8756591758750393, + 0.8153894243188569, + 0.716682263271029, + 0.8419470234195198, + 0.8434381550521487, + 0.7338009028911057, + 0.69770777347758, + 0.802102767648025, + 0.6910029805808965, + 0.7863317334759554, + 0.8903273016098613, + 0.8645840711698438, + 0.8304048953506211, + 0.862400385594944, + 0.8677427188032578, + 0.5699563272511738, + 0.7292431416679525, + 0.7817166412550123, + 0.7406833966767571, + 0.8452767761625617, + 0.8697480236072003, + 0.754446469509968, + 0.7095866410516677, + 0.5417060010850389, + 0.7594387907461746, + 0.5858013013863458, + 0.6627845790373901, + 0.7506401182540784, + 0.7766370278661069, + 0.678372033624928, + 0.7053416278267528, + 0.6424313519136692, + 0.8846941530723194, + 0.8907439621260679, + 0.6110369721774306, + 0.5725467609088485, + 0.7862155427025095, + 0.9173364265545574, + 0.7403218385759853, + 0.7963578002394882, + 0.8437759984342136, + 0.6221943028583665, + 0.7829149509636262, + 0.6692728602706426, + 0.5528910910787038, + 0.5592507720191777, + 0.7314250530014925, + 0.8983982926395788, + 0.9008224099868194, + 0.8698779320788088, + 0.7500746369209197, + 0.698454430240416, + 0.7405485516034056, + 0.6118498707304888, + 0.8814201681502071, + 0.884215635754063, + 0.9110048197311719, + 0.829019910212366, + 0.8113340388304597, + 0.7929355355996186, + 0.6411281449584805, + 0.7505717284739222, + 0.7246206808161543, + 0.7234129990565207, + 0.8731091706101324, + 0.8570621957924819, + 0.7899734961069138, + 0.7339211992639764, + 0.8017338395598224, + 0.6782454238082314, + 0.6463630110465814, + 0.7921411909280309, + 0.6512463997264584, + 0.7944542245327302, + 0.5762566254181944, + 0.8527337533913234, + 0.8188596782683287, + 0.8778800303857632, + 0.8138972427086577, + 0.8244839992404771, + 0.7627120288714422, + 0.7277376801832999, + 0.7814043803216869, + 0.8170023172257935, + 0.7946291914746021, + 0.6163373979093042, + 0.7814731051665617, + 0.7560609726164476, + 0.6271080858674, + 0.7506735901771322, + 0.7805524788841096, + 0.6430078938366979, + 0.5265865585602373, + 0.8310812117341392, + 0.7533077797446647, + 0.5783843485070949, + 0.764288019863305, + 0.8209414673215876, + 0.7049893407134006, + 0.8279794654484613, + 0.5672227344801007, + 0.6922828238275444, + 0.7873081681622388, + 0.7961081450917584, + 0.7135614608595808, + 0.609734040897735, + 0.6720377790909453, + 0.6495423393556548, + 0.7232458113993591, + 0.7385422943263292, + 0.8265959141954362, + 0.6219304272933927, + 0.4899539342487322, + 0.6036333952062573, + 0.7328949213776468, + 0.7218061217879959, + 0.7320566263061985, + 0.5112206494007694, + 0.5216855671803545, + 0.6627843475555775, + 0.8456339409575978, + 0.7471953934751643, + 0.6764552659525512, + 0.6263466290214978, + 0.7090844149254955, + 0.731191891356493, + 0.7981622256956649, + 0.8307874326276101, + 0.6687979672818473, + 0.8214952035455894, + 0.6885113236004217, + 0.7693373033548501, + 0.5842254994874017, + 0.4936240189741188, + 0.6895928257245374, + 0.8813993795677015, + 0.798067487759439, + 0.8800296244142864, + 0.6695037998746775, + 0.5810420469242975, + 0.5893365325814882, + 0.5863626324734447, + 0.8890369617368903, + 0.7647879440490136, + 0.583171022723534, + 0.6319379853265866, + 0.6907513559193164, + 0.5624316417335747, + 0.5036028698375677, + 0.7679516627391956, + 0.768003429015091, + 0.8343294668932584, + 0.8129811559129133, + 0.6537401011695946, + 0.7735952562256997, + 0.766254504717469, + 0.8975302550860336, + 0.6682217615946555, + 0.6245906046407957 + ], + [ + 0.8379227960547818, + 0.6178741558830096, + 0.6725987107591745, + 0.7025342152099958, + 0.8148821004018157, + 0.6852460912672667, + 0.5185703362696882, + 0.8667123696743204, + 0.7099779942581955, + 0.630135796871678, + 0.5574110673257633, + 0.8000616588684272, + 0.8627703255028619, + 0.7129519479517942, + 0.8382571056811877, + 0.7839152148638704, + 0.717310999987997, + 0.8020787321119938, + 0.8452045310797369, + 0.6750634027965878, + 0.8681876856136789, + 0.749285632017853, + 0.76181918955978, + 0.6927736218705022, + 0.792676553701487, + 0.8625812227630519, + 0.7969297940758566, + 0.8037814951081278, + 0.6953064700151479, + 0.749380083641714, + 0.8898492353554125, + 0.7290983387274302, + 0.8055554549364284, + 0.749733843556382, + 0.7563406498010218, + 0.8978880262695255, + 0.8404163021094578, + 0.6370378753677273, + 0.877495092808874, + 0.9261985481858586, + 0.8443899277574565, + 0.8401058177243617, + 0.6279772265668369, + 0.7110292924997096, + 0.7819703892635047, + 0.6642717199071, + 0.8893443508132263, + 0.7258695565418993, + 0.8012195678697557, + 0.8724298497829469, + 0.7895921888734879, + 0.7674912419855632, + 0.7363457446794762, + 0.7949089576847715, + 0.771750133964136, + 0.7949323123000044, + 0.8472440058166142, + 1.0, + 0.5924343412124075, + 0.8281596363090746, + 0.7364708999561814, + 0.9264320800678074, + 0.7930740694855685, + 0.8401687784423284, + 0.7124694109978356, + 0.6851581678010379, + 0.7941111472349924, + 0.8123562060068891, + 0.7122853458517262, + 0.7765809623450152, + 0.7661899278706141, + 0.6431139915799221, + 0.787875115283704, + 0.9399354854035058, + 0.8369783483163525, + 0.8750724244980389, + 0.8644724314876522, + 0.8565683679542875, + 0.7988173908158898, + 0.9526792003217653, + 0.7553020289231234, + 0.5581610910737679, + 0.7923483513580466, + 0.9147204288420505, + 0.8901574311023699, + 0.8803201006549238, + 0.8594536845196669, + 0.6847988623944646, + 0.6016897336368094, + 0.7892169233689252, + 0.8806874762605902, + 0.7731950671522656, + 0.7447315732872212, + 0.89073720780772, + 0.8016476008626148, + 0.9192596944948593, + 0.8145192276771466, + 0.8154130195135603, + 0.7150313416356111, + 0.7042935999979577, + 0.8755220182576088, + 0.9036545292671385, + 0.8739103565237082, + 0.8180660368287875, + 0.874570641556137, + 0.5895148642860722, + 0.7461767815524654, + 0.8746277873749497, + 0.8089341391424429, + 0.8731986069675646, + 0.8730348093741833, + 0.7213851092607146, + 0.8926644404899157, + 0.9153379661972268, + 0.9493926054756691, + 0.8744831895672609, + 0.9262565608574448, + 0.8925823031019382, + 0.6701961377738077, + 0.8107709749066293, + 0.8755583949293503, + 0.9023968647935285, + 0.9221828913012018, + 0.8085396207342251, + 0.8705011626026004, + 0.8031151299566645, + 0.5027967562527623, + 0.8528493741443122, + 0.6953003572843546, + 0.8737867317230991, + 0.7646757637711026, + 0.7532213570522537, + 0.6423617306527927, + 0.7044627872070154, + 0.6040299227498184, + 0.9349915666288997, + 0.8743333519682609, + 0.7269675753600076, + 0.7615932504681219, + 0.8928198808662728, + 0.9260743422595905, + 0.8776844527238749, + 0.9287336379895516, + 0.8444554638418224, + 0.6021804584552796, + 0.7602300286558901, + 0.7784998688313597, + 0.7053826424033725, + 0.6421795929265776, + 0.8260626036213293, + 0.9107081577163756, + 0.890045432582665, + 0.9293291069477785, + 0.8251760260268158, + 0.7891402992296764, + 0.8778822331357393, + 0.7720415919238257, + 0.8440526692257945, + 0.811391281058863, + 0.9293417366907688, + 0.880503912721829, + 0.8579148426006642, + 0.8232775410372147, + 0.7935815602163125, + 0.8705426711054237, + 0.8922445223819284, + 0.8561763644823454, + 0.8866352294877985, + 0.9123991725860503, + 0.8967842837689914, + 0.823269215499925, + 0.8477404038649118, + 0.7873765690606817, + 0.8735091492132473, + 0.9255482616134173, + 0.7016749216370376, + 0.8707912116906913, + 0.7302574516047206, + 0.7844449317258888, + 0.8763708188345875, + 0.8200348035782182, + 0.9045210764203891, + 0.8721343919286105, + 0.9084982935678794, + 0.8708398371585265, + 0.8554239371828957, + 0.8765667571469674, + 0.8894459147266565, + 0.7879734798160092, + 0.8815892876926621, + 0.9069473576791754, + 0.8550935847928817, + 0.9034884771509221, + 0.9205388130613206, + 0.8801455640363312, + 0.6962590944638295, + 0.8530670449085905, + 0.8592236687526312, + 0.849993857220067, + 0.8216372877663524, + 0.86048477515607, + 0.7780079834437573, + 0.9091784698587217, + 0.8379206652806019, + 0.8355364588505492, + 0.9061428021153374, + 0.924888866775547, + 0.8427061121857546, + 0.6039690336725722, + 0.8454776028978517, + 0.7394650023366868, + 0.8414782671307506, + 0.8765168921051637, + 0.8702447063169371, + 0.7877231224577573, + 0.7343749827146552, + 0.8048240597922008, + 0.8900359372316635, + 0.8725052556201579, + 0.8978320587172942, + 0.77104943937409, + 0.6826507441880268, + 0.8645018649168825, + 0.9186475306457854, + 0.8357636792425248, + 0.8344592293992719, + 0.8570892301696277, + 0.8596727642997735, + 0.631358634946275, + 0.8631461896805884, + 0.8648919580898876, + 0.83999560818259, + 0.9243765822899722, + 0.8480523680194754, + 0.8673825714717469, + 0.6743276932285525, + 0.7711315532469787, + 0.8728770052770525, + 0.9590451041082599, + 0.9153860118628009, + 0.6867217930590789, + 0.8729378486303899, + 0.7727377483823747, + 0.7420222009730746, + 0.7136101311558166, + 0.8327495977788626, + 0.6255522748634484, + 0.7279423263356931, + 0.6896827361197566, + 0.815446376044499, + 0.7409474566200871, + 0.584357223233654, + 0.7831377201997154, + 0.7387149711790567, + 0.715302872804923, + 0.903898964284149, + 0.8427306595889371, + 0.7699883810064932, + 0.5378370119402759, + 0.874519150549999, + 0.7632319429677923, + 0.6789811813268447 + ], + [ + 0.34423396606697104, + 0.28204827770435265, + 0.4392836411842665, + 0.8282590892769611, + 0.6806055664289105, + 0.6591477737368446, + 0.38527446849796954, + 0.37548054557816346, + 0.47586626611917626, + 0.4931635125671012, + 0.2853753825449693, + 0.43895765343562987, + 0.5727111216597089, + 0.5205688062761146, + 0.6231700983994297, + 0.6832527200830676, + 0.46048323880410286, + 0.46165449575113643, + 0.6889829872722563, + 0.6338652490723155, + 0.5086172271447443, + 0.6071287419220817, + 0.5679668971694921, + 0.5734388105481703, + 0.4487029649459208, + 0.6415942651047638, + 0.5368517982321702, + 0.46797088294781874, + 0.6142458329176703, + 0.476942923032386, + 0.5564198403040674, + 0.47794107615802994, + 0.404279876808135, + 0.3512096813257207, + 0.6615922432194676, + 0.5711044264627413, + 0.44439044054303484, + 0.5606740490099811, + 0.43510153511851424, + 0.5736248991367675, + 0.5028526294107668, + 0.6549930594584663, + 0.5909459942572244, + 0.6013466837323665, + 0.6755651971849689, + 0.5942235828443497, + 0.49663527294713955, + 0.5643815855039658, + 0.6768333655976754, + 0.5098557712612656, + 0.38435664633033084, + 0.7683591252304012, + 0.6161548563995265, + 0.49182028186940036, + 0.32520001855333674, + 0.40467988738149674, + 0.5167757581907965, + 0.5924343412124075, + 1.0, + 0.35773500627610755, + 0.4749469012217267, + 0.6845898849230548, + 0.5096909678166822, + 0.5721600773958715, + 0.557444695206822, + 0.7417036207156971, + 0.6896424629715722, + 0.6616318662416226, + 0.2800172742380884, + 0.32713376091081947, + 0.5972533200451429, + 0.7217905076661115, + 0.5166570342708181, + 0.5208446868661513, + 0.5923219190004794, + 0.6685162303681313, + 0.6551144144031457, + 0.7539240939647913, + 0.4007870370827707, + 0.6150171661467587, + 0.43141221619373715, + 0.8487027725276811, + 0.3234812569078259, + 0.7120077928763472, + 0.5128823874680154, + 0.41499327466606367, + 0.6239996239617223, + 0.8487405910910999, + 0.819553551875134, + 0.7615613973839547, + 0.577705537329578, + 0.581062382353985, + 0.7236235808767437, + 0.6117563031619718, + 0.7020921178988139, + 0.6546331448862016, + 0.45597147919538755, + 0.7672449587553222, + 0.43890106461793815, + 0.31728945295951533, + 0.633563587135921, + 0.628646299313632, + 0.6519252185319493, + 0.7422784646678235, + 0.5524226909153824, + 0.4590940028227841, + 0.7701481589412316, + 0.5315710590929201, + 0.8134420244939872, + 0.6431976449140135, + 0.5458415695280852, + 0.6970187199664025, + 0.46447013348865807, + 0.5799578641722904, + 0.6561841665158142, + 0.7298291333117657, + 0.5222814557800806, + 0.5616671053466914, + 0.6680132123498225, + 0.6363466411198195, + 0.6823967074314851, + 0.6248736011697368, + 0.547067253362202, + 0.4050185043937096, + 0.6646919234871141, + 0.6271087899204468, + 0.7958284997861794, + 0.6057448994596335, + 0.8716096521233827, + 0.6162778623437968, + 0.6852559483798307, + 0.7058453075438071, + 0.5576324514825581, + 0.7788639831432925, + 0.428489430619556, + 0.49151646404717697, + 0.610625069150193, + 0.6646875729013474, + 0.4731928352489626, + 0.6834589959214508, + 0.6554131353557322, + 0.6253028160144259, + 0.6380824773844023, + 0.6125129056053858, + 0.7767170292582461, + 0.6636475740354697, + 0.7538788088580503, + 0.5544358079321653, + 0.4724381748606461, + 0.36308905011315235, + 0.49812198844381356, + 0.49755655259467324, + 0.493746912305636, + 0.44765575097763205, + 0.7206477592865154, + 0.7197651432136664, + 0.47880147782517785, + 0.6958318328760205, + 0.4693570238418681, + 0.5404405342663691, + 0.5915765253545697, + 0.547584881338227, + 0.6338858461708609, + 0.4838670617157563, + 0.5157388780342449, + 0.5822930909922964, + 0.4968826362885984, + 0.7108614355799846, + 0.6909377790045761, + 0.7235141828836955, + 0.6944758058485585, + 0.6688172810353581, + 0.7426325032061236, + 0.6724064470490839, + 0.6672108314831527, + 0.41912526855965243, + 0.5584444441588406, + 0.6916311575694837, + 0.31224478537350864, + 0.6127839376281417, + 0.657718391367447, + 0.6699323947088319, + 0.5726083636073043, + 0.6071942668644115, + 0.5370512370524307, + 0.6149535649212532, + 0.6500618909506747, + 0.5145638081675505, + 0.701784518632575, + 0.4266883125710419, + 0.5882444921163913, + 0.532079605762757, + 0.6789176347351975, + 0.6142773029788033, + 0.6481215738807286, + 0.4875970468369465, + 0.6406151054456248, + 0.606559533931273, + 0.6153058181915376, + 0.671381178576428, + 0.6255371412128911, + 0.5265393581859314, + 0.612726582186852, + 0.6187442920004742, + 0.5232171218949851, + 0.6211406258651421, + 0.7264190865712853, + 0.8214150451108114, + 0.8169503836232566, + 0.7022995210560009, + 0.4686640784880267, + 0.4720370787448853, + 0.5004336003925816, + 0.7066019196532953, + 0.7574553693065514, + 0.7550176145806434, + 0.700036350883649, + 0.5268610308029253, + 0.46481118169020724, + 0.7130453154743132, + 0.6259793902647703, + 0.3597453503526747, + 0.628059899759186, + 0.6173438166973313, + 0.65203921412315, + 0.6940916452256646, + 0.6316826498848426, + 0.48918456703362323, + 0.2717307019293722, + 0.5013521106147533, + 0.6607360970821671, + 0.6183956777913047, + 0.6841554948621027, + 0.7461946892465674, + 0.6405635005850869, + 0.4806745681028192, + 0.5609068457241566, + 0.5182930491946006, + 0.5909540868583384, + 0.5119651648862961, + 0.22553768949796324, + 0.6593629663197687, + 0.5747606550370394, + 0.8777811504587744, + 0.48238902259272537, + 0.38745760742512886, + 0.23744519182630183, + 0.571558291351487, + 0.4699692419739825, + 0.4812996495519291, + 0.418506629606878, + 0.9214722953475939, + 0.8558595081171435, + 0.6689806809410381, + 0.8056864040289318, + 0.5459978956094603, + 0.7764323035884401, + 0.529273139098633, + 0.22290667766631894, + 0.6689119816336465, + 0.6353263806846344, + 0.6170059265452302 + ], + [ + 0.8506454621798658, + 0.7084639671791216, + 0.6924270345680982, + 0.5668637532847238, + 0.7540804957735608, + 0.7099943049629885, + 0.6066243447162725, + 0.8380416638530431, + 0.5736614226821893, + 0.7199749763251228, + 0.6483016617971177, + 0.8171007285141016, + 0.7711986181761703, + 0.7658682950330034, + 0.7792991053809715, + 0.6434793097174635, + 0.6278958244659596, + 0.8223698696197447, + 0.7480607130244821, + 0.7016534078884199, + 0.9054215659858428, + 0.6823404635550355, + 0.7893356327303326, + 0.711959982201001, + 0.6422639694014134, + 0.7578611691371356, + 0.7886883357247361, + 0.831553464098619, + 0.6772655336533976, + 0.6568952531572817, + 0.7624410528034486, + 0.7256912157996982, + 0.860718634642251, + 0.743860605273495, + 0.7498260411331874, + 0.8240652666684922, + 0.9298934969649642, + 0.30583057813913433, + 0.7015177889276613, + 0.7720378618432309, + 0.7335022918060353, + 0.5689664818696993, + 0.24155812550846564, + 0.7329422753960344, + 0.6858480273814913, + 0.779131051462229, + 0.9001084041354257, + 0.7201769854814476, + 0.7627892766310093, + 0.8482998108873898, + 0.8745468616028863, + 0.6696731232740802, + 0.5806466792173809, + 0.7486413503854878, + 0.6684065958407536, + 0.72536716032571, + 0.7705451373198536, + 0.8281596363090746, + 0.35773500627610755, + 1.0, + 0.5823522483353162, + 0.863917737108561, + 0.6310745080585631, + 0.7467710669861378, + 0.6840709524152314, + 0.44152504234490586, + 0.7878208043900679, + 0.8161408933240432, + 0.8462506908625759, + 0.8386873911112681, + 0.8133381993304972, + 0.6533782674607621, + 0.7943915784463722, + 0.8237943898891805, + 0.8846482724778941, + 0.7912175492780531, + 0.7857333380388325, + 0.6641314848146189, + 0.711015391291202, + 0.8372304287534077, + 0.7784433566392961, + 0.379844393711834, + 0.8803753679277114, + 0.7945386407565416, + 0.8637178916400585, + 0.8720224211293027, + 0.8165268892649915, + 0.5394559319920741, + 0.447890987270546, + 0.6540319799195465, + 0.848500779244526, + 0.7827784883217175, + 0.7357879520045175, + 0.8660592064443097, + 0.8102154364886893, + 0.7330806685957506, + 0.8186824742296851, + 0.7247012503446617, + 0.8132127000179796, + 0.8368861627951222, + 0.8801166903840943, + 0.7801526757542558, + 0.6823684587746361, + 0.7566110695385815, + 0.9056243280857131, + 0.6053396116460797, + 0.6740519843741813, + 0.8423143651588112, + 0.7277750764054521, + 0.8410404075627035, + 0.9093469890306993, + 0.6268429402327163, + 0.8501610756819215, + 0.8317757815033437, + 0.8658205735570212, + 0.8103598569436452, + 0.9044257598290454, + 0.8913171204710881, + 0.6456312576739701, + 0.7892871831876589, + 0.841876676215822, + 0.8771018792707485, + 0.9094809132176155, + 0.723388079872824, + 0.6506358278965725, + 0.7132347837288389, + 0.3930106668452959, + 0.8363278375295927, + 0.5152621684097383, + 0.7488623710944431, + 0.636059091649571, + 0.6439320326413208, + 0.5103698660378969, + 0.556945975698779, + 0.5649296738052221, + 0.8972395718569148, + 0.91057931387125, + 0.7324258816964146, + 0.7923343067455304, + 0.8711172614346985, + 0.8528431807462657, + 0.866736519080014, + 0.8459676337252894, + 0.8917105777658372, + 0.4105276352570165, + 0.734228367153212, + 0.7846122514016715, + 0.7840723624999951, + 0.6905722269014022, + 0.9386803788778031, + 0.9042536081249395, + 0.9202710490162145, + 0.9051135553122203, + 0.7143606100016435, + 0.771959764003935, + 0.8163902147275733, + 0.8104866049348194, + 0.8330596132472902, + 0.8294181271254913, + 0.8899953138036228, + 0.9101672669042611, + 0.8963257486346875, + 0.8229459785949579, + 0.8694003294064213, + 0.9212696887221041, + 0.9056439100425324, + 0.9157267396125943, + 0.8360825118774285, + 0.8660427003391874, + 0.8488382051564975, + 0.8091026218753072, + 0.8376951433492503, + 0.5822734952323484, + 0.6303271137213599, + 0.8563151164952791, + 0.5600718190993368, + 0.8801036216436185, + 0.7817841192197463, + 0.8822110485884026, + 0.8465060039831378, + 0.7376989748710545, + 0.8814485208584214, + 0.9137892327700629, + 0.8893883944922748, + 0.8768589286353454, + 0.8370667622504547, + 0.8613362046742236, + 0.8629053819933549, + 0.6337637271721415, + 0.8917479147736085, + 0.8880389904454189, + 0.8732048543808292, + 0.8443443548372547, + 0.8882524930638981, + 0.8085675953762135, + 0.7421652245306581, + 0.7927164087499283, + 0.8523866920564509, + 0.8204012563288365, + 0.6355531619428982, + 0.8846927415335828, + 0.681051509391294, + 0.7901984405766012, + 0.7766147722246756, + 0.9231078958218579, + 0.8417213753102973, + 0.7435007823264794, + 0.722894836568378, + 0.5008416633692337, + 0.7819257884648285, + 0.7976075392928194, + 0.85965468788698, + 0.8826516476667216, + 0.7719367351891911, + 0.7819475780340354, + 0.45555946402195796, + 0.7280627173646892, + 0.9024945392257258, + 0.8885189556057924, + 0.8475580183286727, + 0.7294686855624862, + 0.7145441349937612, + 0.8112633272664879, + 0.8232339656507244, + 0.8152928711954219, + 0.5936611362509021, + 0.8270873567849789, + 0.815505149776418, + 0.7005950897899761, + 0.8929589434081578, + 0.8622172261060164, + 0.853278647577608, + 0.8947416673287487, + 0.8131023520580902, + 0.8778379206895779, + 0.47826976661957665, + 0.5339232326068674, + 0.7901195725608099, + 0.8633113670929268, + 0.9356362953650983, + 0.768271450119786, + 0.7789340649238446, + 0.7100912269036534, + 0.584816389582056, + 0.8172351610822401, + 0.6883102827054437, + 0.6048380113780537, + 0.6792290539142368, + 0.7116572764798187, + 0.736875281351163, + 0.7978076939362073, + 0.4313965029025832, + 0.6259027772660819, + 0.4932844798503562, + 0.567950255650784, + 0.7430300764261757, + 0.7564051609362727, + 0.6642868712316268, + 0.5765483181512311, + 0.8717374225890908, + 0.7843487836753369, + 0.6577033410641365 + ], + [ + 0.8118099420808538, + 0.5713693176859367, + 0.5187451995987683, + 0.6351484821221123, + 0.7217311391826077, + 0.6294421352608708, + 0.6262372033194736, + 0.7248153783666774, + 0.9435153749612017, + 0.6537540546532521, + 0.6524467508399314, + 0.6549683062817137, + 0.6146398494600168, + 0.7376579097050467, + 0.7551092666563156, + 0.9020202954488857, + 0.9012461515579017, + 0.746295535258418, + 0.8444040393284934, + 0.5959456770517838, + 0.759468004341591, + 0.7941156670144032, + 0.5293097708868677, + 0.7315541953703755, + 0.8794677912397104, + 0.7935520028719082, + 0.395968016097576, + 0.6720281297654658, + 0.8134060581624667, + 0.8114364601495672, + 0.8432262282912312, + 0.6291132972674205, + 0.6594415843059748, + 0.6191363070521949, + 0.5645614068773404, + 0.8756755067033118, + 0.6920894781209436, + 0.4272806807542655, + 0.8640999521025049, + 0.8152587372085319, + 0.6339530280611101, + 0.5619725948989766, + 0.44703242931879317, + 0.4755337283294559, + 0.507673826277687, + 0.5579424141646663, + 0.6744571405503055, + 0.7231317412202696, + 0.5435131437029611, + 0.6230499840835176, + 0.7668671265211575, + 0.7317886917012772, + 0.8677169646983072, + 0.8528948200795302, + 0.8623154612413273, + 0.8961307150921166, + 0.8922294884654028, + 0.7364708999561814, + 0.4749469012217267, + 0.5823522483353162, + 1.0, + 0.7345595276359669, + 0.9331749719097326, + 0.8605068384538875, + 0.5134862276361309, + 0.5976960986777264, + 0.7476137037308183, + 0.6002009815128766, + 0.535082480976642, + 0.6838579395945897, + 0.677509654169159, + 0.7062127488324991, + 0.7339112122774396, + 0.8548989363968095, + 0.6266982801418474, + 0.5721841616634297, + 0.5147126824130357, + 0.6296030778699749, + 0.8566063474507969, + 0.6970508764192208, + 0.705514826621661, + 0.6054990348341481, + 0.6563081472040815, + 0.6328542688877983, + 0.8017817014665518, + 0.7627079798539315, + 0.8357612941635052, + 0.7473159399104576, + 0.660547080065378, + 0.6710055377945, + 0.663578844655777, + 0.6019388824702256, + 0.3659793973020604, + 0.6015597945739908, + 0.6123725946006104, + 0.8827009327833897, + 0.7142250285538696, + 0.7537212492426609, + 0.548451464302649, + 0.5740112043438046, + 0.6017433624894637, + 0.8922878739550766, + 0.8392509845110736, + 0.7482373055655271, + 0.6292174245278072, + 0.6638068516250915, + 0.731819194218142, + 0.7556330987047031, + 0.6416975214238171, + 0.5562516773528698, + 0.644503827511512, + 0.7440816645111177, + 0.7249512073419433, + 0.7961337928819424, + 0.7720535376326847, + 0.7428849796274921, + 0.7104369125627422, + 0.7238331418873705, + 0.6389319884415238, + 0.6254125650030415, + 0.6123253267255798, + 0.6560387237277042, + 0.7415771458217235, + 0.9216197289812428, + 0.8299449453411667, + 0.786400789114637, + 0.5442315795665867, + 0.5684130495798163, + 0.6070234581052534, + 0.4907596313553917, + 0.834830611237058, + 0.7811125907911896, + 0.8389674502630228, + 0.7827825620254055, + 0.6065088075423298, + 0.7551272160058974, + 0.7507401089537553, + 0.522411952965914, + 0.42815932357655534, + 0.6406627770181813, + 0.7899774777302266, + 0.6286832927343217, + 0.6295248274782481, + 0.6992190950285494, + 0.6239540365679577, + 0.6644168277436396, + 0.47705106436810857, + 0.3483341790652967, + 0.3897547396876619, + 0.5240177561081143, + 0.7526288932405389, + 0.7278327856549871, + 0.7256347436921056, + 0.7919158230847941, + 0.5815658189573458, + 0.6227046188169392, + 0.5023474019998156, + 0.7983617261306675, + 0.8667256661553789, + 0.8421769105945079, + 0.7134444637318229, + 0.6349679784524649, + 0.7369386778173076, + 0.45738587435258454, + 0.5826366100139696, + 0.5861036287047098, + 0.557137849634929, + 0.8024906789505796, + 0.7197675505578919, + 0.7110831050017862, + 0.6218978399872035, + 0.6525685801110583, + 0.7408305862360406, + 0.5153826730361687, + 0.6802059675225235, + 0.533219918375419, + 0.7012398898124694, + 0.352815338402564, + 0.7229019408850872, + 0.7416615396181064, + 0.8539239119784263, + 0.6702788282418871, + 0.6522859886503066, + 0.6135117301984764, + 0.531467438863497, + 0.6724732405322339, + 0.693312037923859, + 0.7520220318350925, + 0.6712424465720845, + 0.6731488896498178, + 0.6578017556816467, + 0.48633568181037, + 0.6301579870369624, + 0.6281166937100164, + 0.5277175087955069, + 0.39725761656289604, + 0.7530950443364596, + 0.6891228982813682, + 0.3972379105670731, + 0.6503698025696444, + 0.6609341404924298, + 0.8036255070476375, + 0.7555673387661039, + 0.43376966013946083, + 0.5433989934054346, + 0.612042891186699, + 0.6808934522551814, + 0.6882406168437974, + 0.5964168136950823, + 0.5288763472575682, + 0.4540779714926306, + 0.5469526277043408, + 0.5595609275935637, + 0.7897581984723571, + 0.5348887200195249, + 0.501760785708497, + 0.5836732600941116, + 0.6349894972045534, + 0.5438335940869525, + 0.5839416784596784, + 0.37779432343697034, + 0.3201453032984766, + 0.5283427369097372, + 0.7276404021767245, + 0.7050778117533619, + 0.7138253633899865, + 0.4803065477340309, + 0.5056904310348617, + 0.6912199173775776, + 0.7306182260205323, + 0.7205214403893486, + 0.5600854487875789, + 0.6909251906384167, + 0.6196015097646662, + 0.6046800441939507, + 0.480711552462809, + 0.41080414953926336, + 0.530234930097221, + 0.7439203493855046, + 0.6088309262714087, + 0.7503750834596042, + 0.5055994375540876, + 0.4148560649302823, + 0.5520846482125988, + 0.4038124583372326, + 0.8985458888774874, + 0.6940905120716132, + 0.5121424391089344, + 0.46590359129944164, + 0.540349934791871, + 0.46758202241846086, + 0.4432264844142715, + 0.6338245622237081, + 0.7203487110075083, + 0.6711316065575823, + 0.780493301787485, + 0.5308309573633833, + 0.7180989868987839, + 0.683349324891667, + 0.7632835938053538, + 0.5525008086561745, + 0.4817147336313128 + ], + [ + 0.8055733768213393, + 0.6507641387820848, + 0.7599489483568909, + 0.8139131528068129, + 0.8551126385371973, + 0.7849386555451994, + 0.6484218295487525, + 0.868505326237049, + 0.7285214782530076, + 0.8137143985152608, + 0.6844789171657788, + 0.8008656336260744, + 0.8394606063253115, + 0.7377521325446404, + 0.9292460688515706, + 0.7994607227977754, + 0.7429545193063654, + 0.869405949725186, + 0.8858868962380176, + 0.8235953220160359, + 0.9202850220564704, + 0.812593866930535, + 0.8796553590665518, + 0.8032568671494149, + 0.750356503976786, + 0.8715434814146786, + 0.8428704168429761, + 0.9186089746519941, + 0.7724919564186651, + 0.6948759877958455, + 0.8597135533019928, + 0.7304198380876763, + 0.8543710157654714, + 0.7747304079486544, + 0.8792446186103673, + 0.8963987836620925, + 0.8926708090577137, + 0.5229218123183519, + 0.7731385905799463, + 0.9247855874543288, + 0.8498147603546068, + 0.7511160600676462, + 0.5103871736306285, + 0.8347690913289707, + 0.8539666106553562, + 0.8330733725178233, + 0.9032015432087845, + 0.8337576444213173, + 0.9083634752000876, + 0.8756988161527571, + 0.8804897742763504, + 0.830254929695508, + 0.750481408411487, + 0.7953367737115026, + 0.6713108668588273, + 0.7544205803766753, + 0.8361941742215343, + 0.9264320800678074, + 0.6845898849230548, + 0.863917737108561, + 0.7345595276359669, + 1.0, + 0.7953041713365882, + 0.849144701026448, + 0.8431119406031792, + 0.728985191563323, + 0.8744356965382408, + 0.8935948288754716, + 0.7081956788610447, + 0.7413982763046003, + 0.8251611037108053, + 0.7616993122515804, + 0.8828855490402966, + 0.9124478182861634, + 0.8939117081827429, + 0.9247624179522236, + 0.89774767175783, + 0.8484379984066751, + 0.8131322541582675, + 0.9393968308894451, + 0.7561909354492805, + 0.6385223983252565, + 0.8473721683061715, + 0.9277458771334117, + 0.9107488878664006, + 0.8603768153540292, + 0.9249029611839035, + 0.7921968015228513, + 0.6967012905289348, + 0.7958542361854714, + 0.9366684941692716, + 0.8571650969677266, + 0.8078509125581429, + 0.8847553599014695, + 0.9239054307982629, + 0.8778493100099406, + 0.8408427462338588, + 0.8519781650388242, + 0.7934151162447272, + 0.7482250870898552, + 0.9219040185580282, + 0.8995052604176268, + 0.8730267880750358, + 0.852136672022261, + 0.9136262076980194, + 0.7381982679526671, + 0.8270194710359217, + 0.9170148785077021, + 0.8556364881825628, + 0.9412947926601343, + 0.8929381486795236, + 0.8713337554811215, + 0.8888956560082424, + 0.9093367466324729, + 0.9508421680235603, + 0.9523974670278806, + 0.9133464564380716, + 0.9389477491017452, + 0.8257934122530511, + 0.8967691824987764, + 0.911683901463989, + 0.9286879727274303, + 0.9233980446855494, + 0.8281988026497319, + 0.8824140107255702, + 0.8689977996734635, + 0.6466664965726915, + 0.9166715865967676, + 0.7950146752108525, + 0.8464340077745659, + 0.8876595941786602, + 0.8680143366923951, + 0.7262543214901598, + 0.8215670020922761, + 0.720718670953123, + 0.9151761604332836, + 0.9126736124381286, + 0.8705890041585548, + 0.8069883353282068, + 0.9591575401182356, + 0.9475693658967832, + 0.9575065757579192, + 0.927500871434653, + 0.9274649779651074, + 0.6751509879026965, + 0.8922915178957485, + 0.8871786585035478, + 0.8019132302883313, + 0.7018228246580774, + 0.8318006591510697, + 0.9072528163652128, + 0.901050393075874, + 0.9277121537685645, + 0.8029567203716395, + 0.8775344653505326, + 0.9376764385866148, + 0.7925772854989793, + 0.9345139194648221, + 0.8573874695925003, + 0.935788029092917, + 0.9342225187474394, + 0.8942280450226601, + 0.9187364516750193, + 0.8265675046409637, + 0.9225319655084468, + 0.9245837345180419, + 0.8788220023482466, + 0.9495931024127269, + 0.9401026845474995, + 0.9540033548267894, + 0.8969444329612668, + 0.9013337401431453, + 0.7939204590893886, + 0.8015518123098243, + 0.9452751130683616, + 0.6257453901171938, + 0.882398882780371, + 0.8551282669798874, + 0.8091679337682193, + 0.8950149216496179, + 0.8106202915867426, + 0.9160844047800552, + 0.8950437336380872, + 0.9420103393428025, + 0.8802611958098757, + 0.9110985342438849, + 0.9391570227007211, + 0.9254045510522282, + 0.8532824691367109, + 0.8599733653937521, + 0.9522607555809105, + 0.9046271576907949, + 0.9444736313666705, + 0.92188129470572, + 0.8991012394660802, + 0.7162988159272581, + 0.9201938683773263, + 0.8961250050452437, + 0.8886136433373995, + 0.7752795302255505, + 0.9238637121660788, + 0.8054787005047184, + 0.8776041207328122, + 0.8765028417038547, + 0.9107423767662325, + 0.9127558825913155, + 0.901799572189891, + 0.925193058303235, + 0.7237068630439374, + 0.8781311812464838, + 0.8192532958163493, + 0.8779336336436533, + 0.8828950892073404, + 0.9355284981502869, + 0.9196454036233341, + 0.6980083070948265, + 0.8202617799929057, + 0.9112877571334197, + 0.8598728822108828, + 0.9204824255137354, + 0.8074758466461875, + 0.6730188907133935, + 0.905432753801011, + 0.9302931054857777, + 0.8388334669509127, + 0.8325347056223161, + 0.9038753889330637, + 0.8380510112046956, + 0.6597612127527962, + 0.9034740050094958, + 0.9113379943015883, + 0.9155714914506753, + 0.9618103727328783, + 0.9206412599093843, + 0.9338132640782664, + 0.6024090761703779, + 0.667467303772932, + 0.8526501377497963, + 0.941280544263657, + 0.9171253817501143, + 0.6969117132859033, + 0.8866411533305505, + 0.8305928245555311, + 0.7674017348086022, + 0.7935988458074599, + 0.7541431042131437, + 0.6345804776532645, + 0.7321775437847365, + 0.6995064740644595, + 0.8245731983974545, + 0.7821244070539661, + 0.6722171357800587, + 0.8257136364079107, + 0.7617958011274947, + 0.7546509143697919, + 0.8965971150824207, + 0.9097517901634488, + 0.793166015817056, + 0.6232583280162449, + 0.9112204980704015, + 0.9087041878189989, + 0.6390756411841638 + ], + [ + 0.8280382329570498, + 0.7067344872599818, + 0.6696936826759521, + 0.6448350963299377, + 0.7591866345586774, + 0.6956365202994269, + 0.7255330612458094, + 0.8312112685293284, + 0.9208458965407557, + 0.7046607883353482, + 0.7010377404555701, + 0.8115353301975062, + 0.7402699335738446, + 0.7408752993815716, + 0.8466879889472415, + 0.9101373294704301, + 0.9101742153803245, + 0.8350684990873375, + 0.8588580261960839, + 0.677481949827365, + 0.8041442639581744, + 0.7950556333547838, + 0.6841326182874066, + 0.7812557455832898, + 0.925930083446476, + 0.9002512849934593, + 0.5517015242782155, + 0.8086976648808691, + 0.8378532258714413, + 0.8642152328662014, + 0.9206250785419644, + 0.7712002305798539, + 0.7538187090934307, + 0.6888566087982958, + 0.6410582799726992, + 0.9018235009431109, + 0.7301569174794968, + 0.38706314513598894, + 0.9129512486511601, + 0.8136620713075507, + 0.7985847015412372, + 0.7284355103026109, + 0.3965191284798657, + 0.513093803729504, + 0.6139887322808815, + 0.6279250924275613, + 0.7017347488091729, + 0.7662512932467274, + 0.6095364733371785, + 0.5704526686243135, + 0.7718159097323998, + 0.7758405089138461, + 0.8205145146664049, + 0.8907326428616055, + 0.8548226982321125, + 0.8961517996416912, + 0.900897712002343, + 0.7930740694855685, + 0.5096909678166822, + 0.6310745080585631, + 0.9331749719097326, + 0.7953041713365882, + 1.0, + 0.8942161642994666, + 0.640690554276565, + 0.6316261916642483, + 0.8031679904022548, + 0.6144577068067719, + 0.5955852580574668, + 0.7304921958184665, + 0.6847608852573328, + 0.7590774251260737, + 0.8436212895281306, + 0.8834534213958405, + 0.7002984267804607, + 0.6344123225386101, + 0.6036995366415626, + 0.6821868621489122, + 0.885804990145444, + 0.7699072064095386, + 0.7346050150938608, + 0.5185942451585682, + 0.6962656304208115, + 0.6658878589788395, + 0.8798285191052397, + 0.8424024878282761, + 0.8965778710053963, + 0.7570446774185222, + 0.5717770162599259, + 0.7777827514422414, + 0.7914922151763503, + 0.6192165779906194, + 0.44081654227623485, + 0.6834037718306742, + 0.6685237768874586, + 0.9210979013474904, + 0.8316689239323124, + 0.7508663517021821, + 0.5876985057258979, + 0.662338411380389, + 0.6896541209349746, + 0.9010204836997547, + 0.8682788991706964, + 0.7378398743589442, + 0.7236272654507581, + 0.7091997913148789, + 0.7213849231933286, + 0.7628301235673647, + 0.6628606921988521, + 0.6464194594547392, + 0.626696868110862, + 0.7395051710632831, + 0.8326686707825973, + 0.8701429099151647, + 0.8241517150232999, + 0.8131353382208621, + 0.735828846920359, + 0.8080877360640863, + 0.6663898526451082, + 0.6327653401439873, + 0.6915654277348171, + 0.6931037132319307, + 0.7953246439776178, + 0.9152201286040362, + 0.8420672708386021, + 0.767143248330128, + 0.4858638682036666, + 0.6663515213565938, + 0.6275978776101974, + 0.5681582807589655, + 0.8417635025044022, + 0.8285919052562036, + 0.8123827760099279, + 0.7529661612585947, + 0.7153077218201278, + 0.8176977785063234, + 0.7438827519993925, + 0.5542383943773362, + 0.44697268492208214, + 0.7207356611404601, + 0.8353943341294494, + 0.7065409525317926, + 0.7236511523831335, + 0.7626293049213219, + 0.5895127472213111, + 0.734176150706279, + 0.5715402164368929, + 0.3847722189787971, + 0.4282333940919705, + 0.5610413342675189, + 0.7616966816647948, + 0.7371109309239737, + 0.791813020161754, + 0.7702625344359325, + 0.5869231890319605, + 0.6431674410050883, + 0.4439288477313794, + 0.7803413848460125, + 0.8027738885525002, + 0.8610463685450231, + 0.7147695735282666, + 0.623322985191879, + 0.7408545164934057, + 0.48428431800078064, + 0.6868920681699003, + 0.6413892637404587, + 0.5570842601558156, + 0.7986763090773012, + 0.7293462521554978, + 0.7493319002108545, + 0.6167579854107081, + 0.6447883187122826, + 0.7508056342404482, + 0.661323431797479, + 0.7093045869133996, + 0.4472088981723428, + 0.6565788326528018, + 0.42175648304743235, + 0.7877866277087038, + 0.7268802228091834, + 0.862211315265047, + 0.6879643432167067, + 0.6401057878059982, + 0.6809666252577115, + 0.6274575970054646, + 0.7302240154201491, + 0.7326900935020867, + 0.8104282383354797, + 0.6788843994950841, + 0.7379967606712563, + 0.7292062523973963, + 0.5905304538663511, + 0.6783936869407626, + 0.6888819043736168, + 0.5446206257484135, + 0.42653669839482883, + 0.7786646289605228, + 0.667216794375754, + 0.5130456967214464, + 0.6706377079022747, + 0.673215642967367, + 0.818875005780932, + 0.8097344631906116, + 0.4654877179410183, + 0.5920960346648809, + 0.6516894310515583, + 0.7902508222070853, + 0.719639401076257, + 0.5275649741248882, + 0.552092367279012, + 0.4771980178688807, + 0.5939864076130639, + 0.6005947050788539, + 0.7949733353638564, + 0.5889830454249022, + 0.5861969570516362, + 0.591052859000425, + 0.6612001473960785, + 0.6113466262298021, + 0.6245884708678417, + 0.48322374997578055, + 0.28619930289586315, + 0.5450570979037662, + 0.7176308640403273, + 0.6513131181816143, + 0.7233504995351174, + 0.5458328960376257, + 0.5301023365687192, + 0.6859096027718141, + 0.7514099304413379, + 0.6896324241235674, + 0.6073132004793174, + 0.7404983976684562, + 0.63688494900072, + 0.6582444112952283, + 0.43339306036432873, + 0.570019099976773, + 0.5780084738319818, + 0.7534408951906351, + 0.6467532825250178, + 0.7147027407967285, + 0.5389351887117878, + 0.5404687559022554, + 0.5389637524157663, + 0.3979685450944605, + 0.8495726591562889, + 0.7251442462535166, + 0.46284889233455595, + 0.3949981690120915, + 0.6372665710236128, + 0.4149981797664853, + 0.4469997574083328, + 0.7462663571577345, + 0.8435115874163884, + 0.737049295431882, + 0.8993840891695973, + 0.6030587706262674, + 0.7860202775425535, + 0.7105170514865627, + 0.7503014906707114, + 0.6163673273910375, + 0.4571688887943458 + ], + [ + 0.8232001445549572, + 0.6400234419516994, + 0.588838795873455, + 0.6964084657175689, + 0.8548174062642403, + 0.7667509066974036, + 0.6639083188623436, + 0.8080808813818481, + 0.7681360915987274, + 0.6819945272083769, + 0.6789496149501669, + 0.7720056746404848, + 0.7139430918857211, + 0.8535923450923105, + 0.8651013888639482, + 0.919781070348444, + 0.8271134026033099, + 0.7793209779660335, + 0.898974238006159, + 0.6192454487954473, + 0.8790032671366763, + 0.9128740336087299, + 0.7169007806438159, + 0.7936537792757857, + 0.8520491306879806, + 0.9156658115216169, + 0.6352874460836372, + 0.766769608652437, + 0.8847918418616509, + 0.805974360712281, + 0.9240236655159061, + 0.8014381276238584, + 0.8367515454263621, + 0.8388523255304589, + 0.6885544327537364, + 0.935200409959679, + 0.7967786216661971, + 0.37629102013979615, + 0.8379357102704907, + 0.8728128913178717, + 0.7444606145591526, + 0.6952646024394278, + 0.5047097726003448, + 0.7031774604586546, + 0.6953395264616168, + 0.6465403382729092, + 0.8252860068135219, + 0.7294392235036345, + 0.6701464543834228, + 0.7368475282397685, + 0.8132837754604604, + 0.7716234156151517, + 0.8757915707776592, + 0.8904612718597225, + 0.8776707306654239, + 0.9058403020169178, + 0.9429066330332504, + 0.8401687784423284, + 0.5721600773958715, + 0.7467710669861378, + 0.8605068384538875, + 0.849144701026448, + 0.8942161642994666, + 1.0, + 0.5622166030901956, + 0.5564226257657727, + 0.8323955397820636, + 0.6788290328715401, + 0.6504308059547103, + 0.7457985500135961, + 0.7397915323675459, + 0.727302583369628, + 0.7472257180826265, + 0.8774588332861903, + 0.7507136812162378, + 0.7427252519011325, + 0.691510077382043, + 0.7252030794815691, + 0.802072520890475, + 0.7774245201673453, + 0.7434781685670518, + 0.6367991835480926, + 0.6801281710612911, + 0.7699782207552943, + 0.8558983044576093, + 0.8282848959708157, + 0.8370760277321999, + 0.7464548779969726, + 0.6376046641830792, + 0.7756965752386851, + 0.8177244213415145, + 0.6784289817155994, + 0.5225725915922025, + 0.7422382558664843, + 0.7034162274069552, + 0.9181347279713344, + 0.7735006725023256, + 0.8407239814728983, + 0.6576690717290915, + 0.6832669015631806, + 0.7413601999210087, + 0.9520788822587334, + 0.7971277996320607, + 0.8474509433201672, + 0.7801804286198368, + 0.6849780574753978, + 0.7454374561435985, + 0.7988776753501715, + 0.7754269043711605, + 0.7210963436367988, + 0.7645908861846299, + 0.758319411790815, + 0.7972471402665057, + 0.8702227939183799, + 0.887170346764267, + 0.8109152667262615, + 0.820306182357943, + 0.8347896212995557, + 0.6588874767490674, + 0.7238090214931739, + 0.7529333969888518, + 0.749418807405118, + 0.8351775694910742, + 0.8658371147055486, + 0.7654768897001905, + 0.7359415611066438, + 0.5494468316158686, + 0.7362789606753319, + 0.5661079017857523, + 0.6910386686486337, + 0.7962451969130214, + 0.832411410621358, + 0.7252548737598247, + 0.7726820548505727, + 0.5896473700396816, + 0.8938342262881908, + 0.8777737200662613, + 0.6254131128448511, + 0.6428462904212667, + 0.8425323923370037, + 0.933692919480253, + 0.7564963741791871, + 0.8296687300967451, + 0.8180714524241601, + 0.5627202232418734, + 0.7374224343584365, + 0.6861073573260471, + 0.600906087880766, + 0.6072385807581586, + 0.6558140915390783, + 0.8541470579725058, + 0.8865595781293155, + 0.8605701955404434, + 0.6828603085798951, + 0.7021601021081025, + 0.7834580077931612, + 0.648697378779812, + 0.8581101696505938, + 0.8539913342480705, + 0.8969499693501383, + 0.7864184809053979, + 0.7878364704094813, + 0.7693117962334128, + 0.6077608915067334, + 0.7498487731718284, + 0.7242655724216105, + 0.691434445081945, + 0.8786878945932532, + 0.8525556387364043, + 0.798424697569032, + 0.7481967757136727, + 0.7799510372143539, + 0.7382531715978256, + 0.6460462055780348, + 0.8083068877941838, + 0.6831769783966885, + 0.800964076751498, + 0.5856977086210438, + 0.780546261623732, + 0.8633152878551582, + 0.8774601722128011, + 0.8064457998513641, + 0.7795785544091982, + 0.7661481451470614, + 0.6910302924752814, + 0.8091376111535608, + 0.8497694867663427, + 0.7825382187796648, + 0.7080587703160808, + 0.7519440094716601, + 0.7686717492573611, + 0.6462479602443307, + 0.7867957983847849, + 0.7667595783023565, + 0.6810843191316456, + 0.5720957782339804, + 0.7821780272639138, + 0.7468526501027972, + 0.6012989644240938, + 0.7957312358337679, + 0.8000672131241688, + 0.7146749475939118, + 0.8961321397803039, + 0.6093546267335271, + 0.7102030904831296, + 0.750234398694664, + 0.7756810751151334, + 0.7119395497345075, + 0.6361912162182483, + 0.6933533256715654, + 0.6227166882779741, + 0.7736759401749344, + 0.7073680778041571, + 0.8424181695974553, + 0.6438056829542915, + 0.5832800755420638, + 0.600642996642942, + 0.7522751819509489, + 0.7235964330322116, + 0.7546700302966995, + 0.5175895097913429, + 0.5618415573296466, + 0.6259447857209139, + 0.8644012795878614, + 0.7761303474704134, + 0.7417566640414158, + 0.6174691484797465, + 0.6442496766457776, + 0.7012814789513139, + 0.7640798415584691, + 0.8126219432318627, + 0.6704171829133458, + 0.8098877347122263, + 0.6966073394498115, + 0.719511211000249, + 0.49414981919529566, + 0.6096936853865551, + 0.6948954421466054, + 0.8656755350154117, + 0.7701226328919214, + 0.7549963151924445, + 0.6340262457564855, + 0.5411227410674028, + 0.6182613525835406, + 0.6044399472637589, + 0.8892607244914393, + 0.6877103600805013, + 0.6773592527350744, + 0.6581413847737729, + 0.6087359842195293, + 0.5611396454041325, + 0.563530877888615, + 0.7553154366875139, + 0.7115622027885176, + 0.844846712118999, + 0.8658793820777619, + 0.738350229819665, + 0.8646739105625287, + 0.71426351708907, + 0.8598360820621218, + 0.7011242157024623, + 0.6547977621340035 + ], + [ + 0.6777636763608105, + 0.7032286658023371, + 0.9101969863238945, + 0.722076645110835, + 0.7185902809160198, + 0.752333902312645, + 0.7557829016578835, + 0.7820928328752461, + 0.6441217436348938, + 0.8481475229963811, + 0.7318742929538176, + 0.6854075915995916, + 0.7957143907576102, + 0.47629125012629386, + 0.8256942359436877, + 0.5400390557395525, + 0.59285668024488, + 0.8670594206802734, + 0.6963754593889653, + 0.9163763507735538, + 0.7941380412216634, + 0.5951823447026179, + 0.9298416936179892, + 0.8058685289364385, + 0.49630263102934696, + 0.7090419595287025, + 0.8368875924093384, + 0.8973178604256393, + 0.6398567604878842, + 0.5143375704074541, + 0.6590096505915028, + 0.6201526102009673, + 0.7667650637944873, + 0.6349228720508096, + 0.9060131740692735, + 0.6792689089561483, + 0.7986511627286086, + 0.3659135758246861, + 0.5703472406353082, + 0.6862457106758317, + 0.8853067449087061, + 0.696820693559246, + 0.32562203480954, + 0.7311967487797183, + 0.8481669406764715, + 0.8247526887224569, + 0.7071069560401396, + 0.8760909021293364, + 0.8813942457897141, + 0.6056431680921285, + 0.7720150994855388, + 0.6623103233747194, + 0.49591831253559426, + 0.6296115505928211, + 0.3642786503632509, + 0.517546863178827, + 0.6376061088708562, + 0.7124694109978356, + 0.557444695206822, + 0.6840709524152314, + 0.5134862276361309, + 0.8431119406031792, + 0.640690554276565, + 0.5622166030901956, + 1.0, + 0.7932071816994521, + 0.7681596949634334, + 0.8294462377310897, + 0.7072177735510236, + 0.664936441440127, + 0.7299007300522621, + 0.7142986734696511, + 0.8617130839372646, + 0.6920372168451612, + 0.827135162595887, + 0.8105259733744019, + 0.814457374019, + 0.6832120648766787, + 0.7820355624384213, + 0.7494471498881982, + 0.7402204681056779, + 0.40983764613910345, + 0.690036342964849, + 0.6918275237845273, + 0.7499186234160468, + 0.7298888766211116, + 0.8197642442470195, + 0.7090344282729465, + 0.5212798499408181, + 0.6708958751535016, + 0.8783171369684579, + 0.866511471231017, + 0.8005564513830468, + 0.784316246799664, + 0.8380418246098557, + 0.6235725435214805, + 0.6933489149249286, + 0.6129220437058691, + 0.8233057981067292, + 0.7902691026397025, + 0.8621120509937532, + 0.6389818242972052, + 0.6769090416850478, + 0.624012859910516, + 0.8415316206095413, + 0.8303475817790086, + 0.7528730518436275, + 0.816688742234497, + 0.6031406612664193, + 0.8495649713313072, + 0.669268021607274, + 0.7633764569301268, + 0.7725505071554991, + 0.7623541419931489, + 0.684069201750116, + 0.8297283113248547, + 0.700073577815133, + 0.858616729572837, + 0.7219628632673079, + 0.7730802825552961, + 0.7720680959977784, + 0.7183667356468779, + 0.7282215051314386, + 0.6298227970459644, + 0.7098921342351828, + 0.6768912920517378, + 0.4778893835426646, + 0.8638400946795477, + 0.7547229844204393, + 0.6843340036876199, + 0.7600968794444242, + 0.7132074710421346, + 0.5770455907167737, + 0.6187556007413768, + 0.864497567378139, + 0.6963729652329995, + 0.6777861821600565, + 0.8537499334057435, + 0.5471792817647098, + 0.773374368519986, + 0.7055691913282668, + 0.8531993784597529, + 0.7578662269824437, + 0.8045207984739186, + 0.597019591770066, + 0.9327331439839839, + 0.7535211351269385, + 0.6119611053028874, + 0.4989536333867092, + 0.7014399932505588, + 0.7112043318761846, + 0.6457653444989921, + 0.7361667895771111, + 0.7228164685674354, + 0.767372218509186, + 0.7156742032806027, + 0.4959916587690955, + 0.7544049988570974, + 0.6561130352734886, + 0.7190568853803004, + 0.7800300847467063, + 0.6900517195177822, + 0.8303112795497674, + 0.7334123038141804, + 0.8298089186814344, + 0.7765522242803615, + 0.7077954322758063, + 0.7335270547945213, + 0.7291362360853815, + 0.7922974934309381, + 0.7430532560502052, + 0.7335141632503333, + 0.6365925716291253, + 0.6907626862058427, + 0.7419236434719189, + 0.26659220841987163, + 0.591932764847441, + 0.7599242907379438, + 0.7407160238331273, + 0.6110975790860778, + 0.5339845959232676, + 0.7040244341765942, + 0.6807770844403881, + 0.82093097567723, + 0.8143418708493321, + 0.8091253794846542, + 0.7739220756472136, + 0.8247151474206257, + 0.7021797580522665, + 0.7356293382221307, + 0.7915974061134358, + 0.8288293749206268, + 0.7558828552533403, + 0.7524948815313394, + 0.6636035418461693, + 0.6070843443756909, + 0.844527830583037, + 0.7036110347503425, + 0.7794078770834475, + 0.4941709910416731, + 0.7627714305518025, + 0.6075086872520824, + 0.5632925332026849, + 0.6867265463905433, + 0.7694436305636005, + 0.8011439964591327, + 0.7945645813924327, + 0.7988835090271609, + 0.5382842664642836, + 0.6750732102960174, + 0.7877301128880301, + 0.6619470700591711, + 0.7254757564340092, + 0.7670947292559644, + 0.8405593222614799, + 0.5212944539695634, + 0.672815822320823, + 0.7320621473465083, + 0.699856819151573, + 0.7081879620718038, + 0.7750621728908252, + 0.3936311104132388, + 0.7918886567314937, + 0.7108689476624654, + 0.5101906541176013, + 0.6659402349111534, + 0.7905300542851968, + 0.7435541641719137, + 0.5888824228273176, + 0.8029504584675776, + 0.6890215730200544, + 0.8341160997638518, + 0.7978544629804601, + 0.7710284707852558, + 0.872443399630515, + 0.42563218506938716, + 0.41934815730569364, + 0.6352012362722463, + 0.7048989458707831, + 0.7255081967802292, + 0.6055296690914279, + 0.7185277522360035, + 0.8696068378066334, + 0.5309395855737545, + 0.6885085141071629, + 0.41266593768030574, + 0.6628388095059078, + 0.3236038890598399, + 0.3944420179316023, + 0.8568243951944089, + 0.5351454243383101, + 0.5027679587100399, + 0.7266161139987596, + 0.8155621041665576, + 0.5589999268579496, + 0.7491630946362128, + 0.7241210312800839, + 0.46321984842148173, + 0.6602800863262632, + 0.6993985938207938, + 0.8598322720405848, + 0.43366378898951174 + ], + [ + 0.5420690520124016, + 0.5009506061480868, + 0.6833236139089891, + 0.8213496340095332, + 0.762377873565876, + 0.656676127294354, + 0.6581575277138213, + 0.6580018241041073, + 0.7139059706398256, + 0.7215918636636081, + 0.6107137094137212, + 0.4710616588872118, + 0.6840639459410238, + 0.4674100955248214, + 0.7513072701316993, + 0.6184869428671751, + 0.600533144370135, + 0.6797120115066836, + 0.6874921253844093, + 0.8097480079804141, + 0.6307299458525056, + 0.5725933933481826, + 0.7460577535637607, + 0.7628678086402427, + 0.5064916385107588, + 0.6723759544218009, + 0.6428401693578335, + 0.6340702840280785, + 0.6327205024540622, + 0.5549050393900632, + 0.6425377266137698, + 0.6252912003210529, + 0.570154946458872, + 0.4275169409785636, + 0.7933021636085056, + 0.6489651345223166, + 0.629537685035328, + 0.5782358547315497, + 0.547762943490325, + 0.6622711919506619, + 0.7034315953809561, + 0.678804959021331, + 0.49551493638693833, + 0.5786707405569564, + 0.7622709116129125, + 0.7157126249577623, + 0.6225963106547276, + 0.8159839251201859, + 0.7776168533901954, + 0.5567106156194004, + 0.5599250790161883, + 0.6456996731287353, + 0.6033491820083322, + 0.604375000874431, + 0.40355745491205697, + 0.4777257447426395, + 0.6141977579003971, + 0.6851581678010379, + 0.7417036207156971, + 0.44152504234490586, + 0.5976960986777264, + 0.728985191563323, + 0.6316261916642483, + 0.5564226257657727, + 0.7932071816994521, + 1.0, + 0.7116451829539023, + 0.725650758494254, + 0.5479677951688281, + 0.5699885419808786, + 0.695866740963507, + 0.7110215829553124, + 0.6820587076922573, + 0.6420565776800026, + 0.6959037574808573, + 0.6653410059717282, + 0.6897825887081351, + 0.6510273966451027, + 0.6454874968366394, + 0.6129703119027127, + 0.6722769171902138, + 0.6475770444110608, + 0.4467827626951941, + 0.6136438427541576, + 0.6544314415039795, + 0.6480711625697382, + 0.7424975264225412, + 0.8454719413403816, + 0.70087536021267, + 0.6801625599666453, + 0.7144683366149273, + 0.7492297742446069, + 0.7523667478556096, + 0.7137441864996779, + 0.7237834014086434, + 0.6754602246457715, + 0.539828216916919, + 0.6934777159633241, + 0.7011155296836045, + 0.5924952370556449, + 0.7244089907742536, + 0.640273829146049, + 0.7361478317390897, + 0.6881854685830698, + 0.6725766675344382, + 0.7402512596532325, + 0.780542343554304, + 0.7561737900636183, + 0.7104605391612437, + 0.7181056876240095, + 0.5749602353443226, + 0.7536310734582968, + 0.6227152384700372, + 0.6558753584498304, + 0.6261970431473592, + 0.7408696506369566, + 0.6081399154811384, + 0.7102867257131734, + 0.7052357826456966, + 0.640691546814453, + 0.6564982731501829, + 0.5923877342496634, + 0.6757112948750954, + 0.6026188488907963, + 0.7336532412133078, + 0.7192123066941333, + 0.6325210417376403, + 0.7004790857960629, + 0.854301666783867, + 0.5866646315595756, + 0.7604849762035092, + 0.7716762127601187, + 0.6886481226904553, + 0.7384377581894701, + 0.6878319808814357, + 0.6154328433891616, + 0.624563332213744, + 0.6894680057413319, + 0.44545158466124884, + 0.689090560751497, + 0.6420811189808301, + 0.7387295399036755, + 0.7028360557089154, + 0.7217366692411634, + 0.7177808557257332, + 0.8271079043751525, + 0.6531804244902342, + 0.53676750366669, + 0.5340488311409856, + 0.4969688607410645, + 0.5845835264525223, + 0.5510809963688343, + 0.5902190291760759, + 0.7467267455595644, + 0.7373190687742185, + 0.6507993743833155, + 0.4697651735521897, + 0.7307736494408679, + 0.6302845617006639, + 0.6471927567185496, + 0.7080692874498036, + 0.639784089616445, + 0.7726811697048334, + 0.6019047216086156, + 0.6117561492182247, + 0.6473185658839933, + 0.5741938933333025, + 0.7218519560606335, + 0.7178003634171728, + 0.764892319911677, + 0.7319803827820398, + 0.704682255481087, + 0.7934474840008044, + 0.594721109160981, + 0.6600920370696828, + 0.44995109966216734, + 0.5720125147979247, + 0.5746691837049908, + 0.5812962759487654, + 0.6112613499293306, + 0.5755859817575236, + 0.6555030702065406, + 0.610847133611099, + 0.7129941905020543, + 0.7435640935666961, + 0.6974244412602199, + 0.6910413224525725, + 0.6944051377234148, + 0.7508738232590983, + 0.5387304396722372, + 0.6326985751319054, + 0.6028421990713456, + 0.6217420634466498, + 0.6344801812655861, + 0.6020965936559475, + 0.5677349258006251, + 0.8064326888006719, + 0.6692945427941531, + 0.6063778490730906, + 0.46427902877435456, + 0.7135439659418796, + 0.6709127815258376, + 0.5433275627599133, + 0.600184080777279, + 0.5661434460263796, + 0.687007980599509, + 0.7247392273882257, + 0.753627207352568, + 0.7011564811987318, + 0.6132445437489038, + 0.6688540375852201, + 0.5411545822786289, + 0.6017549820101045, + 0.7886154321467103, + 0.7614864606979115, + 0.6094804191390552, + 0.6904527802460128, + 0.6381978914747402, + 0.5905624156769796, + 0.6461845122106394, + 0.6438509868979505, + 0.3712535442417353, + 0.6658697523393593, + 0.6526671872437141, + 0.5941320786119826, + 0.710934831851934, + 0.6638067033172086, + 0.6438786045239425, + 0.6322770134554095, + 0.6825326057858166, + 0.6501424491441465, + 0.7106648203621838, + 0.7147604054238859, + 0.7559007464722926, + 0.7487523399320585, + 0.39222386247517976, + 0.3984473007359754, + 0.599741484013336, + 0.6370296960464176, + 0.5220947722257895, + 0.49802230682142234, + 0.608528224546095, + 0.6233026257438572, + 0.7007369368913837, + 0.5556415913491556, + 0.44215697558838063, + 0.6192542601798866, + 0.38008492412572015, + 0.4227679933813941, + 0.7115168532012901, + 0.4770612360039059, + 0.6996047503919625, + 0.7376795957773022, + 0.8575904408678933, + 0.6248365573380901, + 0.661057220222307, + 0.6793518927811532, + 0.38091125799446895, + 0.5979977356355635, + 0.6746824932291424, + 0.7039802284670332, + 0.5476735945930475 + ], + [ + 0.8103869137616776, + 0.7494902448387297, + 0.7530390130636706, + 0.8451591762177841, + 0.9063494348634169, + 0.9275124833489474, + 0.8294753880321043, + 0.7660402817416395, + 0.75235549331679, + 0.7948664487619979, + 0.6790859323022777, + 0.8220554841290183, + 0.8162613904763064, + 0.8476315456472623, + 0.8784596818274929, + 0.864220542825137, + 0.6920140394600468, + 0.8777608053076826, + 0.9026785501569313, + 0.8073005720231955, + 0.8959453161060071, + 0.8608840907236623, + 0.8217191288184498, + 0.8962156993695494, + 0.6865907232587466, + 0.901534494282152, + 0.6736196244585037, + 0.8032591914803578, + 0.9170571485373782, + 0.7782707068829532, + 0.8055881728362004, + 0.7824516486576637, + 0.8583710179656961, + 0.7197971859006665, + 0.8917661500249334, + 0.8667080891273861, + 0.8244995943965121, + 0.4404366315002383, + 0.7427190138730149, + 0.7302171490541705, + 0.7844259487938904, + 0.7655744262049375, + 0.3600221160610614, + 0.7950619053585438, + 0.8124260853389282, + 0.8031743643687465, + 0.7831909776434742, + 0.8520854503653493, + 0.847233454952785, + 0.6658498717292877, + 0.8538947127095317, + 0.9093672321443531, + 0.8042704209753488, + 0.7966913131151788, + 0.6430828005832787, + 0.7714700295847196, + 0.8491119988130466, + 0.7941111472349924, + 0.6896424629715722, + 0.7878208043900679, + 0.7476137037308183, + 0.8744356965382408, + 0.8031679904022548, + 0.8323955397820636, + 0.7681596949634334, + 0.7116451829539023, + 1.0, + 0.8795571714363707, + 0.7416161383035667, + 0.7445771256395399, + 0.8537788971955996, + 0.9181306991220559, + 0.8201337322302431, + 0.771127313756962, + 0.9216454418655979, + 0.7905685830871128, + 0.7886931456356492, + 0.8023479432559311, + 0.7601842970514043, + 0.8037681282484179, + 0.8274335653482932, + 0.7156402773444048, + 0.7161668266613931, + 0.788343118752794, + 0.805672773787807, + 0.8056697721672897, + 0.9023595845484614, + 0.8851193363081512, + 0.7654558708286682, + 0.8891766245939514, + 0.8962880559682678, + 0.8266408869663813, + 0.7694081164131635, + 0.860383567920601, + 0.8133173844876392, + 0.8703053744595418, + 0.754307837925791, + 0.8865856810230128, + 0.8209906209530367, + 0.788766555559668, + 0.8448987520764188, + 0.8855716558894995, + 0.8161116781152169, + 0.9058860138160554, + 0.8544660196424361, + 0.7504387755786032, + 0.8884769117730928, + 0.8442216872244306, + 0.8174427446747415, + 0.7820523479121355, + 0.7658167679165733, + 0.8084184294158808, + 0.7909133675798656, + 0.8692191346642427, + 0.8620142645379142, + 0.9211461654216918, + 0.7731983393919829, + 0.8938698365881015, + 0.7317858143275516, + 0.8041279300189654, + 0.7877185223104683, + 0.8467465820185643, + 0.8338735205020391, + 0.738906969935461, + 0.7791411427212767, + 0.7906392398544305, + 0.7028282963454642, + 0.829090624287866, + 0.7712388071990508, + 0.7179546074497911, + 0.8380263139115884, + 0.8164118585293304, + 0.7565002657280783, + 0.8230129773216137, + 0.7229615943207667, + 0.7965408731467235, + 0.875246619753485, + 0.82258582418089, + 0.5120651541912307, + 0.8608028421079592, + 0.89244917931643, + 0.819730215434347, + 0.8073057731564593, + 0.8639810193031321, + 0.7648449575144921, + 0.883561508841507, + 0.7858750952837837, + 0.6728895249634642, + 0.633863426802209, + 0.6755019058626479, + 0.8258872767484385, + 0.800189064086779, + 0.793410737929039, + 0.7573682141428107, + 0.8709651091704816, + 0.77505820795099, + 0.5681819617391605, + 0.8949279656704993, + 0.8131101162760976, + 0.8497910819012032, + 0.8454439899175313, + 0.7929423666027414, + 0.8715065650710454, + 0.697511874344298, + 0.8023742576082964, + 0.8296147700449551, + 0.7265097023499054, + 0.9214606668309554, + 0.8884685195331207, + 0.899013826313117, + 0.8371609529760475, + 0.8455826855794653, + 0.7767515613339369, + 0.6768373778405281, + 0.8476392784754113, + 0.44120331552482894, + 0.7654711518555484, + 0.7345096112637826, + 0.7694207349451992, + 0.8254144248646947, + 0.8791477958547304, + 0.8531823243624285, + 0.8252422217975403, + 0.8260322959628346, + 0.8252882444340519, + 0.8959738098430285, + 0.9172562824885631, + 0.8175922746657674, + 0.7500066646478751, + 0.7846297061204296, + 0.7957592552070738, + 0.762375490608302, + 0.8372307131433113, + 0.7927202016291116, + 0.6698972088972975, + 0.6652035171727522, + 0.8677149482376681, + 0.8203001720568788, + 0.7111529906285986, + 0.7580825222688254, + 0.8336199060803722, + 0.6965301044349113, + 0.7483977778200839, + 0.6165805304104146, + 0.813448493983776, + 0.8291695031271529, + 0.844041594175118, + 0.8502491154134826, + 0.7632090485363392, + 0.7546705907931501, + 0.7130366893008967, + 0.668501784010336, + 0.67484567614122, + 0.8389967145853133, + 0.8196014081732031, + 0.7039949841991672, + 0.8128455781729372, + 0.790628895611975, + 0.6997758297453717, + 0.8297404185372187, + 0.6575851344455534, + 0.46579874176509406, + 0.7575435869284248, + 0.7838707063645327, + 0.7853517610085421, + 0.7648873347892506, + 0.7044522276719362, + 0.6768591409974959, + 0.682445859054199, + 0.8285237983345535, + 0.8545366210435239, + 0.796946714964946, + 0.8822956444311437, + 0.8595214083196049, + 0.8858651264401415, + 0.4974320009503271, + 0.5924100382678689, + 0.6100504200528233, + 0.7917672976420367, + 0.799377468520642, + 0.7605038261606294, + 0.6807291952235229, + 0.6367189821102056, + 0.717651927540327, + 0.7365512494461074, + 0.6891536385302108, + 0.6018142004746374, + 0.5841278025796286, + 0.5604941651215095, + 0.6497018724250545, + 0.5382462762009577, + 0.7053692133472567, + 0.8861752003330938, + 0.8019209200768288, + 0.8145382619337217, + 0.7804393188748646, + 0.7751579781381017, + 0.695261908006852, + 0.6411788311510497, + 0.9069565755506427, + 0.796872065103803, + 0.7013131677783906 + ], + [ + 0.7890830278758001, + 0.5966232415545546, + 0.745799278646292, + 0.7869709327837086, + 0.8077478686631681, + 0.8146866788679562, + 0.6545005567659806, + 0.7533587746016689, + 0.6275072694927694, + 0.780049276665688, + 0.6252020089786081, + 0.6634647843041391, + 0.7797360518239908, + 0.6469688516182406, + 0.7882269847386834, + 0.6732008237091093, + 0.5912359962589848, + 0.8314388746551837, + 0.8026580695729449, + 0.8294042941100878, + 0.858348690919456, + 0.7035688044948942, + 0.8070989933095465, + 0.7713612619301625, + 0.49193965524590594, + 0.7307211273225651, + 0.7898425916632834, + 0.786045008822594, + 0.7511194407624429, + 0.5208773802330877, + 0.6958612476988021, + 0.6021491578316052, + 0.7458438917065302, + 0.7143542493568855, + 0.925088305252454, + 0.7855019757629169, + 0.8334607325636171, + 0.4738439438336525, + 0.5940086107884401, + 0.7669997684509577, + 0.7335135244335044, + 0.6866006882671364, + 0.40907030865482263, + 0.8360405855626624, + 0.8576485040026077, + 0.8224575589348618, + 0.8729099404976498, + 0.8266860559590672, + 0.9015110596809414, + 0.8049176111936593, + 0.8163025683453939, + 0.7579108308232485, + 0.6827006269106958, + 0.6361249323252818, + 0.4824379139603965, + 0.6240465451976659, + 0.7214137610311422, + 0.8123562060068891, + 0.6616318662416226, + 0.8161408933240432, + 0.6002009815128766, + 0.8935948288754716, + 0.6144577068067719, + 0.6788290328715401, + 0.8294462377310897, + 0.725650758494254, + 0.8795571714363707, + 1.0, + 0.7441705013059697, + 0.7030141779323934, + 0.8607298454853846, + 0.7303537614216318, + 0.7854845032230119, + 0.7698394075357929, + 0.8794393783867317, + 0.8963221719915024, + 0.9039344416611346, + 0.7722988686182809, + 0.7203600597916341, + 0.8114823011749457, + 0.7613233516295265, + 0.6789499635413779, + 0.7485372593401383, + 0.8783922803555252, + 0.7422251514829882, + 0.7369019620651635, + 0.8189931333903421, + 0.7948281033828402, + 0.7639893497844151, + 0.7601364708974432, + 0.8567934818829785, + 0.9504845150224539, + 0.8991273113732233, + 0.8977336398070125, + 0.9060112654841853, + 0.7390501838903332, + 0.6296581625267698, + 0.8042781061359628, + 0.8981376957290508, + 0.738173469455809, + 0.8945301934663599, + 0.7943815566298166, + 0.749055536568213, + 0.8620274167282771, + 0.8957414114970782, + 0.7281366847840591, + 0.8542602748007266, + 0.9158534331711723, + 0.8219897441132049, + 0.912239250965938, + 0.891089368720701, + 0.8229882572735386, + 0.7905736792039261, + 0.8126907814933976, + 0.8264204143324829, + 0.8921067978668119, + 0.8416094950968778, + 0.8644456848319962, + 0.7711070031345231, + 0.9382078285665605, + 0.861537756228767, + 0.8979870662710866, + 0.8426169741541134, + 0.6338001952582342, + 0.7873616661606664, + 0.803734649670664, + 0.6389103885180933, + 0.8762768046073915, + 0.7687941078344276, + 0.811425772166564, + 0.7953561696553579, + 0.7135494641298146, + 0.6573578185962694, + 0.7574061960825554, + 0.7283767556889126, + 0.7932309706096803, + 0.8837870087116899, + 0.9135432656108167, + 0.6762259721032675, + 0.8746322730327789, + 0.8493693212189938, + 0.8876148796117995, + 0.821703304700846, + 0.8396306723008087, + 0.7128897943940505, + 0.8906467130111232, + 0.828032413446266, + 0.7891359907135214, + 0.6114878119132281, + 0.8174845739020323, + 0.8722062111905469, + 0.8167138920259402, + 0.8392121219875216, + 0.8081363486465829, + 0.9659345532079321, + 0.8989163302325274, + 0.7611607363961999, + 0.9093358396481506, + 0.8289072497777333, + 0.8259054098322656, + 0.9226056517523245, + 0.8853306727148839, + 0.9432809786302826, + 0.898754002288253, + 0.8771672057374393, + 0.9024629090803287, + 0.8979564936716119, + 0.9176549050277338, + 0.9277358006652237, + 0.9372161637693533, + 0.9563037073676849, + 0.9535807368023747, + 0.7607496945051122, + 0.7164143690415756, + 0.91429780916332, + 0.5172799844393312, + 0.8621708774065983, + 0.8675774683606122, + 0.7233509545996477, + 0.8725640381609879, + 0.692750977776487, + 0.9173131880808445, + 0.9034733334080873, + 0.9181533670060874, + 0.8647681186127986, + 0.9229343002527916, + 0.9034576207338686, + 0.8284173862277934, + 0.8310202462148991, + 0.8194224937218131, + 0.8335386315721279, + 0.8655324913872565, + 0.8732566346245304, + 0.8636989088325329, + 0.8019269350599281, + 0.8442020192275234, + 0.9354083686792254, + 0.9391239537065279, + 0.8274130729885261, + 0.7381405319093336, + 0.909829182432449, + 0.6366284015452168, + 0.728119880584092, + 0.8157134226706956, + 0.9266243736636031, + 0.9349996706647516, + 0.8301920563485432, + 0.9003985971435627, + 0.79438856630371, + 0.9094369486768539, + 0.8901738880555792, + 0.7669448483571765, + 0.8384412835139785, + 0.8917630512375759, + 0.9230434840911373, + 0.6698748583907003, + 0.8629722844142359, + 0.9008431427513085, + 0.825235119699725, + 0.9186854447880444, + 0.8273838601076579, + 0.616476371683855, + 0.9271425470779536, + 0.8468609816067799, + 0.790475974895061, + 0.7956679955361655, + 0.8386573232726222, + 0.8766013526995742, + 0.6616417690222837, + 0.8871272362131462, + 0.9252540485808477, + 0.9376086641865382, + 0.927458632136294, + 0.9172360627675316, + 0.9580839086942826, + 0.5943487280764463, + 0.5149345516193333, + 0.7060265299192824, + 0.8316030982496904, + 0.8883002749293183, + 0.6822412807946209, + 0.8359876375038473, + 0.7925191483063847, + 0.7647284371780038, + 0.9039735921754994, + 0.5547588683731354, + 0.6101259001768774, + 0.6072015116042369, + 0.7073858334772049, + 0.8124979246972648, + 0.6957035275261066, + 0.7199081629480127, + 0.7679420671987345, + 0.6865636650016818, + 0.6824851026889348, + 0.7051911315512047, + 0.8819971430184194, + 0.5446156838453741, + 0.5462007595792087, + 0.914337691033916, + 0.8959177850189952, + 0.7348713969053222 + ], + [ + 0.8534083959801619, + 0.8277074358746788, + 0.7504970757997839, + 0.5249785714521552, + 0.7848067013324076, + 0.7696310648492214, + 0.7458343399013415, + 0.7855665320545795, + 0.6046603155932332, + 0.7241800646002482, + 0.7298429441529842, + 0.7689503154223691, + 0.7852771142200561, + 0.6856920553659097, + 0.6638601317749607, + 0.5961567626633766, + 0.5906352326573479, + 0.8639382041710164, + 0.738585946593449, + 0.7735077588741619, + 0.8341911361098361, + 0.6369331105716224, + 0.7956753754843, + 0.8173647968265301, + 0.52108272884575, + 0.7458707540217785, + 0.7493272450461511, + 0.732198701634794, + 0.7389871679997484, + 0.6529377639861039, + 0.7210188063349425, + 0.7680153469087567, + 0.8181144404879477, + 0.7148394232219234, + 0.7408140364637181, + 0.7676328583930417, + 0.9126530797610131, + 0.28555198570026147, + 0.6369613265392622, + 0.6053199880957599, + 0.7617608110729386, + 0.5694048569876367, + 0.25935839990477544, + 0.6194006510511822, + 0.6239778124368188, + 0.7593375050983855, + 0.7831807666355834, + 0.788745617671698, + 0.6954296274653243, + 0.6261010440883662, + 0.7737427429934681, + 0.565830670819181, + 0.5647811586118501, + 0.7889990727884215, + 0.6454924445821754, + 0.7066115679044437, + 0.7859654863171455, + 0.7122853458517262, + 0.2800172742380884, + 0.8462506908625759, + 0.535082480976642, + 0.7081956788610447, + 0.5955852580574668, + 0.6504308059547103, + 0.7072177735510236, + 0.5479677951688281, + 0.7416161383035667, + 0.7441705013059697, + 1.0, + 0.9561867487713147, + 0.8880991410968853, + 0.6906662225888155, + 0.7239961807419374, + 0.7031428660633651, + 0.8270464358430323, + 0.6297144436191028, + 0.6358041640275953, + 0.5870578562254378, + 0.7457245878395493, + 0.6336582547646267, + 0.9468728653262214, + 0.32975132435814436, + 0.6859336471582888, + 0.5705097410818103, + 0.7541767253306526, + 0.8383633056569257, + 0.7605552298391789, + 0.5694576478190545, + 0.39930007506384635, + 0.6756679897550951, + 0.7754639727694104, + 0.8325173376461238, + 0.7358149671440833, + 0.8575493786899581, + 0.7167792841886413, + 0.6125957797551018, + 0.6942638951620617, + 0.6674056785418717, + 0.8923161193501923, + 0.9653439559377999, + 0.8734184618725082, + 0.6764701916181246, + 0.5162013986429776, + 0.7115101346974523, + 0.862229846387689, + 0.7153436237781087, + 0.7013701520973952, + 0.8213861530786278, + 0.6251343516458999, + 0.7104507865220979, + 0.7841942139067655, + 0.4621689580399371, + 0.7445226306203262, + 0.7889393092740915, + 0.6891306414944843, + 0.7284036418711004, + 0.7862614516915054, + 0.8497902328170082, + 0.4691020780755874, + 0.6857907844499449, + 0.7741082135997291, + 0.663935780100849, + 0.8124686885116845, + 0.6262393469470783, + 0.5109611503070542, + 0.5418005090415712, + 0.2889604669426809, + 0.7944661212382338, + 0.4620175098168253, + 0.6357193749668196, + 0.4824235597632334, + 0.5650334464247109, + 0.3983744240350882, + 0.3953790447185151, + 0.6430522246156998, + 0.7965668993601623, + 0.8171592495406726, + 0.6210720539331188, + 0.5288378698445456, + 0.6918316971584038, + 0.7242023683567428, + 0.7367325277898494, + 0.7086639177394838, + 0.8097863380757956, + 0.4248713538685268, + 0.7596579434736589, + 0.6582058876317632, + 0.5990809139628183, + 0.5242335656235527, + 0.8534614518019777, + 0.7994578508760423, + 0.8087349427921927, + 0.7864400763094646, + 0.7174091886384992, + 0.6895694434680926, + 0.6403992915291158, + 0.5791293311848343, + 0.7635564600167488, + 0.7641021611886695, + 0.7539175852881123, + 0.8311152172846354, + 0.7993218424065701, + 0.7685805306454112, + 0.7978384196956341, + 0.8027727517682066, + 0.7587445524112189, + 0.7983277709106031, + 0.7025888989885709, + 0.7716546690641243, + 0.7139670601442799, + 0.7197131245948504, + 0.778384290224618, + 0.46884026029010767, + 0.5341984778505753, + 0.6975055113107447, + 0.4503088492553699, + 0.6998185255108474, + 0.6069926568639017, + 0.906216263987706, + 0.6829106034361445, + 0.6099806708324086, + 0.7685224873449499, + 0.7975662290396645, + 0.779796076266741, + 0.8566680016026469, + 0.7443805967660986, + 0.7378782716160777, + 0.731522348421159, + 0.4585377607145127, + 0.7766053718498319, + 0.6758147061101009, + 0.6885493743460576, + 0.6549620564985086, + 0.7423854106246084, + 0.550846060732409, + 0.6737127597237349, + 0.777467141062203, + 0.7155059257721241, + 0.5977255537236873, + 0.48642385606789607, + 0.8002265595858785, + 0.5133895667090055, + 0.6231077407799784, + 0.5295465720755542, + 0.7276741507927234, + 0.7653328128698964, + 0.6628070305282036, + 0.5701081941575489, + 0.4228176170727663, + 0.6303097066132592, + 0.7609022487539903, + 0.6611045434001431, + 0.7827267763391031, + 0.6888906389489815, + 0.6246218906294996, + 0.2549468790343281, + 0.5850883787336651, + 0.7291740794314303, + 0.766763471230773, + 0.6908414334902792, + 0.6364554703205799, + 0.486720706273158, + 0.6419481950590401, + 0.6881610798094192, + 0.6273222937093179, + 0.4243829580559209, + 0.6317049531971182, + 0.7720854437314971, + 0.7904083605647797, + 0.8061681676414484, + 0.7209137317269331, + 0.7354278506048852, + 0.7808254773352155, + 0.6651452162096667, + 0.801528182047293, + 0.420925194079052, + 0.2900621256593156, + 0.6058107953144789, + 0.723833459580232, + 0.7821315168801698, + 0.8601874054787658, + 0.6040280617482993, + 0.6098018143533577, + 0.4655061261365643, + 0.6984245422907364, + 0.5407450444100126, + 0.7692247984953061, + 0.3368444151015652, + 0.5368049331059228, + 0.7638485063709929, + 0.5574581013136137, + 0.3648710465007744, + 0.6105869441724131, + 0.6181205096972003, + 0.5888070853139129, + 0.6209575011081983, + 0.5695198416462274, + 0.4259399803580829, + 0.7493229108054695, + 0.804899270028127, + 0.7003898372947616, + 0.6448934814661668 + ], + [ + 0.9128977864721384, + 0.8248856060459678, + 0.7222727178638602, + 0.518348586376883, + 0.8094685773822755, + 0.7265108181144565, + 0.7213292999291705, + 0.8361430633837432, + 0.7403110952091381, + 0.7265584145804115, + 0.7635087551185846, + 0.8160957298208743, + 0.7746786972174121, + 0.744722068421556, + 0.6951394620044654, + 0.7097300838739427, + 0.7493988511919429, + 0.8597515211063503, + 0.7930998055327417, + 0.7613873410846155, + 0.8440076274391602, + 0.6814616098789233, + 0.7680060266255117, + 0.8168524005611895, + 0.6841526191562494, + 0.8143825323164421, + 0.7205139898016206, + 0.7509794081737536, + 0.7782571611171863, + 0.7851965399728471, + 0.8247231934754993, + 0.823632175825454, + 0.8037389838861908, + 0.7080417898947311, + 0.6652133047579412, + 0.8661403093834495, + 0.9244439845336392, + 0.33468403350548603, + 0.7725062591168453, + 0.7105691839240431, + 0.7904389939794436, + 0.6044040750108163, + 0.3108960901111691, + 0.5146869991666699, + 0.5711330349792223, + 0.7549442992927422, + 0.8130917430145266, + 0.8150110427368508, + 0.6231001781692111, + 0.6746236391432463, + 0.7617292701202043, + 0.598150652655095, + 0.6380024775291999, + 0.893903905942929, + 0.8061056306099068, + 0.8354263886643052, + 0.8749764918445752, + 0.7765809623450152, + 0.32713376091081947, + 0.8386873911112681, + 0.6838579395945897, + 0.7413982763046003, + 0.7304921958184665, + 0.7457985500135961, + 0.664936441440127, + 0.5699885419808786, + 0.7445771256395399, + 0.7030141779323934, + 0.9561867487713147, + 1.0, + 0.8918082949149853, + 0.7155854939384807, + 0.7751782884683543, + 0.8104003643811121, + 0.7978774894230636, + 0.6155819802199439, + 0.6136087357675237, + 0.6032797186960657, + 0.8266025004282951, + 0.6940892022175219, + 0.9458087651758891, + 0.34659895362821747, + 0.7223593562069858, + 0.5944568556485067, + 0.8537680156786827, + 0.9039038430093872, + 0.8225470541232651, + 0.6141260204124808, + 0.43075249020472056, + 0.7200350651128857, + 0.7587070450108664, + 0.7776150949268497, + 0.6628709073380529, + 0.8327906250278646, + 0.7090192467029233, + 0.7309298316865621, + 0.7767317571363969, + 0.7294187520152112, + 0.8127602214329197, + 0.9301924551111159, + 0.8635303632355734, + 0.7680984250362137, + 0.6335902911917994, + 0.7518905816681061, + 0.8525337404873459, + 0.6991682106021831, + 0.7356186560359438, + 0.8307726459915823, + 0.6625439543671351, + 0.7021464642587558, + 0.8080932637816757, + 0.5004100368246567, + 0.7964387246378788, + 0.8276593245771784, + 0.7535072315618144, + 0.7468149446909987, + 0.8505523739593314, + 0.8512332323847576, + 0.49841755415540084, + 0.6482438257171568, + 0.7994392427503141, + 0.677340413683186, + 0.8706774738729274, + 0.7297531909400149, + 0.6046403249863872, + 0.6157615468191519, + 0.30831295682527904, + 0.7438966180611857, + 0.4947152303409424, + 0.5929545587328379, + 0.5488124423160659, + 0.6359541591293095, + 0.4968974558457834, + 0.46904712063563664, + 0.6287183379816169, + 0.85958650451047, + 0.851049117521326, + 0.5395538590422897, + 0.57967775411506, + 0.7100375182503855, + 0.7734897197550321, + 0.7342802579604902, + 0.7520349523315493, + 0.8578219456839596, + 0.4359629071509337, + 0.7292037436753234, + 0.6348620206870128, + 0.5472421328043129, + 0.5351453480596738, + 0.8549478652683172, + 0.8472653879446489, + 0.8582029618278156, + 0.8490343355593256, + 0.7613964729138283, + 0.6318256466700336, + 0.6584361973335126, + 0.6156750823749125, + 0.8009597721476076, + 0.8227556308838199, + 0.835644533794465, + 0.8462060201816154, + 0.7996403815020824, + 0.7688860123575023, + 0.7528992036559546, + 0.793189683062917, + 0.7268145071004305, + 0.7832352887531217, + 0.7436114503044847, + 0.7865472341031473, + 0.7360401667157898, + 0.6986854580748867, + 0.7718530007076485, + 0.5518252647872756, + 0.5792704367512748, + 0.7002071866858758, + 0.525783532611122, + 0.7491702512682716, + 0.5645569003827934, + 0.9526861444685275, + 0.7222550234685987, + 0.7217190017292869, + 0.7808584329660723, + 0.8161272542528131, + 0.7699461058722757, + 0.8165694745046722, + 0.7236787076121458, + 0.7140032339138633, + 0.7767723610878374, + 0.49218885430589854, + 0.8003494086112305, + 0.712198330947499, + 0.6502473522340284, + 0.6451623696493487, + 0.7734611239195887, + 0.5888372763221125, + 0.6187815497026196, + 0.7942551702078383, + 0.7255820564587226, + 0.5824272282164284, + 0.5318277958213813, + 0.8199643833071301, + 0.6336371224546635, + 0.7230322463978646, + 0.5358756360714435, + 0.695665040398027, + 0.743893991997885, + 0.7174862323602941, + 0.6097832348365834, + 0.4271736455087129, + 0.6086895373949, + 0.6828394423624059, + 0.6954859860142939, + 0.8059605133801221, + 0.7419583494345011, + 0.6060565260682358, + 0.27846661274620593, + 0.5931343911465473, + 0.7368635383364659, + 0.7923707121321547, + 0.6785162830369605, + 0.6152039005123441, + 0.48638728494964806, + 0.6187452542666849, + 0.7267595724541352, + 0.6900837665237491, + 0.4642720655178164, + 0.6461072752403344, + 0.7510886548280455, + 0.8107667907768359, + 0.8278945800617291, + 0.7581132628483225, + 0.7019032240151198, + 0.7946074989289408, + 0.657892213839229, + 0.772371324515128, + 0.4608046920270577, + 0.3322822241569861, + 0.678843001756225, + 0.7866818093044099, + 0.7775559000794949, + 0.8631680030119785, + 0.6241848261051757, + 0.6129560413091487, + 0.50658541801633, + 0.5939018035858841, + 0.6798083322263829, + 0.819938641816089, + 0.4187688918271832, + 0.5729396707422454, + 0.7919616399516519, + 0.592455840392934, + 0.3601009993734768, + 0.6407275163988825, + 0.675080073197841, + 0.6516714469257665, + 0.7027121752655215, + 0.5719785167987804, + 0.5347384265951354, + 0.7565026083941194, + 0.840216534609362, + 0.6437114814702015, + 0.6463864420009057 + ], + [ + 0.820010679587218, + 0.7371125349304894, + 0.6765742340948973, + 0.7365953537830806, + 0.8880488496251866, + 0.8239486664593171, + 0.725692195436933, + 0.7465040335227294, + 0.7189112970854137, + 0.8156767062215899, + 0.7234028299462462, + 0.7739049681758975, + 0.7660195547983586, + 0.7506974776576483, + 0.7185087375903891, + 0.7853200433399933, + 0.6650729547978759, + 0.8678839374342973, + 0.894898144619595, + 0.8546666863765915, + 0.8303012546164088, + 0.7726738125259427, + 0.787969827782315, + 0.8738732445214157, + 0.5936179944252913, + 0.8213028600949117, + 0.7080999765394038, + 0.7473363743612887, + 0.8648933294225049, + 0.6881076824275375, + 0.754622529810962, + 0.7581938105430897, + 0.7543546475458726, + 0.6942176296818858, + 0.8051477993517266, + 0.8545086186074403, + 0.9076944149484458, + 0.49239469732551105, + 0.6542717412535644, + 0.7193640791970768, + 0.7112422403774968, + 0.6015744733419458, + 0.3979901082940146, + 0.6789056686111139, + 0.6474905176871404, + 0.8873507516453005, + 0.8155501190658752, + 0.8548261478247774, + 0.7934054495687201, + 0.7176287537717946, + 0.7778836767887937, + 0.7497426831341428, + 0.7593984892274779, + 0.8229828510293448, + 0.6838399378212296, + 0.7640186531635371, + 0.8408621704873468, + 0.7661899278706141, + 0.5972533200451429, + 0.8133381993304972, + 0.677509654169159, + 0.8251611037108053, + 0.6847608852573328, + 0.7397915323675459, + 0.7299007300522621, + 0.695866740963507, + 0.8537788971955996, + 0.8607298454853846, + 0.8880991410968853, + 0.8918082949149853, + 1.0, + 0.8343952256569858, + 0.7650971692283961, + 0.7717065819959386, + 0.8454754761472856, + 0.6955290999423223, + 0.6776329000295399, + 0.7468086042614955, + 0.7417774766604897, + 0.7213596194755805, + 0.9139352789526364, + 0.6713657961404222, + 0.7512191245886298, + 0.7104543275938726, + 0.7878320139154811, + 0.813632053889123, + 0.858700918301159, + 0.8331128212244542, + 0.7318218877767406, + 0.8297862923579868, + 0.7757949302275564, + 0.8855524564125936, + 0.8382445728999957, + 0.8852472000691191, + 0.8625540200343065, + 0.7448113992450331, + 0.7180671007866241, + 0.8893329153448093, + 0.8674578418503079, + 0.8638565692794142, + 0.9158600353716461, + 0.8168660238598071, + 0.6859791681808775, + 0.9000094901589458, + 0.8456301537976424, + 0.7400929013657377, + 0.865942069868535, + 0.8968720638884753, + 0.8556517959920396, + 0.7803112564967766, + 0.873781650132844, + 0.6583616265110942, + 0.7368045143830038, + 0.8213989809949546, + 0.8053398095618058, + 0.8778480855419929, + 0.8404656536291291, + 0.844662405799415, + 0.6504754721349995, + 0.8068126739265987, + 0.8728565696236835, + 0.7916744779446666, + 0.8815437046453841, + 0.6919065206824652, + 0.7143267164066536, + 0.7659304923562152, + 0.6465951621046362, + 0.8206476334816665, + 0.73229016415913, + 0.6805877229603469, + 0.6931296810879275, + 0.7764339818950265, + 0.6302185691572698, + 0.6967742338684754, + 0.6780432701463353, + 0.8050817715471406, + 0.9101385282954875, + 0.7235892637509164, + 0.6139194983201451, + 0.7739989277153537, + 0.8222444021436174, + 0.7981418259429713, + 0.7363031618180276, + 0.8786215493538272, + 0.7250106880172663, + 0.8240581590190974, + 0.7881235378561986, + 0.7298724600393717, + 0.6247699695792936, + 0.8178647592545801, + 0.8313763503287055, + 0.8599618445656505, + 0.8186837165382681, + 0.7963785449580756, + 0.8241588600872435, + 0.7971633372206007, + 0.690606903094309, + 0.9316127206956116, + 0.8545119579752054, + 0.8078736917781877, + 0.9160052563244764, + 0.8721112450912873, + 0.8817591145244006, + 0.8065547810813481, + 0.7871839988565341, + 0.7954414099298807, + 0.8386403483379221, + 0.8619557967966827, + 0.8865025401892028, + 0.8469186351424796, + 0.8588879415699201, + 0.9107804789375749, + 0.6347413136796748, + 0.6072612753409359, + 0.7947867200952834, + 0.5766964918135699, + 0.822522477285213, + 0.7379381857559612, + 0.8447668827955919, + 0.8023286049856251, + 0.7498240625283387, + 0.8613720025103506, + 0.8879131961632095, + 0.8097371550974864, + 0.8559389377337304, + 0.7799790851518218, + 0.8067524242186839, + 0.7446423440146333, + 0.6409880292751632, + 0.7251216850392388, + 0.7231009740933532, + 0.6846828238094816, + 0.7419992039421467, + 0.7772463380763264, + 0.6652646617479837, + 0.6978436521415664, + 0.9000502290768335, + 0.8394131160929915, + 0.6481964497079024, + 0.6423632665716699, + 0.9001696748942944, + 0.6630471141744883, + 0.7440858696223883, + 0.6446161229828592, + 0.7653207672567159, + 0.7980509509019568, + 0.7395675989692498, + 0.7883491583234471, + 0.7549216517698474, + 0.7769958603314018, + 0.7555259643458936, + 0.6861565821251712, + 0.8090103432170334, + 0.8587850931494022, + 0.7901162095286414, + 0.43238246396240576, + 0.7614914333997214, + 0.7673677643927568, + 0.7499645981616736, + 0.8151303888727839, + 0.718847567935686, + 0.5313061295783569, + 0.7450258918178174, + 0.7662202387805837, + 0.7985675157040736, + 0.5545832551223316, + 0.7042699516229821, + 0.7672830013388224, + 0.7648856778389569, + 0.8223401029690086, + 0.8546762004366589, + 0.805518470294746, + 0.8716980401356572, + 0.8294335599683467, + 0.8537324233551624, + 0.5952933662258956, + 0.36005732966761855, + 0.6759674788245906, + 0.7948671189080002, + 0.805616672809579, + 0.8245674751391621, + 0.728904150070462, + 0.6215147348986136, + 0.7497051973357729, + 0.722151838677688, + 0.6138979563669602, + 0.6962789009468651, + 0.5458131592918172, + 0.6664504046973294, + 0.7649312892938164, + 0.6798251681618257, + 0.6797328176665953, + 0.7702754455072027, + 0.7264560217060414, + 0.7740941180905401, + 0.6506261192904744, + 0.7265611009932168, + 0.5910408520480727, + 0.6896679540035424, + 0.9351096795461272, + 0.7995680545893067, + 0.7014140087152471 + ], + [ + 0.6820060018642214, + 0.7384186262087539, + 0.7010835774149148, + 0.8173237326402384, + 0.8483090135521397, + 0.9026927788825878, + 0.8081061242633842, + 0.6299100687884842, + 0.7503607903064946, + 0.7520969667710106, + 0.6202543571078025, + 0.7815455106903724, + 0.7687490493903615, + 0.819701581559213, + 0.7889204851970533, + 0.8491010905881019, + 0.6886915311076215, + 0.8107531447533657, + 0.8660507687326272, + 0.8375686374799182, + 0.7726815748719377, + 0.7772378887476584, + 0.7569391731201985, + 0.8831073107825326, + 0.6716614698807831, + 0.8590551099180566, + 0.5715712956980671, + 0.7151845868183907, + 0.8772291540930653, + 0.8063364196653822, + 0.7457666788151514, + 0.7500955117845706, + 0.7389441551186432, + 0.5041671245071692, + 0.7819945172706513, + 0.7817793409337064, + 0.7466880615999909, + 0.3915394968301635, + 0.6741970358517794, + 0.5814526666700369, + 0.7068290372363438, + 0.6481869118145341, + 0.314904784571816, + 0.6406717662207061, + 0.6606082751456608, + 0.7881374253568315, + 0.6008201291311114, + 0.8058953584213016, + 0.7411558281197247, + 0.4890803113383816, + 0.7238308361571004, + 0.9066506620693506, + 0.7330716003236702, + 0.8167625277757367, + 0.5905136548289601, + 0.6984214368194865, + 0.7860900711711067, + 0.6431139915799221, + 0.7217905076661115, + 0.6533782674607621, + 0.7062127488324991, + 0.7616993122515804, + 0.7590774251260737, + 0.727302583369628, + 0.7142986734696511, + 0.7110215829553124, + 0.9181306991220559, + 0.7303537614216318, + 0.6906662225888155, + 0.7155854939384807, + 0.8343952256569858, + 1.0, + 0.7778422888747301, + 0.6610941551685295, + 0.8428978512268194, + 0.6170328717703946, + 0.6063454386246577, + 0.7458857517402521, + 0.68887961245694, + 0.6809800594833508, + 0.8142759970157156, + 0.687651385449008, + 0.5857821099561146, + 0.6270070145042467, + 0.7556156018211907, + 0.7227033807530168, + 0.881229401376894, + 0.886450987857327, + 0.7187260966074189, + 0.8735399154932826, + 0.7704445207898173, + 0.7171842763436463, + 0.7152764933418873, + 0.7672398209835491, + 0.7660838029388075, + 0.769230430929649, + 0.7499463164201892, + 0.8393295940173988, + 0.6964239437038842, + 0.7490231726639486, + 0.7921443080639877, + 0.7606308427919374, + 0.7155983451388827, + 0.8255029525121762, + 0.7513720792383486, + 0.7072670104102837, + 0.8885649122303366, + 0.6988470845571672, + 0.7712833612841408, + 0.6409644964651123, + 0.6319582062705363, + 0.6850557033147752, + 0.6674908307811533, + 0.7953404638838039, + 0.7552376909124643, + 0.8675305669899734, + 0.6436862970247869, + 0.815083766403193, + 0.6765954984677938, + 0.6643765994195273, + 0.7415009717878326, + 0.6981732840629348, + 0.7266567369619937, + 0.6784563727850605, + 0.6700910830460581, + 0.6873591888279549, + 0.7046817550136487, + 0.7360445877197701, + 0.8044525417485123, + 0.5643495316294347, + 0.7432625874517403, + 0.7854017604072833, + 0.6609157943004085, + 0.7368683704162939, + 0.6464379627288294, + 0.6645223133242951, + 0.7750569191133939, + 0.7055636454767871, + 0.3709622281218461, + 0.7261311154501696, + 0.7679432471121884, + 0.7197111392226957, + 0.6681448944433602, + 0.8157692162086383, + 0.7537973710235728, + 0.8306515980422997, + 0.7599107025030531, + 0.5134328731769912, + 0.5067513178602056, + 0.5643406410195553, + 0.664922871344361, + 0.6656425433534765, + 0.6328945170730554, + 0.6414806785226513, + 0.7366264232148021, + 0.6402336088011332, + 0.40672040100985607, + 0.8237614449870254, + 0.7032157751521446, + 0.7377081334040682, + 0.7544073134111708, + 0.651050840994703, + 0.7742932683182294, + 0.5552937574618821, + 0.6768024121493548, + 0.7034679561216339, + 0.5836702965922382, + 0.8032449636573851, + 0.761269725047407, + 0.7905766568243662, + 0.6945411902545583, + 0.7087465163212945, + 0.6824176820612229, + 0.5767210491413473, + 0.700083527770855, + 0.2857219774778603, + 0.6117379868854629, + 0.6174839257397151, + 0.7139168554560112, + 0.6627887126246654, + 0.8563940685395753, + 0.7372884104572913, + 0.6905562360230385, + 0.6871138025238521, + 0.7131958119837312, + 0.7329019485033207, + 0.7763821067966289, + 0.7199819060778311, + 0.5921527251186111, + 0.6533812239697899, + 0.6933688793847802, + 0.6141898407047833, + 0.7080666218030758, + 0.6870369002089964, + 0.5380319095003969, + 0.4762996553244295, + 0.7614309192981655, + 0.6702698171867347, + 0.5678404984802587, + 0.5903802580230856, + 0.7162541097550238, + 0.685280416784797, + 0.6320185137585266, + 0.45598975655457125, + 0.6275535089270612, + 0.6711548301945114, + 0.7563970792575699, + 0.7872763435703248, + 0.6901297367097791, + 0.6061773948803864, + 0.5396129614636527, + 0.48466372725210266, + 0.5541991085581272, + 0.7339992344648811, + 0.7375173731928548, + 0.5660412499805931, + 0.7118649357419609, + 0.6137114875843243, + 0.5362301635079942, + 0.6929993434469085, + 0.5598922928696417, + 0.2614427947037572, + 0.5963133715947561, + 0.6245761644507674, + 0.7048668951272835, + 0.5935252290784285, + 0.6034699642815579, + 0.5069986619445627, + 0.6044937305324211, + 0.7211222951046069, + 0.7233700156870804, + 0.6747076048584343, + 0.784289545176921, + 0.7771936979600116, + 0.7721777673765448, + 0.37822316416414703, + 0.4363152879834152, + 0.47234385276794166, + 0.6491015490071954, + 0.632438756499871, + 0.6707498662013133, + 0.568411537786674, + 0.5456099033340084, + 0.7084152880169362, + 0.5246755513501452, + 0.5763705830014743, + 0.5272666327980536, + 0.4290331974251001, + 0.3675203585139231, + 0.544112409369189, + 0.41701571546862726, + 0.6928665705189796, + 0.8946765890068032, + 0.7841752329704309, + 0.8079004974399008, + 0.6670072516688667, + 0.6308655217019177, + 0.5864002682614703, + 0.5986337646138262, + 0.8093359294834758, + 0.6901667593276142, + 0.6027978730558122 + ], + [ + 0.840845597541143, + 0.8195791630108082, + 0.9037448016025692, + 0.7018580963635278, + 0.7085384079998017, + 0.7152907512523314, + 0.7804790731824256, + 0.8713616683720474, + 0.8301747084353502, + 0.8702598497982472, + 0.7914666972125165, + 0.8176858846694312, + 0.8531738647586795, + 0.6262311716302387, + 0.9008497428377791, + 0.7190971450424398, + 0.8309295876051558, + 0.929161179324973, + 0.7733859217846649, + 0.902609789821646, + 0.8804158627270711, + 0.6362029564745989, + 0.8656854986073287, + 0.8155020644315176, + 0.7974000510035217, + 0.8172141141378384, + 0.8103439735430775, + 0.9543166409370436, + 0.7282169978864274, + 0.734551456380048, + 0.8673125087949212, + 0.790612824292217, + 0.7727296102871828, + 0.6472382879500037, + 0.8243874816791539, + 0.8162781314131973, + 0.8432911790616959, + 0.2688965106237846, + 0.777076367943116, + 0.7930802350676189, + 0.8429905431900757, + 0.6810062515115399, + 0.19348307226293057, + 0.6436206680487824, + 0.7664267664551768, + 0.8398623902903394, + 0.8032404492084169, + 0.8782577959262415, + 0.7811657300207174, + 0.6686538464567181, + 0.8354994959550944, + 0.7300049180958933, + 0.5817187772198326, + 0.7854488798547847, + 0.6178116638102863, + 0.6996698724104625, + 0.7667942216189447, + 0.787875115283704, + 0.5166570342708181, + 0.7943915784463722, + 0.7339112122774396, + 0.8828855490402966, + 0.8436212895281306, + 0.7472257180826265, + 0.8617130839372646, + 0.6820587076922573, + 0.8201337322302431, + 0.7854845032230119, + 0.7239961807419374, + 0.7751782884683543, + 0.7650971692283961, + 0.7778422888747301, + 1.0, + 0.8814571270045014, + 0.8152117367466787, + 0.7746610264522876, + 0.7676864152682875, + 0.637196754039539, + 0.8543344309724019, + 0.8250551720873246, + 0.7448739434346797, + 0.402653327293586, + 0.8050969984801462, + 0.7351656466506398, + 0.9259165844626832, + 0.905114514793913, + 0.9543745774207835, + 0.7129647015149493, + 0.4825674141700051, + 0.7050208762137607, + 0.9029043838874097, + 0.777693528520249, + 0.6854678491681558, + 0.7965808743496079, + 0.8668327905679082, + 0.7798375120579518, + 0.9047020509093399, + 0.6709473223370711, + 0.7652876299605829, + 0.7928698017414837, + 0.8600311357811662, + 0.7803484701915924, + 0.8395400363110628, + 0.6787454859801694, + 0.8819174302422045, + 0.8108318922357177, + 0.7302471904985455, + 0.8446755048030998, + 0.7008030155774458, + 0.8489134007451905, + 0.7322150510705232, + 0.8118083014858993, + 0.9336880030454343, + 0.8885736052699088, + 0.8286189072670814, + 0.8870108366386995, + 0.7847543842748415, + 0.9133047837803391, + 0.8518892346383452, + 0.7568246749230879, + 0.8254089590967244, + 0.7831065611888729, + 0.8740927720943331, + 0.8159684106988792, + 0.8284075003824946, + 0.8037601614241453, + 0.4153098696112655, + 0.7954714870638564, + 0.7171583614020979, + 0.6397567018816024, + 0.8503130517817779, + 0.8170935554141363, + 0.7347322093463753, + 0.6984842132878757, + 0.8001036297276014, + 0.8578347544715416, + 0.795186324266346, + 0.7672968424081027, + 0.6203368983271393, + 0.8286073417012533, + 0.8076689011074722, + 0.8999528981898338, + 0.80638639274951, + 0.8868351395305225, + 0.5067061398450868, + 0.862699024715359, + 0.7482975753662856, + 0.5476600923626278, + 0.4963046773069411, + 0.7572567688769605, + 0.7897365705354595, + 0.7505076431584403, + 0.8520122686035003, + 0.8267669199454012, + 0.7241565917029136, + 0.7642638258201011, + 0.5943268055118488, + 0.8295825315235676, + 0.8166848810470683, + 0.8778315007270844, + 0.8561552999320986, + 0.70697003643258, + 0.8795000288992827, + 0.7310097531574762, + 0.893050895549491, + 0.8184767735837584, + 0.7456575594804453, + 0.8233361655081194, + 0.7880059116075299, + 0.8680299357474234, + 0.7579837861132552, + 0.7459880163224685, + 0.7498395133431055, + 0.6962812986241612, + 0.7835110098104232, + 0.3003124561996039, + 0.7136306633762418, + 0.661929597441292, + 0.8838142627888823, + 0.7580711840638974, + 0.746947590641634, + 0.778804780295512, + 0.7207019023099126, + 0.8553527185357459, + 0.7956503429478642, + 0.8519356592232719, + 0.8004767077314381, + 0.9336492849348001, + 0.7848191248171006, + 0.8600423833153704, + 0.8711625647485238, + 0.8302203944005051, + 0.7830805384698065, + 0.8200153364897237, + 0.6981455960229933, + 0.6616438520675157, + 0.8550028812866078, + 0.7820398985708528, + 0.7345751717517156, + 0.5247347327733499, + 0.7853794336790624, + 0.8157761433801047, + 0.7660389434219977, + 0.6523358665150085, + 0.8116077551935283, + 0.765216802029317, + 0.8388884516677784, + 0.8359802847696586, + 0.5058301028238138, + 0.6786903564230923, + 0.6788753011134235, + 0.7156100272473034, + 0.7783797053432256, + 0.8510968395880987, + 0.8297347327899448, + 0.5464548002802194, + 0.7406252088333938, + 0.8245441452185106, + 0.7854954761125612, + 0.7406943896072986, + 0.7489382644654128, + 0.3436274275349999, + 0.7056433688294822, + 0.742607503185602, + 0.7019266785492723, + 0.7243644182981851, + 0.7778276987032657, + 0.6828455899991315, + 0.7357420850018258, + 0.9085927940412712, + 0.7671719717951717, + 0.8477429451746141, + 0.8638545734860084, + 0.8077217014385496, + 0.8380652788386428, + 0.3151725864894412, + 0.500429504199541, + 0.6617615809423215, + 0.766058336033884, + 0.7605752714951362, + 0.6386294747541466, + 0.6718529624321772, + 0.7855006868749611, + 0.5931559253871945, + 0.6084720045102885, + 0.6361193277942166, + 0.7381801234584846, + 0.4222531886314116, + 0.4122831390101897, + 0.8339812287969219, + 0.5796566427507999, + 0.4577692351058268, + 0.7421385686304677, + 0.7861154198460673, + 0.6212973716740036, + 0.8970110020446733, + 0.7490771001087985, + 0.6136433462890759, + 0.6918224036993302, + 0.7845976730058208, + 0.8335480505504904, + 0.5515490296070372 + ], + [ + 0.8991005580703367, + 0.6640478523619593, + 0.7058084591554975, + 0.6538936717409881, + 0.7543396691662948, + 0.6459221845804999, + 0.5812021391694039, + 0.9009610628633958, + 0.8438447107312425, + 0.719015574861951, + 0.677162572675326, + 0.7862571740263226, + 0.8237296933443262, + 0.7020684713035317, + 0.861431985138246, + 0.8191190777205529, + 0.8799266619993414, + 0.8490163318041398, + 0.8441036693176867, + 0.7287949418514708, + 0.8915601160396367, + 0.7253354322314164, + 0.7364182824726768, + 0.7258717920247767, + 0.8888144309308393, + 0.8448672295913607, + 0.7560436024313887, + 0.8545666869393845, + 0.731935197365255, + 0.7739100075251675, + 0.9428542355754098, + 0.7527466109996256, + 0.7625070927236859, + 0.7401097925711068, + 0.7158960518771772, + 0.924684689841351, + 0.8591378563267489, + 0.46152902560599757, + 0.905144130637278, + 0.9517024895069451, + 0.8033231977724825, + 0.7209140965308881, + 0.48371148166867006, + 0.631739939956875, + 0.7117212974153719, + 0.7089256363688791, + 0.898453844444719, + 0.7736957435405581, + 0.7279692784414454, + 0.8452614460248787, + 0.8315705439790736, + 0.725157174628973, + 0.7465858245382656, + 0.8521090950379612, + 0.8338882345512773, + 0.8483388034484916, + 0.8797843681559155, + 0.9399354854035058, + 0.5208446868661513, + 0.8237943898891805, + 0.8548989363968095, + 0.9124478182861634, + 0.8834534213958405, + 0.8774588332861903, + 0.6920372168451612, + 0.6420565776800026, + 0.771127313756962, + 0.7698394075357929, + 0.7031428660633651, + 0.8104003643811121, + 0.7717065819959386, + 0.6610941551685295, + 0.8814571270045014, + 1.0, + 0.7810633052033107, + 0.8183412823788997, + 0.7878741608442127, + 0.7355498351911299, + 0.8800019519534145, + 0.9035935100011565, + 0.7515781426824365, + 0.5114015834109376, + 0.8299693392327742, + 0.8533484036571743, + 0.9529957895711632, + 0.9256055744946345, + 0.915148906098642, + 0.6856363228580186, + 0.560409870318694, + 0.7186334825813046, + 0.8538987034177995, + 0.7566708554440976, + 0.6367079733256131, + 0.8292800630795716, + 0.8261160716822307, + 0.9096913727792625, + 0.8765621290376738, + 0.7684365593598073, + 0.7066461195497321, + 0.7126850575679362, + 0.8431057448993032, + 0.9173075415602543, + 0.8927624826497893, + 0.7791384441020428, + 0.8661914307117291, + 0.6856896868530074, + 0.7258456251258126, + 0.8905802409035801, + 0.7842300307776334, + 0.8503335220244309, + 0.8608340255084741, + 0.7781393100983987, + 0.9432163240624405, + 0.932423850478533, + 0.9315560246552181, + 0.8650708191461017, + 0.9171410925539905, + 0.8932034654609396, + 0.7698775010627354, + 0.8010921440169522, + 0.8653785829886077, + 0.8560284131101543, + 0.9408546201870006, + 0.9127666987933487, + 0.8999617288395877, + 0.85258281154729, + 0.4375903884329377, + 0.7931105161099983, + 0.6638072951295011, + 0.7605928510419786, + 0.8306999043421573, + 0.8052813429126238, + 0.73867916209819, + 0.7301096556457138, + 0.6651483710500041, + 0.9571704249031642, + 0.888259763336279, + 0.6894448925319031, + 0.7522280819023313, + 0.8603222841714875, + 0.9086434163362587, + 0.8768779813647201, + 0.8752591064269488, + 0.8645631976965494, + 0.5266845988526809, + 0.7632394352475071, + 0.7195988934352626, + 0.6016557455326975, + 0.5430184374684037, + 0.8208793847201896, + 0.9076696210203795, + 0.8903777546217895, + 0.9431468953127523, + 0.8733273322453944, + 0.735614228185223, + 0.858708775689509, + 0.7680542729431675, + 0.8777651113713026, + 0.9078456609607416, + 0.9669054729094054, + 0.8980189978588896, + 0.8243671732980131, + 0.8676734924514403, + 0.7703250169374812, + 0.8723948812767928, + 0.8431065321888304, + 0.8381510125018549, + 0.8879844870583027, + 0.8783197878717303, + 0.8856152805462609, + 0.8061916387295691, + 0.8227234006643573, + 0.8117024423123878, + 0.774675869940459, + 0.8811883805484004, + 0.6337180544184626, + 0.8770184442165988, + 0.6304242295724699, + 0.865425691783532, + 0.8910451347766993, + 0.8369594873253673, + 0.8743350314959231, + 0.83220672698058, + 0.8800509723427388, + 0.7888914762479927, + 0.8463565783061654, + 0.8369174713788339, + 0.932299737872245, + 0.8139966461299333, + 0.8978228598241955, + 0.8981397586158395, + 0.8042247867188331, + 0.843857185174312, + 0.8899768031924604, + 0.8149021089422356, + 0.6861536491916369, + 0.8719135826468896, + 0.8667954596060929, + 0.7392692692781451, + 0.7269204754916123, + 0.8480337212648433, + 0.8663517864752045, + 0.9340376649523612, + 0.7598964919354158, + 0.8084713875751622, + 0.83318307563507, + 0.8669005260056775, + 0.8297699654985635, + 0.5678863827200996, + 0.7794359932580945, + 0.6918962585527785, + 0.8194896670566932, + 0.8696432685488137, + 0.9125886603117127, + 0.7632805469281132, + 0.6149755266491531, + 0.7491979649299008, + 0.8870116126281249, + 0.8589107719044834, + 0.8267962255816039, + 0.7259333877537352, + 0.5655793845200454, + 0.7701336160159865, + 0.8942236621578217, + 0.8350982846754184, + 0.8087319385815984, + 0.7915335242833328, + 0.7886619617375266, + 0.7444249239344994, + 0.9142307848151352, + 0.8588691894612004, + 0.8301204686331375, + 0.9019834183847328, + 0.807068018276324, + 0.8112640375175127, + 0.5473160861447529, + 0.6263713456299874, + 0.8031141664686324, + 0.9202071404854797, + 0.8576168702924932, + 0.7106662833192087, + 0.7757269239415019, + 0.7300478968049133, + 0.6879046385481334, + 0.6403595147272454, + 0.863318939602972, + 0.746800933307988, + 0.648837330741575, + 0.6363331322496011, + 0.8196853738267855, + 0.7098878435171583, + 0.5047066307173698, + 0.7110560616082372, + 0.7247151276159588, + 0.681088293442879, + 0.9359057145627633, + 0.7962266989829162, + 0.7627466320710243, + 0.645174508217502, + 0.8671486645401593, + 0.7699492183824804, + 0.6449870982591781 + ], + [ + 0.7924570470304649, + 0.7319005323427944, + 0.7953948816309124, + 0.7339079338510539, + 0.8585379429981872, + 0.8842360080983228, + 0.7571084157257763, + 0.8306556459088124, + 0.6619944585085359, + 0.7648317515007644, + 0.6420346653177156, + 0.8216575536395371, + 0.8677966067208874, + 0.7877473933744495, + 0.8725680669319378, + 0.7280123015731885, + 0.6434538894529428, + 0.8755100851803407, + 0.8200515073593999, + 0.8196155289616653, + 0.9231173023123042, + 0.7464004180229086, + 0.8726019030799025, + 0.8557399184833413, + 0.6267474194202339, + 0.8303504192377066, + 0.7760551986796936, + 0.8330224000566959, + 0.7830269223008447, + 0.7074131139105501, + 0.7643673254841992, + 0.760470976451856, + 0.8876068115887572, + 0.7056978202993585, + 0.8941122423736025, + 0.8260906590170854, + 0.9098000784648371, + 0.40613420907748327, + 0.7353702877040034, + 0.7402524859025387, + 0.844051501278362, + 0.7588730404822015, + 0.3882525354588179, + 0.8030246519909949, + 0.832468838518815, + 0.8191861240094234, + 0.8163784732315224, + 0.8132596898903235, + 0.8935599194776833, + 0.7388226095000598, + 0.8801031386989114, + 0.8300879453875182, + 0.6765340712768387, + 0.7706647191586117, + 0.5888024709004115, + 0.7006476267279872, + 0.7932903702872037, + 0.8369783483163525, + 0.5923219190004794, + 0.8846482724778941, + 0.6266982801418474, + 0.8939117081827429, + 0.7002984267804607, + 0.7507136812162378, + 0.827135162595887, + 0.6959037574808573, + 0.9216454418655979, + 0.8794393783867317, + 0.8270464358430323, + 0.7978774894230636, + 0.8454754761472856, + 0.8428978512268194, + 0.8152117367466787, + 0.7810633052033107, + 1.0, + 0.8542754445190951, + 0.8587177868460291, + 0.8007737501529515, + 0.7612068711812032, + 0.8526155385606755, + 0.8624014763553762, + 0.5643600053768643, + 0.7800423469565129, + 0.8102875841314742, + 0.8461006724795703, + 0.8439858656770715, + 0.8774732342713036, + 0.7508778883113315, + 0.6060412777268233, + 0.8037927368055361, + 0.9289561931208624, + 0.8657899624128773, + 0.851314847768837, + 0.9377361665427286, + 0.8568026745725956, + 0.8046851015693477, + 0.8027406945360246, + 0.799089121032233, + 0.8742706256300001, + 0.8712679083216806, + 0.9246726336790281, + 0.818098487145211, + 0.7287548166086358, + 0.8271192137045302, + 0.926597962992383, + 0.7352217060348842, + 0.8222155668612211, + 0.8535876660511837, + 0.7838519359385236, + 0.855694973726104, + 0.8292668800325207, + 0.7139706615364132, + 0.8413917770974677, + 0.881971814827496, + 0.854408010878308, + 0.8881717933618895, + 0.8361438736095641, + 0.9437593783550391, + 0.7024995121405065, + 0.8278343552239057, + 0.855563223538991, + 0.8898039985549135, + 0.8698983844474559, + 0.7382268921110644, + 0.7070158849959742, + 0.7493765985174974, + 0.5568676892172212, + 0.9324974751185865, + 0.7381083018637483, + 0.8205854988088237, + 0.7330397688147269, + 0.7266781728426508, + 0.598592346244241, + 0.6729343097900746, + 0.731331630479724, + 0.8225011896435965, + 0.8860384669282977, + 0.8547959339792274, + 0.6254680449268221, + 0.8915957636318985, + 0.8619810560507997, + 0.8766519715689561, + 0.8664837253256265, + 0.8952708164125067, + 0.6371388813466593, + 0.891000531628174, + 0.8240486330646084, + 0.7284467914101851, + 0.633351685608709, + 0.8145589564094603, + 0.8540036284902907, + 0.8352218554112252, + 0.8195016697187879, + 0.7439189416721417, + 0.8725454433988744, + 0.7950793166206107, + 0.6414462361827963, + 0.8631098237236215, + 0.7878283239279161, + 0.8597986225021476, + 0.8867196872941003, + 0.8565635284240493, + 0.8760541971772917, + 0.822614061523387, + 0.8914370750625372, + 0.9101040902055525, + 0.83524308702841, + 0.8669878768265874, + 0.8802429225234292, + 0.8944166782427379, + 0.8410401388108354, + 0.844022651887156, + 0.7438528118002677, + 0.7261787600926742, + 0.8916532070177833, + 0.4637745378211865, + 0.7978774223446035, + 0.780122760124008, + 0.831257319392281, + 0.8042755798066995, + 0.8110957523048217, + 0.8930837703898116, + 0.8707029971000627, + 0.8953763162633228, + 0.9143354642104392, + 0.9065023290061546, + 0.9397812697017907, + 0.8892524398831257, + 0.7012835732900636, + 0.8726587428445797, + 0.8840869350729549, + 0.8859510613965955, + 0.891503014196053, + 0.885234963196947, + 0.7570597528439063, + 0.7132791332164623, + 0.8625557080103773, + 0.8461706746101979, + 0.8218678176245697, + 0.7093822644641794, + 0.8772509491569049, + 0.7112521470247133, + 0.7521985941309642, + 0.7316128322766186, + 0.8605414486342953, + 0.8834993945205576, + 0.8432411379676362, + 0.821529086198072, + 0.6365497119459169, + 0.7821101887440034, + 0.8065512090373103, + 0.7391767319485791, + 0.7815215904993379, + 0.8106648777147967, + 0.8451721768508793, + 0.6465286553859135, + 0.7950279884363475, + 0.8537169545590012, + 0.7885693792550399, + 0.8669931213215862, + 0.7805382937425174, + 0.5911305397523312, + 0.8387487840884934, + 0.8282863243936063, + 0.7690351941619125, + 0.7072340650429335, + 0.8089290450701416, + 0.7806372073153274, + 0.6924446724877908, + 0.8944561128056192, + 0.8384805602567204, + 0.8754810783466738, + 0.919334287916671, + 0.8759789942491493, + 0.931822403179925, + 0.521809697454239, + 0.60355496445483, + 0.6937471793003752, + 0.8246838736743961, + 0.8739172284445331, + 0.7711577987950026, + 0.7560224653638825, + 0.7527820424897863, + 0.6909468857090765, + 0.8155283445878225, + 0.6264432916833419, + 0.6190565850498764, + 0.5872741477715128, + 0.5879495255363887, + 0.7209480462725867, + 0.6391054549707398, + 0.6393927323614252, + 0.8141365337833985, + 0.7204370489068018, + 0.6757542789089509, + 0.7842897607364009, + 0.7888889466803088, + 0.6416792448021446, + 0.6223135074040238, + 0.8777476197458668, + 0.8300016588664052, + 0.6847475083431623 + ], + [ + 0.7295608844843493, + 0.5282019978477048, + 0.7604970104230402, + 0.7244911200585579, + 0.7295827817806806, + 0.7477896108953974, + 0.537199947949593, + 0.7802624196408388, + 0.5656965147467928, + 0.67889451195424, + 0.5519226202842351, + 0.6431941239312231, + 0.8107728596280102, + 0.5890445260496494, + 0.8553035244697261, + 0.6314202379901361, + 0.6189794178072701, + 0.7678818504444744, + 0.740467098248051, + 0.7412780438055702, + 0.882494084282366, + 0.6793214591521565, + 0.8198603196866643, + 0.692041352032851, + 0.5745079615430206, + 0.7229157899788778, + 0.8661126402371405, + 0.8156365251859818, + 0.6457520461578135, + 0.5012962929752839, + 0.7512606749539306, + 0.594598132644161, + 0.7641971172402524, + 0.7739361240395455, + 0.881067366438337, + 0.7618861680785418, + 0.8010406679489548, + 0.4069949950094444, + 0.6660716005268739, + 0.8572176586956685, + 0.8069818655906842, + 0.7784537319887649, + 0.5555565701938251, + 0.8695880233278334, + 0.9318011791163439, + 0.7022439588688036, + 0.8657746478776949, + 0.7300741731159746, + 0.887590869125658, + 0.8442519096881311, + 0.8059006418674102, + 0.716476600241985, + 0.6190553793982198, + 0.6201035307665136, + 0.48904380516631274, + 0.597483532380605, + 0.7036934503578521, + 0.8750724244980389, + 0.6685162303681313, + 0.7912175492780531, + 0.5721841616634297, + 0.9247624179522236, + 0.6344123225386101, + 0.7427252519011325, + 0.8105259733744019, + 0.6653410059717282, + 0.7905685830871128, + 0.8963221719915024, + 0.6297144436191028, + 0.6155819802199439, + 0.6955290999423223, + 0.6170328717703946, + 0.7746610264522876, + 0.8183412823788997, + 0.8542754445190951, + 1.0, + 0.9779319921397575, + 0.7909573096166248, + 0.7401467794694322, + 0.8823660428237954, + 0.6560424435186683, + 0.5795130469450793, + 0.7069791421985648, + 0.9402475538512407, + 0.7784170726441836, + 0.7367587772370129, + 0.7803137125775107, + 0.6735250074694699, + 0.605269892536823, + 0.6812345176580794, + 0.9024111826836761, + 0.8665705665583194, + 0.815959902537721, + 0.8589322069065927, + 0.8715064522727205, + 0.7613900620367343, + 0.6838668153451475, + 0.7022493947930538, + 0.7870807890912175, + 0.666131658093649, + 0.8706930164118808, + 0.7979723712699346, + 0.7351115359606263, + 0.7510236819223304, + 0.8984723432451232, + 0.6952905785083354, + 0.742916183448766, + 0.8425061475228185, + 0.761284071823352, + 0.947964730540328, + 0.8454530907893797, + 0.8255154474135987, + 0.8447200455243888, + 0.8478411810017189, + 0.8490317447194224, + 0.8418095056245727, + 0.838127526991551, + 0.8797164966842717, + 0.7763913705704089, + 0.9157984973488454, + 0.868662992781679, + 0.8861242526504431, + 0.8099687210974151, + 0.6766808778963672, + 0.7793468600756485, + 0.7373314429912028, + 0.4917899372095852, + 0.9077384370386082, + 0.7124522178457624, + 0.9108683786849333, + 0.7805902255692997, + 0.6922813308389162, + 0.5706570486134228, + 0.6971420528591222, + 0.6976002950693629, + 0.8296123612835385, + 0.8422529127431408, + 0.9154295842865724, + 0.7727774750044275, + 0.9254761086636848, + 0.868439410920126, + 0.9047752763982432, + 0.911492086092657, + 0.8056530498008068, + 0.5627155228551373, + 0.8592146342283904, + 0.8239057665908777, + 0.7342884698749624, + 0.5499718195632326, + 0.7875783962816567, + 0.8644599440725276, + 0.8117142667754185, + 0.8581264022366047, + 0.7082773914267134, + 0.8957764937173316, + 0.9264363817496389, + 0.7630310749110727, + 0.8341509187225813, + 0.75858041986903, + 0.8413271072691686, + 0.8544969287586996, + 0.8382708322204493, + 0.8717689891712549, + 0.8617789704372462, + 0.9131776898905424, + 0.9014359564437537, + 0.8717003145096454, + 0.8645922815616852, + 0.8852774138518996, + 0.8963952575122852, + 0.8949135037538061, + 0.8702580865065808, + 0.8024242357317168, + 0.834614354965344, + 0.9451903016275062, + 0.5468265775010223, + 0.827728137733445, + 0.8540198836417505, + 0.6850778363692245, + 0.8551883977855643, + 0.6824488245688058, + 0.9013161246679222, + 0.831819639205014, + 0.9372525573007732, + 0.8118649671410233, + 0.9425719477786109, + 0.9244690445889733, + 0.8769653222536352, + 0.8591445841265855, + 0.870730473871839, + 0.9100315593645082, + 0.9360207214016633, + 0.9527814406313597, + 0.9177419167568085, + 0.884338545375981, + 0.804305472171051, + 0.8516912044208446, + 0.8737449765263583, + 0.8950040916822226, + 0.7990536901774327, + 0.8625876892357828, + 0.6264783942780978, + 0.8144300496199596, + 0.8915583155678654, + 0.9068387276138599, + 0.9465214940829089, + 0.8840491064880541, + 0.8781012869857806, + 0.6489061639161403, + 0.8965506383304014, + 0.8566581541411387, + 0.8435579289039332, + 0.8510652992615994, + 0.8668315526362773, + 0.8858742300132052, + 0.7383800439832292, + 0.7735366430576662, + 0.9028312749969603, + 0.8495135402387071, + 0.9153638274675434, + 0.8599726294010255, + 0.6667907800357458, + 0.916586421981519, + 0.9367140480476568, + 0.7360039938951787, + 0.8766025409078444, + 0.8808821017026242, + 0.8699025994664176, + 0.5597706685544162, + 0.8733801030049186, + 0.8665278058455513, + 0.9251861959857336, + 0.9146798852610195, + 0.8617478792219337, + 0.9051723798105913, + 0.5791887054801831, + 0.6729685927309126, + 0.7623184347156349, + 0.8827891679860896, + 0.9035990844141017, + 0.5668974631675919, + 0.8593894577095565, + 0.8908836074527217, + 0.711794220579804, + 0.868019853181183, + 0.6049101199264169, + 0.5872534077255835, + 0.6464305426200013, + 0.6785397653066949, + 0.8076677474239253, + 0.6688182515851355, + 0.6576400528509755, + 0.7529894516752239, + 0.6589729648295217, + 0.6616589294984953, + 0.8351788746901856, + 0.9338988334610867, + 0.6438136802818507, + 0.5110755198350527, + 0.8285309317464276, + 0.8962626513068344, + 0.7101885002153423 + ], + [ + 0.719079914582328, + 0.5070045976418351, + 0.7645540228893923, + 0.6967869543740506, + 0.7289748333231227, + 0.7425106470748837, + 0.5419854972975505, + 0.7989353425495678, + 0.5275903006751514, + 0.6498961737986321, + 0.5208226659991806, + 0.6316222136960454, + 0.8067132179868945, + 0.5880926972380929, + 0.8421823487490696, + 0.5922090264998342, + 0.5965578761740846, + 0.7432879879286876, + 0.6936881210671143, + 0.7349548273320485, + 0.8481800462641923, + 0.6178205916837184, + 0.8261464777611961, + 0.6566977178131719, + 0.5263797142519184, + 0.7112535096823732, + 0.882634099773601, + 0.7970252315690122, + 0.6114427449485031, + 0.4903719073402508, + 0.735592028331964, + 0.6024733822627258, + 0.7525052586537043, + 0.7175885637420667, + 0.8752839086353327, + 0.7453136596290351, + 0.7707687430935685, + 0.38889122193904624, + 0.632340120620419, + 0.8050922078302059, + 0.811330304612264, + 0.7911239533613333, + 0.4814273418969927, + 0.8297751506471304, + 0.9449068238826759, + 0.6927388284358136, + 0.872671090506109, + 0.7185669356863401, + 0.8630486112170502, + 0.8132324007244585, + 0.7520802076666968, + 0.6936760936151849, + 0.5716660089797375, + 0.5925234133759301, + 0.451936551659902, + 0.5582700486481833, + 0.6618973466280759, + 0.8644724314876522, + 0.6551144144031457, + 0.7857333380388325, + 0.5147126824130357, + 0.89774767175783, + 0.6036995366415626, + 0.691510077382043, + 0.814457374019, + 0.6897825887081351, + 0.7886931456356492, + 0.9039344416611346, + 0.6358041640275953, + 0.6136087357675237, + 0.6776329000295399, + 0.6063454386246577, + 0.7676864152682875, + 0.7878741608442127, + 0.8587177868460291, + 0.9779319921397575, + 1.0, + 0.7541215491392559, + 0.6979075188824696, + 0.8592537533415502, + 0.6438530780196293, + 0.5304852211821356, + 0.6682431775663676, + 0.9266101830619563, + 0.7724267327165887, + 0.7284857101006175, + 0.7580649458338747, + 0.653006338588375, + 0.5813359546117568, + 0.6919308489640794, + 0.8956382154460674, + 0.8574345638671094, + 0.8419956912829453, + 0.8785310760140241, + 0.8534724341695104, + 0.7469110728205982, + 0.6535754476130122, + 0.6801225988930446, + 0.800559274475813, + 0.6544761116465195, + 0.8613488219740738, + 0.7522081153831949, + 0.7315069779773922, + 0.7471520940190052, + 0.9140009681128657, + 0.6563059147871447, + 0.7418608705357533, + 0.8229133633701565, + 0.7545664149610043, + 0.9562815981906324, + 0.8341000177968682, + 0.7914252479718612, + 0.8447743916620916, + 0.8172450951886784, + 0.8333480999756973, + 0.8214552522557031, + 0.8395261025593999, + 0.8710335017128075, + 0.7564217108194018, + 0.8892212223401845, + 0.8562098244999591, + 0.8737234783313861, + 0.8081417205368229, + 0.621738139446309, + 0.7402747613635144, + 0.7057597296023489, + 0.45531839992948775, + 0.8949469906610351, + 0.6850789346067103, + 0.8948466251548267, + 0.74085610812583, + 0.644064517568657, + 0.5366545140616923, + 0.6551692317754201, + 0.6784608341817157, + 0.8245489121886409, + 0.8209900843747882, + 0.8791431895242261, + 0.7528145993368983, + 0.9326691908504546, + 0.8520534517673395, + 0.9090719199264636, + 0.9281529153623727, + 0.810793115732348, + 0.5164378561000579, + 0.8535282145113213, + 0.8313746171198041, + 0.7395494753489168, + 0.5767876764670041, + 0.8000805520630924, + 0.8557296524216518, + 0.7885298242396434, + 0.8506129941485281, + 0.691099420529217, + 0.9015324142120232, + 0.9025617798676271, + 0.7526599686084897, + 0.7989966383215612, + 0.7205644058126784, + 0.8300290473313167, + 0.8474622267197022, + 0.836389104790328, + 0.8604816255861306, + 0.8832998214023968, + 0.9225591463055711, + 0.9101411483149963, + 0.8663928691562716, + 0.8528547327156384, + 0.8819249123478776, + 0.9088048710331843, + 0.8918991548731824, + 0.8633210906329685, + 0.8085830637964185, + 0.8340659378550799, + 0.9327316534433093, + 0.5194187194991672, + 0.8178191027301169, + 0.8493784411664832, + 0.6721894140468473, + 0.8504408701450371, + 0.6613447047803406, + 0.9020898587571632, + 0.8349897006402164, + 0.9506190649578226, + 0.8400527508573837, + 0.9381695107420048, + 0.9057614459465495, + 0.8730544912882879, + 0.8402412916742474, + 0.8743848236112409, + 0.9085117380283477, + 0.9442820221960132, + 0.9170298835048135, + 0.9284471806274789, + 0.8753762259410869, + 0.8365176141860853, + 0.8505740000723014, + 0.878080225557741, + 0.9224501919590807, + 0.7614898471604106, + 0.8592487233498963, + 0.6275264418199489, + 0.7784111028166844, + 0.8919938475945579, + 0.9186159804194971, + 0.9527188367558161, + 0.8902636051898131, + 0.855795457405428, + 0.6209552700291879, + 0.8962999911882009, + 0.8790544989074301, + 0.8411237559555256, + 0.8550610801336778, + 0.8402229751349231, + 0.8901366044336377, + 0.7674502394118388, + 0.7720315705276989, + 0.9206256032686454, + 0.8831729868307854, + 0.9149702410904281, + 0.8580754096824884, + 0.6745321089450912, + 0.9227995015913846, + 0.8856107021085479, + 0.720616893220001, + 0.8677160412186626, + 0.8967644097291345, + 0.8936988917765665, + 0.5684402461004628, + 0.8698869894675704, + 0.8626503948181271, + 0.9284720034753133, + 0.9138384442360545, + 0.8562438293073694, + 0.9251900008011892, + 0.5080222404196827, + 0.6971150114618919, + 0.7699807169597995, + 0.8527340786044186, + 0.8876507746074991, + 0.5250224786849691, + 0.8540112716389511, + 0.8965750492455458, + 0.7015937633037441, + 0.8730897399242572, + 0.5478689540029177, + 0.5781101900900951, + 0.6238170845838752, + 0.6750202619861987, + 0.8204911313924272, + 0.6427325649835489, + 0.6497750823998045, + 0.7550222229384813, + 0.6508246993151784, + 0.6378959018398411, + 0.8099294316529515, + 0.934341790632893, + 0.5745207671285343, + 0.46413227384450795, + 0.81266947548956, + 0.8596681090794434, + 0.718087607540089 + ], + [ + 0.6322285864888243, + 0.5087417895414134, + 0.53949634501701, + 0.7748824545788812, + 0.8021808855051483, + 0.7784887331158055, + 0.44321238207838776, + 0.6213439916978232, + 0.5679613985132493, + 0.5153588694575485, + 0.33901756830966534, + 0.7719411070904431, + 0.8129759143171174, + 0.7026395691633717, + 0.7138734256257276, + 0.8054263022922316, + 0.5183011028307469, + 0.7192341516975401, + 0.8841911516585628, + 0.6357176862455282, + 0.7266266028574855, + 0.7927819700611574, + 0.6705410114263316, + 0.6538002198042568, + 0.639494607689476, + 0.8350645097632251, + 0.6396503908592883, + 0.6786812984624162, + 0.7117348535378284, + 0.6665185877627059, + 0.7238040186315906, + 0.5402981468465897, + 0.7159413832202806, + 0.6234933951747376, + 0.7345914174998069, + 0.7826324784356183, + 0.7002080101495345, + 0.7586771427866366, + 0.734236633956496, + 0.7362097172729116, + 0.7544053073507004, + 0.8187308886808012, + 0.7566717462312541, + 0.7457376871722364, + 0.7025392207745479, + 0.5935352883905131, + 0.6519449731863075, + 0.6046740392813499, + 0.8172336021862886, + 0.6785333387791344, + 0.6877212409486984, + 0.9096366209785309, + 0.7815749012229788, + 0.7126336499825869, + 0.6116270874405499, + 0.6897045334785677, + 0.7603009573840837, + 0.8565683679542875, + 0.7539240939647913, + 0.6641314848146189, + 0.6296030778699749, + 0.8484379984066751, + 0.6821868621489122, + 0.7252030794815691, + 0.6832120648766787, + 0.6510273966451027, + 0.8023479432559311, + 0.7722988686182809, + 0.5870578562254378, + 0.6032797186960657, + 0.7468086042614955, + 0.7458857517402521, + 0.637196754039539, + 0.7355498351911299, + 0.8007737501529515, + 0.7909573096166248, + 0.7541215491392559, + 1.0, + 0.6564291418624202, + 0.8821845908017549, + 0.7050601974538789, + 0.7378087180904472, + 0.6629373663731288, + 0.8698055415640202, + 0.6974248791978546, + 0.6442137702912751, + 0.7836434600807006, + 0.7661769595874093, + 0.7526436413452486, + 0.890148220569512, + 0.7777473059864225, + 0.723877618957487, + 0.7725473818535247, + 0.824223332885365, + 0.7685165863036225, + 0.8310676507704573, + 0.6855229026071183, + 0.8614233304218744, + 0.5924715181413889, + 0.588555186942089, + 0.816398127245853, + 0.8194604602775208, + 0.744996822714283, + 0.8316213733895677, + 0.7412866338104421, + 0.475189290401135, + 0.8094795120311618, + 0.7219292214737552, + 0.7994094377071628, + 0.7345894724760087, + 0.7461367262302454, + 0.629634434575553, + 0.6746775691154216, + 0.8355030826800574, + 0.8704684793600206, + 0.8921561273677368, + 0.7576005700413704, + 0.7894068299955853, + 0.5491738667352619, + 0.7958418060863235, + 0.8293457611837338, + 0.8584424565647143, + 0.7328409046497862, + 0.6553511511267995, + 0.791499806987921, + 0.6940109796439983, + 0.7249144906552486, + 0.8386586233753158, + 0.8004585798926912, + 0.8661792985173301, + 0.6997280894330303, + 0.6977760009648921, + 0.5319271706096582, + 0.7041389145574817, + 0.5454647284941543, + 0.7116862905702094, + 0.7620373021142621, + 0.7541323779229503, + 0.5445961864040844, + 0.7680272707090974, + 0.8519689665221563, + 0.7444844370889178, + 0.7486951487200048, + 0.7018601126167323, + 0.8262294712937408, + 0.7385825932329123, + 0.8190242880489871, + 0.6525466718686727, + 0.5190901582286579, + 0.6438526514590217, + 0.7509823221457003, + 0.7337418192902023, + 0.7244116447731775, + 0.6459031856291791, + 0.780714368114048, + 0.7986897589226017, + 0.5626478227764193, + 0.7878883011165801, + 0.6296514594954508, + 0.7491005460516149, + 0.7514855124847866, + 0.7273325822828214, + 0.7148863400619774, + 0.627412359367372, + 0.7074176666322451, + 0.8032495529790765, + 0.7068963357293075, + 0.8157003156025537, + 0.8264223401818557, + 0.8014352879888373, + 0.7290150847475875, + 0.76731683448203, + 0.6457233691655456, + 0.8706012953488638, + 0.862649702975762, + 0.5527329043945401, + 0.7069152594659214, + 0.7447763187602244, + 0.5550448980605039, + 0.7205106217855447, + 0.7956014716296606, + 0.8195429229820635, + 0.7662357524053733, + 0.7559525415122769, + 0.7479584389971411, + 0.7277711274239981, + 0.8160507211894896, + 0.7033470233586456, + 0.6414209676136979, + 0.7013315925620526, + 0.7809184710143579, + 0.7388733772586311, + 0.8811977802300369, + 0.7937107705383664, + 0.7610510419455081, + 0.48072571629484967, + 0.7598264628274017, + 0.7302439748469641, + 0.7684955621732421, + 0.8803224475023393, + 0.7235127340315648, + 0.6321233274638897, + 0.7660752663374976, + 0.7221658373830279, + 0.6913841562227312, + 0.8297833655845805, + 0.8773844645373254, + 0.8623301441433027, + 0.7120088204066465, + 0.8232543786325641, + 0.5959448324518372, + 0.6043507871821218, + 0.6847839327684481, + 0.7438891299622995, + 0.7469484734544319, + 0.7845350490629766, + 0.7740348830602107, + 0.6782734299528421, + 0.60944160754617, + 0.8612687252658467, + 0.684669637841277, + 0.5215232230469801, + 0.8290819024222066, + 0.78873542059676, + 0.727600927678922, + 0.7440840499497785, + 0.7468502579428398, + 0.7055733258611141, + 0.35231012664037425, + 0.6692654704574876, + 0.7613049466926137, + 0.7237418562586567, + 0.8420851310296299, + 0.8159939829013761, + 0.7991650739680222, + 0.796816259815307, + 0.7601700296673244, + 0.6794297651091243, + 0.8289067043559063, + 0.8239826992927076, + 0.6015399366781934, + 0.8557671811965418, + 0.6904732046031751, + 0.8084566026898805, + 0.6120753258487218, + 0.6956288998344426, + 0.3518664842169768, + 0.6535871046500483, + 0.5329110578244791, + 0.6214449695636511, + 0.5847325917350514, + 0.7402422567260427, + 0.899096906176024, + 0.7362659933185972, + 0.8012606766740572, + 0.7294126808537065, + 0.7677246630888229, + 0.7573769670637012, + 0.36227062282831707, + 0.8071669341457108, + 0.7114331648382232, + 0.5424610877115532 + ], + [ + 0.9098651625232248, + 0.7260296460834148, + 0.7925972875655312, + 0.5711914440779307, + 0.7409228375706032, + 0.7270450779494838, + 0.7324739677647389, + 0.8680201256889799, + 0.8851433363915973, + 0.7605742614566506, + 0.7863351466689841, + 0.7443350474244623, + 0.7579559920029044, + 0.6527844245330752, + 0.8120048606775532, + 0.7603023117442032, + 0.8869351733256416, + 0.8912911308708907, + 0.8132613217333574, + 0.7666044101253561, + 0.8790106427123583, + 0.7392435208515847, + 0.7635084981823638, + 0.8151559358650273, + 0.7718083510355661, + 0.8046187010126727, + 0.6710534859122016, + 0.8474243539357871, + 0.7865836925764986, + 0.7372037668863796, + 0.8540981899702835, + 0.668270144105544, + 0.7982013721922012, + 0.7752330355717335, + 0.7181542944103629, + 0.881837917802526, + 0.8530317339675527, + 0.3205298074779252, + 0.8564348303947026, + 0.8391795933548162, + 0.8807431467584883, + 0.687561422393617, + 0.44696892553586676, + 0.5765478707719471, + 0.6849441187457783, + 0.6685504224861002, + 0.7709404180051319, + 0.8516147019479651, + 0.6686396309002777, + 0.6643053170653548, + 0.8545176574604214, + 0.659140495265993, + 0.7282311591078723, + 0.866916137401937, + 0.7726270630336061, + 0.8661704142104745, + 0.8965881402077425, + 0.7988173908158898, + 0.4007870370827707, + 0.711015391291202, + 0.8566063474507969, + 0.8131322541582675, + 0.885804990145444, + 0.802072520890475, + 0.7820355624384213, + 0.6454874968366394, + 0.7601842970514043, + 0.7203600597916341, + 0.7457245878395493, + 0.8266025004282951, + 0.7417774766604897, + 0.68887961245694, + 0.8543344309724019, + 0.8800019519534145, + 0.7612068711812032, + 0.7401467794694322, + 0.6979075188824696, + 0.6564291418624202, + 1.0, + 0.7705306912110372, + 0.8472156205470422, + 0.400128533720845, + 0.7276773626389883, + 0.6767954952404222, + 0.86635841485761, + 0.8417235264849298, + 0.8655546526751716, + 0.6756988557850947, + 0.5068628700304599, + 0.6771609585984919, + 0.8138565340295875, + 0.7977560347332548, + 0.5339136490019549, + 0.7357826666041137, + 0.7182612575950686, + 0.8097609885187079, + 0.7602619412402788, + 0.6671470147930335, + 0.746588904708644, + 0.802535647920808, + 0.7849323983852873, + 0.8427240500647576, + 0.7498007518640809, + 0.6942376134032349, + 0.8202992659649727, + 0.8218116920486324, + 0.7636461694462973, + 0.8478080387941093, + 0.5627477892863778, + 0.7268907582058329, + 0.7272216284492268, + 0.7246035290980473, + 0.8474578480755299, + 0.8723264414227622, + 0.7572156550886169, + 0.778962252472966, + 0.8061154116981113, + 0.864952720593825, + 0.6214409897103896, + 0.7320313507267036, + 0.7472590702367357, + 0.6967827823275354, + 0.7884311448897735, + 0.8743561878136603, + 0.7756324976892385, + 0.6979024798362391, + 0.3527465323673669, + 0.7587854093318378, + 0.5828230440333801, + 0.6229997417844134, + 0.7732399265502125, + 0.7021769768714271, + 0.6726490323072194, + 0.6202019266566707, + 0.8209837932551334, + 0.8220795135090025, + 0.7791693691804921, + 0.6628569971569486, + 0.5138108073853133, + 0.7177006803927105, + 0.8037423351482152, + 0.7444226716017119, + 0.7475023939129964, + 0.788537638270873, + 0.5237729756545566, + 0.8286636615774639, + 0.5614821211796683, + 0.4010900328861622, + 0.3541302309714589, + 0.719746433308844, + 0.8570084327226584, + 0.7857575957828813, + 0.8420394006323895, + 0.8093501444995017, + 0.6452535402238939, + 0.6797280410508906, + 0.5185060597313994, + 0.8058519869946086, + 0.8536069994031119, + 0.8723519670672337, + 0.7876544538304542, + 0.7097258724135652, + 0.8115534080718659, + 0.6507715728578323, + 0.7775532963516357, + 0.6874886904832122, + 0.6961145698359558, + 0.7789127778718632, + 0.7464749946571588, + 0.7418183495830191, + 0.6784012391940208, + 0.7193898936540942, + 0.691949254573787, + 0.6625948762509675, + 0.7453666309716532, + 0.43824418173770274, + 0.6959905726136817, + 0.5165136144198523, + 0.8695651548490722, + 0.7121040193655447, + 0.7344856036692324, + 0.7305636230671834, + 0.7181319688970003, + 0.755661877416304, + 0.6737472839377503, + 0.7908036845708719, + 0.7524245437121275, + 0.8657750073093458, + 0.6501638284036981, + 0.8326131672951017, + 0.7671723796549335, + 0.6830969131941823, + 0.711373883224312, + 0.7615401153030459, + 0.5910230270251186, + 0.5192022789504412, + 0.8419838157779389, + 0.722158072595124, + 0.5708636448480978, + 0.6371086447753616, + 0.7537506761038487, + 0.7003017954763998, + 0.7351253298360987, + 0.5482987326337209, + 0.6754630112593064, + 0.7736871561817223, + 0.7917098781980099, + 0.7146579335982911, + 0.457964512122722, + 0.5940690001690386, + 0.6613118958090528, + 0.6640290011925734, + 0.7237647638969289, + 0.8042546873993958, + 0.6206173579675596, + 0.4313468933484254, + 0.558686099842342, + 0.7238212364369772, + 0.7015164946023917, + 0.6395882230589677, + 0.5869438017811213, + 0.37215787503654063, + 0.668132494830703, + 0.8096980621893161, + 0.5797996506511682, + 0.696525359996299, + 0.6314129389103262, + 0.7113102241981231, + 0.7243941567182108, + 0.8517984038369164, + 0.7439147615511819, + 0.7043034030789868, + 0.7718246402304898, + 0.6314425754514285, + 0.7547862942558177, + 0.5233488195507904, + 0.3864707388715568, + 0.6121999173342627, + 0.810244256561448, + 0.7494732524891675, + 0.8208805846115877, + 0.6255597782989406, + 0.7208248385108157, + 0.4439346529642258, + 0.5513337803089841, + 0.7648192858824464, + 0.8651832468526076, + 0.3687948054972507, + 0.4666773342071726, + 0.8057766263056594, + 0.48000635590260554, + 0.34191473692710095, + 0.6538591858470864, + 0.8025774787686746, + 0.6311001876299145, + 0.8463839861167057, + 0.5998431972549481, + 0.6254208597731057, + 0.7993738956843074, + 0.7778608861387287, + 0.6943645727046319, + 0.4863213204340543 + ], + [ + 0.7827593043446601, + 0.6182766812397947, + 0.6917331375724959, + 0.7010763013710217, + 0.7429389141835508, + 0.6771215821041672, + 0.4911295575615296, + 0.8073659663576748, + 0.6799722337387141, + 0.6340550923305146, + 0.5028135338683456, + 0.8408447666656065, + 0.8584078004486679, + 0.6888045586290644, + 0.8326017845190431, + 0.7569838866610882, + 0.6778966255747414, + 0.7982256087102684, + 0.8190369350483687, + 0.6897942143278469, + 0.8505272850528902, + 0.7142291397653351, + 0.753334696365311, + 0.6551922589418765, + 0.7882633716309757, + 0.8307609076724916, + 0.7686372899742493, + 0.8421799932724142, + 0.6475140896856424, + 0.7317211075123236, + 0.8289456382893756, + 0.6549550045794996, + 0.781993092288528, + 0.6766826203410907, + 0.7535556010848656, + 0.8460391363725325, + 0.814027790951282, + 0.6052043031789277, + 0.8581688344832542, + 0.8852419429369641, + 0.8317183946592135, + 0.8169681749718319, + 0.5511909564098456, + 0.7110420824027631, + 0.7564210537494417, + 0.6808651547939518, + 0.8147308504370365, + 0.6953701470774006, + 0.8177077211588768, + 0.8372464299960046, + 0.804734099053743, + 0.8294151813775513, + 0.6671015475632205, + 0.7403206315742112, + 0.6800810037708775, + 0.7388859227792085, + 0.7785088692965497, + 0.9526792003217653, + 0.6150171661467587, + 0.8372304287534077, + 0.6970508764192208, + 0.9393968308894451, + 0.7699072064095386, + 0.7774245201673453, + 0.7494471498881982, + 0.6129703119027127, + 0.8037681282484179, + 0.8114823011749457, + 0.6336582547646267, + 0.6940892022175219, + 0.7213596194755805, + 0.6809800594833508, + 0.8250551720873246, + 0.9035935100011565, + 0.8526155385606755, + 0.8823660428237954, + 0.8592537533415502, + 0.8821845908017549, + 0.7705306912110372, + 1.0, + 0.6832320051902949, + 0.5294181645331598, + 0.8524745538655332, + 0.927694790881046, + 0.8814304280809799, + 0.8347305039456379, + 0.8777338542357443, + 0.666471297012443, + 0.5842523800709664, + 0.7817568120121533, + 0.8790424380042793, + 0.7308477473818887, + 0.7404744898066309, + 0.8498273064688605, + 0.8264185395866755, + 0.8909374617044951, + 0.8627467741521075, + 0.7858843849628885, + 0.6463877418871522, + 0.6636297941882255, + 0.8660799657853393, + 0.8665565137092075, + 0.8780533738539794, + 0.7673252007971961, + 0.8504257343015874, + 0.5436277751886518, + 0.7327436294376309, + 0.8133837953300861, + 0.7735257263768157, + 0.8614885311011687, + 0.8355339450007214, + 0.7339004077671641, + 0.8827965765298288, + 0.9010404504171318, + 0.9466959318014153, + 0.9025047109293026, + 0.88027194602316, + 0.880048683341814, + 0.7048057132034784, + 0.8077313022672448, + 0.8734460114304649, + 0.9448036807561278, + 0.8820973578975168, + 0.7825544652126688, + 0.8815398610718953, + 0.8159702612846741, + 0.5404919261434512, + 0.8473234679928976, + 0.7503708171560307, + 0.852701766707098, + 0.7892872393668503, + 0.7381385181665252, + 0.6357609185348404, + 0.7144555645735341, + 0.6115431055283673, + 0.8679254678847922, + 0.8316904505654814, + 0.7792381700179509, + 0.7415107868157735, + 0.8788475774525956, + 0.8936442752200393, + 0.8742037548471341, + 0.8841357232716764, + 0.8303487537283931, + 0.6288029552480976, + 0.7509212393931702, + 0.8044196069327337, + 0.685974069821066, + 0.5959036590187295, + 0.798090439570354, + 0.8669782349844088, + 0.8302842789094651, + 0.8866641238380255, + 0.774068422538041, + 0.7677565272271518, + 0.8618886812501465, + 0.7221183631646337, + 0.819111213099179, + 0.7523858064263489, + 0.9018556559486072, + 0.8499655220065798, + 0.7902075183260624, + 0.8001220273381416, + 0.7480032424458523, + 0.8714899129223614, + 0.8967632583083811, + 0.8227171470693193, + 0.8654254867207914, + 0.860641767868945, + 0.8888352420333129, + 0.7749881673962538, + 0.7899292131804061, + 0.7508638341686947, + 0.8935376477898688, + 0.9162755164987249, + 0.546710898634544, + 0.823430511423745, + 0.7809322309511187, + 0.7404037886029302, + 0.8170885950833596, + 0.8326261493983614, + 0.8730724016123601, + 0.8342346680398978, + 0.8780053517246041, + 0.8233518114469822, + 0.8334359013563104, + 0.8615134711622994, + 0.89967295091254, + 0.7731019528871228, + 0.884601234962196, + 0.9434818114656369, + 0.8976110406888648, + 0.9354119003125673, + 0.9155402991395034, + 0.8910318814379933, + 0.6188700752925056, + 0.8090993685673555, + 0.8289872743000388, + 0.8933048022511633, + 0.8103347392893696, + 0.8103596098543475, + 0.7892262390385681, + 0.8713326847870577, + 0.8404988512117294, + 0.8495004671809726, + 0.8733536874264459, + 0.9334418975378966, + 0.9015938251768111, + 0.5821296004755826, + 0.8275742740449262, + 0.666968767811371, + 0.7884619630541563, + 0.8264710069032374, + 0.8231695096205852, + 0.8285523653554612, + 0.7634750724425747, + 0.8429771580974275, + 0.858911511063605, + 0.807376275679315, + 0.8889471954773959, + 0.7976625889577318, + 0.6096629645646127, + 0.883996232191673, + 0.8719725207853333, + 0.8129317536026953, + 0.8174430321265055, + 0.8884182961236918, + 0.7823529786905501, + 0.49961464887982904, + 0.849281934908996, + 0.8380612371304553, + 0.8424072631371652, + 0.9169638091598182, + 0.8719833920614704, + 0.8656802047303179, + 0.6790250723713784, + 0.7951751562924616, + 0.8279141129329323, + 0.9191458982026465, + 0.9164919650816612, + 0.6139571490001362, + 0.8925523026130844, + 0.8219172335392755, + 0.7417270799281278, + 0.676346497864931, + 0.7841940867101894, + 0.49280700172009606, + 0.7293207830326287, + 0.5976710918408307, + 0.7694945408923196, + 0.7408870426315117, + 0.5737127012228056, + 0.8020156684537186, + 0.7023461435297907, + 0.6646453398524559, + 0.8904183963592477, + 0.8333091807744496, + 0.7971302152093891, + 0.4262961695340829, + 0.8355981556870088, + 0.7709697843643629, + 0.5833569032118558 + ], + [ + 0.8705234339353497, + 0.802161686011747, + 0.7411837102431303, + 0.6287505902731542, + 0.8737831500517375, + 0.8613282212955435, + 0.7959922398339294, + 0.7940210373477646, + 0.7495245725295476, + 0.7427476910528811, + 0.7356521430204948, + 0.7899967392467699, + 0.8038526191298773, + 0.7742103127759522, + 0.730828932861717, + 0.7549339139006119, + 0.7071346224620394, + 0.8916441871920776, + 0.8561487275028301, + 0.8032714166922993, + 0.8592750946555018, + 0.7658991146994693, + 0.7934341712478363, + 0.8960191518948462, + 0.6216604645577448, + 0.8366794240707576, + 0.6766812094312508, + 0.7387115319508953, + 0.8553838416520411, + 0.7603063652544289, + 0.7844937188843746, + 0.762770650551752, + 0.8427646044141157, + 0.7216538454275832, + 0.7655950459976872, + 0.8553404880210203, + 0.9096833954907505, + 0.4003425108962419, + 0.743356317772972, + 0.6734998254063495, + 0.8197303279183027, + 0.6571649671160145, + 0.42613101508121043, + 0.6302658066654817, + 0.6522474342724588, + 0.7508896797634245, + 0.7529685848437709, + 0.8442293095675985, + 0.7233707997430208, + 0.6164146157381962, + 0.8101587875807208, + 0.706923440739347, + 0.7352898393951629, + 0.888523257973892, + 0.7361394342869398, + 0.8177663685437148, + 0.89193577817, + 0.7553020289231234, + 0.43141221619373715, + 0.7784433566392961, + 0.705514826621661, + 0.7561909354492805, + 0.7346050150938608, + 0.7434781685670518, + 0.7402204681056779, + 0.6722769171902138, + 0.8274335653482932, + 0.7613233516295265, + 0.9468728653262214, + 0.9458087651758891, + 0.9139352789526364, + 0.8142759970157156, + 0.7448739434346797, + 0.7515781426824365, + 0.8624014763553762, + 0.6560424435186683, + 0.6438530780196293, + 0.7050601974538789, + 0.8472156205470422, + 0.6832320051902949, + 1.0, + 0.4943619969404396, + 0.6664429411601493, + 0.6128803949592809, + 0.7924680317514504, + 0.8340979405788033, + 0.8334243423053116, + 0.7263856784227111, + 0.5656713991876025, + 0.7871521528864341, + 0.7944207019736564, + 0.8544995810831847, + 0.7184286007321279, + 0.8608122180791311, + 0.731141430813847, + 0.7401412286246754, + 0.7121424178703816, + 0.77598307960788, + 0.866230754681164, + 0.9417439247059068, + 0.8718179064782243, + 0.7852397674489032, + 0.6161081886604405, + 0.8050483488979192, + 0.8505734470449978, + 0.7734353699730967, + 0.8337065876154258, + 0.8431633325891472, + 0.6735130240833893, + 0.6906542679638203, + 0.772316833339001, + 0.5564652654779457, + 0.7431282205155989, + 0.8458850106307787, + 0.7375187570687705, + 0.7946460681408976, + 0.7967008872154386, + 0.877073726618502, + 0.5024506755501857, + 0.7163326273664322, + 0.785279946684862, + 0.6898414878270444, + 0.807933886782675, + 0.7348104220235068, + 0.6153194425184495, + 0.6143645676085074, + 0.44798482955144453, + 0.8160574216053413, + 0.5948849006258898, + 0.6530085448897978, + 0.6042127148134754, + 0.6591921434783465, + 0.5252302885428577, + 0.5362180058473864, + 0.7139119590153155, + 0.790295018732141, + 0.8408923860633296, + 0.6524419957873085, + 0.45967979290830335, + 0.706008596758818, + 0.7878392105299744, + 0.7267729539355842, + 0.7217676371790017, + 0.8254060229040683, + 0.6016545646625336, + 0.8315373106347076, + 0.6624777120372205, + 0.5393207352503144, + 0.48959729134287794, + 0.7792955737738254, + 0.8249959071692591, + 0.8152503835879633, + 0.7782569147053114, + 0.7583168871805103, + 0.7222228587841758, + 0.6521802601027283, + 0.5192095385713335, + 0.8295821681407591, + 0.8114730605801839, + 0.8022302988103291, + 0.833186260689982, + 0.7948075290905452, + 0.8036314793907862, + 0.7243975446473288, + 0.7597670348152079, + 0.738268059074135, + 0.7474994136254075, + 0.7725136570759794, + 0.8034342721350174, + 0.7478297607870574, + 0.7277918999803389, + 0.7914307406401054, + 0.5835071966005487, + 0.590015873351619, + 0.7350745032580378, + 0.48463352267084564, + 0.7052992142862382, + 0.5774165211742758, + 0.8872089435760521, + 0.7026815330781401, + 0.7391822892006938, + 0.7870012987958861, + 0.8020336453489446, + 0.7616138429288282, + 0.8176193453564946, + 0.7638998199898671, + 0.7810071823178061, + 0.7627269602362541, + 0.507648297737944, + 0.770903101212715, + 0.6926365144339053, + 0.6497894597540413, + 0.6905963033475645, + 0.7496220515300908, + 0.546178390626622, + 0.5818703582014166, + 0.8334218407169971, + 0.7280962144524041, + 0.5632033169281525, + 0.6011468348582778, + 0.807827310615449, + 0.6002309284504022, + 0.6639280886594937, + 0.5046631669069219, + 0.6733193033203515, + 0.7858117104800287, + 0.735528240478559, + 0.6544686560656436, + 0.5399340926299825, + 0.6312596581790657, + 0.7201628363250213, + 0.6138779576116828, + 0.7302911257199888, + 0.748985627308058, + 0.6312984901798667, + 0.365515900987866, + 0.6084013037048389, + 0.69756814504428, + 0.697023623475067, + 0.6977445083749382, + 0.5941561692036488, + 0.43811282778322325, + 0.6598251133378612, + 0.7407392731059061, + 0.6498518722322894, + 0.5279835346508158, + 0.6108208791894343, + 0.7405345861730784, + 0.7782857960316285, + 0.810936359779282, + 0.7550340771880649, + 0.7102137134601137, + 0.8008254814115774, + 0.6890654332819536, + 0.8105555167414243, + 0.5265004862386016, + 0.333310086560927, + 0.5868533654700517, + 0.76621362299965, + 0.7646602518398017, + 0.9136146794750032, + 0.6191859015157396, + 0.6067468183523228, + 0.5428685913404004, + 0.6427890128141798, + 0.6525258109154829, + 0.7939919153431468, + 0.36827589082329004, + 0.5187259101951748, + 0.7365563438993037, + 0.5046681161550789, + 0.4756503912087075, + 0.7277766941152497, + 0.7587608101020159, + 0.7086514690171287, + 0.6802519663351667, + 0.5749022732629712, + 0.5222291760747149, + 0.7919899558752237, + 0.8512140048243235, + 0.6906049802750072, + 0.6297093666414906 + ], + [ + 0.4023641895021711, + 0.23808580053458253, + 0.2608412770176778, + 0.8124744900366104, + 0.7143196168155419, + 0.6704373944521599, + 0.4076136313405837, + 0.3505787798305645, + 0.5177240818136518, + 0.4959896890293058, + 0.3045321614902817, + 0.3878956940316202, + 0.4734994610995753, + 0.593733843365394, + 0.5575432993331402, + 0.7617266680266118, + 0.4269834987092495, + 0.4840797702098547, + 0.7679664756208515, + 0.5201768597966238, + 0.5238939554854568, + 0.733442701106414, + 0.4243326898651013, + 0.6066538240144068, + 0.42234195331190244, + 0.6121103598126294, + 0.3294426947825747, + 0.38066820263210627, + 0.7276970890815874, + 0.4316505712085977, + 0.50754556098674, + 0.407788198299014, + 0.42019598256711044, + 0.45734274385122736, + 0.6360626339538408, + 0.6067322391843787, + 0.4642670976544964, + 0.6042819305304571, + 0.416075070108667, + 0.5699512890621301, + 0.3445589060272788, + 0.5020918402194158, + 0.6043124808759466, + 0.6564479945031276, + 0.5538796751565569, + 0.5527615825224138, + 0.5115641674490661, + 0.5228635338860673, + 0.6686412229375881, + 0.530469422428405, + 0.5003811860513432, + 0.7652216001513259, + 0.820536476667225, + 0.5023909340932723, + 0.4308999266307811, + 0.5083899946900456, + 0.5965189419679198, + 0.5581610910737679, + 0.8487027725276811, + 0.379844393711834, + 0.6054990348341481, + 0.6385223983252565, + 0.5185942451585682, + 0.6367991835480926, + 0.40983764613910345, + 0.6475770444110608, + 0.7156402773444048, + 0.6789499635413779, + 0.32975132435814436, + 0.34659895362821747, + 0.6713657961404222, + 0.687651385449008, + 0.402653327293586, + 0.5114015834109376, + 0.5643600053768643, + 0.5795130469450793, + 0.5304852211821356, + 0.7378087180904472, + 0.400128533720845, + 0.5294181645331598, + 0.4943619969404396, + 1.0, + 0.3910588254613352, + 0.6723898620906105, + 0.42979370924499266, + 0.3873533164170587, + 0.588624863177573, + 0.8735116527982135, + 0.9486256573853824, + 0.7187375584383542, + 0.5132485666913821, + 0.6141459454404483, + 0.6284495509314125, + 0.5932449747153344, + 0.6530837515140434, + 0.6622470770272144, + 0.3591651996620417, + 0.8339939449071467, + 0.5046476798484484, + 0.32462439330674475, + 0.5530301994273931, + 0.7142914370236265, + 0.6111005743791175, + 0.8280121683212439, + 0.4765197317136113, + 0.47704770679892117, + 0.7486818496979459, + 0.6145104510236907, + 0.8289668656329489, + 0.5398191429683687, + 0.592403011529331, + 0.6917308420953383, + 0.39225356353269175, + 0.5680590266172708, + 0.6476619109021593, + 0.710795017290994, + 0.5133171607429868, + 0.5170646222685178, + 0.6063798689346134, + 0.6952579896508101, + 0.593605272863967, + 0.6419049674578321, + 0.5465233721672008, + 0.5044858084555278, + 0.6745339216641231, + 0.697354371606105, + 0.9014291456988153, + 0.5755046251643663, + 0.7790480717874332, + 0.5995291993521327, + 0.7065104447093419, + 0.721737169297502, + 0.6696198829349699, + 0.8491091232646871, + 0.413754809178485, + 0.4771438150817743, + 0.6678417450765803, + 0.6492158642178957, + 0.3879603422847155, + 0.6050116806138839, + 0.6751883568865704, + 0.5424625020547508, + 0.5053414158328617, + 0.5310915956296873, + 0.8813286831517942, + 0.6121160194484137, + 0.6399789828072941, + 0.5946485359601984, + 0.4754707212600057, + 0.33595223903182025, + 0.5279824791059013, + 0.5598108658015454, + 0.4697675091647449, + 0.5394530149796926, + 0.7654679832689109, + 0.6957059554693511, + 0.5076675186991589, + 0.7599486944058135, + 0.6121226502563007, + 0.5379231227654716, + 0.6142828824317128, + 0.6209079106543601, + 0.6681206167890457, + 0.4634588891340281, + 0.4184919372810354, + 0.5581303355386006, + 0.5182260294625245, + 0.7562832772833805, + 0.724855517984253, + 0.6882885937916274, + 0.7356491652899012, + 0.7289898152908363, + 0.6785529477027552, + 0.48611504866017435, + 0.6758719338657787, + 0.5737587574719023, + 0.6374322910771949, + 0.5694423380233701, + 0.3101544051390212, + 0.6881421933139422, + 0.6690798278541092, + 0.6717874682804094, + 0.6220652437838453, + 0.5404449702221611, + 0.5046370404319087, + 0.5985385367403434, + 0.686344281264472, + 0.43916405509292017, + 0.6787970967932236, + 0.36642615646577914, + 0.4750905586150388, + 0.41360841643240565, + 0.6421424470039945, + 0.5056674314569983, + 0.5371088878199733, + 0.487741816741612, + 0.6765695842780455, + 0.6707250679217999, + 0.43305002496799827, + 0.7295482910632656, + 0.6317864309269123, + 0.5182217520101864, + 0.6101308605831277, + 0.520768962048044, + 0.49720850442248976, + 0.5874628505301868, + 0.56424971175468, + 0.7364344537035727, + 0.954792866685579, + 0.7063477367722307, + 0.48935097272197026, + 0.41548288996787913, + 0.4378615262324494, + 0.728214398739528, + 0.6566903947076334, + 0.6685751604545207, + 0.6780815859885212, + 0.5130251672358264, + 0.3751083015123968, + 0.7021139649173205, + 0.4689856462074453, + 0.4093137480877476, + 0.5908748047906688, + 0.6295062985251436, + 0.7062179414051424, + 0.6593586000649561, + 0.4528376061895657, + 0.4581985628518925, + 0.4025973506387166, + 0.48176934734739724, + 0.6858029133479506, + 0.5660941835624647, + 0.6432683218912125, + 0.7180984918767325, + 0.5828087213446902, + 0.5880192813274748, + 0.4412065831781096, + 0.415523293340176, + 0.5797174486375828, + 0.5151598145937454, + 0.4535130853034648, + 0.5611980315998539, + 0.3130261017853445, + 0.8474512482147302, + 0.5588154796338919, + 0.513653938249325, + 0.2720404275533117, + 0.6169742158226895, + 0.5662985313200483, + 0.3294700568448548, + 0.44636285912407253, + 0.9227612098507403, + 0.7300565877037076, + 0.5814498744653513, + 0.7743103501689053, + 0.4534685152200916, + 0.684086204450718, + 0.5830048323481457, + 0.3384235196232964, + 0.7274301168358688, + 0.6222295354815938, + 0.6000498017259728 + ], + [ + 0.7726338395622078, + 0.6610423329641612, + 0.6234760346103133, + 0.5263830605540317, + 0.6408484335659862, + 0.5433980350397509, + 0.5562485118031826, + 0.8149944724347739, + 0.6714066738926011, + 0.7571379118030418, + 0.6556427818968796, + 0.814630223275594, + 0.6853766070175787, + 0.5928848419378713, + 0.726467463918282, + 0.6407951264636138, + 0.6233003875881999, + 0.8205259290617425, + 0.7272871318840155, + 0.6657217665265077, + 0.8033842153783805, + 0.6365960688717278, + 0.6965533497243487, + 0.6608849394418345, + 0.689407619642631, + 0.6936376831627336, + 0.6333552344309713, + 0.8531538625086186, + 0.6197513924788907, + 0.6004228258267877, + 0.6810514503532656, + 0.6296665406603505, + 0.7377024992820107, + 0.6878065341049117, + 0.6746696218082426, + 0.7734824759279761, + 0.8574528575248217, + 0.41875768195410074, + 0.7262969944091654, + 0.7982435858324171, + 0.6883775270622791, + 0.5409279181495577, + 0.2301250674232253, + 0.6004659660670596, + 0.5448279770110632, + 0.7825563979343528, + 0.7848445014132979, + 0.6962290204283741, + 0.7452527409039537, + 0.7785460289819078, + 0.8560828847476876, + 0.6481856640904822, + 0.5957914449639885, + 0.6679361033807572, + 0.6442535947628814, + 0.7102491355053938, + 0.7054047260232701, + 0.7923483513580466, + 0.3234812569078259, + 0.8803753679277114, + 0.6563081472040815, + 0.8473721683061715, + 0.6962656304208115, + 0.6801281710612911, + 0.690036342964849, + 0.4467827626951941, + 0.7161668266613931, + 0.7485372593401383, + 0.6859336471582888, + 0.7223593562069858, + 0.7512191245886298, + 0.5857821099561146, + 0.8050969984801462, + 0.8299693392327742, + 0.7800423469565129, + 0.7069791421985648, + 0.6682431775663676, + 0.6629373663731288, + 0.7276773626389883, + 0.8524745538655332, + 0.6664429411601493, + 0.3910588254613352, + 1.0, + 0.7370297012670459, + 0.8297095350621587, + 0.8307536184872885, + 0.8219674371007683, + 0.5682755005443103, + 0.4730735329701569, + 0.607377001206248, + 0.7824218576210683, + 0.6961996544343488, + 0.6245979950444733, + 0.7510266999346519, + 0.789999614799664, + 0.7382933069919545, + 0.8407340361774456, + 0.6934913215556684, + 0.6887571012411231, + 0.7266510259203858, + 0.7890715387011611, + 0.7911634229286661, + 0.7528336524049064, + 0.6696073150843767, + 0.757871340310909, + 0.5928274305691131, + 0.5699558846287747, + 0.8385771546969977, + 0.6747281999331957, + 0.7692216327686259, + 0.8135009937018961, + 0.660096032082805, + 0.8286489033742342, + 0.7797673424157444, + 0.8201265695055197, + 0.8092007191216561, + 0.8239405117332919, + 0.7868737993443021, + 0.6704720639192489, + 0.7401673966238677, + 0.7663636629842306, + 0.8810873157003806, + 0.8772507084402653, + 0.7945222036774365, + 0.791462894117205, + 0.8523464083070409, + 0.475820606255812, + 0.7602030206088346, + 0.603680829340978, + 0.6643579928920503, + 0.7367478623207984, + 0.7276794202382247, + 0.6848761577726244, + 0.6594980396056408, + 0.6702472709296842, + 0.7963133173609638, + 0.7874110381254987, + 0.6883401912776568, + 0.7134009971251364, + 0.7509623028767058, + 0.7617285620607909, + 0.7890868174018725, + 0.7049821801845461, + 0.7929790336774191, + 0.5366067810480665, + 0.65954274174282, + 0.653512180442711, + 0.7158553446318836, + 0.608132611483043, + 0.8048437007099706, + 0.8023748004971843, + 0.8144712839084192, + 0.8456062505587736, + 0.7969091161579566, + 0.6644757349795912, + 0.7446287939643883, + 0.7051986678703857, + 0.7929156924242857, + 0.7963931547928289, + 0.8206997706787731, + 0.8261254613372201, + 0.7758917535132555, + 0.7821995462352272, + 0.7212114105630872, + 0.8000899736380404, + 0.7945251779452988, + 0.8018377047558785, + 0.7726360924401494, + 0.7491147125682543, + 0.7770908387381827, + 0.7119973388545154, + 0.7399655494016805, + 0.5672592455066139, + 0.6189285573010324, + 0.7775758142964851, + 0.4973422624560509, + 0.7988892999501596, + 0.6786209752316976, + 0.8172435949871035, + 0.7412765767581169, + 0.6824888164669094, + 0.7480117683002013, + 0.8003162298024133, + 0.7635145910148187, + 0.7794213694039158, + 0.7229373033635199, + 0.7577290159465806, + 0.8232584796144088, + 0.6626842293247187, + 0.7802101078167687, + 0.8173804595108461, + 0.7891980445799374, + 0.7685874174035303, + 0.7518490901543404, + 0.7235552476179636, + 0.5783063211300719, + 0.7877509122862113, + 0.7928797021530444, + 0.7306431717126675, + 0.6004927232624524, + 0.7882128438179086, + 0.7763196871778817, + 0.7715538777465021, + 0.7176883070243533, + 0.8052788467938613, + 0.7018313811499112, + 0.6778795336668645, + 0.7482826340656522, + 0.5343201652998552, + 0.6892553710135298, + 0.6403879429596531, + 0.7349441643359478, + 0.7694847362438414, + 0.7704213934037978, + 0.7408478051112255, + 0.45743984366941637, + 0.7393941964235186, + 0.7957479407262241, + 0.7305384576665475, + 0.7476553047509172, + 0.7177817280271153, + 0.577301100541456, + 0.7611929182831477, + 0.7404577105448871, + 0.7298486897704819, + 0.5628476725150007, + 0.7359512646043836, + 0.6675744276360208, + 0.628738027160201, + 0.815849855799742, + 0.7439183026393968, + 0.7760544181968541, + 0.7996760400531471, + 0.7716101188416989, + 0.7565529147843955, + 0.6016831399972539, + 0.5201199329143606, + 0.7337670541489173, + 0.7842500057898635, + 0.830649312523505, + 0.7315643606033162, + 0.7232618271770138, + 0.6407243483479494, + 0.5616747239042881, + 0.6547443576791216, + 0.6940712528720336, + 0.5522116297772113, + 0.6506945695392998, + 0.5893381968250362, + 0.701829205688793, + 0.7965527669712539, + 0.40362200199109327, + 0.5429736455121921, + 0.5673878259734372, + 0.44997865787456487, + 0.7549129552113272, + 0.670752436565344, + 0.759408741403634, + 0.5445401928764463, + 0.7696789692694341, + 0.7515502782900582, + 0.39348741611359356 + ], + [ + 0.7221142193696773, + 0.4401894961925411, + 0.6022865900421341, + 0.7360324154708647, + 0.740545505316944, + 0.7099441048036181, + 0.40807673877070005, + 0.7412465519668846, + 0.5641172397097888, + 0.5780835071520756, + 0.4106624768558527, + 0.6817844187345414, + 0.7941466078878089, + 0.6729699051868565, + 0.8046018681615915, + 0.7331964908975178, + 0.6242764364193744, + 0.7161103962540053, + 0.8029813482052653, + 0.6551142014738285, + 0.819840267149591, + 0.7101692363926798, + 0.7059595669616212, + 0.5950913937192145, + 0.6498771568231135, + 0.7641990319220597, + 0.7819876236502874, + 0.7588780003920411, + 0.6467903245677857, + 0.5648441347936672, + 0.7831651341597353, + 0.550889982552258, + 0.7112817859937287, + 0.6954344101051586, + 0.7874041343045339, + 0.8101856522962421, + 0.7467200917125295, + 0.5580590014145761, + 0.7084785195144326, + 0.865055439266451, + 0.7241847485445743, + 0.7540362103900046, + 0.609520620469961, + 0.817272060504532, + 0.8266010184609038, + 0.6444445358640437, + 0.8600309036247206, + 0.6313022883458609, + 0.8328936117740795, + 0.8703320700815064, + 0.7541881176002431, + 0.8049354659355104, + 0.7117544889867948, + 0.6546302180927169, + 0.5896527898990775, + 0.6575145178810717, + 0.7277656276987634, + 0.9147204288420505, + 0.7120077928763472, + 0.7945386407565416, + 0.6328542688877983, + 0.9277458771334117, + 0.6658878589788395, + 0.7699782207552943, + 0.6918275237845273, + 0.6136438427541576, + 0.788343118752794, + 0.8783922803555252, + 0.5705097410818103, + 0.5944568556485067, + 0.7104543275938726, + 0.6270070145042467, + 0.7351656466506398, + 0.8533484036571743, + 0.8102875841314742, + 0.9402475538512407, + 0.9266101830619563, + 0.8698055415640202, + 0.6767954952404222, + 0.927694790881046, + 0.6128803949592809, + 0.6723898620906105, + 0.7370297012670459, + 1.0, + 0.7892888719339601, + 0.715390707958009, + 0.7947158511060677, + 0.6903805381625645, + 0.7009779781999407, + 0.7575343457685566, + 0.8389372524688147, + 0.7918792050915202, + 0.7942961211285763, + 0.8611181801270269, + 0.8670601622764528, + 0.8347682962915562, + 0.7032743732913922, + 0.7946452486991537, + 0.6831742989109014, + 0.5560130357750782, + 0.8396256704779985, + 0.842149612712596, + 0.8091507936818332, + 0.8277729940967675, + 0.8567389156880425, + 0.5299268429658581, + 0.7647495076698563, + 0.8139892256623967, + 0.8497724724690245, + 0.9104895751920687, + 0.8869913474460743, + 0.7866369781353443, + 0.8215236494775959, + 0.8572968964694266, + 0.9354761883334064, + 0.8841135231064129, + 0.8782827801129152, + 0.8430139302961698, + 0.7524256861204287, + 0.9168751443800914, + 0.891977102020172, + 0.9443832845145906, + 0.8377574847195272, + 0.7007593042701933, + 0.8399860409078802, + 0.7855414911510923, + 0.5995867067356073, + 0.8623077488540746, + 0.729635081415794, + 0.9217924836520006, + 0.7846370250919169, + 0.7023008676283597, + 0.5938911670776207, + 0.7444840253149542, + 0.5569814378948137, + 0.8504380912999785, + 0.8677594307860311, + 0.8387043782342857, + 0.7884077446401961, + 0.9199364614561293, + 0.9199677457711029, + 0.8907212782411745, + 0.8887251390888457, + 0.789784604881886, + 0.6304946441579383, + 0.771235211576336, + 0.8696196645841092, + 0.7626110471816313, + 0.5870386172355745, + 0.794800348657348, + 0.8758023816507462, + 0.8403283166174336, + 0.8680274024559704, + 0.7116811653155906, + 0.8901239659407956, + 0.959680184959939, + 0.8207869910214277, + 0.8541077941994357, + 0.7681847664888453, + 0.8721102202512694, + 0.8710748717619098, + 0.8541992731211508, + 0.8455852759356394, + 0.8306757477070802, + 0.8754383264474094, + 0.9231131588986415, + 0.880693320048091, + 0.912168060967067, + 0.9241774989618983, + 0.9271556320066603, + 0.8887231411310512, + 0.8829003340334692, + 0.7909723905506076, + 0.8671595151779865, + 0.9763154831723749, + 0.63856959041822, + 0.8911109479728124, + 0.8386937760264372, + 0.6262388646591577, + 0.911738864826194, + 0.7762050857401437, + 0.939535004380851, + 0.8729294505763359, + 0.9173618645273918, + 0.790383403520426, + 0.8794991262987205, + 0.9031200429108454, + 0.8453567868396437, + 0.8432303799214462, + 0.8521487147899894, + 0.9217730577857622, + 0.8961962772708348, + 0.9618241798345465, + 0.9330367699923787, + 0.929551788156751, + 0.7529900927981751, + 0.8401455209107516, + 0.9091460724446189, + 0.8986842787676578, + 0.8769159592237169, + 0.8487900424268251, + 0.7166725819559437, + 0.8800574765722324, + 0.9141841421868173, + 0.8975450877330876, + 0.9340327973924497, + 0.8998076299385276, + 0.9160957471624084, + 0.715735556420113, + 0.9583565470845661, + 0.7773182956961138, + 0.8264797730537737, + 0.8605518916794468, + 0.8692429946254216, + 0.8767405655876833, + 0.8216496174701723, + 0.8277863674096708, + 0.9067504521872436, + 0.8396885609966546, + 0.9686072888769977, + 0.8047670955548984, + 0.7001711329418594, + 0.9357972698662349, + 0.9114821956203777, + 0.8458062056124687, + 0.8898028626217362, + 0.8887641432892253, + 0.856591345160924, + 0.4944648425972947, + 0.8352815857131006, + 0.9087465888342339, + 0.8949542974629353, + 0.9397583381943486, + 0.8962575632291555, + 0.8859235520608305, + 0.6561415841937744, + 0.7782415400259305, + 0.803489383473264, + 0.9138858338177723, + 0.9276541896410907, + 0.5383755025258262, + 0.924565527072813, + 0.8091758345973087, + 0.826422444117307, + 0.8070500063587357, + 0.7102654690462635, + 0.4607148553471574, + 0.7762981490910433, + 0.7263883854768369, + 0.7387412664693811, + 0.731660278076045, + 0.7197753689245023, + 0.7980181415491212, + 0.6086210138420248, + 0.7213981677595049, + 0.8165998773408814, + 0.943929131233943, + 0.7342763933026121, + 0.3686478224242441, + 0.869057983294795, + 0.8287800485462792, + 0.6960396521172816 + ], + [ + 0.8742359668328046, + 0.7334641072858701, + 0.7672129417606601, + 0.6446781081812992, + 0.7957084987315524, + 0.7049261534115561, + 0.6819973501255212, + 0.9324656802301585, + 0.82849188530284, + 0.7780321059088845, + 0.7342675381402318, + 0.8495204272631518, + 0.8273609299947422, + 0.7726352070681867, + 0.9031328848313215, + 0.8055944572743771, + 0.8916165792282582, + 0.8672060817213775, + 0.8264293430071421, + 0.7936558271983634, + 0.9013600893579551, + 0.7182495947080182, + 0.8279543288931023, + 0.7839953591036922, + 0.8782319256295593, + 0.8791408119082266, + 0.7872552867972249, + 0.9049578445723293, + 0.7469581131340305, + 0.8314713173709675, + 0.9352116968366844, + 0.8311937151822724, + 0.830527706835262, + 0.6880432223047229, + 0.729004333145149, + 0.9253576756724301, + 0.8987744239074342, + 0.3624833706530842, + 0.8778884551746023, + 0.8858889338231596, + 0.8552906674196254, + 0.6960891204708356, + 0.3481340697025738, + 0.6088008902900093, + 0.7121351723573517, + 0.7882711011801785, + 0.8749388471295564, + 0.8179288233444687, + 0.7262164845125474, + 0.789781894136399, + 0.8349577413062236, + 0.745115823893156, + 0.685793899871853, + 0.8991252225335872, + 0.8090540336296642, + 0.8347576820988758, + 0.8717900024560513, + 0.8901574311023699, + 0.5128823874680154, + 0.8637178916400585, + 0.8017817014665518, + 0.9107488878664006, + 0.8798285191052397, + 0.8558983044576093, + 0.7499186234160468, + 0.6544314415039795, + 0.805672773787807, + 0.7422251514829882, + 0.7541767253306526, + 0.8537680156786827, + 0.7878320139154811, + 0.7556156018211907, + 0.9259165844626832, + 0.9529957895711632, + 0.8461006724795703, + 0.7784170726441836, + 0.7724267327165887, + 0.6974248791978546, + 0.86635841485761, + 0.8814304280809799, + 0.7924680317514504, + 0.42979370924499266, + 0.8297095350621587, + 0.7892888719339601, + 1.0, + 0.9519326390871343, + 0.9437324203067725, + 0.6876291977700771, + 0.5002011841293629, + 0.7440952648931671, + 0.8800871392452987, + 0.7382631516963021, + 0.6592515990909522, + 0.838845832620792, + 0.8315264248493377, + 0.8864508573561587, + 0.9358256129260579, + 0.7649976977060049, + 0.7273837906030473, + 0.7921031833713622, + 0.871731532296589, + 0.8690733661321404, + 0.8612321002176211, + 0.7672328209070283, + 0.8986151814450022, + 0.7136354199618755, + 0.7526815950427626, + 0.8516028411004418, + 0.7666404044668004, + 0.8456715873835132, + 0.8313539636227651, + 0.744261472593075, + 0.9390850559489725, + 0.9124832881939386, + 0.9130936162536238, + 0.8669116235063226, + 0.909675632309255, + 0.9267644993054771, + 0.7643985956521276, + 0.739077545539303, + 0.8664740634604611, + 0.8266871895827126, + 0.9433719097156696, + 0.8957925923872286, + 0.8119971669763836, + 0.8075571809560348, + 0.4297651676935669, + 0.8124822024857736, + 0.6615658852125668, + 0.6985303495753893, + 0.7982952673291339, + 0.8120378447917396, + 0.6935824505826833, + 0.6879230159469223, + 0.6811395683141912, + 0.9466486998146879, + 0.882315402563096, + 0.6692178619213571, + 0.7434525684827052, + 0.8855621841256859, + 0.8926415038859782, + 0.8944635373513398, + 0.8971729757128107, + 0.9403241904473494, + 0.4749705822755148, + 0.8035732754798965, + 0.7682473061410895, + 0.6181802551753254, + 0.6125187176126521, + 0.8397080158465411, + 0.8851893263313738, + 0.884571242414005, + 0.9248106197066643, + 0.797598845595119, + 0.7066428815093029, + 0.8047482022890214, + 0.7154461462820951, + 0.8631313069515859, + 0.865291551784241, + 0.9635083053505945, + 0.8940472423994169, + 0.8184180298224376, + 0.8508770244170378, + 0.7572658305271832, + 0.8967099966267255, + 0.8416572715788081, + 0.8076759990901702, + 0.866594041805667, + 0.8513468532637541, + 0.8814306151849958, + 0.7641797171396492, + 0.7824430930412576, + 0.7718457690651324, + 0.7261197732458174, + 0.8377874567477376, + 0.5490926536342885, + 0.8324477560000573, + 0.6561363848387114, + 0.921987405513888, + 0.8380195011309217, + 0.8530495443385165, + 0.8503340833004117, + 0.829218746141067, + 0.8766359701087841, + 0.8255649046612927, + 0.828514655615542, + 0.8321412881870724, + 0.9503672031264476, + 0.7318641629119907, + 0.892442922945417, + 0.9231941164081733, + 0.8168557538406969, + 0.8132967245795747, + 0.8968485635527871, + 0.7902610952064, + 0.6350359860557478, + 0.8515442705461481, + 0.8183828734936648, + 0.7673266980658565, + 0.6321994719203534, + 0.8593599576530059, + 0.8859091316060893, + 0.8793465298437119, + 0.7288417753253642, + 0.8071913030379394, + 0.7993337194518596, + 0.8547192094346706, + 0.7995020792959732, + 0.5091791059213561, + 0.7126667976258579, + 0.6921851728011464, + 0.8227257676695293, + 0.8537955299927216, + 0.8667749843218494, + 0.7792500697686809, + 0.5535666259710473, + 0.7050239180456122, + 0.865429434178291, + 0.8606959685177208, + 0.7888849737605663, + 0.7084408280929313, + 0.5538780202679633, + 0.7382374072937293, + 0.834735176146481, + 0.8022149254208684, + 0.7128078816188422, + 0.8149429074003848, + 0.7485918509422416, + 0.7600863136773102, + 0.9152705001756041, + 0.8324675276154304, + 0.8168806492710619, + 0.8988990907623013, + 0.7980026152746545, + 0.8362292935825469, + 0.42576712220638696, + 0.5913776852691701, + 0.8072723544006213, + 0.8816376622540847, + 0.8293896678533859, + 0.7176812363385339, + 0.7448258486943227, + 0.7488574107298451, + 0.6410978558081764, + 0.6137166658752826, + 0.7988594340023509, + 0.7454792205497012, + 0.6171772366935078, + 0.5897002178312665, + 0.8058802391160784, + 0.6951100320833478, + 0.4764526372532876, + 0.7434236158695349, + 0.7340542814923021, + 0.6807809988862442, + 0.9189732343117787, + 0.7617191651873985, + 0.7446469794597195, + 0.6779710760884792, + 0.8517416328029004, + 0.7562592775073513, + 0.6006344873441304 + ], + [ + 0.90466090893595, + 0.8520770847115546, + 0.8084900831622518, + 0.64302791514085, + 0.7841182177121532, + 0.6785278535441333, + 0.7480544201051509, + 0.9211977028353401, + 0.8254424446143834, + 0.8000034810208944, + 0.7914194460860907, + 0.8577832821110258, + 0.8594608085476203, + 0.7174538916988912, + 0.8682773209157802, + 0.750021109974613, + 0.8093891438440906, + 0.9030376310567725, + 0.7950511539977406, + 0.7884934938863581, + 0.9125935536692868, + 0.6887030119668174, + 0.8239448508555315, + 0.8268104311669988, + 0.8496484708502219, + 0.8565935226505398, + 0.7814082264294733, + 0.8730097860451823, + 0.7462852175853593, + 0.8331801460845332, + 0.9112160781860303, + 0.9055174239207154, + 0.8368349779172097, + 0.7189283127440717, + 0.7551943636806716, + 0.8785089629667215, + 0.9139573239773151, + 0.3711137152762034, + 0.8745799464384351, + 0.842578051513135, + 0.8315356336164546, + 0.7120231768402687, + 0.2857511859391191, + 0.6068970789745751, + 0.7029581149671886, + 0.7938349862864125, + 0.86805865617351, + 0.8432972830718111, + 0.7409358795490228, + 0.759012313031861, + 0.8452402454513106, + 0.6799920285795157, + 0.6350093801011786, + 0.8558372427727776, + 0.7872187002444467, + 0.8028586126496803, + 0.8539587921000275, + 0.8803201006549238, + 0.41499327466606367, + 0.8720224211293027, + 0.7627079798539315, + 0.8603768153540292, + 0.8424024878282761, + 0.8282848959708157, + 0.7298888766211116, + 0.6480711625697382, + 0.8056697721672897, + 0.7369019620651635, + 0.8383633056569257, + 0.9039038430093872, + 0.813632053889123, + 0.7227033807530168, + 0.905114514793913, + 0.9256055744946345, + 0.8439858656770715, + 0.7367587772370129, + 0.7284857101006175, + 0.6442137702912751, + 0.8417235264849298, + 0.8347305039456379, + 0.8340979405788033, + 0.3873533164170587, + 0.8307536184872885, + 0.715390707958009, + 0.9519326390871343, + 1.0, + 0.9215300954877257, + 0.6582210577753344, + 0.43247466253383937, + 0.7066742514249863, + 0.8909977368007996, + 0.7434274655069272, + 0.6660468609374035, + 0.8488384460518217, + 0.7829431801190966, + 0.8458058380672724, + 0.9238884789520473, + 0.7300550583273142, + 0.7862868876423583, + 0.8686472312476612, + 0.8702691606845689, + 0.8492482188782692, + 0.8311198671782595, + 0.7286788588323855, + 0.8798310068601163, + 0.7430133236748134, + 0.6797138096577646, + 0.8799825184730338, + 0.732366665056331, + 0.8085314048574661, + 0.7948583473164439, + 0.6942913338248426, + 0.9382082361160434, + 0.9053563877089379, + 0.8638702580290605, + 0.8328774343653611, + 0.8580161454219482, + 0.9155502034801722, + 0.7213625490529444, + 0.6918173228867242, + 0.8120207890285736, + 0.7916911921501578, + 0.9525494290288063, + 0.8563594772003306, + 0.7891984215638477, + 0.7974290220761313, + 0.35937508525135775, + 0.7863999955834754, + 0.6207559352615891, + 0.6746934274596318, + 0.7487327305427228, + 0.7979536141521609, + 0.7008486658037171, + 0.6455420018576894, + 0.6872860655429928, + 0.9377732500216841, + 0.8610061684745164, + 0.6584473053064407, + 0.6782877473614122, + 0.831488311988117, + 0.8383045662779496, + 0.8616302261960617, + 0.8586784787208341, + 0.9043577992381163, + 0.46196554201475337, + 0.7690338103711554, + 0.6853216840584359, + 0.607287457638922, + 0.6212191241794671, + 0.8178630516076667, + 0.8489986103642664, + 0.8572460581392227, + 0.9020876844495753, + 0.8662391263485032, + 0.687378336606937, + 0.7447562520366011, + 0.6738554540013468, + 0.8285312217050946, + 0.8613519023695989, + 0.9190151917697933, + 0.877684843995342, + 0.7939354538361526, + 0.8364433945340949, + 0.7549357459549938, + 0.8724570470604543, + 0.8266296345355014, + 0.7938356005103039, + 0.8210365211680128, + 0.8294899879641291, + 0.8447619166937497, + 0.7556931798605576, + 0.7716183187360451, + 0.7365702844015228, + 0.6757434725995043, + 0.7914539599951106, + 0.5201494992132863, + 0.7920082590267087, + 0.6036894905477926, + 0.959706452280122, + 0.805427721161759, + 0.8002063728264326, + 0.8145984416162855, + 0.7978004667962434, + 0.858750074866685, + 0.8767637106433436, + 0.8350982535536957, + 0.8201207208959419, + 0.9151854850566362, + 0.7229878874577862, + 0.8751785074658374, + 0.8460912916355953, + 0.7927585732017048, + 0.7736588302652619, + 0.832839997778774, + 0.716806602284263, + 0.690520352603262, + 0.8286463124814075, + 0.7914968297961278, + 0.7092838633473353, + 0.569902876667018, + 0.8345880591459172, + 0.8118680993325739, + 0.8379385447662694, + 0.6523395612311147, + 0.7912581612224996, + 0.7694336878177271, + 0.810541462083217, + 0.7339789511963268, + 0.4718276267027768, + 0.660037763994977, + 0.6843987417558675, + 0.7814168082101333, + 0.8194139612407773, + 0.8393799143489871, + 0.7357306483345143, + 0.49815616668562296, + 0.7400093892559222, + 0.8494540604997923, + 0.8462067926121134, + 0.7541548854170309, + 0.7145254240773254, + 0.5066228742688756, + 0.6776249615787361, + 0.8015668389168882, + 0.7893017432313228, + 0.6688372737977991, + 0.7490069437870068, + 0.7267582900734464, + 0.8350054641052642, + 0.9083563678219561, + 0.7817068957224675, + 0.8034575473541249, + 0.8645913689105689, + 0.7863626755695814, + 0.8133996786794842, + 0.40136275644865627, + 0.5487004202151303, + 0.7584747687920379, + 0.8405111025419681, + 0.8057097097694533, + 0.770985675957916, + 0.6597711852162399, + 0.6714226975066627, + 0.5902431050303533, + 0.6342553420860942, + 0.7697484702802714, + 0.7848906968274545, + 0.5403405146707286, + 0.5444012977853799, + 0.804141404722585, + 0.671261882896842, + 0.4191166135098535, + 0.6878557254174499, + 0.744786559821405, + 0.6220454648247563, + 0.898125200661716, + 0.7059766153860011, + 0.6740598762619961, + 0.7423699047875388, + 0.8337318673052702, + 0.7540631769494023, + 0.6582078414950235 + ], + [ + 0.8620076353194797, + 0.8049172287392918, + 0.8178176030720107, + 0.8032549203934384, + 0.8336435016850416, + 0.8031848247936801, + 0.7747144879268403, + 0.856904285479412, + 0.8803360261934516, + 0.8460258398070726, + 0.7433807268221615, + 0.8680803045385066, + 0.8869192926570013, + 0.7698567238041115, + 0.9157794790028004, + 0.8641662142869082, + 0.8431732721405031, + 0.9392093958265831, + 0.9060217236025735, + 0.8856885198032849, + 0.9071565486889367, + 0.777970434258265, + 0.8402431637031937, + 0.8724041961979031, + 0.8600130362151719, + 0.9098824238862977, + 0.7502465008375315, + 0.9102850466768307, + 0.8333019650916541, + 0.8421098097804528, + 0.9117800911359681, + 0.814985094200036, + 0.8216971404475937, + 0.6638443280515262, + 0.8364146967391396, + 0.9030314761983874, + 0.880214250791281, + 0.4590095934714678, + 0.8538949168521937, + 0.8374416774451366, + 0.838515992447451, + 0.728913451061519, + 0.3705101148699329, + 0.6952417897397443, + 0.7524530699345666, + 0.8407586815113572, + 0.8134182490871976, + 0.8807044509060475, + 0.8278432143932755, + 0.7227350315086554, + 0.872001084807236, + 0.8670529300830733, + 0.7513737472650571, + 0.8814498990769505, + 0.7356368484121644, + 0.8049255029875874, + 0.8734136066581094, + 0.8594536845196669, + 0.6239996239617223, + 0.8165268892649915, + 0.8357612941635052, + 0.9249029611839035, + 0.8965778710053963, + 0.8370760277321999, + 0.8197642442470195, + 0.7424975264225412, + 0.9023595845484614, + 0.8189931333903421, + 0.7605552298391789, + 0.8225470541232651, + 0.858700918301159, + 0.881229401376894, + 0.9543745774207835, + 0.915148906098642, + 0.8774732342713036, + 0.7803137125775107, + 0.7580649458338747, + 0.7836434600807006, + 0.8655546526751716, + 0.8777338542357443, + 0.8334243423053116, + 0.588624863177573, + 0.8219674371007683, + 0.7947158511060677, + 0.9437324203067725, + 0.9215300954877257, + 1.0, + 0.8266911659199704, + 0.6461016947727272, + 0.8268417632188665, + 0.9087856435564876, + 0.8026079131229592, + 0.7332225035327544, + 0.8585543855054056, + 0.8839821166098697, + 0.8878411795445579, + 0.922222506344558, + 0.8295197630691642, + 0.7713419327606639, + 0.8085796826861679, + 0.8956199325042868, + 0.8851183005655191, + 0.8969209768129385, + 0.8185397622611968, + 0.8829576758697597, + 0.7815456578532393, + 0.8385985138216218, + 0.8820713081859954, + 0.8132025721193288, + 0.829800234119872, + 0.7941579064379868, + 0.8171849802432428, + 0.9063368385510897, + 0.942732049948295, + 0.911964591312089, + 0.9561279555911674, + 0.8358827821753806, + 0.9421836741519183, + 0.8239129079716643, + 0.7961992248527714, + 0.8653275105862605, + 0.8497467631669083, + 0.9159293149484552, + 0.8815638048679625, + 0.8836732730870047, + 0.8637246024234134, + 0.5919825736438569, + 0.8376530614902694, + 0.806894566694844, + 0.7077415963307921, + 0.8840845126499822, + 0.8825488170902304, + 0.7848764024867252, + 0.7930106292792918, + 0.7512250598412347, + 0.8855394179253903, + 0.8749661168096385, + 0.7826975059490654, + 0.6166714961522431, + 0.856445695327248, + 0.8901198977378677, + 0.8998163130000595, + 0.8283012549785169, + 0.9161921898033333, + 0.6768128258579098, + 0.8780184472468978, + 0.8022224444552613, + 0.6086946716618443, + 0.5714363670534323, + 0.7629460992464687, + 0.8372045133762154, + 0.8224550272235961, + 0.8621751273715197, + 0.8644829578567115, + 0.7868086328353142, + 0.8068243600838625, + 0.6304981183743691, + 0.9106044971034468, + 0.872435423800735, + 0.925467948195544, + 0.9042468246628491, + 0.7814636394662002, + 0.9041004615382401, + 0.724494315991033, + 0.8647845464716766, + 0.8581926753085256, + 0.7746519392500535, + 0.905013998335256, + 0.8714343625674935, + 0.9139705047949852, + 0.803914830344096, + 0.8119226941789215, + 0.7904423975457644, + 0.73009698163638, + 0.8492622894167071, + 0.4449364977193389, + 0.7859984715619133, + 0.6808643188664818, + 0.8801413509334051, + 0.8213617387463725, + 0.8785000233215992, + 0.849888657611634, + 0.8024937578076367, + 0.8635886685356643, + 0.8383279086004402, + 0.8591055872601376, + 0.8676438068502116, + 0.9276090784672227, + 0.7863990019540102, + 0.8535634952435827, + 0.8843121508288981, + 0.8066249763456562, + 0.844272573159202, + 0.8485424861327655, + 0.7398376593149275, + 0.6292914179592721, + 0.8935658169332156, + 0.8297797821434074, + 0.7336272823814385, + 0.6535445616170392, + 0.8352138399144774, + 0.8705425099975703, + 0.8283798031266428, + 0.6709694005910054, + 0.8019858187065133, + 0.8079459901903998, + 0.8786269586993583, + 0.8879697014737462, + 0.6446117488455034, + 0.7386384371649595, + 0.6751477229366772, + 0.7122684402984593, + 0.7823676426453964, + 0.8947052415903343, + 0.8402090056252083, + 0.625034324985535, + 0.8112556876951673, + 0.8283738625082853, + 0.7640319999913786, + 0.8123175849633549, + 0.7209776160188751, + 0.41798454097759835, + 0.7518547442108792, + 0.8054231500598309, + 0.8161538240435063, + 0.7625021929646708, + 0.7822934389605037, + 0.7016734130585136, + 0.741605259165307, + 0.9070838515184916, + 0.8349597446581568, + 0.842781776597086, + 0.9156261221042328, + 0.875203520541259, + 0.8705555197295235, + 0.46878493813833033, + 0.5682159884674394, + 0.7010792203678439, + 0.841326553542198, + 0.8088240087347945, + 0.740348577352588, + 0.7326101245247985, + 0.7210586157135486, + 0.7240724430176154, + 0.6290090003158313, + 0.7643788785850423, + 0.6987908862691955, + 0.5480830712460293, + 0.49229991809144175, + 0.777433174909463, + 0.637237320423328, + 0.5928529873589996, + 0.8434279665710386, + 0.8314896372534726, + 0.7443439736492039, + 0.8972967520293731, + 0.7675547794976582, + 0.7174510556767562, + 0.6935883530918412, + 0.8807387925714764, + 0.827053665375462, + 0.6156839381526997 + ], + [ + 0.632790402620558, + 0.574546398538027, + 0.6104488931611873, + 0.8867196668545863, + 0.8674455423882571, + 0.8168443088819637, + 0.7353955780209077, + 0.6263757045880782, + 0.7761323659621748, + 0.7819350857237708, + 0.6420227326974519, + 0.63778819135636, + 0.6685817125583438, + 0.6899149462280489, + 0.7711783616258526, + 0.8595727779033816, + 0.6727015015921993, + 0.7535212721215676, + 0.8800304978750882, + 0.8058027349276793, + 0.7166941529823632, + 0.8087099103250573, + 0.7186898735911488, + 0.8585166949586361, + 0.6076349056682694, + 0.8125424734910606, + 0.5489116855347965, + 0.6698747393696508, + 0.8844974082675164, + 0.6662565758583961, + 0.7077706645573613, + 0.6844290681018276, + 0.6373553655536779, + 0.5784968498179983, + 0.8078171311569508, + 0.7848847105965351, + 0.6891368056080067, + 0.5510379305781733, + 0.6154773699327817, + 0.693813100702985, + 0.6553165355223185, + 0.6779160030924505, + 0.4743925684611522, + 0.6615838292627384, + 0.7031695475163933, + 0.799441841904912, + 0.6551542505560266, + 0.8304906495272005, + 0.7830283212874308, + 0.5706994331860684, + 0.6678152251530043, + 0.8427935160053593, + 0.83426680365556, + 0.723522931440328, + 0.5662276020584018, + 0.6786053615547502, + 0.7670084396330968, + 0.6847988623944646, + 0.8487405910910999, + 0.5394559319920741, + 0.7473159399104576, + 0.7921968015228513, + 0.7570446774185222, + 0.7464548779969726, + 0.7090344282729465, + 0.8454719413403816, + 0.8851193363081512, + 0.7948281033828402, + 0.5694576478190545, + 0.6141260204124808, + 0.8331128212244542, + 0.886450987857327, + 0.7129647015149493, + 0.6856363228580186, + 0.7508778883113315, + 0.6735250074694699, + 0.653006338588375, + 0.7661769595874093, + 0.6756988557850947, + 0.666471297012443, + 0.7263856784227111, + 0.8735116527982135, + 0.5682755005443103, + 0.6903805381625645, + 0.6876291977700771, + 0.6582210577753344, + 0.8266911659199704, + 1.0, + 0.9042308262248752, + 0.8623899442634001, + 0.7322768903302893, + 0.76951983891675, + 0.7359820692365975, + 0.7373926536763487, + 0.7898777920819045, + 0.800696443846432, + 0.6109665220267025, + 0.9011598822649979, + 0.7026557256583517, + 0.6206340405144758, + 0.7511716236077098, + 0.8241207176448593, + 0.7829908077483166, + 0.8870243094955785, + 0.6870271770440036, + 0.7467503611073332, + 0.8926731275889879, + 0.7883634738151457, + 0.8535399546199147, + 0.6959038843698558, + 0.6670716371785572, + 0.8193296880505264, + 0.6311505781288727, + 0.737810312451985, + 0.7463207030620207, + 0.8625337055827822, + 0.6600767119690544, + 0.7338729532602786, + 0.7404994439015022, + 0.7363205976417168, + 0.7296023699078416, + 0.7133071109535478, + 0.7341164496273159, + 0.672976351253104, + 0.7992803017220604, + 0.8140657337925294, + 0.8509946595039687, + 0.7151863986764726, + 0.8899970813641314, + 0.5998139752679572, + 0.8554845035333017, + 0.8838503889194251, + 0.8191337729211529, + 0.9088658988515055, + 0.7065850029834926, + 0.6524935457959226, + 0.7689669223655122, + 0.7324868840951636, + 0.4428073258284409, + 0.7377767340541419, + 0.7779659363436202, + 0.714726913597273, + 0.6764213797663386, + 0.7708263162894213, + 0.8958622248534837, + 0.8332914923850492, + 0.7221871450441671, + 0.6095383698085739, + 0.5670237780180252, + 0.4984671793498766, + 0.6730279891596295, + 0.673477775838255, + 0.65800892835851, + 0.7258926654606026, + 0.8071026341955845, + 0.7323441974027896, + 0.5002883509142055, + 0.8766227625113934, + 0.7441442858814289, + 0.7132693004593517, + 0.7577032324575533, + 0.6994988187600901, + 0.8240173379109428, + 0.5721724785689748, + 0.6171132674826956, + 0.6580441243627843, + 0.5986909860508309, + 0.8540801013509739, + 0.8056897610994241, + 0.8196713435113093, + 0.7974437583644769, + 0.8025608329744378, + 0.7930951127405422, + 0.6006514768687014, + 0.729292175358529, + 0.4847494441718363, + 0.6777454707096583, + 0.651635112768549, + 0.615225050112807, + 0.7295042791914438, + 0.7788408778731336, + 0.7418284710747026, + 0.7121643495264207, + 0.6899222053107484, + 0.693233252183694, + 0.745299901225931, + 0.7757884821588821, + 0.667281514425562, + 0.7574676720896079, + 0.5537237518179902, + 0.6355143858321963, + 0.5638834361625877, + 0.6944434699921767, + 0.6417239391115648, + 0.5805869795273187, + 0.5559762624244432, + 0.8531086953909487, + 0.7399989903759788, + 0.5586179676787985, + 0.682094612292122, + 0.7728078356321287, + 0.6865848617248391, + 0.6833559116772701, + 0.5531740000703969, + 0.6185279249289535, + 0.69065052920777, + 0.7453544003105933, + 0.8449120990303516, + 0.9005759628188462, + 0.6935580197725609, + 0.6043334148754452, + 0.5379119336351734, + 0.5752050105697202, + 0.8565388916228834, + 0.7835710278761354, + 0.65392073094212, + 0.7539523551474342, + 0.6342763315364196, + 0.5445818106923809, + 0.7298597362710031, + 0.6107883733187175, + 0.3606896508560774, + 0.6580663156691797, + 0.6987400588238507, + 0.7182201774933135, + 0.705813967480708, + 0.5962657332731351, + 0.5653245838295383, + 0.6238674500468571, + 0.6846167666277949, + 0.7657811517705116, + 0.6954549869932233, + 0.772583380627667, + 0.8024029203475328, + 0.75269638659716, + 0.5335602130224916, + 0.44547815324769163, + 0.5433813643327989, + 0.6841896361485391, + 0.6052573174098397, + 0.6259612929097077, + 0.6164563605698897, + 0.5349323541646851, + 0.8071478562173158, + 0.5795625744413638, + 0.5795216223972707, + 0.5679994844810791, + 0.5318195562078645, + 0.5257964599404796, + 0.604707846220934, + 0.4831020429336612, + 0.8499358502843044, + 0.8631968626630695, + 0.8610446193730892, + 0.8470764846328671, + 0.6687778526958118, + 0.7330383234121849, + 0.6328816519064537, + 0.608199152576728, + 0.831180678055549, + 0.7452817237158991, + 0.6145343409666969 + ], + [ + 0.506069291657534, + 0.27567778403169135, + 0.32720487542654636, + 0.8204867079384073, + 0.7829095741807617, + 0.7066394866250446, + 0.46876746530787844, + 0.43805748742567724, + 0.589306055621166, + 0.5808159425870029, + 0.4046932685614081, + 0.44314204708782245, + 0.468803155156742, + 0.6475325027975511, + 0.5866625930737179, + 0.7823270325799545, + 0.49808045918595767, + 0.5475843379364489, + 0.810853107332772, + 0.5887795758697474, + 0.563526189889744, + 0.7771941302598302, + 0.5010822414607659, + 0.6421078833419083, + 0.42730030068305835, + 0.6595635459293913, + 0.3786898135355021, + 0.4684807128518683, + 0.7659562515141883, + 0.4832113242789426, + 0.5350427543296818, + 0.3979973100429815, + 0.4981863088685512, + 0.4900696715872921, + 0.668969830435648, + 0.6928275430162041, + 0.5358509686039037, + 0.6484907133649449, + 0.4488390495633298, + 0.6233116890744688, + 0.44020842587782355, + 0.5062069541024141, + 0.5641633137916764, + 0.6429211504835035, + 0.5757414534189641, + 0.6182186978986175, + 0.5865899721002517, + 0.6341194523135035, + 0.6794507930328477, + 0.596662092510684, + 0.5556167418290613, + 0.7807596809275612, + 0.8427864262710304, + 0.5687845403375703, + 0.4824357387691517, + 0.5952790006904443, + 0.6597011610685187, + 0.6016897336368094, + 0.819553551875134, + 0.447890987270546, + 0.660547080065378, + 0.6967012905289348, + 0.5717770162599259, + 0.6376046641830792, + 0.5212798499408181, + 0.70087536021267, + 0.7654558708286682, + 0.7639893497844151, + 0.39930007506384635, + 0.43075249020472056, + 0.7318218877767406, + 0.7187260966074189, + 0.4825674141700051, + 0.560409870318694, + 0.6060412777268233, + 0.605269892536823, + 0.5813359546117568, + 0.7526436413452486, + 0.5068628700304599, + 0.5842523800709664, + 0.5656713991876025, + 0.9486256573853824, + 0.4730735329701569, + 0.7009779781999407, + 0.5002011841293629, + 0.43247466253383937, + 0.6461016947727272, + 0.9042308262248752, + 1.0, + 0.7634212427943496, + 0.5434290116127708, + 0.6900388161532314, + 0.6563303725695124, + 0.6165804676835206, + 0.679757195614459, + 0.7051154611973884, + 0.3721147040182711, + 0.8807426024459937, + 0.5691332443838607, + 0.3885313256460643, + 0.6003044825788306, + 0.7440843739552555, + 0.6849923402819662, + 0.8811687851830635, + 0.5402018719364956, + 0.51641606148551, + 0.8517696711617915, + 0.6893999656819098, + 0.8046473432269521, + 0.5898797947577548, + 0.6663781938697229, + 0.7440944991747089, + 0.42882854884192245, + 0.5780790294482663, + 0.6807240959731082, + 0.7554029412641927, + 0.6113472577782795, + 0.566214780738508, + 0.5991303938499524, + 0.7279593468238984, + 0.6234143593790088, + 0.6800305698942587, + 0.5948362763729802, + 0.53349849483893, + 0.7193001753608329, + 0.7326065711768623, + 0.9322451595286253, + 0.5947907880556073, + 0.7877935756680846, + 0.564317686236304, + 0.7586531703444955, + 0.7251994882212209, + 0.7094235806787315, + 0.8736808988059758, + 0.4806629583986273, + 0.5277854854791606, + 0.7058449878821673, + 0.6618427398089615, + 0.43250560017174594, + 0.6444279689386242, + 0.722648317049711, + 0.5908839194989187, + 0.5561311353044978, + 0.618013236865936, + 0.9098814987178958, + 0.6820589561899545, + 0.6660214601971635, + 0.6379659449469535, + 0.552439179686044, + 0.43573674788928085, + 0.6311452094681261, + 0.6252421271017407, + 0.559612673231229, + 0.600153780506132, + 0.7916763118969851, + 0.7193138667295819, + 0.5581783643509749, + 0.8119065775262982, + 0.6724462431541055, + 0.6153326688905747, + 0.6819736161895232, + 0.6871186358895927, + 0.7214281371952479, + 0.5178857916065202, + 0.4761428145724991, + 0.5893722019877073, + 0.5737141292891267, + 0.8192149766457766, + 0.7708703466074505, + 0.7413585887907618, + 0.7643728397041523, + 0.784738220510175, + 0.6665512530802894, + 0.49995338552865504, + 0.6970396415537553, + 0.5920811769257345, + 0.6915144412046251, + 0.6482379366761702, + 0.38714788769998837, + 0.7140012228315814, + 0.6853380128065587, + 0.6996233375283123, + 0.7109529389669242, + 0.5895342435458738, + 0.5507176413873722, + 0.6217178301966508, + 0.6911496246668388, + 0.501450665155917, + 0.6770541123358773, + 0.42096697948114387, + 0.5360610106398536, + 0.4527531015947046, + 0.6396260649573465, + 0.5616585847457461, + 0.5863196576317273, + 0.48206724639075627, + 0.7585483693651273, + 0.720920994623514, + 0.5054545924204544, + 0.7305199322893637, + 0.7054502766315527, + 0.556137490034515, + 0.5862120971304836, + 0.5737424165537506, + 0.5760976123988832, + 0.6579641075617785, + 0.6215906159712007, + 0.7837278757856324, + 0.9633834320134684, + 0.7281409193231583, + 0.5710251842651485, + 0.49230192157673125, + 0.5144609436906741, + 0.76313025955747, + 0.704386057081625, + 0.639121282138726, + 0.6971607343968904, + 0.5707727229706443, + 0.4553831611887856, + 0.714503141053755, + 0.46853996235639817, + 0.47016722857163656, + 0.6884201286594964, + 0.6567501769766384, + 0.708341120405303, + 0.674192638136762, + 0.5431858787956386, + 0.5590843496765896, + 0.42988352238037, + 0.5439388232603272, + 0.771299198798157, + 0.6013776905199341, + 0.6870597752597618, + 0.7405027105491628, + 0.6779616695128254, + 0.6407256462832044, + 0.3973975454812196, + 0.5151068685375982, + 0.6528341133869147, + 0.5845479636733723, + 0.5385508349377854, + 0.653789302286022, + 0.4161979571023389, + 0.8068140241635042, + 0.5908812130430389, + 0.5587699077544607, + 0.3482863940010451, + 0.6424466170764288, + 0.6380160937602981, + 0.45302753804453244, + 0.5243624340329285, + 0.8580683927766686, + 0.7463007592517052, + 0.6381873140790206, + 0.7830485732653965, + 0.4655998022762276, + 0.6860342873774404, + 0.5807837172621698, + 0.3822873180392399, + 0.7902758233499786, + 0.6284196994059547, + 0.5517012213542617 + ], + [ + 0.7088761039819321, + 0.6473333524386498, + 0.6031251947070219, + 0.7570843632195091, + 0.8840254323060158, + 0.8627892369760185, + 0.6449021182350804, + 0.6779691910830935, + 0.6583586484460925, + 0.6056057170601128, + 0.4841945226761682, + 0.851766066545354, + 0.7966258299128965, + 0.8026460955876961, + 0.7270886040670627, + 0.8906177452172122, + 0.6305794153428369, + 0.772666369482701, + 0.9117875384633813, + 0.7130281656741285, + 0.7292434926334204, + 0.814805789715012, + 0.7254877379486727, + 0.7613422381971696, + 0.6676045765829209, + 0.927091278428072, + 0.6313276410036316, + 0.693401265264734, + 0.8631175615137484, + 0.7836292732135024, + 0.7919908920071531, + 0.726239685779326, + 0.73395910140737, + 0.6262870129063665, + 0.7296026445082461, + 0.8492631415952847, + 0.7126751820888383, + 0.6029733014404822, + 0.7394203972103267, + 0.6556159427181071, + 0.7783498126412353, + 0.831928736543151, + 0.5320881126584678, + 0.6300563525795514, + 0.6728485447442103, + 0.6903054721742995, + 0.6703068592661879, + 0.7086336570851394, + 0.7232408866801537, + 0.5504227791500947, + 0.6356136133578151, + 0.9078795124273428, + 0.8133352362254399, + 0.8110816843588651, + 0.6926212403934139, + 0.7759513123942386, + 0.8236666451490307, + 0.7892169233689252, + 0.7615613973839547, + 0.6540319799195465, + 0.6710055377945, + 0.7958542361854714, + 0.7777827514422414, + 0.7756965752386851, + 0.6708958751535016, + 0.6801625599666453, + 0.8891766245939514, + 0.7601364708974432, + 0.6756679897550951, + 0.7200350651128857, + 0.8297862923579868, + 0.8735399154932826, + 0.7050208762137607, + 0.7186334825813046, + 0.8037927368055361, + 0.6812345176580794, + 0.6919308489640794, + 0.890148220569512, + 0.6771609585984919, + 0.7817568120121533, + 0.7871521528864341, + 0.7187375584383542, + 0.607377001206248, + 0.7575343457685566, + 0.7440952648931671, + 0.7066742514249863, + 0.8268417632188665, + 0.8623899442634001, + 0.7634212427943496, + 1.0, + 0.7740046059139446, + 0.7176701304676031, + 0.7552387612727197, + 0.8357377321526398, + 0.7480754745647243, + 0.8622415388121404, + 0.7053502460019464, + 0.9134828678728588, + 0.6503104282843076, + 0.6761392796010725, + 0.8161500698383598, + 0.837149061661206, + 0.7548261857454781, + 0.9026808430094599, + 0.7706149937310659, + 0.5538572024620881, + 0.872145615237413, + 0.7213411774419276, + 0.8320225450580057, + 0.6984153428957419, + 0.7114927872780651, + 0.6107654123919811, + 0.6968300948493957, + 0.8281666265986293, + 0.8440464112553919, + 0.891486054394664, + 0.750797762912012, + 0.7919263938008044, + 0.548795823341158, + 0.715774044872005, + 0.8199858270309227, + 0.7811224585050692, + 0.7708479559742968, + 0.6306629292385494, + 0.7366575147867663, + 0.6729288584297711, + 0.705620893489368, + 0.7745010377533676, + 0.7584606144463654, + 0.7201732001612816, + 0.6888691958838311, + 0.7411114174415254, + 0.5988587666730323, + 0.7146680998387516, + 0.6083334570627651, + 0.7339879762427896, + 0.7870106958893421, + 0.6407169077921657, + 0.4460645389898617, + 0.7625142591940496, + 0.8545139228184656, + 0.7106047745033719, + 0.7441020584205257, + 0.7728997416479322, + 0.7961012453006496, + 0.7625869496374502, + 0.7947440515191229, + 0.5977890157349016, + 0.5480258945054988, + 0.6212471097738064, + 0.7487302815730114, + 0.7390150220116777, + 0.7428349324968893, + 0.6372621230930792, + 0.7502819479696273, + 0.7271176956189263, + 0.4753879347322901, + 0.8077264441575813, + 0.6537265870808701, + 0.7554895082224226, + 0.7466328797467126, + 0.7058407099519726, + 0.7266547429722636, + 0.5963380915955816, + 0.6984971016965298, + 0.7295740217673152, + 0.6391429106177438, + 0.8267319493179796, + 0.822420475713101, + 0.8085544264089709, + 0.7189142287080973, + 0.7727327637468066, + 0.6705370569253164, + 0.7966274095473063, + 0.7796745445166942, + 0.4711381952408156, + 0.6777519490101164, + 0.6809646558952643, + 0.6509824408630311, + 0.723944250968438, + 0.8527805001489249, + 0.8013759337791092, + 0.760816369398587, + 0.7251915758788031, + 0.7513122420310324, + 0.7267530984784951, + 0.7724094207016384, + 0.6757134371755009, + 0.5912095932835318, + 0.6767981688182838, + 0.7069365854228873, + 0.6388869450963529, + 0.7516300738107717, + 0.7508623661408239, + 0.6184902140551541, + 0.5101229127230636, + 0.7922029373222653, + 0.7075797504441756, + 0.6692180997413404, + 0.8114046252255391, + 0.7415416261748656, + 0.6401330106934653, + 0.7591029207997676, + 0.569802749475406, + 0.6536082143576146, + 0.764726109143181, + 0.8676602668896816, + 0.811139773633791, + 0.7189447560466452, + 0.7433451064738787, + 0.5588437204810925, + 0.5633779256648518, + 0.6446646058029355, + 0.7521691976089939, + 0.7108495549461845, + 0.7204996380017217, + 0.7285257547312988, + 0.6460599637487946, + 0.6233143724606757, + 0.7970138818369862, + 0.6260931710502727, + 0.39810301551051996, + 0.6961037605130058, + 0.6840993656629942, + 0.706199620915326, + 0.6543645980001754, + 0.6512484985048232, + 0.639036493886051, + 0.4969710386705536, + 0.6666574972460368, + 0.7612098010602766, + 0.6684381075561325, + 0.8219911543232306, + 0.7596359711549909, + 0.7828825910828602, + 0.6246435752574098, + 0.6806372359811541, + 0.6111804797743219, + 0.7514229343798414, + 0.7387917352405261, + 0.6413514529462431, + 0.7207649357714067, + 0.6141232045809513, + 0.7725435790489701, + 0.53456688334247, + 0.648302133446647, + 0.48495583039833984, + 0.5510506888559858, + 0.5052540873683941, + 0.6356709179633054, + 0.44904838214209625, + 0.7474567263541844, + 0.956676183942138, + 0.8311313036195525, + 0.9136538879638405, + 0.7160674332833683, + 0.7256631294040762, + 0.7203358296227402, + 0.46964369524147687, + 0.8445944804261084, + 0.6538032687635571, + 0.6055663372728483 + ], + [ + 0.8170721569763097, + 0.7864156728493534, + 0.8837746868859305, + 0.7742731794770664, + 0.8210002421878504, + 0.8336540071039148, + 0.783399291284763, + 0.8929824155069574, + 0.7027733331570131, + 0.8117485752302741, + 0.7186826765607292, + 0.8339005870885224, + 0.9164046489127924, + 0.7013783283710194, + 0.9548882881346292, + 0.7307756424794533, + 0.6964872677379181, + 0.9251730453866095, + 0.8200129321057779, + 0.8377798037999764, + 0.9470648386677584, + 0.7546931856374284, + 0.9273717833010824, + 0.8524970047603734, + 0.7214632362666139, + 0.8710260098818166, + 0.8688146336925473, + 0.9335659063517141, + 0.7719548417717534, + 0.7002296019587329, + 0.8582223885498351, + 0.8128675953831569, + 0.9055719084854319, + 0.7969116549533385, + 0.9305963114066044, + 0.831937900452552, + 0.8772323108119057, + 0.378171502620322, + 0.7731694302594533, + 0.8188885219881111, + 0.9055070443263236, + 0.822623630301821, + 0.3874895772350565, + 0.8494901613868563, + 0.915687281478054, + 0.7990481763003365, + 0.8547536947837204, + 0.8410117752438973, + 0.9153514282839592, + 0.7370420963348667, + 0.8951801612471986, + 0.7937302338811545, + 0.6646461163594718, + 0.7639990382954185, + 0.6010465047998484, + 0.6961749574515557, + 0.8012435063835834, + 0.8806874762605902, + 0.577705537329578, + 0.848500779244526, + 0.663578844655777, + 0.9366684941692716, + 0.7914922151763503, + 0.8177244213415145, + 0.8783171369684579, + 0.7144683366149273, + 0.8962880559682678, + 0.8567934818829785, + 0.7754639727694104, + 0.7587070450108664, + 0.7757949302275564, + 0.7704445207898173, + 0.9029043838874097, + 0.8538987034177995, + 0.9289561931208624, + 0.9024111826836761, + 0.8956382154460674, + 0.7777473059864225, + 0.8138565340295875, + 0.8790424380042793, + 0.7944207019736564, + 0.5132485666913821, + 0.7824218576210683, + 0.8389372524688147, + 0.8800871392452987, + 0.8909977368007996, + 0.9087856435564876, + 0.7322768903302893, + 0.5434290116127708, + 0.7740046059139446, + 1.0, + 0.8503671024061584, + 0.7890375384778989, + 0.9025143129291119, + 0.866003843539242, + 0.827021061172234, + 0.8490267430676649, + 0.7408222805651047, + 0.8532534100975129, + 0.8370841753076824, + 0.9096767912082181, + 0.8397337909824696, + 0.8034635391549221, + 0.763046290104396, + 0.9369205263892753, + 0.8033071198669469, + 0.7520444117598006, + 0.8832406890935066, + 0.75789174741422, + 0.9085815783972122, + 0.7819448041405261, + 0.8112683634106793, + 0.9227293436333353, + 0.9283950090868845, + 0.8822154523246568, + 0.9123472064084459, + 0.8196524465612098, + 0.9697150155774923, + 0.7875940519350125, + 0.8411559888873755, + 0.8482282768931616, + 0.8628141479288115, + 0.8817422011092009, + 0.7906915793822066, + 0.7972991383680461, + 0.7713292906223337, + 0.4852687533813573, + 0.9308932683857574, + 0.7143486259228977, + 0.8394986766812277, + 0.8246794784385785, + 0.8085915180607638, + 0.672637787126536, + 0.71213910006415, + 0.7928478736093449, + 0.8897411390794098, + 0.8481012056061265, + 0.8749989095563789, + 0.6573823357076701, + 0.9232621226191047, + 0.8933068588498253, + 0.9335342943587469, + 0.9060446371756166, + 0.8817460074698154, + 0.5788426831626025, + 0.9147237494346743, + 0.8209015677634532, + 0.7004230176800411, + 0.6153544439883906, + 0.775872786350389, + 0.8454190403185282, + 0.8203354967056147, + 0.8746246300999929, + 0.7886481374888502, + 0.8482694286433436, + 0.8312536636583256, + 0.6318004877273122, + 0.8454153823264098, + 0.793323165086718, + 0.8826907013869166, + 0.8690295581580617, + 0.8097144629459153, + 0.8860271969139373, + 0.7954305905848545, + 0.93311655050518, + 0.9117078744710625, + 0.806389385302383, + 0.8712710595377416, + 0.8766046854176485, + 0.9042824219562666, + 0.83904692963916, + 0.8238980967859892, + 0.7722539882823382, + 0.7845913868053513, + 0.8957030538302048, + 0.4504994463935757, + 0.7610720718070438, + 0.7614685851592708, + 0.8403684969370683, + 0.8220145210193566, + 0.7623160554061761, + 0.8607556619428193, + 0.7977067935538071, + 0.92963761988089, + 0.9068137342734575, + 0.949596847916216, + 0.9447794081602084, + 0.92670708335827, + 0.8080595481881623, + 0.8880335316428224, + 0.9052143017730205, + 0.9186258049043352, + 0.9104500090619068, + 0.8758181683032584, + 0.7705589980056592, + 0.740493446343645, + 0.8740293689655668, + 0.8231627806631171, + 0.8389832575909628, + 0.6995172339036947, + 0.8444885015592423, + 0.724783771143465, + 0.8063318919161115, + 0.748300988267255, + 0.8814691899363615, + 0.8881393028975497, + 0.8895970293554986, + 0.8340309603367334, + 0.5872227198480867, + 0.7874001061221092, + 0.8080749834421863, + 0.7959881124660476, + 0.8004532993037339, + 0.8582069849464657, + 0.8563902971706594, + 0.6914809832322834, + 0.7719492157643078, + 0.8771336138638856, + 0.824975541289812, + 0.8576379170276417, + 0.7905152797461236, + 0.5331498474079114, + 0.8122178842345855, + 0.8564934391904846, + 0.7266165061590164, + 0.8090042530921018, + 0.816586900861166, + 0.7836359124506521, + 0.71181922063544, + 0.9000996671500316, + 0.8071605139286776, + 0.8939391195613698, + 0.9180887871685084, + 0.8594405699112596, + 0.9140501327079055, + 0.445455330234253, + 0.6769502263322865, + 0.7212642990573266, + 0.8467696639636092, + 0.8638416403970357, + 0.7081988023175495, + 0.7461189951435137, + 0.8024523033904554, + 0.6376496165255542, + 0.7869672491635159, + 0.6670178408380744, + 0.6889041197169774, + 0.5377822317835044, + 0.5298310202977045, + 0.7989410339886696, + 0.6031647580315633, + 0.5751296625464387, + 0.8145055323541444, + 0.8002231565016127, + 0.6959634375676396, + 0.9205011003976507, + 0.8437760062093349, + 0.6946598222693261, + 0.6984463161209206, + 0.8337195460784934, + 0.8985208447625338, + 0.6481190550416558 + ], + [ + 0.8049344598862257, + 0.6362110135922331, + 0.791719551392699, + 0.7237674774634621, + 0.8133450419791544, + 0.8423903756933211, + 0.7159862931204788, + 0.7871533162667109, + 0.6501004780514763, + 0.8123250113803704, + 0.7110328239729772, + 0.6338734351259316, + 0.7827275072481665, + 0.6091645090869149, + 0.7791600989585538, + 0.6436141597859663, + 0.6346751651506688, + 0.8721616785960076, + 0.8012578464146449, + 0.8742583299889579, + 0.8732210330693772, + 0.7009356556685654, + 0.8471295494044907, + 0.8360289497207768, + 0.4615456966937177, + 0.7204974222214401, + 0.8128572728151764, + 0.7973738955292444, + 0.7758227312985734, + 0.48969193457895166, + 0.7042023335172403, + 0.6156633287936516, + 0.7686194176208556, + 0.7723719091374621, + 0.9233950044148242, + 0.7841528155834037, + 0.8801883742405991, + 0.38291900436268983, + 0.577908907850546, + 0.7500124483934092, + 0.7845206092716693, + 0.651746694288125, + 0.4508917938207194, + 0.8205655264313534, + 0.8469090692682705, + 0.8260878199713461, + 0.8563519255643545, + 0.862382248109491, + 0.8837359529820622, + 0.7482583735666821, + 0.830825009618372, + 0.6766066663313393, + 0.6874027213384285, + 0.6940178788554575, + 0.5047260227760388, + 0.6435639738815523, + 0.760175389847394, + 0.7731950671522656, + 0.581062382353985, + 0.7827784883217175, + 0.6019388824702256, + 0.8571650969677266, + 0.6192165779906194, + 0.6784289817155994, + 0.866511471231017, + 0.7492297742446069, + 0.8266408869663813, + 0.9504845150224539, + 0.8325173376461238, + 0.7776150949268497, + 0.8855524564125936, + 0.7171842763436463, + 0.777693528520249, + 0.7566708554440976, + 0.8657899624128773, + 0.8665705665583194, + 0.8574345638671094, + 0.723877618957487, + 0.7977560347332548, + 0.7308477473818887, + 0.8544995810831847, + 0.6141459454404483, + 0.6961996544343488, + 0.7918792050915202, + 0.7382631516963021, + 0.7434274655069272, + 0.8026079131229592, + 0.76951983891675, + 0.6900388161532314, + 0.7176701304676031, + 0.8503671024061584, + 1.0, + 0.8714132823411619, + 0.8965389158591933, + 0.8955344144326737, + 0.6763879407828982, + 0.606784500541159, + 0.746539317018116, + 0.9560649979554021, + 0.8303304381349528, + 0.9123445484599391, + 0.7625894958077951, + 0.6404178488791961, + 0.8169156114942251, + 0.9100837736704418, + 0.8410771812642934, + 0.8471544239762568, + 0.9304389444018797, + 0.7574583972195844, + 0.8903711633642093, + 0.8678355912986015, + 0.7686157816979781, + 0.7791815465374239, + 0.8213071002859046, + 0.7561693911371058, + 0.8482325745655735, + 0.8274159425533808, + 0.8829190993342798, + 0.7163989271815275, + 0.9305397213537723, + 0.8623551167140886, + 0.8032834643615319, + 0.8130999690824771, + 0.6646058563169522, + 0.7119626840148341, + 0.7211320877400839, + 0.537282830540359, + 0.9095902130638834, + 0.7063454360809083, + 0.7963007632125285, + 0.7373686358878901, + 0.6923073021436092, + 0.5845340066870588, + 0.6616178751868881, + 0.8106562082129937, + 0.7875395660201663, + 0.8686942556842397, + 0.8858784252235135, + 0.6299050252672712, + 0.8241641737749819, + 0.814980042914575, + 0.861820074196004, + 0.7890832484380881, + 0.8275289542750778, + 0.6518967980301403, + 0.9358133518199214, + 0.7835342386799495, + 0.7152804562189918, + 0.5154104738171356, + 0.827585163169137, + 0.861566591906217, + 0.8161667493081446, + 0.8240340611822428, + 0.7951632674594046, + 0.9244970503483636, + 0.8517562535977768, + 0.6977251287184016, + 0.8996889554444479, + 0.8418904902605081, + 0.7993595506837549, + 0.9097169829292402, + 0.8808225568533287, + 0.9424924247063677, + 0.9012061164105037, + 0.8678251663726398, + 0.8501050792581482, + 0.8855487457155639, + 0.8583060598278375, + 0.8887363740861735, + 0.8692855325865988, + 0.9243386033065545, + 0.9340181229855471, + 0.7040293938469322, + 0.6673571016591282, + 0.8688886904121599, + 0.5144261616823665, + 0.8091153828971674, + 0.7896071646838547, + 0.7837390575277599, + 0.8178148058492607, + 0.6177782865159716, + 0.879593195758627, + 0.8644269348798059, + 0.8953655791760917, + 0.8489096813261714, + 0.9012097875038789, + 0.8759238762654195, + 0.8156613934410564, + 0.7528726276140233, + 0.8047237879429362, + 0.7830027616028873, + 0.8157834356843944, + 0.8177928445829158, + 0.8309436130147754, + 0.7133448554310902, + 0.8120070943950062, + 0.9464577522275622, + 0.8890240370654285, + 0.7357873466513333, + 0.6711512997589223, + 0.9023416133357601, + 0.5851015323195864, + 0.693187783075859, + 0.7454166408102394, + 0.8528996165860605, + 0.9185228742626059, + 0.7779396839049902, + 0.8140876753369445, + 0.7198041828758288, + 0.8475697769980025, + 0.9240098749302934, + 0.7403373731076588, + 0.8428118478431674, + 0.8805109681254009, + 0.8486684725733521, + 0.5177407602562882, + 0.7254080278868907, + 0.8469412243884555, + 0.8022412525971231, + 0.8485576540587442, + 0.7967019403124682, + 0.567537337629926, + 0.8622829971328373, + 0.8476873174939834, + 0.6848231282221928, + 0.7150864901545222, + 0.7662251291267036, + 0.8892232645863871, + 0.7419259240542047, + 0.8853321621902579, + 0.8660655174136532, + 0.9083332947193141, + 0.8878320955495704, + 0.8278383680234943, + 0.9230690899777412, + 0.5658455282060528, + 0.3736374972092074, + 0.6522408262964907, + 0.8050696183653578, + 0.8476119445592732, + 0.7657449228231284, + 0.769556073700204, + 0.7908263773027693, + 0.6661411794675083, + 0.8776366953537759, + 0.5165137758254209, + 0.7582537774578157, + 0.4570085448194313, + 0.6605701325288447, + 0.851975429134552, + 0.6179077860421758, + 0.6485665313858295, + 0.7184291516247854, + 0.7208719506914236, + 0.6731498792967565, + 0.6938888311206556, + 0.8119919006625993, + 0.4803339197335688, + 0.7063336949064912, + 0.8813629776715908, + 0.9034671548156137, + 0.6931673430051211 + ], + [ + 0.5990827924677931, + 0.5622807534642951, + 0.7030695843218421, + 0.7561857780024956, + 0.7569411901347202, + 0.7566619018952611, + 0.5502652997306875, + 0.6410430417797462, + 0.450338708686783, + 0.6770053655880354, + 0.4798729223348513, + 0.6298042960774145, + 0.800999985966636, + 0.5410341478773514, + 0.6860751141482839, + 0.5466344502211706, + 0.4161144305574734, + 0.7287020293533859, + 0.7047832879554419, + 0.8293445985690457, + 0.7253243361565624, + 0.549317030882397, + 0.801743358117468, + 0.7022023576247751, + 0.37194992367454105, + 0.6651995535201989, + 0.8285725394852212, + 0.683803428949248, + 0.6114086383364571, + 0.45334069865271875, + 0.5964820122952337, + 0.614025901315133, + 0.6386175100875274, + 0.5380239573549098, + 0.8712654768023044, + 0.6429995254717701, + 0.7665858779706619, + 0.5208235465247244, + 0.47213977285990205, + 0.6176888525452872, + 0.6896485554589953, + 0.6864060915435873, + 0.43615764835161136, + 0.7613251071125544, + 0.8035789690691317, + 0.8171776065913229, + 0.7491220130591667, + 0.7225745284113709, + 0.8900542912666864, + 0.6962592732956782, + 0.630433886386209, + 0.7039338806397406, + 0.5149280569085924, + 0.550809382723625, + 0.33494440158709327, + 0.4338229262436107, + 0.5722975433418709, + 0.7447315732872212, + 0.7236235808767437, + 0.7357879520045175, + 0.3659793973020604, + 0.8078509125581429, + 0.44081654227623485, + 0.5225725915922025, + 0.8005564513830468, + 0.7523667478556096, + 0.7694081164131635, + 0.8991273113732233, + 0.7358149671440833, + 0.6628709073380529, + 0.8382445728999957, + 0.7152764933418873, + 0.6854678491681558, + 0.6367079733256131, + 0.851314847768837, + 0.815959902537721, + 0.8419956912829453, + 0.7725473818535247, + 0.5339136490019549, + 0.7404744898066309, + 0.7184286007321279, + 0.6284495509314125, + 0.6245979950444733, + 0.7942961211285763, + 0.6592515990909522, + 0.6660468609374035, + 0.7332225035327544, + 0.7359820692365975, + 0.6563303725695124, + 0.7552387612727197, + 0.7890375384778989, + 0.8714132823411619, + 1.0, + 0.9094010744963803, + 0.890917599486181, + 0.6077167739657292, + 0.6070745386037543, + 0.7471740664929591, + 0.8260153088257123, + 0.7151778360736851, + 0.9150336568280819, + 0.6319452774073541, + 0.6093914099014524, + 0.7743682752688618, + 0.8443843136418634, + 0.61226592351675, + 0.7779682236988446, + 0.7890378976205702, + 0.8399561161649891, + 0.8753871655945312, + 0.8079143181025552, + 0.6356175389254367, + 0.6931353615654234, + 0.7333663186537404, + 0.7440077629248607, + 0.8357268600648028, + 0.7493875919736754, + 0.7980393981412749, + 0.6868912885153978, + 0.8313142604800314, + 0.8777068142918979, + 0.816153934688761, + 0.7817091888649997, + 0.4608451769130863, + 0.6483060549520443, + 0.6791400186430614, + 0.5974951792897295, + 0.8749694115229346, + 0.8048974387350406, + 0.8192849918336217, + 0.6110862736585942, + 0.6448670870237636, + 0.44931699456980206, + 0.6068429547331541, + 0.613231425656838, + 0.6942212397942247, + 0.7880086844668549, + 0.8430004844013865, + 0.6522402326664962, + 0.8117456319605221, + 0.7287815712018267, + 0.8476126334258341, + 0.7798971036908487, + 0.7934713392008322, + 0.6681369164091319, + 0.8191038087855768, + 0.8838468848967372, + 0.795511925786684, + 0.6049196009329522, + 0.7787105289901933, + 0.7143888809291137, + 0.7059967292484274, + 0.7141665010899619, + 0.6757247174280826, + 0.8968130659762563, + 0.8354591451303647, + 0.688722231779407, + 0.8011497514639095, + 0.6345012289644646, + 0.6795729411669714, + 0.8490233592953907, + 0.8105328787329118, + 0.8334147199387395, + 0.8755746254706065, + 0.8219323743171835, + 0.8686218279036536, + 0.8453264926936053, + 0.7796597557495656, + 0.8455418616272696, + 0.8627418349614333, + 0.8797699556202992, + 0.8709057074536622, + 0.6691895109731135, + 0.7395979339973532, + 0.8325820044762181, + 0.45537271393158174, + 0.7430541813113251, + 0.8714717270915157, + 0.6375062523450182, + 0.7343348058239423, + 0.5888521306420663, + 0.8613252442842257, + 0.8189381179602546, + 0.867968982656501, + 0.8955062731758686, + 0.804063670287685, + 0.8114626187681789, + 0.7221201401298303, + 0.7073728402326953, + 0.7109286132009756, + 0.7690752595853741, + 0.8350328653211453, + 0.8172595405190244, + 0.8244225298758195, + 0.778070341390067, + 0.7990653227256761, + 0.828410330633457, + 0.8252065881017263, + 0.8433606990004123, + 0.6175551888582917, + 0.8431453440084729, + 0.5603458720783929, + 0.6522958889794752, + 0.8036638104808688, + 0.8184187739528686, + 0.8555411959883867, + 0.7891950106250653, + 0.8400010353700427, + 0.7193862247092888, + 0.8706225283632951, + 0.8188650346595896, + 0.6777127703880755, + 0.808601191727112, + 0.7845926092919291, + 0.9085342094621348, + 0.6325257225936494, + 0.8362388420600763, + 0.7968877428617431, + 0.7700556232822053, + 0.8913118480998261, + 0.8932266500823551, + 0.5764808210519407, + 0.8621811673567176, + 0.7285362405447389, + 0.732980846828582, + 0.6378448651383666, + 0.8433342182663672, + 0.823404200488803, + 0.5507186737895199, + 0.7751265423604531, + 0.7935705564981035, + 0.8992965476407395, + 0.8793617768476308, + 0.8995460100636705, + 0.902199698349302, + 0.5390638044358248, + 0.5271247430189846, + 0.687235403229361, + 0.725457993226386, + 0.7988987609423476, + 0.5178935929149092, + 0.8243148084777813, + 0.7828685850102544, + 0.8271700000505329, + 0.8205719814953472, + 0.3504660097899938, + 0.4684112690766629, + 0.5334050499883246, + 0.6050668116343135, + 0.7748369895940896, + 0.6628073565668947, + 0.7852672834999497, + 0.7917293286436948, + 0.6470184568134388, + 0.6531245956516074, + 0.6016383628296733, + 0.8550606716070323, + 0.4265180542915614, + 0.41080182872781384, + 0.8122506856573204, + 0.8505562829368173, + 0.7242554934821572 + ], + [ + 0.8131340803099661, + 0.6863352581751875, + 0.753279747830691, + 0.7047774494709936, + 0.8392702948257406, + 0.8348821106542773, + 0.6546717737867949, + 0.8443105081581924, + 0.6320331205623148, + 0.6968662983704624, + 0.5725019210528914, + 0.800280430004532, + 0.9115754189125989, + 0.7231517237293326, + 0.8131496091711703, + 0.728188434005125, + 0.643323279670452, + 0.8667424113887356, + 0.8307276178185268, + 0.8105640595113184, + 0.8798708890296498, + 0.6858515281726473, + 0.8298573944929578, + 0.7838590611907543, + 0.6191872430975599, + 0.8279463960744511, + 0.8392550027036386, + 0.7969278984232238, + 0.7539644232713165, + 0.6560671846067396, + 0.8110893622429951, + 0.7573392387798931, + 0.8023538622875785, + 0.7117435532486841, + 0.8668707383540842, + 0.8363498786703033, + 0.8853949631578312, + 0.4791490111178561, + 0.7297123848609091, + 0.7568631264874486, + 0.8212176414613191, + 0.791471666956019, + 0.4748936626110229, + 0.7724704819254165, + 0.8219944810043067, + 0.7903614575447814, + 0.8699740455146027, + 0.7614392957196369, + 0.8732717234950793, + 0.7578603742694948, + 0.7945836371689421, + 0.7848322332325902, + 0.6951958280441048, + 0.7651163462176157, + 0.6257378111089761, + 0.6926916095590051, + 0.7878788080182058, + 0.89073720780772, + 0.6117563031619718, + 0.8660592064443097, + 0.6015597945739908, + 0.8847553599014695, + 0.6834037718306742, + 0.7422382558664843, + 0.784316246799664, + 0.7137441864996779, + 0.860383567920601, + 0.8977336398070125, + 0.8575493786899581, + 0.8327906250278646, + 0.8852472000691191, + 0.7672398209835491, + 0.7965808743496079, + 0.8292800630795716, + 0.9377361665427286, + 0.8589322069065927, + 0.8785310760140241, + 0.824223332885365, + 0.7357826666041137, + 0.8498273064688605, + 0.8608122180791311, + 0.5932449747153344, + 0.7510266999346519, + 0.8611181801270269, + 0.838845832620792, + 0.8488384460518217, + 0.8585543855054056, + 0.7373926536763487, + 0.6165804676835206, + 0.8357377321526398, + 0.9025143129291119, + 0.8965389158591933, + 0.9094010744963803, + 1.0, + 0.9002487761871568, + 0.8002106809407775, + 0.7754311543098718, + 0.8067202424628149, + 0.8833181730645913, + 0.8333714934246695, + 0.9584575738826695, + 0.8168828501486556, + 0.7236114616812015, + 0.8541204274774075, + 0.9528429801629172, + 0.6848057882461684, + 0.8038916013972904, + 0.8853953350225952, + 0.8635054590623986, + 0.9051912371064098, + 0.8894942144846558, + 0.6625703128058523, + 0.874477646749242, + 0.9133920229540498, + 0.8866389519277327, + 0.9017346804448786, + 0.8855369701120406, + 0.9322936206408925, + 0.69905827784211, + 0.883206099186748, + 0.9368158298255636, + 0.9007955186085816, + 0.9135701232071965, + 0.7107215148948902, + 0.7424004789892727, + 0.7471253261347129, + 0.5071047260474039, + 0.9470479511555762, + 0.7233145304966514, + 0.9000441819296199, + 0.6859220436772253, + 0.7067130835239481, + 0.5509593243210499, + 0.6301698264731658, + 0.6984897816091019, + 0.8764137409113557, + 0.9077944266275542, + 0.8133148190640329, + 0.6698272492780639, + 0.8886685080731472, + 0.8822443203018443, + 0.9012205488658788, + 0.8776139877165691, + 0.8680140551520389, + 0.6191013857208225, + 0.858382736946251, + 0.8633139221839501, + 0.7443891199370053, + 0.5860857129211154, + 0.8753634400707778, + 0.8719638655135553, + 0.8594165594739267, + 0.8665537289012786, + 0.7931470652857284, + 0.9010325063183712, + 0.8673709874609417, + 0.7177926725174539, + 0.8746817468740283, + 0.8007782693108322, + 0.8608414131917741, + 0.9252497268496341, + 0.8920668975788133, + 0.8980513566865225, + 0.9058151837786151, + 0.9188477964134665, + 0.9410831777914647, + 0.9067778550930735, + 0.8726223196828646, + 0.9267219684330155, + 0.9213790954136888, + 0.8969469030144339, + 0.9074264064444664, + 0.7575044555989335, + 0.8139866347808868, + 0.9319091144068177, + 0.5550320446334848, + 0.8502885849831101, + 0.7689882996281836, + 0.8179754193841523, + 0.8649965056612857, + 0.7710357854150884, + 0.9521089798562298, + 0.8963116027342483, + 0.9397342283781516, + 0.9441593948122411, + 0.9018835039409157, + 0.9150705746469652, + 0.8686375892609721, + 0.7329411458263017, + 0.8892683060801008, + 0.8721129351118908, + 0.8862029161323933, + 0.8891675460100003, + 0.92379164192342, + 0.7873223762381145, + 0.817163616178571, + 0.9054834191299285, + 0.9050486337304648, + 0.830047604335408, + 0.7483640863020282, + 0.8952988368468967, + 0.7182118730402763, + 0.8315290025179766, + 0.7838976023043682, + 0.8651054341658737, + 0.9262684217164229, + 0.8750675937252537, + 0.833868603467457, + 0.6573750001030987, + 0.8871781559541224, + 0.8383096293280723, + 0.7573277849084906, + 0.877039950531047, + 0.8594497367109026, + 0.8502455359036029, + 0.679601968435037, + 0.8142416222537189, + 0.8945386350533968, + 0.8636317954732826, + 0.934896502394127, + 0.8514863168000429, + 0.6069900014957703, + 0.8607534400452095, + 0.8373078092686788, + 0.8058663146792009, + 0.7296816214664347, + 0.8229048514571342, + 0.8753288084024913, + 0.7238236088954733, + 0.89960758730586, + 0.8609455998850549, + 0.9181902594859616, + 0.956877104240138, + 0.8874846226233154, + 0.9292341969747422, + 0.5674103372473739, + 0.6515640727196486, + 0.7317736891991149, + 0.846596133459851, + 0.9021743822577094, + 0.7234436898299196, + 0.8145254685839373, + 0.7680766649509703, + 0.7810082424579264, + 0.8227233698486643, + 0.6130495496221201, + 0.6566853360200213, + 0.5733948283517066, + 0.6388359404139428, + 0.807052649023856, + 0.6505985710176758, + 0.6950236729545276, + 0.8237077543823558, + 0.721286653449904, + 0.7203890217376165, + 0.7925782681225294, + 0.855191304498884, + 0.6073387890579195, + 0.5782654588479186, + 0.9009907831017799, + 0.8467152431216491, + 0.7560980209408014 + ], + [ + 0.7238266076626487, + 0.6149153272154583, + 0.7604692036301192, + 0.7669304133130366, + 0.7548157767902733, + 0.7657360086125561, + 0.626040652281634, + 0.7843805185353446, + 0.6615709307802763, + 0.8184761830406921, + 0.634978784103902, + 0.7096014281941538, + 0.8250480514636659, + 0.609884785818486, + 0.8346513933379073, + 0.7013612212431336, + 0.6841349123535126, + 0.8529928490569755, + 0.8111864529703864, + 0.9002048224851221, + 0.8440303601708307, + 0.6516217342390023, + 0.8357877858366355, + 0.773623922957825, + 0.6096172661438858, + 0.7500739664362852, + 0.8386716141428465, + 0.8610889560436346, + 0.7181028822958765, + 0.5379735075242897, + 0.7605688178180192, + 0.6681646732441062, + 0.6975835640673989, + 0.655022855707431, + 0.8848740851580355, + 0.7809406656376404, + 0.8517977057302429, + 0.39985961284441657, + 0.6175151389542832, + 0.7914159497988358, + 0.7382916235439544, + 0.6421689842660665, + 0.39669284903490787, + 0.7898956973658755, + 0.8061353431403844, + 0.8917568042455779, + 0.8432459602776616, + 0.7960114189774607, + 0.9018821510705326, + 0.7722900186462998, + 0.7959221213729195, + 0.767827223179324, + 0.6567772028115108, + 0.6968970777200618, + 0.5108706515328675, + 0.6013198118171247, + 0.7080729770618717, + 0.8016476008626148, + 0.7020921178988139, + 0.8102154364886893, + 0.6123725946006104, + 0.9239054307982629, + 0.6685237768874586, + 0.7034162274069552, + 0.8380418246098557, + 0.7237834014086434, + 0.8133173844876392, + 0.9060112654841853, + 0.7167792841886413, + 0.7090192467029233, + 0.8625540200343065, + 0.7660838029388075, + 0.8668327905679082, + 0.8261160716822307, + 0.8568026745725956, + 0.8715064522727205, + 0.8534724341695104, + 0.7685165863036225, + 0.7182612575950686, + 0.8264185395866755, + 0.731141430813847, + 0.6530837515140434, + 0.789999614799664, + 0.8670601622764528, + 0.8315264248493377, + 0.7829431801190966, + 0.8839821166098697, + 0.7898777920819045, + 0.679757195614459, + 0.7480754745647243, + 0.866003843539242, + 0.8955344144326737, + 0.890917599486181, + 0.9002487761871568, + 1.0, + 0.7270155105837206, + 0.7817581778006697, + 0.7780179327713935, + 0.8310586124313925, + 0.7338736681292816, + 0.9344658302857436, + 0.7786910899931434, + 0.7436035901049662, + 0.8044040541228479, + 0.9023647499017842, + 0.758932864914616, + 0.7967273479735353, + 0.8846823119575093, + 0.8878426521293856, + 0.9432850123620613, + 0.875238349306506, + 0.8118857176305659, + 0.8503465615843311, + 0.8619814351113365, + 0.8602002252247778, + 0.9308279780210652, + 0.8381777994507718, + 0.8893113496927906, + 0.8818141994887589, + 0.9310507764065146, + 0.9481811967915617, + 0.8888664604667943, + 0.8834183728580637, + 0.7263879048366616, + 0.8108691315119065, + 0.8405855269034176, + 0.6102352809874629, + 0.9153445153471976, + 0.8272243284947702, + 0.8251186974806335, + 0.8157883331134944, + 0.8145168005005123, + 0.6534354804515958, + 0.7503645693620342, + 0.7503742772586002, + 0.8242698355019294, + 0.8816113172582742, + 0.8902989733631401, + 0.7491929341879547, + 0.8887932079931947, + 0.8432205788484706, + 0.942908327229196, + 0.8190350795484473, + 0.877538212191237, + 0.6536438789423907, + 0.8911082610388689, + 0.9079614500351422, + 0.7679151129138374, + 0.5576309835756587, + 0.828852282108535, + 0.809930315273493, + 0.8110224470374715, + 0.8376551052903457, + 0.7827770252694706, + 0.9068959751292878, + 0.9290889800539464, + 0.7653771943052322, + 0.9227439196658036, + 0.8230806539391022, + 0.8330836301363749, + 0.935460096472546, + 0.8555626932831358, + 0.9506119361577358, + 0.8872254258455831, + 0.9102419421920105, + 0.9085925456556894, + 0.8954049293685659, + 0.8853153435260995, + 0.8950464720268275, + 0.9349482955997169, + 0.9250097179046027, + 0.9071140763767587, + 0.7704520718289037, + 0.7461717320428509, + 0.9080474612101956, + 0.4906812600908791, + 0.8444214645851827, + 0.8314849400545193, + 0.769860426382467, + 0.854956191084772, + 0.7060727168562893, + 0.9097898091699669, + 0.8472519041895011, + 0.919874300262908, + 0.8529646688379714, + 0.8782502015311617, + 0.8814314017708306, + 0.8717495203649601, + 0.836149850284302, + 0.8160014823332894, + 0.8851253596380219, + 0.8812898293995434, + 0.8858432073146975, + 0.8832762499373549, + 0.8208628451750858, + 0.7971855070546118, + 0.9266536385864379, + 0.9138090214464032, + 0.8230818296451765, + 0.662421896142996, + 0.8963973679065149, + 0.7746830547543913, + 0.8192981684108077, + 0.8349651801635749, + 0.874653860682305, + 0.8625600221481091, + 0.8192578097144119, + 0.9219299234508334, + 0.7479297697963819, + 0.8993614882447435, + 0.8220123096603397, + 0.7644230211604377, + 0.8751559738865754, + 0.9264342897511909, + 0.9516942136917051, + 0.6253147809500909, + 0.8190899487720149, + 0.8801881528543873, + 0.8172387045152179, + 0.9136898253573233, + 0.8896704520299918, + 0.5480961858749634, + 0.8611080843821227, + 0.8275960249304639, + 0.8032881304029268, + 0.7377178632120386, + 0.8535807920477247, + 0.8077674013029593, + 0.6849420190292436, + 0.8975989313756996, + 0.8634442371218873, + 0.9588774585104137, + 0.9440695604450892, + 0.9262467568972605, + 0.9027259701101061, + 0.509590279276287, + 0.5267870562001861, + 0.7143729118913945, + 0.806072333491648, + 0.8446243951634672, + 0.6059298441123553, + 0.8262323889394703, + 0.8111488617652958, + 0.8266407726504053, + 0.799074157021355, + 0.5372898136659933, + 0.6231447222752315, + 0.582100061136134, + 0.6211571905576868, + 0.8182478388707063, + 0.7152498830610581, + 0.7516235469160433, + 0.7866236423190296, + 0.695565599542339, + 0.6934162689605257, + 0.7822525423417563, + 0.9098354929233601, + 0.6199783816912303, + 0.5730930297358743, + 0.8714505670912978, + 0.9510118211245825, + 0.6614510467809765 + ], + [ + 0.8237513136367108, + 0.6155771361587756, + 0.5999899057984398, + 0.7307841114068312, + 0.8525216584673931, + 0.7376976211860016, + 0.6145307574955323, + 0.8227559484206527, + 0.8287080089587893, + 0.6388347124730755, + 0.5771951415218906, + 0.8216698973337851, + 0.7792359898013971, + 0.8303893563442987, + 0.8539566981824744, + 0.9346885029739075, + 0.8181565452614513, + 0.7817436576940762, + 0.9019708672017862, + 0.6375808303014641, + 0.8372195029834116, + 0.8461044036502215, + 0.6904629303076418, + 0.7457541749388874, + 0.8823306847060555, + 0.9247846030626932, + 0.6112866833349394, + 0.7596192111848117, + 0.8266648698676043, + 0.8685612173393535, + 0.9106675899908686, + 0.7621367050962764, + 0.7883985618877185, + 0.7023752903824174, + 0.6942738718117641, + 0.942870046412003, + 0.7701837556232711, + 0.5858381637640347, + 0.92440533594178, + 0.8820838772918906, + 0.7918636685255616, + 0.8195135248950625, + 0.555469957737549, + 0.6232047095356302, + 0.6969864717175175, + 0.6424475905837631, + 0.7980940463365597, + 0.7344455373348315, + 0.7067331073327955, + 0.7476386984951042, + 0.7749559495671066, + 0.8635395113910227, + 0.8639022352479161, + 0.8635059458486188, + 0.8559952218307247, + 0.8932628714853503, + 0.9084572469706024, + 0.9192596944948593, + 0.6546331448862016, + 0.7330806685957506, + 0.8827009327833897, + 0.8778493100099406, + 0.9210979013474904, + 0.9181347279713344, + 0.6235725435214805, + 0.6754602246457715, + 0.8703053744595418, + 0.7390501838903332, + 0.6125957797551018, + 0.7309298316865621, + 0.7448113992450331, + 0.769230430929649, + 0.7798375120579518, + 0.9096913727792625, + 0.8046851015693477, + 0.7613900620367343, + 0.7469110728205982, + 0.8310676507704573, + 0.8097609885187079, + 0.8909374617044951, + 0.7401412286246754, + 0.6622470770272144, + 0.7382933069919545, + 0.8347682962915562, + 0.8864508573561587, + 0.8458058380672724, + 0.8878411795445579, + 0.800696443846432, + 0.7051154611973884, + 0.8622415388121404, + 0.827021061172234, + 0.6763879407828982, + 0.6077167739657292, + 0.8002106809407775, + 0.7270155105837206, + 1.0, + 0.813762965875409, + 0.8837978544055021, + 0.6256346656508234, + 0.642041505526774, + 0.7694492249901348, + 0.9662171102861579, + 0.9264423975408407, + 0.8730106200079696, + 0.784533814570762, + 0.5975092399743982, + 0.7995092883768639, + 0.8093064453034915, + 0.8094151054244613, + 0.7442250770109494, + 0.772722742633767, + 0.7588652961636625, + 0.8366904590227509, + 0.8912761835731534, + 0.9336673856514904, + 0.8697126472568195, + 0.8495325719987209, + 0.8395557309616334, + 0.6701413532530918, + 0.7240639638540222, + 0.7824839100001191, + 0.847956391836371, + 0.8723494580051097, + 0.865660156484518, + 0.8824234582029489, + 0.8311653000838904, + 0.6229876378338292, + 0.7472941849127213, + 0.7166869663570233, + 0.7310842125678878, + 0.8376257850873474, + 0.8218456599618695, + 0.7857528494129237, + 0.8200661372595025, + 0.6092658945086843, + 0.8721346796459927, + 0.8506878655152621, + 0.640577910422491, + 0.6034354246825876, + 0.841822124244597, + 0.927110214699327, + 0.7766608224556327, + 0.8509499253157163, + 0.8232046978918522, + 0.6907219904849666, + 0.7361020233321232, + 0.698843929040748, + 0.5878744753679443, + 0.6078911710004328, + 0.6643964697664747, + 0.858572391054339, + 0.8408367677765844, + 0.8568050476192922, + 0.7828956309642713, + 0.7292762115564047, + 0.7811810889778159, + 0.6296627194524438, + 0.849015935906658, + 0.8197420225677418, + 0.9192856129782827, + 0.8039295995599564, + 0.7697642919533977, + 0.7837791777383852, + 0.6157649537096404, + 0.7505714249231896, + 0.7750354107476063, + 0.6980015866605044, + 0.9017691216683115, + 0.8641804488862967, + 0.8620161608387256, + 0.7477113140811578, + 0.7766519218511112, + 0.833054783649116, + 0.7799643044236167, + 0.8503169146560775, + 0.6356953652280067, + 0.811913098748716, + 0.604980536476231, + 0.7481757150191541, + 0.8494600251378456, + 0.945128576751038, + 0.835800815514067, + 0.8049767570266605, + 0.7884734217001533, + 0.7473770624613258, + 0.8046027196342188, + 0.8429165950706016, + 0.8380865478982665, + 0.7549713928430954, + 0.7969055347585849, + 0.8270034914515689, + 0.7053059793957801, + 0.8186919255268122, + 0.8194615025328521, + 0.7418866221681909, + 0.5531103162451813, + 0.8215898114937314, + 0.7949730294004784, + 0.6956888836120659, + 0.8402720268455357, + 0.7938311543382319, + 0.8310410738373939, + 0.8941140078241508, + 0.664642999222843, + 0.7209475102570231, + 0.7892975095941347, + 0.8845941778468555, + 0.8242718103951469, + 0.6713158221444768, + 0.7286664306802249, + 0.5843793037761306, + 0.71826483789373, + 0.709439149820721, + 0.8496243006500507, + 0.7078242148344788, + 0.7591620554725574, + 0.7580630161366623, + 0.7833058265647145, + 0.7272462023181225, + 0.8031004146620724, + 0.6044898358281519, + 0.536965130378221, + 0.7285805756096436, + 0.8381974795611721, + 0.8226339084656322, + 0.8207942792184949, + 0.7063470284988864, + 0.6736833844798553, + 0.6314050201657934, + 0.7943040709847405, + 0.8317736926661773, + 0.7089885007177137, + 0.8547555809862186, + 0.7852773262778473, + 0.7774937510973806, + 0.6114230077157347, + 0.745265022211327, + 0.742896056972328, + 0.8821962115095315, + 0.7930671828998809, + 0.7062274871479374, + 0.7273284376174114, + 0.611158744673489, + 0.7292368476982252, + 0.5683398806450028, + 0.8994175823480789, + 0.6044181270410864, + 0.7167056979504617, + 0.6109992225207203, + 0.6559354346254218, + 0.5977351890088064, + 0.6253017208170077, + 0.833421565566747, + 0.7969860428923172, + 0.8027855134608372, + 0.8898926951393519, + 0.7534735125030018, + 0.8507579848341448, + 0.5614607385297946, + 0.8679756382783804, + 0.6578444555425902, + 0.6267147344650923 + ], + [ + 0.771282359709781, + 0.8060642953895482, + 0.7517294788038967, + 0.6137663950019864, + 0.6760832341871694, + 0.6295909503742795, + 0.6454845347720448, + 0.8241694417165979, + 0.7645175342614045, + 0.7230746091609414, + 0.6466683154874295, + 0.9030715604335275, + 0.8536438082117667, + 0.6865046467512802, + 0.8413986075119346, + 0.7483449368101655, + 0.7686803588634379, + 0.8493867136100264, + 0.7655749582395258, + 0.7499259925188666, + 0.8327789776955395, + 0.6345165543449652, + 0.7631130403551146, + 0.7339685932268843, + 0.8963754189728149, + 0.8354280809796308, + 0.7151372316238083, + 0.8763875460584003, + 0.6639879503286762, + 0.830398836279546, + 0.8677851511193636, + 0.8291873050703574, + 0.7646201442113443, + 0.5861671258955278, + 0.6724671882397145, + 0.8039840750490939, + 0.8265504308892284, + 0.35065059771666524, + 0.8637724484778105, + 0.7725068767233121, + 0.7871537962637664, + 0.6791671051680399, + 0.2604897082099797, + 0.5571374601904606, + 0.6119487310677676, + 0.7483471273495851, + 0.723581926963481, + 0.7179760473814585, + 0.7069431372639986, + 0.6585121594713942, + 0.7910318618089708, + 0.7542277368032712, + 0.5720080109570428, + 0.8173371505834734, + 0.7221908162598588, + 0.7313063590028898, + 0.7678087265683764, + 0.8145192276771466, + 0.45597147919538755, + 0.8186824742296851, + 0.7142250285538696, + 0.8408427462338588, + 0.8316689239323124, + 0.7735006725023256, + 0.6933489149249286, + 0.539828216916919, + 0.754307837925791, + 0.6296581625267698, + 0.6942638951620617, + 0.7767317571363969, + 0.7180671007866241, + 0.7499463164201892, + 0.9047020509093399, + 0.8765621290376738, + 0.8027406945360246, + 0.6838668153451475, + 0.6535754476130122, + 0.6855229026071183, + 0.7602619412402788, + 0.8627467741521075, + 0.7121424178703816, + 0.3591651996620417, + 0.8407340361774456, + 0.7032743732913922, + 0.9358256129260579, + 0.9238884789520473, + 0.922222506344558, + 0.6109665220267025, + 0.3721147040182711, + 0.7053502460019464, + 0.8490267430676649, + 0.606784500541159, + 0.6070745386037543, + 0.7754311543098718, + 0.7817581778006697, + 0.813762965875409, + 1.0, + 0.6835398740129146, + 0.6112034393202653, + 0.7593255047316186, + 0.8231115697125457, + 0.7891917787925284, + 0.8092042408390381, + 0.6407737363358202, + 0.8035252851348732, + 0.6253305724200849, + 0.6127714555787149, + 0.7400210694109742, + 0.707315179195949, + 0.7459785277748849, + 0.6983391817356156, + 0.6389092439660761, + 0.9004570288227092, + 0.8888392608408291, + 0.8632602127615999, + 0.8453254406184421, + 0.7690916241924416, + 0.8690305473969171, + 0.7288857346113672, + 0.6360658133520285, + 0.8052044491091651, + 0.7922841616878433, + 0.8797716790062708, + 0.8424377187968449, + 0.7784812500306737, + 0.7694649223890054, + 0.38538411276271645, + 0.7579197556211839, + 0.6634751304301467, + 0.6540998484058612, + 0.7330651108302999, + 0.7898392927225, + 0.6462028648967043, + 0.6209578189843646, + 0.6249714165904297, + 0.8505353594026355, + 0.773493285313018, + 0.6351335634786418, + 0.6322423789860258, + 0.783105193935032, + 0.7901504589707914, + 0.8246984109147681, + 0.7791702640017608, + 0.8450370266038282, + 0.4601572071665832, + 0.6996606170626959, + 0.7202671908361009, + 0.5353487094780394, + 0.525504198160372, + 0.7311404064978659, + 0.7343145042354955, + 0.7578226344145699, + 0.810391138390096, + 0.7448526723488808, + 0.5945734124192518, + 0.6994869064478917, + 0.5712420722472673, + 0.7571093758493436, + 0.7393861841617286, + 0.8555998621343941, + 0.79167233293017, + 0.6661927524796522, + 0.7446911979560779, + 0.631217273619954, + 0.8247292964903311, + 0.7933237683460297, + 0.6966942825969066, + 0.7503116273204781, + 0.732037259989086, + 0.7896216311408009, + 0.6357522173808817, + 0.6421527071602288, + 0.6681963088770607, + 0.7106242384287373, + 0.7503719998708974, + 0.3664819577065715, + 0.6912451762578752, + 0.5806936158358088, + 0.8645186941083048, + 0.7052438571752849, + 0.8208242096132473, + 0.7452714683689494, + 0.6894650979226896, + 0.7762700729470557, + 0.7788146843022056, + 0.7386151887679667, + 0.7606425218154524, + 0.8830745200187973, + 0.6545955119576921, + 0.827356372251307, + 0.8591690026547113, + 0.783646075939582, + 0.7832315112509831, + 0.7967330119739706, + 0.6991778617605947, + 0.5223056845840336, + 0.7209634146983966, + 0.6937581920923199, + 0.7086919782722102, + 0.5476003380933496, + 0.7159158221182389, + 0.850477838782899, + 0.8253264751926384, + 0.6166739701476021, + 0.7163065908339602, + 0.6688980185919311, + 0.7974827194798907, + 0.7568777892819801, + 0.40600458903141273, + 0.6101181102816626, + 0.5136075095427769, + 0.6753117458066902, + 0.7277224159286068, + 0.7522272150862194, + 0.7204111101170861, + 0.5346366808699663, + 0.7155045512266172, + 0.7499659368535714, + 0.7202297320398451, + 0.7163589302478492, + 0.6953571258161673, + 0.38105257376771384, + 0.6219480231520301, + 0.708347393294649, + 0.7465798882989718, + 0.6120661461145257, + 0.7324538603179935, + 0.5730068561193636, + 0.6446983555217932, + 0.8247376676526813, + 0.6807436319132827, + 0.7437426198466429, + 0.8223528564095083, + 0.7660520348407572, + 0.7322515775745425, + 0.3750287430782447, + 0.6262752848938001, + 0.6845217923176323, + 0.7633580707751734, + 0.7494186539445913, + 0.6276135918144945, + 0.6475497281021995, + 0.6613567578057608, + 0.608537145810511, + 0.4869951622553703, + 0.7289700418331769, + 0.5868104687631335, + 0.5284013873650768, + 0.3795423358530326, + 0.6849220831197425, + 0.6211243486578725, + 0.4192569307113313, + 0.7218937055613724, + 0.6915539788959751, + 0.5948597721938715, + 0.8926000290361322, + 0.6692567066135557, + 0.7462419651068773, + 0.5824911429739017, + 0.7368002594584041, + 0.71409071938193, + 0.5019580896049292 + ], + [ + 0.7235684431556827, + 0.5667318664009616, + 0.49975126110085955, + 0.82298253932964, + 0.9398742340959655, + 0.8083296807456316, + 0.6059473086126826, + 0.680080626409475, + 0.6984122928688139, + 0.690750200557321, + 0.570369683770026, + 0.7635682612593105, + 0.6877277847363192, + 0.8550760029848138, + 0.7469904769705022, + 0.9164247899074822, + 0.653604461313935, + 0.7357044212822783, + 0.9477620784646846, + 0.6924240587473478, + 0.7692904778876057, + 0.9010801886369254, + 0.7012775574598641, + 0.790210391689885, + 0.6781783220325771, + 0.8909491283408877, + 0.5908883599116563, + 0.6745524774754342, + 0.8836066963128915, + 0.7629179484627747, + 0.7740566155538886, + 0.7120126517237365, + 0.748197186919664, + 0.6685103563703385, + 0.7302465982712548, + 0.8964794778182011, + 0.7835147665373284, + 0.6673031909664281, + 0.7087648547012491, + 0.7786644358006416, + 0.672174626643398, + 0.679691250349304, + 0.5634410489911819, + 0.6891764349706727, + 0.641550090320323, + 0.7632999365205497, + 0.7693472618318852, + 0.7537197183408941, + 0.7557490594504258, + 0.7446113042927567, + 0.7144173116396457, + 0.8752854422662473, + 0.8880682399470236, + 0.8206413590210152, + 0.7523450752182643, + 0.817898187477209, + 0.8664653919525696, + 0.8154130195135603, + 0.7672449587553222, + 0.7247012503446617, + 0.7537212492426609, + 0.8519781650388242, + 0.7508663517021821, + 0.8407239814728983, + 0.6129220437058691, + 0.6934777159633241, + 0.8865856810230128, + 0.8042781061359628, + 0.6674056785418717, + 0.7294187520152112, + 0.8893329153448093, + 0.8393295940173988, + 0.6709473223370711, + 0.7684365593598073, + 0.799089121032233, + 0.7022493947930538, + 0.6801225988930446, + 0.8614233304218744, + 0.6671470147930335, + 0.7858843849628885, + 0.77598307960788, + 0.8339939449071467, + 0.6934913215556684, + 0.7946452486991537, + 0.7649976977060049, + 0.7300550583273142, + 0.8295197630691642, + 0.9011598822649979, + 0.8807426024459937, + 0.9134828678728588, + 0.7408222805651047, + 0.746539317018116, + 0.7471740664929591, + 0.8067202424628149, + 0.7780179327713935, + 0.8837978544055021, + 0.6835398740129146, + 1.0, + 0.682501961850311, + 0.6601571329324692, + 0.8090159384212853, + 0.9045484701378238, + 0.8042587842608203, + 0.9759002476356438, + 0.7451202461727827, + 0.5817652524330058, + 0.8944004493020499, + 0.8124488672986088, + 0.9093655695215545, + 0.7240173083162167, + 0.8269912170366598, + 0.7194456747994383, + 0.6621178754487698, + 0.787158359107708, + 0.8805306741120479, + 0.8865714905080428, + 0.825910059995461, + 0.7767825566573996, + 0.6230713318999841, + 0.7574502073773397, + 0.8092070912002807, + 0.8232776502180053, + 0.8352497273664274, + 0.706332061989645, + 0.784449452641368, + 0.8019321407719066, + 0.8415220136479866, + 0.7526574791372056, + 0.7819051972288471, + 0.6928469241212912, + 0.7710111157144308, + 0.8362994550378089, + 0.7148210705018697, + 0.8500736624613914, + 0.5371964675463147, + 0.7825174277721287, + 0.8850746978819635, + 0.6720769563877903, + 0.6240233753242919, + 0.8149345039852524, + 0.8945618966652019, + 0.747347391277696, + 0.7738252758709846, + 0.8403478126338633, + 0.8400319225400437, + 0.7499719439838718, + 0.800758274925315, + 0.7588821261831123, + 0.7330975134594155, + 0.6764531768519051, + 0.8164986900851338, + 0.8535978491509507, + 0.7918888244475492, + 0.7007295853915669, + 0.8047099661188425, + 0.8143507569749346, + 0.6846822155005776, + 0.914761234421505, + 0.7917977533027022, + 0.8196019037537847, + 0.8362368236038986, + 0.8403063157344975, + 0.7934287247808829, + 0.6542043735095139, + 0.6891591811833299, + 0.7540396531633946, + 0.7337552874776034, + 0.9158257979520069, + 0.9008864884774941, + 0.8546768215387552, + 0.8175471724662196, + 0.8709395277292428, + 0.7025686820332901, + 0.6655416080663444, + 0.8162038382720505, + 0.7056835349718223, + 0.8297340451798091, + 0.7491864575124363, + 0.6817633074851399, + 0.8310549538797646, + 0.8725154113923773, + 0.8462607268239049, + 0.8743107323655177, + 0.7526739424172468, + 0.7721556004961367, + 0.7384721865008367, + 0.8215791584524772, + 0.6894488025693691, + 0.6777701326974884, + 0.6417240130441094, + 0.7305808699453107, + 0.6255934776519511, + 0.7789520831505746, + 0.7579395745646849, + 0.7302748205045129, + 0.5639410689047164, + 0.8369700325801944, + 0.79954183515028, + 0.67674695388467, + 0.8111390504907979, + 0.8593452280436119, + 0.7021639098752565, + 0.8016344391896382, + 0.679361449152143, + 0.7193875831993465, + 0.7733690060908267, + 0.7880324355950108, + 0.831374123788935, + 0.86409453592499, + 0.7893038776065665, + 0.642405957600079, + 0.6986372367530377, + 0.7147345953353406, + 0.846498564976734, + 0.767880289199831, + 0.6414395474139037, + 0.7774891064802252, + 0.7221411447863892, + 0.6776713642689333, + 0.8354404750632303, + 0.6047667802827251, + 0.6130957589877379, + 0.7552125222912303, + 0.7949878394863209, + 0.855121787195463, + 0.6698269447189821, + 0.7026446078686481, + 0.6853660452137713, + 0.5899426973722451, + 0.7095322740694502, + 0.8725666486338308, + 0.7068877166876429, + 0.8494280669731247, + 0.8322680920611385, + 0.8056315545838135, + 0.689402009601586, + 0.5773172544495841, + 0.7379656389933186, + 0.8445001372383931, + 0.7823737335600947, + 0.7257550423458088, + 0.7739864693356299, + 0.5492833778102987, + 0.8357365953321466, + 0.6452479304091487, + 0.7577907807829133, + 0.5036338362436684, + 0.7678613061511558, + 0.7308765162251334, + 0.6169119595744799, + 0.6848442964241781, + 0.7961040660430211, + 0.8647492283375684, + 0.7396466139844518, + 0.8951499679826579, + 0.6830500229413315, + 0.7683242268750633, + 0.7888606210460296, + 0.5337470405952038, + 0.9333575384675963, + 0.7056557414370721, + 0.6655921232302758 + ], + [ + 0.8071187410698925, + 0.713013247534515, + 0.8087449335399266, + 0.6607991829510982, + 0.7992252580830046, + 0.8197370459255009, + 0.8099322179022893, + 0.8175492709410549, + 0.6234109140026705, + 0.8388737244540623, + 0.7783098734490457, + 0.6370749684038206, + 0.7566528414771393, + 0.6168129065806327, + 0.7781764638156987, + 0.5804362533291558, + 0.5970725681660456, + 0.8759004091607868, + 0.7282441203439778, + 0.8488051683092348, + 0.8768991407947273, + 0.6537885269419197, + 0.858051653585544, + 0.8634659781907768, + 0.43290006161982103, + 0.6936086381007568, + 0.7886794256397983, + 0.7842621269203461, + 0.7656794790554414, + 0.49462174956866883, + 0.6773019239868806, + 0.7085629855018807, + 0.8029836700316141, + 0.7679197292085138, + 0.9119056242254241, + 0.744121823104779, + 0.8897791011661718, + 0.2502667922597404, + 0.5414228570484306, + 0.6736109767047216, + 0.750524686953958, + 0.5950413017423154, + 0.2588238296663324, + 0.7863892844097998, + 0.8178320201079337, + 0.8415218237864068, + 0.8533285564735325, + 0.8638780868700732, + 0.847700779072942, + 0.6908225131721597, + 0.8392099208329852, + 0.5944941777110421, + 0.6160277562551721, + 0.6709027438074067, + 0.48709558072262454, + 0.6104032115585682, + 0.7274013322640079, + 0.7150313416356111, + 0.43890106461793815, + 0.8132127000179796, + 0.548451464302649, + 0.7934151162447272, + 0.5876985057258979, + 0.6576690717290915, + 0.8233057981067292, + 0.7011155296836045, + 0.8209906209530367, + 0.8981376957290508, + 0.8923161193501923, + 0.8127602214329197, + 0.8674578418503079, + 0.6964239437038842, + 0.7652876299605829, + 0.7066461195497321, + 0.8742706256300001, + 0.7870807890912175, + 0.800559274475813, + 0.5924715181413889, + 0.746588904708644, + 0.6463877418871522, + 0.866230754681164, + 0.5046476798484484, + 0.6887571012411231, + 0.6831742989109014, + 0.7273837906030473, + 0.7862868876423583, + 0.7713419327606639, + 0.7026557256583517, + 0.5691332443838607, + 0.6503104282843076, + 0.8532534100975129, + 0.9560649979554021, + 0.8260153088257123, + 0.8833181730645913, + 0.8310586124313925, + 0.6256346656508234, + 0.6112034393202653, + 0.682501961850311, + 1.0, + 0.8956293066511727, + 0.8746452306198947, + 0.7136308824370089, + 0.5853772883995131, + 0.7631904320580586, + 0.8986398177356358, + 0.8617554214615571, + 0.7558319012820149, + 0.9149726779105228, + 0.7049020517675931, + 0.8445474985044463, + 0.8155136617336706, + 0.7086296535377229, + 0.7782955670602167, + 0.7789416369134904, + 0.6983722210643939, + 0.7807415483761599, + 0.780669755165798, + 0.8718075018822748, + 0.6855140219799397, + 0.8436400660124139, + 0.7820480823388588, + 0.7440086907872999, + 0.816536053249331, + 0.6458761238662786, + 0.6148062865470107, + 0.6828442353677159, + 0.4349161245011958, + 0.8707088027458573, + 0.5974261656086288, + 0.7187738231287254, + 0.673842428920199, + 0.667666486848385, + 0.5750023940320939, + 0.5946825641948515, + 0.7985196656192725, + 0.7828532448101925, + 0.8453880009276357, + 0.8243388037155412, + 0.5843590555154612, + 0.7998581683011046, + 0.7614412028189442, + 0.8340431696073392, + 0.766149655706706, + 0.8273609334923048, + 0.5343826711572647, + 0.8983472237507699, + 0.7131405818831607, + 0.7126968728933741, + 0.5676066041683641, + 0.81226522721371, + 0.8193539502886383, + 0.7974606324489742, + 0.7939155138760305, + 0.7821447836671989, + 0.8781030370966769, + 0.7603732831966465, + 0.6532920501521229, + 0.8456122872589529, + 0.8292957941162105, + 0.7688644324896499, + 0.8801548826829031, + 0.8634172240112697, + 0.9111783963712974, + 0.8857271382291504, + 0.8542024757209498, + 0.8244527121435352, + 0.8484460771296104, + 0.8054629858042278, + 0.8444642081920001, + 0.8269829712287795, + 0.8855529330020205, + 0.8857248061206028, + 0.660287080111622, + 0.5423106731688175, + 0.7994356397410484, + 0.47053883610850056, + 0.7694659140813617, + 0.7112098975918869, + 0.8376124364305513, + 0.787440234611702, + 0.5768752488908657, + 0.8279460946904571, + 0.830623916850649, + 0.8690901281563489, + 0.8811320947853952, + 0.8908456242633153, + 0.860012533055462, + 0.7966601813889841, + 0.6978975818367592, + 0.7848642917691384, + 0.7302032428643651, + 0.786334092561932, + 0.7416484112872855, + 0.771206739022099, + 0.6235403017718656, + 0.8390612263129994, + 0.9012546657730088, + 0.8478668394839359, + 0.6769920550622899, + 0.5498826208349717, + 0.8802242232125869, + 0.5610870995951204, + 0.6378450525081834, + 0.6567168504661578, + 0.8384427570948271, + 0.8491016882252218, + 0.6856763838399539, + 0.6946593935396583, + 0.6346167057001731, + 0.7519292195073365, + 0.9218407205584885, + 0.7265681306312191, + 0.7946092696708568, + 0.8239296558557084, + 0.7906902385841186, + 0.4272764394908653, + 0.6770180966171041, + 0.8372796207589638, + 0.8006891902439394, + 0.7809291650538985, + 0.7401795329331567, + 0.5541515133388946, + 0.7653211282173717, + 0.774452171577259, + 0.6537370441208719, + 0.6226127069032432, + 0.6923347945356592, + 0.8313603620528845, + 0.8470939432198656, + 0.8772059535369903, + 0.804267983531559, + 0.8719081505392646, + 0.8374113798752999, + 0.7783962090754876, + 0.8872234123139887, + 0.4041109075085975, + 0.31795899947670037, + 0.6038377381232493, + 0.7305041692395314, + 0.7911761225367676, + 0.803763566516773, + 0.6375048594406548, + 0.6839881696316796, + 0.5582345962108194, + 0.8835341687795113, + 0.46967537800558534, + 0.7985740869578246, + 0.39757239025560925, + 0.6243738321146923, + 0.7944099338805315, + 0.5810588131849633, + 0.5538253373413871, + 0.6308531586532652, + 0.671538639388293, + 0.5858095138730934, + 0.663577147246374, + 0.7380178551388438, + 0.42102764729925324, + 0.7783764923727842, + 0.8378742826794285, + 0.8663240768996351, + 0.6975229030085317 + ], + [ + 0.8396890643721394, + 0.8913883862149512, + 0.8394991969045583, + 0.5654990584994043, + 0.7922032198928886, + 0.7973968416370895, + 0.8469373699720384, + 0.8196646539370386, + 0.6721670778280733, + 0.8174298643809056, + 0.8220070455987496, + 0.8069534102481043, + 0.796937024812643, + 0.675962719008627, + 0.7491810401792345, + 0.6133945558840739, + 0.6354224921663552, + 0.9099021875368404, + 0.7438994056649836, + 0.8300260482997226, + 0.8792941922676414, + 0.6724677175454354, + 0.8689216491019932, + 0.8979085259018744, + 0.5703491024203291, + 0.7713933838911514, + 0.7544354032649614, + 0.8117216022507598, + 0.7728868621769907, + 0.6850739169312993, + 0.7284911078361431, + 0.8185178286811238, + 0.8659190798983701, + 0.7465371123049682, + 0.7947382227407416, + 0.7699005120124798, + 0.9377378664161844, + 0.2330702604727996, + 0.6742774915158871, + 0.6379257134343459, + 0.8285585446501547, + 0.6158439072004592, + 0.2248709149018354, + 0.6439298128579254, + 0.6749501519986724, + 0.8193299795486935, + 0.7577010507342077, + 0.8587148579176768, + 0.7460538494972868, + 0.603162228656377, + 0.8345699722177704, + 0.6000839267998501, + 0.5596947504112418, + 0.798362479730777, + 0.6204329385867793, + 0.7114396868502069, + 0.7948701272819527, + 0.7042935999979577, + 0.31728945295951533, + 0.8368861627951222, + 0.5740112043438046, + 0.7482250870898552, + 0.662338411380389, + 0.6832669015631806, + 0.7902691026397025, + 0.5924952370556449, + 0.788766555559668, + 0.738173469455809, + 0.9653439559377999, + 0.9301924551111159, + 0.8638565692794142, + 0.7490231726639486, + 0.7928698017414837, + 0.7126850575679362, + 0.8712679083216806, + 0.666131658093649, + 0.6544761116465195, + 0.588555186942089, + 0.802535647920808, + 0.6636297941882255, + 0.9417439247059068, + 0.32462439330674475, + 0.7266510259203858, + 0.5560130357750782, + 0.7921031833713622, + 0.8686472312476612, + 0.8085796826861679, + 0.6206340405144758, + 0.3885313256460643, + 0.6761392796010725, + 0.8370841753076824, + 0.8303304381349528, + 0.7151778360736851, + 0.8333714934246695, + 0.7338736681292816, + 0.642041505526774, + 0.7593255047316186, + 0.6601571329324692, + 0.8956293066511727, + 1.0, + 0.8786632232440719, + 0.7057413211138892, + 0.5564169061490196, + 0.683551216530785, + 0.8626592015514974, + 0.8145062516415761, + 0.7021469437225084, + 0.8288389983186533, + 0.6000844821198897, + 0.7235692352729927, + 0.7332772925699864, + 0.5461194571666328, + 0.7790313141057488, + 0.805563954779189, + 0.6826796591579857, + 0.7512376418960648, + 0.7543423115823353, + 0.878314902246688, + 0.538498550480568, + 0.6720745254833379, + 0.7564997317151161, + 0.6702725740388651, + 0.8109777891809693, + 0.6820327570399215, + 0.5497131772354926, + 0.5914977637406705, + 0.3184864366385842, + 0.8180925941368671, + 0.5287982949625791, + 0.6157186771586709, + 0.5696183363159987, + 0.6460619663118813, + 0.48838024515739503, + 0.4667737006153881, + 0.7550497791651472, + 0.7811688135654145, + 0.797814537453391, + 0.6786128833639671, + 0.5140636602041798, + 0.7154827835441626, + 0.7200230389970049, + 0.7521381021695188, + 0.7263807331649411, + 0.8396631103903672, + 0.45890722900506625, + 0.8174033231986365, + 0.643094039599907, + 0.5803412821431504, + 0.5293974941723764, + 0.7974653182333264, + 0.780044441578743, + 0.7854478595477066, + 0.7793252414243301, + 0.723416437190286, + 0.6772043277771304, + 0.6202984843536445, + 0.5128302972504766, + 0.7708623952132924, + 0.7612931246292245, + 0.7606207560869002, + 0.808561073555285, + 0.7616821917455026, + 0.7832089909828651, + 0.746796919652675, + 0.8101324170259542, + 0.7399443781266503, + 0.7466915988289066, + 0.7028888178299794, + 0.7409784450968171, + 0.7144714199834444, + 0.6997364736108438, + 0.741994192021745, + 0.521221294060071, + 0.5399024301851701, + 0.6861921116599949, + 0.3740999670057338, + 0.6549734929866817, + 0.6161180694059297, + 0.9357232992125388, + 0.6466947296127162, + 0.6341061620850872, + 0.7312826118336918, + 0.7563031617485939, + 0.7708290458647623, + 0.8497759442638798, + 0.777233820507166, + 0.7675609073734566, + 0.778293398240678, + 0.5035075897800341, + 0.778205415308778, + 0.7017689027386583, + 0.7146393594315161, + 0.67588739285048, + 0.7258841954920482, + 0.5354064555591325, + 0.6286171708932273, + 0.7854266930718958, + 0.6836876733600481, + 0.6067609630688416, + 0.47518472759872876, + 0.7959262023111338, + 0.5491419738395823, + 0.6221076481296156, + 0.5126135874594299, + 0.7199943540773557, + 0.7389352402237607, + 0.6809963132842051, + 0.6022247726262243, + 0.42448996634779174, + 0.5726826895995223, + 0.7384555039253683, + 0.6568859392428354, + 0.732089523096138, + 0.706168722494026, + 0.6532424733322348, + 0.2759538351200679, + 0.5881664858743298, + 0.710009115773281, + 0.7266619143806519, + 0.6562078945885207, + 0.6591681205827248, + 0.43457230971808153, + 0.6245971162638735, + 0.7026641770742491, + 0.5862005930049268, + 0.4496482955394279, + 0.6308662028914375, + 0.7048215428258312, + 0.7946518904972154, + 0.8219432762793208, + 0.689708925583726, + 0.7366738933142732, + 0.7708066518046358, + 0.6717206574220402, + 0.8002242596637706, + 0.3978922620789854, + 0.29945797102893745, + 0.5874039007974241, + 0.7117857886452842, + 0.7530792643582648, + 0.8660702735250684, + 0.5650333826887362, + 0.6474747139508663, + 0.43216834691051764, + 0.6774272528424174, + 0.5392921921359695, + 0.7965564252557525, + 0.3199836665986887, + 0.47183370187213286, + 0.7610542387456962, + 0.5293218498391511, + 0.36639627255757257, + 0.635067950061641, + 0.7015465211246398, + 0.5824284798511381, + 0.6893668493277328, + 0.5710239845718368, + 0.4890775532523837, + 0.8199858174643421, + 0.7807331300399403, + 0.7417993411964409, + 0.5889237535083592 + ], + [ + 0.8186599676381979, + 0.7551784549738597, + 0.8256360068034223, + 0.7400308539618787, + 0.8442672749677744, + 0.8249034206574017, + 0.6813267873056293, + 0.8347149574990032, + 0.664259298081035, + 0.7944027066102588, + 0.6793532581641718, + 0.824644904847354, + 0.9053578844671683, + 0.6937399906255935, + 0.8300231524065766, + 0.7136344033603897, + 0.67242172291648, + 0.8987627646053751, + 0.8473086194687528, + 0.8966295614953316, + 0.9007724737048509, + 0.7074878842590423, + 0.9035022703135003, + 0.8336862273666372, + 0.6402735600523429, + 0.838508299641403, + 0.9015763783281625, + 0.8676284428499405, + 0.7568198254085848, + 0.6741501860935611, + 0.8171551998084234, + 0.7746958443953716, + 0.8201493444594652, + 0.7274759471587076, + 0.8827230172962376, + 0.8417940654776347, + 0.9367794137281064, + 0.4682156211805044, + 0.7195006215964707, + 0.7972176416760143, + 0.8627686475440384, + 0.7536392167566817, + 0.4651074087927209, + 0.7735318697928731, + 0.8177473622826429, + 0.8728459019372571, + 0.86932951601395, + 0.8438964405483931, + 0.8898311892825173, + 0.7894530759452206, + 0.8145903049190341, + 0.7677872976158965, + 0.6453791227689234, + 0.7966221793711213, + 0.6165772884233933, + 0.6973388151660369, + 0.8013700095772882, + 0.8755220182576088, + 0.633563587135921, + 0.8801166903840943, + 0.6017433624894637, + 0.9219040185580282, + 0.6896541209349746, + 0.7413601999210087, + 0.8621120509937532, + 0.7244089907742536, + 0.8448987520764188, + 0.8945301934663599, + 0.8734184618725082, + 0.8635303632355734, + 0.9158600353716461, + 0.7921443080639877, + 0.8600311357811662, + 0.8431057448993032, + 0.9246726336790281, + 0.8706930164118808, + 0.8613488219740738, + 0.816398127245853, + 0.7849323983852873, + 0.8660799657853393, + 0.8718179064782243, + 0.5530301994273931, + 0.7890715387011611, + 0.8396256704779985, + 0.871731532296589, + 0.8702691606845689, + 0.8956199325042868, + 0.7511716236077098, + 0.6003044825788306, + 0.8161500698383598, + 0.9096767912082181, + 0.9123445484599391, + 0.9150336568280819, + 0.9584575738826695, + 0.9344658302857436, + 0.7694492249901348, + 0.8231115697125457, + 0.8090159384212853, + 0.8746452306198947, + 0.8786632232440719, + 1.0, + 0.8039388619270983, + 0.7288795377861437, + 0.8250411245713148, + 0.957016934995762, + 0.7470234883840151, + 0.82953975567187, + 0.8976965533417255, + 0.8398854555791256, + 0.9242091041183316, + 0.8954774003714437, + 0.7031841114412102, + 0.8695744019982746, + 0.906833778937695, + 0.8749495303015937, + 0.9211895383778053, + 0.8933243058654402, + 0.9457453071831025, + 0.7298560837589217, + 0.8691839097636669, + 0.963381229725886, + 0.8736409579560215, + 0.917290926138229, + 0.709361639919286, + 0.7555425974341544, + 0.7520898785267417, + 0.5225966927941686, + 0.9431198519552733, + 0.7655648083196961, + 0.8435561648886203, + 0.7158256243548404, + 0.7583741838919291, + 0.5519102540356228, + 0.6439870293616311, + 0.7283523973473797, + 0.879975731707652, + 0.9075035465917399, + 0.8379516910996432, + 0.7357302656176068, + 0.8909023974269205, + 0.8696152899019157, + 0.9253444414521106, + 0.8837254055117726, + 0.9222061347946688, + 0.623215571569866, + 0.8915798484148431, + 0.8905134615327257, + 0.7557730493517736, + 0.6125243426331409, + 0.8983349247735289, + 0.8737284511433823, + 0.8709198762398701, + 0.8904853119988413, + 0.7850738179422536, + 0.8620307781316022, + 0.8825538962202807, + 0.7352278676013106, + 0.9011506736866455, + 0.8050200149587149, + 0.8657901195206928, + 0.9413550339966957, + 0.8823803292325249, + 0.9041970795703712, + 0.8965978618167958, + 0.9367764137161882, + 0.917694717385544, + 0.9095174396939737, + 0.8658248303279776, + 0.9107386206182926, + 0.9101359701668346, + 0.8823969267235007, + 0.9037295295250511, + 0.7084915879401255, + 0.8032301892365975, + 0.8970138452216112, + 0.5257175765421379, + 0.8294313308893144, + 0.8434056855773252, + 0.8652943430174171, + 0.8215456327220348, + 0.7433009490636489, + 0.9218716069700265, + 0.8910951751220829, + 0.9369759172604549, + 0.9337890374154887, + 0.8822945214260115, + 0.8859670046070587, + 0.8800791811370535, + 0.7280423778927461, + 0.8708503575518084, + 0.8898429539450752, + 0.8904169351384585, + 0.8878227880328908, + 0.9218284040932694, + 0.8194268895696654, + 0.7689810890835319, + 0.9053748126338026, + 0.8661671015480497, + 0.8524787885437612, + 0.688228554294949, + 0.9183342782063433, + 0.6988209146333535, + 0.8131877114006955, + 0.8056576025454489, + 0.8725291827436603, + 0.911200334028839, + 0.8837004291252611, + 0.8666671449527782, + 0.6386158996300868, + 0.8565771236794619, + 0.8315923316863177, + 0.7982415113997665, + 0.9094334806730467, + 0.8753738288532364, + 0.8878892131241738, + 0.5738346065448598, + 0.8040398362887029, + 0.8707924990633084, + 0.8687793935596141, + 0.9032931103042795, + 0.8800957374676516, + 0.5913967558259184, + 0.8619687852411284, + 0.8576808478958943, + 0.7872534377416636, + 0.6839565923857992, + 0.8762364855371789, + 0.8695944436560613, + 0.6961956162271346, + 0.9058594224329695, + 0.864959149594909, + 0.9239752459225071, + 0.9555417913114473, + 0.8923878594580495, + 0.9408247890953128, + 0.5776712003654693, + 0.5569402293021406, + 0.7819833809820708, + 0.8733925750444667, + 0.9065175705206551, + 0.7204843611887594, + 0.8528120226647763, + 0.850627479135169, + 0.7570272736650128, + 0.7905426062074549, + 0.6003813416688358, + 0.6837239435256175, + 0.5640904935899697, + 0.6323500907625929, + 0.8816917317217938, + 0.7132153133393904, + 0.652584907115369, + 0.8279749068959849, + 0.7522834355448441, + 0.7374551523388925, + 0.8026211504573988, + 0.8526526984485031, + 0.6198896128234053, + 0.6326212967380963, + 0.9047888758920258, + 0.8915773980722091, + 0.7163125776913482 + ], + [ + 0.8620490166222189, + 0.6417230081116122, + 0.6119735780796874, + 0.7319478951245392, + 0.8696817727605333, + 0.7724521462421371, + 0.6561686011777981, + 0.8301592482279129, + 0.8283839607589196, + 0.7177831469056781, + 0.664155348341315, + 0.8072405530342895, + 0.757375016963727, + 0.8196441993372414, + 0.8500752212330345, + 0.9338938000405511, + 0.8141338653426126, + 0.8300102549439997, + 0.9357084512443123, + 0.6729543003032968, + 0.8910546085369289, + 0.8990373114748983, + 0.7142326560255589, + 0.807744015528327, + 0.8347610151313806, + 0.9066780362525694, + 0.6277641457713451, + 0.785060228590844, + 0.8900576847899003, + 0.7976640976722187, + 0.8919202223439404, + 0.7586890777717872, + 0.810908715236536, + 0.8213056788890312, + 0.7447149896198321, + 0.9562835467911475, + 0.83829917456081, + 0.5283598792462123, + 0.8813368090459877, + 0.9119758701008944, + 0.7707639896526645, + 0.764234172389785, + 0.5565850620919802, + 0.70077009918256, + 0.707109062894299, + 0.7103764735859406, + 0.8479269538034272, + 0.7768419855016455, + 0.7520834413860322, + 0.7923576245111186, + 0.8489297878910407, + 0.8321641967409009, + 0.9092808397871833, + 0.8638117284005418, + 0.8577631968437358, + 0.9172014350217965, + 0.9403464897319691, + 0.9036545292671385, + 0.628646299313632, + 0.7801526757542558, + 0.8922878739550766, + 0.8995052604176268, + 0.9010204836997547, + 0.9520788822587334, + 0.6389818242972052, + 0.640273829146049, + 0.8855716558894995, + 0.7943815566298166, + 0.6764701916181246, + 0.7680984250362137, + 0.8168660238598071, + 0.7606308427919374, + 0.7803484701915924, + 0.9173075415602543, + 0.818098487145211, + 0.7979723712699346, + 0.7522081153831949, + 0.8194604602775208, + 0.8427240500647576, + 0.8665565137092075, + 0.7852397674489032, + 0.7142914370236265, + 0.7911634229286661, + 0.842149612712596, + 0.8690733661321404, + 0.8492482188782692, + 0.8851183005655191, + 0.8241207176448593, + 0.7440843739552555, + 0.837149061661206, + 0.8397337909824696, + 0.7625894958077951, + 0.6319452774073541, + 0.8168828501486556, + 0.7786910899931434, + 0.9662171102861579, + 0.7891917787925284, + 0.9045484701378238, + 0.7136308824370089, + 0.7057413211138892, + 0.8039388619270983, + 1.0, + 0.8726497705006163, + 0.9063835398979037, + 0.8076777420778591, + 0.6904891768000809, + 0.8062587705654671, + 0.8802230639887625, + 0.832932622085031, + 0.7756104220946558, + 0.8363175835831557, + 0.7970875523316471, + 0.8382080538420522, + 0.902967600197988, + 0.92516129936898, + 0.8815353713361818, + 0.8729034872703784, + 0.8535266315424211, + 0.6967731508715427, + 0.8046058118556024, + 0.8128127745522774, + 0.867437082436275, + 0.8933189882100192, + 0.883249156748466, + 0.8794402844602531, + 0.8591332055946387, + 0.6451304595165744, + 0.7891086840597569, + 0.7007371085790489, + 0.7559544775022119, + 0.856261356914354, + 0.851158323503912, + 0.807743087509801, + 0.8464007899949559, + 0.6779826662691762, + 0.886504300499005, + 0.9089312708732052, + 0.7058580219198944, + 0.6475809264931924, + 0.8503427195916888, + 0.9432868380148467, + 0.7873929779637832, + 0.8334277580848106, + 0.8345953107066173, + 0.7168151245605937, + 0.7731408657702102, + 0.7008343644474355, + 0.6513905286183048, + 0.6068024175830881, + 0.7074050358535834, + 0.8998823694077636, + 0.8996887993372933, + 0.8912744365543221, + 0.8110456631837768, + 0.7827098066055116, + 0.8321365193468012, + 0.687827885378114, + 0.9151380750301902, + 0.8960794790110671, + 0.9222118283765685, + 0.8490684464220176, + 0.8337222706189802, + 0.8434927717771711, + 0.6787821280605424, + 0.7753261315822846, + 0.7835571181556863, + 0.7637553128122888, + 0.928826015564221, + 0.897291541782881, + 0.8656143347847378, + 0.817045609344951, + 0.8513741524720794, + 0.8089514560419742, + 0.7340877552278255, + 0.8759295825990675, + 0.6858059544441022, + 0.8645968193269358, + 0.6489281999649216, + 0.7919924055286931, + 0.8925128725141365, + 0.9096519195807978, + 0.865150335982808, + 0.8521144327721096, + 0.8062391037426857, + 0.7548612630094785, + 0.8461270956987135, + 0.8821092652536218, + 0.8304873549200281, + 0.7794931631856301, + 0.7996441589439013, + 0.8089551769335126, + 0.7098368486867981, + 0.8394313234740265, + 0.8118086453843977, + 0.7332087247526294, + 0.6227324220056839, + 0.8725811881467543, + 0.8437880196336823, + 0.6673432631997086, + 0.8670698808542407, + 0.8525633626956699, + 0.7823161621933811, + 0.9180267382056081, + 0.6803264470952793, + 0.7613210202603671, + 0.8132259808403967, + 0.8385810826323508, + 0.825781408140235, + 0.7408163267450736, + 0.7712139812429004, + 0.6590539143346527, + 0.7562093549500134, + 0.7479597727703395, + 0.9022079657215627, + 0.7272045713454437, + 0.6761971278552997, + 0.7494919021948753, + 0.8057119518734442, + 0.7415625801277136, + 0.8278384896358495, + 0.6393911391482869, + 0.5794737252048293, + 0.7462029048967174, + 0.8946668863862429, + 0.8303451119750213, + 0.7968604528789749, + 0.6828556258252264, + 0.7085630003948022, + 0.7005797597419717, + 0.8252485133702951, + 0.8707197628195262, + 0.7490520283564486, + 0.8691007118537072, + 0.7938629982678369, + 0.7900500690164535, + 0.6691665190416082, + 0.6487131126117183, + 0.7277237923184636, + 0.9008956510083364, + 0.8336260859197697, + 0.7961685605177093, + 0.7256732795826971, + 0.6072967322299949, + 0.7229716804099166, + 0.661267577782974, + 0.8901460890360424, + 0.6776018389293178, + 0.7214444153990953, + 0.6913684729879049, + 0.6808248340146431, + 0.6390215833905567, + 0.6504207818874678, + 0.7911902441027128, + 0.7762777955618754, + 0.8166394672578234, + 0.8691336922047075, + 0.7803123212880742, + 0.870596281140094, + 0.6600550648353647, + 0.9174652238948563, + 0.7431878589937069, + 0.6611553134287224 + ], + [ + 0.7651564998796943, + 0.6068776168011707, + 0.6455507582763933, + 0.797312753752616, + 0.7539027062691698, + 0.6073759423521716, + 0.5884666546557208, + 0.7762993736284846, + 0.8444410623552557, + 0.7034122197615279, + 0.6027157654803007, + 0.738813083024176, + 0.7521937844275332, + 0.6818886430571014, + 0.8501521440538262, + 0.829088359623915, + 0.7742645018077553, + 0.7611386969101356, + 0.8140952161159072, + 0.6909049552764822, + 0.7732588584379858, + 0.7211206345058292, + 0.6820371372133742, + 0.6905546845557087, + 0.862969474233016, + 0.833072513761438, + 0.6252539390667264, + 0.7821262581056058, + 0.7015449747903796, + 0.8044245346949365, + 0.8533899189375065, + 0.7096508755018772, + 0.6909852793093512, + 0.5607898130897957, + 0.7129439825697929, + 0.846035086938754, + 0.701487499485391, + 0.6148240700385225, + 0.8445227203426154, + 0.8694237757886542, + 0.7228550851931769, + 0.7371894784447616, + 0.4168121003476749, + 0.5898836383289272, + 0.6977056279750035, + 0.6797312211022599, + 0.7710292096065947, + 0.767874835170206, + 0.7274675945795646, + 0.7529353270962903, + 0.73479096099761, + 0.8078921526925366, + 0.7237195514700769, + 0.7409841808503976, + 0.7094705762921739, + 0.7465775520794852, + 0.7787208942750462, + 0.8739103565237082, + 0.6519252185319493, + 0.6823684587746361, + 0.8392509845110736, + 0.8730267880750358, + 0.8682788991706964, + 0.7971277996320607, + 0.6769090416850478, + 0.7361478317390897, + 0.8161116781152169, + 0.749055536568213, + 0.5162013986429776, + 0.6335902911917994, + 0.6859791681808775, + 0.7155983451388827, + 0.8395400363110628, + 0.8927624826497893, + 0.7287548166086358, + 0.7351115359606263, + 0.7315069779773922, + 0.744996822714283, + 0.7498007518640809, + 0.8780533738539794, + 0.6161081886604405, + 0.6111005743791175, + 0.7528336524049064, + 0.8091507936818332, + 0.8612321002176211, + 0.8311198671782595, + 0.8969209768129385, + 0.7829908077483166, + 0.6849923402819662, + 0.7548261857454781, + 0.8034635391549221, + 0.6404178488791961, + 0.6093914099014524, + 0.7236114616812015, + 0.7436035901049662, + 0.9264423975408407, + 0.8092042408390381, + 0.8042587842608203, + 0.5853772883995131, + 0.5564169061490196, + 0.7288795377861437, + 0.8726497705006163, + 1.0, + 0.7728878534435674, + 0.7309129716144412, + 0.5922639203693387, + 0.744303531039148, + 0.806174860371578, + 0.7750417112802431, + 0.7590999147509476, + 0.7148181480713384, + 0.8441722601592356, + 0.8279299215109827, + 0.822448188222295, + 0.8911043434257812, + 0.8664249061503582, + 0.7812422669162926, + 0.7943217450687017, + 0.7870146768482161, + 0.6881884076699138, + 0.7245468345693834, + 0.8208865948573723, + 0.8531947047602545, + 0.8195282606212521, + 0.9499778600429017, + 0.9005969256384884, + 0.6344687986218799, + 0.6684789465963179, + 0.7875550153189323, + 0.635933234323467, + 0.9105662812608919, + 0.8557160132788393, + 0.8661355007796663, + 0.8692358259139445, + 0.5897593479769492, + 0.8283154902517649, + 0.7688867839807043, + 0.6712630659666461, + 0.6206170457382133, + 0.813187054988634, + 0.8443564043998495, + 0.81725180436968, + 0.8094759650766622, + 0.8093687385903438, + 0.6804346953742213, + 0.7202926060828642, + 0.6858656920446772, + 0.5871523706929916, + 0.6341291003832633, + 0.6207555233008712, + 0.7751193943983933, + 0.7395385210612389, + 0.8124889140246089, + 0.8497835601489779, + 0.7109150506912523, + 0.7705685874968606, + 0.6477462186034166, + 0.8140668401278607, + 0.7907796200383611, + 0.8823440049958253, + 0.799048045603407, + 0.6996747282057463, + 0.7966743153412692, + 0.5990307993934112, + 0.7359462680339691, + 0.7731729494593881, + 0.6698132669101423, + 0.8801741036108038, + 0.8211830458199073, + 0.8789875639563602, + 0.7419505591855569, + 0.737085523767083, + 0.8411449252180941, + 0.7233035288891975, + 0.7970767330743926, + 0.5322246147512164, + 0.7665929989773226, + 0.6223587840431168, + 0.7013931385091499, + 0.806337168919382, + 0.8518337498285262, + 0.7690281218571485, + 0.7366702761810693, + 0.786003141679156, + 0.741588441713917, + 0.7767042766563194, + 0.781175704006673, + 0.8489626715114365, + 0.8513723078834137, + 0.7478223848951785, + 0.8262989394474225, + 0.7238863955355742, + 0.7817942061117333, + 0.772281376101019, + 0.7734405119878847, + 0.5688850897278358, + 0.8068316515898789, + 0.7852922132143874, + 0.7255388959708153, + 0.6778309470573592, + 0.7520378088991594, + 0.8740086168586542, + 0.8068259161864224, + 0.6937673047869781, + 0.7450376061934878, + 0.7383188317393912, + 0.8584415708843534, + 0.8708628186362235, + 0.6651235674407494, + 0.7010388488608131, + 0.5636419749752609, + 0.7033270666345075, + 0.6954741787610392, + 0.8550427648467505, + 0.7868091361366337, + 0.7566694769154574, + 0.8414605064599303, + 0.7971709910609176, + 0.719272536642452, + 0.7655011223160185, + 0.6307466452164661, + 0.4667289969945832, + 0.7356149175378922, + 0.7696504310633087, + 0.8285974557562135, + 0.8540086943548619, + 0.7646968193730038, + 0.6396936342759704, + 0.6064470539337228, + 0.7963837800167209, + 0.8037887353297386, + 0.7453769878163684, + 0.8313510461760346, + 0.8403604728533064, + 0.7799935411467516, + 0.4953564940288716, + 0.6850962303786231, + 0.7547981455932874, + 0.829048184557668, + 0.7297977722988743, + 0.5689845403657633, + 0.7276555056571978, + 0.6334654913316252, + 0.7341338390218847, + 0.5420691167192857, + 0.8198253371250115, + 0.5437628485208856, + 0.6832957951625227, + 0.5323418047537428, + 0.695157570380777, + 0.6628757939885553, + 0.5812345636686381, + 0.7725620450020759, + 0.7820044910517727, + 0.6770700925588184, + 0.875865036045228, + 0.7565437119471452, + 0.7408743222240741, + 0.4997451563435503, + 0.8024839806629119, + 0.6901467585923513, + 0.5695281822759075 + ], + [ + 0.7753981270908621, + 0.5450236060952175, + 0.5303666676100465, + 0.7912530381444669, + 0.9412251828661146, + 0.8574283240720136, + 0.629644467036261, + 0.7194794997991197, + 0.6850958561925528, + 0.685283099371458, + 0.5739528558462493, + 0.7273345510870104, + 0.7002531981794857, + 0.869867309613288, + 0.7599362090580881, + 0.8999609287768583, + 0.6837372737381425, + 0.7537145718680689, + 0.9351860217351117, + 0.7045710975351227, + 0.8081510683911204, + 0.8837785496677049, + 0.7107021523678606, + 0.791584747176109, + 0.6312231467431638, + 0.8733943875433157, + 0.6281695651827555, + 0.6764783699344761, + 0.9025464158345964, + 0.7139259981305021, + 0.7872741985831265, + 0.6950714099141612, + 0.761953186707965, + 0.7139009690793187, + 0.7686377366241364, + 0.9109019315747366, + 0.8003181122112222, + 0.5716475595400159, + 0.6880686250789978, + 0.7744118004132006, + 0.6803658184699035, + 0.6792540965468397, + 0.5378231280948332, + 0.7308447518174583, + 0.7019736930220828, + 0.7543393710877451, + 0.8291436367480783, + 0.7598904007721121, + 0.759966674679478, + 0.7596484446615238, + 0.7409901233746767, + 0.8532111264886276, + 0.9003772991648478, + 0.8167201125813872, + 0.7407787268044862, + 0.8209919983094062, + 0.8756591758750393, + 0.8180660368287875, + 0.7422784646678235, + 0.7566110695385815, + 0.7482373055655271, + 0.852136672022261, + 0.7378398743589442, + 0.8474509433201672, + 0.624012859910516, + 0.6881854685830698, + 0.9058860138160554, + 0.8620274167282771, + 0.7115101346974523, + 0.7518905816681061, + 0.9000094901589458, + 0.8255029525121762, + 0.6787454859801694, + 0.7791384441020428, + 0.8271192137045302, + 0.7510236819223304, + 0.7471520940190052, + 0.8316213733895677, + 0.6942376134032349, + 0.7673252007971961, + 0.8050483488979192, + 0.8280121683212439, + 0.6696073150843767, + 0.8277729940967675, + 0.7672328209070283, + 0.7286788588323855, + 0.8185397622611968, + 0.8870243094955785, + 0.8811687851830635, + 0.9026808430094599, + 0.763046290104396, + 0.8169156114942251, + 0.7743682752688618, + 0.8541204274774075, + 0.8044040541228479, + 0.8730106200079696, + 0.6407737363358202, + 0.9759002476356438, + 0.7631904320580586, + 0.683551216530785, + 0.8250411245713148, + 0.9063835398979037, + 0.7728878534435674, + 1.0, + 0.8082866612196913, + 0.6229292289928937, + 0.9187232241976815, + 0.8446385236868401, + 0.912745629723974, + 0.7701315286749729, + 0.8735686306016437, + 0.7366351655126094, + 0.6986878763240028, + 0.8091201317254265, + 0.8813851753143347, + 0.8800014888403155, + 0.8601475288914625, + 0.8091589966195999, + 0.6439464434521524, + 0.826888565122525, + 0.83468174087207, + 0.8391622482573897, + 0.8448720191754572, + 0.7038783449313584, + 0.7574456818332834, + 0.779104118902341, + 0.7803015754937945, + 0.7898589379530129, + 0.7318014432227085, + 0.737614256970494, + 0.7616855314813767, + 0.7855989962879714, + 0.6886277204204483, + 0.8195590753034415, + 0.5753415325066472, + 0.812447302620948, + 0.9267308212748178, + 0.7092974094757641, + 0.6292582886200211, + 0.848230867432585, + 0.9211938782303628, + 0.774996467221203, + 0.8025374769892001, + 0.8472293217984541, + 0.7868962024678215, + 0.794034426554694, + 0.8115322448270123, + 0.758849102229518, + 0.6895562039050531, + 0.7305104595006926, + 0.8702474694674898, + 0.8836490656896746, + 0.8229661172408629, + 0.7112914969385745, + 0.873058180138662, + 0.8496198228127121, + 0.7222488197964055, + 0.9361564628807699, + 0.8388699160741874, + 0.8475238385199158, + 0.8731930542870939, + 0.8892941156080494, + 0.847122830458459, + 0.7397111201210241, + 0.7442781557870506, + 0.7946337719032, + 0.7933892006921496, + 0.9447078197064552, + 0.9403676589237401, + 0.8884461335921284, + 0.8794308166569755, + 0.9244952294805604, + 0.7422748315001744, + 0.6675280502076978, + 0.8641112551609381, + 0.7075808831807151, + 0.8776895596369947, + 0.7537363755283273, + 0.7023395205511526, + 0.8932214442294867, + 0.863226841173763, + 0.9029364769968534, + 0.9152893065728926, + 0.8063790333808244, + 0.7855028900533585, + 0.8071703135167876, + 0.8642024850476463, + 0.7228994241547456, + 0.7049211189071775, + 0.7080611683199393, + 0.752058094823624, + 0.6660605325453871, + 0.7980015109292643, + 0.8059372200286135, + 0.7329584755990421, + 0.6691280060086844, + 0.8820963310320289, + 0.8667134710357336, + 0.6865003953479784, + 0.8390173131110054, + 0.8951710784921847, + 0.6847177368583722, + 0.8138186789702765, + 0.6994747616028567, + 0.7754797749003035, + 0.8387077542504799, + 0.7975534330832226, + 0.8271397081408944, + 0.8671901675010398, + 0.8446758564340228, + 0.7342142080530044, + 0.7286970554593489, + 0.759427332385031, + 0.8727857083655867, + 0.7823316962637841, + 0.6557135238325925, + 0.7630581567329824, + 0.7867618529841465, + 0.7395339185385519, + 0.8745225912826063, + 0.6261329176865665, + 0.6412498407821289, + 0.7907393391643932, + 0.826007577172802, + 0.8564403643016644, + 0.7144682823359441, + 0.7078339026251743, + 0.7603726492928511, + 0.655921810237677, + 0.7672052657036563, + 0.922088665735836, + 0.76048563031612, + 0.8824738062334174, + 0.8340487529836534, + 0.8477787705141484, + 0.6496806768741051, + 0.5608997485059073, + 0.7150085723339047, + 0.8530184550874276, + 0.8203272471924999, + 0.7516458972925806, + 0.7747525027512514, + 0.5811843902613115, + 0.8233690762609444, + 0.7348935594989763, + 0.7348526282404646, + 0.5755971061777302, + 0.7360156618163628, + 0.777155832445467, + 0.6490392993082273, + 0.6513914191318427, + 0.8011627827291585, + 0.8511829966571863, + 0.7104997578893607, + 0.8923875592088518, + 0.6826410928510505, + 0.8076673270625632, + 0.7298806224590704, + 0.5601903649963691, + 0.9643980416834756, + 0.7354327317951446, + 0.738768795204365 + ], + [ + 0.8753254675574348, + 0.727741486536614, + 0.8490704518120016, + 0.6798273674808082, + 0.8216286173379024, + 0.8428069919097233, + 0.709305132291403, + 0.8979912346581, + 0.6649234701140102, + 0.7663823964993919, + 0.6854695287992366, + 0.7959480776307407, + 0.8936741468523931, + 0.7358114708797538, + 0.8775603592497541, + 0.7043526602258832, + 0.7406931988818437, + 0.896803822055824, + 0.8079278330280849, + 0.8538698468881888, + 0.9405747552931519, + 0.6949576261857127, + 0.899448427676099, + 0.8040950640333152, + 0.654301079050983, + 0.8336634028569616, + 0.9125292175655986, + 0.88697520845753, + 0.7566496571127417, + 0.6666769173746256, + 0.8600205122622797, + 0.7676681178344172, + 0.8615482916874618, + 0.7686381233491479, + 0.8804332959124141, + 0.8643923033870123, + 0.9201694280399907, + 0.31579030636760486, + 0.734056673632457, + 0.802804688903564, + 0.8776528965706523, + 0.7451938795171876, + 0.3810731087207676, + 0.7907089049453455, + 0.8713027766247706, + 0.8075871158554323, + 0.921945741548352, + 0.8259259913090872, + 0.8435057684678089, + 0.7903757746000067, + 0.8495724750045235, + 0.7374228085703188, + 0.644989346803058, + 0.8027025790445477, + 0.6372156754581751, + 0.7219263550988756, + 0.8153894243188569, + 0.874570641556137, + 0.5524226909153824, + 0.9056243280857131, + 0.6292174245278072, + 0.9136262076980194, + 0.7236272654507581, + 0.7801804286198368, + 0.8415316206095413, + 0.6725766675344382, + 0.8544660196424361, + 0.8957414114970782, + 0.862229846387689, + 0.8525337404873459, + 0.8456301537976424, + 0.7513720792383486, + 0.8819174302422045, + 0.8661914307117291, + 0.926597962992383, + 0.8984723432451232, + 0.9140009681128657, + 0.7412866338104421, + 0.8202992659649727, + 0.8504257343015874, + 0.8505734470449978, + 0.4765197317136113, + 0.757871340310909, + 0.8567389156880425, + 0.8986151814450022, + 0.8798310068601163, + 0.8829576758697597, + 0.6870271770440036, + 0.5402018719364956, + 0.7706149937310659, + 0.9369205263892753, + 0.9100837736704418, + 0.8443843136418634, + 0.9528429801629172, + 0.9023647499017842, + 0.784533814570762, + 0.8035252851348732, + 0.7451202461727827, + 0.8986398177356358, + 0.8626592015514974, + 0.957016934995762, + 0.8076777420778591, + 0.7309129716144412, + 0.8082866612196913, + 1.0, + 0.7622391976556395, + 0.8114251834633667, + 0.8919613887120779, + 0.7866527032733982, + 0.940425466925667, + 0.8949322332263797, + 0.7334490173837425, + 0.9206345003014653, + 0.9205702261675823, + 0.8811898762574003, + 0.8862754326703384, + 0.9121989496529946, + 0.9729201042261971, + 0.7463917205093122, + 0.8845696676301612, + 0.9309025987439471, + 0.863908517864821, + 0.9098682459332293, + 0.7421710371172573, + 0.7230568537046715, + 0.711739992566265, + 0.410881670191987, + 0.9350187844150125, + 0.6501741400893349, + 0.8431505412016773, + 0.7240413537627781, + 0.7025103814791758, + 0.5464003237360993, + 0.6091146885814782, + 0.7351988022093741, + 0.9241514044314496, + 0.919302673064386, + 0.8288785329813714, + 0.7303975628915093, + 0.929441175488328, + 0.9030967347010567, + 0.942014853236186, + 0.9236302870284605, + 0.9213785944603132, + 0.4933152426578715, + 0.9059828650931131, + 0.8624329669744254, + 0.7102077695270245, + 0.5787595726514989, + 0.916032374185972, + 0.9216303963506569, + 0.8887612206440353, + 0.9228531653948234, + 0.7653801931498777, + 0.8753423375834659, + 0.8789277054778863, + 0.7441299055892627, + 0.8809649349127258, + 0.8399026790764031, + 0.9145186902116645, + 0.9392920776353479, + 0.892203259681359, + 0.9179075177209106, + 0.920233049651886, + 0.9823901301805854, + 0.9366445584195913, + 0.9158496758563575, + 0.8847045329588188, + 0.9201422417124815, + 0.9251910414194684, + 0.8887931607096844, + 0.8963071809651095, + 0.7471610005918022, + 0.7790372883534932, + 0.9203748608511565, + 0.5061774280283899, + 0.8517400046301705, + 0.796166335620262, + 0.882054903074296, + 0.8756949592138601, + 0.7540420556488204, + 0.9397789288944522, + 0.8929468986978419, + 0.9710258730616209, + 0.9083585857707899, + 0.941161734593907, + 0.9169750501090261, + 0.9299229692726267, + 0.7471988346768684, + 0.9441634820593654, + 0.9244316904704893, + 0.9208764679326475, + 0.8890993625940501, + 0.955990967307712, + 0.8102891837535493, + 0.822275753082395, + 0.9063493353908739, + 0.8940962245248304, + 0.8518742230720019, + 0.6955985058972426, + 0.9128621121245818, + 0.7061740969914745, + 0.8218178824848577, + 0.7962006130058217, + 0.9196875417850543, + 0.9444950322722576, + 0.886584633502138, + 0.8238977164518833, + 0.5684696815479344, + 0.8555618484680693, + 0.8809507045482654, + 0.8414738441943742, + 0.9164651268187982, + 0.8691980036351165, + 0.8600166051388258, + 0.5990299190109138, + 0.7418808006126908, + 0.9300173459173584, + 0.9240308413437657, + 0.8983726564638228, + 0.8232289709597477, + 0.6079938852361129, + 0.8561450407819221, + 0.8721270488596928, + 0.7678698066543751, + 0.7496664813979808, + 0.8636105729330119, + 0.8989010644340998, + 0.7498921864323753, + 0.9504753113424327, + 0.8900521139302563, + 0.9333076986541872, + 0.9595675283793864, + 0.8510648621728643, + 0.9524514019342073, + 0.45412688103064003, + 0.5798053760174191, + 0.7596843910735385, + 0.8773478249564999, + 0.9205579140209242, + 0.7245041413452745, + 0.8116404128540773, + 0.8556843526699671, + 0.66858202837125, + 0.8322760787136838, + 0.6315884594230733, + 0.7457379172158907, + 0.5413416233225327, + 0.6448332378710034, + 0.8714224217549611, + 0.6499029092688781, + 0.5705860580052188, + 0.7873966244521542, + 0.70312803063971, + 0.7074661209366373, + 0.8425204412931729, + 0.8606147487943508, + 0.5959538839996139, + 0.658557160804853, + 0.8967885581610852, + 0.8727549154951617, + 0.7398780661823652 + ], + [ + 0.7200379791661691, + 0.7272456232002544, + 0.8485354251865572, + 0.6687000347727987, + 0.7102315137877722, + 0.747285059521881, + 0.8909301912995333, + 0.7697237353136002, + 0.7717106462343594, + 0.9176875024289386, + 0.9037327308180053, + 0.5579105297979953, + 0.6670586277809583, + 0.500351620026863, + 0.8221696277633435, + 0.6042366558049506, + 0.7286019939582935, + 0.862255703556722, + 0.6957119202235995, + 0.8772528208242707, + 0.8262315436422444, + 0.6540037559574399, + 0.8397140222349605, + 0.918304079530014, + 0.5359797921635555, + 0.6691248834874187, + 0.6820965801669358, + 0.8096586573284502, + 0.7803651729743533, + 0.5080524477122978, + 0.6872550477558096, + 0.709500219332678, + 0.7231057337436643, + 0.7295319998438091, + 0.8527397195842047, + 0.692559678864165, + 0.7975071312018233, + 0.10884034686221851, + 0.553037868155782, + 0.6808623079516897, + 0.7437246169375961, + 0.5391515581507849, + 0.22590614604826378, + 0.6801968034217184, + 0.764166378087602, + 0.8170699189092709, + 0.704842239494444, + 0.9101763039819263, + 0.763758954137711, + 0.5335337966186502, + 0.8083656606732472, + 0.5430087750368825, + 0.6080606462115031, + 0.6821438053383587, + 0.47050723488666174, + 0.598767805726074, + 0.716682263271029, + 0.5895148642860722, + 0.4590940028227841, + 0.6053396116460797, + 0.6638068516250915, + 0.7381982679526671, + 0.7091997913148789, + 0.6849780574753978, + 0.8303475817790086, + 0.7402512596532325, + 0.7504387755786032, + 0.7281366847840591, + 0.7153436237781087, + 0.6991682106021831, + 0.7400929013657377, + 0.7072670104102837, + 0.8108318922357177, + 0.6856896868530074, + 0.7352217060348842, + 0.6952905785083354, + 0.6563059147871447, + 0.475189290401135, + 0.8218116920486324, + 0.5436277751886518, + 0.7734353699730967, + 0.47704770679892117, + 0.5928274305691131, + 0.5299268429658581, + 0.7136354199618755, + 0.7430133236748134, + 0.7815456578532393, + 0.7467503611073332, + 0.51641606148551, + 0.5538572024620881, + 0.8033071198669469, + 0.8410771812642934, + 0.61226592351675, + 0.6848057882461684, + 0.758932864914616, + 0.5975092399743982, + 0.6253305724200849, + 0.5817652524330058, + 0.8617554214615571, + 0.8145062516415761, + 0.7470234883840151, + 0.6904891768000809, + 0.5922639203693387, + 0.6229292289928937, + 0.7622391976556395, + 1.0, + 0.6933936507810493, + 0.8337516527982084, + 0.5821664466113151, + 0.7299537617904057, + 0.6084123816621889, + 0.7992465488106539, + 0.7338753170934498, + 0.7314200646357859, + 0.5834672866612545, + 0.7170602813446323, + 0.6166162926972738, + 0.7988949375200737, + 0.75458882841432, + 0.7168492733197246, + 0.6549606117839076, + 0.5660739046932736, + 0.6995071268335299, + 0.7278701282161618, + 0.6423779349587881, + 0.6786374621443789, + 0.41340447701362, + 0.7506708613046313, + 0.6267436778434161, + 0.5323904540415958, + 0.7787230249622114, + 0.7765394347474679, + 0.7051763177752162, + 0.6641178907217365, + 0.9017330153921315, + 0.6843800337076587, + 0.7079340020418307, + 0.7610603702209027, + 0.45194653980663807, + 0.6918532487335299, + 0.6636798526826974, + 0.7426714865224294, + 0.6561064399278772, + 0.7574671716292309, + 0.5187455947942637, + 0.8986854763197716, + 0.5653020569507733, + 0.4841182697559162, + 0.40307985617006936, + 0.5793320947415306, + 0.6719677268294634, + 0.6528030938852658, + 0.682797511487651, + 0.739973511333529, + 0.7126258128427232, + 0.6349564483526886, + 0.4482203012824123, + 0.7861556521592028, + 0.7898405586296939, + 0.6969479465726209, + 0.7387623176863412, + 0.6659546038065042, + 0.8475012128169997, + 0.6523121663253061, + 0.7205833281475121, + 0.6255923403478929, + 0.6244042884809545, + 0.7109017077928025, + 0.6855369218273459, + 0.7048543407957577, + 0.738851349826469, + 0.7170335167280445, + 0.6841145031920765, + 0.4372518443180795, + 0.6428762131814418, + 0.3202337095210308, + 0.5849477935761553, + 0.5319337575090954, + 0.7998498359463434, + 0.6429304715458581, + 0.5346105883860031, + 0.6389107734916925, + 0.6083001520295181, + 0.7177738241107318, + 0.6845148958132387, + 0.8046108316402308, + 0.7518553592671652, + 0.7595384217854798, + 0.7091748465791431, + 0.6511000689738401, + 0.6275542071485204, + 0.629918992237296, + 0.6204913801718881, + 0.6061084915771008, + 0.4613529047734025, + 0.6359370482580216, + 0.8312244316328161, + 0.6746739390751441, + 0.4795883816876386, + 0.41777673891280903, + 0.7432411540869447, + 0.5798575900437014, + 0.578808649914949, + 0.4760404585813855, + 0.642687362060644, + 0.6643913622163815, + 0.6074356024775953, + 0.6452824027740213, + 0.5715527857114459, + 0.5368962425446542, + 0.7403674014220386, + 0.5979482535451272, + 0.615480363788296, + 0.8059615112704202, + 0.6914046363130161, + 0.3266509675477589, + 0.5206264145643639, + 0.6629764673666573, + 0.6104806675980786, + 0.572597702795101, + 0.6117100999751878, + 0.29408820044911554, + 0.555951897035559, + 0.703671336269732, + 0.49160460108534726, + 0.6035197148819355, + 0.5302485599647159, + 0.6002396829514912, + 0.8303348699255075, + 0.7897380756213751, + 0.6448103633089792, + 0.7310952768656804, + 0.6921188937131337, + 0.6406494806712347, + 0.717143073355437, + 0.25930755567082203, + 0.1721955559727659, + 0.45307528315522544, + 0.6127913038986569, + 0.5747114602080594, + 0.7243645153077313, + 0.4390446963241432, + 0.6134958940683826, + 0.43069886815933073, + 0.6492578870773216, + 0.4571223830799136, + 0.8732880752214089, + 0.22326461800993408, + 0.40462594639626387, + 0.7239209059167001, + 0.39778559434733346, + 0.4733541717015337, + 0.5823936553625036, + 0.7799339318620333, + 0.5701636949513088, + 0.7169859772777416, + 0.6197957405581926, + 0.44057368792552015, + 0.9155663478436612, + 0.6942198817127745, + 0.8259212750291532, + 0.5218565286136194 + ], + [ + 0.7545812818551698, + 0.573136455935198, + 0.6536528003356553, + 0.8263236954582355, + 0.9105700032782417, + 0.9005833771090506, + 0.6807442783719759, + 0.6696517984378718, + 0.7273558976993652, + 0.7161956497316111, + 0.6021034219403264, + 0.674227334587688, + 0.7225073368774229, + 0.8150798198655232, + 0.7657894611667192, + 0.8389089436664364, + 0.7161242575530993, + 0.7701093741704308, + 0.9017915603594961, + 0.8153247742154611, + 0.7899684226241365, + 0.8256396826630631, + 0.7609204154109132, + 0.822301109355771, + 0.5896327113919223, + 0.841125355736933, + 0.6553182878835747, + 0.6971991018642737, + 0.862765750649498, + 0.7190938310116916, + 0.7584804804499231, + 0.6153124953842621, + 0.7463731609633931, + 0.6016855355796125, + 0.8002962296075967, + 0.8602331471205822, + 0.7774602494595567, + 0.528157775403294, + 0.6545124949716432, + 0.7150878061430157, + 0.7474045806890302, + 0.6615104440859348, + 0.5339095621331865, + 0.702373652975178, + 0.7406698532376802, + 0.7462864659705598, + 0.7410068763725092, + 0.8351783589900958, + 0.7561313599995456, + 0.6773195483051816, + 0.7217794400035178, + 0.8570393057143342, + 0.8075017711683321, + 0.8223313946973009, + 0.633068344750878, + 0.756113699139131, + 0.8419470234195198, + 0.7461767815524654, + 0.7701481589412316, + 0.6740519843741813, + 0.731819194218142, + 0.8270194710359217, + 0.7213849231933286, + 0.7454374561435985, + 0.7528730518436275, + 0.780542343554304, + 0.8884769117730928, + 0.8542602748007266, + 0.7013701520973952, + 0.7356186560359438, + 0.865942069868535, + 0.8885649122303366, + 0.7302471904985455, + 0.7258456251258126, + 0.8222155668612211, + 0.742916183448766, + 0.7418608705357533, + 0.8094795120311618, + 0.7636461694462973, + 0.7327436294376309, + 0.8337065876154258, + 0.7486818496979459, + 0.5699558846287747, + 0.7647495076698563, + 0.7526815950427626, + 0.6797138096577646, + 0.8385985138216218, + 0.8926731275889879, + 0.8517696711617915, + 0.872145615237413, + 0.7520444117598006, + 0.8471544239762568, + 0.7779682236988446, + 0.8038916013972904, + 0.7967273479735353, + 0.7995092883768639, + 0.6127714555787149, + 0.8944004493020499, + 0.7558319012820149, + 0.7021469437225084, + 0.82953975567187, + 0.8062587705654671, + 0.744303531039148, + 0.9187232241976815, + 0.8114251834633667, + 0.6933936507810493, + 1.0, + 0.7954140679204182, + 0.7960002463773793, + 0.7438438614131954, + 0.7899428648083501, + 0.7538017018490969, + 0.6583349934103607, + 0.7880769740139606, + 0.797534887410634, + 0.868639499337612, + 0.7930386533425563, + 0.8254820174100561, + 0.6438195158565155, + 0.7935240102915287, + 0.8081326241018317, + 0.7460406402560302, + 0.7492273255716541, + 0.6612598480782923, + 0.7198158133531343, + 0.6906658210451934, + 0.7403815230131111, + 0.7763110649646379, + 0.7880850266503593, + 0.6572174104301625, + 0.7624955108600657, + 0.7297465474930706, + 0.6227557323935682, + 0.75807142796242, + 0.6282945136248983, + 0.7342377281319948, + 0.8491116167241659, + 0.7468032875535939, + 0.5261793800389836, + 0.7938747788050324, + 0.8520168620409224, + 0.7696015857535784, + 0.765510600617151, + 0.8436909480739696, + 0.7818894861762795, + 0.8790922598243538, + 0.8043309507572877, + 0.6131185386328795, + 0.5617749752443302, + 0.6924576771239176, + 0.8208090124594739, + 0.7790639888975798, + 0.7478529672248181, + 0.6817901668835364, + 0.8392110491032823, + 0.7802414457777114, + 0.601725496073732, + 0.8972469575335315, + 0.7829821763145393, + 0.8128215467502108, + 0.8413917405310073, + 0.7978553835674298, + 0.8403790468756367, + 0.6957052659082873, + 0.7304882724406335, + 0.7541428796491096, + 0.7264075049864837, + 0.8944656654487446, + 0.874432398844332, + 0.85587499534011, + 0.8152333004741857, + 0.8546053714155535, + 0.7182079442048619, + 0.6531046158165845, + 0.8016651984649891, + 0.5167176576610056, + 0.7576467413157266, + 0.7449523754938042, + 0.6866298617234193, + 0.7758978440455947, + 0.8142327635508955, + 0.8386235000522042, + 0.834972507961967, + 0.782197958233639, + 0.7314047096027075, + 0.7835385215083679, + 0.8084571032160377, + 0.7428345893839139, + 0.6596572437106614, + 0.7027253260215072, + 0.7506874148380546, + 0.6587522118297339, + 0.7618215500715648, + 0.7936147405735934, + 0.6925076835938101, + 0.5731125779821775, + 0.8632899757204928, + 0.7894499416267214, + 0.670818782258553, + 0.7221590492611456, + 0.8366168950702673, + 0.6410707681498348, + 0.6685207505230483, + 0.6408366935582975, + 0.7273136650367171, + 0.8381743406218588, + 0.8269303965282276, + 0.8471834959583825, + 0.7810894551436562, + 0.7632932977050222, + 0.7206947186209673, + 0.6448837691199558, + 0.7158372934175079, + 0.8223677323573879, + 0.7894003971891207, + 0.5939882795317176, + 0.7160417811160645, + 0.7214647998374487, + 0.6790677906005749, + 0.7901504283944448, + 0.5977329334999777, + 0.4884774478327673, + 0.7835839427269213, + 0.7778189730407952, + 0.7456486447885099, + 0.712762331429706, + 0.7320756343067317, + 0.7458919282163934, + 0.5880603908699746, + 0.7711690172475787, + 0.880251435879935, + 0.7477027693361422, + 0.8515500138525057, + 0.8049167308038112, + 0.8726763152420797, + 0.5666405005503433, + 0.4234692381837809, + 0.6431465793764586, + 0.8060105119593408, + 0.7594191574126199, + 0.7050411110897733, + 0.7653661071927942, + 0.6888639641579865, + 0.7516092147254582, + 0.6633694117671228, + 0.6428834415064305, + 0.5994664358646626, + 0.5541171503745695, + 0.6166739568879301, + 0.7012439983163083, + 0.5512745357112618, + 0.7247839376216512, + 0.8814774190013067, + 0.7690114181782147, + 0.8591147141369854, + 0.6519134595093077, + 0.7361240297115424, + 0.5644093014392781, + 0.5789153344773716, + 0.9050936585881807, + 0.7209990992444787, + 0.6727872367675284 + ], + [ + 0.8797308857795821, + 0.6951291862640593, + 0.7594137533172987, + 0.7446209436207001, + 0.8458786749488055, + 0.7489346565963834, + 0.7309076730542571, + 0.8909555197825039, + 0.7872045435730282, + 0.8702136800715536, + 0.8011355496922832, + 0.7207242708372679, + 0.7857878641050959, + 0.6618547788537851, + 0.848637321646989, + 0.7425944983805683, + 0.7379774985281968, + 0.9087165525208479, + 0.8542671597189601, + 0.8355141879366375, + 0.9119566612255513, + 0.766263360156196, + 0.8361498395270763, + 0.8544476110305168, + 0.6597181139963975, + 0.797023442899557, + 0.7822086903593377, + 0.859352893804989, + 0.8049727656579427, + 0.626591641495637, + 0.8100925486346556, + 0.7377216006159054, + 0.8118807367147648, + 0.8161799741596806, + 0.8801954670198492, + 0.8790307217017237, + 0.923568367912414, + 0.4786109892138142, + 0.7254805058105049, + 0.8855668807183599, + 0.7905253288854126, + 0.668634007719826, + 0.42733137149634803, + 0.7693050361237116, + 0.7936681745150403, + 0.8565725551198453, + 0.9293480644348913, + 0.8952063137748241, + 0.8716949645655204, + 0.8445888562077731, + 0.8909780702516534, + 0.6910624307669054, + 0.7622535277961466, + 0.7710201107412705, + 0.6799885896911273, + 0.7654311863484795, + 0.8434381550521487, + 0.8746277873749497, + 0.5315710590929201, + 0.8423143651588112, + 0.7556330987047031, + 0.9170148785077021, + 0.7628301235673647, + 0.7988776753501715, + 0.816688742234497, + 0.7561737900636183, + 0.8442216872244306, + 0.9158534331711723, + 0.8213861530786278, + 0.8307726459915823, + 0.8968720638884753, + 0.6988470845571672, + 0.8446755048030998, + 0.8905802409035801, + 0.8535876660511837, + 0.8425061475228185, + 0.8229133633701565, + 0.7219292214737552, + 0.8478080387941093, + 0.8133837953300861, + 0.8431633325891472, + 0.6145104510236907, + 0.8385771546969977, + 0.8139892256623967, + 0.8516028411004418, + 0.8799825184730338, + 0.8820713081859954, + 0.7883634738151457, + 0.6893999656819098, + 0.7213411774419276, + 0.8832406890935066, + 0.9304389444018797, + 0.7890378976205702, + 0.8853953350225952, + 0.8846823119575093, + 0.8093064453034915, + 0.7400210694109742, + 0.8124488672986088, + 0.9149726779105228, + 0.8288389983186533, + 0.8976965533417255, + 0.8802230639887625, + 0.806174860371578, + 0.8446385236868401, + 0.8919613887120779, + 0.8337516527982084, + 0.7954140679204182, + 1.0, + 0.8097581636576462, + 0.8956657015537549, + 0.9005371045508322, + 0.8320504193110119, + 0.867721154152209, + 0.8678728585902317, + 0.8524522211774177, + 0.882975940393511, + 0.8954357305762313, + 0.9001767298282898, + 0.7765602992525542, + 0.888971491064246, + 0.8502104197218702, + 0.8584635228325691, + 0.9306666651321069, + 0.8213169476358425, + 0.8491886614893397, + 0.8761510117039084, + 0.5701053669405147, + 0.8705643173871888, + 0.7159452304022261, + 0.7681990595757949, + 0.8433869015406981, + 0.8304802027319105, + 0.76816966769616, + 0.7793103513334451, + 0.7949704433600759, + 0.8957645533572943, + 0.9113428611785557, + 0.8217855066269413, + 0.7210078183164734, + 0.8638496609549912, + 0.8756276046200361, + 0.8968545735411746, + 0.8400625848712489, + 0.8852083265582759, + 0.6615922345638567, + 0.8812325777903398, + 0.7450116989405569, + 0.7634064016771233, + 0.651698512977816, + 0.8412612463377754, + 0.9078992693191413, + 0.8958641027634476, + 0.9144599291321429, + 0.9194228624635874, + 0.8768056877791212, + 0.8723428147732978, + 0.7790267091406834, + 0.9408974801831879, + 0.9364158551106235, + 0.8979391215410029, + 0.9486430834467571, + 0.9159976785157218, + 0.9576582451104378, + 0.8672286296892912, + 0.8733935011754108, + 0.8648004745788126, + 0.8945876654178724, + 0.9158815782579329, + 0.922931184561943, + 0.9088180835517424, + 0.9235455297961477, + 0.9377955958434518, + 0.7680044525686601, + 0.6643234137721724, + 0.8831577540966287, + 0.6512013001949096, + 0.8875625126392849, + 0.7413268096614893, + 0.8717863449478501, + 0.8894130386737327, + 0.7122019266107968, + 0.8834562931552827, + 0.8973402021546995, + 0.9081260005770947, + 0.8912983947782827, + 0.9006105538852502, + 0.8927872746047514, + 0.8796693738755788, + 0.8339290945696444, + 0.8254114886137162, + 0.8274542119389418, + 0.811908150626314, + 0.8259504673508483, + 0.8348790333566245, + 0.7666431416071784, + 0.7978357818766603, + 0.9713006890820346, + 0.9225818410132496, + 0.7410917768864269, + 0.6833889182479157, + 0.9371168920625823, + 0.751236732898238, + 0.811776655840701, + 0.7733102725216526, + 0.870205667980239, + 0.881478667974678, + 0.7902214281505708, + 0.8276830173319462, + 0.7347851569712495, + 0.8254998256105112, + 0.873535540264653, + 0.8236982551683376, + 0.8728049615096818, + 0.9504406404670044, + 0.8450875120630119, + 0.5442759132700792, + 0.7873405072972006, + 0.9015276668105325, + 0.8518994707725367, + 0.8523561001251948, + 0.7736630045800994, + 0.6331353382696098, + 0.8433496880825356, + 0.8917920250991436, + 0.7959347357597165, + 0.7578451957154292, + 0.7811071874251241, + 0.8624088500707674, + 0.8405906913678042, + 0.9221402778682931, + 0.8918570559517512, + 0.8987365934846254, + 0.9079237375382954, + 0.861943831765124, + 0.9001112850331049, + 0.5901134665224316, + 0.4629941088645379, + 0.7718076807786628, + 0.8815554739826408, + 0.8650905152382521, + 0.8274016223035328, + 0.7701892573237351, + 0.7191507385649487, + 0.6855912850620204, + 0.8294696550607306, + 0.708219268363738, + 0.803859105772745, + 0.6016466270708599, + 0.7209633059663846, + 0.860000358798069, + 0.7472951646176575, + 0.6051845280423986, + 0.689206720699156, + 0.7639202946016413, + 0.6670773671869494, + 0.8134283591147836, + 0.8167318252201081, + 0.6495281001361382, + 0.7685714006093376, + 0.9163238874604868, + 0.8908650402319752, + 0.670459047915745 + ], + [ + 0.6483046697378598, + 0.502060796932667, + 0.5252872054647387, + 0.80757803659982, + 0.8280388270722998, + 0.7307955556372567, + 0.525190086081937, + 0.6837664610010643, + 0.6212489519928464, + 0.674199848825389, + 0.4979255987817716, + 0.6767294439898703, + 0.7375504250557932, + 0.721973235063508, + 0.7601606135253063, + 0.8162946920951483, + 0.6298917414026984, + 0.7052722150525593, + 0.8498026225855272, + 0.7327236024586383, + 0.7464143479603232, + 0.7262310668877054, + 0.6929908833181474, + 0.7150891416609637, + 0.6410570915714875, + 0.7951960624811287, + 0.6913118280382363, + 0.6724109899074199, + 0.7645504109396926, + 0.6227736589842745, + 0.7662819920663017, + 0.72025038105747, + 0.62769968730049, + 0.5922558461283781, + 0.7634595895176381, + 0.8043219302292681, + 0.7469131218239516, + 0.5598689140639891, + 0.6260212111513332, + 0.7648924474014057, + 0.5968952977134108, + 0.6550440881312252, + 0.4953938869151551, + 0.7146175580816817, + 0.702659119675546, + 0.7977412502969341, + 0.8072006005763331, + 0.6852252497632186, + 0.8002988601772594, + 0.7608095962189614, + 0.655626418933175, + 0.8100500177933934, + 0.7728583220431058, + 0.7076083509606541, + 0.6205194250612233, + 0.6480135606153444, + 0.7338009028911057, + 0.8089341391424429, + 0.8134420244939872, + 0.7277750764054521, + 0.6416975214238171, + 0.8556364881825628, + 0.6628606921988521, + 0.7754269043711605, + 0.6031406612664193, + 0.7104605391612437, + 0.8174427446747415, + 0.8219897441132049, + 0.6251343516458999, + 0.6625439543671351, + 0.8556517959920396, + 0.7712833612841408, + 0.7008030155774458, + 0.7842300307776334, + 0.7838519359385236, + 0.761284071823352, + 0.7545664149610043, + 0.7994094377071628, + 0.5627477892863778, + 0.7735257263768157, + 0.6735130240833893, + 0.8289668656329489, + 0.6747281999331957, + 0.8497724724690245, + 0.7666404044668004, + 0.732366665056331, + 0.8132025721193288, + 0.8535399546199147, + 0.8046473432269521, + 0.8320225450580057, + 0.75789174741422, + 0.7574583972195844, + 0.8399561161649891, + 0.8635054590623986, + 0.8878426521293856, + 0.8094151054244613, + 0.707315179195949, + 0.9093655695215545, + 0.7049020517675931, + 0.6000844821198897, + 0.8398854555791256, + 0.832932622085031, + 0.7750417112802431, + 0.912745629723974, + 0.7866527032733982, + 0.5821664466113151, + 0.7960002463773793, + 0.8097581636576462, + 1.0, + 0.830951348106532, + 0.8492402380997616, + 0.7396243193288286, + 0.7351830849560615, + 0.7979723258387873, + 0.885887492555657, + 0.8859094186307146, + 0.8119154745374243, + 0.7800950723248266, + 0.7864118010155399, + 0.8246004449070171, + 0.8838142493674176, + 0.8561087009502669, + 0.8729081415692425, + 0.6735931343635116, + 0.7908468529581231, + 0.8402715595870427, + 0.7512096724027637, + 0.7967025793800535, + 0.8173022392894642, + 0.784764439688023, + 0.7627734546550459, + 0.8409087380689122, + 0.6851932638909526, + 0.8244914966979489, + 0.5304916365872913, + 0.8035550341382889, + 0.8903698100602173, + 0.7327927474114975, + 0.7218823874831659, + 0.864596086570701, + 0.862485047765425, + 0.8375395070842436, + 0.8032509011152764, + 0.8316347709721011, + 0.7315958223224863, + 0.7451610128731475, + 0.8779999218868579, + 0.8019323842135253, + 0.6814936616505262, + 0.7148079841629169, + 0.7629722913404571, + 0.8181779760615083, + 0.7832596736435001, + 0.7165100607197084, + 0.8712199862359176, + 0.9026040052778213, + 0.7800450459038493, + 0.9071313437994546, + 0.7821355056225561, + 0.7980147474756311, + 0.8753024268596215, + 0.8512759762423601, + 0.8530776060362584, + 0.7770952529697945, + 0.7681637384958209, + 0.834548281633647, + 0.8139433784674266, + 0.9002785605360918, + 0.9161201065445733, + 0.9117003182918247, + 0.9026667011806689, + 0.9003872745526968, + 0.7986120969911157, + 0.7073719054736987, + 0.8708879513676995, + 0.6768527661724424, + 0.8696829717632792, + 0.7648732277919934, + 0.6566705108348405, + 0.8911681717528558, + 0.8037725337183398, + 0.9048887926964898, + 0.8534546545473958, + 0.83430214190107, + 0.8133997849761992, + 0.7908335994515605, + 0.8458079266349746, + 0.734010070128778, + 0.8012440489470082, + 0.6837462271044289, + 0.7804752679554489, + 0.7243204915780829, + 0.8250035731773453, + 0.8150528626185976, + 0.7990891123866632, + 0.7516446592086519, + 0.8520413800604795, + 0.8791422247651708, + 0.7395992123821173, + 0.7497296951716186, + 0.8729505971768967, + 0.7663698474411732, + 0.8687154025929708, + 0.7809297524775978, + 0.7733837542478746, + 0.7843112547559212, + 0.7800742302505848, + 0.8692664402464528, + 0.8655161809278051, + 0.8880723214106334, + 0.6987142279045155, + 0.727447970057125, + 0.7915971703897713, + 0.9013401246110209, + 0.8676003565130884, + 0.7098820511299098, + 0.8362500284554868, + 0.8131481165229799, + 0.7582706783030103, + 0.91571850358369, + 0.7674761097087012, + 0.6162735305300602, + 0.7709064485184703, + 0.7920523540654386, + 0.9102443270572018, + 0.718406345942452, + 0.7610447919599806, + 0.7197696495505862, + 0.6453767499948923, + 0.7672606461920121, + 0.8649414584975723, + 0.8325964292406216, + 0.899168918466247, + 0.907289240985106, + 0.8099409228358719, + 0.5515180393063287, + 0.6295606470752133, + 0.731348054563853, + 0.7972878352997422, + 0.7737421464447818, + 0.5584959686539789, + 0.7805365719979617, + 0.5943284307083425, + 0.9488979870890273, + 0.7190130169644626, + 0.6249987721932365, + 0.49043057379801736, + 0.7508269151233207, + 0.7220236219082996, + 0.6497591823801597, + 0.7111982247292253, + 0.8928424852651858, + 0.8327894743421479, + 0.6607170333331016, + 0.8218430809062833, + 0.7126737701051543, + 0.896474994216691, + 0.7055482650856436, + 0.45796642813837385, + 0.8993110293705883, + 0.8082591113309595, + 0.7638692082902109 + ], + [ + 0.7518406977020196, + 0.5823536928751649, + 0.7898853556146737, + 0.7176449337248934, + 0.755152200175188, + 0.7190330147303984, + 0.5888635363485165, + 0.8570815516716377, + 0.5970040954457273, + 0.7730877220475838, + 0.6403625884945525, + 0.683900182745927, + 0.8205894791245352, + 0.5847816933778053, + 0.8656400188472267, + 0.6266216572805693, + 0.6623292730302266, + 0.8142095249565331, + 0.7436679108914831, + 0.830741094461517, + 0.8687275675172633, + 0.629860302564115, + 0.8787919099189643, + 0.7188818187034116, + 0.5869890719480478, + 0.742784904758757, + 0.9298611099351426, + 0.8755925346185709, + 0.6494106186823527, + 0.5126776266716172, + 0.7815547459381686, + 0.6861001554883759, + 0.7552535656596254, + 0.7349917641016028, + 0.8875544265601737, + 0.7880485108784883, + 0.8506077040651604, + 0.38785948615276056, + 0.6341205789785928, + 0.851162075358525, + 0.8082320855305737, + 0.7191850018950302, + 0.4201002269165513, + 0.8131737434159156, + 0.8972590350079628, + 0.8274422344953061, + 0.9244199367822491, + 0.7869854184143003, + 0.89114227311268, + 0.8510489163773919, + 0.7854196677356071, + 0.6793888550258427, + 0.5925915406615291, + 0.6588206807044951, + 0.5118595844719707, + 0.5931901252750374, + 0.69770777347758, + 0.8731986069675646, + 0.6431976449140135, + 0.8410404075627035, + 0.5562516773528698, + 0.9412947926601343, + 0.6464194594547392, + 0.7210963436367988, + 0.8495649713313072, + 0.7181056876240095, + 0.7820523479121355, + 0.912239250965938, + 0.7104507865220979, + 0.7021464642587558, + 0.7803112564967766, + 0.6409644964651123, + 0.8489134007451905, + 0.8503335220244309, + 0.855694973726104, + 0.947964730540328, + 0.9562815981906324, + 0.7345894724760087, + 0.7268907582058329, + 0.8614885311011687, + 0.6906542679638203, + 0.5398191429683687, + 0.7692216327686259, + 0.9104895751920687, + 0.8456715873835132, + 0.8085314048574661, + 0.829800234119872, + 0.6959038843698558, + 0.5898797947577548, + 0.6984153428957419, + 0.9085815783972122, + 0.8903711633642093, + 0.8753871655945312, + 0.9051912371064098, + 0.9432850123620613, + 0.7442250770109494, + 0.7459785277748849, + 0.7240173083162167, + 0.8445474985044463, + 0.7235692352729927, + 0.9242091041183316, + 0.7756104220946558, + 0.7590999147509476, + 0.7701315286749729, + 0.940425466925667, + 0.7299537617904057, + 0.7438438614131954, + 0.8956657015537549, + 0.830951348106532, + 1.0, + 0.8932821741285902, + 0.8177395388717571, + 0.8908703230739151, + 0.8463715387211016, + 0.8677445954579028, + 0.8755755245799764, + 0.8894245258858166, + 0.9012614265851162, + 0.8383763479936799, + 0.9142619673515208, + 0.9251214098988543, + 0.8882633749522864, + 0.8959973927536058, + 0.6937662332011105, + 0.7889887871125244, + 0.792887297503589, + 0.49053450799493137, + 0.9204089106177076, + 0.7271679778071172, + 0.870076914569803, + 0.7853579781075939, + 0.7562562868784183, + 0.6032568940652315, + 0.6980960228008578, + 0.7249977285526691, + 0.8850666401287131, + 0.8729717659471937, + 0.8742241824734103, + 0.8398538543954482, + 0.9506464374405817, + 0.8681422293441121, + 0.9696575813867946, + 0.9274714067822274, + 0.8873359727655041, + 0.5289092146985898, + 0.8776188787063105, + 0.8847908608366374, + 0.8107745806033461, + 0.6387235854484967, + 0.8715515625070904, + 0.8690748642840932, + 0.8482229217496762, + 0.906648388989867, + 0.7636278451163918, + 0.9015757628656638, + 0.949450077922447, + 0.8276670979357312, + 0.873106553970549, + 0.7978987738600876, + 0.8651233500558632, + 0.923749244782988, + 0.890199056034775, + 0.9229551098530887, + 0.9326957703379904, + 0.9619910784906516, + 0.9315381404265727, + 0.9251370148934374, + 0.8810185971660884, + 0.9118975988082311, + 0.9412161396002966, + 0.9331191415564366, + 0.9122151797715109, + 0.7915797603936121, + 0.7990090394038397, + 0.9317848385778877, + 0.5720761102021856, + 0.8693710084107527, + 0.8706593164239865, + 0.7731761398321886, + 0.8833787833082264, + 0.6575005693632676, + 0.9203478567327518, + 0.8724824707964841, + 0.977718737589155, + 0.8931293106220116, + 0.9253611934826416, + 0.9009173129320119, + 0.9025862760274157, + 0.8652286649505517, + 0.8671609557351981, + 0.927768999246201, + 0.9452480149776099, + 0.9053203558221006, + 0.9347124022383518, + 0.8944888714018387, + 0.864452309581488, + 0.9130124184873688, + 0.9170052356082669, + 0.9173552978280863, + 0.6913608767020131, + 0.9229093716683521, + 0.7215208061061062, + 0.8345920620049205, + 0.9200030020852078, + 0.9379007643897047, + 0.9273528493215737, + 0.8630838695071169, + 0.8798494408683224, + 0.6617488743903478, + 0.9154472315623137, + 0.9019394140312246, + 0.8897173774593728, + 0.9330481850162751, + 0.9155634465616129, + 0.9414533934194177, + 0.6677023832817381, + 0.7899133890066729, + 0.9483867660255623, + 0.927872784300611, + 0.9290668305854558, + 0.9069389225850024, + 0.6847718826723204, + 0.9123181866143653, + 0.8901461396885045, + 0.776481887416212, + 0.8030637798170468, + 0.921926630282092, + 0.9051029158274718, + 0.6791581667381639, + 0.9124353881733724, + 0.8830537438557702, + 0.973631664638589, + 0.9488597153967321, + 0.8978518559716708, + 0.9343299179917863, + 0.49484094878619295, + 0.6206288704311999, + 0.8278158472406741, + 0.8709899640417742, + 0.8955889662558433, + 0.5758510624311414, + 0.8710533295368706, + 0.8912282840657731, + 0.7466524371657767, + 0.8652225616493139, + 0.5605756066488321, + 0.6590820797575502, + 0.6380800848759368, + 0.7096134132500348, + 0.8897584616428634, + 0.7476691539007793, + 0.6657470753300094, + 0.7425671524350241, + 0.678082017031761, + 0.6555988216765672, + 0.835811552251795, + 0.955651642665573, + 0.6177115883460113, + 0.5638501424630481, + 0.8540439100332501, + 0.9342664361353002, + 0.6975200703903315 + ], + [ + 0.8317630476416008, + 0.5263597261776212, + 0.590965762590678, + 0.6289720077193505, + 0.8047888214071527, + 0.7084061611610655, + 0.49221417571391585, + 0.8058668689736657, + 0.6064227413666594, + 0.6905695142869078, + 0.5932669400291706, + 0.6938646210363723, + 0.7196557172928725, + 0.7322155401330236, + 0.735860530033632, + 0.7091341341769901, + 0.6762466478507716, + 0.7640800798787808, + 0.814940754040775, + 0.7123903969975167, + 0.856743412688816, + 0.7175577780768336, + 0.735273887887667, + 0.6838627855002128, + 0.5941318708934896, + 0.7438497447350919, + 0.7818667175058107, + 0.7556275003263148, + 0.7112927752084393, + 0.5790713111035446, + 0.7661430462015094, + 0.6271897021595529, + 0.7505481125873349, + 0.7484390497072463, + 0.7482618343884588, + 0.8715118064599336, + 0.89939638137138, + 0.4650564854185747, + 0.6694711727562788, + 0.8569524621991744, + 0.695361736708173, + 0.5839608472262069, + 0.4788343732207549, + 0.7322977751163599, + 0.7036722456168647, + 0.7759071380405864, + 0.9466364284842053, + 0.7278635412907689, + 0.77154002371786, + 0.9278548180721982, + 0.797492525493856, + 0.6787890523429736, + 0.713710357613487, + 0.7514215595265485, + 0.6960077244950091, + 0.7515421485376858, + 0.802102767648025, + 0.8730348093741833, + 0.5458415695280852, + 0.9093469890306993, + 0.644503827511512, + 0.8929381486795236, + 0.626696868110862, + 0.7645908861846299, + 0.669268021607274, + 0.5749602353443226, + 0.7658167679165733, + 0.891089368720701, + 0.7841942139067655, + 0.8080932637816757, + 0.873781650132844, + 0.6319582062705363, + 0.7322150510705232, + 0.8608340255084741, + 0.8292668800325207, + 0.8454530907893797, + 0.8341000177968682, + 0.7461367262302454, + 0.7272216284492268, + 0.8355339450007214, + 0.772316833339001, + 0.592403011529331, + 0.8135009937018961, + 0.8869913474460743, + 0.8313539636227651, + 0.7948583473164439, + 0.7941579064379868, + 0.6670716371785572, + 0.6663781938697229, + 0.7114927872780651, + 0.7819448041405261, + 0.8678355912986015, + 0.8079143181025552, + 0.8894942144846558, + 0.875238349306506, + 0.772722742633767, + 0.6983391817356156, + 0.8269912170366598, + 0.8155136617336706, + 0.7332772925699864, + 0.8954774003714437, + 0.8363175835831557, + 0.7148181480713384, + 0.8735686306016437, + 0.8949322332263797, + 0.6084123816621889, + 0.7899428648083501, + 0.9005371045508322, + 0.8492402380997616, + 0.8932821741285902, + 1.0, + 0.6982605040158708, + 0.8056880834495748, + 0.8212334823932379, + 0.8887584036074648, + 0.8356906974598801, + 0.9698062584966958, + 0.8498558750140075, + 0.680678778162231, + 0.8947179233918934, + 0.91666892373941, + 0.8997277456551184, + 0.9166508062802982, + 0.7173067635096918, + 0.7378580135903542, + 0.7774868899077275, + 0.5400897019510529, + 0.8479277451458871, + 0.6244614262137534, + 0.8127249087899364, + 0.6902085106602832, + 0.6821589940405821, + 0.5575253018849785, + 0.6638048184786056, + 0.5697655642303923, + 0.8977649111257088, + 0.9598973176785567, + 0.7497249246242899, + 0.8571837281134546, + 0.8870306603568786, + 0.8959493663281862, + 0.8717820534223151, + 0.8634092476006641, + 0.8822420295371771, + 0.555390219722141, + 0.7649943380171179, + 0.8274488001746411, + 0.8281470835254673, + 0.670659201269387, + 0.9463899699302968, + 0.9517353745281908, + 0.958774114507857, + 0.9303584430429319, + 0.7574051571154015, + 0.8642172589277021, + 0.9342164146625663, + 0.9210028422879846, + 0.9228426459561586, + 0.8868763802430435, + 0.9012646827239827, + 0.960123170632964, + 0.9737212280399111, + 0.8889712111809667, + 0.930756335992953, + 0.8900637189974294, + 0.8944359848785519, + 0.9779752697970466, + 0.9086883318325173, + 0.9455927685730332, + 0.9014396175575558, + 0.9196379987144727, + 0.9571562912201074, + 0.6870206492074674, + 0.6970432983003553, + 0.9207877459152248, + 0.7458420823823078, + 0.9777226172173887, + 0.8299909823346983, + 0.801253754787016, + 0.9307740644346871, + 0.7374633052533935, + 0.9557516665083094, + 0.9843438370838861, + 0.9136852469209065, + 0.8445998398674248, + 0.8389155068199252, + 0.8617517607664923, + 0.8300263889128637, + 0.7273343317855023, + 0.8476676346138181, + 0.8719513630435577, + 0.8267951665577637, + 0.8574820193675509, + 0.9223696483612908, + 0.8799044132724317, + 0.8014487234560502, + 0.892699888215598, + 0.9473905241417989, + 0.8179360555213082, + 0.7580500745829755, + 0.960556765752076, + 0.7013831988654458, + 0.8560062218333673, + 0.877594949505934, + 0.9071763004126036, + 0.9101562818627128, + 0.7819910539540414, + 0.8151474307758846, + 0.699587298995425, + 0.9136982476684279, + 0.8619689846769321, + 0.8874086499090205, + 0.9546039751415019, + 0.8878732840208587, + 0.83343763106458, + 0.5271725424157246, + 0.7595872834400212, + 0.9253789326505556, + 0.9150345354117848, + 0.9235390065521264, + 0.7810648017017876, + 0.7965160318323098, + 0.8999611386576906, + 0.9078644284589273, + 0.8729069125019763, + 0.6862646492618676, + 0.8583256462205483, + 0.9206717460364295, + 0.6932475081662657, + 0.888927441253913, + 0.9580664960861869, + 0.8902009487608246, + 0.9339950717245096, + 0.8539701817414918, + 0.8963193517823334, + 0.6519653429672979, + 0.5131247980667645, + 0.8504055434005902, + 0.9270135902812536, + 0.9478383858920523, + 0.736852456385577, + 0.8890568961227008, + 0.7482727618184696, + 0.7542885642990406, + 0.8516711315815579, + 0.7027172369394599, + 0.6402946582786944, + 0.7626106949467627, + 0.8693147069017848, + 0.8075815029366374, + 0.8467868383567402, + 0.62736487714694, + 0.6741665147728858, + 0.5428993246907335, + 0.6838989650774744, + 0.7111229734785225, + 0.8573966102796395, + 0.6642784154831671, + 0.5393160331834813, + 0.9474132054111678, + 0.8124042270956155, + 0.7321824393535471 + ], + [ + 0.6704530250963063, + 0.5112213807058555, + 0.7025829491849447, + 0.8478839610849263, + 0.7209695082459141, + 0.680120983024557, + 0.6735541747659848, + 0.71542381788807, + 0.7529909215472356, + 0.8342432481961644, + 0.7123898711405574, + 0.5279723478800761, + 0.6372211329535219, + 0.5757280493392419, + 0.8888317278999207, + 0.7115561884614484, + 0.7205728385220234, + 0.7471146301685717, + 0.749989627685836, + 0.7726314479422121, + 0.8041298543201384, + 0.72787732972069, + 0.7535107253696558, + 0.7620851753100335, + 0.6429125341471751, + 0.7005697127864576, + 0.66302760357537, + 0.7993716959565879, + 0.7243042293095716, + 0.5356682068910231, + 0.7259111969869801, + 0.5986791998486859, + 0.676060820044183, + 0.6573715095267334, + 0.8505402061528455, + 0.7425393096331336, + 0.6934689118520311, + 0.3604170029869205, + 0.5969617726045087, + 0.8351745714774294, + 0.6549697677778686, + 0.5865992022618082, + 0.35154361453313626, + 0.7786415425959398, + 0.8320902135984609, + 0.757733435484641, + 0.7787968632191519, + 0.8262731663818674, + 0.8179804361197471, + 0.7409020337420297, + 0.7941893666910547, + 0.7133840579434184, + 0.6935732011080541, + 0.6098949664553741, + 0.4784205803613013, + 0.5944036363842401, + 0.6910029805808965, + 0.7213851092607146, + 0.6970187199664025, + 0.6268429402327163, + 0.7440816645111177, + 0.8713337554811215, + 0.7395051710632831, + 0.758319411790815, + 0.7633764569301268, + 0.7536310734582968, + 0.8084184294158808, + 0.8229882572735386, + 0.4621689580399371, + 0.5004100368246567, + 0.6583616265110942, + 0.6850557033147752, + 0.8118083014858993, + 0.7781393100983987, + 0.7139706615364132, + 0.8255154474135987, + 0.7914252479718612, + 0.629634434575553, + 0.7246035290980473, + 0.7339004077671641, + 0.5564652654779457, + 0.6917308420953383, + 0.660096032082805, + 0.7866369781353443, + 0.744261472593075, + 0.6942913338248426, + 0.8171849802432428, + 0.8193296880505264, + 0.7440944991747089, + 0.6107654123919811, + 0.8112683634106793, + 0.7686157816979781, + 0.6356175389254367, + 0.6625703128058523, + 0.8118857176305659, + 0.7588652961636625, + 0.6389092439660761, + 0.7194456747994383, + 0.7086296535377229, + 0.5461194571666328, + 0.7031841114412102, + 0.7970875523316471, + 0.8441722601592356, + 0.7366351655126094, + 0.7334490173837425, + 0.7992465488106539, + 0.7538017018490969, + 0.8320504193110119, + 0.7396243193288286, + 0.8177395388717571, + 0.6982605040158708, + 1.0, + 0.7483143096646635, + 0.7368294677259465, + 0.768141628134861, + 0.8202780996165553, + 0.695150753503405, + 0.775948270577013, + 0.9115233804592318, + 0.8058738915295706, + 0.6854774625821719, + 0.7516860970373733, + 0.7464680046945047, + 0.7513939233290097, + 0.8555922025733466, + 0.8623884029700699, + 0.6733091553609849, + 0.7158664711806658, + 0.7774052204751938, + 0.6268793860358036, + 0.9704079243843977, + 0.8702953395182615, + 0.8663941730024067, + 0.9180855464254757, + 0.7190998186964068, + 0.7399132594395944, + 0.7631625999486286, + 0.8480253720203182, + 0.6429143475654009, + 0.8379659700343977, + 0.7983846688850049, + 0.839104589964313, + 0.7685060590696846, + 0.7842583526473837, + 0.6600126058669772, + 0.8501281646558956, + 0.7023273233237833, + 0.6484501079352091, + 0.5886225264216007, + 0.5657068382011855, + 0.7371682089784772, + 0.7016025432491104, + 0.7473127519767089, + 0.7617169887054807, + 0.8261136122638776, + 0.8215285157094483, + 0.6643269651992645, + 0.8545663082332214, + 0.8157427551214084, + 0.8005549489680643, + 0.7926464828802834, + 0.7254975438135827, + 0.8798933594816047, + 0.6582333000269975, + 0.745669548981592, + 0.7435649512538228, + 0.6831357521155956, + 0.8813474221914596, + 0.8110522380412626, + 0.86383216394395, + 0.8433437041773781, + 0.794579487184652, + 0.8431672631072414, + 0.5686315572523667, + 0.7934830832790157, + 0.4825808633259183, + 0.7459423953423165, + 0.706110405028942, + 0.635708140070691, + 0.8125069404875881, + 0.6832770247102568, + 0.7461140934440031, + 0.7052490990740332, + 0.7977893217450639, + 0.672971828733658, + 0.8576705943793059, + 0.8374395163591797, + 0.8126141251004476, + 0.9347018036651435, + 0.6758172713324802, + 0.7789893497842628, + 0.7335000272849346, + 0.7868412019932304, + 0.7141858821644674, + 0.7338790601432329, + 0.6754172482633871, + 0.8462439243966406, + 0.8059885151678807, + 0.6839053529885075, + 0.6189011402720285, + 0.7905334388150013, + 0.7272602386552602, + 0.7077070282060146, + 0.7167976249781222, + 0.7906170801498298, + 0.7523672630260657, + 0.7374767579449352, + 0.8582231985846774, + 0.7770042107465821, + 0.729669730218414, + 0.7291657035513709, + 0.7336832168931101, + 0.6684079639771879, + 0.90101635285155, + 0.8599938683188614, + 0.658076289293735, + 0.7416025228695283, + 0.7975972142853027, + 0.6818251725067189, + 0.7475811380371689, + 0.6452205212159966, + 0.48557305360713765, + 0.7460707764545803, + 0.8130488114294339, + 0.7252566658665576, + 0.8710766543938752, + 0.7246919269206342, + 0.6468149959891014, + 0.6486581643289767, + 0.8006320975224808, + 0.8135394718588036, + 0.8098783963667264, + 0.7973907810891647, + 0.8257989225339974, + 0.7940737460946855, + 0.3791130026102135, + 0.4635665740180145, + 0.6412841176531258, + 0.7572338009368785, + 0.6818465829677355, + 0.5428135260026669, + 0.6606988400664117, + 0.6678938655170639, + 0.6700588811518848, + 0.7172073942304995, + 0.6288213772715324, + 0.6099791891187334, + 0.5992808946908897, + 0.5830809915423943, + 0.6765267737396831, + 0.6115124766168292, + 0.6575339494779039, + 0.6888624911876133, + 0.7181151684083071, + 0.6487037595527051, + 0.7924366926171609, + 0.8251782260865833, + 0.6311829835315306, + 0.6296427098135365, + 0.7775470384207809, + 0.8550727125755686, + 0.5844916878854863 + ], + [ + 0.879711441966169, + 0.7501499845442952, + 0.8368878789793611, + 0.6041087507886514, + 0.69231255075932, + 0.6776616705038464, + 0.672890561330161, + 0.9328088285376084, + 0.7749797112605111, + 0.7453029808357353, + 0.688206675211755, + 0.8185856411595347, + 0.8887710226996619, + 0.6314760448050545, + 0.8859470962392377, + 0.7123313514630256, + 0.8173849898952062, + 0.8958968921943643, + 0.7531665702879834, + 0.7832747129139433, + 0.9093059701275489, + 0.6148078123062775, + 0.8077569497242201, + 0.7393497787091685, + 0.8122199824787575, + 0.8069822823458698, + 0.8282852486367734, + 0.9065273596182285, + 0.6886694533254641, + 0.7084737695041075, + 0.9012104693982473, + 0.7963691180144743, + 0.778543429721758, + 0.7313492678700158, + 0.7889713347292899, + 0.8437784920764881, + 0.8572550430345961, + 0.29677939798186764, + 0.8531224264134654, + 0.8533016677074079, + 0.8493478105174067, + 0.770666214139384, + 0.3105659401907849, + 0.6564681314594022, + 0.7879827460456106, + 0.7461238299430281, + 0.8780243325021596, + 0.7765043573463358, + 0.7714484375598271, + 0.7495190198136109, + 0.8386303503010883, + 0.6938146985082226, + 0.6142081225541292, + 0.7709556683538563, + 0.692866043237491, + 0.7367380386544639, + 0.7863317334759554, + 0.8926644404899157, + 0.46447013348865807, + 0.8501610756819215, + 0.7249512073419433, + 0.8888956560082424, + 0.8326686707825973, + 0.7972471402665057, + 0.7725505071554991, + 0.6227152384700372, + 0.7909133675798656, + 0.7905736792039261, + 0.7445226306203262, + 0.7964387246378788, + 0.7368045143830038, + 0.6674908307811533, + 0.9336880030454343, + 0.9432163240624405, + 0.8413917770974677, + 0.8447200455243888, + 0.8447743916620916, + 0.6746775691154216, + 0.8474578480755299, + 0.8827965765298288, + 0.7431282205155989, + 0.39225356353269175, + 0.8286489033742342, + 0.8215236494775959, + 0.9390850559489725, + 0.9382082361160434, + 0.9063368385510897, + 0.6311505781288727, + 0.42882854884192245, + 0.6968300948493957, + 0.9227293436333353, + 0.7791815465374239, + 0.6931353615654234, + 0.874477646749242, + 0.8503465615843311, + 0.8366904590227509, + 0.9004570288227092, + 0.6621178754487698, + 0.7782955670602167, + 0.7790313141057488, + 0.8695744019982746, + 0.8382080538420522, + 0.8279299215109827, + 0.6986878763240028, + 0.9206345003014653, + 0.7338753170934498, + 0.6583349934103607, + 0.867721154152209, + 0.7351830849560615, + 0.8908703230739151, + 0.8056880834495748, + 0.7483143096646635, + 1.0, + 0.937613016698631, + 0.8834595658729492, + 0.8558902253135132, + 0.8607160687422927, + 0.9257634327837864, + 0.801513329046871, + 0.802338649667114, + 0.8651548159265776, + 0.8585328573942067, + 0.9277963514995847, + 0.8456912458128762, + 0.8332618402527897, + 0.8037948276839407, + 0.3120416099395379, + 0.8440913773838573, + 0.6367902486497998, + 0.7862214495328257, + 0.7873005298930116, + 0.7499202240209296, + 0.6818593332850185, + 0.6427725013598493, + 0.7616059866800678, + 0.9282591380720212, + 0.8437705647876775, + 0.7467256482887376, + 0.6906404309591495, + 0.8696367291674908, + 0.8560512815236784, + 0.9036251057047474, + 0.8766897250253628, + 0.8547241410311033, + 0.43642373389229416, + 0.8027961230777559, + 0.7260352809566257, + 0.58162099714107, + 0.48455381935815434, + 0.8241709427156418, + 0.8606086740434739, + 0.822366686479849, + 0.9152974480783398, + 0.8488968696594708, + 0.7543537412078414, + 0.8172468473926997, + 0.6812967379036553, + 0.8160136420699006, + 0.8398380989932104, + 0.9192158097261129, + 0.8725414272653341, + 0.7765434399018156, + 0.874917489756143, + 0.8126574365677657, + 0.9361838155231033, + 0.8767666247074074, + 0.8290513480990838, + 0.8314833445907819, + 0.8338013567066191, + 0.8837605686888432, + 0.7984063909756556, + 0.7857436018464969, + 0.8101001286215259, + 0.7953581977817864, + 0.8721581427376827, + 0.44260842331108524, + 0.8053987590552137, + 0.6354501112034392, + 0.8875122799971036, + 0.8442077892156523, + 0.7723020396461879, + 0.8596538980347107, + 0.7806478893117305, + 0.909532296600549, + 0.8373567047010613, + 0.9015945078404819, + 0.8548595605251814, + 0.9626682465530574, + 0.8097679883698377, + 0.9488793172266402, + 0.90957206645422, + 0.8891954154533812, + 0.8467640426485025, + 0.8952998102397773, + 0.7587643591407893, + 0.7652015051670842, + 0.8603385987625527, + 0.8529212711990701, + 0.779241520163279, + 0.6572476790092358, + 0.815337340467243, + 0.8247317891582582, + 0.8844038146225754, + 0.7296011223496258, + 0.8462856033912767, + 0.8343840262867155, + 0.8705417972417577, + 0.8073206633673122, + 0.4759114184028801, + 0.7598351395591652, + 0.7243894347184912, + 0.7805705735521684, + 0.8455893009918909, + 0.8661613041927391, + 0.7919215332848052, + 0.6395836992744633, + 0.7528271172027763, + 0.9040475750055834, + 0.8712582539758558, + 0.8216369699562418, + 0.8106046632036746, + 0.4786587759213011, + 0.7542048098593349, + 0.8266781618772835, + 0.7511938848063032, + 0.7853815303877016, + 0.7882034035416545, + 0.7721024552420728, + 0.7647530107007993, + 0.9431437857238371, + 0.795174593878933, + 0.8802338833431389, + 0.9008723778763946, + 0.8047165425897591, + 0.8351232473515173, + 0.41150426774561555, + 0.6555728391547359, + 0.7180755562746314, + 0.8309875334475214, + 0.8437825347820678, + 0.6604012696900369, + 0.7107329780333232, + 0.7850908170985859, + 0.6227512620486357, + 0.6861097439518287, + 0.707707823781287, + 0.755121841995164, + 0.5131172679235227, + 0.518280838527924, + 0.8368393375878983, + 0.6087859459944149, + 0.47012136668233306, + 0.7055559058631629, + 0.7271833496246357, + 0.5971155056528458, + 0.948043307416719, + 0.8060120993846424, + 0.6716220048676911, + 0.6410140669134967, + 0.8063024781193631, + 0.8147065764421048, + 0.643230982731774 + ], + [ + 0.8886144247199995, + 0.7692687967307413, + 0.7942812518316126, + 0.7224914821763718, + 0.8017631564124118, + 0.8217677710989362, + 0.6872198069890638, + 0.8624365720200046, + 0.793696187435914, + 0.7120293967319979, + 0.6311095442033197, + 0.8672050705940832, + 0.9471064716737007, + 0.7572616659619693, + 0.8858539646396548, + 0.8471837170576525, + 0.8056680504596058, + 0.9259504505826405, + 0.89817646967196, + 0.7964160438920996, + 0.9328534710151015, + 0.7704025580711437, + 0.7981668535463093, + 0.8108164886394705, + 0.8416092696132835, + 0.9050161333321517, + 0.7871202831882721, + 0.86833112104607, + 0.8118396745374497, + 0.7941013953322387, + 0.9390340545665702, + 0.7812481736986587, + 0.8320985116273447, + 0.7616185923111743, + 0.8216547209775712, + 0.900310551731379, + 0.8712739290913409, + 0.44132059966938203, + 0.8928396670582972, + 0.8447513036968733, + 0.8633179510228802, + 0.8167293806713035, + 0.5104853221480464, + 0.7486784489242824, + 0.7930683825517924, + 0.7187175154995963, + 0.8355176366231076, + 0.777761349390688, + 0.8191672700465813, + 0.7315808369645826, + 0.8699032929021152, + 0.8458819492370873, + 0.7697630888823318, + 0.8692106744596773, + 0.764927264207601, + 0.8189431856674573, + 0.8903273016098613, + 0.9153379661972268, + 0.5799578641722904, + 0.8317757815033437, + 0.7961337928819424, + 0.9093367466324729, + 0.8701429099151647, + 0.8702227939183799, + 0.7623541419931489, + 0.6558753584498304, + 0.8692191346642427, + 0.8126907814933976, + 0.7889393092740915, + 0.8276593245771784, + 0.8213989809949546, + 0.7953404638838039, + 0.8885736052699088, + 0.932423850478533, + 0.881971814827496, + 0.8478411810017189, + 0.8172450951886784, + 0.8355030826800574, + 0.8723264414227622, + 0.9010404504171318, + 0.8458850106307787, + 0.5680590266172708, + 0.7797673424157444, + 0.8572968964694266, + 0.9124832881939386, + 0.9053563877089379, + 0.942732049948295, + 0.737810312451985, + 0.5780790294482663, + 0.8281666265986293, + 0.9283950090868845, + 0.8213071002859046, + 0.7333663186537404, + 0.9133920229540498, + 0.8619814351113365, + 0.8912761835731534, + 0.8888392608408291, + 0.787158359107708, + 0.7789416369134904, + 0.805563954779189, + 0.906833778937695, + 0.902967600197988, + 0.822448188222295, + 0.8091201317254265, + 0.9205702261675823, + 0.7314200646357859, + 0.7880769740139606, + 0.8678728585902317, + 0.7979723258387873, + 0.8463715387211016, + 0.8212334823932379, + 0.7368294677259465, + 0.937613016698631, + 1.0, + 0.9315142402526326, + 0.9295264391312802, + 0.8582962987443987, + 0.9600258028615901, + 0.7434438153733558, + 0.8515247290518464, + 0.9021974869499861, + 0.8734065114197269, + 0.9018119300892647, + 0.8670446917788854, + 0.8465744299823408, + 0.7763391123260074, + 0.4667317983470237, + 0.8935450471543936, + 0.7107357661969501, + 0.8493018895002097, + 0.7954135345958173, + 0.780887640356353, + 0.6595243196194198, + 0.6873388536918037, + 0.7278564355053372, + 0.9175701738469892, + 0.8908534333377587, + 0.7897375628065608, + 0.6137348323767408, + 0.8614293059353154, + 0.923532155102068, + 0.8832922527239943, + 0.8551177685825682, + 0.8467690393334335, + 0.6080868880710818, + 0.8491497418487883, + 0.7930808246954273, + 0.5758041368823513, + 0.4632132233958577, + 0.7963840415300893, + 0.8768154885056375, + 0.8499816683998075, + 0.8874220933327117, + 0.83153529640211, + 0.8060113768925361, + 0.8386909394750655, + 0.6371329418332145, + 0.8762342186786076, + 0.8546766386880997, + 0.9251432749379026, + 0.8874881318101354, + 0.7969664614815801, + 0.878998505415704, + 0.77257221358209, + 0.8988723058931369, + 0.8925928621736757, + 0.8199069808153627, + 0.882556499421497, + 0.8889453630521242, + 0.8921231103088617, + 0.8128007000804912, + 0.8248813958935104, + 0.7833789375157801, + 0.8341544818021616, + 0.9134188165797343, + 0.490146237450593, + 0.8030358771606033, + 0.6551763128715856, + 0.8548665162236112, + 0.8555746329382492, + 0.867840608042438, + 0.9017722880139613, + 0.8087516485397133, + 0.8940708357239963, + 0.8344068556068129, + 0.9012461617512579, + 0.9047563033334988, + 0.9219078128660062, + 0.764313359747664, + 0.9268355763264127, + 0.8913301462656471, + 0.8475652463877362, + 0.9052257660329839, + 0.8981640171716221, + 0.7489887153378877, + 0.6893555501159002, + 0.8718021795910383, + 0.8449230020002303, + 0.7440056069501717, + 0.7774559968677369, + 0.814842680746897, + 0.787377254697887, + 0.8950596898405916, + 0.6910401124073751, + 0.8097649704210185, + 0.8786183921747271, + 0.9150452771908577, + 0.8505274747931948, + 0.579342526833323, + 0.8044470275763265, + 0.7033517250727055, + 0.7218044357412724, + 0.8155302828329125, + 0.8718074372106527, + 0.7794233374053207, + 0.6823305315643874, + 0.7711251032161368, + 0.8503661638486, + 0.7966869099002204, + 0.8663905702708444, + 0.7529924804858744, + 0.45414808446175986, + 0.7715156298497432, + 0.8656631027001157, + 0.7924211499395705, + 0.8076411731173215, + 0.7590775513260748, + 0.7703958659691443, + 0.7094447508572193, + 0.9089497056639554, + 0.8292866729100272, + 0.8535246218102329, + 0.9315108865228091, + 0.8348128902873712, + 0.8584895472222139, + 0.5429107571496748, + 0.6756174095422823, + 0.6776748877575447, + 0.875193679168666, + 0.8769925651821623, + 0.7481689198534357, + 0.7537593976532395, + 0.746309971211197, + 0.7097682498824672, + 0.6809267454771885, + 0.7884741017849092, + 0.7064778519847339, + 0.52886858695872, + 0.5108820268240031, + 0.7764981370804716, + 0.5710328919859694, + 0.5798150031661566, + 0.8400722132698368, + 0.7856834074580452, + 0.7597376648997478, + 0.9273678655862706, + 0.7989298674643409, + 0.7296934885344188, + 0.6586400197642744, + 0.876555406040474, + 0.8225594912090665, + 0.6861023835580351 + ], + [ + 0.8245177303724308, + 0.6247887229414485, + 0.6409579811221565, + 0.7620877736836504, + 0.8396976128672315, + 0.7574746423594347, + 0.5563320624464083, + 0.8339484444967783, + 0.7136888472741136, + 0.671146214974956, + 0.5488655625393893, + 0.846534319992614, + 0.8505605880970045, + 0.8229571090122024, + 0.8719153423473981, + 0.8723424412038209, + 0.7511015462931823, + 0.818829379180672, + 0.9056848271210249, + 0.7074497491960267, + 0.8800338741854589, + 0.8116871301785118, + 0.7587542518048228, + 0.7166664621330692, + 0.8323673827604637, + 0.9077198958077171, + 0.762662909354262, + 0.8336396853770853, + 0.7720717590943625, + 0.7841840334659054, + 0.9102344821051114, + 0.7420274740780718, + 0.8174633436463106, + 0.7200708989639679, + 0.767793311916426, + 0.9244204649249661, + 0.8360523779007969, + 0.5665164287833254, + 0.8448272547010873, + 0.8920446165489223, + 0.7820071940962484, + 0.760294498738815, + 0.5261191865039094, + 0.7580165609037419, + 0.7562662986276659, + 0.722609870490368, + 0.8821511410262398, + 0.716169936271026, + 0.807131347733117, + 0.8485617079624438, + 0.8217304638173732, + 0.87350646083976, + 0.7970360699714282, + 0.8353562697094585, + 0.7834942879259561, + 0.8156528190393503, + 0.8645840711698438, + 0.9493926054756691, + 0.6561841665158142, + 0.8658205735570212, + 0.7720535376326847, + 0.9508421680235603, + 0.8241517150232999, + 0.887170346764267, + 0.684069201750116, + 0.6261970431473592, + 0.8620142645379142, + 0.8264204143324829, + 0.6891306414944843, + 0.7535072315618144, + 0.8053398095618058, + 0.7552376909124643, + 0.8286189072670814, + 0.9315560246552181, + 0.854408010878308, + 0.8490317447194224, + 0.8333480999756973, + 0.8704684793600206, + 0.7572156550886169, + 0.9466959318014153, + 0.7375187570687705, + 0.6476619109021593, + 0.8201265695055197, + 0.9354761883334064, + 0.9130936162536238, + 0.8638702580290605, + 0.911964591312089, + 0.7463207030620207, + 0.6807240959731082, + 0.8440464112553919, + 0.8822154523246568, + 0.7561693911371058, + 0.7440077629248607, + 0.8866389519277327, + 0.8602002252247778, + 0.9336673856514904, + 0.8632602127615999, + 0.8805306741120479, + 0.6983722210643939, + 0.6826796591579857, + 0.8749495303015937, + 0.92516129936898, + 0.8911043434257812, + 0.8813851753143347, + 0.8811898762574003, + 0.5834672866612545, + 0.797534887410634, + 0.8524522211774177, + 0.885887492555657, + 0.8677445954579028, + 0.8887584036074648, + 0.768141628134861, + 0.8834595658729492, + 0.9315142402526326, + 1.0, + 0.9395304135721634, + 0.9191820377929147, + 0.9081039776812108, + 0.7509749627930682, + 0.8460739917689091, + 0.9028983203100499, + 0.9364077775326879, + 0.9314175999155332, + 0.8337817421221441, + 0.8721746928290814, + 0.8375452985872565, + 0.6176471078333019, + 0.8534916756922719, + 0.7263470463183532, + 0.8468187868962721, + 0.8198724921217674, + 0.8160815977480484, + 0.6881009123669238, + 0.7790654124942377, + 0.5731831944015812, + 0.9377226755916003, + 0.9226010661406147, + 0.7552822280222641, + 0.7637343902679595, + 0.9285923465318975, + 0.9728726479984988, + 0.90482464356019, + 0.9043346335172523, + 0.8843994197615808, + 0.6424372341461564, + 0.7792720484651788, + 0.8694281349637989, + 0.7452195872246168, + 0.6714686223928268, + 0.8199619390040542, + 0.9039863736884559, + 0.909608613532581, + 0.9202460884051624, + 0.7779567146057523, + 0.8280966533604872, + 0.9118072782391217, + 0.7867928541229812, + 0.9017392463040399, + 0.8442076417228547, + 0.9507383919201043, + 0.9100951686388868, + 0.8688879675556677, + 0.8544711151743479, + 0.7781773278311862, + 0.8836801357476556, + 0.9200680238141873, + 0.8550405686370378, + 0.9457810358173532, + 0.9430242137490871, + 0.9399307392518257, + 0.8482722903125877, + 0.8676633748223911, + 0.7774125395707803, + 0.823141656026131, + 0.9447570682072174, + 0.6590697261736691, + 0.8996749112512118, + 0.7661160549662092, + 0.7792166413034248, + 0.9241040663843105, + 0.9014533559123701, + 0.9343126808344417, + 0.8922546620944386, + 0.9060273221378299, + 0.8457353443373985, + 0.8615955702644565, + 0.9094577864333306, + 0.8885894308919966, + 0.7921765250099891, + 0.8713540738989072, + 0.9322933624182145, + 0.8506954662597002, + 0.9285835437546451, + 0.9244912332819116, + 0.8797388895387501, + 0.68204484045814, + 0.8580752318445074, + 0.8862617738845022, + 0.8420460573634577, + 0.8313863703813305, + 0.8699079074131838, + 0.8347239094568488, + 0.9342767658473712, + 0.8211020470854465, + 0.869177184043668, + 0.8819201537549753, + 0.9072655801212899, + 0.8883587201567047, + 0.6848696103283223, + 0.8786588964032815, + 0.7121811750064949, + 0.8301139268593738, + 0.8578884347949494, + 0.8885244670833262, + 0.8378678079978544, + 0.7492467063456366, + 0.8241872563662774, + 0.8946612788614938, + 0.8457506825370239, + 0.9314499380474217, + 0.7308215510145661, + 0.6511445167464854, + 0.8482371441128829, + 0.8882307109420559, + 0.9053064782596514, + 0.8213151931755193, + 0.8506696230299982, + 0.7953440020534914, + 0.6267691226216445, + 0.8650382668393111, + 0.9065847579670047, + 0.8514759797751728, + 0.9559965778569104, + 0.8940333611754614, + 0.8783239051521791, + 0.6010716099464594, + 0.7690725537933206, + 0.8295504682852288, + 0.9386694823426415, + 0.9175673533779211, + 0.6782433813171218, + 0.8650964749112969, + 0.7214628565127413, + 0.8055439659591406, + 0.7140572185738451, + 0.8453152225427844, + 0.554384385424297, + 0.7779602174376611, + 0.6880274385550567, + 0.7311896044676771, + 0.7467309096674019, + 0.6610259330909904, + 0.8453574994887615, + 0.6957538366193136, + 0.7929532526602717, + 0.8889942827222551, + 0.8734918042454796, + 0.8363962208983665, + 0.515303359560643, + 0.9190318289457954, + 0.7984447099967, + 0.6805398165020863 + ], + [ + 0.7936319743417084, + 0.7154830071672671, + 0.7573191747554828, + 0.8607734687667166, + 0.8581909635198636, + 0.8457424080434788, + 0.6949661932048957, + 0.7965975251478635, + 0.7526336600809557, + 0.7963992177367131, + 0.6299881704019676, + 0.8528080523004817, + 0.8904080602211946, + 0.7556541686111967, + 0.8820969328252516, + 0.857463217670745, + 0.7136581725167329, + 0.9065304217575813, + 0.9338244744338873, + 0.8622189575568756, + 0.8748359266011883, + 0.8093552850972711, + 0.8374793249954224, + 0.8271194335748487, + 0.7525391466914734, + 0.9049600939635005, + 0.777568990904609, + 0.8819457350435376, + 0.8298774595507385, + 0.74005814397568, + 0.8533798419258907, + 0.7355446412844425, + 0.8061296559639305, + 0.6923866067651417, + 0.8846336566579788, + 0.8753902228642696, + 0.8449161751941578, + 0.5671585627682324, + 0.7674179008767619, + 0.8159877319933683, + 0.8138132412823187, + 0.7677205651206095, + 0.476299182271486, + 0.8033478472078226, + 0.8018717197232793, + 0.8347820305284039, + 0.8149051539300746, + 0.8221561470957699, + 0.9034430405298713, + 0.743346551335301, + 0.840912258533896, + 0.9201354767671042, + 0.7865366952619912, + 0.8078700729256842, + 0.6539931269819391, + 0.7452550732506074, + 0.8304048953506211, + 0.8744831895672609, + 0.7298291333117657, + 0.8103598569436452, + 0.7428849796274921, + 0.9523974670278806, + 0.8131353382208621, + 0.8109152667262615, + 0.8297283113248547, + 0.7408696506369566, + 0.9211461654216918, + 0.8921067978668119, + 0.7284036418711004, + 0.7468149446909987, + 0.8778480855419929, + 0.8675305669899734, + 0.8870108366386995, + 0.8650708191461017, + 0.8881717933618895, + 0.8418095056245727, + 0.8214552522557031, + 0.8921561273677368, + 0.778962252472966, + 0.9025047109293026, + 0.7946460681408976, + 0.710795017290994, + 0.8092007191216561, + 0.8841135231064129, + 0.8669116235063226, + 0.8328774343653611, + 0.9561279555911674, + 0.8625337055827822, + 0.7554029412641927, + 0.891486054394664, + 0.9123472064084459, + 0.8482325745655735, + 0.8357268600648028, + 0.9017346804448786, + 0.9308279780210652, + 0.8697126472568195, + 0.8453254406184421, + 0.8865714905080428, + 0.7807415483761599, + 0.7512376418960648, + 0.9211895383778053, + 0.8815353713361818, + 0.8664249061503582, + 0.8800014888403155, + 0.8862754326703384, + 0.7170602813446323, + 0.868639499337612, + 0.882975940393511, + 0.8859094186307146, + 0.8755755245799764, + 0.8356906974598801, + 0.8202780996165553, + 0.8558902253135132, + 0.9295264391312802, + 0.9395304135721634, + 1.0, + 0.8412528491925415, + 0.9254493066315982, + 0.8086557042782103, + 0.8853103699700986, + 0.9118861622137577, + 0.9139262869540293, + 0.8938713782722284, + 0.7927769151694006, + 0.8890214222469282, + 0.8572131734023484, + 0.7111145603748512, + 0.897763363961569, + 0.8546739265317441, + 0.8186319903019371, + 0.8736246359037874, + 0.8697849971815127, + 0.7346279740200364, + 0.823419421103367, + 0.724847845819437, + 0.8563787023634019, + 0.884571875854407, + 0.8586138542079896, + 0.6456444062371199, + 0.8886373626124859, + 0.9220227416537425, + 0.916256864996235, + 0.8329041898356017, + 0.8834254667894126, + 0.7806504574277687, + 0.8902333562364843, + 0.8977310627785644, + 0.7268969392097216, + 0.6110374931652955, + 0.7681823603080731, + 0.8383550633425982, + 0.8276409977446337, + 0.8554087129999947, + 0.8172414117724509, + 0.8797846367717184, + 0.8855222343301286, + 0.6718338978621792, + 0.928701701430176, + 0.8233437967837314, + 0.8837393664282696, + 0.9117442292038425, + 0.8227696769562491, + 0.9100967079861197, + 0.76896701934193, + 0.8718997516423379, + 0.9067404170302158, + 0.8179289482033242, + 0.9357264799627967, + 0.9203188608049218, + 0.9451107395196244, + 0.8685404854083174, + 0.8782965775146199, + 0.7644832270091877, + 0.8049231504565789, + 0.9135093971527743, + 0.49772177587342803, + 0.8128557526707397, + 0.7989366152012737, + 0.7764879448811121, + 0.8514335761064135, + 0.8466134776490465, + 0.8985593667940677, + 0.844799488589943, + 0.8908819490333102, + 0.865174471624078, + 0.8753866234102239, + 0.9077723039368605, + 0.8721094266151067, + 0.8076460873681122, + 0.8217445401262718, + 0.8865131907465408, + 0.8457430687830433, + 0.9102063072746133, + 0.8679488067997952, + 0.7962398134195863, + 0.6726331773605454, + 0.9134700746265516, + 0.868728808977669, + 0.8115093001445735, + 0.7650024239582018, + 0.8565756846840336, + 0.8007519907023527, + 0.8373123348274258, + 0.7584686911254483, + 0.8494678386344251, + 0.8713410297023898, + 0.9052575592860246, + 0.9450653597808855, + 0.7625315379219714, + 0.8633081455715612, + 0.7305220647579845, + 0.725842682022286, + 0.8041869447328661, + 0.904306627276515, + 0.9026472991363015, + 0.7294653054540647, + 0.8623474649074941, + 0.8397023178565447, + 0.7629003081969976, + 0.9086402805175984, + 0.779292503746627, + 0.49560995779469874, + 0.8473255726891976, + 0.8270609932701091, + 0.8316191707253326, + 0.796748614566443, + 0.8249678719431702, + 0.7591760642752373, + 0.6358877671304494, + 0.8626283823924129, + 0.8700012913661473, + 0.8837127481471685, + 0.9505303979060066, + 0.9302484291523929, + 0.9130848440654703, + 0.5899258273117883, + 0.6595727821144736, + 0.7221980626729826, + 0.8592341003451387, + 0.8653610044925828, + 0.6921448726874725, + 0.8323077028534744, + 0.7547794326243527, + 0.8219505962191009, + 0.7176814837599035, + 0.7089945043403232, + 0.5788531514846291, + 0.6221801902050201, + 0.5638747749064996, + 0.7680480878595853, + 0.6680811404901555, + 0.7320499700749422, + 0.9083021017642574, + 0.8137873016393036, + 0.8100401507201291, + 0.8506964169356173, + 0.8597708666975364, + 0.748002866311613, + 0.5856104072401147, + 0.9087977268012079, + 0.8844857635122093, + 0.6332762457515123 + ], + [ + 0.8743795999477474, + 0.572907409441066, + 0.6339251453227802, + 0.6051062232124838, + 0.8339446547298435, + 0.7050886385145887, + 0.531207592853307, + 0.8908548846610415, + 0.6784735075801346, + 0.6902484297807239, + 0.6338396844524707, + 0.7674440758555697, + 0.7523478212740917, + 0.7703741864718479, + 0.7919340260531782, + 0.7570334160064477, + 0.7664374705959595, + 0.7909966290347433, + 0.8332559378556974, + 0.7077851253392723, + 0.8736621431810273, + 0.7440071985842857, + 0.7772241474274485, + 0.698530153854779, + 0.7001742707259011, + 0.8203599851873657, + 0.802467751029653, + 0.8124328497453608, + 0.7255428216198575, + 0.6862391996902925, + 0.8486009986168598, + 0.6953286988980303, + 0.8100664166407198, + 0.7679320546790069, + 0.7199035122664647, + 0.932958536986068, + 0.9103407719980549, + 0.4790282306143396, + 0.7763851140518832, + 0.902864725079488, + 0.8001315434776178, + 0.6663697187087472, + 0.495756762019164, + 0.674346585527331, + 0.7123072046167738, + 0.7509974483249545, + 0.9537437221302035, + 0.755344226846153, + 0.7372595450806161, + 0.9120426034427667, + 0.8013165838981158, + 0.6931583747958956, + 0.7315335122945066, + 0.833393748189718, + 0.7913972221662294, + 0.8318749749537923, + 0.862400385594944, + 0.9262565608574448, + 0.5222814557800806, + 0.9044257598290454, + 0.7104369125627422, + 0.9133464564380716, + 0.735828846920359, + 0.820306182357943, + 0.700073577815133, + 0.6081399154811384, + 0.7731983393919829, + 0.8416094950968778, + 0.7862614516915054, + 0.8505523739593314, + 0.8404656536291291, + 0.6436862970247869, + 0.7847543842748415, + 0.9171410925539905, + 0.8361438736095641, + 0.838127526991551, + 0.8395261025593999, + 0.7576005700413704, + 0.8061154116981113, + 0.88027194602316, + 0.7967008872154386, + 0.5133171607429868, + 0.8239405117332919, + 0.8782827801129152, + 0.909675632309255, + 0.8580161454219482, + 0.8358827821753806, + 0.6600767119690544, + 0.6113472577782795, + 0.750797762912012, + 0.8196524465612098, + 0.8274159425533808, + 0.7493875919736754, + 0.8855369701120406, + 0.8381777994507718, + 0.8495325719987209, + 0.7690916241924416, + 0.825910059995461, + 0.780669755165798, + 0.7543423115823353, + 0.8933243058654402, + 0.8729034872703784, + 0.7812422669162926, + 0.8601475288914625, + 0.9121989496529946, + 0.6166162926972738, + 0.7930386533425563, + 0.8954357305762313, + 0.8119154745374243, + 0.8894245258858166, + 0.9698062584966958, + 0.695150753503405, + 0.8607160687422927, + 0.8582962987443987, + 0.9191820377929147, + 0.8412528491925415, + 1.0, + 0.8828673558171437, + 0.6546652514107963, + 0.8402176337064932, + 0.9111616743905087, + 0.8842344169897594, + 0.9400353243246037, + 0.7866028853615917, + 0.7678903259654258, + 0.7712909328537917, + 0.48825776891681283, + 0.8458425299793183, + 0.6050740976858996, + 0.796727732054306, + 0.711682593366715, + 0.7070613016241897, + 0.582137460799408, + 0.6551560644525197, + 0.6021719914646186, + 0.9465123860704906, + 0.9418538790759244, + 0.6877503154517147, + 0.847273921770601, + 0.9042618019524983, + 0.9265862073358403, + 0.8782462012169947, + 0.9155417951591696, + 0.9134383124784401, + 0.5179572875918905, + 0.7737753390375632, + 0.8062621075697384, + 0.771781126304465, + 0.6823932372799493, + 0.9420337506702352, + 0.9756148500959055, + 0.9716859898418215, + 0.972112489801713, + 0.7659681568854873, + 0.8008861572922069, + 0.9000349132591624, + 0.8716921915888741, + 0.8992368457574824, + 0.878263846330464, + 0.9496368093465303, + 0.9401519214162266, + 0.9498190995711959, + 0.8609741733075066, + 0.8806797909597069, + 0.9025134543696841, + 0.8774246703346403, + 0.934076179947657, + 0.9047112425902084, + 0.9305786502814638, + 0.8963583213405424, + 0.861142123721286, + 0.9097399405369205, + 0.7103869661087431, + 0.7513292739932453, + 0.9078593553574816, + 0.7481134762352719, + 0.9506536370549276, + 0.7823517506915506, + 0.8505450780608069, + 0.9121467116386078, + 0.7842984833705111, + 0.932985974274843, + 0.9639285420926895, + 0.9143514047480101, + 0.8508057631849011, + 0.8315409386305042, + 0.849973558697176, + 0.8766338872402365, + 0.7080564064953494, + 0.8799937650942383, + 0.9063037061446542, + 0.8269621625955601, + 0.8437319354648408, + 0.9417290511561652, + 0.8759088794906126, + 0.7299658053462905, + 0.8913783318851011, + 0.9069736127842405, + 0.8316260628067679, + 0.7634322389162197, + 0.946230926644955, + 0.7615245562263041, + 0.8860282531992331, + 0.8582522794834763, + 0.8797150869188138, + 0.9057463765758536, + 0.8396928107969855, + 0.8000062329629539, + 0.6172868480291415, + 0.8597326542033695, + 0.8255788574380917, + 0.9096081716580601, + 0.9534705282556234, + 0.881072570399682, + 0.7942875939119702, + 0.5514008562708578, + 0.7158352565272323, + 0.9177059383529439, + 0.9348924840993743, + 0.8877968589237206, + 0.7459519774417983, + 0.7775860854908643, + 0.877179665636451, + 0.9112750396040223, + 0.8381703400933956, + 0.7068069024611334, + 0.8675472472647893, + 0.9142837172298749, + 0.7027200652855753, + 0.8940947876226838, + 0.9347142316748525, + 0.8522409961102867, + 0.9298372263478148, + 0.8130718631820758, + 0.8896815633123192, + 0.6341581915732528, + 0.5848486607400626, + 0.8992753955968664, + 0.9586069302558177, + 0.9401028899789938, + 0.754113699346051, + 0.8850525439100257, + 0.7802920941721891, + 0.697099512539957, + 0.7687536047880584, + 0.7803549888209018, + 0.6984272760404573, + 0.7502057257895446, + 0.8274562928910361, + 0.8455420808518151, + 0.8124208167631909, + 0.5521941393975563, + 0.705509136328694, + 0.6281443923416908, + 0.7064846286433543, + 0.8007144366024264, + 0.8302745803923963, + 0.7262586356774288, + 0.5836349054832568, + 0.9282899382575315, + 0.7635115802983973, + 0.6716821979751005 + ], + [ + 0.8803538830805332, + 0.7864075348492309, + 0.8630851125069121, + 0.7550148641573062, + 0.8536912708785447, + 0.8662754760760933, + 0.7661515120928264, + 0.9031221746294161, + 0.749887549910632, + 0.8029348608408573, + 0.7200892782986397, + 0.8430812378747027, + 0.9276577878124281, + 0.7797635957796093, + 0.9352492159568744, + 0.7768268538290634, + 0.7746933056773754, + 0.9404648464506825, + 0.8676920656587972, + 0.865870162023528, + 0.9671517680449269, + 0.7719016785044281, + 0.9085416045159237, + 0.8642906006076774, + 0.7550780136790749, + 0.8910894703027126, + 0.8653227165785624, + 0.9205090859427832, + 0.8018355915717318, + 0.7581541252271544, + 0.900638210820761, + 0.800798222378477, + 0.9125153374705777, + 0.7694011695360529, + 0.8968194352634962, + 0.8906026355595577, + 0.9291883853895208, + 0.38277152185943075, + 0.8073921718657051, + 0.8321435756478252, + 0.9017669995779959, + 0.7639194493058062, + 0.42205166264475735, + 0.8167361988924493, + 0.8659826890478104, + 0.8051040765173663, + 0.8832066580850879, + 0.8552593653751505, + 0.8781533180053597, + 0.7745767590167656, + 0.9114717631959065, + 0.8131615693410319, + 0.7080956940137592, + 0.8585226124566857, + 0.6885603694119746, + 0.768790877687235, + 0.8677427188032578, + 0.8925823031019382, + 0.5616671053466914, + 0.8913171204710881, + 0.7238331418873705, + 0.9389477491017452, + 0.8080877360640863, + 0.8347896212995557, + 0.858616729572837, + 0.7102867257131734, + 0.8938698365881015, + 0.8644456848319962, + 0.8497902328170082, + 0.8512332323847576, + 0.844662405799415, + 0.815083766403193, + 0.9133047837803391, + 0.8932034654609396, + 0.9437593783550391, + 0.8797164966842717, + 0.8710335017128075, + 0.7894068299955853, + 0.864952720593825, + 0.880048683341814, + 0.877073726618502, + 0.5170646222685178, + 0.7868737993443021, + 0.8430139302961698, + 0.9267644993054771, + 0.9155502034801722, + 0.9421836741519183, + 0.7338729532602786, + 0.566214780738508, + 0.7919263938008044, + 0.9697150155774923, + 0.8829190993342798, + 0.7980393981412749, + 0.9322936206408925, + 0.8893113496927906, + 0.8395557309616334, + 0.8690305473969171, + 0.7767825566573996, + 0.8718075018822748, + 0.878314902246688, + 0.9457453071831025, + 0.8535266315424211, + 0.7943217450687017, + 0.8091589966195999, + 0.9729201042261971, + 0.7988949375200737, + 0.8254820174100561, + 0.9001767298282898, + 0.7800950723248266, + 0.9012614265851162, + 0.8498558750140075, + 0.775948270577013, + 0.9257634327837864, + 0.9600258028615901, + 0.9081039776812108, + 0.9254493066315982, + 0.8828673558171437, + 1.0, + 0.7673178836722282, + 0.8622541674822204, + 0.8986384073057497, + 0.8640378540232898, + 0.9101976655434152, + 0.833401954740994, + 0.7818191606230122, + 0.7573889073805987, + 0.47774189207867723, + 0.9379390555173872, + 0.7038590741090035, + 0.8295323028444513, + 0.7964307769323936, + 0.7828334982199383, + 0.6300140294196006, + 0.6759700827026541, + 0.7538367415116896, + 0.9270561692741774, + 0.909175122276502, + 0.8458657285627288, + 0.6793608170453371, + 0.9198194023760532, + 0.9219142513768627, + 0.9437255870359605, + 0.9082684371154734, + 0.9245164291206731, + 0.5671726754923498, + 0.9262601811948327, + 0.8490351181415384, + 0.6773002424533678, + 0.5892534009223204, + 0.8578586006537672, + 0.9008451883151487, + 0.8776621147087204, + 0.9020206534119818, + 0.806002801506526, + 0.8535548923396185, + 0.8491928606816743, + 0.6850064786581715, + 0.8937240966058617, + 0.8594975108487608, + 0.9351630540280199, + 0.9290206507278255, + 0.8615750619291798, + 0.9154036938390425, + 0.8404621850462114, + 0.9522782631786838, + 0.9325869279147838, + 0.8631599475428237, + 0.9001091189812465, + 0.9127020209035165, + 0.9212753878149683, + 0.8535531881077103, + 0.8590132476842246, + 0.757591184074972, + 0.766004352547614, + 0.9139397201815906, + 0.4956688770841924, + 0.8179144320373136, + 0.7501122945646457, + 0.8971834270357161, + 0.8557588704026307, + 0.8141740893779391, + 0.909655560084321, + 0.8576146017917631, + 0.9465242523736992, + 0.9070396355863247, + 0.935746797382896, + 0.9402879417347223, + 0.9522228007517834, + 0.7597848196926159, + 0.9300068335568205, + 0.9305828169803616, + 0.903776591622805, + 0.909221082220802, + 0.924757945984593, + 0.7913868406186456, + 0.7323471838535879, + 0.8993378925814911, + 0.8603637040393812, + 0.8191982679858913, + 0.6951159336307904, + 0.8825322883293493, + 0.765039929991642, + 0.8230071106931365, + 0.7500914625930084, + 0.8840793276849991, + 0.9165519723997216, + 0.8949031989013729, + 0.8384660034220096, + 0.5796466578841772, + 0.8066987227166827, + 0.826104001382884, + 0.8063949795328277, + 0.8605729680439449, + 0.8741222300418444, + 0.8465801921235087, + 0.6199033546853303, + 0.7570704267750618, + 0.8971633890937784, + 0.8590159520827205, + 0.8718696411902531, + 0.7656238967518058, + 0.5540265658669741, + 0.8274054519358481, + 0.8787998152438218, + 0.780492531695703, + 0.7792628760413416, + 0.8368896235411177, + 0.8335254946060066, + 0.755592415547074, + 0.944660036666729, + 0.8633391379333826, + 0.9040889034047779, + 0.952331884239287, + 0.865371442079433, + 0.9387834501765427, + 0.4633273955759913, + 0.6012043256478564, + 0.741328171751053, + 0.8882171958757406, + 0.8991006760774941, + 0.7767840670595099, + 0.7832211670128929, + 0.8072971047628416, + 0.6636838412339171, + 0.7803794047591299, + 0.7209911182286439, + 0.7382855502070427, + 0.541858753623389, + 0.5707215414988249, + 0.8225593115445432, + 0.6418062292010546, + 0.5592226223796113, + 0.821577405189321, + 0.7683785276421039, + 0.7253717595310428, + 0.8958703727455303, + 0.8199729763337316, + 0.6664798229579678, + 0.7211550026115915, + 0.8906523757886943, + 0.8765507194632783, + 0.6859244524029311 + ], + [ + 0.6069637602992042, + 0.5320021093770901, + 0.7203958976971201, + 0.7721574929378577, + 0.593284879020496, + 0.5962641435391322, + 0.6175253742419823, + 0.695240936799343, + 0.7039129319812131, + 0.807040112888519, + 0.6395205094789531, + 0.5250194105257383, + 0.6926101575511788, + 0.48415522654030696, + 0.8514863964704718, + 0.6256469115086952, + 0.7048798686028409, + 0.7338767490513065, + 0.654528234943434, + 0.8159501203563345, + 0.7571344736961583, + 0.5311830613016978, + 0.7173908017336278, + 0.6967440564232626, + 0.6472769472956085, + 0.6208744664304593, + 0.6996773812275895, + 0.7868654795078229, + 0.6094799397890965, + 0.4866339131380209, + 0.7095519642401097, + 0.6369562903979658, + 0.5543553717445889, + 0.5044197183721643, + 0.8119341486318777, + 0.6489188804807415, + 0.6733908379443655, + 0.23534234125363554, + 0.5529647643602557, + 0.7496568378162516, + 0.5731054681017058, + 0.5209009749254986, + 0.1979260752516864, + 0.69692499742553, + 0.7720327807227798, + 0.7995451526332659, + 0.7443899556802532, + 0.746926753138452, + 0.7961658653084125, + 0.680887645480879, + 0.7232533733569269, + 0.6661126358921109, + 0.5452373930967959, + 0.5515382946202856, + 0.3928735124435592, + 0.46077637282891265, + 0.5699563272511738, + 0.6701961377738077, + 0.6680132123498225, + 0.6456312576739701, + 0.6389319884415238, + 0.8257934122530511, + 0.6663898526451082, + 0.6588874767490674, + 0.7219628632673079, + 0.7052357826456966, + 0.7317858143275516, + 0.7711070031345231, + 0.4691020780755874, + 0.49841755415540084, + 0.6504754721349995, + 0.6765954984677938, + 0.8518892346383452, + 0.7698775010627354, + 0.7024995121405065, + 0.7763913705704089, + 0.7564217108194018, + 0.5491738667352619, + 0.6214409897103896, + 0.7048057132034784, + 0.5024506755501857, + 0.6063798689346134, + 0.6704720639192489, + 0.7524256861204287, + 0.7643985956521276, + 0.7213625490529444, + 0.8239129079716643, + 0.7404994439015022, + 0.5991303938499524, + 0.548795823341158, + 0.7875940519350125, + 0.7163989271815275, + 0.6868912885153978, + 0.69905827784211, + 0.8818141994887589, + 0.6701413532530918, + 0.7288857346113672, + 0.6230713318999841, + 0.6855140219799397, + 0.538498550480568, + 0.7298560837589217, + 0.6967731508715427, + 0.7870146768482161, + 0.6439464434521524, + 0.7463917205093122, + 0.75458882841432, + 0.6438195158565155, + 0.7765602992525542, + 0.7864118010155399, + 0.8383763479936799, + 0.680678778162231, + 0.9115233804592318, + 0.801513329046871, + 0.7434438153733558, + 0.7509749627930682, + 0.8086557042782103, + 0.6546652514107963, + 0.7673178836722282, + 1.0, + 0.7837904166261173, + 0.7425190608665071, + 0.7526229282075447, + 0.7773032321255882, + 0.7209648521985701, + 0.8136920303482387, + 0.8642349367307032, + 0.5486015044570792, + 0.7161161377795281, + 0.7901945673109186, + 0.6320708566529339, + 0.894203190541919, + 0.8424434748722214, + 0.794573652734106, + 0.8204520509954834, + 0.6804128903675627, + 0.7287177757299192, + 0.7436300153764578, + 0.823906199137785, + 0.6623898207605238, + 0.8153764397080042, + 0.7206075600452853, + 0.8729103003040029, + 0.7306212458376184, + 0.776873734070229, + 0.5345716687972522, + 0.7940524520776897, + 0.7431037318921586, + 0.615206377297462, + 0.49847229628221107, + 0.6016135507589019, + 0.6460373757818938, + 0.6398967742786997, + 0.7009665003884128, + 0.7565614690933103, + 0.7984430339911197, + 0.8156668860883269, + 0.6751988753956357, + 0.8131820071290153, + 0.7759367874167974, + 0.7596962955819343, + 0.8046160633485298, + 0.6795927628800744, + 0.883645060670186, + 0.7149354468452822, + 0.7856118810370394, + 0.7812883099806105, + 0.712160560922343, + 0.8113394563530478, + 0.7655511724167399, + 0.8666713711607268, + 0.8325289177669367, + 0.7505910296541732, + 0.8519357500413514, + 0.5678292206524507, + 0.7765665409972802, + 0.3588330222325533, + 0.7287044652679033, + 0.6562101298954045, + 0.65644817109664, + 0.7928749344738781, + 0.65069632336998, + 0.7556104514056889, + 0.6529549155365519, + 0.811017435953994, + 0.6938557064495426, + 0.8293323206386972, + 0.7957479390349345, + 0.8348538254008222, + 0.9318953501159687, + 0.7041592126376801, + 0.7968150445781322, + 0.7767366064847971, + 0.7718999404747137, + 0.7334219352101091, + 0.7262110414235479, + 0.7521799630532908, + 0.806509109765146, + 0.8169466147571027, + 0.6847143753647081, + 0.48531845860647355, + 0.7530423663338814, + 0.8059598348691127, + 0.7330979450701185, + 0.7135740258749605, + 0.7778058658964243, + 0.6859304836654874, + 0.6973648685397961, + 0.8510750181035914, + 0.690714342495817, + 0.7320244703825955, + 0.6769348889068378, + 0.6756491931345041, + 0.695763975164498, + 0.8811211927903179, + 0.8936140720995779, + 0.6310824521979923, + 0.7757751665757731, + 0.8154863466141766, + 0.7000781811124797, + 0.7587879751434352, + 0.754750068376243, + 0.39141846838730926, + 0.6836075246965012, + 0.7220579927983773, + 0.7597824357040188, + 0.792183811784956, + 0.7330206914536539, + 0.5956377056050128, + 0.6872199732373273, + 0.832033320046028, + 0.7489701590466757, + 0.8661666003110573, + 0.8102513747840193, + 0.8580673752479793, + 0.7549245419876041, + 0.21941556767609824, + 0.4610386325497602, + 0.5823192885082215, + 0.6602130671114007, + 0.6372583115454581, + 0.41460656869654094, + 0.6118786300269062, + 0.6560387052320399, + 0.737736436905598, + 0.6781932507557962, + 0.4976918178366265, + 0.5693097177384835, + 0.5204232981077409, + 0.47502094048562865, + 0.6629361934785736, + 0.6066162732804524, + 0.6715777296918852, + 0.6512982949898504, + 0.6257135793819313, + 0.5474693377133827, + 0.7813273502964849, + 0.8385728240553336, + 0.5374748799682768, + 0.5428913738886066, + 0.7198306050218974, + 0.875416702653243, + 0.6169034643794776 + ], + [ + 0.7511606942721303, + 0.4981443225276089, + 0.6731423704561614, + 0.7213423574213023, + 0.7425171659927443, + 0.7915630716859102, + 0.5537555962967126, + 0.7528401908429321, + 0.5931163072895657, + 0.7083390688256589, + 0.5446056381982319, + 0.6288062700181082, + 0.7754257917092104, + 0.618793683831861, + 0.7877797212202792, + 0.6926525126967054, + 0.6284998037760009, + 0.8131049076995321, + 0.8136655322358897, + 0.7709692519873597, + 0.8504467970210083, + 0.7070253632464519, + 0.749606178803993, + 0.7080566626063782, + 0.5273986193474041, + 0.7104048375366896, + 0.7745717596582572, + 0.7895977893663745, + 0.7271665673202123, + 0.44466421058002203, + 0.7224802123298915, + 0.5236962138748567, + 0.7140779035398888, + 0.760923826730069, + 0.8753338391412788, + 0.7816914196346484, + 0.8068924366605066, + 0.4118424113065117, + 0.5966852069295774, + 0.7967156237552272, + 0.7064250457045365, + 0.644462284524438, + 0.5161778790430395, + 0.8706651597701501, + 0.8321321082556407, + 0.7438830510747219, + 0.8578281216961564, + 0.7166314822779887, + 0.8833308905709345, + 0.7956786842908652, + 0.8288698542172397, + 0.749053731276268, + 0.7399121366036635, + 0.6487229130287794, + 0.5164443307374841, + 0.6323491139923556, + 0.7292431416679525, + 0.8107709749066293, + 0.6363466411198195, + 0.7892871831876589, + 0.6254125650030415, + 0.8967691824987764, + 0.6327653401439873, + 0.7238090214931739, + 0.7730802825552961, + 0.640691546814453, + 0.8041279300189654, + 0.9382078285665605, + 0.6857907844499449, + 0.6482438257171568, + 0.8068126739265987, + 0.6643765994195273, + 0.7568246749230879, + 0.8010921440169522, + 0.8278343552239057, + 0.9157984973488454, + 0.8892212223401845, + 0.7958418060863235, + 0.7320313507267036, + 0.8077313022672448, + 0.7163326273664322, + 0.6952579896508101, + 0.7401673966238677, + 0.9168751443800914, + 0.739077545539303, + 0.6918173228867242, + 0.7961992248527714, + 0.7363205976417168, + 0.7279593468238984, + 0.715774044872005, + 0.8411559888873755, + 0.9305397213537723, + 0.8313142604800314, + 0.883206099186748, + 0.9310507764065146, + 0.7240639638540222, + 0.6360658133520285, + 0.7574502073773397, + 0.8436400660124139, + 0.6720745254833379, + 0.8691839097636669, + 0.8046058118556024, + 0.6881884076699138, + 0.826888565122525, + 0.8845696676301612, + 0.7168492733197246, + 0.7935240102915287, + 0.888971491064246, + 0.8246004449070171, + 0.9142619673515208, + 0.8947179233918934, + 0.8058738915295706, + 0.802338649667114, + 0.8515247290518464, + 0.8460739917689091, + 0.8853103699700986, + 0.8402176337064932, + 0.8622541674822204, + 0.7837904166261173, + 1.0, + 0.8945038785188322, + 0.8971517398385592, + 0.8137972986772195, + 0.7092418947870696, + 0.7854647643566279, + 0.7759330184171861, + 0.591063913903815, + 0.916284277133312, + 0.7143445233875637, + 0.8931640905748333, + 0.7888240505140869, + 0.7061269677104668, + 0.6057426372246764, + 0.7224022060437099, + 0.7256912545610018, + 0.8053832979602193, + 0.8818119448585089, + 0.9126977752587752, + 0.7000856918433703, + 0.8666497056388156, + 0.8740060053546486, + 0.8865272885806982, + 0.7929018189978303, + 0.7779115202478506, + 0.6579421259989043, + 0.8725204115031553, + 0.8438577468206714, + 0.7495158573224046, + 0.4851744303236418, + 0.8117233924023236, + 0.8634698572989329, + 0.8278124451509649, + 0.8353196120670936, + 0.7576276985472145, + 0.9520423901440914, + 0.9393120994831257, + 0.7706224346278289, + 0.9049965944707098, + 0.8398337013394472, + 0.8248693724582586, + 0.9054522932686944, + 0.880032674388934, + 0.9343156178832818, + 0.8914625862623377, + 0.8806826311271302, + 0.9034238980264272, + 0.9089991319388111, + 0.8990525098898272, + 0.9138029672002455, + 0.9047924621258695, + 0.9421985074756293, + 0.93398137699073, + 0.7402822657557363, + 0.7434569054608988, + 0.9524967576637982, + 0.5626170491852995, + 0.8699410375755108, + 0.805752070942443, + 0.6849011725561662, + 0.8954553883776154, + 0.6745671387754183, + 0.926429064573724, + 0.8665798203562992, + 0.9091841356502613, + 0.7916232415461701, + 0.9079534323633891, + 0.9132714011297599, + 0.8276179166595977, + 0.8236017368871975, + 0.8296363479211881, + 0.848401384356695, + 0.8640111076286343, + 0.910117061906169, + 0.8719877379412995, + 0.8008529494526611, + 0.8120999200484329, + 0.9214019236157754, + 0.9392591793893764, + 0.7872736377924829, + 0.7935809574224835, + 0.8730949209861275, + 0.6605197109290878, + 0.8022715570325073, + 0.8316651787374134, + 0.8899883226617096, + 0.9290920487795973, + 0.7992168705778977, + 0.8782521513664665, + 0.7672375740691962, + 0.9486206653475617, + 0.8768294924641288, + 0.7619761812142858, + 0.8514897691630822, + 0.9007335717308854, + 0.8779914806090307, + 0.6667267042033739, + 0.7630285816859733, + 0.8868860444629229, + 0.7965774366014894, + 0.9325074291100863, + 0.8078606340804799, + 0.6126899750208569, + 0.9073578903611349, + 0.8820433682666912, + 0.7616118161046332, + 0.8118668160200623, + 0.7930068025798201, + 0.867874591258031, + 0.63585149713714, + 0.8713196190561872, + 0.8925510147747147, + 0.9322886955710445, + 0.921447669560369, + 0.869593629731232, + 0.8956085321845156, + 0.6127634038651529, + 0.5463973719346783, + 0.6650371410900096, + 0.8348391643880022, + 0.89406772616924, + 0.6631759176433393, + 0.8343164619220302, + 0.7769601356197889, + 0.761269996912701, + 0.8834195867263432, + 0.5908594019019134, + 0.6101828166316509, + 0.5949207910209375, + 0.691251822059188, + 0.7659886813098483, + 0.6597983672957367, + 0.7216414447639389, + 0.7345042218170036, + 0.6262204165789238, + 0.6866683052540014, + 0.7422429284814601, + 0.9002869921295745, + 0.6170184013565394, + 0.5504131381692582, + 0.8781909109507168, + 0.9226272835921415, + 0.6698210761547175 + ], + [ + 0.7811297564256953, + 0.6246246790411533, + 0.7202210058035652, + 0.6814623228906183, + 0.7863743798648145, + 0.7714774066617767, + 0.5432888496038158, + 0.803099361075316, + 0.631484785207677, + 0.6994109739800851, + 0.562973687848707, + 0.7882612530754096, + 0.8637892860992437, + 0.6793590442344222, + 0.7862280881851298, + 0.743120549317701, + 0.7076376153309002, + 0.8277844538550615, + 0.841085317762839, + 0.8287297477410991, + 0.8460461450446651, + 0.6748559679424959, + 0.8129872547440795, + 0.7262118608931873, + 0.6605264233283706, + 0.8146069988829283, + 0.8693627028990001, + 0.8242090754596166, + 0.7224499169390775, + 0.6286243097414783, + 0.8284502756879836, + 0.7015321569873825, + 0.7248532233346551, + 0.6951459657319038, + 0.798178824575616, + 0.8458967279649262, + 0.8724613946510323, + 0.45618807742241957, + 0.715231642247784, + 0.8129443577513866, + 0.8009170267214142, + 0.7308264152059426, + 0.5194781911150291, + 0.7239520833771791, + 0.7647771903814483, + 0.8099530166127039, + 0.8639080592369075, + 0.7403867615433533, + 0.8210146532084536, + 0.793929925710313, + 0.7438599278835691, + 0.7690762912508208, + 0.6761259734020894, + 0.7828641097268575, + 0.6452907113265566, + 0.7024574721364134, + 0.7817166412550123, + 0.8755583949293503, + 0.6823967074314851, + 0.841876676215822, + 0.6123253267255798, + 0.911683901463989, + 0.6915654277348171, + 0.7529333969888518, + 0.7720680959977784, + 0.6564982731501829, + 0.7877185223104683, + 0.861537756228767, + 0.7741082135997291, + 0.7994392427503141, + 0.8728565696236835, + 0.7415009717878326, + 0.8254089590967244, + 0.8653785829886077, + 0.855563223538991, + 0.868662992781679, + 0.8562098244999591, + 0.8293457611837338, + 0.7472590702367357, + 0.8734460114304649, + 0.785279946684862, + 0.593605272863967, + 0.7663636629842306, + 0.891977102020172, + 0.8664740634604611, + 0.8120207890285736, + 0.8653275105862605, + 0.7296023699078416, + 0.6234143593790088, + 0.8199858270309227, + 0.8482282768931616, + 0.8623551167140886, + 0.8777068142918979, + 0.9368158298255636, + 0.9481811967915617, + 0.7824839100001191, + 0.8052044491091651, + 0.8092070912002807, + 0.7820480823388588, + 0.7564997317151161, + 0.963381229725886, + 0.8128127745522774, + 0.7245468345693834, + 0.83468174087207, + 0.9309025987439471, + 0.6549606117839076, + 0.8081326241018317, + 0.8502104197218702, + 0.8838142493674176, + 0.9251214098988543, + 0.91666892373941, + 0.6854774625821719, + 0.8651548159265776, + 0.9021974869499861, + 0.9028983203100499, + 0.9118861622137577, + 0.9111616743905087, + 0.8986384073057497, + 0.7425190608665071, + 0.8945038785188322, + 1.0, + 0.8906879910229222, + 0.9055543553151104, + 0.7097808614052175, + 0.7729893110494185, + 0.7521174009490413, + 0.5221694145631985, + 0.9154254564373139, + 0.7491353249309345, + 0.8710451441258086, + 0.7049354627713944, + 0.7348794956576651, + 0.5276292166012475, + 0.6452703827812184, + 0.666981242991034, + 0.8792582319543231, + 0.9096937728596692, + 0.7891728586098519, + 0.7758499155792085, + 0.8887352896734443, + 0.8863087749837366, + 0.9069125857648712, + 0.8703076883273955, + 0.8822476269075633, + 0.597128100591357, + 0.8302648936513556, + 0.910069129865428, + 0.7323095857061147, + 0.540466896995779, + 0.8925804515798843, + 0.8719979312101271, + 0.873028244004772, + 0.8953711465581464, + 0.7338148654686908, + 0.8486284324980693, + 0.9291776063752191, + 0.7790591622989279, + 0.8981064850779792, + 0.7954012468692987, + 0.866278641446907, + 0.9266968096538873, + 0.8725247324342857, + 0.8845114357628258, + 0.891499168259513, + 0.9229646403117996, + 0.9025360411373071, + 0.9160230558205266, + 0.8683539871416125, + 0.9092961672790242, + 0.9095424640254927, + 0.8806008674481653, + 0.9022324196846288, + 0.7305378359866123, + 0.8513258963166545, + 0.9206846627181909, + 0.5681199074209969, + 0.8656623111007279, + 0.8240766530171992, + 0.7964614587861555, + 0.8590579515539638, + 0.7619196942293602, + 0.9455261467750259, + 0.88693302546338, + 0.9215405503004106, + 0.854593131841603, + 0.8479409456394094, + 0.8552323655801672, + 0.8574947235044577, + 0.7371391766904888, + 0.8660097426870411, + 0.897863766829169, + 0.8679770335795248, + 0.8915901754875624, + 0.9429547221769439, + 0.847199176259808, + 0.7627937642026362, + 0.8908389177649911, + 0.8878314968397084, + 0.8438841103038942, + 0.755338482615768, + 0.8990954940946706, + 0.7336580131199033, + 0.8866332250260437, + 0.8399895605203429, + 0.850009907959767, + 0.8985893595417656, + 0.8865513372619366, + 0.8870942656962085, + 0.6575967646494826, + 0.9106839127161345, + 0.7829417609270256, + 0.7942504329533425, + 0.9270468683600348, + 0.8870637012200803, + 0.8738132589092913, + 0.6232817401635906, + 0.7768677956859475, + 0.8690122431221976, + 0.8685710499490599, + 0.9314882031271912, + 0.8830771739177705, + 0.5985316931216461, + 0.8593990063022641, + 0.8583326126981997, + 0.8098216006464805, + 0.704493711540287, + 0.8683073471547073, + 0.8615912810542065, + 0.6312970525313064, + 0.8787836089479428, + 0.8770079221410086, + 0.9113571602379489, + 0.9572419586436511, + 0.8722597966933311, + 0.8915127953273588, + 0.6066766796490847, + 0.6145334653028932, + 0.7806071743924071, + 0.8736957044174932, + 0.9040835419008166, + 0.6283804883294268, + 0.8833599784845134, + 0.8453946829835074, + 0.8214260904489213, + 0.7447730802024849, + 0.6149733771810857, + 0.6283483199898166, + 0.6174288674662568, + 0.6675498538320151, + 0.8522619151361195, + 0.704533865525953, + 0.7051434599047463, + 0.8278096458325718, + 0.6898485067233148, + 0.7685532659638973, + 0.8006645498206717, + 0.8948721969065401, + 0.6691116900991422, + 0.5211789448408073, + 0.898044054733851, + 0.8608471964991223, + 0.7082409924182019 + ], + [ + 0.7666880499251392, + 0.5633812381922552, + 0.6347300730681386, + 0.7028456638955111, + 0.7540621562596309, + 0.7212149516585857, + 0.5148875498381819, + 0.7884272842555288, + 0.6268939762308517, + 0.6660557076931481, + 0.4891843371324955, + 0.7907475371975845, + 0.8118138573600783, + 0.7027938924097852, + 0.8013964587474275, + 0.7456208601055748, + 0.618134879241894, + 0.7984274632249636, + 0.8181259269232074, + 0.6976875511103052, + 0.8518498548711354, + 0.7088200198963087, + 0.724215992804628, + 0.6698569786161837, + 0.6704206213064917, + 0.7753325494866299, + 0.7268810194165746, + 0.8030356785628637, + 0.6905690491033, + 0.6194951559970543, + 0.7523015910928179, + 0.6229659788308997, + 0.7510075448375851, + 0.6915142740628548, + 0.8036962733196493, + 0.8239180857756566, + 0.8271691592108577, + 0.5483637248646814, + 0.7495293005811636, + 0.8328703741727042, + 0.7295221052570543, + 0.7365877171870716, + 0.46693963290256296, + 0.773021892467248, + 0.7545565963576601, + 0.748674450260215, + 0.8493687586517554, + 0.6806458521125078, + 0.8628778351385105, + 0.8452260636174723, + 0.8307938030088505, + 0.8312790896398352, + 0.7120300381015825, + 0.6765926229684749, + 0.6138784323288388, + 0.6963331918675678, + 0.7406833966767571, + 0.9023968647935285, + 0.6248736011697368, + 0.8771018792707485, + 0.6560387237277042, + 0.9286879727274303, + 0.6931037132319307, + 0.749418807405118, + 0.7183667356468779, + 0.5923877342496634, + 0.8467465820185643, + 0.8979870662710866, + 0.663935780100849, + 0.677340413683186, + 0.7916744779446666, + 0.6981732840629348, + 0.7831065611888729, + 0.8560284131101543, + 0.8898039985549135, + 0.8861242526504431, + 0.8737234783313861, + 0.8584424565647143, + 0.6967827823275354, + 0.9448036807561278, + 0.6898414878270444, + 0.6419049674578321, + 0.8810873157003806, + 0.9443832845145906, + 0.8266871895827126, + 0.7916911921501578, + 0.8497467631669083, + 0.7133071109535478, + 0.6800305698942587, + 0.7811224585050692, + 0.8628141479288115, + 0.8032834643615319, + 0.816153934688761, + 0.9007955186085816, + 0.8888664604667943, + 0.847956391836371, + 0.7922841616878433, + 0.8232776502180053, + 0.7440086907872999, + 0.6702725740388651, + 0.8736409579560215, + 0.867437082436275, + 0.8208865948573723, + 0.8391622482573897, + 0.863908517864821, + 0.5660739046932736, + 0.7460406402560302, + 0.8584635228325691, + 0.8561087009502669, + 0.8882633749522864, + 0.8997277456551184, + 0.7516860970373733, + 0.8585328573942067, + 0.8734065114197269, + 0.9364077775326879, + 0.9139262869540293, + 0.8842344169897594, + 0.8640378540232898, + 0.7526229282075447, + 0.8971517398385592, + 0.8906879910229222, + 1.0, + 0.900290486873488, + 0.750165653151934, + 0.852942870892891, + 0.8672322995176935, + 0.6221001711891359, + 0.881054747144187, + 0.7576902744483949, + 0.8838466666748632, + 0.7907185931566147, + 0.7363007671938103, + 0.6672087226953725, + 0.7582073863289519, + 0.6382422051406457, + 0.8415861858635104, + 0.8884921055581182, + 0.8402937554655406, + 0.7445584113411952, + 0.8941785929848383, + 0.894050961018957, + 0.8816262231820942, + 0.8453373953597417, + 0.8262437856515097, + 0.6809948613526862, + 0.7681885470776496, + 0.8335526784883892, + 0.7909051355480056, + 0.6229381783882846, + 0.8266467832387447, + 0.8758886596556169, + 0.8551257948646773, + 0.871155167965791, + 0.7888974749549167, + 0.8799658970860931, + 0.9057986391325755, + 0.7846888642315691, + 0.8764058117931367, + 0.8056511047857364, + 0.878400250348051, + 0.8983526043395991, + 0.866597894498787, + 0.8713085537812539, + 0.835941909225836, + 0.8797689533506671, + 0.9355183147451169, + 0.8916589529745499, + 0.9073872458141609, + 0.9072900604024767, + 0.9291096773471758, + 0.8765012298603506, + 0.8789657854056913, + 0.7675828966385455, + 0.8187499904506784, + 0.9582986269756422, + 0.5761760793043537, + 0.8990707224397888, + 0.816633922446248, + 0.7233398837652842, + 0.8886614095638132, + 0.8145501564581195, + 0.9302799805407667, + 0.9007702033425026, + 0.8977370923209332, + 0.8522616154066632, + 0.8736461272685973, + 0.912015934980645, + 0.8719007929910089, + 0.8059818013236578, + 0.8703060392331374, + 0.9163445798371829, + 0.9050253727163282, + 0.9419534032901858, + 0.9070973241949978, + 0.8705409869676703, + 0.7409364770356915, + 0.8667538960520811, + 0.9273856387478054, + 0.8756548859251759, + 0.832703515149556, + 0.8672545404670872, + 0.7829993441800407, + 0.8707255275586432, + 0.8588222607267817, + 0.904385928170729, + 0.8890682329519943, + 0.8603389896102297, + 0.9107256610100064, + 0.7204910694540512, + 0.90784894531144, + 0.7515639149501171, + 0.7795407623044228, + 0.8352934030505019, + 0.8621586892372204, + 0.8801245342111679, + 0.7688446158132063, + 0.8878352897440799, + 0.9055983726385097, + 0.812870471126583, + 0.951301992572656, + 0.8346748572477399, + 0.6653848582070726, + 0.9189778998137722, + 0.8622227011556681, + 0.8643201310389591, + 0.7960076864874114, + 0.8562535379818587, + 0.8032749451428004, + 0.5760113755190913, + 0.8724371598257992, + 0.8890952028800877, + 0.9016075166678401, + 0.9422661571759597, + 0.9232060483176352, + 0.8926976196351581, + 0.6832751154422269, + 0.7425357799066553, + 0.7715027234171437, + 0.8774998536640229, + 0.9329780103287286, + 0.6541811707986666, + 0.8731988862820607, + 0.7520107436821478, + 0.8099773418646832, + 0.8070111733372177, + 0.7073268288601046, + 0.48051594951804816, + 0.7647805807842121, + 0.6897182260179702, + 0.7185924075849504, + 0.7690704287010188, + 0.6949266864661041, + 0.771402529345409, + 0.6290616754330224, + 0.650899399884075, + 0.8040658711809603, + 0.8801603522808906, + 0.7658090877416405, + 0.4189372196130903, + 0.8884648369705173, + 0.8314321706612604, + 0.6464455332131704 + ], + [ + 0.8770646414201827, + 0.7248309275442809, + 0.7235116895321017, + 0.6903131213190685, + 0.8301373698744878, + 0.7015656570290465, + 0.6599782359590369, + 0.9125601217541927, + 0.7690689987299673, + 0.796018358617112, + 0.7207451080421986, + 0.8319274133339001, + 0.8317047921637274, + 0.7415373641337364, + 0.8540995060269212, + 0.7855116822708152, + 0.7780009754402056, + 0.8715633704500966, + 0.8433855673114665, + 0.7927740306603865, + 0.9009179069834166, + 0.7217463119067369, + 0.8146719442774797, + 0.7911776416717791, + 0.7848316440487517, + 0.8517998928188656, + 0.8048636767052502, + 0.8596490931807063, + 0.7642390698548946, + 0.7517585432815251, + 0.8836298774931101, + 0.8439212081825391, + 0.8018494050123119, + 0.7358504953987958, + 0.7878242537129213, + 0.9100791717176474, + 0.9247740329280185, + 0.4683532050241191, + 0.8153502304913834, + 0.8876850632213491, + 0.7872889728964174, + 0.7055373560728521, + 0.36971957147882006, + 0.6747697834477936, + 0.7285019882446403, + 0.85078817201591, + 0.9371658344323062, + 0.8198306409682223, + 0.802829942719688, + 0.8584589474216581, + 0.8324091315625942, + 0.7317440734101113, + 0.7122122314732707, + 0.8260554771861699, + 0.7700594555395616, + 0.7963644475223765, + 0.8452767761625617, + 0.9221828913012018, + 0.547067253362202, + 0.9094809132176155, + 0.7415771458217235, + 0.9233980446855494, + 0.7953246439776178, + 0.8351775694910742, + 0.7282215051314386, + 0.6757112948750954, + 0.8338735205020391, + 0.8426169741541134, + 0.8124686885116845, + 0.8706774738729274, + 0.8815437046453841, + 0.7266567369619937, + 0.8740927720943331, + 0.9408546201870006, + 0.8698983844474559, + 0.8099687210974151, + 0.8081417205368229, + 0.7328409046497862, + 0.7884311448897735, + 0.8820973578975168, + 0.807933886782675, + 0.5465233721672008, + 0.8772507084402653, + 0.8377574847195272, + 0.9433719097156696, + 0.9525494290288063, + 0.9159293149484552, + 0.7341164496273159, + 0.5948362763729802, + 0.7708479559742968, + 0.8817422011092009, + 0.8130999690824771, + 0.7817091888649997, + 0.9135701232071965, + 0.8834183728580637, + 0.8723494580051097, + 0.8797716790062708, + 0.8352497273664274, + 0.816536053249331, + 0.8109777891809693, + 0.917290926138229, + 0.8933189882100192, + 0.8531947047602545, + 0.8448720191754572, + 0.9098682459332293, + 0.6995071268335299, + 0.7492273255716541, + 0.9306666651321069, + 0.8729081415692425, + 0.8959973927536058, + 0.9166508062802982, + 0.7464680046945047, + 0.9277963514995847, + 0.9018119300892647, + 0.9314175999155332, + 0.8938713782722284, + 0.9400353243246037, + 0.9101976655434152, + 0.7773032321255882, + 0.8137972986772195, + 0.9055543553151104, + 0.900290486873488, + 1.0, + 0.8329016656122828, + 0.8407086442289377, + 0.8788597567031816, + 0.5143118168066821, + 0.8467521945859395, + 0.7021850434346169, + 0.7731974491856457, + 0.7875448075154965, + 0.8311506703907685, + 0.7229644438230741, + 0.7373999546600084, + 0.6724012108828861, + 0.9566482857786457, + 0.9385072035141359, + 0.7250589809633137, + 0.7973395526376497, + 0.9055760694074368, + 0.9025561997968964, + 0.914527814093416, + 0.8995260041490997, + 0.9375371501870203, + 0.5686317397445801, + 0.7908298873362293, + 0.7999297226903112, + 0.7681726640708724, + 0.7050812059279686, + 0.8872137846744845, + 0.9078163169085254, + 0.9284235875123514, + 0.9499054512862004, + 0.8706630453887957, + 0.8097057428369062, + 0.8781795686172852, + 0.819873161149474, + 0.9157816534314903, + 0.9000918948170973, + 0.9426705171382852, + 0.9529731657067209, + 0.9061629304321699, + 0.9045301809175436, + 0.8592968319713221, + 0.9093725929635037, + 0.8969335876065787, + 0.9017441841722322, + 0.9085313682354135, + 0.9240221429586785, + 0.9301084855000886, + 0.8779640089553297, + 0.8957564512349548, + 0.7854095625275799, + 0.7345499384103099, + 0.8903990823184377, + 0.6558015161500033, + 0.918310572588522, + 0.7380434155108819, + 0.9092762989798602, + 0.9097016971868305, + 0.8203729717540127, + 0.9171718993985455, + 0.9131762661662939, + 0.9201735951699265, + 0.9151628158909756, + 0.8675463966661766, + 0.8754849361689007, + 0.9111264093867089, + 0.7961465436656596, + 0.8755553176848687, + 0.8942989426850159, + 0.8417743192775001, + 0.8444946576780483, + 0.9012585410039016, + 0.8291598272208333, + 0.7833777057372576, + 0.9087663641515044, + 0.9117245140419696, + 0.8022996479665783, + 0.6883942336807151, + 0.9319909846524446, + 0.8478341941150983, + 0.9114474341970148, + 0.7988704489654009, + 0.8736242554900387, + 0.845733843923041, + 0.838203638945391, + 0.8325024312358671, + 0.6504891440065877, + 0.8222220843528343, + 0.7740284546100181, + 0.8553119631446726, + 0.9076970306617572, + 0.9223395705293745, + 0.8432298781976937, + 0.5914917561271698, + 0.8226810512558191, + 0.9243150044066911, + 0.908121667031507, + 0.8831294520952463, + 0.8064305688768719, + 0.6553990045297171, + 0.8072432441361427, + 0.864753413468472, + 0.8875659646540761, + 0.717111445674017, + 0.8341727093910956, + 0.8213432996315948, + 0.8092734840143958, + 0.9270374024694914, + 0.8902827899136115, + 0.8868800877145409, + 0.9413185245054828, + 0.8818661605412956, + 0.8786180038120703, + 0.5351156445297713, + 0.6089730989667431, + 0.8436980230891578, + 0.9000456126717986, + 0.8850353678418336, + 0.7481137842715192, + 0.7938179064633957, + 0.7154029211676912, + 0.7516473588005809, + 0.7462172589845588, + 0.7592337063977824, + 0.7221028434546545, + 0.700109904484747, + 0.7171334210056354, + 0.8301045899167234, + 0.7934561771798487, + 0.6018242293689187, + 0.7366289256895959, + 0.7128858427908177, + 0.6917781315851069, + 0.8653929782095292, + 0.8381648357720585, + 0.7353141916715226, + 0.6499089263531601, + 0.9211153533987383, + 0.8246138665482325, + 0.7128357848606067 + ], + [ + 0.8100550418825665, + 0.6194127870536512, + 0.615373154780326, + 0.6046692088319319, + 0.7169576512958412, + 0.6344639307286098, + 0.6492628117532612, + 0.8632996445528522, + 0.8857428497025246, + 0.7225695901525269, + 0.6933787703791561, + 0.7279369004914733, + 0.7133949500456286, + 0.7140319057238578, + 0.8570287995818978, + 0.8313200332060767, + 0.886576543199769, + 0.8249860979913122, + 0.8213751418601201, + 0.6599252451596059, + 0.8420952937170905, + 0.7556329292073632, + 0.6612471147265411, + 0.755194913341884, + 0.8906281852100142, + 0.7999344191225255, + 0.5506634601635033, + 0.8146730924868394, + 0.7508705303136544, + 0.758934229723375, + 0.8681548941920149, + 0.6924759739237202, + 0.7642514554391026, + 0.6904478098632318, + 0.6493490740921901, + 0.8756353311630728, + 0.8042339669870124, + 0.36701468833088946, + 0.8707873050044438, + 0.868863542992112, + 0.7307774664643687, + 0.5831802766431506, + 0.41745631275846146, + 0.5863708913968801, + 0.5979053735777672, + 0.6499288043892408, + 0.7573274209896489, + 0.7261899752416884, + 0.6737452567310567, + 0.7021270452578829, + 0.871160086801413, + 0.7154158579844249, + 0.8034722663035949, + 0.8561831679695892, + 0.8277724875284526, + 0.8480489964200614, + 0.8697480236072003, + 0.8085396207342251, + 0.4050185043937096, + 0.723388079872824, + 0.9216197289812428, + 0.8281988026497319, + 0.9152201286040362, + 0.8658371147055486, + 0.6298227970459644, + 0.6026188488907963, + 0.738906969935461, + 0.6338001952582342, + 0.6262393469470783, + 0.7297531909400149, + 0.6919065206824652, + 0.6784563727850605, + 0.8159684106988792, + 0.9127666987933487, + 0.7382268921110644, + 0.6766808778963672, + 0.621738139446309, + 0.6553511511267995, + 0.8743561878136603, + 0.7825544652126688, + 0.7348104220235068, + 0.5044858084555278, + 0.7945222036774365, + 0.7007593042701933, + 0.8957925923872286, + 0.8563594772003306, + 0.8815638048679625, + 0.672976351253104, + 0.53349849483893, + 0.6306629292385494, + 0.7906915793822066, + 0.6646058563169522, + 0.4608451769130863, + 0.7107215148948902, + 0.7263879048366616, + 0.865660156484518, + 0.8424377187968449, + 0.706332061989645, + 0.6458761238662786, + 0.6820327570399215, + 0.709361639919286, + 0.883249156748466, + 0.8195282606212521, + 0.7038783449313584, + 0.7421710371172573, + 0.7278701282161618, + 0.6612598480782923, + 0.8213169476358425, + 0.6735931343635116, + 0.6937662332011105, + 0.7173067635096918, + 0.7513939233290097, + 0.8456912458128762, + 0.8670446917788854, + 0.8337817421221441, + 0.7927769151694006, + 0.7866028853615917, + 0.833401954740994, + 0.7209648521985701, + 0.7092418947870696, + 0.7097808614052175, + 0.750165653151934, + 0.8329016656122828, + 1.0, + 0.8289382350444471, + 0.8253422856228965, + 0.46487041185388145, + 0.733587958647795, + 0.6062458238383622, + 0.6381018378899975, + 0.8403037731720894, + 0.8192079981318444, + 0.7904895385881157, + 0.7326759892225443, + 0.6934443634393971, + 0.8444579320559233, + 0.7952030952198895, + 0.6234003863473309, + 0.5782982859337126, + 0.7480331121154774, + 0.8301196747924056, + 0.7669643351471811, + 0.7283249215044478, + 0.7774091237526891, + 0.5301364350788149, + 0.7362170209109699, + 0.5892245788690427, + 0.4863561417848654, + 0.46527152982151204, + 0.6626875122843993, + 0.7942962434870374, + 0.8002024203345457, + 0.8023048842917982, + 0.8150860377550851, + 0.6379884069884926, + 0.7002969359349897, + 0.5919743531996222, + 0.8181926732024768, + 0.8864201579572311, + 0.8942731760082544, + 0.7912752333457519, + 0.7289066452696342, + 0.8003551061741059, + 0.5940345384139882, + 0.7311784183187322, + 0.7238894250712524, + 0.6801485276282601, + 0.8109587671559242, + 0.7584905315646513, + 0.766848488127659, + 0.6773847919724986, + 0.6869494502015094, + 0.7404521391831603, + 0.5803699207416915, + 0.7726342767400922, + 0.56557211485706, + 0.7574662009665745, + 0.43533057407033204, + 0.8232295201590437, + 0.78272853339447, + 0.8144249708549803, + 0.7344422927655809, + 0.7061544673183642, + 0.7339638266002512, + 0.6742005818402798, + 0.7483520378967083, + 0.7915647208155004, + 0.8713413480039813, + 0.7091019413323982, + 0.7786300551984964, + 0.7949758556585141, + 0.6658641514705597, + 0.7398470480331845, + 0.7319106361956408, + 0.6340747076940233, + 0.48659196995269655, + 0.8025541925855558, + 0.7524454793592712, + 0.5483351775944784, + 0.6252826523094649, + 0.7350453037415743, + 0.8907968427527705, + 0.8253041472791657, + 0.5789941861721872, + 0.6541596113834784, + 0.6812624592599482, + 0.7021046581275745, + 0.7024391154140235, + 0.5323980713072434, + 0.6033618991333276, + 0.5881842588559499, + 0.6732288049596005, + 0.6833335841873739, + 0.8282866102963193, + 0.627837201109068, + 0.5086680111094335, + 0.5937071254253614, + 0.7468356368409491, + 0.6595621358999447, + 0.6697109455333409, + 0.5207551383500566, + 0.4500450854258617, + 0.6219722537383618, + 0.7949445541541632, + 0.7191524043138277, + 0.7132955213787676, + 0.6006180165407747, + 0.601027284064739, + 0.7646409619250185, + 0.8262228273434746, + 0.7219031335654358, + 0.6911296955274824, + 0.7732967496669338, + 0.6894495362124261, + 0.6834464141249128, + 0.45393473646687016, + 0.5014570764888927, + 0.6343671374624418, + 0.7954680541052841, + 0.7073583662174756, + 0.7825311164228027, + 0.5825619327497228, + 0.5293305252332723, + 0.5472259567580094, + 0.5268678520729289, + 0.8727019060710264, + 0.7363516380638807, + 0.5480951440317899, + 0.49259173210839674, + 0.6191334999341921, + 0.5870546804120775, + 0.4245575509492814, + 0.6116453216703432, + 0.6997099281509714, + 0.5884062187170681, + 0.8783793411010007, + 0.6195930076019657, + 0.7759610025939506, + 0.746125468878472, + 0.7591239607603395, + 0.6901687750106881, + 0.441340502423674 + ], + [ + 0.7476945592482228, + 0.5759881481225317, + 0.6444755436800736, + 0.7817007327258394, + 0.6984245475608573, + 0.5918944647333292, + 0.5425885241978708, + 0.752331425830519, + 0.8375459110638234, + 0.7141563391664218, + 0.5845996109156449, + 0.7053319366629641, + 0.7670103023835019, + 0.5627452237141874, + 0.8082689746060665, + 0.8045798093889031, + 0.7428584779130457, + 0.7948037415320947, + 0.8281071454056911, + 0.7166583005099881, + 0.766721730357651, + 0.6996848232985505, + 0.6559731415475217, + 0.6850170343678018, + 0.8114982413949753, + 0.7790133779087597, + 0.6264758787512957, + 0.7884568160143003, + 0.6940783904928484, + 0.68148362858001, + 0.8108767073170916, + 0.6249723832866059, + 0.6253460263460211, + 0.6165302610300865, + 0.7438596545244491, + 0.8109443381362789, + 0.7073883728937995, + 0.6406818875777537, + 0.8148217470056893, + 0.8872057158653958, + 0.7076500808981078, + 0.7396484211324521, + 0.5144464376804654, + 0.62942743046712, + 0.6956672615627624, + 0.6922450270428361, + 0.7549569554462338, + 0.749495019914897, + 0.7837573110669271, + 0.748016796134255, + 0.7536851235071684, + 0.7885675970093005, + 0.7514156645561542, + 0.6883397943379495, + 0.6587220235283636, + 0.714115289084293, + 0.754446469509968, + 0.8705011626026004, + 0.6646919234871141, + 0.6506358278965725, + 0.8299449453411667, + 0.8824140107255702, + 0.8420672708386021, + 0.7654768897001905, + 0.7098921342351828, + 0.7336532412133078, + 0.7791411427212767, + 0.7873616661606664, + 0.5109611503070542, + 0.6046403249863872, + 0.7143267164066536, + 0.6700910830460581, + 0.8284075003824946, + 0.8999617288395877, + 0.7070158849959742, + 0.7793468600756485, + 0.7402747613635144, + 0.791499806987921, + 0.7756324976892385, + 0.8815398610718953, + 0.6153194425184495, + 0.6745339216641231, + 0.791462894117205, + 0.8399860409078802, + 0.8119971669763836, + 0.7891984215638477, + 0.8836732730870047, + 0.7992803017220604, + 0.7193001753608329, + 0.7366575147867663, + 0.7972991383680461, + 0.7119626840148341, + 0.6483060549520443, + 0.7424004789892727, + 0.8108691315119065, + 0.8824234582029489, + 0.7784812500306737, + 0.784449452641368, + 0.6148062865470107, + 0.5497131772354926, + 0.7555425974341544, + 0.8794402844602531, + 0.9499778600429017, + 0.7574456818332834, + 0.7230568537046715, + 0.6423779349587881, + 0.7198158133531343, + 0.8491886614893397, + 0.7908468529581231, + 0.7889887871125244, + 0.7378580135903542, + 0.8555922025733466, + 0.8332618402527897, + 0.8465744299823408, + 0.8721746928290814, + 0.8890214222469282, + 0.7678903259654258, + 0.7818191606230122, + 0.8136920303482387, + 0.7854647643566279, + 0.7729893110494185, + 0.852942870892891, + 0.8407086442289377, + 0.8289382350444471, + 1.0, + 0.9359894844058937, + 0.6470356163092632, + 0.7234466946497692, + 0.8348073748290533, + 0.7155214042717711, + 0.9270209773046921, + 0.8617072908889812, + 0.8701637817121185, + 0.877160832534169, + 0.687329523229879, + 0.7950705629021382, + 0.7625124727210156, + 0.7451860739950765, + 0.6113482356404026, + 0.7740552622712878, + 0.8235726430977838, + 0.8132852304821674, + 0.7501002468776689, + 0.7466558009268299, + 0.7534702778794494, + 0.7400504364076603, + 0.6784159365328376, + 0.5834941562702474, + 0.5090846440717168, + 0.6215196459970335, + 0.76333539890599, + 0.7233021506933247, + 0.8049706338197316, + 0.8978597075064134, + 0.7499156493934178, + 0.8172754942958363, + 0.6473704206845411, + 0.8395383626113462, + 0.8082108615359614, + 0.8418148821533821, + 0.8075753510881691, + 0.6995389448953786, + 0.8377090412948062, + 0.6378255856679137, + 0.7353713086525503, + 0.7746373688672326, + 0.7095287685460501, + 0.864662675874525, + 0.8149899901998713, + 0.8651338030266932, + 0.7810452475120673, + 0.773093600177234, + 0.8356170490843422, + 0.7726056923623948, + 0.8306272133116972, + 0.5266262200845757, + 0.7698285483777787, + 0.6273209827265098, + 0.6738787713131384, + 0.8025545177493528, + 0.7838734579364333, + 0.7796779880004476, + 0.7227587874729846, + 0.783971647255209, + 0.7197971368727275, + 0.7866381913625525, + 0.7854450331826539, + 0.8339290406428563, + 0.8914365548761897, + 0.7429477592912096, + 0.8020365326298325, + 0.7368080594215924, + 0.8128812829644925, + 0.7569096089563517, + 0.75680597682066, + 0.6015486656067971, + 0.8529588111581948, + 0.8196072276323704, + 0.6988046399038222, + 0.7283915394381013, + 0.7479431078362175, + 0.8474339445636696, + 0.833867161715899, + 0.7161952347220473, + 0.732018488255733, + 0.7560765074590234, + 0.8444225010959736, + 0.910888864264244, + 0.7226783758564498, + 0.761676021947224, + 0.585302343475847, + 0.6598847191402317, + 0.7122720250047911, + 0.8969385059252454, + 0.8023522382182239, + 0.7528128769963989, + 0.853011458911221, + 0.7846032416053799, + 0.6812593780963233, + 0.7943829865916612, + 0.7186005939202798, + 0.42470713716736763, + 0.768522427895821, + 0.7990185586588945, + 0.7907210802561554, + 0.864917230076429, + 0.7353030753235218, + 0.6622690398643679, + 0.5930560314706372, + 0.8009184489673521, + 0.7859007890835512, + 0.7879123412435861, + 0.8346625789701512, + 0.8480989387802904, + 0.7618450575338679, + 0.6233572216955173, + 0.6526665630369562, + 0.6993902556361902, + 0.8163441176402841, + 0.7463201564355104, + 0.5790803252660088, + 0.7493835857564615, + 0.6644999797372085, + 0.772381393204158, + 0.5743001152870952, + 0.7713396016675658, + 0.5663379189203347, + 0.6273596724584009, + 0.5173612000877473, + 0.7325265493158155, + 0.6531341390137935, + 0.6381405288005016, + 0.7480690276267848, + 0.7988814399402853, + 0.6571862117380772, + 0.8703124019395525, + 0.7854784191536559, + 0.74345470669023, + 0.5120461526109464, + 0.7953080038298976, + 0.7696944495948088, + 0.5366045921711473 + ], + [ + 0.7070613341358527, + 0.5553006651327563, + 0.5964787087293747, + 0.7574642213539364, + 0.7122259706035178, + 0.5750171098636405, + 0.5953492164751223, + 0.7618127472774293, + 0.8117177145358538, + 0.8003738596176305, + 0.653735500251297, + 0.6635878240942681, + 0.6753382571748648, + 0.5861455659140381, + 0.802745048959491, + 0.7616361379250707, + 0.7102990117584584, + 0.773094382942708, + 0.7846300594310759, + 0.73121467483788, + 0.7696100392530084, + 0.676469169370729, + 0.662663556195087, + 0.7268569333527922, + 0.7342280856497273, + 0.7140079230625985, + 0.5796708368337172, + 0.7703329045276094, + 0.7007745245721938, + 0.6224743705734517, + 0.7267158815788252, + 0.6638449229409242, + 0.6202599450840737, + 0.5909158763421721, + 0.7529608968534723, + 0.7850456372891781, + 0.7589210922734315, + 0.5434996380565037, + 0.7181286091222691, + 0.8537828431091614, + 0.611931446404852, + 0.6024828991784758, + 0.35060434411888947, + 0.6251036671534766, + 0.6478263064127028, + 0.810687559821531, + 0.7826096350129813, + 0.7699478567613126, + 0.7999268705505794, + 0.779746322283042, + 0.783252431031849, + 0.7378123498576309, + 0.7282847951462121, + 0.649280132512404, + 0.6126290312294437, + 0.670364209576304, + 0.7095866410516677, + 0.8031151299566645, + 0.6271087899204468, + 0.7132347837288389, + 0.786400789114637, + 0.8689977996734635, + 0.767143248330128, + 0.7359415611066438, + 0.6768912920517378, + 0.7192123066941333, + 0.7906392398544305, + 0.803734649670664, + 0.5418005090415712, + 0.6157615468191519, + 0.7659304923562152, + 0.6873591888279549, + 0.8037601614241453, + 0.85258281154729, + 0.7493765985174974, + 0.7373314429912028, + 0.7057597296023489, + 0.6940109796439983, + 0.6979024798362391, + 0.8159702612846741, + 0.6143645676085074, + 0.697354371606105, + 0.8523464083070409, + 0.7855414911510923, + 0.8075571809560348, + 0.7974290220761313, + 0.8637246024234134, + 0.8140657337925294, + 0.7326065711768623, + 0.6729288584297711, + 0.7713292906223337, + 0.7211320877400839, + 0.6791400186430614, + 0.7471253261347129, + 0.8405855269034176, + 0.8311653000838904, + 0.7694649223890054, + 0.8019321407719066, + 0.6828442353677159, + 0.5914977637406705, + 0.7520898785267417, + 0.8591332055946387, + 0.9005969256384884, + 0.779104118902341, + 0.711739992566265, + 0.6786374621443789, + 0.6906658210451934, + 0.8761510117039084, + 0.8402715595870427, + 0.792887297503589, + 0.7774868899077275, + 0.8623884029700699, + 0.8037948276839407, + 0.7763391123260074, + 0.8375452985872565, + 0.8572131734023484, + 0.7712909328537917, + 0.7573889073805987, + 0.8642349367307032, + 0.7759330184171861, + 0.7521174009490413, + 0.8672322995176935, + 0.8788597567031816, + 0.8253422856228965, + 0.9359894844058937, + 1.0, + 0.700649171388073, + 0.7194809130392591, + 0.8310606458072264, + 0.6577022164070319, + 0.9194133592090667, + 0.8969209245268438, + 0.9169836247409073, + 0.9133225791372508, + 0.6885401037667251, + 0.7732349793868545, + 0.8051366715500639, + 0.7486189531223363, + 0.6730010124833792, + 0.7917637138597101, + 0.7861436042475772, + 0.8174240407950333, + 0.7314183170146917, + 0.7977911811149413, + 0.7349998650264405, + 0.7301579283457167, + 0.6758563167798851, + 0.7027959934451768, + 0.6315551899597631, + 0.6504465953488789, + 0.7490282813493402, + 0.7559272871730841, + 0.7845144780928596, + 0.8920171584804433, + 0.7815026168265429, + 0.8108673626659568, + 0.7201966753691073, + 0.876982472502294, + 0.8529356301347369, + 0.8258465714076288, + 0.8441124206133138, + 0.7693917258975566, + 0.8748648384012375, + 0.6884615900756448, + 0.7285345200653144, + 0.7766373499409119, + 0.7485719897754889, + 0.8722878232597482, + 0.8191892448062307, + 0.8754749341806182, + 0.8290512275947233, + 0.8080213412936009, + 0.8368932560870572, + 0.6204820955732493, + 0.8104433043962774, + 0.5726698901093091, + 0.8293666399531826, + 0.6491066032747158, + 0.7151687846523392, + 0.8278717434466338, + 0.7643341998377225, + 0.7846711402145091, + 0.7760713953947588, + 0.7780004268941849, + 0.7593045878065227, + 0.7813896410395866, + 0.8040626478969023, + 0.8232489074432573, + 0.8896499671194262, + 0.6985826379218949, + 0.7843564573144821, + 0.7255044972709679, + 0.7751949408921375, + 0.7279724174770524, + 0.7456153978292215, + 0.6635718906432353, + 0.8694104698443241, + 0.8648914126952418, + 0.6803725766136088, + 0.6419528507714711, + 0.8168701242961316, + 0.8863197169027663, + 0.8119185186066207, + 0.729238412293171, + 0.7592713420963226, + 0.7017861696013121, + 0.724247827447696, + 0.8722187443236654, + 0.7949998768682992, + 0.7437094965290558, + 0.6376283254013513, + 0.6909909617083638, + 0.7127501594946469, + 0.9138115632854663, + 0.8398355456807922, + 0.6593690039422475, + 0.8637312880874847, + 0.8128384279898663, + 0.6915418261146896, + 0.7893288388776819, + 0.7317970278016362, + 0.5212522639721783, + 0.7530384214176643, + 0.7755679944739162, + 0.8428842159330934, + 0.7639306031390545, + 0.7203102855511525, + 0.630717547781084, + 0.7037891128533719, + 0.8214238073809069, + 0.8024718240964115, + 0.8115405247391643, + 0.8269911938428642, + 0.8790557417616044, + 0.7612730722323088, + 0.5559783601649197, + 0.5440575983002274, + 0.7034639585800261, + 0.770370000999384, + 0.7200402784925952, + 0.6245476409627886, + 0.692470251410577, + 0.5759737682776417, + 0.7868382009999295, + 0.654411412958129, + 0.7044098712274277, + 0.5714205397405182, + 0.7007634338132794, + 0.6131127189723662, + 0.6703999525266194, + 0.7511246194336406, + 0.6872053159811752, + 0.6608252257515747, + 0.709138585569105, + 0.5821603463569136, + 0.7888914241621898, + 0.7816712416749321, + 0.7296978548844308, + 0.5525238587906781, + 0.8171341488969415, + 0.7960076400054876, + 0.5546968399242057 + ], + [ + 0.3265992994938507, + 0.2506272229345835, + 0.24069764399183646, + 0.8205868346760561, + 0.7259780562797983, + 0.6179017199662605, + 0.42268092816196046, + 0.33338693213809684, + 0.48047702676879855, + 0.5614372416985346, + 0.3449504087866401, + 0.4462858032446997, + 0.3873861305326858, + 0.6011252256395171, + 0.5439307150969311, + 0.7119596413174144, + 0.345486316526595, + 0.4634795495327365, + 0.7415536914169315, + 0.5250659167805619, + 0.45876287274768557, + 0.7421901347208498, + 0.47460507314478334, + 0.5909419230483826, + 0.38862859979128767, + 0.6107166491027887, + 0.2904542481511613, + 0.43896306845082295, + 0.6703094134636713, + 0.45465362620090916, + 0.4148924107191288, + 0.3724566598582537, + 0.46816465406268537, + 0.36909789160785916, + 0.600480324981741, + 0.5786193560028158, + 0.46136020080179707, + 0.6771107264818385, + 0.35361515408788324, + 0.5248165546900275, + 0.36017952793165825, + 0.41420809142089887, + 0.4747033049502828, + 0.6042584768519317, + 0.4698505587879909, + 0.6160237024988804, + 0.4437061968667599, + 0.5503789247100223, + 0.6660423973412332, + 0.5112523153348145, + 0.4949270822500394, + 0.7726714643811846, + 0.7405970138686144, + 0.4814444132642552, + 0.37503340451269557, + 0.476330306414048, + 0.5417060010850389, + 0.5027967562527623, + 0.7958284997861794, + 0.3930106668452959, + 0.5442315795665867, + 0.6466664965726915, + 0.4858638682036666, + 0.5494468316158686, + 0.4778893835426646, + 0.6325210417376403, + 0.7028282963454642, + 0.6389103885180933, + 0.2889604669426809, + 0.30831295682527904, + 0.6465951621046362, + 0.7046817550136487, + 0.4153098696112655, + 0.4375903884329377, + 0.5568676892172212, + 0.4917899372095852, + 0.45531839992948775, + 0.7249144906552486, + 0.3527465323673669, + 0.5404919261434512, + 0.44798482955144453, + 0.9014291456988153, + 0.475820606255812, + 0.5995867067356073, + 0.4297651676935669, + 0.35937508525135775, + 0.5919825736438569, + 0.8509946595039687, + 0.9322451595286253, + 0.705620893489368, + 0.4852687533813573, + 0.537282830540359, + 0.5974951792897295, + 0.5071047260474039, + 0.6102352809874629, + 0.6229876378338292, + 0.38538411276271645, + 0.8415220136479866, + 0.4349161245011958, + 0.3184864366385842, + 0.5225966927941686, + 0.6451304595165744, + 0.6344687986218799, + 0.7803015754937945, + 0.410881670191987, + 0.41340447701362, + 0.7403815230131111, + 0.5701053669405147, + 0.7512096724027637, + 0.49053450799493137, + 0.5400897019510529, + 0.6733091553609849, + 0.3120416099395379, + 0.4667317983470237, + 0.6176471078333019, + 0.7111145603748512, + 0.48825776891681283, + 0.47774189207867723, + 0.5486015044570792, + 0.591063913903815, + 0.5221694145631985, + 0.6221001711891359, + 0.5143118168066821, + 0.46487041185388145, + 0.6470356163092632, + 0.700649171388073, + 1.0, + 0.5278774188841513, + 0.794636095955789, + 0.46775424878352345, + 0.7120357131063481, + 0.7427357984223667, + 0.6740535551003428, + 0.858898735784029, + 0.38159559354613015, + 0.41255131004563206, + 0.5883502916053343, + 0.6043222022535648, + 0.39781661675173563, + 0.5776876820742104, + 0.6242537405672851, + 0.5264654315141077, + 0.4653590449141762, + 0.5678592143650051, + 0.9115118195162035, + 0.588013732873688, + 0.6518640671696863, + 0.6683004650433612, + 0.6349540391986301, + 0.31781917727727976, + 0.4772797269266606, + 0.522685613360143, + 0.43605061674041345, + 0.4763258044454934, + 0.6765577333720671, + 0.6149535904322643, + 0.46233394953223134, + 0.7144446660185496, + 0.5247731423055975, + 0.5002896425636365, + 0.574034544776606, + 0.5828797399954064, + 0.5937346506700992, + 0.3683457461623454, + 0.37084481226248434, + 0.516362947477228, + 0.44586018306493713, + 0.7195566234304993, + 0.6559877766880413, + 0.6471319201230432, + 0.6339533754108663, + 0.6488978366904967, + 0.5298674778455853, + 0.40371021476706886, + 0.5839483659852368, + 0.517861925445881, + 0.5653723149387153, + 0.6369598216366575, + 0.2948050981680717, + 0.5710155889451911, + 0.6229599699104195, + 0.5647284515983272, + 0.6040970979425019, + 0.4746116876521026, + 0.5108983509175286, + 0.4859307302310765, + 0.6133016185409357, + 0.40312903184324433, + 0.5756532387854334, + 0.26847498745971815, + 0.47586030437718824, + 0.39095975649698445, + 0.5793464578442838, + 0.4406428882323488, + 0.5390308450149609, + 0.3057026639407477, + 0.6257935701026998, + 0.5755231815173518, + 0.48584888654570185, + 0.6094599405498333, + 0.6064470404403454, + 0.5309086783154543, + 0.48301791068356764, + 0.5204103997735443, + 0.48742118438910687, + 0.5072270410358606, + 0.5142699055105455, + 0.7187783849621268, + 0.9179674828006784, + 0.6084315004033249, + 0.43771139203385434, + 0.4185532171499906, + 0.387746022832521, + 0.6442894214172854, + 0.6687970173446917, + 0.5828991985758595, + 0.6571851611715489, + 0.4434803290933486, + 0.3167532104372269, + 0.6219181458732023, + 0.3923462038083471, + 0.4370783768365099, + 0.6025735137261872, + 0.5333823416611162, + 0.647645974752378, + 0.5335195426802998, + 0.5023956140154741, + 0.389141450246846, + 0.2898215849155078, + 0.4054412713684167, + 0.6355960286916913, + 0.49822571098826013, + 0.5890913593658221, + 0.7054203386884824, + 0.5870974697028303, + 0.5838385057517869, + 0.39740775623590574, + 0.4882106954302273, + 0.5527378141708961, + 0.4820096883807819, + 0.44362365250568125, + 0.5921448067414669, + 0.31482098187245344, + 0.7607347009265218, + 0.48076865907679583, + 0.482909841316118, + 0.1472655570115413, + 0.6659662122676984, + 0.5312015612460078, + 0.3052468988777742, + 0.5446383526799857, + 0.8251166926379032, + 0.7043797371805106, + 0.574330904479883, + 0.701653999261748, + 0.3889767885741457, + 0.5971332050757553, + 0.619400404739874, + 0.2929201303352079, + 0.6724215400287455, + 0.5729429277481636, + 0.37438429749256147 + ], + [ + 0.7371188771324023, + 0.6398199753712154, + 0.7760343501319988, + 0.7113013462909695, + 0.8126489292910293, + 0.8461981310056805, + 0.6578532500634776, + 0.8395174364347726, + 0.5842944319736505, + 0.7369744972737018, + 0.5971685158007993, + 0.7655972119073022, + 0.877428597436683, + 0.6667403755367303, + 0.8575741445977185, + 0.6827490703859375, + 0.6128138229979312, + 0.8701651743163591, + 0.8173211948291557, + 0.820080607636125, + 0.8883826697056277, + 0.7200114621064975, + 0.8845776620626988, + 0.7947175298839376, + 0.5754681500489748, + 0.7995650055372849, + 0.8565106969877488, + 0.8628721576674276, + 0.7286722142482316, + 0.5591486833676289, + 0.7621468328699701, + 0.6773317556284696, + 0.8442407016278372, + 0.7714382269473159, + 0.9036577870039519, + 0.7964275443525062, + 0.8835886407371105, + 0.4256641597135647, + 0.6690769145640276, + 0.7735496673984144, + 0.8606634261459291, + 0.7576007498870253, + 0.5216240458569905, + 0.8641463491430944, + 0.8675342042269413, + 0.7910612347650183, + 0.8298901569577147, + 0.7559949104497983, + 0.9316463192689873, + 0.7456553044579702, + 0.8483353805507854, + 0.7737171163688121, + 0.6848540957657102, + 0.7307811738876437, + 0.5449659474523625, + 0.6450841853984247, + 0.7594387907461746, + 0.8528493741443122, + 0.6057448994596335, + 0.8363278375295927, + 0.5684130495798163, + 0.9166715865967676, + 0.6663515213565938, + 0.7362789606753319, + 0.8638400946795477, + 0.7004790857960629, + 0.829090624287866, + 0.8762768046073915, + 0.7944661212382338, + 0.7438966180611857, + 0.8206476334816665, + 0.7360445877197701, + 0.7954714870638564, + 0.7931105161099983, + 0.9324974751185865, + 0.9077384370386082, + 0.8949469906610351, + 0.8386586233753158, + 0.7587854093318378, + 0.8473234679928976, + 0.8160574216053413, + 0.5755046251643663, + 0.7602030206088346, + 0.8623077488540746, + 0.8124822024857736, + 0.7863999955834754, + 0.8376530614902694, + 0.7151863986764726, + 0.5947907880556073, + 0.7745010377533676, + 0.9308932683857574, + 0.9095902130638834, + 0.8749694115229346, + 0.9470479511555762, + 0.9153445153471976, + 0.7472941849127213, + 0.7579197556211839, + 0.7526574791372056, + 0.8707088027458573, + 0.8180925941368671, + 0.9431198519552733, + 0.7891086840597569, + 0.6684789465963179, + 0.7898589379530129, + 0.9350187844150125, + 0.7506708613046313, + 0.7763110649646379, + 0.8705643173871888, + 0.7967025793800535, + 0.9204089106177076, + 0.8479277451458871, + 0.7158664711806658, + 0.8440913773838573, + 0.8935450471543936, + 0.8534916756922719, + 0.897763363961569, + 0.8458425299793183, + 0.9379390555173872, + 0.7161161377795281, + 0.916284277133312, + 0.9154254564373139, + 0.881054747144187, + 0.8467521945859395, + 0.733587958647795, + 0.7234466946497692, + 0.7194809130392591, + 0.5278774188841513, + 1.0, + 0.7231706644361926, + 0.924893877981125, + 0.7255680112015689, + 0.7292952194935778, + 0.5291328356847234, + 0.6369292450267943, + 0.7724021422387748, + 0.8333511504095117, + 0.8600835765974713, + 0.8881946239590585, + 0.6863684973651547, + 0.8953222116678178, + 0.8714790957036072, + 0.912366362876323, + 0.8619048348468714, + 0.8437268140873025, + 0.617842711908881, + 0.9128085418505553, + 0.8794228828213954, + 0.7611181743149481, + 0.562051524569975, + 0.8351822942243177, + 0.8426319655716121, + 0.8342324665987522, + 0.8386283290072778, + 0.7209974311927078, + 0.893652985732277, + 0.8708702357663956, + 0.6763374859900542, + 0.8589307115504209, + 0.7634203681332219, + 0.8266212082458, + 0.885928806067189, + 0.8707709534979917, + 0.886246495126566, + 0.8683979978556082, + 0.9180798837178866, + 0.9234056878658353, + 0.8757582513191521, + 0.844865936516022, + 0.8841665856484442, + 0.8804580749616574, + 0.8689845185786325, + 0.8698441249937952, + 0.7026977044888264, + 0.7988926584482176, + 0.9284883112985663, + 0.5273871303642839, + 0.7936838085411702, + 0.8046070332181606, + 0.7773759991387484, + 0.810962249483128, + 0.69391542472773, + 0.8998595382829168, + 0.8460522760406801, + 0.9237556268067008, + 0.9014583387073594, + 0.8986285081480962, + 0.9331637426755107, + 0.8681386245952881, + 0.7272826730995818, + 0.8528186176323553, + 0.88819116293446, + 0.9121181019704616, + 0.9200949679419893, + 0.8956970111627025, + 0.7882225467646028, + 0.7367490639131747, + 0.892682048950985, + 0.8540524548817718, + 0.8470610318411053, + 0.7410974692228385, + 0.8727167872918153, + 0.6792544926910611, + 0.791318692640427, + 0.8116360645402372, + 0.8567591011323883, + 0.9196751790021023, + 0.8421337519760947, + 0.8272250526944063, + 0.6430107487834991, + 0.868851769230153, + 0.8686173361769606, + 0.7735547441588723, + 0.8481768456925803, + 0.8448038850516872, + 0.8584383403359016, + 0.6470549180674808, + 0.7243639187638122, + 0.8545499071241994, + 0.8068563592079037, + 0.9045923292737936, + 0.8364194202248868, + 0.6181031626263433, + 0.8793291585964214, + 0.8641593684873535, + 0.7034276470130648, + 0.7294999092235652, + 0.8248140484638471, + 0.8534541485727218, + 0.6530073228279399, + 0.867909201577143, + 0.8120529465203873, + 0.9134020355489251, + 0.9260219772236071, + 0.85428945860921, + 0.9173565072419433, + 0.5791759073362138, + 0.625102128232785, + 0.7170787640500265, + 0.83908716421251, + 0.8926688813315274, + 0.7143427161449691, + 0.822000343853457, + 0.8217851642710251, + 0.7034730714402542, + 0.8379827929614659, + 0.5775668700343634, + 0.6391164532206544, + 0.5488792859695723, + 0.6026902015474256, + 0.7906472511193916, + 0.6399943363624213, + 0.6686761913439603, + 0.7965560318121391, + 0.7224811798925003, + 0.6897483317913822, + 0.807733758332431, + 0.8576067699188535, + 0.6551825457010844, + 0.6293166969364167, + 0.8405277051375368, + 0.9116919723583887, + 0.6154094163108578 + ], + [ + 0.5019337236879492, + 0.5101010776358899, + 0.6298879022963174, + 0.8753216358476987, + 0.7036851292934534, + 0.6656938897914843, + 0.5513757889622365, + 0.5449349051145009, + 0.6886007110889384, + 0.7032484191714476, + 0.47945323078460783, + 0.5921585516045078, + 0.7246228603357001, + 0.5016405663318177, + 0.7261082129989768, + 0.6980228439661176, + 0.549974998426652, + 0.6883787748398623, + 0.7560830069029957, + 0.809118261657847, + 0.6409715639137676, + 0.6062332450853133, + 0.678327922655919, + 0.7194648058640647, + 0.578739674336875, + 0.6833768933326144, + 0.5904546390489477, + 0.657404060611593, + 0.6417657549777287, + 0.578406814099335, + 0.6129426397815959, + 0.5653837946322162, + 0.51443951096572, + 0.3832505064137485, + 0.7865621150582099, + 0.6377676638071542, + 0.6307380334879311, + 0.6494308749482263, + 0.5882286770741051, + 0.6726372355234087, + 0.6255038447489689, + 0.6830519086359018, + 0.5078630373692182, + 0.6262961540403269, + 0.6935754204527997, + 0.7662314724197149, + 0.5671421815682918, + 0.737066047108248, + 0.8350698249787182, + 0.5933966643718185, + 0.6022112541750574, + 0.8217455191661343, + 0.6233572678947313, + 0.5708665375181358, + 0.38065784370608596, + 0.47612860447692146, + 0.5858013013863458, + 0.6953003572843546, + 0.8716096521233827, + 0.5152621684097383, + 0.6070234581052534, + 0.7950146752108525, + 0.6275978776101974, + 0.5661079017857523, + 0.7547229844204393, + 0.854301666783867, + 0.7712388071990508, + 0.7687941078344276, + 0.4620175098168253, + 0.4947152303409424, + 0.73229016415913, + 0.8044525417485123, + 0.7171583614020979, + 0.6638072951295011, + 0.7381083018637483, + 0.7124522178457624, + 0.6850789346067103, + 0.8004585798926912, + 0.5828230440333801, + 0.7503708171560307, + 0.5948849006258898, + 0.7790480717874332, + 0.603680829340978, + 0.729635081415794, + 0.6615658852125668, + 0.6207559352615891, + 0.806894566694844, + 0.8899970813641314, + 0.7877935756680846, + 0.7584606144463654, + 0.7143486259228977, + 0.7063454360809083, + 0.8048974387350406, + 0.7233145304966514, + 0.8272243284947702, + 0.7166869663570233, + 0.6634751304301467, + 0.7819051972288471, + 0.5974261656086288, + 0.5287982949625791, + 0.7655648083196961, + 0.7007371085790489, + 0.7875550153189323, + 0.7318014432227085, + 0.6501741400893349, + 0.6267436778434161, + 0.7880850266503593, + 0.7159452304022261, + 0.8173022392894642, + 0.7271679778071172, + 0.6244614262137534, + 0.7774052204751938, + 0.6367902486497998, + 0.7107357661969501, + 0.7263470463183532, + 0.8546739265317441, + 0.6050740976858996, + 0.7038590741090035, + 0.7901945673109186, + 0.7143445233875637, + 0.7491353249309345, + 0.7576902744483949, + 0.7021850434346169, + 0.6062458238383622, + 0.8348073748290533, + 0.8310606458072264, + 0.794636095955789, + 0.7231706644361926, + 1.0, + 0.6558056030989811, + 0.8202447771664951, + 0.8210501261222457, + 0.7297344222039241, + 0.8399758794316049, + 0.6412681122808168, + 0.5797809931346459, + 0.6708461903884892, + 0.7916634094955289, + 0.49388879928003976, + 0.7058589934282338, + 0.6751280677463676, + 0.7508947729563505, + 0.657242185156329, + 0.7172944701341518, + 0.8673129866672749, + 0.7746279903177942, + 0.752739787496839, + 0.5918527718911413, + 0.4985567075907234, + 0.4995254382189853, + 0.5735302542256859, + 0.5566078947064786, + 0.5847334497097206, + 0.7289284831813374, + 0.7704574079637535, + 0.7359081192453802, + 0.5105102851997315, + 0.7878496447632269, + 0.6216979099241479, + 0.6525783279671469, + 0.7316084966554501, + 0.6160652629678163, + 0.7817781746681672, + 0.5855613380612666, + 0.6291278980966746, + 0.7101307728184515, + 0.6111697800810526, + 0.7679765680766883, + 0.7341066034195278, + 0.8107805751693119, + 0.7481853077249645, + 0.7181398220928621, + 0.7895364759146108, + 0.6981084078805793, + 0.7337267881604856, + 0.36225243431340026, + 0.6204746683456496, + 0.6963996453246931, + 0.5286948360555486, + 0.635717529137006, + 0.7026166519165279, + 0.7126935772537484, + 0.6416378794366451, + 0.7000958197106137, + 0.7050282864952807, + 0.6968344242653329, + 0.7286307209627099, + 0.7021372777635989, + 0.7907937894117671, + 0.5694470724037409, + 0.7035891929191838, + 0.6732631426301157, + 0.7540372898459538, + 0.6740023636919309, + 0.6882199919359039, + 0.5304339158095625, + 0.7776726011991725, + 0.7134719944803607, + 0.678853621134566, + 0.5977805293245234, + 0.7007451772218924, + 0.7271369278278607, + 0.6398339878220185, + 0.6598644729620005, + 0.620082218942334, + 0.6748634084285445, + 0.7750682771790189, + 0.9161808742975386, + 0.804807133135735, + 0.7047855192117051, + 0.5434134980895309, + 0.49322578441480164, + 0.5874373286105018, + 0.8006368458293863, + 0.857883023203614, + 0.7226251654927409, + 0.8601536248800665, + 0.6366402100820052, + 0.5243136703841883, + 0.7481790513287113, + 0.7553466042499769, + 0.3284101542282039, + 0.726806581570189, + 0.6649058395759745, + 0.71859273386775, + 0.7221909910462085, + 0.7199298457336152, + 0.5527661463038797, + 0.4560648133690893, + 0.6841267043477942, + 0.6924196980869259, + 0.7561097676905031, + 0.7759821672347537, + 0.8759476046596371, + 0.7511022892179638, + 0.5551091716430671, + 0.5239343905087648, + 0.57376049076584, + 0.6536007412394667, + 0.6044767452347427, + 0.4306735575095496, + 0.7046122234560365, + 0.6499367736583356, + 0.8745130443388633, + 0.5449170610463011, + 0.47408266546905137, + 0.3862802283587553, + 0.5282159779655473, + 0.40072918813771624, + 0.6246318289702272, + 0.5684906613705613, + 0.8335184260734158, + 0.8313565919931803, + 0.7909522689890831, + 0.6672208374466991, + 0.6667671240401544, + 0.7520984802311793, + 0.551545162108255, + 0.39454660032874805, + 0.7254005920240907, + 0.7614692604851024, + 0.5454553108973952 + ], + [ + 0.6450081336040199, + 0.454706971088275, + 0.6049447622683332, + 0.6409001266889688, + 0.6912623657738259, + 0.7163643939633093, + 0.40155006227293066, + 0.7196797182695405, + 0.44130878178550387, + 0.4941369126609045, + 0.3373468767045992, + 0.66307645730536, + 0.8410425395785098, + 0.5752824886663298, + 0.7424392750444861, + 0.6267357327581713, + 0.4890100069872212, + 0.7122180506474398, + 0.7366566784446505, + 0.6157782272310007, + 0.784572087332145, + 0.6321531357650851, + 0.70060020396721, + 0.5857887919456101, + 0.536746965151073, + 0.7085358855339156, + 0.7866039792734354, + 0.702920606238301, + 0.5886322897827827, + 0.4626532459408839, + 0.7105907488526181, + 0.5418145802495223, + 0.7037930349089043, + 0.715200238607885, + 0.787867934285321, + 0.7100373679055036, + 0.7310278916707116, + 0.517289895560874, + 0.6530942060127062, + 0.7534767811028514, + 0.7399517179267195, + 0.792897975873439, + 0.6658295741849835, + 0.8311693287369414, + 0.8233233088590549, + 0.5797368502793857, + 0.7776761813710495, + 0.5430902441755524, + 0.8532280872796406, + 0.75116675104055, + 0.7182217339499308, + 0.7305718153969598, + 0.6491299014569482, + 0.5938175261655633, + 0.504647034461797, + 0.5620988735666312, + 0.6627845790373901, + 0.8737867317230991, + 0.6162778623437968, + 0.7488623710944431, + 0.4907596313553917, + 0.8464340077745659, + 0.5681582807589655, + 0.6910386686486337, + 0.6843340036876199, + 0.5866646315595756, + 0.7179546074497911, + 0.811425772166564, + 0.6357193749668196, + 0.5929545587328379, + 0.6805877229603469, + 0.5643495316294347, + 0.6397567018816024, + 0.7605928510419786, + 0.8205854988088237, + 0.9108683786849333, + 0.8948466251548267, + 0.8661792985173301, + 0.6229997417844134, + 0.852701766707098, + 0.6530085448897978, + 0.5995291993521327, + 0.6643579928920503, + 0.9217924836520006, + 0.6985303495753893, + 0.6746934274596318, + 0.7077415963307921, + 0.5998139752679572, + 0.564317686236304, + 0.7201732001612816, + 0.8394986766812277, + 0.7963007632125285, + 0.8192849918336217, + 0.9000441819296199, + 0.8251186974806335, + 0.7310842125678878, + 0.6540998484058612, + 0.6928469241212912, + 0.7187738231287254, + 0.6157186771586709, + 0.8435561648886203, + 0.7559544775022119, + 0.635933234323467, + 0.737614256970494, + 0.8431505412016773, + 0.5323904540415958, + 0.6572174104301625, + 0.7681990595757949, + 0.784764439688023, + 0.870076914569803, + 0.8127249087899364, + 0.6268793860358036, + 0.7862214495328257, + 0.8493018895002097, + 0.8468187868962721, + 0.8186319903019371, + 0.796727732054306, + 0.8295323028444513, + 0.6320708566529339, + 0.8931640905748333, + 0.8710451441258086, + 0.8838466666748632, + 0.7731974491856457, + 0.6381018378899975, + 0.7155214042717711, + 0.6577022164070319, + 0.46775424878352345, + 0.924893877981125, + 0.6558056030989811, + 1.0, + 0.6326781783562359, + 0.6051023154228171, + 0.43075623801326574, + 0.5762131266915564, + 0.5908179223631089, + 0.7846199692990021, + 0.7942602718817867, + 0.8248020530357483, + 0.6794535087697219, + 0.8436988955752548, + 0.8393084099651991, + 0.8326188241636291, + 0.8278036702141758, + 0.6890299033670026, + 0.5721671799993876, + 0.7515962976054751, + 0.8236459550050036, + 0.7145497850093062, + 0.471898889119711, + 0.7616752803135415, + 0.7898472196538069, + 0.7706494888812697, + 0.7826464341782446, + 0.6534918869720827, + 0.8580068358347063, + 0.8781789509957009, + 0.6950825066153432, + 0.757889270355536, + 0.6643146418759253, + 0.7601836604819286, + 0.7972256256582297, + 0.8065513980426494, + 0.7804066091884219, + 0.8254461484911163, + 0.8449128528159549, + 0.9000718397937973, + 0.8471513682738893, + 0.7877388974589049, + 0.8509594986525169, + 0.8292965402710788, + 0.8295591114975245, + 0.8202723861138896, + 0.7020363096173305, + 0.8771747588923975, + 0.9411842720247247, + 0.5839814521716747, + 0.7837173387577664, + 0.7513476867185157, + 0.5981203096401403, + 0.8122540942336889, + 0.6600379789083346, + 0.8920900061773552, + 0.790946330199733, + 0.879474569934701, + 0.8142327320592191, + 0.847433665271277, + 0.885862999144338, + 0.780098276441429, + 0.7319189994847997, + 0.8222641844671544, + 0.8424367728871804, + 0.8844115326170063, + 0.9342977532970916, + 0.8785908606589534, + 0.8191856580346025, + 0.7425570687458791, + 0.7854517504177589, + 0.8310952980969272, + 0.8409904249112085, + 0.8426097787663567, + 0.7753124978919461, + 0.6021696847914404, + 0.8240116921589629, + 0.8399586617970034, + 0.8089792010580947, + 0.9079191654121197, + 0.8376623012889611, + 0.7979957850925868, + 0.6115844075007951, + 0.9151409126487596, + 0.7791698346887035, + 0.7288487918368924, + 0.8086281922698422, + 0.7783450362651021, + 0.7836796929310577, + 0.774892410198601, + 0.7336669532836447, + 0.829429356770161, + 0.7715769563439387, + 0.9310537230855177, + 0.8245351326584519, + 0.6454446114463432, + 0.8729600917008421, + 0.8575371041202674, + 0.7137280436821073, + 0.7922857527560838, + 0.790430706082973, + 0.8387813201616813, + 0.488089820825435, + 0.775022600632613, + 0.7711857379886415, + 0.8618098492351097, + 0.8819840584841976, + 0.8163823378651813, + 0.8278601372226636, + 0.6549686275696258, + 0.779369504806753, + 0.6947552284763989, + 0.8249516034766092, + 0.8853409984722393, + 0.5531176349883663, + 0.8406131820043218, + 0.7660407980639903, + 0.7526369841627819, + 0.807727824417918, + 0.5863440337962644, + 0.46504506954765007, + 0.615750155504422, + 0.6133611089824675, + 0.695560795644216, + 0.6056180134625624, + 0.6906851437337768, + 0.7525472648940406, + 0.5962761739498382, + 0.6499802481416914, + 0.772082385534099, + 0.8772723538860977, + 0.6522807496722203, + 0.3967071818142519, + 0.7738511979401169, + 0.8190370522889187, + 0.6560655051994505 + ], + [ + 0.7058522523088616, + 0.5707989645230683, + 0.6892705456995736, + 0.8460939180178747, + 0.7425648977702566, + 0.6840840315136757, + 0.6935583307993403, + 0.7532942506746771, + 0.840425968422278, + 0.8333038259261175, + 0.705182832751695, + 0.6378870617420543, + 0.6875091414063624, + 0.6214388129849447, + 0.8984011818325501, + 0.8030045379462646, + 0.7721486775392711, + 0.8013868575327893, + 0.8180375220912502, + 0.773083060217665, + 0.805188844192969, + 0.7666490017828763, + 0.7348925322986916, + 0.7827411024442587, + 0.7551388131849613, + 0.7725766740183789, + 0.6114162720410422, + 0.831016107305794, + 0.7673307652585429, + 0.6419231734020671, + 0.7787383243463747, + 0.6397665296276287, + 0.6948266366359461, + 0.6448614581074147, + 0.8196256286567293, + 0.7972658749342336, + 0.7115389305129239, + 0.45262005298716396, + 0.706914898703058, + 0.8521818400251135, + 0.6921161794219968, + 0.637201316094071, + 0.3790346518034169, + 0.7232557586049295, + 0.7667907208813705, + 0.7608540816226201, + 0.7504654443774159, + 0.8239921300434548, + 0.8139062852173662, + 0.708653994270435, + 0.8188716873497913, + 0.7918771252021565, + 0.7669842997364288, + 0.6871982030843901, + 0.5814629558542673, + 0.6816028792948007, + 0.7506401182540784, + 0.7646757637711026, + 0.6852559483798307, + 0.636059091649571, + 0.834830611237058, + 0.8876595941786602, + 0.8417635025044022, + 0.7962451969130214, + 0.7600968794444242, + 0.7604849762035092, + 0.8380263139115884, + 0.7953561696553579, + 0.4824235597632334, + 0.5488124423160659, + 0.6931296810879275, + 0.7432625874517403, + 0.8503130517817779, + 0.8306999043421573, + 0.7330397688147269, + 0.7805902255692997, + 0.74085610812583, + 0.6997280894330303, + 0.7732399265502125, + 0.7892872393668503, + 0.6042127148134754, + 0.7065104447093419, + 0.7367478623207984, + 0.7846370250919169, + 0.7982952673291339, + 0.7487327305427228, + 0.8840845126499822, + 0.8554845035333017, + 0.7586531703444955, + 0.6888691958838311, + 0.8246794784385785, + 0.7373686358878901, + 0.6110862736585942, + 0.6859220436772253, + 0.8157883331134944, + 0.8376257850873474, + 0.7330651108302999, + 0.7710111157144308, + 0.673842428920199, + 0.5696183363159987, + 0.7158256243548404, + 0.856261356914354, + 0.9105662812608919, + 0.7616855314813767, + 0.7240413537627781, + 0.7787230249622114, + 0.7624955108600657, + 0.8433869015406981, + 0.7627734546550459, + 0.7853579781075939, + 0.6902085106602832, + 0.9704079243843977, + 0.7873005298930116, + 0.7954135345958173, + 0.8198724921217674, + 0.8736246359037874, + 0.711682593366715, + 0.7964307769323936, + 0.894203190541919, + 0.7888240505140869, + 0.7049354627713944, + 0.7907185931566147, + 0.7875448075154965, + 0.8403037731720894, + 0.9270209773046921, + 0.9194133592090667, + 0.7120357131063481, + 0.7255680112015689, + 0.8202447771664951, + 0.6326781783562359, + 1.0, + 0.9201326732427046, + 0.9278494610332216, + 0.9460929835967743, + 0.7485810948293607, + 0.7597345802558331, + 0.7650413277661803, + 0.8081758340066194, + 0.5899871020644641, + 0.8145348190797448, + 0.8230799585799643, + 0.829204610165288, + 0.7463759965774481, + 0.7885511077536167, + 0.7331183118434208, + 0.8348141024202136, + 0.6935436660387801, + 0.6109249680798365, + 0.5684453038697671, + 0.5588998162632717, + 0.7392539386270642, + 0.7101888567639336, + 0.7604294646447068, + 0.8206623617943036, + 0.7892379517440267, + 0.7949131921678563, + 0.6109414870131179, + 0.8664704777949154, + 0.8320053686824439, + 0.8305387653614743, + 0.7955516882430927, + 0.7056221130699925, + 0.8729227175219629, + 0.6068564111120882, + 0.7297955711765328, + 0.7457206837457235, + 0.6581268667240852, + 0.8902180275898054, + 0.8061087706247294, + 0.8664016967201141, + 0.801049702636101, + 0.7687815050564288, + 0.8443292454910013, + 0.6167713980102747, + 0.7979435207374682, + 0.4749953240273504, + 0.7388941117060135, + 0.6458699989484151, + 0.6742604098495493, + 0.8014501980813512, + 0.7640621614356122, + 0.7420345436005473, + 0.699670750265859, + 0.7735281413371403, + 0.6860356349287936, + 0.8268742541978301, + 0.8310181013890352, + 0.8346381735194071, + 0.9088057384425261, + 0.6906542749093393, + 0.7897159665342295, + 0.7162708955389592, + 0.7890819542882013, + 0.7091759383622706, + 0.7054622658612203, + 0.5931016737653036, + 0.8608676291513502, + 0.7985876409905432, + 0.6596843735425706, + 0.6522298024375661, + 0.7671719216192724, + 0.8242067162197276, + 0.7544997050570162, + 0.6730045829905955, + 0.7491023400801495, + 0.7262130638709302, + 0.7684887380717856, + 0.879657944784426, + 0.7739481902632328, + 0.7076283960117479, + 0.6496588087434118, + 0.6806567666634471, + 0.647072981911943, + 0.9046307059276899, + 0.8319029706975337, + 0.6925120454224428, + 0.7696464117056175, + 0.7720040936321243, + 0.6426639514810346, + 0.7433341368058659, + 0.6293039760273053, + 0.42283643822709255, + 0.7273548223246559, + 0.7894395541863541, + 0.7444446846350334, + 0.8594119431367707, + 0.6974110093932465, + 0.6028011408420068, + 0.6549169213490859, + 0.8003501242566229, + 0.7902831659376858, + 0.7814264352853177, + 0.8066220683248833, + 0.8315500460543999, + 0.7752306442667511, + 0.44852354465793204, + 0.5299457445840333, + 0.6357376317709688, + 0.7657978365191406, + 0.6835947295000059, + 0.6013474764344747, + 0.6582398372088364, + 0.6287647789093843, + 0.695226856124357, + 0.6306956573180917, + 0.715146337490878, + 0.6070699581557211, + 0.5998386676301412, + 0.5188016560896223, + 0.6614473407202036, + 0.6034221556044204, + 0.6524879842275114, + 0.734363449302516, + 0.7894560058084237, + 0.6716876553894061, + 0.8431581161653329, + 0.7827863192865827, + 0.7225618031371649, + 0.6378640986076536, + 0.7864801811418619, + 0.8234163933378119, + 0.5129137870506917 + ], + [ + 0.6545574617021764, + 0.6520340374917044, + 0.6504363222874677, + 0.8544433070978605, + 0.8147416239528, + 0.6795277683085869, + 0.726629737995566, + 0.7511905126256243, + 0.8067960433405296, + 0.8666759653941356, + 0.7590254416237268, + 0.7064837621166162, + 0.6918907850888941, + 0.6550935710122425, + 0.8776383267518212, + 0.8327325633027909, + 0.7343429878280585, + 0.7981572090677943, + 0.852058080551776, + 0.7926305080009163, + 0.7777497662024596, + 0.8009874137171605, + 0.7817993132363258, + 0.847107877371768, + 0.77476655336953, + 0.8334347492449592, + 0.6367109459513596, + 0.8151638678823179, + 0.8096654598128897, + 0.7002185919554031, + 0.7982741144728083, + 0.79782732053015, + 0.7112672616626565, + 0.6539764028943342, + 0.7846520106891335, + 0.8061656686808558, + 0.7556873725343933, + 0.48813222780547944, + 0.6873365913168774, + 0.8226349890682914, + 0.6833602343683473, + 0.6238837821768352, + 0.3822264492138812, + 0.6833188685730041, + 0.693665553924166, + 0.8449926009829334, + 0.7356597336662593, + 0.8292972929545955, + 0.8049780760742056, + 0.6760413961989231, + 0.7585853590373689, + 0.7680731014985369, + 0.7706058549843956, + 0.7534401757595741, + 0.6461001190159485, + 0.6944828249392276, + 0.7766370278661069, + 0.7532213570522537, + 0.7058453075438071, + 0.6439320326413208, + 0.7811125907911896, + 0.8680143366923951, + 0.8285919052562036, + 0.832411410621358, + 0.7132074710421346, + 0.7716762127601187, + 0.8164118585293304, + 0.7135494641298146, + 0.5650334464247109, + 0.6359541591293095, + 0.7764339818950265, + 0.7854017604072833, + 0.8170935554141363, + 0.8052813429126238, + 0.7266781728426508, + 0.6922813308389162, + 0.644064517568657, + 0.6977760009648921, + 0.7021769768714271, + 0.7381385181665252, + 0.6591921434783465, + 0.721737169297502, + 0.7276794202382247, + 0.7023008676283597, + 0.8120378447917396, + 0.7979536141521609, + 0.8825488170902304, + 0.8838503889194251, + 0.7251994882212209, + 0.7411114174415254, + 0.8085915180607638, + 0.6923073021436092, + 0.6448670870237636, + 0.7067130835239481, + 0.8145168005005123, + 0.8218456599618695, + 0.7898392927225, + 0.8362994550378089, + 0.667666486848385, + 0.6460619663118813, + 0.7583741838919291, + 0.851158323503912, + 0.8557160132788393, + 0.7855989962879714, + 0.7025103814791758, + 0.7765394347474679, + 0.7297465474930706, + 0.8304802027319105, + 0.8409087380689122, + 0.7562562868784183, + 0.6821589940405821, + 0.8702953395182615, + 0.7499202240209296, + 0.780887640356353, + 0.8160815977480484, + 0.8697849971815127, + 0.7070613016241897, + 0.7828334982199383, + 0.8424434748722214, + 0.7061269677104668, + 0.7348794956576651, + 0.7363007671938103, + 0.8311506703907685, + 0.8192079981318444, + 0.8617072908889812, + 0.8969209245268438, + 0.7427357984223667, + 0.7292952194935778, + 0.8210501261222457, + 0.6051023154228171, + 0.9201326732427046, + 1.0, + 0.8860492149918369, + 0.9202894600858212, + 0.6973924241568391, + 0.7782943640630953, + 0.7800351595757208, + 0.7155063459577836, + 0.6285251849350003, + 0.8050451370055376, + 0.8093590480880611, + 0.811525683712347, + 0.7460479833213071, + 0.833077412587388, + 0.7333472392942694, + 0.7944205395814354, + 0.7335023859032545, + 0.6866356074895049, + 0.6864416995658414, + 0.559579037776168, + 0.6862204356352737, + 0.7439603457136517, + 0.7532072929712433, + 0.7735457551386965, + 0.7282517190649784, + 0.7716749270682626, + 0.6071937065774187, + 0.8715118666036801, + 0.7954406429233964, + 0.7894372858080508, + 0.7897208775000786, + 0.7232674193139421, + 0.8249587882418402, + 0.5802799254667265, + 0.6973317766991465, + 0.7068139533003477, + 0.6378728944598238, + 0.8498604417788174, + 0.7987093027653541, + 0.8269232845018066, + 0.7742928054911312, + 0.7630809731669934, + 0.7704295202564129, + 0.5798565748594139, + 0.7370455831115817, + 0.5650536998269662, + 0.7162850427832704, + 0.6425141439523047, + 0.7270949622757191, + 0.7649850004242408, + 0.7574732941018573, + 0.7179572225672892, + 0.696595468217585, + 0.739456627376358, + 0.7459604913681426, + 0.7530508408874739, + 0.7975599574828011, + 0.7621338262248162, + 0.8227229443749149, + 0.5984385881636529, + 0.7305768428749968, + 0.6443361075955479, + 0.7353662809057324, + 0.6643905170821851, + 0.6709263830455382, + 0.5599011373986874, + 0.8307709728413556, + 0.7318365386302271, + 0.6216277225347674, + 0.5920886076017595, + 0.791173913261518, + 0.8135184744656423, + 0.7871250491584887, + 0.6369998143534814, + 0.6767969358946205, + 0.6475967987988024, + 0.7168104371225555, + 0.8116701298639121, + 0.7805846466966271, + 0.6648045609362807, + 0.6057620418821495, + 0.6908044496766703, + 0.655314257383077, + 0.8949474389839274, + 0.8010817390428433, + 0.5852741608036958, + 0.7297172653692374, + 0.7066885381361947, + 0.6338431254204665, + 0.7216993196532556, + 0.6318837298609485, + 0.4505074336045463, + 0.6314899138856446, + 0.7518188545483586, + 0.7626203288639025, + 0.7025222193922741, + 0.6600235224521929, + 0.5520156459226102, + 0.7068295066178685, + 0.7342097447152731, + 0.7345296741486607, + 0.7303949394748204, + 0.7870495667035021, + 0.8132061578608544, + 0.7250933980041786, + 0.43402036281148565, + 0.5086503718904576, + 0.6811839876710706, + 0.7468102665240607, + 0.6380422634999426, + 0.6261303111937543, + 0.6206453801261935, + 0.5432741003084801, + 0.7333576535531148, + 0.5683685235184552, + 0.6907997018064618, + 0.61645788321889, + 0.6213900580210209, + 0.5400849713581796, + 0.6433908509931423, + 0.6413754781920434, + 0.7027854647320245, + 0.7598678571461164, + 0.8179969180537107, + 0.752283597501144, + 0.8195965448003436, + 0.7614362813207661, + 0.7791370253449484, + 0.7071256848988196, + 0.7907923242073308, + 0.8163829553938272, + 0.5278366877535368 + ], + [ + 0.6420505045102908, + 0.5411434755339575, + 0.5437897566473631, + 0.7311419988323382, + 0.6550148066516186, + 0.5284141108352131, + 0.6836921840860252, + 0.6702666486297989, + 0.8628087057353891, + 0.7824825962608931, + 0.7026903587446256, + 0.5595246196063838, + 0.5289488246832207, + 0.5400582413509325, + 0.7620284812125033, + 0.762087101066484, + 0.7192790111247442, + 0.704905740095904, + 0.7201388593050906, + 0.6403647428936438, + 0.6753118092234148, + 0.6824914188993223, + 0.5674148478801865, + 0.7294949021333094, + 0.7217518875628282, + 0.6740245828783757, + 0.38890682843183755, + 0.6793794228158119, + 0.7336631310446962, + 0.6230383819313664, + 0.6746139995953092, + 0.6416318252645888, + 0.5551073395652842, + 0.5467397072220479, + 0.667751580369629, + 0.7150866614962054, + 0.6036200876515307, + 0.4193234281455396, + 0.6652641628598782, + 0.7474918536592534, + 0.5265634302683236, + 0.5322267966210887, + 0.2247626765351767, + 0.511672726460766, + 0.5665346384263333, + 0.6971299020434112, + 0.6373115609011587, + 0.7581663430951545, + 0.653423474179155, + 0.5780037703969501, + 0.7077607415164494, + 0.6655716533447212, + 0.7338224529281683, + 0.6020091671818226, + 0.5845260350631666, + 0.6555885761974731, + 0.678372033624928, + 0.6423617306527927, + 0.5576324514825581, + 0.5103698660378969, + 0.8389674502630228, + 0.7262543214901598, + 0.8123827760099279, + 0.7252548737598247, + 0.5770455907167737, + 0.6886481226904553, + 0.7565002657280783, + 0.6573578185962694, + 0.3983744240350882, + 0.4968974558457834, + 0.6302185691572698, + 0.6609157943004085, + 0.7347322093463753, + 0.73867916209819, + 0.598592346244241, + 0.5706570486134228, + 0.5366545140616923, + 0.5319271706096582, + 0.6726490323072194, + 0.6357609185348404, + 0.5252302885428577, + 0.6696198829349699, + 0.6848761577726244, + 0.5938911670776207, + 0.6935824505826833, + 0.7008486658037171, + 0.7848764024867252, + 0.8191337729211529, + 0.7094235806787315, + 0.5988587666730323, + 0.672637787126536, + 0.5845340066870588, + 0.44931699456980206, + 0.5509593243210499, + 0.6534354804515958, + 0.7857528494129237, + 0.6462028648967043, + 0.7148210705018697, + 0.5750023940320939, + 0.48838024515739503, + 0.5519102540356228, + 0.807743087509801, + 0.8661355007796663, + 0.6886277204204483, + 0.5464003237360993, + 0.7051763177752162, + 0.6227557323935682, + 0.76816966769616, + 0.6851932638909526, + 0.6032568940652315, + 0.5575253018849785, + 0.8663941730024067, + 0.6818593332850185, + 0.6595243196194198, + 0.6881009123669238, + 0.7346279740200364, + 0.582137460799408, + 0.6300140294196006, + 0.794573652734106, + 0.6057426372246764, + 0.5276292166012475, + 0.6672087226953725, + 0.7229644438230741, + 0.7904895385881157, + 0.8701637817121185, + 0.9169836247409073, + 0.6740535551003428, + 0.5291328356847234, + 0.7297344222039241, + 0.43075623801326574, + 0.9278494610332216, + 0.8860492149918369, + 1.0, + 0.9295189399111468, + 0.6837154630436115, + 0.6427585029872881, + 0.655572137221232, + 0.6136029643318468, + 0.4353588993611927, + 0.6467709498347195, + 0.6781363705137844, + 0.649200558167779, + 0.5833450015210595, + 0.6693576878276631, + 0.7054519168839312, + 0.6608578529475122, + 0.4672009983821931, + 0.4978363695436467, + 0.5316341286733883, + 0.3961054389241403, + 0.6074499040237783, + 0.5998093656486534, + 0.6405079128786793, + 0.818198590358791, + 0.6373830312688563, + 0.6169937058076909, + 0.488970076701801, + 0.7649962194343022, + 0.7810272786386065, + 0.7138464167347992, + 0.667064446291195, + 0.581898928418457, + 0.759096416521073, + 0.44465384203158415, + 0.5397808246659628, + 0.5638798464046297, + 0.4995852118296367, + 0.7758554290310298, + 0.6718925530399872, + 0.7335233569890613, + 0.6773722137752356, + 0.6495305701808474, + 0.7949284643223654, + 0.4347124964835096, + 0.6247100009578029, + 0.4394315065384516, + 0.6441154402984128, + 0.43569083854075324, + 0.6177545151061538, + 0.6986178796671539, + 0.7077931100043664, + 0.5895631724511441, + 0.5819929484716341, + 0.5945877996193789, + 0.5753140123664104, + 0.6829114399842596, + 0.6819969050241044, + 0.6925032732477302, + 0.824282752690202, + 0.5306800764795968, + 0.5920040265912376, + 0.5071343517503667, + 0.5863874372471128, + 0.5115995927896088, + 0.5072621620552709, + 0.5012909405223251, + 0.7620564128413985, + 0.6920154331259747, + 0.44091310517916404, + 0.5299716866078837, + 0.6530185080477331, + 0.7912015951873644, + 0.6681852814321928, + 0.4718418130106345, + 0.5778182205554505, + 0.5224065634018876, + 0.5956897518122098, + 0.729302871536775, + 0.7422532371162843, + 0.5221586091323575, + 0.47275842553230896, + 0.5238483829835736, + 0.47354826222432544, + 0.8143602096615712, + 0.6663960826724804, + 0.58180150793338, + 0.7074602913400461, + 0.6342713188414121, + 0.4951547482017866, + 0.5742074553943166, + 0.4872648914271461, + 0.3010692025627042, + 0.5270346021578325, + 0.6295216349144958, + 0.6797961571344115, + 0.7161452525242439, + 0.4826848396031923, + 0.4111775790072497, + 0.6882096026334599, + 0.6762291137709041, + 0.656366710622413, + 0.6100978087702179, + 0.6436951748678059, + 0.7017213376934146, + 0.594175333316756, + 0.3809410482997392, + 0.41220855465990813, + 0.5020586231483789, + 0.6094206248864061, + 0.5004290717112534, + 0.5840431301294675, + 0.4386180651696811, + 0.3739087173370415, + 0.6040220474860292, + 0.4741900057272232, + 0.676092519570927, + 0.5827766740800654, + 0.5332928599540845, + 0.4447520225210577, + 0.5118658268356506, + 0.5095339014899417, + 0.576092758578284, + 0.581037117392222, + 0.7403425607409945, + 0.5562615310488545, + 0.7269541441391288, + 0.6065166706580085, + 0.6668857374864896, + 0.6207177518263134, + 0.686787595155681, + 0.6519806369387229, + 0.4393441676889534 + ], + [ + 0.5918422924736316, + 0.4572512238246664, + 0.5102018147936864, + 0.8697155119430078, + 0.767319326802887, + 0.6499313423668717, + 0.6115463691868276, + 0.621201182929494, + 0.7569296118026023, + 0.7608379176126439, + 0.6111194624049933, + 0.5678398205211179, + 0.5667489021385609, + 0.6381614956529257, + 0.7969264153657513, + 0.8208779888079859, + 0.656700772480991, + 0.6734569409809609, + 0.8121123737912053, + 0.6730881544757141, + 0.703489359349051, + 0.7932312638271087, + 0.6329207144285097, + 0.7397050424788691, + 0.66866487146244, + 0.7366763203884933, + 0.48611841611106604, + 0.6787411778170965, + 0.777111775734949, + 0.6059221628517493, + 0.6817519402021441, + 0.6093831306591773, + 0.6047650466480023, + 0.5826779251504141, + 0.7480683645853685, + 0.7540739092416321, + 0.6307082263894728, + 0.5491696931781903, + 0.6155422593622037, + 0.7901295724092274, + 0.5506425067768491, + 0.5879180277712853, + 0.4192619227027887, + 0.6794720213415049, + 0.6741686860800261, + 0.7371869394663875, + 0.6863477268977151, + 0.7497992095100302, + 0.7630516855393803, + 0.6849708447303781, + 0.7057408274259007, + 0.7916932842867296, + 0.8050013102638123, + 0.6212972427462394, + 0.5564726695927306, + 0.6453607117794328, + 0.7053416278267528, + 0.7044627872070154, + 0.7788639831432925, + 0.556945975698779, + 0.7827825620254055, + 0.8215670020922761, + 0.7529661612585947, + 0.7726820548505727, + 0.6187556007413768, + 0.7384377581894701, + 0.8230129773216137, + 0.7574061960825554, + 0.3953790447185151, + 0.46904712063563664, + 0.6967742338684754, + 0.7368683704162939, + 0.6984842132878757, + 0.7301096556457138, + 0.6729343097900746, + 0.6971420528591222, + 0.6551692317754201, + 0.7041389145574817, + 0.6202019266566707, + 0.7144555645735341, + 0.5362180058473864, + 0.8491091232646871, + 0.6594980396056408, + 0.7444840253149542, + 0.6879230159469223, + 0.6455420018576894, + 0.7930106292792918, + 0.9088658988515055, + 0.8736808988059758, + 0.7146680998387516, + 0.71213910006415, + 0.6616178751868881, + 0.6068429547331541, + 0.6301698264731658, + 0.7503645693620342, + 0.8200661372595025, + 0.6209578189843646, + 0.8500736624613914, + 0.5946825641948515, + 0.4667737006153881, + 0.6439870293616311, + 0.8464007899949559, + 0.8692358259139445, + 0.8195590753034415, + 0.6091146885814782, + 0.6641178907217365, + 0.75807142796242, + 0.7793103513334451, + 0.8244914966979489, + 0.6980960228008578, + 0.6638048184786056, + 0.9180855464254757, + 0.6427725013598493, + 0.6873388536918037, + 0.7790654124942377, + 0.823419421103367, + 0.6551560644525197, + 0.6759700827026541, + 0.8204520509954834, + 0.7224022060437099, + 0.6452703827812184, + 0.7582073863289519, + 0.7373999546600084, + 0.7326759892225443, + 0.877160832534169, + 0.9133225791372508, + 0.858898735784029, + 0.6369292450267943, + 0.8399758794316049, + 0.5762131266915564, + 0.9460929835967743, + 0.9202894600858212, + 0.9295189399111468, + 1.0, + 0.6167380219561545, + 0.669774256469692, + 0.7446777031497823, + 0.7325512261002338, + 0.5656794932305338, + 0.7652295367019039, + 0.7818646099232028, + 0.7272389235853496, + 0.6824139247895498, + 0.734489146968681, + 0.8277220623827646, + 0.7338684609473882, + 0.6665232600577254, + 0.6690533577973544, + 0.6513046143294443, + 0.4597746103961643, + 0.6692911307668388, + 0.6802362613413799, + 0.6772658940250538, + 0.738099885131565, + 0.7730260748427203, + 0.7668249446229031, + 0.6110549547337394, + 0.8516044004534598, + 0.7694440787033464, + 0.742183940597108, + 0.7354237894967055, + 0.6920953209144828, + 0.7995785355492939, + 0.5302672893349786, + 0.5997308548171338, + 0.6626044888192908, + 0.5949627686609722, + 0.8722711125953949, + 0.789257683051748, + 0.8221014880438067, + 0.7884164249521001, + 0.7663643962240583, + 0.8165178156881342, + 0.5446453759263968, + 0.7420664719650798, + 0.5657978648274742, + 0.7324728042183513, + 0.6490808252762766, + 0.5529636480724682, + 0.7799041826617994, + 0.7641150437404471, + 0.7079724467820872, + 0.6960071949319706, + 0.6802619754084114, + 0.6345258532850203, + 0.7385284670550455, + 0.7810984500676621, + 0.6890419065849082, + 0.8644371363720902, + 0.5395244215311018, + 0.6771130935441901, + 0.5905868603099718, + 0.7250887964635502, + 0.6192555219982326, + 0.6701754140468271, + 0.5501436094830255, + 0.8014837978483369, + 0.759638223596525, + 0.5937704980276913, + 0.6838204104702178, + 0.750786047636302, + 0.7546257549063033, + 0.7255919717799288, + 0.6381927432634219, + 0.6706715033452372, + 0.6465536126444082, + 0.6888088841378028, + 0.8468524782278828, + 0.8989545396538374, + 0.6928126195546201, + 0.5722605512792683, + 0.625610416072468, + 0.5627414470909926, + 0.8684899588652878, + 0.7939013766768965, + 0.6995424908822957, + 0.7801519825408839, + 0.6876177614714604, + 0.5547427404444354, + 0.7266007671229948, + 0.5690352450100901, + 0.46914052937250683, + 0.6761217397152143, + 0.7383493395738491, + 0.7782863652425689, + 0.7870668376027056, + 0.6241590730294555, + 0.5201508298182268, + 0.5786317350035917, + 0.6765944381330806, + 0.7746958001646425, + 0.6913150794001183, + 0.7457487226511867, + 0.8166381400602124, + 0.7028782251482613, + 0.5137517767486631, + 0.518444949108813, + 0.6153757605395684, + 0.716110381689032, + 0.6131891527035581, + 0.548148310907616, + 0.6248638671837031, + 0.48453651970438916, + 0.7771891389809068, + 0.5984021520420407, + 0.6793810452697919, + 0.4683920472781223, + 0.7054748044835147, + 0.5970214358408639, + 0.5306514308268988, + 0.6160098519869333, + 0.7813261815172861, + 0.7340366269617474, + 0.7341930476362284, + 0.7243765475571031, + 0.7136842113246512, + 0.7636926819268949, + 0.743488830629621, + 0.5301118618874853, + 0.7880363054967638, + 0.7444720756591987, + 0.5456116511149014 + ], + [ + 0.6824847438065458, + 0.6751880853236839, + 0.8271624922057086, + 0.5412647642872721, + 0.6180467968222376, + 0.6921537287508703, + 0.8122009634716489, + 0.785329178098702, + 0.7285691149179006, + 0.8293463565475893, + 0.7758929644724858, + 0.6304900925034989, + 0.6762907053524336, + 0.3913348815044779, + 0.7505563804219284, + 0.5653850606810522, + 0.6657534565365447, + 0.8609637748069437, + 0.6516925603953997, + 0.8170340343865996, + 0.7522002833343557, + 0.565689451808378, + 0.7887919440233082, + 0.8115295375269497, + 0.49316943562971255, + 0.6367761807354221, + 0.6336406821704008, + 0.8240985192718799, + 0.7093287270077195, + 0.4375110206380562, + 0.6152429352161297, + 0.607766425995386, + 0.6592944425809988, + 0.7094292958182878, + 0.8067176675234683, + 0.6548890291381919, + 0.7373646148016231, + 0.1691799778216278, + 0.5854709112825094, + 0.6371715534799445, + 0.7976797010565952, + 0.655187792748081, + 0.23557068050934804, + 0.5878824878776319, + 0.7157804016490856, + 0.7626920440177358, + 0.6304485971053188, + 0.8199462223824978, + 0.7501664851439015, + 0.44374620996917596, + 0.7585101828481479, + 0.5580706793853027, + 0.5796437571967364, + 0.597206104612586, + 0.4178668448648106, + 0.577984876029559, + 0.6424313519136692, + 0.6040299227498184, + 0.428489430619556, + 0.5649296738052221, + 0.6065088075423298, + 0.720718670953123, + 0.7153077218201278, + 0.5896473700396816, + 0.864497567378139, + 0.6878319808814357, + 0.7229615943207667, + 0.7283767556889126, + 0.6430522246156998, + 0.6287183379816169, + 0.6780432701463353, + 0.6464379627288294, + 0.8001036297276014, + 0.6651483710500041, + 0.731331630479724, + 0.6976002950693629, + 0.6784608341817157, + 0.5454647284941543, + 0.8209837932551334, + 0.6115431055283673, + 0.7139119590153155, + 0.413754809178485, + 0.6702472709296842, + 0.5569814378948137, + 0.6811395683141912, + 0.6872860655429928, + 0.7512250598412347, + 0.7065850029834926, + 0.4806629583986273, + 0.6083334570627651, + 0.7928478736093449, + 0.8106562082129937, + 0.613231425656838, + 0.6984897816091019, + 0.7503742772586002, + 0.6092658945086843, + 0.6249714165904297, + 0.5371964675463147, + 0.7985196656192725, + 0.7550497791651472, + 0.7283523973473797, + 0.6779826662691762, + 0.5897593479769492, + 0.5753415325066472, + 0.7351988022093741, + 0.9017330153921315, + 0.6282945136248983, + 0.7949704433600759, + 0.5304916365872913, + 0.7249977285526691, + 0.5697655642303923, + 0.7190998186964068, + 0.7616059866800678, + 0.7278564355053372, + 0.5731831944015812, + 0.724847845819437, + 0.6021719914646186, + 0.7538367415116896, + 0.6804128903675627, + 0.7256912545610018, + 0.666981242991034, + 0.6382422051406457, + 0.6724012108828861, + 0.6934443634393971, + 0.687329523229879, + 0.6885401037667251, + 0.38159559354613015, + 0.7724021422387748, + 0.6412681122808168, + 0.5908179223631089, + 0.7485810948293607, + 0.6973924241568391, + 0.6837154630436115, + 0.6167380219561545, + 1.0, + 0.6134190419965442, + 0.618190234617703, + 0.7391955822222513, + 0.36428724411717267, + 0.6350397710264029, + 0.6224049341885053, + 0.6881348659216916, + 0.6020982761895746, + 0.6668727819145974, + 0.5680756346560922, + 0.8502782240872293, + 0.5182617501770755, + 0.4329373625424782, + 0.27819800004234285, + 0.5536618560036539, + 0.644928094889079, + 0.5793791302253031, + 0.6696022591557971, + 0.735426906078727, + 0.6739109137300276, + 0.5932424850976248, + 0.3374708464754876, + 0.7086897529041551, + 0.6866201217422595, + 0.6419882444367144, + 0.6665987197007979, + 0.5895248131326659, + 0.7948872212646233, + 0.6167101366805462, + 0.7031447192078808, + 0.6041949544583403, + 0.5845526878064607, + 0.6479191251388792, + 0.6123753484586679, + 0.6694416906134808, + 0.6682761258886417, + 0.6569270163490678, + 0.6617354327867777, + 0.582914761775202, + 0.6478180947433212, + 0.20563958979756441, + 0.5264937997122021, + 0.5086109938769892, + 0.7307826466031794, + 0.5676511252906641, + 0.5017211823431084, + 0.6039525252440523, + 0.5648441119460401, + 0.6733049996681594, + 0.6543575139023964, + 0.7615384635531633, + 0.6999466276676759, + 0.7448009029934274, + 0.6661904053179025, + 0.6670168852590252, + 0.6235061169440786, + 0.6592731246814306, + 0.6126756732820661, + 0.5949679837830592, + 0.4136618825512349, + 0.5667964216223174, + 0.8298409387836656, + 0.6568327018892235, + 0.5155681474677224, + 0.5029623857165711, + 0.6687825050524396, + 0.5894717831381338, + 0.5811821054726082, + 0.47132110537349087, + 0.6071539527308184, + 0.6525927406835038, + 0.6505175885525329, + 0.6728674986991703, + 0.5272052357452786, + 0.5437200007087967, + 0.6648902571066417, + 0.49977711707913935, + 0.5691360924906715, + 0.7491000355626032, + 0.6607020456451685, + 0.4426959787276657, + 0.533081355932843, + 0.6189974404558285, + 0.551453274549806, + 0.5708547320810009, + 0.6852269338092933, + 0.21507326978854088, + 0.5979899467706974, + 0.6307010896724835, + 0.3781686189658535, + 0.5912630208716148, + 0.5082730538977183, + 0.5763036559698624, + 0.6920039447521396, + 0.744449843665542, + 0.5681724082623417, + 0.7077745091154561, + 0.6644345306167146, + 0.5993041916009219, + 0.6844071608471214, + 0.4101740147983861, + 0.31537841480591006, + 0.406329191229546, + 0.5585955305252632, + 0.5808238385632707, + 0.6678835897053645, + 0.46647895908794107, + 0.6718533013302251, + 0.410990565919817, + 0.5789076978296032, + 0.3929763161232011, + 0.7881856098938955, + 0.17391407100081563, + 0.3097166819360718, + 0.7374712628873712, + 0.31834024675456724, + 0.46201631315820174, + 0.5877741864344039, + 0.8242676560119518, + 0.4951131360508297, + 0.7251828117838126, + 0.5991748091922022, + 0.4896095395811449, + 0.7632835796578094, + 0.6216800079155262, + 0.7735924734241653, + 0.35049057637082176 + ], + [ + 0.9046470086341049, + 0.6976944361481083, + 0.7220111473119841, + 0.662114483505495, + 0.8232159876370259, + 0.7118707671251255, + 0.6272139538083801, + 0.9247228468464717, + 0.7346375378695589, + 0.7292538376808504, + 0.7026523877770114, + 0.8045152708580384, + 0.8321885472272524, + 0.7740900428009913, + 0.8784611214396995, + 0.7863174139240702, + 0.8137107447327757, + 0.8485565376102029, + 0.8382789583764527, + 0.7323155651301836, + 0.9202175982698803, + 0.7556527872509399, + 0.8136863557262158, + 0.7507993360133269, + 0.8157077075727006, + 0.875539646217196, + 0.842445807853911, + 0.863468642020718, + 0.7538720675691041, + 0.7612132817079698, + 0.945770561938788, + 0.8210344683212243, + 0.8512114376219866, + 0.7976731437430484, + 0.7576093551544891, + 0.9303525537069457, + 0.8965547751909969, + 0.4021992084567322, + 0.8315934100942091, + 0.9100070406190754, + 0.8189333278130122, + 0.7050160886045698, + 0.42434257865525854, + 0.7133070953913501, + 0.7674871724302246, + 0.7398511301233279, + 0.9584441292724978, + 0.7803839444285418, + 0.7496753741974017, + 0.8645802078874205, + 0.834930582064829, + 0.7008112928376103, + 0.7192427271308769, + 0.8629849743950053, + 0.8186917195865586, + 0.8293838068852002, + 0.8846941530723194, + 0.9349915666288997, + 0.49151646404717697, + 0.8972395718569148, + 0.7551272160058974, + 0.9151761604332836, + 0.8176977785063234, + 0.8938342262881908, + 0.6963729652329995, + 0.6154328433891616, + 0.7965408731467235, + 0.7932309706096803, + 0.7965668993601623, + 0.85958650451047, + 0.8050817715471406, + 0.6645223133242951, + 0.8578347544715416, + 0.9571704249031642, + 0.8225011896435965, + 0.8296123612835385, + 0.8245489121886409, + 0.7116862905702094, + 0.8220795135090025, + 0.8679254678847922, + 0.790295018732141, + 0.4771438150817743, + 0.7963133173609638, + 0.8504380912999785, + 0.9466486998146879, + 0.9377732500216841, + 0.8855394179253903, + 0.6524935457959226, + 0.5277854854791606, + 0.7339879762427896, + 0.8897411390794098, + 0.7875395660201663, + 0.6942212397942247, + 0.8764137409113557, + 0.8242698355019294, + 0.8721346796459927, + 0.8505353594026355, + 0.7825174277721287, + 0.7828532448101925, + 0.7811688135654145, + 0.879975731707652, + 0.886504300499005, + 0.8283154902517649, + 0.812447302620948, + 0.9241514044314496, + 0.6843800337076587, + 0.7342377281319948, + 0.8957645533572943, + 0.8035550341382889, + 0.8850666401287131, + 0.8977649111257088, + 0.7399132594395944, + 0.9282591380720212, + 0.9175701738469892, + 0.9377226755916003, + 0.8563787023634019, + 0.9465123860704906, + 0.9270561692741774, + 0.7287177757299192, + 0.8053832979602193, + 0.8792582319543231, + 0.8415861858635104, + 0.9566482857786457, + 0.8444579320559233, + 0.7950705629021382, + 0.7732349793868545, + 0.41255131004563206, + 0.8333511504095117, + 0.5797809931346459, + 0.7846199692990021, + 0.7597345802558331, + 0.7782943640630953, + 0.6427585029872881, + 0.669774256469692, + 0.6134190419965442, + 1.0, + 0.9287045027507101, + 0.6926722812756402, + 0.8070959653403605, + 0.9202796363220276, + 0.9414194497953247, + 0.9132648758077863, + 0.9335521172506178, + 0.9147318875701935, + 0.451437024454901, + 0.7869004750248636, + 0.7933439014091377, + 0.7112378463586978, + 0.668683228656969, + 0.8866731386494191, + 0.9370594481090538, + 0.9464173107859686, + 0.9730829962725697, + 0.8031949472403309, + 0.7764222574233304, + 0.8786404425947907, + 0.8179690592049251, + 0.8795509911945062, + 0.8927762064804657, + 0.9685034066179721, + 0.9250397644754458, + 0.8945628140542203, + 0.8648232282673937, + 0.8365550981692107, + 0.9250805619912957, + 0.8884844200722531, + 0.8844754974370312, + 0.9012101429055464, + 0.9238860830487496, + 0.9017162730496838, + 0.8441396173424516, + 0.8671658890756166, + 0.746962668739012, + 0.7385219584367195, + 0.8921157527923221, + 0.6857796207129702, + 0.9000023447134062, + 0.7060826084991154, + 0.8950126289997862, + 0.9228502729756739, + 0.8058439895422108, + 0.9083776488205176, + 0.8867367698278797, + 0.9302216878548503, + 0.8669822473905617, + 0.8773097249508408, + 0.8766643868995407, + 0.9122468262919932, + 0.7666809338396744, + 0.9025565051652489, + 0.9065563591725939, + 0.8360736624700853, + 0.8516136039754715, + 0.9187134021680207, + 0.8369316730920457, + 0.7586739799466323, + 0.8661322218456114, + 0.8714432223879595, + 0.7939843281079183, + 0.7081251129890189, + 0.8995867568125976, + 0.788026142995681, + 0.9155503187133451, + 0.7905241767065467, + 0.8748454691263694, + 0.8756329314867733, + 0.8527056106749437, + 0.7739409092658619, + 0.5530113245187108, + 0.8137051802714337, + 0.7898036827999194, + 0.9044340206159219, + 0.9199898279822795, + 0.8919207807729457, + 0.7798037467141304, + 0.5739519886986071, + 0.7144186791021581, + 0.9254632087522817, + 0.9362077153756595, + 0.8631102703149115, + 0.7149501874075284, + 0.6748570766002844, + 0.7848302240771706, + 0.9001118345934447, + 0.8450054615190679, + 0.7607507447813752, + 0.8255269252071875, + 0.85341182624912, + 0.7827743250062114, + 0.9118910064228125, + 0.8890315173955772, + 0.8521079571427191, + 0.9266402194244648, + 0.8109943065008468, + 0.8645150795882977, + 0.46920598222718735, + 0.6294650518812487, + 0.8536351989161584, + 0.9376493905483316, + 0.9004997029194861, + 0.7379919473713286, + 0.7919383390632877, + 0.7329595740119257, + 0.6580663241605921, + 0.7360116818573154, + 0.8218414487710297, + 0.7526282230158992, + 0.6754055167385268, + 0.7179425417884744, + 0.8283494081937448, + 0.7372453076794293, + 0.5004982633443449, + 0.7228571723471617, + 0.6761428599700662, + 0.7238899623750618, + 0.9031409712727162, + 0.8306500522912517, + 0.7365437843456011, + 0.6796383711027677, + 0.8979997294964684, + 0.7971267901373267, + 0.7150899457676283 + ], + [ + 0.8769724189905301, + 0.6462694386878914, + 0.661380517250822, + 0.724943302163568, + 0.8823117396976661, + 0.8214884579627543, + 0.6481214634178342, + 0.8298749891849968, + 0.7134636600386219, + 0.7582475709145243, + 0.6765240807267399, + 0.7613222881418488, + 0.782019376587568, + 0.8454543583662986, + 0.8343434043327053, + 0.8290115359973725, + 0.7673875011203449, + 0.8334574029337412, + 0.8928750257392967, + 0.7697458550279581, + 0.9299054654690624, + 0.818937075007289, + 0.7841594186014567, + 0.8128390799933337, + 0.705459191246178, + 0.8468831623071679, + 0.7673440393470354, + 0.7904218964391627, + 0.8453751097658521, + 0.7142013532885133, + 0.8583188002626916, + 0.7611035195326814, + 0.824560048146215, + 0.7837456075116088, + 0.806490912623918, + 0.9277545627098132, + 0.9250294126276267, + 0.4108550237838443, + 0.7481226468633679, + 0.8623067795397378, + 0.7322166453214691, + 0.6415738496090118, + 0.45207391238548594, + 0.7766884207842645, + 0.7541972865682642, + 0.8134043321013322, + 0.9408987697385677, + 0.8001454403132815, + 0.7969327643924612, + 0.8774259628232292, + 0.8591477748113, + 0.7786006627060525, + 0.7994633286629147, + 0.84810250162194, + 0.7661465906756458, + 0.8247389157248504, + 0.8907439621260679, + 0.8743333519682609, + 0.610625069150193, + 0.91057931387125, + 0.7507401089537553, + 0.9126736124381286, + 0.7438827519993925, + 0.8777737200662613, + 0.6777861821600565, + 0.624563332213744, + 0.875246619753485, + 0.8837870087116899, + 0.8171592495406726, + 0.851049117521326, + 0.9101385282954875, + 0.7750569191133939, + 0.795186324266346, + 0.888259763336279, + 0.8860384669282977, + 0.8422529127431408, + 0.8209900843747882, + 0.7620373021142621, + 0.7791693691804921, + 0.8316904505654814, + 0.8408923860633296, + 0.6678417450765803, + 0.7874110381254987, + 0.8677594307860311, + 0.882315402563096, + 0.8610061684745164, + 0.8749661168096385, + 0.7689669223655122, + 0.7058449878821673, + 0.7870106958893421, + 0.8481012056061265, + 0.8686942556842397, + 0.7880086844668549, + 0.9077944266275542, + 0.8816113172582742, + 0.8506878655152621, + 0.773493285313018, + 0.8850746978819635, + 0.8453880009276357, + 0.797814537453391, + 0.9075035465917399, + 0.9089312708732052, + 0.7688867839807043, + 0.9267308212748178, + 0.919302673064386, + 0.7079340020418307, + 0.8491116167241659, + 0.9113428611785557, + 0.8903698100602173, + 0.8729717659471937, + 0.9598973176785567, + 0.7631625999486286, + 0.8437705647876775, + 0.8908534333377587, + 0.9226010661406147, + 0.884571875854407, + 0.9418538790759244, + 0.909175122276502, + 0.7436300153764578, + 0.8818119448585089, + 0.9096937728596692, + 0.8884921055581182, + 0.9385072035141359, + 0.7952030952198895, + 0.7625124727210156, + 0.8051366715500639, + 0.5883502916053343, + 0.8600835765974713, + 0.6708461903884892, + 0.7942602718817867, + 0.7650413277661803, + 0.7800351595757208, + 0.655572137221232, + 0.7446777031497823, + 0.618190234617703, + 0.9287045027507101, + 1.0, + 0.7762381959440874, + 0.7840682829967964, + 0.9193580314156558, + 0.9447142114477121, + 0.8846874657536895, + 0.8859806271761543, + 0.9269943135530264, + 0.6045003197261912, + 0.8268979697499809, + 0.8367882820987526, + 0.7794858321231249, + 0.6752094415123043, + 0.8863427714749526, + 0.9493755820564312, + 0.9677872810450081, + 0.9244763457152656, + 0.7789092037889811, + 0.8833343135372358, + 0.9158452046069502, + 0.8490295418723708, + 0.9662959745961289, + 0.9346209790589869, + 0.9410115945328379, + 0.9656187966741835, + 0.9562127678011821, + 0.9212576407830874, + 0.8781885942825081, + 0.8933636330586685, + 0.8951906667998408, + 0.9264936919044808, + 0.9543366860021957, + 0.9700977985081399, + 0.9300420041656038, + 0.9274303128802345, + 0.9538093430939434, + 0.7653189476103782, + 0.6796470750657797, + 0.924966777431233, + 0.7004883910966682, + 0.9579163853407209, + 0.7848644853952895, + 0.8575692881646081, + 0.9566910589717179, + 0.8529010838097135, + 0.96661865070794, + 0.9635258962905051, + 0.9154568075097169, + 0.8539325433190086, + 0.8971679597090616, + 0.9235423187547526, + 0.8649721589019158, + 0.762479945341563, + 0.8655949822374438, + 0.8739563169136624, + 0.808634351892238, + 0.8776102656872818, + 0.9138792340403844, + 0.8281890498782385, + 0.7950346742128256, + 0.9060581007159488, + 0.9364268427624777, + 0.7643808777205002, + 0.7760039658557114, + 0.9604101715027529, + 0.7450071205288166, + 0.8905891712724316, + 0.7902715058830121, + 0.8900770926389707, + 0.8961998821738173, + 0.8139623377001498, + 0.8308630599102935, + 0.7357296108566764, + 0.8733141093942776, + 0.8269188863947116, + 0.8572393739206893, + 0.8962354495711579, + 0.9201618721972893, + 0.8341197706055177, + 0.5685229474181304, + 0.7757618579731829, + 0.9146568524700175, + 0.8821708820293235, + 0.9146885931377252, + 0.7377863008803204, + 0.7065400544527899, + 0.8290297274368297, + 0.9183818176203892, + 0.9085534488596932, + 0.7308991472554331, + 0.8053773997712946, + 0.8465454610072672, + 0.7762671639904911, + 0.9153309551254712, + 0.9634345717643998, + 0.8785326544197511, + 0.9515208886791532, + 0.8732306695400338, + 0.899871632641533, + 0.5656991220696389, + 0.5322400227125414, + 0.7861403605563255, + 0.9211210393529613, + 0.9170913465493225, + 0.794793548242463, + 0.8057690374304037, + 0.6925770503243656, + 0.77153732981667, + 0.8287731667679219, + 0.766986711355723, + 0.6981463529114357, + 0.7328892896872545, + 0.8050702398420542, + 0.7553802141797022, + 0.7599333182362725, + 0.6748951407010885, + 0.7664497283795687, + 0.6356691400242133, + 0.7867929699483341, + 0.782153969279955, + 0.8549916726161689, + 0.7174972825939973, + 0.651697074085738, + 0.9841151139316687, + 0.8330765689160584, + 0.804827423844256 + ], + [ + 0.6407394295243288, + 0.5756285850151363, + 0.7812087982374045, + 0.817400870753044, + 0.6930048172768204, + 0.7899942835994501, + 0.6372798713164399, + 0.6600461971417918, + 0.5541546190222228, + 0.7636176503273379, + 0.5709687391071295, + 0.5916441208780725, + 0.7887717581983837, + 0.533567306422721, + 0.8242469889421932, + 0.5821738468817229, + 0.5038894716202467, + 0.8010514961227163, + 0.7256178593286903, + 0.8194577128238936, + 0.8400399784526102, + 0.6535825149072693, + 0.8047819209458207, + 0.7555466560991955, + 0.4680841320772486, + 0.6510370153163114, + 0.7705803788568811, + 0.7936479838581312, + 0.6581021734348682, + 0.42492343434724017, + 0.6237340180678717, + 0.530073419206619, + 0.7205032053853969, + 0.6678511349534877, + 0.9535582895586531, + 0.6456731606039701, + 0.7605783277264335, + 0.377520643400176, + 0.5255589124477489, + 0.7125327490239328, + 0.7017003438637991, + 0.6520186199405701, + 0.4172880047532821, + 0.9224310427426551, + 0.8995525783374679, + 0.7667319437462639, + 0.7429586150277464, + 0.7575055701806336, + 0.9569351749425115, + 0.718133019448789, + 0.8348261557810971, + 0.7540706744973931, + 0.584447743582144, + 0.5310284285302822, + 0.3131892022130726, + 0.46682950170760457, + 0.6110369721774306, + 0.7269675753600076, + 0.6646875729013474, + 0.7324258816964146, + 0.522411952965914, + 0.8705890041585548, + 0.5542383943773362, + 0.6254131128448511, + 0.8537499334057435, + 0.6894680057413319, + 0.82258582418089, + 0.9135432656108167, + 0.6210720539331188, + 0.5395538590422897, + 0.7235892637509164, + 0.7055636454767871, + 0.7672968424081027, + 0.6894448925319031, + 0.8547959339792274, + 0.9154295842865724, + 0.8791431895242261, + 0.7541323779229503, + 0.6628569971569486, + 0.7792381700179509, + 0.6524419957873085, + 0.6492158642178957, + 0.6883401912776568, + 0.8387043782342857, + 0.6692178619213571, + 0.6584473053064407, + 0.7826975059490654, + 0.7324868840951636, + 0.6618427398089615, + 0.6407169077921657, + 0.8749989095563789, + 0.8858784252235135, + 0.8430004844013865, + 0.8133148190640329, + 0.8902989733631401, + 0.640577910422491, + 0.6351335634786418, + 0.6720769563877903, + 0.8243388037155412, + 0.6786128833639671, + 0.8379516910996432, + 0.7058580219198944, + 0.6712630659666461, + 0.7092974094757641, + 0.8288785329813714, + 0.7610603702209027, + 0.7468032875535939, + 0.8217855066269413, + 0.7327927474114975, + 0.8742241824734103, + 0.7497249246242899, + 0.8480253720203182, + 0.7467256482887376, + 0.7897375628065608, + 0.7552822280222641, + 0.8586138542079896, + 0.6877503154517147, + 0.8458657285627288, + 0.823906199137785, + 0.9126977752587752, + 0.7891728586098519, + 0.8402937554655406, + 0.7250589809633137, + 0.6234003863473309, + 0.7451860739950765, + 0.7486189531223363, + 0.6043222022535648, + 0.8881946239590585, + 0.7916634094955289, + 0.8248020530357483, + 0.8081758340066194, + 0.7155063459577836, + 0.6136029643318468, + 0.7325512261002338, + 0.7391955822222513, + 0.6926722812756402, + 0.7762381959440874, + 1.0, + 0.6116946274386366, + 0.834698966515537, + 0.7698362843811917, + 0.8732624514671529, + 0.7558868446276932, + 0.7490612314843019, + 0.6749670274354097, + 0.8968232051068286, + 0.8111144834713878, + 0.7137345384526328, + 0.49953404725921385, + 0.6828114063613006, + 0.7337612702701393, + 0.6870637000887182, + 0.7104702267067287, + 0.7170892134048729, + 0.9241935679672356, + 0.8468876217707292, + 0.6399420150091594, + 0.825782169760946, + 0.7273668234130758, + 0.7320767911323571, + 0.8251427457611307, + 0.7610163250809009, + 0.8888157580110971, + 0.8002353919255311, + 0.8374687791851687, + 0.8751214596644183, + 0.798715988379027, + 0.8276393766621192, + 0.8257856755381047, + 0.862961907211847, + 0.8791456151532769, + 0.8311382295242726, + 0.728080048340826, + 0.6829565279814139, + 0.8748777199910268, + 0.3622121299630181, + 0.7221014575446177, + 0.8274817483631084, + 0.6283627914163273, + 0.7644895243722382, + 0.6146253358630158, + 0.8227663692389436, + 0.747935273006975, + 0.8656767646531649, + 0.7904891257061775, + 0.9088439297085898, + 0.9071895189950417, + 0.8122723637874162, + 0.8396324931501793, + 0.7665161774477581, + 0.8194784449590932, + 0.8866335443277557, + 0.9074734090304034, + 0.7921576788952175, + 0.7620621917456935, + 0.7576398539125, + 0.8331470325993853, + 0.8313304912765314, + 0.7993697480483145, + 0.6638594884870855, + 0.7920177463214477, + 0.5849818118020427, + 0.6546665543163642, + 0.7740308154548418, + 0.8654935259258769, + 0.86439297344646, + 0.773827120990025, + 0.8768458161379125, + 0.7201233767701881, + 0.834948832859272, + 0.8247859180548703, + 0.6832095573236335, + 0.7216954217306044, + 0.8222745059882558, + 0.91230385160599, + 0.6755483763208685, + 0.8076464319842415, + 0.8186231603342772, + 0.6923816932609141, + 0.8561016494145935, + 0.812128453394343, + 0.5018350010202722, + 0.8623459135729369, + 0.8170490001437927, + 0.6909042295013369, + 0.8069583387137372, + 0.7929866037696681, + 0.7474418626042729, + 0.5547007895331197, + 0.830883023245344, + 0.7943323736134601, + 0.9161263897535892, + 0.8617423724942275, + 0.8918550125612829, + 0.8890224709416518, + 0.4912948752022083, + 0.5134358119436496, + 0.5829260634196833, + 0.7426472807080573, + 0.8076789021950219, + 0.5728311561085391, + 0.75336855132558, + 0.7844655536651589, + 0.7033051073504808, + 0.8703892013321087, + 0.46850515627775935, + 0.5057539956331051, + 0.5099640593968409, + 0.5222214725725539, + 0.6991070576200044, + 0.6053074098131607, + 0.6934295252135465, + 0.7353817852220492, + 0.64721012015239, + 0.5913733919366277, + 0.718963074594932, + 0.8534439274795076, + 0.5245883756669444, + 0.535154306208468, + 0.7805932076269697, + 0.9448589561284786, + 0.6373385310804304 + ], + [ + 0.5840368539371179, + 0.3380895636081851, + 0.46802019461086636, + 0.5101987286515323, + 0.6056936282592132, + 0.4140670350499163, + 0.2658723014363684, + 0.6970378641316495, + 0.3963227335695038, + 0.5935570161571867, + 0.5131040397142261, + 0.5089929116992353, + 0.5274932842542547, + 0.5165081013545981, + 0.6671228120446517, + 0.4756335954818224, + 0.5380942633035801, + 0.526750628563453, + 0.571001660499193, + 0.5533383397176471, + 0.6932906811144848, + 0.5284110698649145, + 0.6695931173523961, + 0.46950170151338505, + 0.5158398965754569, + 0.5591618689104926, + 0.7816132510691771, + 0.684437963078615, + 0.424483323102539, + 0.4011405774900287, + 0.6344472810537466, + 0.5471536959387593, + 0.605889993884498, + 0.6180688206195863, + 0.5803119053165542, + 0.6788416067140214, + 0.742589734718881, + 0.3476955809345946, + 0.4933878458808281, + 0.8273353163769682, + 0.5583387465244727, + 0.42001258268365477, + 0.37792641886526146, + 0.6267004835069416, + 0.6208564048503494, + 0.6794753949680674, + 0.8587672376945564, + 0.5652835830668557, + 0.6458561283463513, + 0.9255879341845801, + 0.6148445291581865, + 0.4399637619352593, + 0.44010362743178394, + 0.5474149101032055, + 0.5235274059487074, + 0.5178056778475884, + 0.5725467609088485, + 0.7615932504681219, + 0.4731928352489626, + 0.7923343067455304, + 0.42815932357655534, + 0.8069883353282068, + 0.44697268492208214, + 0.6428462904212667, + 0.5471792817647098, + 0.44545158466124884, + 0.5120651541912307, + 0.6762259721032675, + 0.5288378698445456, + 0.57967775411506, + 0.6139194983201451, + 0.3709622281218461, + 0.6203368983271393, + 0.7522280819023313, + 0.6254680449268221, + 0.7727774750044275, + 0.7528145993368983, + 0.5445961864040844, + 0.5138108073853133, + 0.7415107868157735, + 0.45967979290830335, + 0.3879603422847155, + 0.7134009971251364, + 0.7884077446401961, + 0.7434525684827052, + 0.6782877473614122, + 0.6166714961522431, + 0.4428073258284409, + 0.43250560017174594, + 0.4460645389898617, + 0.6573823357076701, + 0.6299050252672712, + 0.6522402326664962, + 0.6698272492780639, + 0.7491929341879547, + 0.6034354246825876, + 0.6322423789860258, + 0.6240233753242919, + 0.5843590555154612, + 0.5140636602041798, + 0.7357302656176068, + 0.6475809264931924, + 0.6206170457382133, + 0.6292582886200211, + 0.7303975628915093, + 0.45194653980663807, + 0.5261793800389836, + 0.7210078183164734, + 0.7218823874831659, + 0.8398538543954482, + 0.8571837281134546, + 0.6429143475654009, + 0.6906404309591495, + 0.6137348323767408, + 0.7637343902679595, + 0.6456444062371199, + 0.847273921770601, + 0.6793608170453371, + 0.6623898207605238, + 0.7000856918433703, + 0.7758499155792085, + 0.7445584113411952, + 0.7973395526376497, + 0.5782982859337126, + 0.6113482356404026, + 0.6730010124833792, + 0.39781661675173563, + 0.6863684973651547, + 0.49388879928003976, + 0.6794535087697219, + 0.5899871020644641, + 0.6285251849350003, + 0.4353588993611927, + 0.5656794932305338, + 0.36428724411717267, + 0.8070959653403605, + 0.7840682829967964, + 0.6116946274386366, + 1.0, + 0.8390673053579617, + 0.741194794541023, + 0.8109770235331565, + 0.8342977204207135, + 0.7955929076260293, + 0.28938549914067063, + 0.5772020726951866, + 0.7560507257078735, + 0.8380918739231767, + 0.743875029629935, + 0.8290939966247959, + 0.7780441228000781, + 0.8367734892825354, + 0.832182547284944, + 0.5460010824392176, + 0.6646019686524308, + 0.866387467256948, + 0.9482385963127216, + 0.7380244461561463, + 0.6917955447420292, + 0.7663843387210242, + 0.800622797026165, + 0.8431855105299074, + 0.7014893583756974, + 0.8081294477015631, + 0.7963154765189102, + 0.7632844764085867, + 0.8560826776207057, + 0.7375767376688775, + 0.7789253278497108, + 0.7599865105328969, + 0.771583939905926, + 0.7766128935970892, + 0.5754777514995917, + 0.5828309040210995, + 0.7651681699521801, + 0.753429353717911, + 0.85983925479365, + 0.8112443811945748, + 0.6491001253167864, + 0.794694951295289, + 0.5278110236986134, + 0.7775795005201179, + 0.820054785849496, + 0.8122938545166325, + 0.7177104877558342, + 0.678729184145016, + 0.7038221097738317, + 0.7210944152235841, + 0.6871873188332674, + 0.677367501954294, + 0.8173144048462468, + 0.7672285668525322, + 0.7502153604656214, + 0.8138265736577647, + 0.9173806309699631, + 0.7008898786781215, + 0.6831968694013874, + 0.7688208160629522, + 0.8294295623643152, + 0.5533049490307286, + 0.8477590178895985, + 0.6192963221352417, + 0.7755583038025116, + 0.9262455110493412, + 0.8206162474140533, + 0.7324138066315682, + 0.6320922258243435, + 0.6767967966226509, + 0.5216294213808924, + 0.7801221416906797, + 0.7521727609026332, + 0.9458443366146663, + 0.8963073481149748, + 0.7641167360483778, + 0.7718379200476779, + 0.4095194765606319, + 0.6075209704560903, + 0.8349646406343615, + 0.878197883159383, + 0.7852841688232622, + 0.7256635228230829, + 0.8671695089190588, + 0.7810323049451637, + 0.8246192552613636, + 0.7675670017296455, + 0.5762442398925368, + 0.8669787054280828, + 0.793894813151091, + 0.5221051776379234, + 0.7296738682682506, + 0.7987999325913754, + 0.7810021337539366, + 0.7813425256912739, + 0.734629824208948, + 0.7315257224805302, + 0.45858284696702695, + 0.49077224530021824, + 0.9208153261271461, + 0.8363597789783166, + 0.8028481963330887, + 0.4367048338961223, + 0.8289214918520761, + 0.7191031011221144, + 0.6309934771771517, + 0.732012498358466, + 0.5725659770905629, + 0.4697936922982365, + 0.8212279962116315, + 0.8504690262281956, + 0.7240119764492082, + 0.9102497782702463, + 0.4880707711845962, + 0.47499352344792806, + 0.34574534680281965, + 0.5018791030035931, + 0.6536319354718015, + 0.826281812572899, + 0.6333847884100219, + 0.38973377965608436, + 0.734328260888228, + 0.7300964324364483, + 0.5857695513682649 + ], + [ + 0.7659477544778566, + 0.5900046964102837, + 0.728802858428547, + 0.7740553252957446, + 0.8498468651764911, + 0.7896268027785934, + 0.6306266309546301, + 0.8591713655406217, + 0.6227788550400529, + 0.7531630677453001, + 0.6361697881474303, + 0.7391720280927482, + 0.8018717434069731, + 0.7687891422777443, + 0.9270462670135529, + 0.7474306413624361, + 0.7070841473959893, + 0.7908849930205302, + 0.8116136954818988, + 0.7699161595734225, + 0.9052405433699231, + 0.7645865296803588, + 0.8749219381019228, + 0.7580941206740334, + 0.6820181510706808, + 0.8401901258478588, + 0.8696452542672507, + 0.8605918247351272, + 0.7397693294488936, + 0.6526342971058908, + 0.8441403049528167, + 0.7593099493143748, + 0.8479349737138044, + 0.7547989411894014, + 0.8633698879310375, + 0.8632448112874087, + 0.8534287358060146, + 0.39954874298024684, + 0.6991398471478926, + 0.8707993567697978, + 0.8040094142324192, + 0.7291435133476777, + 0.4311202918051759, + 0.8433495591397075, + 0.8919716285636539, + 0.7990134353603849, + 0.9307743909337449, + 0.7790036732191032, + 0.8632698570652895, + 0.8684695057279178, + 0.819936196753433, + 0.7769087213117759, + 0.6921007709225588, + 0.750959054967927, + 0.625509776645293, + 0.6932884544620851, + 0.7862155427025095, + 0.8928198808662728, + 0.6834589959214508, + 0.8711172614346985, + 0.6406627770181813, + 0.9591575401182356, + 0.7207356611404601, + 0.8425323923370037, + 0.773374368519986, + 0.689090560751497, + 0.8608028421079592, + 0.8746322730327789, + 0.6918316971584038, + 0.7100375182503855, + 0.7739989277153537, + 0.7261311154501696, + 0.8286073417012533, + 0.8603222841714875, + 0.8915957636318985, + 0.9254761086636848, + 0.9326691908504546, + 0.7680272707090974, + 0.7177006803927105, + 0.8788475774525956, + 0.706008596758818, + 0.6050116806138839, + 0.7509623028767058, + 0.9199364614561293, + 0.8855621841256859, + 0.831488311988117, + 0.856445695327248, + 0.7377767340541419, + 0.6444279689386242, + 0.7625142591940496, + 0.9232621226191047, + 0.8241641737749819, + 0.8117456319605221, + 0.8886685080731472, + 0.8887932079931947, + 0.841822124244597, + 0.783105193935032, + 0.8149345039852524, + 0.7998581683011046, + 0.7154827835441626, + 0.8909023974269205, + 0.8503427195916888, + 0.813187054988634, + 0.848230867432585, + 0.929441175488328, + 0.6918532487335299, + 0.7938747788050324, + 0.8638496609549912, + 0.864596086570701, + 0.9506464374405817, + 0.8870306603568786, + 0.8379659700343977, + 0.8696367291674908, + 0.8614293059353154, + 0.9285923465318975, + 0.8886373626124859, + 0.9042618019524983, + 0.9198194023760532, + 0.8153764397080042, + 0.8666497056388156, + 0.8887352896734443, + 0.8941785929848383, + 0.9055760694074368, + 0.7480331121154774, + 0.7740552622712878, + 0.7917637138597101, + 0.5776876820742104, + 0.8953222116678178, + 0.7058589934282338, + 0.8436988955752548, + 0.8145348190797448, + 0.8050451370055376, + 0.6467709498347195, + 0.7652295367019039, + 0.6350397710264029, + 0.9202796363220276, + 0.9193580314156558, + 0.834698966515537, + 0.8390673053579617, + 1.0, + 0.9425498294364202, + 0.9554536572845145, + 0.9716559433551942, + 0.9313250915271031, + 0.5491463352377149, + 0.8641295411002834, + 0.9042657446702467, + 0.8326011787633916, + 0.7514931122624267, + 0.8342171258671792, + 0.8975672790333646, + 0.9020067807448411, + 0.9131827546121581, + 0.7058720059476365, + 0.8926570495723908, + 0.9360439501578526, + 0.8264134802730533, + 0.8957142209552106, + 0.818927085066151, + 0.9189101969804724, + 0.914990843361761, + 0.9115279665315836, + 0.8917727525580799, + 0.8595301871992063, + 0.9372632969475979, + 0.9296749817667147, + 0.8812323573747767, + 0.9368934859391466, + 0.9465026684827542, + 0.9560759082497045, + 0.9130100609269673, + 0.9007679231951423, + 0.8108985403535742, + 0.7602915744298006, + 0.9398940673075368, + 0.6446451205064777, + 0.8947006517707301, + 0.8615089397239928, + 0.7777399807243726, + 0.9256396890007412, + 0.7917006924589483, + 0.9338814707309607, + 0.9015069959705496, + 0.9612090015603816, + 0.8835159492442378, + 0.9302352497004286, + 0.9488549741581789, + 0.901156123036013, + 0.839348344240141, + 0.8582409692865189, + 0.9461811401111834, + 0.9096124877432885, + 0.9253466502151888, + 0.9394465239344705, + 0.9062878665758108, + 0.7971613321638146, + 0.8769632860322172, + 0.8967986529472617, + 0.9071567283785154, + 0.7536113786003257, + 0.932592434593746, + 0.754960597715131, + 0.8689433962291018, + 0.8884271110432114, + 0.9344367948369292, + 0.9140960919308277, + 0.8730679663820218, + 0.8623595922116162, + 0.6927827328287816, + 0.8863223380521321, + 0.8586109624907478, + 0.9212385096656494, + 0.8860929392800752, + 0.9028616478186153, + 0.9114391296262473, + 0.7121658452432353, + 0.7764878998307305, + 0.9409005922563793, + 0.9121269712027663, + 0.9309066713342902, + 0.7891798760574832, + 0.7426420145487667, + 0.8781881047337898, + 0.9132310636185863, + 0.8469855525163301, + 0.8230331903116538, + 0.9037458589402928, + 0.8492855577450786, + 0.6769753002815193, + 0.8898874194739002, + 0.9190829581653717, + 0.9138785432951416, + 0.9548014425942472, + 0.8984808640280646, + 0.931183568529785, + 0.4638601102254193, + 0.6928958745564012, + 0.8535506250928965, + 0.9124056598021458, + 0.8999051611831412, + 0.6244754286720291, + 0.849159910071031, + 0.8048467847362726, + 0.7543551009685641, + 0.8451623904743791, + 0.6905117614167453, + 0.6118227653849423, + 0.7584211080341964, + 0.7562172904061862, + 0.7778711630954568, + 0.7507078603770678, + 0.6875508646768199, + 0.8053606983562956, + 0.6706893113507957, + 0.7541804476706213, + 0.8600892877315625, + 0.9441714648387523, + 0.7355726696612556, + 0.5769263770953833, + 0.898440085861462, + 0.8790268310133009, + 0.7338809447769468 + ], + [ + 0.8533965578268343, + 0.6181344099955393, + 0.6574311040877412, + 0.7690086051231024, + 0.8997953091010834, + 0.8384480169875347, + 0.6285964830589484, + 0.8521604057280481, + 0.713029781733904, + 0.7020493968043597, + 0.6151260555824746, + 0.8127701667011902, + 0.8162112006401974, + 0.8663396418553777, + 0.8927139650367137, + 0.8915798833400489, + 0.7765042514520183, + 0.832464378102548, + 0.9326104615423375, + 0.7174826772401841, + 0.9135004831138074, + 0.8866800829547482, + 0.7993277705572129, + 0.7752685314020006, + 0.7811426092727077, + 0.9289980412450525, + 0.7716835905183307, + 0.8362466983528617, + 0.8506016992275744, + 0.7614871848888013, + 0.9164435919724837, + 0.7416904800881896, + 0.8744890196966726, + 0.8147247500299649, + 0.804196159631067, + 0.9564697018287104, + 0.8552068238570486, + 0.4988242948212809, + 0.8105964972184481, + 0.8932849722654366, + 0.8135975899823565, + 0.7543334708999581, + 0.550465865926944, + 0.812723934851683, + 0.8065745262885773, + 0.7219413354030553, + 0.9095226160992966, + 0.7617898292439074, + 0.8060778574734913, + 0.8385575265871222, + 0.8504988730097678, + 0.856632902834504, + 0.8578479968516233, + 0.8689304962514013, + 0.7988296062520305, + 0.8584308293090898, + 0.9173364265545574, + 0.9260743422595905, + 0.6554131353557322, + 0.8528431807462657, + 0.7899774777302266, + 0.9475693658967832, + 0.8353943341294494, + 0.933692919480253, + 0.7055691913282668, + 0.6420811189808301, + 0.89244917931643, + 0.8493693212189938, + 0.7242023683567428, + 0.7734897197550321, + 0.8222444021436174, + 0.7679432471121884, + 0.8076689011074722, + 0.9086434163362587, + 0.8619810560507997, + 0.868439410920126, + 0.8520534517673395, + 0.8519689665221563, + 0.8037423351482152, + 0.8936442752200393, + 0.7878392105299744, + 0.6751883568865704, + 0.7617285620607909, + 0.9199677457711029, + 0.8926415038859782, + 0.8383045662779496, + 0.8901198977378677, + 0.7779659363436202, + 0.722648317049711, + 0.8545139228184656, + 0.8933068588498253, + 0.814980042914575, + 0.7287815712018267, + 0.8822443203018443, + 0.8432205788484706, + 0.927110214699327, + 0.7901504589707914, + 0.8945618966652019, + 0.7614412028189442, + 0.7200230389970049, + 0.8696152899019157, + 0.9432868380148467, + 0.8443564043998495, + 0.9211938782303628, + 0.9030967347010567, + 0.6636798526826974, + 0.8520168620409224, + 0.8756276046200361, + 0.862485047765425, + 0.8681422293441121, + 0.8959493663281862, + 0.7983846688850049, + 0.8560512815236784, + 0.923532155102068, + 0.9728726479984988, + 0.9220227416537425, + 0.9265862073358403, + 0.9219142513768627, + 0.7206075600452853, + 0.8740060053546486, + 0.8863087749837366, + 0.894050961018957, + 0.9025561997968964, + 0.8301196747924056, + 0.8235726430977838, + 0.7861436042475772, + 0.6242537405672851, + 0.8714790957036072, + 0.6751280677463676, + 0.8393084099651991, + 0.8230799585799643, + 0.8093590480880611, + 0.6781363705137844, + 0.7818646099232028, + 0.6224049341885053, + 0.9414194497953247, + 0.9447142114477121, + 0.7698362843811917, + 0.741194794541023, + 0.9425498294364202, + 1.0, + 0.8909098176831166, + 0.9165776589684236, + 0.8925947996340229, + 0.6410701460027796, + 0.8382286105292229, + 0.859018850249964, + 0.7468908236397439, + 0.673270346900733, + 0.8137914155585286, + 0.9413928217540503, + 0.9400304711619356, + 0.9320268369497189, + 0.7430364220713522, + 0.8594139305408774, + 0.9123394959170442, + 0.7713148782467038, + 0.9258973990136715, + 0.8730929124843986, + 0.9539312080357569, + 0.9082687685613878, + 0.9019010576384686, + 0.872285919708387, + 0.7851965853751514, + 0.8824544370160501, + 0.8931242042572782, + 0.8501324879521099, + 0.9658335807778373, + 0.9624995236543687, + 0.9291333812457736, + 0.8731831499388231, + 0.9018030234135477, + 0.7686540978899454, + 0.7803115102575517, + 0.9434089475507182, + 0.6947020118412462, + 0.9006025105456991, + 0.7725432918347384, + 0.7887582463020512, + 0.9405591801079252, + 0.8827904203575827, + 0.9371568000258816, + 0.9098067367140131, + 0.9081443162360652, + 0.8280013569293109, + 0.8941516935268677, + 0.9348951423865386, + 0.8694919109800618, + 0.7749300898091285, + 0.8593584856679046, + 0.9029015488037199, + 0.8195421949716136, + 0.9120748972560462, + 0.9128772038281098, + 0.8396023616490474, + 0.694217660518453, + 0.8871511582779132, + 0.8841384620964943, + 0.8047675122096428, + 0.8602600801898703, + 0.8987099355536134, + 0.7617589707999095, + 0.9104300847071597, + 0.7938975053304879, + 0.8711795105691064, + 0.9129789381709876, + 0.8917696746074193, + 0.85233318754586, + 0.7138078766935473, + 0.8762920637852685, + 0.7810161920680406, + 0.8552983980180845, + 0.8522918987137743, + 0.9006976211609825, + 0.8127928175915953, + 0.7064467201994028, + 0.7448360063317855, + 0.8862306029755403, + 0.8488733665414085, + 0.915809171371378, + 0.6763380707980142, + 0.6772689752399504, + 0.8426067210634642, + 0.9208926745021397, + 0.8555802322442542, + 0.8264606176005319, + 0.8115504835772204, + 0.8275887008329764, + 0.6686530366086848, + 0.860934020957214, + 0.9310439598591425, + 0.8354686051408464, + 0.9447943513558524, + 0.8487011508502733, + 0.8927281967633873, + 0.5912770971469135, + 0.7009617643842072, + 0.8067483151964762, + 0.9489972372616043, + 0.9171866874509932, + 0.7462031568849801, + 0.8393265364924543, + 0.72080620329812, + 0.7461501637771559, + 0.7616422491104872, + 0.8430689871293032, + 0.6385370198983966, + 0.7452707794931536, + 0.7387015519504723, + 0.7389525678494888, + 0.6904087699990366, + 0.6614565496981077, + 0.8478712668357021, + 0.7197484890361323, + 0.853026514198117, + 0.8715753042359103, + 0.871404965682702, + 0.8234571135121233, + 0.6156914909242956, + 0.943568977442422, + 0.8116517344909804, + 0.7012269998012249 + ], + [ + 0.7761907895482058, + 0.6545464653135988, + 0.8096353285406522, + 0.7882317228330216, + 0.7872470257451145, + 0.7467030009845492, + 0.6466136695711991, + 0.8657702377862153, + 0.6650734837450062, + 0.8085419730172599, + 0.6701603810269862, + 0.7319609521010565, + 0.8643662104267142, + 0.6650670775539852, + 0.919217384460045, + 0.6852557265932461, + 0.7056820921210332, + 0.8564664572795708, + 0.7902894138607169, + 0.862282521626836, + 0.8947053313439092, + 0.6730965466940741, + 0.8911344622772722, + 0.7637606349058673, + 0.6850157191777237, + 0.7981891773512666, + 0.9095541740374435, + 0.908079382595865, + 0.6791452245716654, + 0.621434093570407, + 0.8372281707562148, + 0.7351862510575495, + 0.8072658686397053, + 0.6854905062972623, + 0.8965408494467291, + 0.8159876804744955, + 0.8670449300477927, + 0.4129083478946053, + 0.683037088234809, + 0.8498615318193262, + 0.8071679500001882, + 0.6841338322789481, + 0.3798707722845501, + 0.8288628757330841, + 0.8814602458059533, + 0.8391072896126786, + 0.9109280814711481, + 0.8147554449467462, + 0.9045443815051418, + 0.8434912672211874, + 0.836681523061214, + 0.7488849778420298, + 0.6199416757780352, + 0.729779226801211, + 0.5628659833287745, + 0.6255826203133784, + 0.7403218385759853, + 0.8776844527238749, + 0.6253028160144259, + 0.866736519080014, + 0.6286832927343217, + 0.9575065757579192, + 0.7065409525317926, + 0.7564963741791871, + 0.8531993784597529, + 0.7387295399036755, + 0.819730215434347, + 0.8876148796117995, + 0.7367325277898494, + 0.7342802579604902, + 0.7981418259429713, + 0.7197111392226957, + 0.8999528981898338, + 0.8768779813647201, + 0.8766519715689561, + 0.9047752763982432, + 0.9090719199264636, + 0.7444844370889178, + 0.7444226716017119, + 0.8742037548471341, + 0.7267729539355842, + 0.5424625020547508, + 0.7890868174018725, + 0.8907212782411745, + 0.8944635373513398, + 0.8616302261960617, + 0.8998163130000595, + 0.714726913597273, + 0.5908839194989187, + 0.7106047745033719, + 0.9335342943587469, + 0.861820074196004, + 0.8476126334258341, + 0.9012205488658788, + 0.942908327229196, + 0.7766608224556327, + 0.8246984109147681, + 0.747347391277696, + 0.8340431696073392, + 0.7521381021695188, + 0.9253444414521106, + 0.7873929779637832, + 0.81725180436968, + 0.774996467221203, + 0.942014853236186, + 0.7426714865224294, + 0.7696015857535784, + 0.8968545735411746, + 0.8375395070842436, + 0.9696575813867946, + 0.8717820534223151, + 0.839104589964313, + 0.9036251057047474, + 0.8832922527239943, + 0.90482464356019, + 0.916256864996235, + 0.8782462012169947, + 0.9437255870359605, + 0.8729103003040029, + 0.8865272885806982, + 0.9069125857648712, + 0.8816262231820942, + 0.914527814093416, + 0.7669643351471811, + 0.8132852304821674, + 0.8174240407950333, + 0.5264654315141077, + 0.912366362876323, + 0.7508947729563505, + 0.8326188241636291, + 0.829204610165288, + 0.811525683712347, + 0.649200558167779, + 0.7272389235853496, + 0.6881348659216916, + 0.9132648758077863, + 0.8846874657536895, + 0.8732624514671529, + 0.8109770235331565, + 0.9554536572845145, + 0.8909098176831166, + 1.0, + 0.9219861833955776, + 0.9228146465875811, + 0.542819893415512, + 0.894661719750904, + 0.9099263398461993, + 0.790863107600854, + 0.6752519317577014, + 0.8640336267778851, + 0.8574658248489597, + 0.8505297011948644, + 0.8947349761668272, + 0.797781388359679, + 0.8885774927676695, + 0.9255531244450155, + 0.8086534614337869, + 0.8900827803118342, + 0.8308227799817213, + 0.9047977827793757, + 0.9469019097580509, + 0.8802029694084302, + 0.9326782620177771, + 0.8929473081042453, + 0.9626529764364238, + 0.9601102477687977, + 0.9039876935504852, + 0.9071088880840805, + 0.923222771506224, + 0.960847872446039, + 0.910658489831639, + 0.8865505042738244, + 0.7826265427467811, + 0.7517886248953957, + 0.9248835082600255, + 0.547622533898748, + 0.8582270536126169, + 0.8337321912288218, + 0.813987509130829, + 0.8864693460663491, + 0.7232169282891623, + 0.9133980488716782, + 0.861049377667759, + 0.9795273189968171, + 0.9154895562140625, + 0.9196039848074145, + 0.9189461894831419, + 0.9384462625479567, + 0.8600228148248112, + 0.8761766313360375, + 0.954165453379682, + 0.9421577186599773, + 0.9152935181083478, + 0.9307582978551258, + 0.8932668412320223, + 0.8109005454871109, + 0.9023401874067091, + 0.9036549030256046, + 0.9010476609891542, + 0.6353827559218512, + 0.9061869729208261, + 0.7982784910850184, + 0.8224454525911203, + 0.8805395052710344, + 0.936548449170553, + 0.9070806431827051, + 0.8642026177383916, + 0.8847179742121469, + 0.6453470490534894, + 0.8796521806081785, + 0.8692577891857719, + 0.874317645621724, + 0.9135733235532857, + 0.912560490085741, + 0.9462401996623618, + 0.6572805846750752, + 0.8117365939001162, + 0.9492305462004633, + 0.9084997473314818, + 0.9154823187590924, + 0.8378334363012501, + 0.6418889312792057, + 0.8839473588223233, + 0.8717691315288021, + 0.8285717811163446, + 0.8104239344948159, + 0.9254499135255688, + 0.8636286772441245, + 0.7168572006855578, + 0.9319498651650452, + 0.8828151749609132, + 0.9667282713945982, + 0.9634996510794341, + 0.9303700779928561, + 0.9470095771507618, + 0.4167336116247771, + 0.6142220002989857, + 0.82291098282451, + 0.8785463002304489, + 0.8851726598497958, + 0.6166983195771052, + 0.8503469695617283, + 0.8395280494700732, + 0.7479425772091036, + 0.8281515549991905, + 0.6357698236779572, + 0.6490191646139936, + 0.6347445134093237, + 0.6452116184842259, + 0.8483803525960694, + 0.7647106294964461, + 0.6305452721351843, + 0.7725011519248942, + 0.6911636990105169, + 0.6647930788422474, + 0.8663944925024621, + 0.9168721282743924, + 0.6322877651170627, + 0.6098500975334905, + 0.8642210198654705, + 0.9327752081610042, + 0.6819762961041149 + ], + [ + 0.7879896780258754, + 0.6034303721254954, + 0.7427800020773702, + 0.7133352872233186, + 0.8377503319035278, + 0.7377312545034478, + 0.5936104089216685, + 0.8776625192115318, + 0.6295963258744179, + 0.6928084619665454, + 0.6284807055597259, + 0.7369038790823682, + 0.8150451771972995, + 0.7380801182015794, + 0.8990858109393729, + 0.712164544881375, + 0.7200189669327203, + 0.7623514102965423, + 0.7730897976905712, + 0.7328263577414288, + 0.8895801550940067, + 0.7219074497764754, + 0.8674762449584748, + 0.7280629720406232, + 0.7028595863057245, + 0.8392893226077198, + 0.8918148228575815, + 0.8293484079772719, + 0.6889284721464353, + 0.696572235502494, + 0.8675457419717729, + 0.7826355757451243, + 0.8427882770108018, + 0.744877505709223, + 0.8082917307979518, + 0.8656073067352565, + 0.8484373522623098, + 0.43170393271107094, + 0.7568699546242755, + 0.8858181539870938, + 0.8551851844707988, + 0.7884208533966861, + 0.48887962592639445, + 0.7605189281511849, + 0.8792641835647119, + 0.7345555004417008, + 0.9260175010360592, + 0.7729936868191204, + 0.8033515490914344, + 0.8699395998494884, + 0.7669049177125415, + 0.7129798117436863, + 0.6393832663472442, + 0.7684215421182076, + 0.6679627543202707, + 0.711535752682283, + 0.7963578002394882, + 0.9287336379895516, + 0.6380824773844023, + 0.8459676337252894, + 0.6295248274782481, + 0.927500871434653, + 0.7236511523831335, + 0.8296687300967451, + 0.7578662269824437, + 0.7028360557089154, + 0.8073057731564593, + 0.821703304700846, + 0.7086639177394838, + 0.7520349523315493, + 0.7363031618180276, + 0.6681448944433602, + 0.80638639274951, + 0.8752591064269488, + 0.8664837253256265, + 0.911492086092657, + 0.9281529153623727, + 0.7486951487200048, + 0.7475023939129964, + 0.8841357232716764, + 0.7217676371790017, + 0.5053414158328617, + 0.7049821801845461, + 0.8887251390888457, + 0.8971729757128107, + 0.8586784787208341, + 0.8283012549785169, + 0.6764213797663386, + 0.5561311353044978, + 0.7441020584205257, + 0.9060446371756166, + 0.7890832484380881, + 0.7798971036908487, + 0.8776139877165691, + 0.8190350795484473, + 0.8509499253157163, + 0.7791702640017608, + 0.7738252758709846, + 0.766149655706706, + 0.7263807331649411, + 0.8837254055117726, + 0.8334277580848106, + 0.8094759650766622, + 0.8025374769892001, + 0.9236302870284605, + 0.6561064399278772, + 0.765510600617151, + 0.8400625848712489, + 0.8032509011152764, + 0.9274714067822274, + 0.8634092476006641, + 0.7685060590696846, + 0.8766897250253628, + 0.8551177685825682, + 0.9043346335172523, + 0.8329041898356017, + 0.9155417951591696, + 0.9082684371154734, + 0.7306212458376184, + 0.7929018189978303, + 0.8703076883273955, + 0.8453373953597417, + 0.8995260041490997, + 0.7283249215044478, + 0.7501002468776689, + 0.7314183170146917, + 0.4653590449141762, + 0.8619048348468714, + 0.657242185156329, + 0.8278036702141758, + 0.7463759965774481, + 0.7460479833213071, + 0.5833450015210595, + 0.6824139247895498, + 0.6020982761895746, + 0.9335521172506178, + 0.8859806271761543, + 0.7558868446276932, + 0.8342977204207135, + 0.9716559433551942, + 0.9165776589684236, + 0.9219861833955776, + 1.0, + 0.9185575609828195, + 0.47760930315758315, + 0.8228150294301888, + 0.8424848159337532, + 0.7635808843648583, + 0.7294665293444922, + 0.8396263690260861, + 0.9027501468579319, + 0.8924512762297498, + 0.9236255191314322, + 0.7037859724626531, + 0.8191053894521199, + 0.890617544508448, + 0.8029458018301692, + 0.8390736510757045, + 0.7806336436431781, + 0.918570452960441, + 0.8815845004703391, + 0.8827650267179927, + 0.8358388835739593, + 0.8400001411579952, + 0.9227720597549859, + 0.8928032334906569, + 0.8580642230080425, + 0.8861386671919252, + 0.9147957713988685, + 0.9147308755538756, + 0.8563070539523794, + 0.8570410313142423, + 0.8058012317154307, + 0.800469177753191, + 0.9039886851484524, + 0.6631763005193948, + 0.8625627889246126, + 0.8148074522327002, + 0.7946935905522855, + 0.881921587265109, + 0.7747079929703008, + 0.9067092808731189, + 0.8786379866826162, + 0.9484547221571834, + 0.8814865954177532, + 0.8998426381625817, + 0.8992684604038162, + 0.8991392204892732, + 0.7939888354114139, + 0.8719285624321301, + 0.9325877907347229, + 0.8892560614319716, + 0.8885797051875226, + 0.9464561133477324, + 0.9034555082025485, + 0.7685488763593988, + 0.8391827963219077, + 0.8463246024884555, + 0.9033913474714764, + 0.7357104333494102, + 0.9095727615114203, + 0.7230926570709992, + 0.8610971962327609, + 0.8726638455520204, + 0.8886582366976455, + 0.9116780786323249, + 0.9013577602051324, + 0.8131881469045031, + 0.5850138854503211, + 0.832579678848015, + 0.8286468724970028, + 0.9268697646552018, + 0.8955483430649743, + 0.8645003862484973, + 0.8462967727032296, + 0.6865073416091789, + 0.7391941831487849, + 0.9202245119010047, + 0.9363210866094072, + 0.8873635311878559, + 0.7815732719837789, + 0.7443791539857174, + 0.8522074811512613, + 0.9161473051764615, + 0.8075533191689436, + 0.8092933151457933, + 0.9073556828029021, + 0.871923260243989, + 0.6628237499624334, + 0.8768530361213087, + 0.8857243817405055, + 0.8707128773907629, + 0.9268649011724056, + 0.8419967563718369, + 0.9068212213963359, + 0.4761081589244172, + 0.7068581990972503, + 0.8933107672882006, + 0.9306298778315553, + 0.8879405922845682, + 0.6122198028416903, + 0.8462757898238955, + 0.8338947894662704, + 0.7003426842511068, + 0.7851911175385631, + 0.7102965015276053, + 0.6527868572427519, + 0.7252096353796768, + 0.7398920399670689, + 0.8255476249107248, + 0.7275297079194171, + 0.6008666510898782, + 0.783180724087281, + 0.6925438330028852, + 0.7302603738715168, + 0.8775667026425488, + 0.8994766188751298, + 0.6968677786260205, + 0.5721006742057522, + 0.8656497412120958, + 0.8028427320587946, + 0.7445353274034424 + ], + [ + 0.831043161488916, + 0.7275804254793823, + 0.7775499234805093, + 0.7505590284229481, + 0.8900010922321604, + 0.7902338300874179, + 0.7402082389320149, + 0.8783619490143154, + 0.7428194277694695, + 0.8609789294062252, + 0.7860245822689328, + 0.8009497434521465, + 0.7853284061407954, + 0.8051872955319933, + 0.8952868382275437, + 0.7695958742841097, + 0.7865116960934138, + 0.8523517392954063, + 0.840177495102143, + 0.8668707845133548, + 0.9065605935957495, + 0.7650729839070469, + 0.9077582024914511, + 0.854924978688657, + 0.7229464853910912, + 0.8666580547911708, + 0.8388279544491126, + 0.8834408130146093, + 0.7935654221838505, + 0.7656608969155133, + 0.855148002909164, + 0.8399970980764914, + 0.8604491606500295, + 0.6988518230712107, + 0.8250304184711356, + 0.9024635814359342, + 0.9345000648411106, + 0.3832665533146924, + 0.7293866529908017, + 0.8422243890697445, + 0.823668590102083, + 0.6462229390808532, + 0.3204579266797826, + 0.7116971372138309, + 0.7759750854102534, + 0.902753632649524, + 0.9076790321848938, + 0.8929591938892341, + 0.8062558643928743, + 0.8302727555479382, + 0.828404848120492, + 0.7501684597120128, + 0.673272126734735, + 0.8575211538334718, + 0.7027295679811177, + 0.7670326225094514, + 0.8437759984342136, + 0.8444554638418224, + 0.6125129056053858, + 0.8917105777658372, + 0.6992190950285494, + 0.9274649779651074, + 0.7626293049213219, + 0.8180714524241601, + 0.8045207984739186, + 0.7217366692411634, + 0.8639810193031321, + 0.8396306723008087, + 0.8097863380757956, + 0.8578219456839596, + 0.8786215493538272, + 0.8157692162086383, + 0.8868351395305225, + 0.8645631976965494, + 0.8952708164125067, + 0.8056530498008068, + 0.810793115732348, + 0.7018601126167323, + 0.788537638270873, + 0.8303487537283931, + 0.8254060229040683, + 0.5310915956296873, + 0.7929790336774191, + 0.789784604881886, + 0.9403241904473494, + 0.9043577992381163, + 0.9161921898033333, + 0.7708263162894213, + 0.618013236865936, + 0.7728997416479322, + 0.8817460074698154, + 0.8275289542750778, + 0.7934713392008322, + 0.8680140551520389, + 0.877538212191237, + 0.8232046978918522, + 0.8450370266038282, + 0.8403478126338633, + 0.8273609334923048, + 0.8396631103903672, + 0.9222061347946688, + 0.8345953107066173, + 0.8093687385903438, + 0.8472293217984541, + 0.9213785944603132, + 0.7574671716292309, + 0.8436909480739696, + 0.8852083265582759, + 0.8316347709721011, + 0.8873359727655041, + 0.8822420295371771, + 0.7842583526473837, + 0.8547241410311033, + 0.8467690393334335, + 0.8843994197615808, + 0.8834254667894126, + 0.9134383124784401, + 0.9245164291206731, + 0.776873734070229, + 0.7779115202478506, + 0.8822476269075633, + 0.8262437856515097, + 0.9375371501870203, + 0.7774091237526891, + 0.7466558009268299, + 0.7977911811149413, + 0.5678592143650051, + 0.8437268140873025, + 0.7172944701341518, + 0.6890299033670026, + 0.7885511077536167, + 0.833077412587388, + 0.6693576878276631, + 0.734489146968681, + 0.6668727819145974, + 0.9147318875701935, + 0.9269943135530264, + 0.7490612314843019, + 0.7955929076260293, + 0.9313250915271031, + 0.8925947996340229, + 0.9228146465875811, + 0.9185575609828195, + 1.0, + 0.5554648257854711, + 0.8696911641306594, + 0.8566244282168369, + 0.7760738513029988, + 0.7653506732597061, + 0.8684404186039045, + 0.8919591248773899, + 0.9114510449374811, + 0.9110307151236288, + 0.7553700474675603, + 0.8078195692451731, + 0.8509364512878358, + 0.7825015876288294, + 0.9204632575875952, + 0.8607212600709273, + 0.9268039791019035, + 0.9398980072063023, + 0.8992402807285751, + 0.8934262595082714, + 0.8288312677842211, + 0.9059872700822281, + 0.8656124888739654, + 0.8568276999061051, + 0.9090430517423499, + 0.9090968066320663, + 0.9203163598738934, + 0.8573016332077674, + 0.876813125896476, + 0.7431528514715103, + 0.6575182281589729, + 0.8425187063839825, + 0.5947219897062342, + 0.8649805468360132, + 0.8123991311689582, + 0.9027950859054795, + 0.8558763693556156, + 0.8068760451910211, + 0.8833021197986731, + 0.9056108802658067, + 0.909037827485954, + 0.892168355270422, + 0.8564382043741687, + 0.869947246303474, + 0.8982275113118835, + 0.7390913059149818, + 0.8283979390216464, + 0.9008357242965824, + 0.8247700672825587, + 0.8198590457694733, + 0.8949366009081674, + 0.8270246004909317, + 0.7140967413866183, + 0.8876749574658347, + 0.8504240303543245, + 0.8204098048708732, + 0.6121358784607697, + 0.9482490690380138, + 0.7891860210004203, + 0.8082448784315077, + 0.7849519123498122, + 0.8729126519758554, + 0.8403128778365259, + 0.8277799098354507, + 0.8249632606941737, + 0.6463660142200077, + 0.7694786164205095, + 0.807335499704047, + 0.8755453575364119, + 0.8820019108123253, + 0.8891932102807176, + 0.8733203539994396, + 0.515006416060707, + 0.7502770203973569, + 0.8827784287036494, + 0.8884337827857687, + 0.8350989817707881, + 0.7438795870198013, + 0.6591085251095803, + 0.800639093012667, + 0.8477402103966665, + 0.8357180235700888, + 0.6720594776041939, + 0.8704058615625861, + 0.8040731307775619, + 0.7681008848208237, + 0.9046833998615159, + 0.9001947749261457, + 0.8638948468426568, + 0.925072970864703, + 0.8655063539952335, + 0.9169317994636803, + 0.43097962328247935, + 0.49864352279106744, + 0.8461541066697741, + 0.8852390005389937, + 0.8490297963812866, + 0.7308869073623885, + 0.7930337987418979, + 0.7685264101613328, + 0.7006721855209734, + 0.7440339049536254, + 0.6910940030971132, + 0.7140500093802602, + 0.6736825767236932, + 0.7093629261243747, + 0.8223988368600433, + 0.7713865717475481, + 0.5967597825349749, + 0.7809302983294071, + 0.7199128758243174, + 0.7415843661277602, + 0.8123805806443477, + 0.8208407582815546, + 0.6792415288204419, + 0.6918263027224172, + 0.9166756775553817, + 0.8277591260343472, + 0.6901407265508084 + ], + [ + 0.46855723727233173, + 0.4237651105948122, + 0.4074975852474531, + 0.819959593548706, + 0.736432342294662, + 0.6862342495431892, + 0.5159921999151984, + 0.4122568950529294, + 0.614035763573334, + 0.5884315853560204, + 0.3955723893659786, + 0.5600495649293895, + 0.5661867429435713, + 0.549397966107377, + 0.5619232476899013, + 0.7495618224364948, + 0.4054323918056347, + 0.6190301371234566, + 0.8059167956336287, + 0.6184472787012247, + 0.5420654153683243, + 0.7394309041568393, + 0.5193718813293925, + 0.6807651974964174, + 0.4575868070694744, + 0.6717204666654086, + 0.34887813569095905, + 0.5012463869749613, + 0.7316957138539132, + 0.5303658891401697, + 0.49207289998994014, + 0.42658775017600065, + 0.5030978997244908, + 0.45464844523648146, + 0.6840376695807087, + 0.6260462458866145, + 0.5374393783503844, + 0.7567624945171487, + 0.5186050460771945, + 0.5645930809366773, + 0.5132850547317656, + 0.6160570408273167, + 0.5847887055694186, + 0.6006033639532452, + 0.534404927267564, + 0.6226311804632616, + 0.45475882625684005, + 0.6374101560564681, + 0.7359325561972537, + 0.48010981343222187, + 0.5664279784539841, + 0.8202060423369771, + 0.7772681184240952, + 0.5410229411302395, + 0.4312047567235485, + 0.5562881623281465, + 0.6221943028583665, + 0.6021804584552796, + 0.7767170292582461, + 0.4105276352570165, + 0.6239540365679577, + 0.6751509879026965, + 0.5895127472213111, + 0.5627202232418734, + 0.597019591770066, + 0.7177808557257332, + 0.7648449575144921, + 0.7128897943940505, + 0.4248713538685268, + 0.4359629071509337, + 0.7250106880172663, + 0.7537973710235728, + 0.5067061398450868, + 0.5266845988526809, + 0.6371388813466593, + 0.5627155228551373, + 0.5164378561000579, + 0.8262294712937408, + 0.5237729756545566, + 0.6288029552480976, + 0.6016545646625336, + 0.8813286831517942, + 0.5366067810480665, + 0.6304946441579383, + 0.4749705822755148, + 0.46196554201475337, + 0.6768128258579098, + 0.8958622248534837, + 0.9098814987178958, + 0.7961012453006496, + 0.5788426831626025, + 0.6518967980301403, + 0.6681369164091319, + 0.6191013857208225, + 0.6536438789423907, + 0.6907219904849666, + 0.4601572071665832, + 0.8400319225400437, + 0.5343826711572647, + 0.45890722900506625, + 0.623215571569866, + 0.7168151245605937, + 0.6804346953742213, + 0.7868962024678215, + 0.4933152426578715, + 0.5187455947942637, + 0.7818894861762795, + 0.6615922345638567, + 0.7315958223224863, + 0.5289092146985898, + 0.555390219722141, + 0.6600126058669772, + 0.43642373389229416, + 0.6080868880710818, + 0.6424372341461564, + 0.7806504574277687, + 0.5179572875918905, + 0.5671726754923498, + 0.5345716687972522, + 0.6579421259989043, + 0.597128100591357, + 0.6809948613526862, + 0.5686317397445801, + 0.5301364350788149, + 0.7534702778794494, + 0.7349998650264405, + 0.9115118195162035, + 0.617842711908881, + 0.8673129866672749, + 0.5721671799993876, + 0.7331183118434208, + 0.7333472392942694, + 0.7054519168839312, + 0.8277220623827646, + 0.5680756346560922, + 0.451437024454901, + 0.6045003197261912, + 0.6749670274354097, + 0.28938549914067063, + 0.5491463352377149, + 0.6410701460027796, + 0.542819893415512, + 0.47760930315758315, + 0.5554648257854711, + 1.0, + 0.6641889161048938, + 0.6047419745366415, + 0.5536245645507313, + 0.466207077174691, + 0.3596016194927713, + 0.5328979299996944, + 0.5208436835662872, + 0.48859095025631893, + 0.6458866183804032, + 0.708059019266531, + 0.61171401066825, + 0.37241319184497923, + 0.7361541635121831, + 0.5703074810373032, + 0.5377736231188704, + 0.6086556919473831, + 0.5649924204022586, + 0.6577560294604933, + 0.41808681975518747, + 0.4294017385100823, + 0.559106462169375, + 0.48352178048888284, + 0.7211398545723442, + 0.6739795160492955, + 0.670296590449448, + 0.65274387174566, + 0.6776940309194391, + 0.6005837983653116, + 0.5722699507598339, + 0.6390990524725063, + 0.4238843371511068, + 0.5460423222877115, + 0.5926955629816698, + 0.3935732872568539, + 0.5606248498911732, + 0.6620237002132872, + 0.6087126967840564, + 0.6043814533491675, + 0.5214711836809363, + 0.577964391576075, + 0.5694081312629639, + 0.6501013718115527, + 0.4862609948817076, + 0.6136533081726477, + 0.3972336649192352, + 0.4949290564607693, + 0.4563217960287371, + 0.6336612553327887, + 0.4895088516533859, + 0.4970562986883592, + 0.3562083239723807, + 0.7094992088784183, + 0.613945591537198, + 0.4829623783474231, + 0.6925389472761528, + 0.6030923061494005, + 0.539055062796583, + 0.5304109795999353, + 0.4782367934033634, + 0.48695572000799925, + 0.5929012121786913, + 0.6414209190884426, + 0.7833973205866095, + 0.8773748663171048, + 0.6288700971055555, + 0.44604638807991454, + 0.3470087120700069, + 0.41544598036365116, + 0.6863150748510365, + 0.6627926668446898, + 0.6496084125387275, + 0.742658908492149, + 0.46437509930138543, + 0.3300876229827385, + 0.6520796591035604, + 0.5165613282800652, + 0.2976830445991888, + 0.6411832568810756, + 0.5787393373099146, + 0.6118080406978029, + 0.6087189697809994, + 0.4936906834648253, + 0.45510457342062355, + 0.3499767521328725, + 0.49631289616402463, + 0.6288764710012558, + 0.5565274282959786, + 0.6392880328842089, + 0.7277275770986591, + 0.6347412209262684, + 0.727367526155751, + 0.44808819554019413, + 0.43488958749513973, + 0.5859827364024018, + 0.5434944864328525, + 0.5542882207962792, + 0.6065267754958394, + 0.4158297142969545, + 0.7659021141749935, + 0.48053172247073506, + 0.5162743956645666, + 0.2904595741896903, + 0.5113876176645211, + 0.41749594889555297, + 0.44238710520255875, + 0.4512035833932547, + 0.8025307990809862, + 0.7747447161064622, + 0.7503280111444828, + 0.7117294711584271, + 0.4931233055226806, + 0.586810171796103, + 0.5939687852083482, + 0.3769449740674455, + 0.7039161635448897, + 0.6140158568714287, + 0.42079012068171584 + ], + [ + 0.7616278993142084, + 0.6882959755584128, + 0.8668578418815182, + 0.8157091316925349, + 0.8485988957211376, + 0.8987498637517951, + 0.8225122540969522, + 0.8164321485137029, + 0.724565605465943, + 0.8663619990825275, + 0.7555216857375043, + 0.6871600137682806, + 0.8202040587081143, + 0.6717866904692266, + 0.9066483727800958, + 0.7161332095980371, + 0.718077467671556, + 0.8982690251249968, + 0.8286347738361833, + 0.9276522125706739, + 0.8893614163269341, + 0.7538564314223615, + 0.9248150917422097, + 0.9005749137489032, + 0.5780125870662289, + 0.8082693404474285, + 0.81778689889672, + 0.8775676666662726, + 0.8148882702023293, + 0.6021275775527449, + 0.7736201370727893, + 0.6938164454723088, + 0.8328055377347415, + 0.7253104074964184, + 0.954824420341339, + 0.8032191861785033, + 0.8501923563073429, + 0.3428402889067147, + 0.6295795656380981, + 0.7525580729182527, + 0.8604541908697222, + 0.7028180313468686, + 0.41247904991969986, + 0.8359376080617823, + 0.905550049204281, + 0.8417191696089411, + 0.8007435333225188, + 0.9073358441063546, + 0.9043186572454911, + 0.6724792910523454, + 0.8495442535055274, + 0.7736888972959883, + 0.7019881442708904, + 0.7582319497041426, + 0.5089499338370028, + 0.6513258030015697, + 0.7829149509636262, + 0.7602300286558901, + 0.6636475740354697, + 0.734228367153212, + 0.6644168277436396, + 0.8922915178957485, + 0.734176150706279, + 0.7374224343584365, + 0.9327331439839839, + 0.8271079043751525, + 0.883561508841507, + 0.8906467130111232, + 0.7596579434736589, + 0.7292037436753234, + 0.8240581590190974, + 0.8306515980422997, + 0.862699024715359, + 0.7632394352475071, + 0.891000531628174, + 0.8592146342283904, + 0.8535282145113213, + 0.7385825932329123, + 0.8286636615774639, + 0.7509212393931702, + 0.8315373106347076, + 0.6121160194484137, + 0.65954274174282, + 0.771235211576336, + 0.8035732754798965, + 0.7690338103711554, + 0.8780184472468978, + 0.8332914923850492, + 0.6820589561899545, + 0.7625869496374502, + 0.9147237494346743, + 0.9358133518199214, + 0.8191038087855768, + 0.858382736946251, + 0.8911082610388689, + 0.7361020233321232, + 0.6996606170626959, + 0.7499719439838718, + 0.8983472237507699, + 0.8174033231986365, + 0.8915798484148431, + 0.7731408657702102, + 0.7202926060828642, + 0.794034426554694, + 0.9059828650931131, + 0.8986854763197716, + 0.8790922598243538, + 0.8812325777903398, + 0.7451610128731475, + 0.8776188787063105, + 0.7649943380171179, + 0.8501281646558956, + 0.8027961230777559, + 0.8491497418487883, + 0.7792720484651788, + 0.8902333562364843, + 0.7737753390375632, + 0.9262601811948327, + 0.7940524520776897, + 0.8725204115031553, + 0.8302648936513556, + 0.7681885470776496, + 0.7908298873362293, + 0.7362170209109699, + 0.7400504364076603, + 0.7301579283457167, + 0.588013732873688, + 0.9128085418505553, + 0.7746279903177942, + 0.7515962976054751, + 0.8348141024202136, + 0.7944205395814354, + 0.6608578529475122, + 0.7338684609473882, + 0.8502782240872293, + 0.7869004750248636, + 0.8268979697499809, + 0.8968232051068286, + 0.5772020726951866, + 0.8641295411002834, + 0.8382286105292229, + 0.894661719750904, + 0.8228150294301888, + 0.8696911641306594, + 0.6641889161048938, + 1.0, + 0.822094122912519, + 0.656310155931365, + 0.5387614025088886, + 0.7314445857768637, + 0.808564015763123, + 0.7656129120511255, + 0.7901586453667854, + 0.7516301116495666, + 0.8891200617399422, + 0.8104117585331181, + 0.587156067024912, + 0.884533081847316, + 0.8034454927170324, + 0.820224463979758, + 0.8680290872880732, + 0.8071288380118868, + 0.926740007022223, + 0.7902555161562032, + 0.8639535998955216, + 0.8357832127920172, + 0.7756295418871413, + 0.8679334024566627, + 0.8590276699981475, + 0.8817023300945763, + 0.8638331927222921, + 0.8524674190124178, + 0.7588866581053252, + 0.673401252754298, + 0.8436767247023846, + 0.41723336999507, + 0.7240596358623577, + 0.7597308562495592, + 0.7839423283301348, + 0.7763567418454445, + 0.6902129266115844, + 0.8298469810888787, + 0.7838423516446981, + 0.8821280983485471, + 0.831248588434357, + 0.9079872861663449, + 0.8967127019536855, + 0.864040687779291, + 0.7753052823418684, + 0.7890554691184855, + 0.8263287407830542, + 0.8200384149657323, + 0.8275442302301598, + 0.8185855588588402, + 0.6960208963536237, + 0.7018960961024726, + 0.9230295378694039, + 0.8161613222407614, + 0.744722799097062, + 0.6293243412752803, + 0.8562729056800493, + 0.6718914688487296, + 0.6817961506994596, + 0.6983465940913685, + 0.8155841693676769, + 0.8745020446705298, + 0.823134058546796, + 0.8389646363370956, + 0.6927859004634567, + 0.7707030664173125, + 0.8585741474081824, + 0.7185167459722317, + 0.7648683449624946, + 0.8735103380698177, + 0.8676998233523215, + 0.5887287412869311, + 0.6958236579245843, + 0.8075667250671644, + 0.7480759561707196, + 0.8018720961395337, + 0.7340088845502608, + 0.47070150924860743, + 0.806597429645877, + 0.8179019085077164, + 0.6537450544070713, + 0.7651434464599494, + 0.7696949604801263, + 0.787151273843238, + 0.721538063441552, + 0.8710538718377273, + 0.8182877888993391, + 0.8759044913708326, + 0.8797455133684073, + 0.8295742999066443, + 0.9179208914290024, + 0.42651398143174013, + 0.44075114105366325, + 0.6324703349722578, + 0.7821049993435637, + 0.7780740443828107, + 0.7151985724302156, + 0.7205744122817177, + 0.7997261172607794, + 0.6457648408959553, + 0.7826603434293775, + 0.546801812588195, + 0.7428005055417766, + 0.42724416360264583, + 0.529119260380739, + 0.8043207238390769, + 0.537023322675332, + 0.6521568495566671, + 0.8136911030530168, + 0.8238700735271273, + 0.7284915644200991, + 0.7882757098629647, + 0.8051014186075225, + 0.5456910495535153, + 0.7542955605537772, + 0.8367747738395541, + 0.9054971938948471, + 0.616329525388176 + ], + [ + 0.6085760589090321, + 0.5261062109532979, + 0.6454445473647875, + 0.7936901370942396, + 0.7966875180580781, + 0.7907008594325258, + 0.5137698954634738, + 0.6824076113678124, + 0.4671149011792354, + 0.6647499940513635, + 0.4641092605042314, + 0.7101015204291649, + 0.7950568070922596, + 0.7091143848127469, + 0.7947803035999582, + 0.6896203637064898, + 0.5466183701973613, + 0.7242951303456064, + 0.796591642447136, + 0.7885022460290644, + 0.7623277252052535, + 0.6854131962726698, + 0.820551068462279, + 0.6734749663241318, + 0.5536270094888671, + 0.7880258128877853, + 0.8458966711917678, + 0.7786592849565234, + 0.6633629891491153, + 0.5642386500225397, + 0.7347693050356439, + 0.6358494497268503, + 0.7314631884355622, + 0.5784136041406839, + 0.8166845352736104, + 0.7468567508641293, + 0.7600381578694789, + 0.4703676790946215, + 0.5379553356763669, + 0.6996441037576018, + 0.7096235422241232, + 0.6346158033050712, + 0.45324973763269366, + 0.8216776090192774, + 0.7951382203649153, + 0.7807703521240756, + 0.7844906810159716, + 0.6718949431558867, + 0.8503385114615419, + 0.7409115517100358, + 0.6817117209439416, + 0.8109320242703788, + 0.6177634448811589, + 0.686793431503451, + 0.4829327017513328, + 0.547707498284184, + 0.6692728602706426, + 0.7784998688313597, + 0.7538788088580503, + 0.7846122514016715, + 0.47705106436810857, + 0.8871786585035478, + 0.5715402164368929, + 0.6861073573260471, + 0.7535211351269385, + 0.6531804244902342, + 0.7858750952837837, + 0.828032413446266, + 0.6582058876317632, + 0.6348620206870128, + 0.7881235378561986, + 0.7599107025030531, + 0.7482975753662856, + 0.7195988934352626, + 0.8240486330646084, + 0.8239057665908777, + 0.8313746171198041, + 0.8190242880489871, + 0.5614821211796683, + 0.8044196069327337, + 0.6624777120372205, + 0.6399789828072941, + 0.653512180442711, + 0.8696196645841092, + 0.7682473061410895, + 0.6853216840584359, + 0.8022224444552613, + 0.7221871450441671, + 0.6660214601971635, + 0.7947440515191229, + 0.8209015677634532, + 0.7835342386799495, + 0.8838468848967372, + 0.8633139221839501, + 0.9079614500351422, + 0.698843929040748, + 0.7202671908361009, + 0.800758274925315, + 0.7131405818831607, + 0.643094039599907, + 0.8905134615327257, + 0.7008343644474355, + 0.6858656920446772, + 0.8115322448270123, + 0.8624329669744254, + 0.5653020569507733, + 0.8043309507572877, + 0.7450116989405569, + 0.8779999218868579, + 0.8847908608366374, + 0.8274488001746411, + 0.7023273233237833, + 0.7260352809566257, + 0.7930808246954273, + 0.8694281349637989, + 0.8977310627785644, + 0.8062621075697384, + 0.8490351181415384, + 0.7431037318921586, + 0.8438577468206714, + 0.910069129865428, + 0.8335526784883892, + 0.7999297226903112, + 0.5892245788690427, + 0.6784159365328376, + 0.6758563167798851, + 0.6518640671696863, + 0.8794228828213954, + 0.752739787496839, + 0.8236459550050036, + 0.6935436660387801, + 0.7335023859032545, + 0.4672009983821931, + 0.6665232600577254, + 0.5182617501770755, + 0.7933439014091377, + 0.8367882820987526, + 0.8111144834713878, + 0.7560507257078735, + 0.9042657446702467, + 0.859018850249964, + 0.9099263398461993, + 0.8424848159337532, + 0.8566244282168369, + 0.6047419745366415, + 0.822094122912519, + 1.0, + 0.8200753489315084, + 0.6738473403366981, + 0.7934552660331838, + 0.7621070446953342, + 0.7900608405860822, + 0.780998574857096, + 0.5765867699339768, + 0.8638909808311797, + 0.9015728409411347, + 0.7467919417566476, + 0.8404091019461072, + 0.6715715850077042, + 0.7819611417073185, + 0.8653747342056214, + 0.8310342724564265, + 0.8155679392301581, + 0.812893335407856, + 0.8660224591010135, + 0.9022923685380436, + 0.8328522291648074, + 0.854728758949859, + 0.8867677611030004, + 0.8965470062824649, + 0.8497758834371015, + 0.849075716642176, + 0.6415475684073492, + 0.7491055494382459, + 0.8761054231071452, + 0.5303730575039314, + 0.7863876064398964, + 0.8917521334307903, + 0.6450100732466663, + 0.8090934784098174, + 0.7056264729572246, + 0.8852796267209022, + 0.831445912775084, + 0.8878968030195156, + 0.8392620706247604, + 0.7961389086034149, + 0.8511461485061714, + 0.7688036934555806, + 0.7023568975662675, + 0.7363234541512522, + 0.8736112275535504, + 0.8487132119939543, + 0.8814491882371943, + 0.8798353846272347, + 0.8611232796498622, + 0.6911127923647103, + 0.8002105976932149, + 0.8105765317128892, + 0.8844625846131419, + 0.6753740762666576, + 0.8428511282542429, + 0.6674406794240512, + 0.7566916667189761, + 0.8476020253490926, + 0.852790990186593, + 0.8539358205038499, + 0.8235361019134414, + 0.8604909537299202, + 0.6976739681477875, + 0.8985259520399622, + 0.7785281892260206, + 0.781534029409319, + 0.8403801338301825, + 0.8039363638853708, + 0.912044818589979, + 0.6610755193807261, + 0.7518638436719965, + 0.8176921037596073, + 0.7969715956436382, + 0.9182744159925541, + 0.7720232738654658, + 0.6321724860102097, + 0.8509936327855885, + 0.774323110056819, + 0.7953981242746929, + 0.6860696777242183, + 0.887898326092122, + 0.7915298278655818, + 0.4992836397285965, + 0.7663907050964301, + 0.8398653086040498, + 0.8723277790617479, + 0.9177867660328627, + 0.892872520392315, + 0.8956475945758833, + 0.459721237525032, + 0.6341425232054031, + 0.7664765842558107, + 0.8083898548791277, + 0.8402841227566583, + 0.49746532667883353, + 0.8789907065614568, + 0.7805331285699402, + 0.8244224408211854, + 0.7586475623353022, + 0.5235244615078971, + 0.41615269360246276, + 0.6649957806047926, + 0.6363936941345589, + 0.7120771485543566, + 0.7054951551986806, + 0.7553680429109072, + 0.8587353875905128, + 0.6042702390837363, + 0.7778729280175044, + 0.7053372790015809, + 0.9015318868359032, + 0.629305669843006, + 0.4158490916844302, + 0.8367966950465433, + 0.8571826192451424, + 0.6490469965777658 + ], + [ + 0.5132470170342239, + 0.3860515250010591, + 0.44166047757414517, + 0.6681108430874367, + 0.7495208686582405, + 0.5869076346669809, + 0.42912846906208174, + 0.6413693331514277, + 0.3164700228018155, + 0.6637154768642398, + 0.5057626810624836, + 0.5606897025052832, + 0.5344023657690122, + 0.5911253132256591, + 0.6601888049072885, + 0.5172731960718878, + 0.3292789601915826, + 0.582316876022191, + 0.6542934808621237, + 0.5910038345307037, + 0.6721932054964443, + 0.6509610965204753, + 0.7245961125959991, + 0.5882661605657171, + 0.3476026710102938, + 0.6121759055572538, + 0.708116884051147, + 0.6584731344912298, + 0.5607299768485495, + 0.36016992391046376, + 0.5156160858658497, + 0.564017819700443, + 0.6869759308731723, + 0.6438745320728257, + 0.7291654823095269, + 0.6476445706291761, + 0.7343638185220455, + 0.4911768540038349, + 0.3636001684006561, + 0.6845085303409302, + 0.5330369794385611, + 0.45763523502112935, + 0.33968112986344123, + 0.7781248191419496, + 0.667982803263365, + 0.7732685484446343, + 0.8020737894557276, + 0.6059172614771257, + 0.8003975425055319, + 0.821245211886906, + 0.651671833948288, + 0.5744932047180626, + 0.5517792617043513, + 0.489392463662309, + 0.406688785102235, + 0.466730094347702, + 0.5528910910787038, + 0.7053826424033725, + 0.5544358079321653, + 0.7840723624999951, + 0.3483341790652967, + 0.8019132302883313, + 0.3847722189787971, + 0.600906087880766, + 0.6119611053028874, + 0.53676750366669, + 0.6728895249634642, + 0.7891359907135214, + 0.5990809139628183, + 0.5472421328043129, + 0.7298724600393717, + 0.5134328731769912, + 0.5476600923626278, + 0.6016557455326975, + 0.7284467914101851, + 0.7342884698749624, + 0.7395494753489168, + 0.6525466718686727, + 0.4010900328861622, + 0.685974069821066, + 0.5393207352503144, + 0.5946485359601984, + 0.7158553446318836, + 0.7626110471816313, + 0.6181802551753254, + 0.607287457638922, + 0.6086946716618443, + 0.6095383698085739, + 0.6379659449469535, + 0.5977890157349016, + 0.7004230176800411, + 0.7152804562189918, + 0.795511925786684, + 0.7443891199370053, + 0.7679151129138374, + 0.5878744753679443, + 0.5353487094780394, + 0.7588821261831123, + 0.7126968728933741, + 0.5803412821431504, + 0.7557730493517736, + 0.6513905286183048, + 0.5871523706929916, + 0.758849102229518, + 0.7102077695270245, + 0.4841182697559162, + 0.6131185386328795, + 0.7634064016771233, + 0.8019323842135253, + 0.8107745806033461, + 0.8281470835254673, + 0.6484501079352091, + 0.58162099714107, + 0.5758041368823513, + 0.7452195872246168, + 0.7268969392097216, + 0.771781126304465, + 0.6773002424533678, + 0.615206377297462, + 0.7495158573224046, + 0.7323095857061147, + 0.7909051355480056, + 0.7681726640708724, + 0.4863561417848654, + 0.5834941562702474, + 0.7027959934451768, + 0.6683004650433612, + 0.7611181743149481, + 0.5918527718911413, + 0.7145497850093062, + 0.6109249680798365, + 0.6866356074895049, + 0.4978363695436467, + 0.6690533577973544, + 0.4329373625424782, + 0.7112378463586978, + 0.7794858321231249, + 0.7137345384526328, + 0.8380918739231767, + 0.8326011787633916, + 0.7468908236397439, + 0.790863107600854, + 0.7635808843648583, + 0.7760738513029988, + 0.5536245645507313, + 0.656310155931365, + 0.8200753489315084, + 1.0, + 0.8877609479048437, + 0.7512283593730845, + 0.7228156401589851, + 0.801199642993802, + 0.7456516457176927, + 0.5489825171339693, + 0.8028184134351813, + 0.8320500887933056, + 0.8403614323492211, + 0.7733820914226271, + 0.6450928017324188, + 0.6729673788537348, + 0.7955896315882007, + 0.8788894586722763, + 0.7284189033804143, + 0.788202111192182, + 0.7369623682480788, + 0.7936722883872496, + 0.8190744601935592, + 0.7810200011336792, + 0.8221813530875228, + 0.7871655299214668, + 0.8329115799050061, + 0.8423951006382243, + 0.5136456234686568, + 0.5221258317026467, + 0.7730656575790537, + 0.7282862182773869, + 0.816769159209903, + 0.8867120920722549, + 0.5774165337868746, + 0.7745078710337369, + 0.5162159876316806, + 0.7752589377236729, + 0.8526128179352347, + 0.7883526107411252, + 0.8269793554653526, + 0.6984875300377672, + 0.7805476580764135, + 0.6169310563963926, + 0.6572008322204336, + 0.5613293931377222, + 0.7254804745691306, + 0.7417930549304014, + 0.7517335483599533, + 0.7200415706522613, + 0.8175973991141329, + 0.7058236643845807, + 0.7379218253708192, + 0.7806382500613731, + 0.8222086580894619, + 0.6006126621289427, + 0.8625784672079788, + 0.5390090588826212, + 0.6628794266202506, + 0.8635017021595427, + 0.8362783220027752, + 0.7433973394414712, + 0.5886488822568158, + 0.6898580217173227, + 0.7421814960260046, + 0.8212965666875498, + 0.8155638114157019, + 0.8460713809018651, + 0.7862884058727206, + 0.7444518675975479, + 0.8250582133900106, + 0.49948161920024514, + 0.6953460898659258, + 0.785740229133508, + 0.7682702045202845, + 0.8331746720406136, + 0.6955245933285253, + 0.8645369137078895, + 0.8218120541388599, + 0.7427731410677488, + 0.7539149604303429, + 0.5341777945017864, + 0.7976752000988513, + 0.7605931609727731, + 0.5225132115033004, + 0.6527062170662464, + 0.7899017757370256, + 0.7808011897306226, + 0.7830459345230352, + 0.8097997411305146, + 0.7983498528595653, + 0.5328551463075729, + 0.5137492300437176, + 0.828489899449945, + 0.7600479765790532, + 0.7893601924591793, + 0.5428634480198431, + 0.8000765722140123, + 0.5936279198808294, + 0.6939488598358767, + 0.8458062173759574, + 0.47070054402254935, + 0.35918023557269735, + 0.8169803154496844, + 0.8430462468526102, + 0.6167491249906137, + 0.8663336150029133, + 0.6756094465276828, + 0.5814232163237906, + 0.43206388516895383, + 0.5789930881283166, + 0.536995783197235, + 0.8230712279319788, + 0.6350762305106559, + 0.41019784478482896, + 0.7785194829266969, + 0.7895480384511303, + 0.5611186464124751 + ], + [ + 0.47603543394863473, + 0.4194900674636172, + 0.3771845940604741, + 0.6547451872025766, + 0.7663575087182188, + 0.4927146991510116, + 0.4708564163616222, + 0.6026872843080141, + 0.3679813300548396, + 0.6297191682446232, + 0.5557699015666868, + 0.5453086050520426, + 0.42435472288661275, + 0.652343555901918, + 0.6436653089537976, + 0.5249655810565089, + 0.3469643468783206, + 0.4846966462985043, + 0.5951386312918895, + 0.48920081219140266, + 0.5926251126685772, + 0.6598952062645326, + 0.6770372870024565, + 0.5772649004007532, + 0.4282637939580291, + 0.6367321028269242, + 0.5821105388844606, + 0.5794822334713641, + 0.5359013619417323, + 0.5237515510630434, + 0.5214529339776771, + 0.6508663663326117, + 0.6973577808960069, + 0.5246757636578564, + 0.591089446581591, + 0.637579275131391, + 0.6511967808915197, + 0.5003602998616609, + 0.3977434572862735, + 0.6337365241372963, + 0.49653570087130133, + 0.40450450986982234, + 0.2222782959164409, + 0.6041954161701185, + 0.5532972623616066, + 0.6900438314427767, + 0.7132423758665891, + 0.6124264009276895, + 0.6375279034827475, + 0.7411297063208891, + 0.5592621009095818, + 0.5164382488794387, + 0.4958550217385623, + 0.5272240547442522, + 0.4813113938246071, + 0.49846472504305006, + 0.5592507720191777, + 0.6421795929265776, + 0.4724381748606461, + 0.6905722269014022, + 0.3897547396876619, + 0.7018228246580774, + 0.4282333940919705, + 0.6072385807581586, + 0.4989536333867092, + 0.5340488311409856, + 0.633863426802209, + 0.6114878119132281, + 0.5242335656235527, + 0.5351453480596738, + 0.6247699695792936, + 0.5067513178602056, + 0.4963046773069411, + 0.5430184374684037, + 0.633351685608709, + 0.5499718195632326, + 0.5767876764670041, + 0.5190901582286579, + 0.3541302309714589, + 0.5959036590187295, + 0.48959729134287794, + 0.4754707212600057, + 0.608132611483043, + 0.5870386172355745, + 0.6125187176126521, + 0.6212191241794671, + 0.5714363670534323, + 0.5670237780180252, + 0.552439179686044, + 0.5480258945054988, + 0.6153544439883906, + 0.5154104738171356, + 0.6049196009329522, + 0.5860857129211154, + 0.5576309835756587, + 0.6078911710004328, + 0.525504198160372, + 0.7330975134594155, + 0.5676066041683641, + 0.5293974941723764, + 0.6125243426331409, + 0.6068024175830881, + 0.6341291003832633, + 0.6895562039050531, + 0.5787595726514989, + 0.40307985617006936, + 0.5617749752443302, + 0.651698512977816, + 0.6814936616505262, + 0.6387235854484967, + 0.670659201269387, + 0.5886225264216007, + 0.48455381935815434, + 0.4632132233958577, + 0.6714686223928268, + 0.6110374931652955, + 0.6823932372799493, + 0.5892534009223204, + 0.49847229628221107, + 0.4851744303236418, + 0.540466896995779, + 0.6229381783882846, + 0.7050812059279686, + 0.46527152982151204, + 0.5090846440717168, + 0.6315551899597631, + 0.6349540391986301, + 0.562051524569975, + 0.4985567075907234, + 0.471898889119711, + 0.5684453038697671, + 0.6864416995658414, + 0.5316341286733883, + 0.6513046143294443, + 0.27819800004234285, + 0.668683228656969, + 0.6752094415123043, + 0.49953404725921385, + 0.743875029629935, + 0.7514931122624267, + 0.673270346900733, + 0.6752519317577014, + 0.7294665293444922, + 0.7653506732597061, + 0.466207077174691, + 0.5387614025088886, + 0.6738473403366981, + 0.8877609479048437, + 1.0, + 0.6060937441165727, + 0.6323857784119018, + 0.7276840781518149, + 0.6665677712705779, + 0.4797383290276108, + 0.6077105734840524, + 0.644762116484964, + 0.7206806954019035, + 0.6607068998409293, + 0.5651157111168255, + 0.6399391065472547, + 0.6732600913524369, + 0.758633876631709, + 0.574446798716058, + 0.5737603218823105, + 0.5899309637027162, + 0.64026519318689, + 0.6225317682769008, + 0.7041484621856412, + 0.7160063530896974, + 0.6834640116409535, + 0.6572194029078189, + 0.6806368383602356, + 0.45586771492105527, + 0.3625197244133902, + 0.5920244118833012, + 0.7142202193577819, + 0.6937364489553606, + 0.7403533078104179, + 0.5623145433871546, + 0.6573881022583156, + 0.5384388159219652, + 0.6146616348966172, + 0.7446161821763749, + 0.6532630168871529, + 0.7539982719680735, + 0.5634816773938314, + 0.6550734605990999, + 0.5389810887296993, + 0.543085039515853, + 0.4321626628503944, + 0.6238760105058372, + 0.5704952100493078, + 0.5837039549295024, + 0.5887625086230752, + 0.7167244827975505, + 0.5127680466698544, + 0.5960610638030037, + 0.6028401819044547, + 0.7063604530842058, + 0.4424693943729666, + 0.7625922892665172, + 0.5280143588473623, + 0.5489139624012336, + 0.6994395521455374, + 0.6971593772287535, + 0.5812741506711671, + 0.5141389138101454, + 0.5453228234421184, + 0.6145309663378787, + 0.5854891532120959, + 0.646374192140177, + 0.7973652548125528, + 0.6386455490994234, + 0.6254827211545768, + 0.6784778192619193, + 0.4023401443060181, + 0.5990995903027153, + 0.6618333152439594, + 0.6824184678474794, + 0.6453511569918257, + 0.4619017606290831, + 0.8060454098922218, + 0.640920034063898, + 0.6249078643163848, + 0.7083704011413553, + 0.4418259212685489, + 0.703978049602227, + 0.5972717034970721, + 0.5055119755426709, + 0.5357147393471087, + 0.6899877397299142, + 0.5834047210448228, + 0.648684695127561, + 0.6891751899163151, + 0.687029691470566, + 0.3618263005188351, + 0.45792173818567616, + 0.8325133285945618, + 0.6998566924616665, + 0.6314304707896393, + 0.5130818732398592, + 0.649947525049801, + 0.42881069579554115, + 0.5487551145193414, + 0.6438582747690652, + 0.539602578830427, + 0.32521128674631467, + 0.8104273718957021, + 0.7619446985359917, + 0.5018293960276229, + 0.8105431044433801, + 0.5083219891276775, + 0.5264674388505409, + 0.4373239325956908, + 0.5481467978888448, + 0.5014760431427804, + 0.6457012487371959, + 0.6135551874605646, + 0.42823264167476904, + 0.6892992920153371, + 0.5829928719095412, + 0.48688188109012964 + ], + [ + 0.8326759956445972, + 0.5985252359268958, + 0.6671476523416587, + 0.4939974461710705, + 0.7144150108685494, + 0.6490691951624435, + 0.4906967568524511, + 0.8315607070624755, + 0.5366034919109423, + 0.6609867025592314, + 0.597257700414861, + 0.7176822534711855, + 0.747496319796991, + 0.6611209195264526, + 0.6953967540722744, + 0.5679349994047279, + 0.6383194124423046, + 0.7726976329353831, + 0.7040002744755173, + 0.7192283951895367, + 0.8329743775750085, + 0.5768371985675088, + 0.7647112397623472, + 0.63138378160167, + 0.5545718967233315, + 0.6898138141562642, + 0.8431916460422612, + 0.7847890962032685, + 0.5918190158506068, + 0.5580766480471636, + 0.7390997588304624, + 0.6290131603147889, + 0.7605200362339171, + 0.6884694219648537, + 0.7009941553558255, + 0.8025933124417132, + 0.907075547899922, + 0.3379240272196133, + 0.6412375815657434, + 0.7687947889527066, + 0.7374726071592468, + 0.5389639627498082, + 0.33695268329448297, + 0.6534376099175769, + 0.6645749628347191, + 0.7468998155321253, + 0.9118897917532932, + 0.6982258096733323, + 0.7128518113933068, + 0.8586935785300809, + 0.7683999326962145, + 0.5693542459371856, + 0.5334897216327112, + 0.7298850312337727, + 0.6388860728535534, + 0.6804613743132046, + 0.7314250530014925, + 0.8260626036213293, + 0.36308905011315235, + 0.9386803788778031, + 0.5240177561081143, + 0.8318006591510697, + 0.5610413342675189, + 0.6558140915390783, + 0.7014399932505588, + 0.4969688607410645, + 0.6755019058626479, + 0.8174845739020323, + 0.8534614518019777, + 0.8549478652683172, + 0.8178647592545801, + 0.5643406410195553, + 0.7572567688769605, + 0.8208793847201896, + 0.8145589564094603, + 0.7875783962816567, + 0.8000805520630924, + 0.6438526514590217, + 0.719746433308844, + 0.798090439570354, + 0.7792955737738254, + 0.33595223903182025, + 0.8048437007099706, + 0.794800348657348, + 0.8397080158465411, + 0.8178630516076667, + 0.7629460992464687, + 0.4984671793498766, + 0.43573674788928085, + 0.6212471097738064, + 0.775872786350389, + 0.827585163169137, + 0.7787105289901933, + 0.8753634400707778, + 0.828852282108535, + 0.6643964697664747, + 0.7311404064978659, + 0.6764531768519051, + 0.81226522721371, + 0.7974653182333264, + 0.8983349247735289, + 0.7074050358535834, + 0.6207555233008712, + 0.7305104595006926, + 0.916032374185972, + 0.5793320947415306, + 0.6924576771239176, + 0.8412612463377754, + 0.7148079841629169, + 0.8715515625070904, + 0.9463899699302968, + 0.5657068382011855, + 0.8241709427156418, + 0.7963840415300893, + 0.8199619390040542, + 0.7681823603080731, + 0.9420337506702352, + 0.8578586006537672, + 0.6016135507589019, + 0.8117233924023236, + 0.8925804515798843, + 0.8266467832387447, + 0.8872137846744845, + 0.6626875122843993, + 0.6215196459970335, + 0.6504465953488789, + 0.31781917727727976, + 0.8351822942243177, + 0.4995254382189853, + 0.7616752803135415, + 0.5588998162632717, + 0.559579037776168, + 0.3961054389241403, + 0.4597746103961643, + 0.5536618560036539, + 0.8866731386494191, + 0.8863427714749526, + 0.6828114063613006, + 0.8290939966247959, + 0.8342171258671792, + 0.8137914155585286, + 0.8640336267778851, + 0.8396263690260861, + 0.8684404186039045, + 0.3596016194927713, + 0.7314445857768637, + 0.7934552660331838, + 0.7512283593730845, + 0.6060937441165727, + 1.0, + 0.9108605165000165, + 0.9069610635388258, + 0.9108195659381758, + 0.7075651206448234, + 0.7626351873307946, + 0.8416742382194468, + 0.8563896304774524, + 0.8163466948439916, + 0.8072908570601783, + 0.864003019433723, + 0.9235812036197901, + 0.9125272256571205, + 0.824067846463971, + 0.9388860674114349, + 0.9228225756789649, + 0.8846490933277772, + 0.9622462575335847, + 0.7967157067268107, + 0.8586841010327004, + 0.8316226240933096, + 0.8195548718391603, + 0.8611753672283073, + 0.5618488409175462, + 0.6696320756594271, + 0.8469187456985129, + 0.6072632146260657, + 0.8880438004395285, + 0.7797158876119639, + 0.853392979133371, + 0.828264707545494, + 0.6357412228536664, + 0.891455109440724, + 0.9217770135155392, + 0.9028493440972338, + 0.8573990259427745, + 0.7873839631606904, + 0.7852694607017614, + 0.8399396377624564, + 0.6027091901896482, + 0.8815936988475308, + 0.8719758880781227, + 0.8529196211081906, + 0.7948521474520228, + 0.9176868501015187, + 0.8312028601585917, + 0.7671529145992552, + 0.8207650958929511, + 0.8658697177472771, + 0.8249035125556428, + 0.5995007937424683, + 0.8972947489994195, + 0.6530663142164269, + 0.7678350253384214, + 0.829791810382181, + 0.8910270978368033, + 0.8747188154046489, + 0.7475641720220475, + 0.7133373574875626, + 0.46919813829811147, + 0.8242412571214618, + 0.849276422283234, + 0.8659651891339419, + 0.9665997632003777, + 0.7797042650580108, + 0.7733509174493152, + 0.39568318969088073, + 0.6689475142601977, + 0.9013562831371477, + 0.9371767723789898, + 0.8458585863333952, + 0.7728771479330707, + 0.7348564913620127, + 0.8490084099900113, + 0.819738079371401, + 0.7656195599419828, + 0.5681753018974949, + 0.8640417113263258, + 0.9212910235703604, + 0.6839074367492257, + 0.8882339494285035, + 0.8659117263677107, + 0.8697623479036338, + 0.891327729286451, + 0.7754934135473582, + 0.8784663880069117, + 0.515663362154622, + 0.4541393922260069, + 0.829299942746764, + 0.8672792402851096, + 0.9280910268035614, + 0.7088126410360213, + 0.8464788216786074, + 0.7933100093930221, + 0.6009323332019417, + 0.7985926643826712, + 0.6088927565523384, + 0.6614432072977532, + 0.6118278373506022, + 0.74819935944669, + 0.8497322643607687, + 0.8033436409519137, + 0.4249967431103746, + 0.5896020452800551, + 0.4793494395239917, + 0.5478604992047166, + 0.6890087518633377, + 0.7646953961648926, + 0.5384579494824989, + 0.5370679801543583, + 0.8526772519830036, + 0.7634631908416806, + 0.6484213249946248 + ], + [ + 0.9262076979523259, + 0.6126745263654402, + 0.6765346560575606, + 0.6245962155885882, + 0.8449674034794254, + 0.770483505536543, + 0.6010423494973637, + 0.8819429995207609, + 0.7054763207925893, + 0.7051593655074158, + 0.669995850910335, + 0.7620016022302633, + 0.7571059874417964, + 0.8004216282446464, + 0.8129657907868084, + 0.7756477340371272, + 0.7782917857084696, + 0.8248460387212239, + 0.8511483722912709, + 0.7047029269335028, + 0.9233756607476648, + 0.7982059636526991, + 0.7792074302486706, + 0.742550353685696, + 0.6926313841877365, + 0.8301021997956735, + 0.7787652739445676, + 0.8162359568529265, + 0.7854930032170401, + 0.694887207713332, + 0.8539783864541812, + 0.6809325578053158, + 0.8553668972610854, + 0.8353628293324558, + 0.7625051204461988, + 0.9429487341364647, + 0.912885739470261, + 0.422183022677144, + 0.7911095176421236, + 0.8973748287260602, + 0.8142625926450404, + 0.6846746943421607, + 0.48586717797963097, + 0.7310027168318364, + 0.7577665402184153, + 0.7208515908558075, + 0.9540681692241094, + 0.7870921619540613, + 0.745066352566571, + 0.893733255723514, + 0.8625238905664662, + 0.7135564676543104, + 0.7669599047292534, + 0.8367148007763914, + 0.7899312802517221, + 0.8649625028372968, + 0.8983982926395788, + 0.9107081577163756, + 0.49812198844381356, + 0.9042536081249395, + 0.7526288932405389, + 0.9072528163652128, + 0.7616966816647948, + 0.8541470579725058, + 0.7112043318761846, + 0.5845835264525223, + 0.8258872767484385, + 0.8722062111905469, + 0.7994578508760423, + 0.8472653879446489, + 0.8313763503287055, + 0.664922871344361, + 0.7897365705354595, + 0.9076696210203795, + 0.8540036284902907, + 0.8644599440725276, + 0.8557296524216518, + 0.7509823221457003, + 0.8570084327226584, + 0.8669782349844088, + 0.8249959071692591, + 0.5279824791059013, + 0.8023748004971843, + 0.8758023816507462, + 0.8851893263313738, + 0.8489986103642664, + 0.8372045133762154, + 0.6730279891596295, + 0.6311452094681261, + 0.7487302815730114, + 0.8454190403185282, + 0.861566591906217, + 0.7143888809291137, + 0.8719638655135553, + 0.809930315273493, + 0.858572391054339, + 0.7343145042354955, + 0.8164986900851338, + 0.8193539502886383, + 0.780044441578743, + 0.8737284511433823, + 0.8998823694077636, + 0.7751193943983933, + 0.8702474694674898, + 0.9216303963506569, + 0.6719677268294634, + 0.8208090124594739, + 0.9078992693191413, + 0.7629722913404571, + 0.8690748642840932, + 0.9517353745281908, + 0.7371682089784772, + 0.8606086740434739, + 0.8768154885056375, + 0.9039863736884559, + 0.8383550633425982, + 0.9756148500959055, + 0.9008451883151487, + 0.6460373757818938, + 0.8634698572989329, + 0.8719979312101271, + 0.8758886596556169, + 0.9078163169085254, + 0.7942962434870374, + 0.76333539890599, + 0.7490282813493402, + 0.4772797269266606, + 0.8426319655716121, + 0.5735302542256859, + 0.7898472196538069, + 0.7392539386270642, + 0.6862204356352737, + 0.6074499040237783, + 0.6692911307668388, + 0.644928094889079, + 0.9370594481090538, + 0.9493755820564312, + 0.7337612702701393, + 0.7780441228000781, + 0.8975672790333646, + 0.9413928217540503, + 0.8574658248489597, + 0.9027501468579319, + 0.8919591248773899, + 0.5328979299996944, + 0.808564015763123, + 0.7621070446953342, + 0.7228156401589851, + 0.6323857784119018, + 0.9108605165000165, + 1.0, + 0.9673923989571961, + 0.9674955725190568, + 0.7746034552964172, + 0.8260300944012193, + 0.8820637407564497, + 0.8253759698740353, + 0.9058821154612663, + 0.9077394749760911, + 0.9576634978208051, + 0.9277786502114714, + 0.9359467043934385, + 0.8760031597913283, + 0.8628914785940454, + 0.9003728221645616, + 0.8685717941466431, + 0.914553481604731, + 0.9224083488141174, + 0.9344586452041073, + 0.8900965801416095, + 0.8677855010403971, + 0.9143642951728728, + 0.7191927573271365, + 0.7281748181075512, + 0.9137932392989071, + 0.6973415606261242, + 0.9351217800206842, + 0.7667831385699594, + 0.8532315796016582, + 0.9205374847286433, + 0.8009438756363302, + 0.9298975373442623, + 0.9549275508215223, + 0.9089346698942368, + 0.8209473511275027, + 0.8827501104004353, + 0.8834420023501514, + 0.8814458957672014, + 0.7200076342174121, + 0.9057282195283871, + 0.8882871209077574, + 0.8226184869549825, + 0.8565784278746746, + 0.9256954558547816, + 0.8309932652957769, + 0.7397701175018221, + 0.894930009773749, + 0.9064983087055989, + 0.7929029313306587, + 0.801812928709937, + 0.931553205490816, + 0.7007190699713756, + 0.858980554537091, + 0.8036433458950191, + 0.8953132520063676, + 0.9305695410265789, + 0.8451552170771559, + 0.7935609752153391, + 0.6204758025894186, + 0.8435657679315143, + 0.8402120521281421, + 0.887778317456014, + 0.9100544663902022, + 0.8752214315469309, + 0.7707670735535531, + 0.5587325666636834, + 0.7063006970186955, + 0.9150347816476646, + 0.9087473486820196, + 0.873051586740266, + 0.7012750545453321, + 0.7336128673908903, + 0.8690218441118059, + 0.9324176002147867, + 0.8108789768805919, + 0.7539357829449438, + 0.8222641892120257, + 0.9055026889533766, + 0.7143405953608382, + 0.9090225917727247, + 0.9495657628462789, + 0.8431686893153313, + 0.9202779749971425, + 0.7935198645456734, + 0.9001925841742777, + 0.6272376321688311, + 0.5568182264240835, + 0.829350010468511, + 0.9575038768355908, + 0.9498502427867415, + 0.8103558039772809, + 0.842017037289407, + 0.7705630588026052, + 0.6378211294165195, + 0.8051190241317231, + 0.805166354944071, + 0.7335051420298528, + 0.7038028332409755, + 0.8059191641011063, + 0.8231751598630104, + 0.7397391882724176, + 0.5202066249989266, + 0.7079707059233895, + 0.6415359565948152, + 0.7203909438262818, + 0.8061975463964531, + 0.8103361159219263, + 0.7121418892097475, + 0.6364195464221073, + 0.942036326249474, + 0.7702749027204446, + 0.7028594191673049 + ], + [ + 0.8728647438311863, + 0.6087774821196607, + 0.6022829286913496, + 0.629059346433179, + 0.871340896043159, + 0.7450867889109432, + 0.587143977200952, + 0.866413860540011, + 0.6650580818242042, + 0.7208352843400181, + 0.6855074030801009, + 0.7700605188076239, + 0.7180779337407921, + 0.8306023672345093, + 0.8039587270398215, + 0.7916754075489816, + 0.7476027134074869, + 0.7960664921687718, + 0.8641239228418134, + 0.6820618166100617, + 0.9042462534035016, + 0.8293963990037445, + 0.7778756374011938, + 0.7556746750816907, + 0.7020510542916945, + 0.841007817632173, + 0.7638149586154567, + 0.7986492520622087, + 0.7971028644864301, + 0.6972713755268413, + 0.8478469021419534, + 0.7407286409540491, + 0.8584356231755493, + 0.8406387670096247, + 0.7275458284380383, + 0.940409652039285, + 0.9288950933992729, + 0.4234840384516464, + 0.7523376663218857, + 0.8921800965176726, + 0.756565789511159, + 0.6145989594780678, + 0.4729907274343601, + 0.7329051094214603, + 0.6977955467719653, + 0.7624109406711016, + 0.9526069452839634, + 0.7584507994590227, + 0.7383617833770472, + 0.9046994250470852, + 0.845536983432515, + 0.695398162870697, + 0.7823391436136394, + 0.8557241853295333, + 0.822806340000676, + 0.8622158603465819, + 0.9008224099868194, + 0.890045432582665, + 0.49755655259467324, + 0.9202710490162145, + 0.7278327856549871, + 0.901050393075874, + 0.7371109309239737, + 0.8865595781293155, + 0.6457653444989921, + 0.5510809963688343, + 0.800189064086779, + 0.8167138920259402, + 0.8087349427921927, + 0.8582029618278156, + 0.8599618445656505, + 0.6656425433534765, + 0.7505076431584403, + 0.8903777546217895, + 0.8352218554112252, + 0.8117142667754185, + 0.7885298242396434, + 0.7337418192902023, + 0.7857575957828813, + 0.8302842789094651, + 0.8152503835879633, + 0.5598108658015454, + 0.8144712839084192, + 0.8403283166174336, + 0.884571242414005, + 0.8572460581392227, + 0.8224550272235961, + 0.673477775838255, + 0.6252421271017407, + 0.7390150220116777, + 0.8203354967056147, + 0.8161667493081446, + 0.7059967292484274, + 0.8594165594739267, + 0.8110224470374715, + 0.8408367677765844, + 0.7578226344145699, + 0.8535978491509507, + 0.7974606324489742, + 0.7854478595477066, + 0.8709198762398701, + 0.8996887993372933, + 0.7395385210612389, + 0.8836490656896746, + 0.8887612206440353, + 0.6528030938852658, + 0.7790639888975798, + 0.8958641027634476, + 0.8181779760615083, + 0.8482229217496762, + 0.958774114507857, + 0.7016025432491104, + 0.822366686479849, + 0.8499816683998075, + 0.909608613532581, + 0.8276409977446337, + 0.9716859898418215, + 0.8776621147087204, + 0.6398967742786997, + 0.8278124451509649, + 0.873028244004772, + 0.8551257948646773, + 0.9284235875123514, + 0.8002024203345457, + 0.7233021506933247, + 0.7559272871730841, + 0.522685613360143, + 0.8342324665987522, + 0.5566078947064786, + 0.7706494888812697, + 0.7101888567639336, + 0.7439603457136517, + 0.5998093656486534, + 0.6802362613413799, + 0.5793791302253031, + 0.9464173107859686, + 0.9677872810450081, + 0.6870637000887182, + 0.8367734892825354, + 0.9020067807448411, + 0.9400304711619356, + 0.8505297011948644, + 0.8924512762297498, + 0.9114510449374811, + 0.5208436835662872, + 0.7656129120511255, + 0.7900608405860822, + 0.801199642993802, + 0.7276840781518149, + 0.9069610635388258, + 0.9673923989571961, + 1.0, + 0.9576096792025454, + 0.7302794762680053, + 0.7981319064405661, + 0.8859519885155369, + 0.8647622229312941, + 0.9180823286663824, + 0.9045354245006733, + 0.9377862962823497, + 0.9282130552514398, + 0.9628365208620382, + 0.8500406362536828, + 0.845184689264367, + 0.8735263148521231, + 0.8517493938856618, + 0.9122550489569841, + 0.9117651692024521, + 0.9349338518538852, + 0.8685478564900443, + 0.8623589602658008, + 0.9144023584725771, + 0.6689593775769083, + 0.6623854821469214, + 0.8874612615199121, + 0.7875883052025892, + 0.9491148360154786, + 0.7686210204614965, + 0.8627378551156613, + 0.9238547738242934, + 0.7958315653393698, + 0.9172869854389378, + 0.9612174576234847, + 0.8844206972100462, + 0.835676996208887, + 0.834710826946451, + 0.8758109552619169, + 0.8341466219177911, + 0.6845144742224695, + 0.8370281723080307, + 0.8607313937489919, + 0.7787893657206365, + 0.8357813691775272, + 0.8917768228554818, + 0.8306913628714647, + 0.7196441767628545, + 0.8666537483345911, + 0.8819930062343566, + 0.76714127339576, + 0.7673629977691016, + 0.9497037971907022, + 0.7109867674067286, + 0.886523155061622, + 0.8043633544603669, + 0.8673637091192082, + 0.8715684693889958, + 0.7757866281915546, + 0.7480405524588849, + 0.648782171527338, + 0.8300840962237286, + 0.8200387948514014, + 0.9154708532751173, + 0.9122963182314385, + 0.8748602721106556, + 0.7581430371369714, + 0.48875680849463016, + 0.6750517672668301, + 0.8889422988070331, + 0.8976376532521406, + 0.8673875199297592, + 0.6767518635142444, + 0.7943357227645585, + 0.8167799315914491, + 0.9217138691449512, + 0.848253067356038, + 0.6662505573765577, + 0.7978474551633488, + 0.8620207673912517, + 0.7419005200972179, + 0.8655077031209947, + 0.9286328421360623, + 0.8144451872552018, + 0.9050365637704594, + 0.7897454084210604, + 0.8583288922112251, + 0.606564670372778, + 0.5374960990872082, + 0.8615427003120454, + 0.9495646694956895, + 0.9258162742183343, + 0.8191198196280366, + 0.8190103523739635, + 0.6851191997447891, + 0.6642814472073068, + 0.7914350856685847, + 0.8108986419557693, + 0.7050740765883742, + 0.7718102712658655, + 0.8555889686942816, + 0.7663180547550528, + 0.8031638171609574, + 0.5556374740122995, + 0.6870594512002802, + 0.5977648831216051, + 0.7467289199035075, + 0.779766191807547, + 0.8074448837702501, + 0.7747656987066749, + 0.6640867964975715, + 0.9444573305307029, + 0.7758410878836819, + 0.6977515728595213 + ], + [ + 0.910833095930484, + 0.6710195361003257, + 0.7218321766753517, + 0.6220955869258837, + 0.8133936069525721, + 0.7014444372171732, + 0.606723606760673, + 0.9232589410103355, + 0.7117370997103785, + 0.7500190510269594, + 0.7184505443512283, + 0.8094556167823007, + 0.7860252390209386, + 0.7309824810096569, + 0.838847683853095, + 0.7575533926297504, + 0.7877713187375104, + 0.8478534677103164, + 0.8309037512027558, + 0.7350330741356768, + 0.9105278888764899, + 0.7558414351202076, + 0.823295852602717, + 0.7350106628505869, + 0.748079616972302, + 0.8485980314978587, + 0.8464144796831954, + 0.8807933973269806, + 0.752056592764003, + 0.6987892870746816, + 0.8913007634849551, + 0.7621558879002985, + 0.8382625545376031, + 0.8426777026232253, + 0.7597628976103795, + 0.9311919014096306, + 0.9106525512155764, + 0.4123758730907846, + 0.8020645752576062, + 0.922629923442012, + 0.8388547705426828, + 0.7119775014702225, + 0.4254929999842114, + 0.7008936500681697, + 0.7581129751765794, + 0.7697489728362172, + 0.9680516820046566, + 0.7980281321406348, + 0.7523376186572271, + 0.8847188351084703, + 0.8335091805703295, + 0.6767927119236473, + 0.7098814117903374, + 0.8256818972786418, + 0.7886924946131856, + 0.8370922230922062, + 0.8698779320788088, + 0.9293291069477785, + 0.493746912305636, + 0.9051135553122203, + 0.7256347436921056, + 0.9277121537685645, + 0.791813020161754, + 0.8605701955404434, + 0.7361667895771111, + 0.5902190291760759, + 0.793410737929039, + 0.8392121219875216, + 0.7864400763094646, + 0.8490343355593256, + 0.8186837165382681, + 0.6328945170730554, + 0.8520122686035003, + 0.9431468953127523, + 0.8195016697187879, + 0.8581264022366047, + 0.8506129941485281, + 0.7244116447731775, + 0.8420394006323895, + 0.8866641238380255, + 0.7782569147053114, + 0.4697675091647449, + 0.8456062505587736, + 0.8680274024559704, + 0.9248106197066643, + 0.9020876844495753, + 0.8621751273715197, + 0.65800892835851, + 0.559612673231229, + 0.7428349324968893, + 0.8746246300999929, + 0.8240340611822428, + 0.7141665010899619, + 0.8665537289012786, + 0.8376551052903457, + 0.8568050476192922, + 0.810391138390096, + 0.7918888244475492, + 0.7939155138760305, + 0.7793252414243301, + 0.8904853119988413, + 0.8912744365543221, + 0.8124889140246089, + 0.8229661172408629, + 0.9228531653948234, + 0.682797511487651, + 0.7478529672248181, + 0.9144599291321429, + 0.7832596736435001, + 0.906648388989867, + 0.9303584430429319, + 0.7473127519767089, + 0.9152974480783398, + 0.8874220933327117, + 0.9202460884051624, + 0.8554087129999947, + 0.972112489801713, + 0.9020206534119818, + 0.7009665003884128, + 0.8353196120670936, + 0.8953711465581464, + 0.871155167965791, + 0.9499054512862004, + 0.8023048842917982, + 0.8049706338197316, + 0.7845144780928596, + 0.43605061674041345, + 0.8386283290072778, + 0.5847334497097206, + 0.7826464341782446, + 0.7604294646447068, + 0.7532072929712433, + 0.6405079128786793, + 0.6772658940250538, + 0.6696022591557971, + 0.9730829962725697, + 0.9244763457152656, + 0.7104702267067287, + 0.832182547284944, + 0.9131827546121581, + 0.9320268369497189, + 0.8947349761668272, + 0.9236255191314322, + 0.9110307151236288, + 0.48859095025631893, + 0.7901586453667854, + 0.780998574857096, + 0.7456516457176927, + 0.6665677712705779, + 0.9108195659381758, + 0.9674955725190568, + 0.9576096792025454, + 1.0, + 0.7951572464529946, + 0.7833962250980074, + 0.8959476178413822, + 0.8327261088919355, + 0.8890527632682586, + 0.883614042743619, + 0.9533848993788666, + 0.9228045383687754, + 0.9079984465073188, + 0.8683219138560049, + 0.8571706607726101, + 0.9283064719357519, + 0.8676617249083333, + 0.9049437354403711, + 0.900421516284665, + 0.9162642417766366, + 0.8941115163980742, + 0.8546092020735304, + 0.8933220583948027, + 0.7188716063692057, + 0.7660987297377545, + 0.8934240002842223, + 0.68172685814269, + 0.913802388138282, + 0.7733156020642684, + 0.8833266917412027, + 0.9086832566348179, + 0.7669323266752206, + 0.9048081482195683, + 0.9173704200665911, + 0.9217243235846507, + 0.8494611078747646, + 0.8719013292312716, + 0.8574102595368078, + 0.8946464299856035, + 0.7585989572450407, + 0.8959991175915227, + 0.900860679097104, + 0.8438044462931388, + 0.8460417475173495, + 0.9186566290772852, + 0.8448871278922638, + 0.7565617536695894, + 0.8922277022766594, + 0.8845859962927263, + 0.8229838531894375, + 0.7505837675986428, + 0.9243021188830257, + 0.7414026004539765, + 0.9044832081745829, + 0.8250208461064541, + 0.8978842583952641, + 0.8931688631696839, + 0.8583104483334111, + 0.8004029805453575, + 0.5826152433595349, + 0.8352612166018185, + 0.8113234443877078, + 0.9204032434103495, + 0.9370752242959041, + 0.8962736337139586, + 0.7956912225813502, + 0.5575153588925049, + 0.7170858836707436, + 0.9209275070248965, + 0.9408419142138932, + 0.8674935464556996, + 0.7595490142451967, + 0.7050250240395536, + 0.8367478418074115, + 0.9101078737246, + 0.803501212854889, + 0.7386317182083437, + 0.8449908306202116, + 0.8835794315077824, + 0.7304560843842385, + 0.9037653729074463, + 0.9089958249275437, + 0.8572683175501997, + 0.9208225940185616, + 0.799256391561801, + 0.8779361242806568, + 0.5760115139040481, + 0.6060411830683229, + 0.8752147253645318, + 0.9477146944139178, + 0.93091300956756, + 0.7449285820207316, + 0.838934986814729, + 0.7959841364415023, + 0.6410240634698788, + 0.7584384946922641, + 0.7838712847125733, + 0.7486604935509538, + 0.6948827821815183, + 0.7706225860368325, + 0.8789926712742906, + 0.764063568101735, + 0.5019450795400333, + 0.7059245627676894, + 0.681987445929145, + 0.7139333267232553, + 0.8719471605074444, + 0.8432881371443139, + 0.7542791879242804, + 0.6490864928339524, + 0.9087790031888604, + 0.8054508212919101, + 0.6683148717175944 + ], + [ + 0.8446190872201204, + 0.7002188214789458, + 0.7220100302929046, + 0.6927878456395812, + 0.6895464272283883, + 0.587626834260962, + 0.6613388540321635, + 0.8041155944717665, + 0.8653426811462847, + 0.775482692361541, + 0.7081608551276709, + 0.6690412734200017, + 0.7838131925668749, + 0.5263668364291171, + 0.7559285659071567, + 0.6930223899376206, + 0.7242278752921135, + 0.8630563050340625, + 0.7626974649778512, + 0.7699805254137687, + 0.8041142227416496, + 0.6057061817660642, + 0.669792313380196, + 0.757071485686732, + 0.7223892508301302, + 0.7056745805642669, + 0.6339629383488448, + 0.7592513098390341, + 0.685480256560989, + 0.6577008555643298, + 0.7718559348149052, + 0.6818026577316876, + 0.6471319654914505, + 0.618179887868041, + 0.7697495192051875, + 0.7790774069359276, + 0.7966972824245829, + 0.5324478779044175, + 0.7796651344419734, + 0.8119716356157026, + 0.6904045597085204, + 0.6502132652982875, + 0.36092594505534237, + 0.5824050493436211, + 0.6628643129880825, + 0.7376114469341699, + 0.7930297694526648, + 0.8225619709868559, + 0.7694832040347129, + 0.7277083922464036, + 0.8006245539935561, + 0.6488255791184637, + 0.6708897573047893, + 0.6884398674440014, + 0.6440705600125622, + 0.6939875914212799, + 0.7500746369209197, + 0.8251760260268158, + 0.44765575097763205, + 0.7143606100016435, + 0.7919158230847941, + 0.8029567203716395, + 0.7702625344359325, + 0.6828603085798951, + 0.7228164685674354, + 0.7467267455595644, + 0.7573682141428107, + 0.8081363486465829, + 0.7174091886384992, + 0.7613964729138283, + 0.7963785449580756, + 0.6414806785226513, + 0.8267669199454012, + 0.8733273322453944, + 0.7439189416721417, + 0.7082773914267134, + 0.691099420529217, + 0.6459031856291791, + 0.8093501444995017, + 0.774068422538041, + 0.7583168871805103, + 0.5394530149796926, + 0.7969091161579566, + 0.7116811653155906, + 0.797598845595119, + 0.8662391263485032, + 0.8644829578567115, + 0.7258926654606026, + 0.600153780506132, + 0.6372621230930792, + 0.7886481374888502, + 0.7951632674594046, + 0.6757247174280826, + 0.7931470652857284, + 0.7827770252694706, + 0.7828956309642713, + 0.7448526723488808, + 0.7007295853915669, + 0.7821447836671989, + 0.723416437190286, + 0.7850738179422536, + 0.8110456631837768, + 0.8497835601489779, + 0.7112914969385745, + 0.7653801931498777, + 0.739973511333529, + 0.6817901668835364, + 0.9194228624635874, + 0.7165100607197084, + 0.7636278451163918, + 0.7574051571154015, + 0.7617169887054807, + 0.8488968696594708, + 0.83153529640211, + 0.7779567146057523, + 0.8172414117724509, + 0.7659681568854873, + 0.806002801506526, + 0.7565614690933103, + 0.7576276985472145, + 0.7338148654686908, + 0.7888974749549167, + 0.8706630453887957, + 0.8150860377550851, + 0.8978597075064134, + 0.8920171584804433, + 0.4763258044454934, + 0.7209974311927078, + 0.7289284831813374, + 0.6534918869720827, + 0.8206623617943036, + 0.7735457551386965, + 0.818198590358791, + 0.738099885131565, + 0.735426906078727, + 0.8031949472403309, + 0.7789092037889811, + 0.7170892134048729, + 0.5460010824392176, + 0.7058720059476365, + 0.7430364220713522, + 0.797781388359679, + 0.7037859724626531, + 0.7553700474675603, + 0.6458866183804032, + 0.7516301116495666, + 0.5765867699339768, + 0.5489825171339693, + 0.4797383290276108, + 0.7075651206448234, + 0.7746034552964172, + 0.7302794762680053, + 0.7951572464529946, + 1.0, + 0.7483037517241339, + 0.7320177788364557, + 0.6412165418185259, + 0.8260515817838024, + 0.8754255436950192, + 0.8270879394858531, + 0.8532514299083419, + 0.7391441250320648, + 0.8791748367500922, + 0.7332543686414306, + 0.7522551100060767, + 0.7786282010707671, + 0.7664579010949827, + 0.8116189240897741, + 0.7996791847053286, + 0.8318123287599044, + 0.7961363801762692, + 0.7918708087809004, + 0.7819457950862412, + 0.6296712032415039, + 0.7772884003481083, + 0.4901916738832393, + 0.7698201357126654, + 0.5341937732335358, + 0.8068138056963016, + 0.7808939480307345, + 0.694941796729022, + 0.7702140150412916, + 0.7437842658141095, + 0.7966502158541663, + 0.8010885702319553, + 0.800472800439242, + 0.7653617503318213, + 0.845500206360938, + 0.8237997830270869, + 0.780866268012585, + 0.7362177396067497, + 0.7191475560293494, + 0.724009966073912, + 0.7266367823951561, + 0.6543978734735715, + 0.7078854102462055, + 0.8787357950776229, + 0.8422941375218068, + 0.6093358316635993, + 0.5640350600333147, + 0.7733517613929122, + 0.7991432285325134, + 0.7386988627877096, + 0.6258035068803242, + 0.7352285528385926, + 0.7515013188389552, + 0.7469484312897232, + 0.7905919052900544, + 0.6273389562267636, + 0.6914262824770627, + 0.6758461011219781, + 0.6296358684556689, + 0.7401420299359329, + 0.8707849428448946, + 0.7464784588790953, + 0.5579137782622569, + 0.828933027705307, + 0.8129919937992127, + 0.7248696853227654, + 0.7357791345452451, + 0.7140215580629418, + 0.4035262704111628, + 0.7197851692342714, + 0.7556550610493127, + 0.7630688577245709, + 0.7520331677480186, + 0.6727993250393687, + 0.716782320678398, + 0.8022475808852723, + 0.8741623213535928, + 0.7641218924862725, + 0.8115014555255529, + 0.8123079768754131, + 0.8141089084763645, + 0.7786799567697453, + 0.5228263645980256, + 0.4431166424094476, + 0.6367426107034565, + 0.7625526332593321, + 0.7312152800106659, + 0.7299980583373507, + 0.6413444873839125, + 0.5997326018871855, + 0.6571535158687405, + 0.646490534168306, + 0.6992036887187442, + 0.7394002788520433, + 0.46486405766479016, + 0.5002431334429464, + 0.7836951752702587, + 0.6431382240936906, + 0.5013338925554969, + 0.6107537878024565, + 0.7568627409405716, + 0.5134460031139199, + 0.7925840457726404, + 0.675273018070572, + 0.5344165163484852, + 0.6663719493532642, + 0.7974199175434358, + 0.7595482109237892, + 0.6054285836879272 + ], + [ + 0.7076418452726603, + 0.5098597389748464, + 0.6766546681470932, + 0.8208653680475496, + 0.8120300176030733, + 0.8388286168696836, + 0.6235144013079728, + 0.7166590465287924, + 0.5726880959364645, + 0.7248154673808923, + 0.5447830274452176, + 0.5971316870050971, + 0.7707796801794101, + 0.6714397807969009, + 0.808533877311012, + 0.6901230917377718, + 0.5657274639950443, + 0.7781502964423831, + 0.7992424351342537, + 0.7883870881859852, + 0.8371997708844691, + 0.7136704232542224, + 0.7747173382732186, + 0.7550816637760551, + 0.476275741758574, + 0.7205935699608572, + 0.7618403175273638, + 0.7312266249966392, + 0.7493093723301241, + 0.48147560626146185, + 0.6916604556474557, + 0.5914957840321089, + 0.7261984258883925, + 0.6879456194333355, + 0.9268096760534659, + 0.7560213535211044, + 0.7823716467963694, + 0.45077040555019426, + 0.5468255274952679, + 0.7389830748514206, + 0.6733414058311296, + 0.6647812676429538, + 0.4619669115655837, + 0.8937199796641212, + 0.8827792909864072, + 0.7781017996998234, + 0.8486361605176442, + 0.7546565272139799, + 0.9151257205986144, + 0.7793614938202535, + 0.7917226279521328, + 0.7821638404561001, + 0.7228712218064077, + 0.6173229190274137, + 0.4537522961992684, + 0.5736910130302538, + 0.698454430240416, + 0.7891402992296764, + 0.7206477592865154, + 0.771959764003935, + 0.5815658189573458, + 0.8775344653505326, + 0.5869231890319605, + 0.7021601021081025, + 0.767372218509186, + 0.7373190687742185, + 0.8709651091704816, + 0.9659345532079321, + 0.6895694434680926, + 0.6318256466700336, + 0.8241588600872435, + 0.7366264232148021, + 0.7241565917029136, + 0.735614228185223, + 0.8725454433988744, + 0.8957764937173316, + 0.9015324142120232, + 0.780714368114048, + 0.6452535402238939, + 0.7677565272271518, + 0.7222228587841758, + 0.7654679832689109, + 0.6644757349795912, + 0.8901239659407956, + 0.7066428815093029, + 0.687378336606937, + 0.7868086328353142, + 0.8071026341955845, + 0.7916763118969851, + 0.7502819479696273, + 0.8482694286433436, + 0.9244970503483636, + 0.8968130659762563, + 0.9010325063183712, + 0.9068959751292878, + 0.7292762115564047, + 0.5945734124192518, + 0.8047099661188425, + 0.8781030370966769, + 0.6772043277771304, + 0.8620307781316022, + 0.7827098066055116, + 0.7109150506912523, + 0.873058180138662, + 0.8753423375834659, + 0.7126258128427232, + 0.8392110491032823, + 0.8768056877791212, + 0.8712199862359176, + 0.9015757628656638, + 0.8642172589277021, + 0.8261136122638776, + 0.7543537412078414, + 0.8060113768925361, + 0.8280966533604872, + 0.8797846367717184, + 0.8008861572922069, + 0.8535548923396185, + 0.7984430339911197, + 0.9520423901440914, + 0.8486284324980693, + 0.8799658970860931, + 0.8097057428369062, + 0.6379884069884926, + 0.7499156493934178, + 0.7815026168265429, + 0.6765577333720671, + 0.893652985732277, + 0.7704574079637535, + 0.8580068358347063, + 0.7892379517440267, + 0.7282517190649784, + 0.6373830312688563, + 0.7730260748427203, + 0.6739109137300276, + 0.7764222574233304, + 0.8833343135372358, + 0.9241935679672356, + 0.6646019686524308, + 0.8926570495723908, + 0.8594139305408774, + 0.8885774927676695, + 0.8191053894521199, + 0.8078195692451731, + 0.708059019266531, + 0.8891200617399422, + 0.8638909808311797, + 0.8028184134351813, + 0.6077105734840524, + 0.7626351873307946, + 0.8260300944012193, + 0.7981319064405661, + 0.7833962250980074, + 0.7483037517241339, + 1.0, + 0.9126747220434653, + 0.7578896499030413, + 0.9030153111133543, + 0.8100032463780884, + 0.8005534701188536, + 0.9027706235725406, + 0.8882378852302932, + 0.9356531748986909, + 0.8838667375029511, + 0.8520527686384577, + 0.9121410047989814, + 0.8778802621913231, + 0.919778674366989, + 0.9375971147300413, + 0.9376964025900544, + 0.9729361196269747, + 0.94764045437121, + 0.7940865251370344, + 0.6901416631416858, + 0.934399555387464, + 0.5615418651176801, + 0.85849010456879, + 0.8331300130457816, + 0.6554458964849662, + 0.8980140056591054, + 0.7006502011658194, + 0.9298344249346167, + 0.8771422050227239, + 0.9149534626297436, + 0.8493067937266043, + 0.9271224512668631, + 0.9391220422839086, + 0.8018728088870071, + 0.8466722174432989, + 0.7822921909709558, + 0.8217288138747059, + 0.8500674504052778, + 0.8929618086401666, + 0.8528192294857044, + 0.7980811329092224, + 0.8561960519984132, + 0.9116873868343853, + 0.9382275873454359, + 0.8025404328698663, + 0.754870628074181, + 0.8916070306784513, + 0.6455748956708148, + 0.7430285755933504, + 0.8158157546139795, + 0.897395905464496, + 0.9227412318987489, + 0.7956340873240154, + 0.8778379414300164, + 0.8389226220696849, + 0.9334449642085728, + 0.8954156650757621, + 0.7497756655250059, + 0.8045773704057495, + 0.8912721035648035, + 0.9183841675185954, + 0.7252198285260304, + 0.8311945468291078, + 0.8916781809726791, + 0.7922860827056072, + 0.9402037087524353, + 0.7924122044746877, + 0.6365712405115047, + 0.899005155528028, + 0.8487879919999415, + 0.8104690484431414, + 0.8240767991987221, + 0.8024287579234605, + 0.8463312034246362, + 0.6641793493785325, + 0.8553844479138569, + 0.9068123111298146, + 0.9327326131959163, + 0.9236019239494635, + 0.9226368817756252, + 0.930940744658048, + 0.5307127028879104, + 0.5563045292455415, + 0.664172818925379, + 0.8037908853638294, + 0.8513152950807997, + 0.6366762735369887, + 0.801042054009985, + 0.7214709334837779, + 0.8162064186929011, + 0.9242111693486892, + 0.541403374067062, + 0.561740067170959, + 0.6285310889939222, + 0.7071307207024754, + 0.7147153858501865, + 0.6558058620904583, + 0.8106588490889343, + 0.7848176143901672, + 0.6458490401330022, + 0.7130707763717403, + 0.6949771637268005, + 0.9125340413572915, + 0.5510423484674516, + 0.5310669518812254, + 0.8962120892213674, + 0.9073665131017555, + 0.7693380149680453 + ], + [ + 0.7325939842017165, + 0.47842353880088806, + 0.6307197095821683, + 0.7586520896774182, + 0.7734458876329698, + 0.7124937510573737, + 0.469172345892448, + 0.7600931694444397, + 0.5831620628367308, + 0.6949751190456089, + 0.5432777688983177, + 0.6470116151373612, + 0.7619524564362816, + 0.6539661869924989, + 0.8111022805216002, + 0.7205613292665438, + 0.6570526910524416, + 0.7448629772452848, + 0.8149985498635003, + 0.7444723786160907, + 0.8380805183858047, + 0.7168199069983089, + 0.7645421226598542, + 0.6685362574128323, + 0.6171623974404842, + 0.7533098323070397, + 0.8383696299670998, + 0.7860826803566819, + 0.6895613928118027, + 0.5241794358722283, + 0.7877658421037812, + 0.6154063121205431, + 0.7029580881029086, + 0.7335671826765137, + 0.8201618782147831, + 0.8193795473489404, + 0.8085305804776415, + 0.48609712406025335, + 0.6343660164992042, + 0.8815018024024875, + 0.6964507826530058, + 0.6611512738439074, + 0.5487989992045932, + 0.8303182007485145, + 0.8228529119877813, + 0.7651511080707627, + 0.9152018609992209, + 0.7109831696140995, + 0.8493097182956806, + 0.9012647972314314, + 0.7607344868027185, + 0.73725501355899, + 0.7077973419190372, + 0.6792845411566624, + 0.5885018678006982, + 0.6491735522607474, + 0.7405485516034056, + 0.8778822331357393, + 0.7197651432136664, + 0.8163902147275733, + 0.6227046188169392, + 0.9376764385866148, + 0.6431674410050883, + 0.7834580077931612, + 0.7156742032806027, + 0.6507993743833155, + 0.77505820795099, + 0.8989163302325274, + 0.6403992915291158, + 0.6584361973335126, + 0.7971633372206007, + 0.6402336088011332, + 0.7642638258201011, + 0.858708775689509, + 0.7950793166206107, + 0.9264363817496389, + 0.9025617798676271, + 0.7986897589226017, + 0.6797280410508906, + 0.8618886812501465, + 0.6521802601027283, + 0.6957059554693511, + 0.7446287939643883, + 0.959680184959939, + 0.8047482022890214, + 0.7447562520366011, + 0.8068243600838625, + 0.7323441974027896, + 0.7193138667295819, + 0.7271176956189263, + 0.8312536636583256, + 0.8517562535977768, + 0.8354591451303647, + 0.8673709874609417, + 0.9290889800539464, + 0.7811810889778159, + 0.6994869064478917, + 0.8143507569749346, + 0.7603732831966465, + 0.6202984843536445, + 0.8825538962202807, + 0.8321365193468012, + 0.7705685874968606, + 0.8496198228127121, + 0.8789277054778863, + 0.6349564483526886, + 0.7802414457777114, + 0.8723428147732978, + 0.9026040052778213, + 0.949450077922447, + 0.9342164146625663, + 0.8215285157094483, + 0.8172468473926997, + 0.8386909394750655, + 0.9118072782391217, + 0.8855222343301286, + 0.9000349132591624, + 0.8491928606816743, + 0.8156668860883269, + 0.9393120994831257, + 0.9291776063752191, + 0.9057986391325755, + 0.8781795686172852, + 0.7002969359349897, + 0.8172754942958363, + 0.8108673626659568, + 0.6149535904322643, + 0.8708702357663956, + 0.7359081192453802, + 0.8781789509957009, + 0.7949131921678563, + 0.7716749270682626, + 0.6169937058076909, + 0.7668249446229031, + 0.5932424850976248, + 0.8786404425947907, + 0.9158452046069502, + 0.8468876217707292, + 0.866387467256948, + 0.9360439501578526, + 0.9123394959170442, + 0.9255531244450155, + 0.890617544508448, + 0.8509364512878358, + 0.61171401066825, + 0.8104117585331181, + 0.9015728409411347, + 0.8320500887933056, + 0.644762116484964, + 0.8416742382194468, + 0.8820637407564497, + 0.8859519885155369, + 0.8959476178413822, + 0.7320177788364557, + 0.9126747220434653, + 1.0, + 0.8955585117012153, + 0.9176635811719162, + 0.8310328027206554, + 0.871468237322097, + 0.9269831884181057, + 0.9126130754300159, + 0.9035587361695964, + 0.8938560246387119, + 0.8978792869999987, + 0.9126931782435457, + 0.9305824997207931, + 0.9272136896303926, + 0.9507465753228359, + 0.9398397344986529, + 0.9516584846289219, + 0.9467229842863231, + 0.7787932445602207, + 0.7831842614974699, + 0.9554595756233563, + 0.6959843502710724, + 0.9299366149608882, + 0.8760357782352477, + 0.6946465717207038, + 0.9401607255613763, + 0.7236227843845479, + 0.9507105279145511, + 0.9053180908261296, + 0.9388180754983351, + 0.8188496350376253, + 0.8851377358762574, + 0.8985617435761353, + 0.8354925859983576, + 0.8657403025184354, + 0.8157079064606699, + 0.8980169350345055, + 0.8716735028069377, + 0.926347039710054, + 0.920673087354402, + 0.92718077160752, + 0.8264569937125066, + 0.8895700103084794, + 0.9365164842740302, + 0.8692733764221695, + 0.7960140169600459, + 0.9220058903574634, + 0.7119063723013014, + 0.8887643498470038, + 0.9297392340028383, + 0.9136520797267462, + 0.9185090170241066, + 0.8426427151589699, + 0.904766204836822, + 0.7710520696453156, + 0.9699476889743871, + 0.8459140727937435, + 0.8829975760180722, + 0.922241766973212, + 0.9334373491836857, + 0.9176752136224147, + 0.6894132777122486, + 0.8048290025163594, + 0.924075063583852, + 0.8849008721203032, + 0.9654020040535689, + 0.8381663835054334, + 0.7324532402920819, + 0.9112524497191778, + 0.9266516444516998, + 0.8682067697567927, + 0.8233084979802454, + 0.8911635499101572, + 0.882640916337967, + 0.6111499413769286, + 0.8611554376965065, + 0.9364829971536585, + 0.9315727447103009, + 0.9500236116114347, + 0.9090239022375238, + 0.893996277211784, + 0.6010434850340001, + 0.6319580695876442, + 0.8308242123240327, + 0.9114508852797102, + 0.911585834598029, + 0.5717996460432111, + 0.9090721076415265, + 0.803055734310426, + 0.8431021180012964, + 0.8488683914897257, + 0.6585299724994095, + 0.5647272343100078, + 0.7641452839251448, + 0.8004148512402284, + 0.7990650378354278, + 0.7939305004564546, + 0.7527375636653171, + 0.7634599342036946, + 0.6079106177109471, + 0.7490395781965845, + 0.7890260414503867, + 0.9718185935846796, + 0.7006786314609171, + 0.4875795399417738, + 0.9068574239816846, + 0.9027693901466023, + 0.7440542973375753 + ], + [ + 0.657243314257735, + 0.31700459294267297, + 0.4205349976428156, + 0.556159050194168, + 0.6401865037143541, + 0.4625113083842458, + 0.2733001803658716, + 0.6722835437521483, + 0.4450947939313176, + 0.5771863270195386, + 0.48204440662964493, + 0.4680747899640179, + 0.5354734380784177, + 0.5761734182038254, + 0.6334611148708521, + 0.5300563785680446, + 0.5491871297145922, + 0.5451256867568746, + 0.6225610703988842, + 0.550751652261013, + 0.7091366936174177, + 0.5547115693725463, + 0.5937001565834544, + 0.4813319785425775, + 0.4967501037698816, + 0.5519998455339846, + 0.7172870940493218, + 0.6158528071804982, + 0.4862402446858013, + 0.40996625703612366, + 0.6392736918243209, + 0.5068865067442705, + 0.5803850619859674, + 0.6025318968856441, + 0.6056282167593217, + 0.711201805262264, + 0.7447665431277966, + 0.4070786939742159, + 0.4969763345211259, + 0.8161480258516363, + 0.48092247275706757, + 0.38633679174354607, + 0.3928523287540772, + 0.6525057356055775, + 0.6114359821566223, + 0.6635613505816119, + 0.8975628296317251, + 0.575013984397031, + 0.6527074798053032, + 0.9563213536219067, + 0.6450439380021528, + 0.48478516548436357, + 0.5352872916014063, + 0.5571666710571179, + 0.5576054139281238, + 0.5568400246512792, + 0.6118498707304888, + 0.7720415919238257, + 0.47880147782517785, + 0.8104866049348194, + 0.5023474019998156, + 0.7925772854989793, + 0.4439288477313794, + 0.648697378779812, + 0.4959916587690955, + 0.4697651735521897, + 0.5681819617391605, + 0.7611607363961999, + 0.5791293311848343, + 0.6156750823749125, + 0.690606903094309, + 0.40672040100985607, + 0.5943268055118488, + 0.7680542729431675, + 0.6414462361827963, + 0.7630310749110727, + 0.7526599686084897, + 0.5626478227764193, + 0.5185060597313994, + 0.7221183631646337, + 0.5192095385713335, + 0.5076675186991589, + 0.7051986678703857, + 0.8207869910214277, + 0.7154461462820951, + 0.6738554540013468, + 0.6304981183743691, + 0.5002883509142055, + 0.5581783643509749, + 0.4753879347322901, + 0.6318004877273122, + 0.6977251287184016, + 0.688722231779407, + 0.7177926725174539, + 0.7653771943052322, + 0.6296627194524438, + 0.5712420722472673, + 0.6846822155005776, + 0.6532920501521229, + 0.5128302972504766, + 0.7352278676013106, + 0.687827885378114, + 0.6477462186034166, + 0.7222488197964055, + 0.7441299055892627, + 0.4482203012824123, + 0.601725496073732, + 0.7790267091406834, + 0.7800450459038493, + 0.8276670979357312, + 0.9210028422879846, + 0.6643269651992645, + 0.6812967379036553, + 0.6371329418332145, + 0.7867928541229812, + 0.6718338978621792, + 0.8716921915888741, + 0.6850064786581715, + 0.6751988753956357, + 0.7706224346278289, + 0.7790591622989279, + 0.7846888642315691, + 0.819873161149474, + 0.5919743531996222, + 0.6473704206845411, + 0.7201966753691073, + 0.46233394953223134, + 0.6763374859900542, + 0.5105102851997315, + 0.6950825066153432, + 0.6109414870131179, + 0.6071937065774187, + 0.488970076701801, + 0.6110549547337394, + 0.3374708464754876, + 0.8179690592049251, + 0.8490295418723708, + 0.6399420150091594, + 0.9482385963127216, + 0.8264134802730533, + 0.7713148782467038, + 0.8086534614337869, + 0.8029458018301692, + 0.7825015876288294, + 0.37241319184497923, + 0.587156067024912, + 0.7467919417566476, + 0.8403614323492211, + 0.7206806954019035, + 0.8563896304774524, + 0.8253759698740353, + 0.8647622229312941, + 0.8327261088919355, + 0.6412165418185259, + 0.7578896499030413, + 0.8955585117012153, + 1.0, + 0.8008300274296196, + 0.7872348006290147, + 0.7979861523063037, + 0.8641364681082451, + 0.9005936651418595, + 0.7715697876033667, + 0.8662745428542575, + 0.7869305050307974, + 0.8060466385458652, + 0.9148456198807211, + 0.8078308145083781, + 0.8505179529032573, + 0.8130835321680174, + 0.8538811072437807, + 0.8603783161295411, + 0.6230989463294833, + 0.5439446565299633, + 0.8143644306155066, + 0.7989441737139965, + 0.9399552301019483, + 0.7856106367742672, + 0.6457537932435025, + 0.8813992553800944, + 0.5800624166868137, + 0.8477913837745652, + 0.887796047701205, + 0.8353636803772246, + 0.7334220963995357, + 0.7193094372075872, + 0.7410743168336313, + 0.720533580847094, + 0.7287207826405336, + 0.706445805064623, + 0.7955831738276565, + 0.7472919503993903, + 0.7601332729076248, + 0.8258376540991921, + 0.9080628091998957, + 0.7886159004468452, + 0.7417874674902509, + 0.8687982885113334, + 0.7820991080398672, + 0.6016282598132099, + 0.8790945519492545, + 0.6368083180555578, + 0.7769048456625202, + 0.9084025218690533, + 0.8557385664320092, + 0.7837578541794137, + 0.6263636243553551, + 0.7068070298705285, + 0.6292189612591086, + 0.8485552229216317, + 0.7976352110649655, + 0.9109244865199844, + 0.9089344456028251, + 0.8077702381742655, + 0.7840706978108333, + 0.44575512315771454, + 0.6892746108304239, + 0.886703136409687, + 0.8888740721632149, + 0.8393731740723361, + 0.7001455103317696, + 0.87108582424774, + 0.8191051982125568, + 0.8395117601644483, + 0.8624741736979147, + 0.634422310819278, + 0.8398340540607087, + 0.844689696869027, + 0.6000381894381502, + 0.7770452499319718, + 0.8828187961840808, + 0.8175919536701091, + 0.8201756067949596, + 0.7892588684547901, + 0.7715352231945796, + 0.49683235094375566, + 0.4473454481779254, + 0.8738726871147444, + 0.8500802524081945, + 0.8348169265746536, + 0.5145157951394043, + 0.8321169375181644, + 0.6452954548845448, + 0.7063069442973806, + 0.8076844631274365, + 0.6189924043377816, + 0.48993338087576355, + 0.8342041278148374, + 0.9082857149956197, + 0.7015534701131744, + 0.919000842943772, + 0.5514343280309167, + 0.4805307359294237, + 0.319197128360606, + 0.5216650498080856, + 0.6021758622356539, + 0.8304009425443043, + 0.5687423170464638, + 0.3852924290222375, + 0.8166837598061552, + 0.7301067957446632, + 0.6993201359165597 + ], + [ + 0.8374314657209619, + 0.6390476464879574, + 0.6838046184191245, + 0.8152907368118298, + 0.8948022173189702, + 0.8296507149156624, + 0.6969496721182782, + 0.8081433604338811, + 0.7853184230762428, + 0.8446183430544508, + 0.7308578377875694, + 0.7334290523647896, + 0.7628785171094353, + 0.7901540542057195, + 0.8548279001524594, + 0.8577536996125725, + 0.7835672797146056, + 0.8632921108132676, + 0.9300050528644261, + 0.8444052248905688, + 0.9034723787903284, + 0.8462405528087165, + 0.8053471599586592, + 0.8634249466645316, + 0.7003222051899288, + 0.8479381681499355, + 0.7378415876094762, + 0.8217577635271512, + 0.8793481090783374, + 0.688774213411381, + 0.8342254395304537, + 0.727737845681057, + 0.7896179591149987, + 0.7588961318279673, + 0.8539447003235464, + 0.9174998351707017, + 0.9035308951161117, + 0.4762407622482586, + 0.7171282977379112, + 0.8734950858225398, + 0.73376218794316, + 0.6317243231628578, + 0.4744472528405359, + 0.7868626025842822, + 0.7638827353657525, + 0.8727663092624606, + 0.8988383450589915, + 0.8664749904446789, + 0.8486684349712068, + 0.8422066483582767, + 0.8638098501668312, + 0.8149692961448178, + 0.8433137803421555, + 0.8346908272459642, + 0.7172735454502415, + 0.8036779126368193, + 0.8814201681502071, + 0.8440526692257945, + 0.6958318328760205, + 0.8330596132472902, + 0.7983617261306675, + 0.9345139194648221, + 0.7803413848460125, + 0.8581101696505938, + 0.7544049988570974, + 0.7307736494408679, + 0.8949279656704993, + 0.9093358396481506, + 0.7635564600167488, + 0.8009597721476076, + 0.9316127206956116, + 0.8237614449870254, + 0.8295825315235676, + 0.8777651113713026, + 0.8631098237236215, + 0.8341509187225813, + 0.7989966383215612, + 0.7878883011165801, + 0.8058519869946086, + 0.819111213099179, + 0.8295821681407591, + 0.7599486944058135, + 0.7929156924242857, + 0.8541077941994357, + 0.8631313069515859, + 0.8285312217050946, + 0.9106044971034468, + 0.8766227625113934, + 0.8119065775262982, + 0.8077264441575813, + 0.8454153823264098, + 0.8996889554444479, + 0.8011497514639095, + 0.8746817468740283, + 0.9227439196658036, + 0.849015935906658, + 0.7571093758493436, + 0.914761234421505, + 0.8456122872589529, + 0.7708623952132924, + 0.9011506736866455, + 0.9151380750301902, + 0.8140668401278607, + 0.9361564628807699, + 0.8809649349127258, + 0.7861556521592028, + 0.8972469575335315, + 0.9408974801831879, + 0.9071313437994546, + 0.873106553970549, + 0.9228426459561586, + 0.8545663082332214, + 0.8160136420699006, + 0.8762342186786076, + 0.9017392463040399, + 0.928701701430176, + 0.8992368457574824, + 0.8937240966058617, + 0.8131820071290153, + 0.9049965944707098, + 0.8981064850779792, + 0.8764058117931367, + 0.9157816534314903, + 0.8181926732024768, + 0.8395383626113462, + 0.876982472502294, + 0.7144446660185496, + 0.8589307115504209, + 0.7878496447632269, + 0.757889270355536, + 0.8664704777949154, + 0.8715118666036801, + 0.7649962194343022, + 0.8516044004534598, + 0.7086897529041551, + 0.8795509911945062, + 0.9662959745961289, + 0.825782169760946, + 0.7380244461561463, + 0.8957142209552106, + 0.9258973990136715, + 0.8900827803118342, + 0.8390736510757045, + 0.9204632575875952, + 0.7361541635121831, + 0.884533081847316, + 0.8404091019461072, + 0.7733820914226271, + 0.6607068998409293, + 0.8163466948439916, + 0.9058821154612663, + 0.9180823286663824, + 0.8890527632682586, + 0.8260515817838024, + 0.9030153111133543, + 0.9176635811719162, + 0.8008300274296196, + 1.0, + 0.9418636278463994, + 0.9137980291267892, + 0.9608205887662357, + 0.924596104620437, + 0.9578779214693042, + 0.832326276701069, + 0.8520849532025258, + 0.8619958817362339, + 0.881845747745399, + 0.9704062828540718, + 0.9575829712689296, + 0.9389262456484021, + 0.9389678715246927, + 0.9579766127309641, + 0.7923099376173657, + 0.6643721034666732, + 0.9053115545432684, + 0.6645111835427867, + 0.9198899574554215, + 0.7915484207984064, + 0.8247009695274262, + 0.9255681806880195, + 0.8304359925552169, + 0.9278246418626045, + 0.9259543968838654, + 0.8885201573636397, + 0.8309056500220228, + 0.8833242710518026, + 0.9107296347799543, + 0.854108888390254, + 0.8193039391490586, + 0.7976521672824494, + 0.8468717567485244, + 0.7754700374529228, + 0.8604412970711831, + 0.860605670399795, + 0.7999995217252087, + 0.7470526958771463, + 0.9537787184087468, + 0.9295231225049025, + 0.7341897027696742, + 0.7527130844853712, + 0.9522009006188897, + 0.7798721007920436, + 0.8545341602326805, + 0.7751127123222248, + 0.8560500668711359, + 0.8697765143643397, + 0.8094169896558098, + 0.8918368262846538, + 0.8356300492078792, + 0.8638353933380959, + 0.8144698034550704, + 0.8067062982567993, + 0.8540516866375731, + 0.9651487447837673, + 0.8788011002050641, + 0.5829769722529488, + 0.800350396769055, + 0.873628083687724, + 0.8119157356364627, + 0.8912245051223554, + 0.7400774490465574, + 0.628510321314761, + 0.8340046414107161, + 0.8998397516437143, + 0.879320624638066, + 0.7573696808925047, + 0.7904549917569667, + 0.8068978162460183, + 0.7686149160469468, + 0.8967489413314382, + 0.9483170225838709, + 0.8807256557635588, + 0.937526870042941, + 0.8989210281083674, + 0.8978666838727024, + 0.5959941076838134, + 0.47540138070552646, + 0.7544703017695193, + 0.892869991407633, + 0.8626436079135817, + 0.7841717711543692, + 0.801411315301572, + 0.6956096198080642, + 0.807495086543525, + 0.7949839596682841, + 0.7381098314168274, + 0.7060138252262197, + 0.6943014181888916, + 0.7551981120249618, + 0.7711916955478809, + 0.7473635494366, + 0.7426718129362013, + 0.7976927903962713, + 0.7324867012080583, + 0.8081807456083391, + 0.7816012318569935, + 0.8569226297322956, + 0.7209893974822441, + 0.693334700072136, + 0.9744850371640132, + 0.880834154970511, + 0.7269957465083153 + ], + [ + 0.9078785157911314, + 0.6383366541857588, + 0.6556208103812862, + 0.6752409364403855, + 0.7960049636693547, + 0.7194922498373798, + 0.6882666987025616, + 0.8434402426213645, + 0.8442686389460036, + 0.8103646524733882, + 0.7728695130862243, + 0.6675983873504431, + 0.7020313466184238, + 0.7493551396327667, + 0.820075189900495, + 0.8041295489967181, + 0.8502408084594368, + 0.8508297876151738, + 0.8497158105689132, + 0.7550714025604394, + 0.9060059878264582, + 0.7750559503367038, + 0.7070400956002153, + 0.8130343817827801, + 0.7423616285631158, + 0.7703703167013841, + 0.65241863051963, + 0.7870374083399114, + 0.8263202639538682, + 0.6814494184442641, + 0.8416939836742188, + 0.7021311954918029, + 0.7622516218824635, + 0.7627811698305486, + 0.7605431736877492, + 0.9037568211508791, + 0.8887063237606807, + 0.34251795792644024, + 0.757138241706888, + 0.8773200606666491, + 0.6733330945435062, + 0.528625655367865, + 0.36456237915693696, + 0.6882508722552351, + 0.6782579021836469, + 0.7758498770763532, + 0.9069130979575925, + 0.8317718367127253, + 0.7312005422681859, + 0.8327545390678901, + 0.8934681953579392, + 0.6832043746769073, + 0.807827757315267, + 0.8270217554691989, + 0.7797350133239196, + 0.8369579415729499, + 0.884215635754063, + 0.811391281058863, + 0.4693570238418681, + 0.8294181271254913, + 0.8667256661553789, + 0.8573874695925003, + 0.8027738885525002, + 0.8539913342480705, + 0.6561130352734886, + 0.6302845617006639, + 0.8131101162760976, + 0.8289072497777333, + 0.7641021611886695, + 0.8227556308838199, + 0.8545119579752054, + 0.7032157751521446, + 0.8166848810470683, + 0.9078456609607416, + 0.7878283239279161, + 0.75858041986903, + 0.7205644058126784, + 0.6296514594954508, + 0.8536069994031119, + 0.7523858064263489, + 0.8114730605801839, + 0.6121226502563007, + 0.7963931547928289, + 0.7681847664888453, + 0.865291551784241, + 0.8613519023695989, + 0.872435423800735, + 0.7441442858814289, + 0.6724462431541055, + 0.6537265870808701, + 0.793323165086718, + 0.8418904902605081, + 0.6345012289644646, + 0.8007782693108322, + 0.8230806539391022, + 0.8197420225677418, + 0.7393861841617286, + 0.7917977533027022, + 0.8292957941162105, + 0.7612931246292245, + 0.8050200149587149, + 0.8960794790110671, + 0.7907796200383611, + 0.8388699160741874, + 0.8399026790764031, + 0.7898405586296939, + 0.7829821763145393, + 0.9364158551106235, + 0.7821355056225561, + 0.7978987738600876, + 0.8868763802430435, + 0.8157427551214084, + 0.8398380989932104, + 0.8546766386880997, + 0.8442076417228547, + 0.8233437967837314, + 0.878263846330464, + 0.8594975108487608, + 0.7759367874167974, + 0.8398337013394472, + 0.7954012468692987, + 0.8056511047857364, + 0.9000918948170973, + 0.8864201579572311, + 0.8082108615359614, + 0.8529356301347369, + 0.5247731423055975, + 0.7634203681332219, + 0.6216979099241479, + 0.6643146418759253, + 0.8320053686824439, + 0.7954406429233964, + 0.7810272786386065, + 0.7694440787033464, + 0.6866201217422595, + 0.8927762064804657, + 0.9346209790589869, + 0.7273668234130758, + 0.6917955447420292, + 0.818927085066151, + 0.8730929124843986, + 0.8308227799817213, + 0.7806336436431781, + 0.8607212600709273, + 0.5703074810373032, + 0.8034454927170324, + 0.6715715850077042, + 0.6450928017324188, + 0.5651157111168255, + 0.8072908570601783, + 0.9077394749760911, + 0.9045354245006733, + 0.883614042743619, + 0.8754255436950192, + 0.8100032463780884, + 0.8310328027206554, + 0.7872348006290147, + 0.9418636278463994, + 1.0, + 0.9286379807299269, + 0.9288100186235124, + 0.8852014301966223, + 0.9301356375173884, + 0.8006069947284475, + 0.8173789088541098, + 0.8047089095761975, + 0.8548050566283255, + 0.9159501866697827, + 0.8945643416303052, + 0.8701782199446422, + 0.8739781266225991, + 0.8894972978358525, + 0.7707530008697384, + 0.5426348214022888, + 0.8446719207718891, + 0.6521364296323878, + 0.9112542544770719, + 0.615429054882058, + 0.8720027244994085, + 0.9181181683786594, + 0.791475579062195, + 0.868211386336678, + 0.8745163560236763, + 0.841889978494361, + 0.7599220849533871, + 0.8565757182099695, + 0.8549615410327274, + 0.8674652316791356, + 0.7901080722874378, + 0.8246913743163863, + 0.7996364503637463, + 0.7154702475566044, + 0.7748945356147731, + 0.8070069817587335, + 0.715661303659977, + 0.7404440840385365, + 0.9097164891143096, + 0.9098211707305606, + 0.6097088673987455, + 0.6601269633663229, + 0.8939528008928217, + 0.7917393429626065, + 0.8294366849488166, + 0.6792859540469061, + 0.8146941181856271, + 0.8074191410146787, + 0.713786202543635, + 0.7698195709551392, + 0.693973718221049, + 0.7586296054385006, + 0.7789978713047985, + 0.7834876842196138, + 0.8220516931868365, + 0.9258190227268811, + 0.7531271666271323, + 0.4632855439541623, + 0.7104736420656537, + 0.8744425323947514, + 0.8059882700173653, + 0.7897907298373079, + 0.6308085602824186, + 0.5855424639095244, + 0.7379754641369884, + 0.8730183669197092, + 0.8417555502610983, + 0.733543003593919, + 0.6881600913929136, + 0.7712004339478531, + 0.8700666500290095, + 0.9195978797289525, + 0.9024385422300856, + 0.8230917793448005, + 0.8662040164736206, + 0.7957878645366914, + 0.8146898014676472, + 0.4900058236134825, + 0.37166984403259035, + 0.6908920568465879, + 0.8569415227457935, + 0.8157717867239148, + 0.838827992332643, + 0.6741735887616286, + 0.5931745315720987, + 0.6496789469018595, + 0.7514804256569773, + 0.8008122069828518, + 0.8076569433416315, + 0.6149358574973771, + 0.7182535951157255, + 0.7351346341625742, + 0.70601429360994, + 0.53940675342441, + 0.620856129852468, + 0.6410648845751978, + 0.6578732272296884, + 0.7815668981797537, + 0.7398780071209538, + 0.6548825481248303, + 0.764146413109202, + 0.9171472735451343, + 0.7958953160507969, + 0.6943747770650193 + ], + [ + 0.9192879631964612, + 0.6672649890268404, + 0.7166940790228644, + 0.6986032567756595, + 0.837625573124891, + 0.7518268181768931, + 0.6460250771339906, + 0.9094892024329925, + 0.8122740499092403, + 0.7456116000535158, + 0.6937557567464914, + 0.800176094546921, + 0.8141451817097723, + 0.8270999604645489, + 0.9001404694621132, + 0.8398460949616852, + 0.8689533435168044, + 0.854853596838313, + 0.8716810972005208, + 0.7489282303148244, + 0.9362153552548956, + 0.7932600306481319, + 0.7891835396027086, + 0.7726566188515699, + 0.8436669008911363, + 0.8787128161719924, + 0.7690960584271833, + 0.864185170602228, + 0.7871446062534309, + 0.8042158118669459, + 0.9343050946509397, + 0.7611650725674395, + 0.854205289034719, + 0.7520019645328806, + 0.7663637825659814, + 0.9585064100589181, + 0.8985662756405488, + 0.42905723422422676, + 0.8709299826360094, + 0.9269022662345714, + 0.8190362603218919, + 0.6962256961868076, + 0.4403421967489478, + 0.7076698731125475, + 0.7615111060383829, + 0.7420301942015815, + 0.9327377122639526, + 0.8098700747801996, + 0.757817199397687, + 0.8745496130091119, + 0.8812563120020891, + 0.7814353333599257, + 0.7732448222944406, + 0.8860698122004795, + 0.8265032000768567, + 0.8694240084322514, + 0.9110048197311719, + 0.9293417366907688, + 0.5404405342663691, + 0.8899953138036228, + 0.8421769105945079, + 0.935788029092917, + 0.8610463685450231, + 0.8969499693501383, + 0.7190568853803004, + 0.6471927567185496, + 0.8497910819012032, + 0.8259054098322656, + 0.7539175852881123, + 0.835644533794465, + 0.8078736917781877, + 0.7377081334040682, + 0.8778315007270844, + 0.9669054729094054, + 0.8597986225021476, + 0.8413271072691686, + 0.8300290473313167, + 0.7491005460516149, + 0.8723519670672337, + 0.9018556559486072, + 0.8022302988103291, + 0.5379231227654716, + 0.8206997706787731, + 0.8721102202512694, + 0.9635083053505945, + 0.9190151917697933, + 0.925467948195544, + 0.7132693004593517, + 0.6153326688905747, + 0.7554895082224226, + 0.8826907013869166, + 0.7993595506837549, + 0.6795729411669714, + 0.8608414131917741, + 0.8330836301363749, + 0.9192856129782827, + 0.8555998621343941, + 0.8196019037537847, + 0.7688644324896499, + 0.7606207560869002, + 0.8657901195206928, + 0.9222118283765685, + 0.8823440049958253, + 0.8475238385199158, + 0.9145186902116645, + 0.6969479465726209, + 0.8128215467502108, + 0.8979391215410029, + 0.7980147474756311, + 0.8651233500558632, + 0.9012646827239827, + 0.8005549489680643, + 0.9192158097261129, + 0.9251432749379026, + 0.9507383919201043, + 0.8837393664282696, + 0.9496368093465303, + 0.9351630540280199, + 0.7596962955819343, + 0.8248693724582586, + 0.866278641446907, + 0.878400250348051, + 0.9426705171382852, + 0.8942731760082544, + 0.8418148821533821, + 0.8258465714076288, + 0.5002896425636365, + 0.8266212082458, + 0.6525783279671469, + 0.7601836604819286, + 0.8305387653614743, + 0.7894372858080508, + 0.7138464167347992, + 0.742183940597108, + 0.6419882444367144, + 0.9685034066179721, + 0.9410115945328379, + 0.7320767911323571, + 0.7663843387210242, + 0.9189101969804724, + 0.9539312080357569, + 0.9047977827793757, + 0.918570452960441, + 0.9268039791019035, + 0.5377736231188704, + 0.820224463979758, + 0.7819611417073185, + 0.6729673788537348, + 0.6399391065472547, + 0.864003019433723, + 0.9576634978208051, + 0.9377862962823497, + 0.9533848993788666, + 0.8270879394858531, + 0.8005534701188536, + 0.871468237322097, + 0.7979861523063037, + 0.9137980291267892, + 0.9286379807299269, + 1.0, + 0.9355745738834675, + 0.8899116462140709, + 0.8933898707594864, + 0.8077560468383689, + 0.90559530507114, + 0.8886843506251981, + 0.869496557858758, + 0.9421804088943466, + 0.9287235761625616, + 0.9261492676356752, + 0.8448337408942826, + 0.8657511743656067, + 0.8011591101757244, + 0.7292004788769765, + 0.9109104186854768, + 0.6478549421311514, + 0.9151818034404161, + 0.7055363142640656, + 0.8824367418066892, + 0.9271740732958181, + 0.8817509530610529, + 0.9173324160162141, + 0.9039043942871517, + 0.9156400005577556, + 0.8289089145288884, + 0.8878316513224755, + 0.896624305959684, + 0.9483201808015992, + 0.7868725494212949, + 0.9202181128940835, + 0.9351292965757946, + 0.8352530236739734, + 0.8728463042416054, + 0.9293028044629996, + 0.8442898118629776, + 0.7035981295509759, + 0.8880623516328846, + 0.8967650948044507, + 0.787612380141447, + 0.7429669936947064, + 0.9019681677354521, + 0.8465260611985926, + 0.8962004978616014, + 0.7816409996170626, + 0.8750862643601865, + 0.8847867296499893, + 0.873476022173111, + 0.8341353770677895, + 0.6067557322833929, + 0.8035972216905751, + 0.7685155246737092, + 0.8665324669786156, + 0.881775919754128, + 0.9044099242920373, + 0.8013311449310674, + 0.6178172291865314, + 0.7531929076763352, + 0.9241103599404027, + 0.8911726059895048, + 0.8598381387101, + 0.6873466329578352, + 0.6491431051709275, + 0.8209578875717758, + 0.9132033519576848, + 0.8689887978367622, + 0.8093420204898533, + 0.8343311205894663, + 0.8278615623777944, + 0.7566774753735458, + 0.9390496060454641, + 0.9265785559906302, + 0.851422683195288, + 0.9371846852729829, + 0.8401912773884608, + 0.8869389172533535, + 0.5135716572443562, + 0.6108998965905098, + 0.8258024988310252, + 0.9478430691477329, + 0.9021375077698268, + 0.7679437910842085, + 0.8044488332653412, + 0.7407154881415086, + 0.6830821976687169, + 0.7263517121851041, + 0.8675491187426188, + 0.728886035725222, + 0.7034200265692634, + 0.7046651573605826, + 0.7927407784914058, + 0.7370591504915015, + 0.5277915253165676, + 0.7517827836561638, + 0.6943992976579073, + 0.7212349488063965, + 0.8981175127703074, + 0.8117175987489508, + 0.75259211169297, + 0.658192212945075, + 0.9234874277210252, + 0.7798557983469738, + 0.6896247071168885 + ], + [ + 0.8662662569060147, + 0.6622288808518825, + 0.7330894050738398, + 0.753510420473966, + 0.8442440898420158, + 0.7754749446269683, + 0.6493854919535281, + 0.8539515321945955, + 0.7280671590740353, + 0.8123336314539392, + 0.7000609253995966, + 0.7408772422174852, + 0.8210770452037567, + 0.7482848959963627, + 0.8440284458552025, + 0.754178771234307, + 0.7476377687786013, + 0.8699502168916375, + 0.8580991332968018, + 0.8498086192041043, + 0.9120275060732962, + 0.733097325103386, + 0.8251108044517262, + 0.8016451762782789, + 0.6792166095543319, + 0.8059208754134112, + 0.8275386435251837, + 0.8428974464306654, + 0.7679500599341949, + 0.6670743957199904, + 0.8353153019472104, + 0.7281339431854755, + 0.798620407684183, + 0.7152856439817233, + 0.8530442451351872, + 0.8867209655278696, + 0.931282709350149, + 0.4574763049283738, + 0.7147679791517982, + 0.8612366240561472, + 0.7551789587103722, + 0.6233818178402094, + 0.41170457654783277, + 0.7756084679216189, + 0.781638439866549, + 0.8611993068531667, + 0.9449331724166364, + 0.8419680542422351, + 0.8547423659457922, + 0.8880343585707747, + 0.8616338207156387, + 0.7520768492334662, + 0.7210500273169578, + 0.8032583552619293, + 0.6807135899226634, + 0.7435263547575033, + 0.829019910212366, + 0.880503912721829, + 0.5915765253545697, + 0.9101672669042611, + 0.7134444637318229, + 0.9342225187474394, + 0.7147695735282666, + 0.7864184809053979, + 0.7800300847467063, + 0.7080692874498036, + 0.8454439899175313, + 0.9226056517523245, + 0.8311152172846354, + 0.8462060201816154, + 0.9160052563244764, + 0.7544073134111708, + 0.8561552999320986, + 0.8980189978588896, + 0.8867196872941003, + 0.8544969287586996, + 0.8474622267197022, + 0.7514855124847866, + 0.7876544538304542, + 0.8499655220065798, + 0.833186260689982, + 0.6142828824317128, + 0.8261254613372201, + 0.8710748717619098, + 0.8940472423994169, + 0.877684843995342, + 0.9042468246628491, + 0.7577032324575533, + 0.6819736161895232, + 0.7466328797467126, + 0.8690295581580617, + 0.9097169829292402, + 0.8490233592953907, + 0.9252497268496341, + 0.935460096472546, + 0.8039295995599564, + 0.79167233293017, + 0.8362368236038986, + 0.8801548826829031, + 0.808561073555285, + 0.9413550339966957, + 0.8490684464220176, + 0.799048045603407, + 0.8731930542870939, + 0.9392920776353479, + 0.7387623176863412, + 0.8413917405310073, + 0.9486430834467571, + 0.8753024268596215, + 0.923749244782988, + 0.960123170632964, + 0.7926464828802834, + 0.8725414272653341, + 0.8874881318101354, + 0.9100951686388868, + 0.9117442292038425, + 0.9401519214162266, + 0.9290206507278255, + 0.8046160633485298, + 0.9054522932686944, + 0.9266968096538873, + 0.8983526043395991, + 0.9529731657067209, + 0.7912752333457519, + 0.8075753510881691, + 0.8441124206133138, + 0.574034544776606, + 0.885928806067189, + 0.7316084966554501, + 0.7972256256582297, + 0.7955516882430927, + 0.7897208775000786, + 0.667064446291195, + 0.7354237894967055, + 0.6665987197007979, + 0.9250397644754458, + 0.9656187966741835, + 0.8251427457611307, + 0.800622797026165, + 0.914990843361761, + 0.9082687685613878, + 0.9469019097580509, + 0.8815845004703391, + 0.9398980072063023, + 0.6086556919473831, + 0.8680290872880732, + 0.8653747342056214, + 0.7955896315882007, + 0.6732600913524369, + 0.9235812036197901, + 0.9277786502114714, + 0.9282130552514398, + 0.9228045383687754, + 0.8532514299083419, + 0.9027706235725406, + 0.9269831884181057, + 0.8641364681082451, + 0.9608205887662357, + 0.9288100186235124, + 0.9355745738834675, + 1.0, + 0.9516045601358355, + 0.9624050672471561, + 0.927053756927994, + 0.9294947348512115, + 0.9385827737975293, + 0.9587133872949275, + 0.9446545125270094, + 0.964552669041131, + 0.9589345828820331, + 0.9446718072454847, + 0.9568229333273873, + 0.7633983595629383, + 0.6927892455203788, + 0.9275318081601832, + 0.6444577215334721, + 0.9427902537979264, + 0.81124974838562, + 0.8700567319437211, + 0.9319889463032982, + 0.7810102760718192, + 0.9574642235286278, + 0.9519062362998224, + 0.955138716390788, + 0.9072555795344818, + 0.8988178624035043, + 0.9083161063311532, + 0.909138138089495, + 0.8068438708299439, + 0.8790534807013246, + 0.9078052957275634, + 0.8672228831552932, + 0.8803858986513622, + 0.9274997822988459, + 0.8627371490518225, + 0.8220900499185164, + 0.9437903891531775, + 0.9588701462986234, + 0.8198389889884258, + 0.6821221517061586, + 0.9630999201191823, + 0.7928720972344304, + 0.8422339669245975, + 0.8409983504834445, + 0.9233604148869267, + 0.9148394961916709, + 0.8272029575301936, + 0.8719219343847996, + 0.7173794066393706, + 0.89075609743895, + 0.8741303605506219, + 0.8586961218598735, + 0.9396416517991538, + 0.9382631843357909, + 0.902439668393144, + 0.5640075067027334, + 0.8261779606027678, + 0.9487516120802347, + 0.9105269469609326, + 0.9214992995870517, + 0.8030267401297476, + 0.6813764691098242, + 0.8841907837424561, + 0.8948955639261001, + 0.8956753811936967, + 0.7473781780112786, + 0.8764618725170964, + 0.8938292738785569, + 0.7904576236112568, + 0.9541685331614602, + 0.9527970879963873, + 0.9445487752457746, + 0.9719546914433415, + 0.9236973027585035, + 0.946003571108843, + 0.5370189049572922, + 0.5004173599853764, + 0.8161307055463339, + 0.9108773940329522, + 0.9179764400074056, + 0.7595232743961452, + 0.8509546691864476, + 0.7646198307978463, + 0.7792292683048111, + 0.8445419355564462, + 0.7046003080931804, + 0.7101945608175674, + 0.6746782120433825, + 0.7523654999415903, + 0.8426405287414228, + 0.8120211054701301, + 0.6473936042705487, + 0.746519336222571, + 0.6628273267611798, + 0.7015552222947049, + 0.7902870032123294, + 0.8665316099439512, + 0.6312226780657509, + 0.6489858994602605, + 0.9568836073370228, + 0.8870645812534257, + 0.7498242636616824 + ], + [ + 0.7990996454961748, + 0.5228811527216376, + 0.5921854495230113, + 0.674328023806992, + 0.8678446195645253, + 0.7504994527410027, + 0.570274247481445, + 0.8325331970016538, + 0.5944923852525538, + 0.7312134068104708, + 0.6441543669707167, + 0.6655772840239438, + 0.6985173575968485, + 0.7661060261234847, + 0.7852028432397471, + 0.7090566943933336, + 0.6536431824905561, + 0.7636570740103823, + 0.8178990894975121, + 0.7160747151083169, + 0.8679073418102735, + 0.7660597665006299, + 0.7858644503805676, + 0.7426915968822809, + 0.5610441346199913, + 0.7615375549869606, + 0.7788896125054693, + 0.7580857581887036, + 0.7448906928521083, + 0.5723768069103484, + 0.7550347823478321, + 0.6706996973404183, + 0.8125042098501016, + 0.7771455599072775, + 0.7926925613534896, + 0.8707823266048292, + 0.9069254962818631, + 0.45536555707515397, + 0.6291593432658044, + 0.8452522199836066, + 0.7079766914045844, + 0.5760140084257267, + 0.47165915793448754, + 0.7882232503917715, + 0.7509620593840705, + 0.7964184880959176, + 0.9522679813945316, + 0.7585280971934416, + 0.8104397979293944, + 0.9150448017110548, + 0.8197732651574544, + 0.6731144616309587, + 0.7441367503069984, + 0.7570744451996361, + 0.6790945577670834, + 0.7375040026163078, + 0.8113340388304597, + 0.8579148426006642, + 0.547584881338227, + 0.8963257486346875, + 0.6349679784524649, + 0.8942280450226601, + 0.623322985191879, + 0.7878364704094813, + 0.6900517195177822, + 0.639784089616445, + 0.7929423666027414, + 0.8853306727148839, + 0.7993218424065701, + 0.7996403815020824, + 0.8721112450912873, + 0.651050840994703, + 0.70697003643258, + 0.8243671732980131, + 0.8565635284240493, + 0.8382708322204493, + 0.836389104790328, + 0.7273325822828214, + 0.7097258724135652, + 0.7902075183260624, + 0.7948075290905452, + 0.6209079106543601, + 0.7758917535132555, + 0.8541992731211508, + 0.8184180298224376, + 0.7939354538361526, + 0.7814636394662002, + 0.6994988187600901, + 0.6871186358895927, + 0.7058407099519726, + 0.8097144629459153, + 0.8808225568533287, + 0.8105328787329118, + 0.8920668975788133, + 0.8555626932831358, + 0.7697642919533977, + 0.6661927524796522, + 0.8403063157344975, + 0.8634172240112697, + 0.7616821917455026, + 0.8823803292325249, + 0.8337222706189802, + 0.6996747282057463, + 0.8892941156080494, + 0.892203259681359, + 0.6659546038065042, + 0.7978553835674298, + 0.9159976785157218, + 0.8512759762423601, + 0.890199056034775, + 0.9737212280399111, + 0.7254975438135827, + 0.7765434399018156, + 0.7969664614815801, + 0.8688879675556677, + 0.8227696769562491, + 0.9498190995711959, + 0.8615750619291798, + 0.6795927628800744, + 0.880032674388934, + 0.8725247324342857, + 0.866597894498787, + 0.9061629304321699, + 0.7289066452696342, + 0.6995389448953786, + 0.7693917258975566, + 0.5828797399954064, + 0.8707709534979917, + 0.6160652629678163, + 0.8065513980426494, + 0.7056221130699925, + 0.7232674193139421, + 0.581898928418457, + 0.6920953209144828, + 0.5895248131326659, + 0.8945628140542203, + 0.9562127678011821, + 0.7610163250809009, + 0.8431855105299074, + 0.9115279665315836, + 0.9019010576384686, + 0.8802029694084302, + 0.8827650267179927, + 0.8992402807285751, + 0.5649924204022586, + 0.8071288380118868, + 0.8310342724564265, + 0.8788894586722763, + 0.758633876631709, + 0.9125272256571205, + 0.9359467043934385, + 0.9628365208620382, + 0.9079984465073188, + 0.7391441250320648, + 0.8882378852302932, + 0.9126130754300159, + 0.9005936651418595, + 0.924596104620437, + 0.8852014301966223, + 0.8899116462140709, + 0.9516045601358355, + 1.0, + 0.8932810085679899, + 0.9167927643847827, + 0.8741589663429455, + 0.8898743435037453, + 0.9522498220616439, + 0.9161621014679546, + 0.9545320645249483, + 0.8993803176139292, + 0.9315259773917971, + 0.9605814092843022, + 0.6927882154374276, + 0.6315809539987927, + 0.909484116500785, + 0.7946161958153491, + 0.9618187404661261, + 0.8219245671925959, + 0.8017297672737734, + 0.9296276052029602, + 0.7178128149720201, + 0.9376226362274414, + 0.9811980109731, + 0.9159219673739294, + 0.8817452052810709, + 0.8530456770018237, + 0.8974111781882671, + 0.818635281749263, + 0.7274437622432061, + 0.8034470501687718, + 0.8527195882682268, + 0.8115758661417136, + 0.8429583066521417, + 0.8919341115014667, + 0.8559530765884688, + 0.7998770203798466, + 0.9022718099621748, + 0.9314761473862065, + 0.8066482306671618, + 0.7286669231222092, + 0.9787303163292886, + 0.6931933059802645, + 0.8198593411314788, + 0.865318103763043, + 0.8989519399800787, + 0.904190353428928, + 0.7443453645891613, + 0.7702860265637834, + 0.7325080129442675, + 0.8880562695283407, + 0.9152892614761695, + 0.9085374791784196, + 0.9252857914643959, + 0.8896538290353774, + 0.8312002940168762, + 0.5205084755212827, + 0.720086588616332, + 0.9195169701115157, + 0.9043646484921536, + 0.9068639791745506, + 0.7315717965850717, + 0.8458825375313395, + 0.8849721246531412, + 0.9103211586885052, + 0.8525129161142911, + 0.6828422426898167, + 0.8352709648082672, + 0.9150108688763633, + 0.7509966744012404, + 0.8716563406962913, + 0.9429710238022724, + 0.8782896151246399, + 0.919052206509063, + 0.848111407042304, + 0.9061346632763573, + 0.594895281196159, + 0.4978577713925046, + 0.8550367051836663, + 0.9155808115566272, + 0.9156176308262968, + 0.777948713148112, + 0.8470891981574828, + 0.6992298373414623, + 0.723946635219123, + 0.8916685207899567, + 0.6925537271110572, + 0.6690691235970769, + 0.7672836633318014, + 0.889478458168663, + 0.771790060014493, + 0.8367439057564093, + 0.6500068398053855, + 0.6716305255887505, + 0.5701885245758997, + 0.6940693317741273, + 0.705284673400486, + 0.8517066693065553, + 0.6637187383368272, + 0.6252972199914018, + 0.9400757139811345, + 0.8289730824654651, + 0.7232416676985739 + ], + [ + 0.835976493563244, + 0.6540945681325948, + 0.7886384813113062, + 0.7863742913330138, + 0.8101932643186612, + 0.8018223309544837, + 0.7327731657877484, + 0.8442532348591218, + 0.7768472647619544, + 0.8661312499381568, + 0.7416580579342961, + 0.6772125234833228, + 0.8079821374242483, + 0.6719224066951242, + 0.8765789840630559, + 0.7455247147841078, + 0.767497831066664, + 0.8946078602510859, + 0.8373163383445675, + 0.8936979225462328, + 0.9096962546725047, + 0.7158813624413711, + 0.8303464576846626, + 0.8462571641884147, + 0.6437813455592247, + 0.7701389741671333, + 0.7923609961197565, + 0.8534240963609409, + 0.7986096684182905, + 0.5974252995388906, + 0.8046547736400013, + 0.7031643135341659, + 0.758017009435173, + 0.7230195145781992, + 0.9158143043606951, + 0.8434465655715362, + 0.8852379381327551, + 0.3772809261674753, + 0.6773280914501666, + 0.8372083744104895, + 0.7500942089589943, + 0.6417276947259724, + 0.3739546234679337, + 0.7994256776784122, + 0.8394353622199469, + 0.873896563744355, + 0.9034793000254616, + 0.8794865540515862, + 0.8877691650442975, + 0.8061967476444443, + 0.874667931270904, + 0.7509836257765188, + 0.7363949301223821, + 0.7453671796837459, + 0.5912621954479373, + 0.6926433067605722, + 0.7929355355996186, + 0.8232775410372147, + 0.6338858461708609, + 0.8229459785949579, + 0.7369386778173076, + 0.9187364516750193, + 0.7408545164934057, + 0.7693117962334128, + 0.8303112795497674, + 0.7726811697048334, + 0.8715065650710454, + 0.9432809786302826, + 0.7685805306454112, + 0.7688860123575023, + 0.8817591145244006, + 0.7742932683182294, + 0.8795000288992827, + 0.8676734924514403, + 0.8760541971772917, + 0.8717689891712549, + 0.8604816255861306, + 0.7148863400619774, + 0.8115534080718659, + 0.8001220273381416, + 0.8036314793907862, + 0.6681206167890457, + 0.7821995462352272, + 0.8455852759356394, + 0.8508770244170378, + 0.8364433945340949, + 0.9041004615382401, + 0.8240173379109428, + 0.7214281371952479, + 0.7266547429722636, + 0.8860271969139373, + 0.9424924247063677, + 0.8334147199387395, + 0.8980513566865225, + 0.9506119361577358, + 0.7837791777383852, + 0.7446911979560779, + 0.7934287247808829, + 0.9111783963712974, + 0.7832089909828651, + 0.9041970795703712, + 0.8434927717771711, + 0.7966743153412692, + 0.847122830458459, + 0.9179075177209106, + 0.8475012128169997, + 0.8403790468756367, + 0.9576582451104378, + 0.8530776060362584, + 0.9229551098530887, + 0.8889712111809667, + 0.8798933594816047, + 0.874917489756143, + 0.878998505415704, + 0.8544711151743479, + 0.9100967079861197, + 0.8609741733075066, + 0.9154036938390425, + 0.883645060670186, + 0.9343156178832818, + 0.8845114357628258, + 0.8713085537812539, + 0.9045301809175436, + 0.8003551061741059, + 0.8377090412948062, + 0.8748648384012375, + 0.5937346506700992, + 0.886246495126566, + 0.7817781746681672, + 0.7804066091884219, + 0.8729227175219629, + 0.8249587882418402, + 0.759096416521073, + 0.7995785355492939, + 0.7948872212646233, + 0.8648232282673937, + 0.9212576407830874, + 0.8888157580110971, + 0.7014893583756974, + 0.8917727525580799, + 0.872285919708387, + 0.9326782620177771, + 0.8358388835739593, + 0.8934262595082714, + 0.6577560294604933, + 0.926740007022223, + 0.8155679392301581, + 0.7284189033804143, + 0.574446798716058, + 0.824067846463971, + 0.8760031597913283, + 0.8500406362536828, + 0.8683219138560049, + 0.8791748367500922, + 0.9356531748986909, + 0.9035587361695964, + 0.7715697876033667, + 0.9578779214693042, + 0.9301356375173884, + 0.8933898707594864, + 0.9624050672471561, + 0.8932810085679899, + 1.0, + 0.8925416695594828, + 0.9019582380220728, + 0.8992621004353224, + 0.8979250386541519, + 0.9361574227367814, + 0.9304410037780345, + 0.9534538557790226, + 0.9588281928462408, + 0.9413595725377392, + 0.8383979209644972, + 0.669416619363973, + 0.912520843386043, + 0.541056555665057, + 0.8851108101110703, + 0.7612009487262286, + 0.8311103288646402, + 0.9107250305586814, + 0.7459610340472024, + 0.9198275807535877, + 0.8792818501479367, + 0.9321700743554172, + 0.8595886710172491, + 0.9382415226102079, + 0.9192629132824082, + 0.9095057950108875, + 0.8810664965739352, + 0.8519397958985859, + 0.8654093526302894, + 0.8500036675809863, + 0.8612886436563439, + 0.8711729585712924, + 0.7809318476662936, + 0.8422167859740967, + 0.9745730811527225, + 0.9561811031460038, + 0.7566863962864724, + 0.6691208456025252, + 0.9271294686970715, + 0.7870055083079939, + 0.8064006778939053, + 0.7814253359222801, + 0.8917673796780939, + 0.891243145987005, + 0.8089894068895127, + 0.8904588737561789, + 0.7693423432985518, + 0.8647332014158755, + 0.8747920281875214, + 0.7830975569757005, + 0.8603607973011209, + 0.9645039072972924, + 0.9142754044590556, + 0.6092066362641632, + 0.8182943259686364, + 0.9219676721896358, + 0.8402974400331205, + 0.8861035871239161, + 0.8098892053261363, + 0.5619763974958891, + 0.8502145371887293, + 0.8713493289442764, + 0.8245568829252703, + 0.8058553290167758, + 0.8046680930941901, + 0.8364818032744659, + 0.821288531891703, + 0.9545790222197451, + 0.9135046638197455, + 0.9514565358026089, + 0.9405511974543638, + 0.9114257888504617, + 0.9233644791653917, + 0.4824213318602927, + 0.45971745385196017, + 0.6975604270412656, + 0.8363624232213274, + 0.8445465144791081, + 0.7327383211775711, + 0.7634564511898231, + 0.7525133406775057, + 0.7616793445950217, + 0.8471421597317317, + 0.6330548776337851, + 0.7571207734780563, + 0.5683604558981826, + 0.6666389033234968, + 0.8237576739514006, + 0.6925993401839137, + 0.6951194808026722, + 0.7447216627918855, + 0.7314377121910854, + 0.6840067594814506, + 0.8036083486831219, + 0.8702985937330586, + 0.5886212599803603, + 0.7034439670538436, + 0.917356543729685, + 0.9298998885632993, + 0.7268933976221117 + ], + [ + 0.7609666240661186, + 0.5292669945068862, + 0.6971907748262011, + 0.5768953054269975, + 0.6922149914144675, + 0.6736909404262111, + 0.5100434967918184, + 0.7871757162403533, + 0.4944776343273855, + 0.6824616591201882, + 0.5721695539926681, + 0.5882240209670403, + 0.7513663948166239, + 0.5606699990989109, + 0.712047288303608, + 0.5119044809466983, + 0.5726138986199588, + 0.7505159354852121, + 0.6589700029274289, + 0.7623271025923891, + 0.8217062972722297, + 0.5214505628237616, + 0.7692412721917392, + 0.6460681678858157, + 0.4376085475373472, + 0.6153807552744939, + 0.8682879023530693, + 0.7402370509190115, + 0.5812734612514038, + 0.4154576575378316, + 0.6782547231637317, + 0.5991956589501549, + 0.6831818930765388, + 0.6767384503093624, + 0.8083209054234602, + 0.7218095306826721, + 0.8522652330344201, + 0.3082001632180361, + 0.5325377614435558, + 0.7408732061208946, + 0.6807579900351178, + 0.5675769881996633, + 0.34727598267307, + 0.745568755415641, + 0.784766562443727, + 0.7734008300184094, + 0.9164539475725696, + 0.7084555698295827, + 0.8007884050275477, + 0.8426739349283237, + 0.7399231058305519, + 0.5542995629731294, + 0.51788851485619, + 0.6018591715791173, + 0.4751059221782002, + 0.5426096754993066, + 0.6411281449584805, + 0.7935815602163125, + 0.4838670617157563, + 0.8694003294064213, + 0.45738587435258454, + 0.8265675046409637, + 0.48428431800078064, + 0.6077608915067334, + 0.7334123038141804, + 0.6019047216086156, + 0.697511874344298, + 0.898754002288253, + 0.7978384196956341, + 0.7528992036559546, + 0.8065547810813481, + 0.5552937574618821, + 0.7310097531574762, + 0.7703250169374812, + 0.822614061523387, + 0.8617789704372462, + 0.8832998214023968, + 0.627412359367372, + 0.6507715728578323, + 0.7480032424458523, + 0.7243975446473288, + 0.4634588891340281, + 0.7212114105630872, + 0.8306757477070802, + 0.7572658305271832, + 0.7549357459549938, + 0.724494315991033, + 0.5721724785689748, + 0.5178857916065202, + 0.5963380915955816, + 0.7954305905848545, + 0.9012061164105037, + 0.8755746254706065, + 0.9058151837786151, + 0.8872254258455831, + 0.6157649537096404, + 0.631217273619954, + 0.6542043735095139, + 0.8857271382291504, + 0.746796919652675, + 0.8965978618167958, + 0.6787821280605424, + 0.5990307993934112, + 0.7397111201210241, + 0.920233049651886, + 0.6523121663253061, + 0.6957052659082873, + 0.8672286296892912, + 0.7770952529697945, + 0.9326957703379904, + 0.930756335992953, + 0.6582333000269975, + 0.8126574365677657, + 0.77257221358209, + 0.7781773278311862, + 0.76896701934193, + 0.8806797909597069, + 0.8404621850462114, + 0.7149354468452822, + 0.8914625862623377, + 0.891499168259513, + 0.835941909225836, + 0.8592968319713221, + 0.5940345384139882, + 0.6378255856679137, + 0.6884615900756448, + 0.3683457461623454, + 0.8683979978556082, + 0.5855613380612666, + 0.8254461484911163, + 0.6068564111120882, + 0.5802799254667265, + 0.44465384203158415, + 0.5302672893349786, + 0.6167101366805462, + 0.8365550981692107, + 0.8781885942825081, + 0.8002353919255311, + 0.8081294477015631, + 0.8595301871992063, + 0.7851965853751514, + 0.8929473081042453, + 0.8400001411579952, + 0.8288312677842211, + 0.41808681975518747, + 0.7902555161562032, + 0.812893335407856, + 0.788202111192182, + 0.5737603218823105, + 0.9388860674114349, + 0.8628914785940454, + 0.845184689264367, + 0.8571706607726101, + 0.7332543686414306, + 0.8838667375029511, + 0.8938560246387119, + 0.8662745428542575, + 0.832326276701069, + 0.8006069947284475, + 0.8077560468383689, + 0.927053756927994, + 0.9167927643847827, + 0.8925416695594828, + 1.0, + 0.925880363049165, + 0.9094004787766273, + 0.9776635762352277, + 0.8138356152367509, + 0.8843045840430904, + 0.8764284609015487, + 0.9243358350009401, + 0.9187992932673141, + 0.6803737625758075, + 0.6735812660512231, + 0.8860549559291068, + 0.5811458957519042, + 0.890551014421624, + 0.8122875074387118, + 0.7707363197868806, + 0.8657574334531859, + 0.5730242189892109, + 0.921498308823488, + 0.9015274595730272, + 0.9416087366169246, + 0.8736571645185645, + 0.8679098898301966, + 0.8380693596862627, + 0.8278286630470366, + 0.7392067905955273, + 0.8566094813546157, + 0.8446960427560263, + 0.886827517593191, + 0.8244078939893206, + 0.9064850356677026, + 0.8317967365998156, + 0.9190514366519483, + 0.8666243031769828, + 0.9278415971107963, + 0.8332089356720768, + 0.6115561222257737, + 0.9130693177826195, + 0.6158810272110619, + 0.751212675660531, + 0.8672729309575337, + 0.9185704066124796, + 0.9081950207557653, + 0.741140213705898, + 0.7631308503298014, + 0.5957862882536196, + 0.8981497132749767, + 0.9304214276247245, + 0.8413590680498706, + 0.9472107108519873, + 0.8375904517653822, + 0.8579857827558213, + 0.5041164001286728, + 0.7377892449617883, + 0.937911936146109, + 0.932098089301123, + 0.8983610535907601, + 0.8663367764926947, + 0.7186471019499782, + 0.8804312951794094, + 0.8341596531284888, + 0.7700871192238751, + 0.6667270058412865, + 0.8579014131898944, + 0.9406778144298426, + 0.7183579976403051, + 0.9031472575912316, + 0.8765785363433639, + 0.9499054419960457, + 0.9063208980324053, + 0.8391944946989442, + 0.9029578809943816, + 0.47159432087317255, + 0.4549736307309293, + 0.7599497008015692, + 0.813572913725089, + 0.8921336029941067, + 0.6213116946012744, + 0.820971810280131, + 0.8025854005201447, + 0.6919135613574593, + 0.9120849029112537, + 0.4785237504653242, + 0.659632838037926, + 0.5775525874209763, + 0.7569322137980757, + 0.8469116317648732, + 0.7531315025103592, + 0.5865679519513448, + 0.6034108627004351, + 0.49709628053520843, + 0.5421114680356958, + 0.6678733845864925, + 0.8637738590616043, + 0.4420203490986466, + 0.5214459030970834, + 0.8476230564590649, + 0.8579199924338583, + 0.7583584408158484 + ], + [ + 0.8395429768342692, + 0.6975256970145646, + 0.8392233689818677, + 0.6516742417515363, + 0.746390513325836, + 0.758913827471425, + 0.6414756618369347, + 0.8894414827088556, + 0.6175799903692349, + 0.7576838652624086, + 0.6611078069022064, + 0.7780196439494614, + 0.8747146785376139, + 0.6693653699285901, + 0.8739702788021873, + 0.6429279521326234, + 0.7071393808901362, + 0.8690777966412229, + 0.7520054003614248, + 0.8254701085777223, + 0.9234339528823364, + 0.6366518653019317, + 0.8841251819506588, + 0.7364304139681253, + 0.6555671978541798, + 0.78345676899083, + 0.9328281297051014, + 0.9086791653633589, + 0.6725593083602284, + 0.6101029379832388, + 0.8359441528796422, + 0.7351630491331759, + 0.8295038755997788, + 0.7509481675805191, + 0.8597200415533223, + 0.8196888756746796, + 0.8972580834521736, + 0.28662772250573454, + 0.7066293185826624, + 0.8178125760687637, + 0.8433597634367036, + 0.7060371815435624, + 0.32905771556222374, + 0.7928785384888274, + 0.8615610527557163, + 0.799674431514563, + 0.9257093261053623, + 0.7815376251301793, + 0.8427281185467831, + 0.8211887688465529, + 0.8438260635857855, + 0.6952416142306407, + 0.5699994962360678, + 0.7366683149488248, + 0.5875633602409491, + 0.6614215458704297, + 0.7505717284739222, + 0.8705426711054237, + 0.5157388780342449, + 0.9212696887221041, + 0.5826366100139696, + 0.9225319655084468, + 0.6868920681699003, + 0.7498487731718284, + 0.8298089186814344, + 0.6117561492182247, + 0.8023742576082964, + 0.8771672057374393, + 0.8027727517682066, + 0.793189683062917, + 0.7871839988565341, + 0.6768024121493548, + 0.893050895549491, + 0.8723948812767928, + 0.8914370750625372, + 0.9131776898905424, + 0.9225591463055711, + 0.7074176666322451, + 0.7775532963516357, + 0.8714899129223614, + 0.7597670348152079, + 0.4184919372810354, + 0.8000899736380404, + 0.8754383264474094, + 0.8967099966267255, + 0.8724570470604543, + 0.8647845464716766, + 0.6171132674826956, + 0.4761428145724991, + 0.6984971016965298, + 0.93311655050518, + 0.8678251663726398, + 0.8219323743171835, + 0.9188477964134665, + 0.9102419421920105, + 0.7505714249231896, + 0.8247292964903311, + 0.6891591811833299, + 0.8542024757209498, + 0.8101324170259542, + 0.9367764137161882, + 0.7753261315822846, + 0.7359462680339691, + 0.7442781557870506, + 0.9823901301805854, + 0.7205833281475121, + 0.7304882724406335, + 0.8733935011754108, + 0.7681637384958209, + 0.9619910784906516, + 0.8900637189974294, + 0.745669548981592, + 0.9361838155231033, + 0.8988723058931369, + 0.8836801357476556, + 0.8718997516423379, + 0.9025134543696841, + 0.9522782631786838, + 0.7856118810370394, + 0.8806826311271302, + 0.9229646403117996, + 0.8797689533506671, + 0.9093725929635037, + 0.7311784183187322, + 0.7353713086525503, + 0.7285345200653144, + 0.37084481226248434, + 0.9180798837178866, + 0.6291278980966746, + 0.8449128528159549, + 0.7297955711765328, + 0.6973317766991465, + 0.5397808246659628, + 0.5997308548171338, + 0.7031447192078808, + 0.9250805619912957, + 0.8933636330586685, + 0.8374687791851687, + 0.7963154765189102, + 0.9372632969475979, + 0.8824544370160501, + 0.9626529764364238, + 0.9227720597549859, + 0.9059872700822281, + 0.4294017385100823, + 0.8639535998955216, + 0.8660224591010135, + 0.7369623682480788, + 0.5899309637027162, + 0.9228225756789649, + 0.9003728221645616, + 0.8735263148521231, + 0.9283064719357519, + 0.7522551100060767, + 0.8520527686384577, + 0.8978792869999987, + 0.7869305050307974, + 0.8520849532025258, + 0.8173789088541098, + 0.90559530507114, + 0.9294947348512115, + 0.8741589663429455, + 0.9019582380220728, + 0.925880363049165, + 1.0, + 0.9500545199403373, + 0.926996870194326, + 0.8641980109514382, + 0.897137935941648, + 0.9205290492367572, + 0.877911490144912, + 0.871242853170668, + 0.7274154503142352, + 0.7798354407742076, + 0.9194233450375814, + 0.49045025608197707, + 0.8539662246370472, + 0.8187350553303651, + 0.859672032823453, + 0.8724512614360589, + 0.7098732806242058, + 0.9224082656207713, + 0.8716187062650398, + 0.9774267586902405, + 0.8957248450655542, + 0.931060857119407, + 0.9022960359070481, + 0.9395586492746247, + 0.7774426781715773, + 0.9465697701010561, + 0.951060547579724, + 0.9596389705315208, + 0.9043321149783147, + 0.9575029978371173, + 0.8541966023050513, + 0.83407320057342, + 0.8743000918276187, + 0.8911877412281811, + 0.8931982844272933, + 0.6629481127944864, + 0.8949234406917898, + 0.7177218142825802, + 0.831420109266989, + 0.8460328505029638, + 0.9497562075515869, + 0.9247019156098026, + 0.8679511892877388, + 0.8279480938815925, + 0.5284172926563963, + 0.8634300825863448, + 0.8692493351060073, + 0.8751288808791481, + 0.9324933824997518, + 0.8596701936309068, + 0.8818761787607815, + 0.5992264948595658, + 0.7519979208063589, + 0.950952822357225, + 0.9411838834141465, + 0.9017212064714947, + 0.8531019819284358, + 0.6309059068480302, + 0.8661226527131043, + 0.8677316084758839, + 0.7714883495613121, + 0.7534228465232742, + 0.8987767982687855, + 0.8876038261070796, + 0.7086995606133816, + 0.9480045240456101, + 0.8730210183741945, + 0.9520255395928489, + 0.952891792230783, + 0.8596016897540001, + 0.9356573197865091, + 0.42384318199743004, + 0.6083998127372088, + 0.7884663245424492, + 0.8726085957294073, + 0.927960743566242, + 0.6507612903972804, + 0.829093577501338, + 0.8774654495062045, + 0.6549241995517203, + 0.8364163958156622, + 0.6141162536441397, + 0.6906926822147825, + 0.5760935779723977, + 0.6422896395246303, + 0.8712927880880551, + 0.7045751702251692, + 0.5298477736514969, + 0.7329210723405345, + 0.6376254821580828, + 0.6359964262938906, + 0.8568050486124987, + 0.8842260821158271, + 0.6114725494467603, + 0.6008611662813921, + 0.8577131979766704, + 0.8925903819406906, + 0.7005665965555345 + ], + [ + 0.7786493512057514, + 0.6221022097101686, + 0.734589888611586, + 0.7465574765932128, + 0.7690218947536464, + 0.7650727828834092, + 0.5686909894846724, + 0.8124985482762407, + 0.5833925286548786, + 0.6884790094295119, + 0.5267434618112767, + 0.7503528218143543, + 0.8874700691057592, + 0.7061081932698612, + 0.8511515354150483, + 0.6751289398408246, + 0.6092272040937653, + 0.827002201370206, + 0.7862075495513409, + 0.7723773815593636, + 0.885410685254777, + 0.6629396016331104, + 0.8076750117076262, + 0.7001951280389364, + 0.6413406392655352, + 0.7755831232571959, + 0.8525126815606019, + 0.8296466034581171, + 0.6541008782838655, + 0.6131706769714077, + 0.7932660867968513, + 0.6704515422521441, + 0.804712982739231, + 0.6665555513481456, + 0.8692762493102923, + 0.7943882041163962, + 0.8500757844403887, + 0.4690661490126972, + 0.6933789714888973, + 0.7942121797343221, + 0.7599846032900464, + 0.700922209072693, + 0.4231644287037296, + 0.8490155592191928, + 0.846736362871016, + 0.7545918017056128, + 0.8866320704190577, + 0.7152301780259338, + 0.8987913879813645, + 0.8439915106430721, + 0.8392464323661121, + 0.7891564613318984, + 0.6288117736742109, + 0.6947084230255601, + 0.5584848726376183, + 0.6206972936295332, + 0.7246206808161543, + 0.8922445223819284, + 0.5822930909922964, + 0.9056439100425324, + 0.5861036287047098, + 0.9245837345180419, + 0.6413892637404587, + 0.7242655724216105, + 0.7765522242803615, + 0.6473185658839933, + 0.8296147700449551, + 0.9024629090803287, + 0.7587445524112189, + 0.7268145071004305, + 0.7954414099298807, + 0.7034679561216339, + 0.8184767735837584, + 0.8431065321888304, + 0.9101040902055525, + 0.9014359564437537, + 0.9101411483149963, + 0.8032495529790765, + 0.6874886904832122, + 0.8967632583083811, + 0.738268059074135, + 0.5581303355386006, + 0.7945251779452988, + 0.9231131588986415, + 0.8416572715788081, + 0.8266296345355014, + 0.8581926753085256, + 0.6580441243627843, + 0.5893722019877073, + 0.7295740217673152, + 0.9117078744710625, + 0.8501050792581482, + 0.8686218279036536, + 0.9410831777914647, + 0.9085925456556894, + 0.7750354107476063, + 0.7933237683460297, + 0.7540396531633946, + 0.8244527121435352, + 0.7399443781266503, + 0.917694717385544, + 0.7835571181556863, + 0.7731729494593881, + 0.7946337719032, + 0.9366445584195913, + 0.6255923403478929, + 0.7541428796491096, + 0.8648004745788126, + 0.834548281633647, + 0.9315381404265727, + 0.8944359848785519, + 0.7435649512538228, + 0.8767666247074074, + 0.8925928621736757, + 0.9200680238141873, + 0.9067404170302158, + 0.8774246703346403, + 0.9325869279147838, + 0.7812883099806105, + 0.9034238980264272, + 0.9025360411373071, + 0.9355183147451169, + 0.8969335876065787, + 0.7238894250712524, + 0.7746373688672326, + 0.7766373499409119, + 0.516362947477228, + 0.9234056878658353, + 0.7101307728184515, + 0.9000718397937973, + 0.7457206837457235, + 0.7068139533003477, + 0.5638798464046297, + 0.6626044888192908, + 0.6041949544583403, + 0.8884844200722531, + 0.8951906667998408, + 0.8751214596644183, + 0.7632844764085867, + 0.9296749817667147, + 0.8931242042572782, + 0.9601102477687977, + 0.8928032334906569, + 0.8656124888739654, + 0.559106462169375, + 0.8357832127920172, + 0.9022923685380436, + 0.7936722883872496, + 0.64026519318689, + 0.8846490933277772, + 0.8685717941466431, + 0.8517493938856618, + 0.8676617249083333, + 0.7786282010707671, + 0.9121410047989814, + 0.9126931782435457, + 0.8060466385458652, + 0.8619958817362339, + 0.8047089095761975, + 0.8886843506251981, + 0.9385827737975293, + 0.8898743435037453, + 0.8992621004353224, + 0.9094004787766273, + 0.9500545199403373, + 1.0, + 0.9314847100295262, + 0.898170630603818, + 0.9332121356486869, + 0.9504946483614833, + 0.903282396486192, + 0.8877250249099806, + 0.7409442769983003, + 0.7797414328395615, + 0.9614317831342941, + 0.5469634494183149, + 0.877172452145966, + 0.8262604629463987, + 0.7683124481990347, + 0.8953182212194403, + 0.7542980899188425, + 0.9495624822895031, + 0.891363761261388, + 0.9716402117886617, + 0.9246080180474129, + 0.9159160028397967, + 0.9387780930007595, + 0.9096789148586458, + 0.8010455488078345, + 0.9093589424097777, + 0.947692524775302, + 0.9596222064993688, + 0.9526612032875379, + 0.9474918890215096, + 0.8935901771003362, + 0.8181847317269548, + 0.8628595857341077, + 0.9231440725469241, + 0.9097781722329046, + 0.7127161904035568, + 0.8783425518147432, + 0.7513631537654388, + 0.8157927310579561, + 0.8731758637791474, + 0.9493064361694077, + 0.9375497843876915, + 0.8633323826602932, + 0.8687555239914997, + 0.633678439965091, + 0.917470307064997, + 0.8529515199412506, + 0.8262295922773436, + 0.895414390866962, + 0.8522001880586428, + 0.9098714693680626, + 0.7110809636863522, + 0.8528152854882454, + 0.9533794450039138, + 0.8879241548503962, + 0.959923202209546, + 0.8291419323686475, + 0.6711089141807616, + 0.9172597780208769, + 0.8629103261120068, + 0.8606689318586072, + 0.8035290623571356, + 0.9088698506822006, + 0.8775227542229739, + 0.6529132153282426, + 0.9182083481193256, + 0.8900720185758291, + 0.9595895607818279, + 0.9724320104756705, + 0.9405858842876557, + 0.9522892458033493, + 0.4993431978949727, + 0.685790605486192, + 0.7832928801304301, + 0.8783949389658108, + 0.9389498704405129, + 0.6424017567385204, + 0.870599514742201, + 0.7946161640620009, + 0.7703240855452255, + 0.8695405471066845, + 0.6518734048168423, + 0.5441487361574592, + 0.6669184382774389, + 0.6515547985408067, + 0.7716523459839252, + 0.7580455674837117, + 0.6360974250070335, + 0.7720429832804803, + 0.6045971547687801, + 0.6363355368567549, + 0.8110933844777121, + 0.8941915013626601, + 0.6218921624597233, + 0.49692281250233133, + 0.8768557309389888, + 0.884995958751334, + 0.7209325837469506 + ], + [ + 0.8048666482034152, + 0.542185645501432, + 0.6524367196013167, + 0.6118994441405299, + 0.7358386412579379, + 0.679285220506898, + 0.4829226810102862, + 0.8017093036595583, + 0.551150836114898, + 0.6861767462842973, + 0.5745953603754941, + 0.6564744209075285, + 0.7629419235960216, + 0.6412908187592037, + 0.735535697279726, + 0.606622892793286, + 0.6180121023319921, + 0.7725133314054776, + 0.7432141334595015, + 0.7371661666857711, + 0.8564629042317398, + 0.6200200545404176, + 0.7528432593125463, + 0.6586127219192838, + 0.5420553955899761, + 0.6801235468530884, + 0.8392605331400927, + 0.7668084355748449, + 0.6280255843129996, + 0.5026914329448112, + 0.7330924865644021, + 0.6081886511434758, + 0.7295773153541077, + 0.718794582464721, + 0.7857781153079678, + 0.7956802866464425, + 0.8905881728139398, + 0.4082387608221776, + 0.6216468603288648, + 0.8198348917623821, + 0.691244293354881, + 0.5751719149519183, + 0.4306348729698866, + 0.7643652315979361, + 0.7482201224700448, + 0.7708400190706808, + 0.9390750362872838, + 0.7093290745167217, + 0.8096091060746969, + 0.9127965917060391, + 0.7976916495760416, + 0.6269651752310732, + 0.6092217715591063, + 0.6773396503315555, + 0.5905161045763169, + 0.6449441976593545, + 0.7234129990565207, + 0.8561763644823454, + 0.4968826362885984, + 0.9157267396125943, + 0.557137849634929, + 0.8788220023482466, + 0.5570842601558156, + 0.691434445081945, + 0.7077954322758063, + 0.5741938933333025, + 0.7265097023499054, + 0.8979564936716119, + 0.7983277709106031, + 0.7832352887531217, + 0.8386403483379221, + 0.5836702965922382, + 0.7456575594804453, + 0.8381510125018549, + 0.83524308702841, + 0.8717003145096454, + 0.8663928691562716, + 0.7068963357293075, + 0.6961145698359558, + 0.8227171470693193, + 0.7474994136254075, + 0.5182260294625245, + 0.8018377047558785, + 0.880693320048091, + 0.8076759990901702, + 0.7938356005103039, + 0.7746519392500535, + 0.5986909860508309, + 0.5737141292891267, + 0.6391429106177438, + 0.806389385302383, + 0.8855487457155639, + 0.8453264926936053, + 0.9067778550930735, + 0.8954049293685659, + 0.6980015866605044, + 0.6966942825969066, + 0.7337552874776034, + 0.8484460771296104, + 0.7466915988289066, + 0.9095174396939737, + 0.7637553128122888, + 0.6698132669101423, + 0.7933892006921496, + 0.9158496758563575, + 0.6244042884809545, + 0.7264075049864837, + 0.8945876654178724, + 0.8139433784674266, + 0.9251370148934374, + 0.9779752697970466, + 0.6831357521155956, + 0.8290513480990838, + 0.8199069808153627, + 0.8550405686370378, + 0.8179289482033242, + 0.934076179947657, + 0.8631599475428237, + 0.712160560922343, + 0.9089991319388111, + 0.9160230558205266, + 0.8916589529745499, + 0.9017441841722322, + 0.6801485276282601, + 0.7095287685460501, + 0.7485719897754889, + 0.44586018306493713, + 0.8757582513191521, + 0.6111697800810526, + 0.8471513682738893, + 0.6581268667240852, + 0.6378728944598238, + 0.4995852118296367, + 0.5949627686609722, + 0.5845526878064607, + 0.8844754974370312, + 0.9264936919044808, + 0.798715988379027, + 0.8560826776207057, + 0.8812323573747767, + 0.8501324879521099, + 0.9039876935504852, + 0.8580642230080425, + 0.8568276999061051, + 0.48352178048888284, + 0.7756295418871413, + 0.8328522291648074, + 0.8190744601935592, + 0.6225317682769008, + 0.9622462575335847, + 0.914553481604731, + 0.9122550489569841, + 0.9049437354403711, + 0.7664579010949827, + 0.8778802621913231, + 0.9305824997207931, + 0.9148456198807211, + 0.881845747745399, + 0.8548050566283255, + 0.869496557858758, + 0.9587133872949275, + 0.9522498220616439, + 0.8979250386541519, + 0.9776635762352277, + 0.926996870194326, + 0.9314847100295262, + 1.0, + 0.8663751079194082, + 0.9230768094686534, + 0.8973844308785331, + 0.9257595838863256, + 0.9388459097829225, + 0.6771799226444245, + 0.7012993197900245, + 0.923883325221143, + 0.6688860175658776, + 0.9456449698643277, + 0.8300533783774031, + 0.7966999313828901, + 0.9069902364819135, + 0.6601914632660004, + 0.9493252348644198, + 0.9478245923173988, + 0.9443782523651335, + 0.8748083521063533, + 0.8628887735033197, + 0.8662094215879265, + 0.8513021717564518, + 0.747367248194344, + 0.8757232838084821, + 0.88480055421303, + 0.8880166442483707, + 0.873743399421978, + 0.9306695627816934, + 0.8850683466469205, + 0.8633423498312945, + 0.8772296527984703, + 0.94770899513617, + 0.8475094893841282, + 0.6887116881863221, + 0.936507669881547, + 0.6758952733785195, + 0.8194822775376034, + 0.896309470414846, + 0.9326385676049809, + 0.921857572541826, + 0.7706041041824526, + 0.8025565992699693, + 0.6335167228716296, + 0.9207777747702517, + 0.8995039045621501, + 0.8782332416812286, + 0.9689494908985076, + 0.867463726013555, + 0.8579050810408503, + 0.5220926570752398, + 0.7707843341853239, + 0.9499006624083189, + 0.9331746883136203, + 0.9286479922030154, + 0.8400377030306947, + 0.7692781551402488, + 0.9092273913179648, + 0.8908696623120629, + 0.8425420947361167, + 0.6921896806936908, + 0.8810077001531899, + 0.9412068262480018, + 0.7006167644838942, + 0.91337786846007, + 0.9206950535404599, + 0.9405969257749565, + 0.9359691958548763, + 0.8682197357556838, + 0.9090281917445832, + 0.5776580133113368, + 0.5057396739049101, + 0.8214626263034551, + 0.891150941265877, + 0.9466863006439447, + 0.6864095977527175, + 0.8775988973193566, + 0.7876789462996647, + 0.7295406347204616, + 0.894989345646988, + 0.617054624453711, + 0.6365948094240153, + 0.685649734201532, + 0.8062822716829947, + 0.8319922696507233, + 0.8343016006790867, + 0.5904647290071381, + 0.6331380643405091, + 0.5064995259891731, + 0.5934260228838539, + 0.711917395161595, + 0.8685691112130324, + 0.5707588545907325, + 0.5271817543247704, + 0.8991099831730893, + 0.8567011403005887, + 0.7412632872567867 + ], + [ + 0.8384581186207266, + 0.5988157243250164, + 0.6663980703137695, + 0.8423305261998965, + 0.897985593214979, + 0.8288522584894477, + 0.663089205645631, + 0.8156534452784107, + 0.7579610167373965, + 0.7792232462899366, + 0.6566826943375346, + 0.7402013057647541, + 0.777869579300562, + 0.8312145354248339, + 0.8880580829632472, + 0.8722173177831551, + 0.7672289604156023, + 0.8314750736464561, + 0.9203398140493263, + 0.779996231294411, + 0.9016959150604179, + 0.8578847224880589, + 0.7886761298132222, + 0.8059523019176078, + 0.7297220898331289, + 0.87342078864892, + 0.7382318919490455, + 0.8164506638211456, + 0.8537295151894914, + 0.7200623971177444, + 0.8599905960898128, + 0.7129438747764627, + 0.8169502489994296, + 0.745341480881722, + 0.8538210110279525, + 0.9265543305921968, + 0.8503852562689006, + 0.5178533821180665, + 0.7477057525887055, + 0.8843593270845737, + 0.7437123255161311, + 0.6901426868105465, + 0.48106755220294706, + 0.8167547803605925, + 0.8140181958428881, + 0.7973409713592138, + 0.9132983739614821, + 0.8246525092949673, + 0.8454925957054723, + 0.8608310018424897, + 0.8568879679510789, + 0.8585281905550474, + 0.8477449846713251, + 0.8123753959504398, + 0.7188729115417818, + 0.8016304268442209, + 0.8731091706101324, + 0.8866352294877985, + 0.7108614355799846, + 0.8360825118774285, + 0.8024906789505796, + 0.9495931024127269, + 0.7986763090773012, + 0.8786878945932532, + 0.7335270547945213, + 0.7218519560606335, + 0.9214606668309554, + 0.9176549050277338, + 0.7025888989885709, + 0.7436114503044847, + 0.8619557967966827, + 0.8032449636573851, + 0.8233361655081194, + 0.8879844870583027, + 0.8669878768265874, + 0.8645922815616852, + 0.8528547327156384, + 0.8157003156025537, + 0.7789127778718632, + 0.8654254867207914, + 0.7725136570759794, + 0.7562832772833805, + 0.7726360924401494, + 0.912168060967067, + 0.866594041805667, + 0.8210365211680128, + 0.905013998335256, + 0.8540801013509739, + 0.8192149766457766, + 0.8267319493179796, + 0.8712710595377416, + 0.8583060598278375, + 0.7796597557495656, + 0.8726223196828646, + 0.8853153435260995, + 0.9017691216683115, + 0.7503116273204781, + 0.9158257979520069, + 0.8054629858042278, + 0.7028888178299794, + 0.8658248303279776, + 0.928826015564221, + 0.8801741036108038, + 0.9447078197064552, + 0.8847045329588188, + 0.7109017077928025, + 0.8944656654487446, + 0.9158815782579329, + 0.9002785605360918, + 0.8810185971660884, + 0.9086883318325173, + 0.8813474221914596, + 0.8314833445907819, + 0.882556499421497, + 0.9457810358173532, + 0.9357264799627967, + 0.9047112425902084, + 0.9001091189812465, + 0.8113394563530478, + 0.8990525098898272, + 0.8683539871416125, + 0.9073872458141609, + 0.9085313682354135, + 0.8109587671559242, + 0.864662675874525, + 0.8722878232597482, + 0.7195566234304993, + 0.844865936516022, + 0.7679765680766883, + 0.7877388974589049, + 0.8902180275898054, + 0.8498604417788174, + 0.7758554290310298, + 0.8722711125953949, + 0.6479191251388792, + 0.9012101429055464, + 0.9543366860021957, + 0.8276393766621192, + 0.7375767376688775, + 0.9368934859391466, + 0.9658335807778373, + 0.9071088880840805, + 0.8861386671919252, + 0.9090430517423499, + 0.7211398545723442, + 0.8679334024566627, + 0.854728758949859, + 0.7810200011336792, + 0.7041484621856412, + 0.7967157067268107, + 0.9224083488141174, + 0.9117651692024521, + 0.900421516284665, + 0.8116189240897741, + 0.919778674366989, + 0.9272136896303926, + 0.8078308145083781, + 0.9704062828540718, + 0.9159501866697827, + 0.9421804088943466, + 0.9446545125270094, + 0.9161621014679546, + 0.9361574227367814, + 0.8138356152367509, + 0.8641980109514382, + 0.898170630603818, + 0.8663751079194082, + 1.0, + 0.9789711766016751, + 0.9705781881720862, + 0.9351564491440052, + 0.9444817090233112, + 0.8276388807295424, + 0.709930725222638, + 0.9388230074686125, + 0.6716231322127516, + 0.9279234872161173, + 0.8022627732341331, + 0.7741452464675699, + 0.9583992648943163, + 0.8703949460343119, + 0.9426165217183232, + 0.9281889821673667, + 0.9130311021957771, + 0.8367779223367209, + 0.9112488967642206, + 0.9390643007198407, + 0.87346419074918, + 0.8542059063486744, + 0.8275726789611109, + 0.887075310868724, + 0.8134404285772543, + 0.897118167403827, + 0.8899917119698645, + 0.8466116049080481, + 0.7519851259231679, + 0.9316395783436552, + 0.9383789790549496, + 0.7946588389898227, + 0.8058679547358695, + 0.9306841530844663, + 0.7939405067939703, + 0.8633194294992373, + 0.8068538955698803, + 0.8969112189616619, + 0.9045749699417343, + 0.8612861140427872, + 0.9076032270684128, + 0.8230658087406708, + 0.8897086800818471, + 0.8118062564881978, + 0.8343598393080014, + 0.8413818394539179, + 0.9474224890992468, + 0.8869572716229663, + 0.7083677981583217, + 0.8325198374056219, + 0.9109068675717202, + 0.8369535632882475, + 0.9223244421797864, + 0.7062960585679544, + 0.6644684697101685, + 0.870168634439401, + 0.9073003077431687, + 0.9053004605097135, + 0.8503552057732425, + 0.8270772964819252, + 0.8209983794575266, + 0.714416774977184, + 0.8913319214429808, + 0.9701802821000898, + 0.8803526073433154, + 0.9531664529506808, + 0.91732480050748, + 0.9221920177107367, + 0.5709109067270958, + 0.6077796296083695, + 0.7866157137058043, + 0.9201959573151149, + 0.8877239612906649, + 0.7334929106185818, + 0.8316513746560931, + 0.7029282803017259, + 0.8096828450079196, + 0.8093865356118262, + 0.7905909350222199, + 0.6347677843604872, + 0.7564470051696943, + 0.7611755501672337, + 0.7421892540655931, + 0.7395442902764927, + 0.7337147948233907, + 0.8306240970670656, + 0.7204998849104314, + 0.8152242409662596, + 0.8197337807732186, + 0.8886826478425298, + 0.7484909147581238, + 0.6122229904330703, + 0.9696558735791949, + 0.8507351953583417, + 0.7403270307342239 + ], + [ + 0.8373989017738963, + 0.6022339042072844, + 0.6700534242619753, + 0.8150634887456345, + 0.9026706543148105, + 0.8271481372450005, + 0.621711799981266, + 0.8188664534041667, + 0.6818364572493137, + 0.7384828356785448, + 0.622596599061989, + 0.7341407088491053, + 0.8162400891928716, + 0.8085507470228456, + 0.8561003796368329, + 0.8198254872344094, + 0.7084073942377107, + 0.8222930561880295, + 0.900305877612456, + 0.7759984504551608, + 0.9015737813214649, + 0.8202621674510078, + 0.8049774150976764, + 0.7865589162608472, + 0.6763045253196879, + 0.8596898226327212, + 0.8073356043428965, + 0.7916983259291805, + 0.8166621773603975, + 0.6842646762726304, + 0.8546997387154339, + 0.7277540129954079, + 0.8196519070930368, + 0.7623748858291158, + 0.8606850688209188, + 0.9083530487663932, + 0.8732691208282863, + 0.5361402973492851, + 0.7221542508432981, + 0.8691339788989864, + 0.7541721537055434, + 0.7106269850168523, + 0.5283740235304397, + 0.8373272001866419, + 0.8337660399115153, + 0.7892498964000068, + 0.941916113683374, + 0.7985371218258385, + 0.8603426029844907, + 0.885060365474182, + 0.8280112142390692, + 0.8145499767006029, + 0.8053934708077982, + 0.7991493412530631, + 0.7032741057986827, + 0.7672636199841891, + 0.8570621957924819, + 0.9123991725860503, + 0.6909377790045761, + 0.8660427003391874, + 0.7197675505578919, + 0.9401026845474995, + 0.7293462521554978, + 0.8525556387364043, + 0.7291362360853815, + 0.7178003634171728, + 0.8884685195331207, + 0.9277358006652237, + 0.7716546690641243, + 0.7865472341031473, + 0.8865025401892028, + 0.761269725047407, + 0.7880059116075299, + 0.8783197878717303, + 0.8802429225234292, + 0.8852774138518996, + 0.8819249123478776, + 0.8264223401818557, + 0.7464749946571588, + 0.860641767868945, + 0.8034342721350174, + 0.724855517984253, + 0.7491147125682543, + 0.9241774989618983, + 0.8513468532637541, + 0.8294899879641291, + 0.8714343625674935, + 0.8056897610994241, + 0.7708703466074505, + 0.822420475713101, + 0.8766046854176485, + 0.8887363740861735, + 0.8455418616272696, + 0.9267219684330155, + 0.8950464720268275, + 0.8641804488862967, + 0.732037259989086, + 0.9008864884774941, + 0.8444642081920001, + 0.7409784450968171, + 0.9107386206182926, + 0.897291541782881, + 0.8211830458199073, + 0.9403676589237401, + 0.9201422417124815, + 0.6855369218273459, + 0.874432398844332, + 0.922931184561943, + 0.9161201065445733, + 0.9118975988082311, + 0.9455927685730332, + 0.8110522380412626, + 0.8338013567066191, + 0.8889453630521242, + 0.9430242137490871, + 0.9203188608049218, + 0.9305786502814638, + 0.9127020209035165, + 0.7655511724167399, + 0.9138029672002455, + 0.9092961672790242, + 0.9072900604024767, + 0.9240221429586785, + 0.7584905315646513, + 0.8149899901998713, + 0.8191892448062307, + 0.6559877766880413, + 0.8841665856484442, + 0.7341066034195278, + 0.8509594986525169, + 0.8061087706247294, + 0.7987093027653541, + 0.6718925530399872, + 0.789257683051748, + 0.6123753484586679, + 0.9238860830487496, + 0.9700977985081399, + 0.8257856755381047, + 0.7789253278497108, + 0.9465026684827542, + 0.9624995236543687, + 0.923222771506224, + 0.9147957713988685, + 0.9090968066320663, + 0.6739795160492955, + 0.8590276699981475, + 0.8867677611030004, + 0.8221813530875228, + 0.7160063530896974, + 0.8586841010327004, + 0.9344586452041073, + 0.9349338518538852, + 0.9162642417766366, + 0.7996791847053286, + 0.9375971147300413, + 0.9507465753228359, + 0.8505179529032573, + 0.9575829712689296, + 0.8945643416303052, + 0.9287235761625616, + 0.964552669041131, + 0.9545320645249483, + 0.9304410037780345, + 0.8843045840430904, + 0.897137935941648, + 0.9332121356486869, + 0.9230768094686534, + 0.9789711766016751, + 1.0, + 0.9690872312711942, + 0.9593643795532506, + 0.9738840583508663, + 0.7961776718622847, + 0.745265137397085, + 0.958285564042908, + 0.7180727183479538, + 0.9447816055457261, + 0.8324722479432448, + 0.7851985093406577, + 0.9658833908754848, + 0.8260650182684401, + 0.9766267372214527, + 0.9566241015253347, + 0.9501708867917331, + 0.892596084331275, + 0.9183416439824208, + 0.944961329915261, + 0.8615024463336717, + 0.8264413405431674, + 0.8478608421463828, + 0.8892806374303571, + 0.8447032153910341, + 0.9125303750998063, + 0.9247219348660577, + 0.8761368302071608, + 0.8166955074112344, + 0.9281430974254714, + 0.9500458324516492, + 0.8319523832811488, + 0.8065898675972242, + 0.9540549236155775, + 0.740993218844097, + 0.872227878354135, + 0.8483332695029884, + 0.9160080679823789, + 0.9449992020191841, + 0.868799205177146, + 0.8812830423939008, + 0.7903847094102048, + 0.9327226752663741, + 0.8649763745543362, + 0.8665286918629522, + 0.901680855766978, + 0.9368648666939328, + 0.8879874750437445, + 0.6883355886672033, + 0.8309383225693766, + 0.93465720833488, + 0.8921664731855636, + 0.9599488302181794, + 0.7604608608016142, + 0.7243600157004866, + 0.8948951102724614, + 0.9250588320489557, + 0.9107267173844487, + 0.8222691366450304, + 0.8581746835767617, + 0.8931616948236519, + 0.7236259291749625, + 0.896894533520142, + 0.9728457332901611, + 0.9106198367978556, + 0.9738509334416436, + 0.9228749918407483, + 0.9435802812730372, + 0.5898116747995421, + 0.6218923967152579, + 0.8229945653943124, + 0.9380695471363903, + 0.9257814455059121, + 0.7315401190773976, + 0.8692002203394601, + 0.7333204934758104, + 0.8250490031862899, + 0.8595186131087598, + 0.7501744516567797, + 0.6437072422598018, + 0.7488354875064719, + 0.7996403063963898, + 0.7850915435877031, + 0.7647174987706156, + 0.737732858699083, + 0.8244620261383613, + 0.6898633611598889, + 0.8124136809985189, + 0.8003541721929169, + 0.9131798571173826, + 0.7000341232183827, + 0.5992357796473167, + 0.9769011943355687, + 0.8651120302453974, + 0.8029644955202256 + ], + [ + 0.809187933921086, + 0.6217693899193167, + 0.7428209768626997, + 0.8333965492087243, + 0.8446437849919326, + 0.7970743114616549, + 0.6498930701010023, + 0.8331363212327237, + 0.7213552544203184, + 0.7786930976572538, + 0.6256486494551814, + 0.7419977081836747, + 0.8458744007174335, + 0.7490897688302833, + 0.896465941310962, + 0.7898992297323538, + 0.7331910100879782, + 0.8400410539673213, + 0.8542304055178028, + 0.8345945084134608, + 0.8895232227173638, + 0.7367454133102732, + 0.8258119089110394, + 0.7773556043643953, + 0.7030617319886276, + 0.8359006902160445, + 0.8217044020369879, + 0.8407212393668224, + 0.7671230336006573, + 0.6824152077876117, + 0.8470900789378372, + 0.733278601931468, + 0.7787061970251853, + 0.6726384035721822, + 0.8887419646480808, + 0.8694198246970326, + 0.8453291264560396, + 0.4972708201437444, + 0.7271393825187343, + 0.8545152686421139, + 0.7669401153438999, + 0.7308122609129922, + 0.42456247944478454, + 0.8047744877348998, + 0.861131975027979, + 0.8291728247574206, + 0.9142028159922565, + 0.8198110316771665, + 0.8847229350703343, + 0.8484148592341645, + 0.8209206922359442, + 0.835413161496639, + 0.7319897381589231, + 0.7531841060600809, + 0.6232588873549244, + 0.6988831029782083, + 0.7899734961069138, + 0.8967842837689914, + 0.7235141828836955, + 0.8488382051564975, + 0.7110831050017862, + 0.9540033548267894, + 0.7493319002108545, + 0.798424697569032, + 0.7922974934309381, + 0.764892319911677, + 0.899013826313117, + 0.9372161637693533, + 0.7139670601442799, + 0.7360401667157898, + 0.8469186351424796, + 0.7905766568243662, + 0.8680299357474234, + 0.8856152805462609, + 0.8944166782427379, + 0.8963952575122852, + 0.9088048710331843, + 0.8014352879888373, + 0.7418183495830191, + 0.8888352420333129, + 0.7478297607870574, + 0.6882885937916274, + 0.7770908387381827, + 0.9271556320066603, + 0.8814306151849958, + 0.8447619166937497, + 0.9139705047949852, + 0.8196713435113093, + 0.7413585887907618, + 0.8085544264089709, + 0.9042824219562666, + 0.8692855325865988, + 0.8627418349614333, + 0.9213790954136888, + 0.9349482955997169, + 0.8620161608387256, + 0.7896216311408009, + 0.8546768215387552, + 0.8269829712287795, + 0.7144714199834444, + 0.9101359701668346, + 0.8656143347847378, + 0.8789875639563602, + 0.8884461335921284, + 0.9251910414194684, + 0.7048543407957577, + 0.85587499534011, + 0.9088180835517424, + 0.9117003182918247, + 0.9412161396002966, + 0.9014396175575558, + 0.86383216394395, + 0.8837605686888432, + 0.8921231103088617, + 0.9399307392518257, + 0.9451107395196244, + 0.8963583213405424, + 0.9212753878149683, + 0.8666713711607268, + 0.9047924621258695, + 0.9095424640254927, + 0.9291096773471758, + 0.9301084855000886, + 0.766848488127659, + 0.8651338030266932, + 0.8754749341806182, + 0.6471319201230432, + 0.8804580749616574, + 0.8107805751693119, + 0.8292965402710788, + 0.8664016967201141, + 0.8269232845018066, + 0.7335233569890613, + 0.8221014880438067, + 0.6694416906134808, + 0.9017162730496838, + 0.9300420041656038, + 0.862961907211847, + 0.7599865105328969, + 0.9560759082497045, + 0.9291333812457736, + 0.960847872446039, + 0.9147308755538756, + 0.9203163598738934, + 0.670296590449448, + 0.8817023300945763, + 0.8965470062824649, + 0.7871655299214668, + 0.6834640116409535, + 0.8316226240933096, + 0.8900965801416095, + 0.8685478564900443, + 0.8941115163980742, + 0.8318123287599044, + 0.9376964025900544, + 0.9398397344986529, + 0.8130835321680174, + 0.9389262456484021, + 0.8701782199446422, + 0.9261492676356752, + 0.9589345828820331, + 0.8993803176139292, + 0.9534538557790226, + 0.8764284609015487, + 0.9205290492367572, + 0.9504946483614833, + 0.8973844308785331, + 0.9705781881720862, + 0.9690872312711942, + 1.0, + 0.9502444919209619, + 0.9355149442303808, + 0.8625797689032662, + 0.7714479868898865, + 0.9534536360172557, + 0.5884200483150162, + 0.9106928171538774, + 0.8297993445872575, + 0.7814007623480682, + 0.9415762668924272, + 0.8294939121437233, + 0.9587726672278466, + 0.910711887965907, + 0.9623886332700496, + 0.8961294314940109, + 0.9346001873046964, + 0.9381322627985841, + 0.9163774773820584, + 0.8901283343490026, + 0.8706205349819116, + 0.9298626477823749, + 0.8955302674562734, + 0.9184254125406547, + 0.9328421321282817, + 0.8830449666062092, + 0.8255190815928276, + 0.9349574810966301, + 0.955835832403859, + 0.8699055015087318, + 0.745595752685787, + 0.9273312375335867, + 0.821691667527398, + 0.8575699238540032, + 0.8557203086976973, + 0.9295552334390307, + 0.9219139036406965, + 0.8974009184898772, + 0.9378429533483806, + 0.7720171365525368, + 0.9152581656409268, + 0.8350515519081425, + 0.8326478123946128, + 0.8797098217793945, + 0.9449480165740057, + 0.9492750147762988, + 0.7540656766010585, + 0.8893401392388272, + 0.9516976731299924, + 0.8845049871173646, + 0.9523903935566168, + 0.8195954837813048, + 0.6375802478895377, + 0.899072512662289, + 0.8798960862272666, + 0.9034959205132517, + 0.8612942052080391, + 0.8943147773017147, + 0.8499136252086994, + 0.7149779358749494, + 0.9289486928388415, + 0.9473178207459753, + 0.9498439618972659, + 0.9826783613931748, + 0.964059772069014, + 0.9549930125762208, + 0.5061579529432886, + 0.654263369805447, + 0.7982237849660815, + 0.8917946423043153, + 0.8906811762675868, + 0.6443973587156053, + 0.854883780351807, + 0.7816780799876877, + 0.8453612809765139, + 0.8288882220969661, + 0.6925610083981232, + 0.6193552923435821, + 0.7074599626248115, + 0.7027317692497642, + 0.8017907813965628, + 0.7452347606173918, + 0.7448528314402543, + 0.8399883476026331, + 0.7232841085872197, + 0.7503099651664518, + 0.8412569419580389, + 0.9321517106298348, + 0.6696295840283774, + 0.5542857011496133, + 0.9364218627029528, + 0.8882323176665566, + 0.7646311635704649 + ], + [ + 0.7595930680589054, + 0.5349873116202613, + 0.6787227522857688, + 0.7917768015700333, + 0.8148632585371889, + 0.7736927896295671, + 0.6120200545235038, + 0.7669740324306503, + 0.623590460566144, + 0.7728431113129911, + 0.631377270653515, + 0.6004064914296652, + 0.7508664821277379, + 0.6581702453634392, + 0.8121740843821285, + 0.698503621189559, + 0.6379270683544767, + 0.7852005448849634, + 0.8018192335434474, + 0.8021766224995367, + 0.8582289118578517, + 0.7085356613336043, + 0.7849778824827148, + 0.7641996029261849, + 0.5330340917064321, + 0.7255758975108396, + 0.8020742797800635, + 0.7542575400773803, + 0.75243869616428, + 0.5038384089246623, + 0.741871661958521, + 0.6584100991750567, + 0.7129582587382589, + 0.7296713502535079, + 0.8952517694251677, + 0.7988451336871473, + 0.8313112183403086, + 0.43244126943024713, + 0.5796938445724983, + 0.8166158053876719, + 0.6686969274135772, + 0.6354012213625291, + 0.4433825287943679, + 0.8443840554598555, + 0.852810851572454, + 0.8269383825081362, + 0.9210959832026765, + 0.7934246735489894, + 0.8817969340108303, + 0.8547713769938803, + 0.7904053720559936, + 0.7138741210958911, + 0.7178575306717919, + 0.6556208343392731, + 0.533689548311891, + 0.6226020007943579, + 0.7339211992639764, + 0.823269215499925, + 0.6944758058485585, + 0.8091026218753072, + 0.6218978399872035, + 0.8969444329612668, + 0.6167579854107081, + 0.7481967757136727, + 0.7430532560502052, + 0.7319803827820398, + 0.8371609529760475, + 0.9563037073676849, + 0.7197131245948504, + 0.6986854580748867, + 0.8588879415699201, + 0.6945411902545583, + 0.7579837861132552, + 0.8061916387295691, + 0.8410401388108354, + 0.8949135037538061, + 0.8918991548731824, + 0.7290150847475875, + 0.6784012391940208, + 0.7749881673962538, + 0.7277918999803389, + 0.7356491652899012, + 0.7119973388545154, + 0.8887231411310512, + 0.7641797171396492, + 0.7556931798605576, + 0.803914830344096, + 0.7974437583644769, + 0.7643728397041523, + 0.7189142287080973, + 0.83904692963916, + 0.9243386033065545, + 0.8797699556202992, + 0.8969469030144339, + 0.9250097179046027, + 0.7477113140811578, + 0.6357522173808817, + 0.8175471724662196, + 0.8855529330020205, + 0.6997364736108438, + 0.8823969267235007, + 0.817045609344951, + 0.7419505591855569, + 0.8794308166569755, + 0.8887931607096844, + 0.738851349826469, + 0.8152333004741857, + 0.9235455297961477, + 0.9026667011806689, + 0.9331191415564366, + 0.9196379987144727, + 0.8433437041773781, + 0.7984063909756556, + 0.8128007000804912, + 0.8482722903125877, + 0.8685404854083174, + 0.861142123721286, + 0.8535531881077103, + 0.8325289177669367, + 0.9421985074756293, + 0.8806008674481653, + 0.8765012298603506, + 0.8779640089553297, + 0.6773847919724986, + 0.7810452475120673, + 0.8290512275947233, + 0.6339533754108663, + 0.8689845185786325, + 0.7481853077249645, + 0.8295591114975245, + 0.801049702636101, + 0.7742928054911312, + 0.6773722137752356, + 0.7884164249521001, + 0.6682761258886417, + 0.8441396173424516, + 0.9274303128802345, + 0.8791456151532769, + 0.771583939905926, + 0.9130100609269673, + 0.8731831499388231, + 0.910658489831639, + 0.8563070539523794, + 0.8573016332077674, + 0.65274387174566, + 0.8638331927222921, + 0.8497758834371015, + 0.8329115799050061, + 0.6572194029078189, + 0.8195548718391603, + 0.8677855010403971, + 0.8623589602658008, + 0.8546092020735304, + 0.7961363801762692, + 0.9729361196269747, + 0.9516584846289219, + 0.8538811072437807, + 0.9389678715246927, + 0.8739781266225991, + 0.8448337408942826, + 0.9446718072454847, + 0.9315259773917971, + 0.9588281928462408, + 0.9243358350009401, + 0.877911490144912, + 0.903282396486192, + 0.9257595838863256, + 0.9351564491440052, + 0.9593643795532506, + 0.9502444919209619, + 1.0, + 0.982490104129032, + 0.8162628161548388, + 0.6775067044945109, + 0.929829314051193, + 0.6538722161480972, + 0.9218684714940019, + 0.8379707650131566, + 0.7291376830788668, + 0.9425460437779226, + 0.7002545464125542, + 0.946761209170928, + 0.9141427474252299, + 0.9369176899261459, + 0.8624730623537658, + 0.9265989447562095, + 0.9213592271900758, + 0.8247391817565248, + 0.882026525308592, + 0.7962831395365011, + 0.8332790980559438, + 0.8409133494338179, + 0.8743140824176533, + 0.8725644955892752, + 0.8374802492040243, + 0.9068059760256538, + 0.9362484606531604, + 0.9671540130837433, + 0.8001031419755277, + 0.7308849294083829, + 0.9465830897298658, + 0.6851682023511902, + 0.8120790053417286, + 0.8536650473407811, + 0.9140871372532218, + 0.9131984470719455, + 0.7879599462377088, + 0.8728466016707221, + 0.8325895528986746, + 0.9374301623303616, + 0.9083062052072074, + 0.8308650222944322, + 0.8786005333797126, + 0.9470999429324176, + 0.9237007255073125, + 0.6530171983216725, + 0.8311363836890724, + 0.9309697414287027, + 0.8669205625308498, + 0.9405955634273823, + 0.8260542178617636, + 0.6929456430425569, + 0.8844179260235776, + 0.8907511869025826, + 0.8597314245671182, + 0.8053348093283405, + 0.826238967453972, + 0.8776480372756251, + 0.7448481973154464, + 0.8910876203297001, + 0.9404207298165709, + 0.9481903653307948, + 0.936759530266666, + 0.9218970874941583, + 0.919046937729402, + 0.530649891985453, + 0.5152288032295165, + 0.7459955021389909, + 0.8489861470303328, + 0.8655488392387604, + 0.6530402039510682, + 0.8133563682135746, + 0.7307627651571796, + 0.8242944173288633, + 0.9191006923448678, + 0.5869102209939062, + 0.6493225667044149, + 0.6794523297879133, + 0.792378154175809, + 0.785315026576677, + 0.741422247177057, + 0.7833744054747447, + 0.7378067497277313, + 0.6400990600526569, + 0.7170464816368248, + 0.7287916668115452, + 0.9357182121115717, + 0.5823450275093889, + 0.5869044726676252, + 0.9281006777859582, + 0.9191746454263776, + 0.8130326083527089 + ], + [ + 0.8090106985957923, + 0.5619266659107679, + 0.6525261741541339, + 0.7652132581277502, + 0.8657653057591065, + 0.7969369351309318, + 0.6102713340111549, + 0.7829775580462851, + 0.6376896200375307, + 0.766160222007784, + 0.6496790726643582, + 0.6601120218411025, + 0.7449996433760988, + 0.7159929065766836, + 0.7824992525841256, + 0.7445686413126892, + 0.655453885918854, + 0.8028800353648365, + 0.8551647088525925, + 0.7901517287038813, + 0.8649697009190699, + 0.7687318306438906, + 0.788517032098959, + 0.7787007559765996, + 0.5501618403006158, + 0.7747732708647823, + 0.7945845437114101, + 0.7574111119312072, + 0.7996138630596196, + 0.5575785088701167, + 0.7643659411306226, + 0.6692664508743156, + 0.7521131870390347, + 0.775343916734011, + 0.8617681032668797, + 0.8569956970574891, + 0.8709724510575649, + 0.48679216601573483, + 0.6181061044265275, + 0.8317614894846587, + 0.7029008774471346, + 0.6436486939781201, + 0.4904491760871291, + 0.816259151873754, + 0.8042637103081354, + 0.8280036921571045, + 0.9353283649269725, + 0.806628532698649, + 0.8519115369778935, + 0.8695365134072658, + 0.7963676928678753, + 0.7262917505949117, + 0.7691380441845661, + 0.7258462309428002, + 0.624088061738397, + 0.7118100456038386, + 0.8017338395598224, + 0.8477404038649118, + 0.6688172810353581, + 0.8376951433492503, + 0.6525685801110583, + 0.9013337401431453, + 0.6447883187122826, + 0.7799510372143539, + 0.7335141632503333, + 0.704682255481087, + 0.8455826855794653, + 0.9535807368023747, + 0.778384290224618, + 0.7718530007076485, + 0.9107804789375749, + 0.7087465163212945, + 0.7459880163224685, + 0.8227234006643573, + 0.844022651887156, + 0.8702580865065808, + 0.8633210906329685, + 0.76731683448203, + 0.7193898936540942, + 0.7899292131804061, + 0.7914307406401054, + 0.7289898152908363, + 0.7399655494016805, + 0.8829003340334692, + 0.7824430930412576, + 0.7716183187360451, + 0.8119226941789215, + 0.8025608329744378, + 0.784738220510175, + 0.7727327637468066, + 0.8238980967859892, + 0.9340181229855471, + 0.8709057074536622, + 0.9074264064444664, + 0.9071140763767587, + 0.7766519218511112, + 0.6421527071602288, + 0.8709395277292428, + 0.8857248061206028, + 0.741994192021745, + 0.9037295295250511, + 0.8513741524720794, + 0.737085523767083, + 0.9244952294805604, + 0.8963071809651095, + 0.7170335167280445, + 0.8546053714155535, + 0.9377955958434518, + 0.9003872745526968, + 0.9122151797715109, + 0.9571562912201074, + 0.794579487184652, + 0.7857436018464969, + 0.8248813958935104, + 0.8676633748223911, + 0.8782965775146199, + 0.9097399405369205, + 0.8590132476842246, + 0.7505910296541732, + 0.93398137699073, + 0.9022324196846288, + 0.8789657854056913, + 0.8957564512349548, + 0.6869494502015094, + 0.773093600177234, + 0.8080213412936009, + 0.6488978366904967, + 0.8698441249937952, + 0.7181398220928621, + 0.8202723861138896, + 0.7687815050564288, + 0.7630809731669934, + 0.6495305701808474, + 0.7663643962240583, + 0.6569270163490678, + 0.8671658890756166, + 0.9538093430939434, + 0.8311382295242726, + 0.7766128935970892, + 0.9007679231951423, + 0.9018030234135477, + 0.8865505042738244, + 0.8570410313142423, + 0.876813125896476, + 0.6776940309194391, + 0.8524674190124178, + 0.849075716642176, + 0.8423951006382243, + 0.6806368383602356, + 0.8611753672283073, + 0.9143642951728728, + 0.9144023584725771, + 0.8933220583948027, + 0.7918708087809004, + 0.94764045437121, + 0.9467229842863231, + 0.8603783161295411, + 0.9579766127309641, + 0.8894972978358525, + 0.8657511743656067, + 0.9568229333273873, + 0.9605814092843022, + 0.9413595725377392, + 0.9187992932673141, + 0.871242853170668, + 0.8877250249099806, + 0.9388459097829225, + 0.9444817090233112, + 0.9738840583508663, + 0.9355149442303808, + 0.982490104129032, + 1.0, + 0.7577338935784297, + 0.6908741367672591, + 0.9243056683064671, + 0.7096669291956572, + 0.9407198524842428, + 0.8488720977655139, + 0.7648570463103751, + 0.9405572881569647, + 0.7261371475503414, + 0.954634250552469, + 0.956623922812633, + 0.9231534107933239, + 0.8668778300978203, + 0.896633711664997, + 0.9039461686544052, + 0.805213736168761, + 0.8127437606618848, + 0.7966346593065549, + 0.8234119112108985, + 0.8084900171949141, + 0.8591292654056784, + 0.879246962603821, + 0.8310304926110043, + 0.858378199008052, + 0.9458667177186311, + 0.9576070222840094, + 0.7901525999824176, + 0.7710879506401803, + 0.9677735047939992, + 0.6656287366298016, + 0.8257028629999709, + 0.8412156473749577, + 0.9031263848122628, + 0.9248223822929881, + 0.7998289962179379, + 0.8580211154434768, + 0.8276168837454887, + 0.9352098039315649, + 0.9003994725336573, + 0.8451441088865199, + 0.90306604476997, + 0.9387962276577743, + 0.8859471273490466, + 0.6020356887031163, + 0.8044632712874138, + 0.911397933761004, + 0.8755782325247853, + 0.9371652748031516, + 0.7950012466801645, + 0.7237080814616781, + 0.891171288451417, + 0.9016065384532318, + 0.8584507103533701, + 0.7551306614109197, + 0.8213936804005781, + 0.904296566184851, + 0.7359613208143546, + 0.8773942091345845, + 0.9612567867416263, + 0.9139021293281476, + 0.9392597670149069, + 0.8942945357989674, + 0.9231131939890183, + 0.6194930318369131, + 0.5005442982323538, + 0.783767394216296, + 0.8893823082436396, + 0.8999887457116857, + 0.7289585884731382, + 0.8469480011797482, + 0.730017368725583, + 0.8068081916136496, + 0.8938530196726171, + 0.641613161434732, + 0.6720261676947935, + 0.7016304837472007, + 0.8369592955709926, + 0.8099360123469872, + 0.7634700490696845, + 0.7541524951316094, + 0.7538757410455107, + 0.6576569581878844, + 0.7687332189900044, + 0.714469879681234, + 0.9039087639665121, + 0.6270083403617231, + 0.6082835570428371, + 0.9652829721592529, + 0.8835406007547925, + 0.7926293024570676 + ], + [ + 0.6724133100016102, + 0.46754708502867615, + 0.6530918777935436, + 0.7285389771381885, + 0.682232737711827, + 0.6411395757135145, + 0.5813137389235786, + 0.7314317057305815, + 0.7738122088983627, + 0.6439921189532302, + 0.5374723394216568, + 0.5319509927329436, + 0.7185078359418553, + 0.5753621676073685, + 0.8291061117091955, + 0.7296185179968793, + 0.7691051912339244, + 0.6767869605668788, + 0.6944384996788157, + 0.6972790883222356, + 0.7604667926583804, + 0.5869742772450076, + 0.6429806430217427, + 0.689207847835944, + 0.6977483752592771, + 0.690629066993172, + 0.624484428661517, + 0.6576017577806035, + 0.6699396966310458, + 0.6156164311978735, + 0.7734708291050892, + 0.6700983099050332, + 0.5628801136657581, + 0.5361510990799353, + 0.7520236637620505, + 0.7417517681731703, + 0.649611586783888, + 0.3871886699708251, + 0.7281387863234041, + 0.7993963326421146, + 0.6537950660100617, + 0.7443347545883097, + 0.4428435211296147, + 0.6027375895167092, + 0.793438361775681, + 0.6523181259160942, + 0.7513716400043325, + 0.719085470796325, + 0.7233300466011972, + 0.6871890227958383, + 0.6597788237056923, + 0.7096074546538357, + 0.6740835147193637, + 0.6248897237784735, + 0.5491850662530151, + 0.6022022425161896, + 0.6782454238082314, + 0.7873765690606817, + 0.7426325032061236, + 0.5822734952323484, + 0.7408305862360406, + 0.7939204590893886, + 0.7508056342404482, + 0.7382531715978256, + 0.6365925716291253, + 0.7934474840008044, + 0.7767515613339369, + 0.7607496945051122, + 0.46884026029010767, + 0.5518252647872756, + 0.6347413136796748, + 0.6824176820612229, + 0.7498395133431055, + 0.8117024423123878, + 0.7438528118002677, + 0.8024242357317168, + 0.8085830637964185, + 0.6457233691655456, + 0.691949254573787, + 0.7508638341686947, + 0.5835071966005487, + 0.6785529477027552, + 0.5672592455066139, + 0.7909723905506076, + 0.7718457690651324, + 0.7365702844015228, + 0.7904423975457644, + 0.7930951127405422, + 0.6665512530802894, + 0.6705370569253164, + 0.7722539882823382, + 0.7040293938469322, + 0.6691895109731135, + 0.7575044555989335, + 0.7704520718289037, + 0.833054783649116, + 0.6681963088770607, + 0.7025686820332901, + 0.660287080111622, + 0.521221294060071, + 0.7084915879401255, + 0.8089514560419742, + 0.8411449252180941, + 0.7422748315001744, + 0.7471610005918022, + 0.6841145031920765, + 0.7182079442048619, + 0.7680044525686601, + 0.7986120969911157, + 0.7915797603936121, + 0.6870206492074674, + 0.8431672631072414, + 0.8101001286215259, + 0.7833789375157801, + 0.7774125395707803, + 0.7644832270091877, + 0.7103869661087431, + 0.757591184074972, + 0.8519357500413514, + 0.7402822657557363, + 0.7305378359866123, + 0.7675828966385455, + 0.7854095625275799, + 0.7404521391831603, + 0.8356170490843422, + 0.8368932560870572, + 0.5298674778455853, + 0.7026977044888264, + 0.7895364759146108, + 0.7020363096173305, + 0.8443292454910013, + 0.7704295202564129, + 0.7949284643223654, + 0.8165178156881342, + 0.6617354327867777, + 0.746962668739012, + 0.7653189476103782, + 0.728080048340826, + 0.5754777514995917, + 0.8108985403535742, + 0.7686540978899454, + 0.7826265427467811, + 0.8058012317154307, + 0.7431528514715103, + 0.6005837983653116, + 0.7588866581053252, + 0.6415475684073492, + 0.5136456234686568, + 0.45586771492105527, + 0.5618488409175462, + 0.7191927573271365, + 0.6689593775769083, + 0.7188716063692057, + 0.7819457950862412, + 0.7940865251370344, + 0.7787932445602207, + 0.6230989463294833, + 0.7923099376173657, + 0.7707530008697384, + 0.8011591101757244, + 0.7633983595629383, + 0.6927882154374276, + 0.8383979209644972, + 0.6803737625758075, + 0.7274154503142352, + 0.7409442769983003, + 0.6771799226444245, + 0.8276388807295424, + 0.7961776718622847, + 0.8625797689032662, + 0.8162628161548388, + 0.7577338935784297, + 1.0, + 0.7027736353056714, + 0.8143577001572352, + 0.4879789722773023, + 0.7581255479441112, + 0.560353016684685, + 0.6315885815635636, + 0.8221185659995736, + 0.7827194519577041, + 0.8042607542998993, + 0.6923830224824715, + 0.7959095108969315, + 0.6875753424736045, + 0.849770781228412, + 0.8124545258488338, + 0.8318677663812807, + 0.9125295686530586, + 0.7510537962417209, + 0.7720134481461743, + 0.7213793389668318, + 0.7692236162337023, + 0.7774793469619802, + 0.7109560303141016, + 0.738696745470224, + 0.815237467987536, + 0.8270238784829339, + 0.6552367119894636, + 0.6816772301279223, + 0.757729765367044, + 0.8006123961249936, + 0.8023234362231996, + 0.6792072328999786, + 0.6960615995969665, + 0.746969760613489, + 0.8047296799732698, + 0.8343564349376471, + 0.7023669625429154, + 0.7240687053526366, + 0.6375985118544115, + 0.6415482638783228, + 0.6616053059603194, + 0.8761504493501905, + 0.7865568174549052, + 0.7933268306989681, + 0.7841759891099681, + 0.8043240406774719, + 0.7066674955077417, + 0.7718857147105895, + 0.7284568877354892, + 0.4371729888024027, + 0.6922912902041252, + 0.7880233263103895, + 0.7717197018851959, + 0.8902653399880597, + 0.685442452348473, + 0.6419641789326965, + 0.6825351569588173, + 0.8211309526908357, + 0.7762556019745767, + 0.7930674326336485, + 0.809304973313108, + 0.8083771038150225, + 0.7410044998287788, + 0.38931946202752626, + 0.6151317600767235, + 0.602179626220275, + 0.7244276568432749, + 0.6466745059932834, + 0.47172172185626776, + 0.6129534726432976, + 0.6352620615005437, + 0.7808294453649954, + 0.6369368356129044, + 0.6227700493366986, + 0.6228194203431247, + 0.5718103967756245, + 0.5379023129221064, + 0.6513663135528199, + 0.5005621889168433, + 0.733047826655769, + 0.7289601436115394, + 0.7306141952236082, + 0.6383114701292882, + 0.8193368514196098, + 0.8182227068235237, + 0.5723191263799982, + 0.500225361656546, + 0.7618471215725674, + 0.7208798242905841, + 0.7398858831120594 + ], + [ + 0.6434413469732826, + 0.5109552587847258, + 0.6484959460157732, + 0.5919203426435053, + 0.626200306224115, + 0.6293463524191014, + 0.359208325641285, + 0.6840026137651132, + 0.5214602576146543, + 0.433501560199032, + 0.30468347342221597, + 0.7467846229708169, + 0.8537000028686192, + 0.5054557567227755, + 0.6867413721606191, + 0.6517929017168281, + 0.5567361451240933, + 0.6833093660835765, + 0.7101538585289124, + 0.6139387793455232, + 0.6915762976329133, + 0.5567588235244225, + 0.6681972139107838, + 0.5186569984729432, + 0.6413043106365381, + 0.7513410607893015, + 0.7669180487659285, + 0.7020268559617912, + 0.5436339946084995, + 0.5891681497905117, + 0.7522912601063224, + 0.5620979093352855, + 0.6071396813890456, + 0.5987774333002461, + 0.672991837908266, + 0.7095245335363274, + 0.6380253231525699, + 0.5805253388611431, + 0.760535507938967, + 0.7344035246532895, + 0.8145737583287002, + 0.9180244328311032, + 0.653420984136413, + 0.6057469088809083, + 0.7421813547900101, + 0.5225401065295139, + 0.6736624467797762, + 0.5479194705666676, + 0.7188735055678411, + 0.6361068601422876, + 0.5686030632860563, + 0.7399412825848495, + 0.5651080882689214, + 0.6149529541750461, + 0.5427971960246578, + 0.594719761966365, + 0.6463630110465814, + 0.8735091492132473, + 0.6724064470490839, + 0.6303271137213599, + 0.5153826730361687, + 0.8015518123098243, + 0.661323431797479, + 0.6460462055780348, + 0.6907626862058427, + 0.594721109160981, + 0.6768373778405281, + 0.7164143690415756, + 0.5341984778505753, + 0.5792704367512748, + 0.6072612753409359, + 0.5767210491413473, + 0.6962812986241612, + 0.774675869940459, + 0.7261787600926742, + 0.834614354965344, + 0.8340659378550799, + 0.8706012953488638, + 0.6625948762509675, + 0.8935376477898688, + 0.590015873351619, + 0.48611504866017435, + 0.6189285573010324, + 0.8671595151779865, + 0.7261197732458174, + 0.6757434725995043, + 0.73009698163638, + 0.6006514768687014, + 0.49995338552865504, + 0.7966274095473063, + 0.7845913868053513, + 0.6673571016591282, + 0.7395979339973532, + 0.8139866347808868, + 0.7461717320428509, + 0.7799643044236167, + 0.7106242384287373, + 0.6655416080663444, + 0.5423106731688175, + 0.5399024301851701, + 0.8032301892365975, + 0.7340877552278255, + 0.7233035288891975, + 0.6675280502076978, + 0.7790372883534932, + 0.4372518443180795, + 0.6531046158165845, + 0.6643234137721724, + 0.7073719054736987, + 0.7990090394038397, + 0.6970432983003553, + 0.5686315572523667, + 0.7953581977817864, + 0.8341544818021616, + 0.823141656026131, + 0.8049231504565789, + 0.7513292739932453, + 0.766004352547614, + 0.5678292206524507, + 0.7434569054608988, + 0.8513258963166545, + 0.8187499904506784, + 0.7345499384103099, + 0.5803699207416915, + 0.7726056923623948, + 0.6204820955732493, + 0.40371021476706886, + 0.7988926584482176, + 0.6981084078805793, + 0.8771747588923975, + 0.6167713980102747, + 0.5798565748594139, + 0.4347124964835096, + 0.5446453759263968, + 0.582914761775202, + 0.7385219584367195, + 0.6796470750657797, + 0.6829565279814139, + 0.5828309040210995, + 0.7602915744298006, + 0.7803115102575517, + 0.7517886248953957, + 0.800469177753191, + 0.6575182281589729, + 0.5722699507598339, + 0.673401252754298, + 0.7491055494382459, + 0.5221258317026467, + 0.3625197244133902, + 0.6696320756594271, + 0.7281748181075512, + 0.6623854821469214, + 0.7660987297377545, + 0.6296712032415039, + 0.6901416631416858, + 0.7831842614974699, + 0.5439446565299633, + 0.6643721034666732, + 0.5426348214022888, + 0.7292004788769765, + 0.6927892455203788, + 0.6315809539987927, + 0.669416619363973, + 0.6735812660512231, + 0.7798354407742076, + 0.7797414328395615, + 0.7012993197900245, + 0.709930725222638, + 0.745265137397085, + 0.7714479868898865, + 0.6775067044945109, + 0.6908741367672591, + 0.7027736353056714, + 1.0, + 0.8333339706230128, + 0.41785319971689006, + 0.6532094334888909, + 0.6908947696007764, + 0.565997300941028, + 0.6825187648982913, + 0.6936610052675926, + 0.7926578395326324, + 0.6769109552039784, + 0.788008043548075, + 0.715662080720833, + 0.7445682948411206, + 0.7318291653657792, + 0.7516582064838295, + 0.6769298721954452, + 0.7939395268804594, + 0.8070986782082926, + 0.8082440568457786, + 0.8418447521711077, + 0.8423207365195242, + 0.7642245661021834, + 0.584357630622935, + 0.7139733752524664, + 0.7018979125647702, + 0.8188152349174973, + 0.819464509243947, + 0.6630837182534252, + 0.6075558508603903, + 0.8079203884801345, + 0.7459213156141011, + 0.6932069540743103, + 0.8225541074413375, + 0.9371244276854087, + 0.8280324638516586, + 0.48764178364703653, + 0.7990466569115335, + 0.5653262876120526, + 0.6253303009051192, + 0.7366591632636887, + 0.7115941295684194, + 0.718895934260368, + 0.8135050583401128, + 0.7311249420067867, + 0.7160310459851992, + 0.7110684206250503, + 0.8279834665915075, + 0.8162381028497185, + 0.4366262843660902, + 0.7872346753739162, + 0.7524066371510004, + 0.6249213642648589, + 0.7705362000545798, + 0.7785272730876331, + 0.735611529903051, + 0.3327443223814888, + 0.7001097461174025, + 0.6877640801859101, + 0.749932962354514, + 0.8184429593903909, + 0.7368941671351076, + 0.751474368865826, + 0.6671397870622725, + 0.8431307252250445, + 0.683483715975312, + 0.782260992897808, + 0.7995279553327861, + 0.4072522328923535, + 0.8270606684274114, + 0.8347948837306322, + 0.7238844418585202, + 0.5490233523351614, + 0.5799996277618188, + 0.42258702742902776, + 0.5236018191995087, + 0.4452200111397425, + 0.7554830193515333, + 0.4848111644774753, + 0.6069465161253695, + 0.8257769357813185, + 0.7200942516861135, + 0.684740009447049, + 0.8152173876181263, + 0.8040310374744561, + 0.6551904605059286, + 0.27221545504578964, + 0.6970058857119273, + 0.6744951135276583, + 0.5639390793980797 + ], + [ + 0.7931606701040569, + 0.5386777276897651, + 0.6736178262787863, + 0.7456080409156147, + 0.8004960185696692, + 0.7910553836580771, + 0.5363770418300893, + 0.8163437537438413, + 0.6319992325042074, + 0.6602642217988487, + 0.5099923444271739, + 0.7274174172200043, + 0.8487635198406692, + 0.7298076003137695, + 0.8547830751323213, + 0.7650749985109951, + 0.6780452943330812, + 0.8076326527618433, + 0.8457701842402594, + 0.729506049508177, + 0.8942665503600231, + 0.7466418882782264, + 0.767526071250304, + 0.7050118315857625, + 0.6692946056977365, + 0.8032684022707135, + 0.8031498331284719, + 0.8046436260366092, + 0.7266340042879401, + 0.6084971057351313, + 0.8212008966763341, + 0.6339760547167987, + 0.7868052051654912, + 0.7494395337331647, + 0.8512572190610246, + 0.8546086651199254, + 0.8369326618064394, + 0.505140341110995, + 0.7426802800280219, + 0.8672083150274319, + 0.7706575977782443, + 0.7566879735973808, + 0.5715622040492434, + 0.8528020142464837, + 0.8542867063350212, + 0.7166492739593706, + 0.9001230737324222, + 0.706202672442251, + 0.8810714862214154, + 0.8669792156435113, + 0.8405248830265308, + 0.8213924315843829, + 0.7586537145493499, + 0.7275457973834523, + 0.6350013152601218, + 0.7089813957498055, + 0.7921411909280309, + 0.9255482616134173, + 0.6672108314831527, + 0.8563151164952791, + 0.6802059675225235, + 0.9452751130683616, + 0.7093045869133996, + 0.8083068877941838, + 0.7419236434719189, + 0.6600920370696828, + 0.8476392784754113, + 0.91429780916332, + 0.6975055113107447, + 0.7002071866858758, + 0.7947867200952834, + 0.700083527770855, + 0.7835110098104232, + 0.8811883805484004, + 0.8916532070177833, + 0.9451903016275062, + 0.9327316534433093, + 0.862649702975762, + 0.7453666309716532, + 0.9162755164987249, + 0.7350745032580378, + 0.6758719338657787, + 0.7775758142964851, + 0.9763154831723749, + 0.8377874567477376, + 0.7914539599951106, + 0.8492622894167071, + 0.729292175358529, + 0.6970396415537553, + 0.7796745445166942, + 0.8957030538302048, + 0.8688886904121599, + 0.8325820044762181, + 0.9319091144068177, + 0.9080474612101956, + 0.8503169146560775, + 0.7503719998708974, + 0.8162038382720505, + 0.7994356397410484, + 0.6861921116599949, + 0.8970138452216112, + 0.8759295825990675, + 0.7970767330743926, + 0.8641112551609381, + 0.9203748608511565, + 0.6428762131814418, + 0.8016651984649891, + 0.8831577540966287, + 0.8708879513676995, + 0.9317848385778877, + 0.9207877459152248, + 0.7934830832790157, + 0.8721581427376827, + 0.9134188165797343, + 0.9447570682072174, + 0.9135093971527743, + 0.9078593553574816, + 0.9139397201815906, + 0.7765665409972802, + 0.9524967576637982, + 0.9206846627181909, + 0.9582986269756422, + 0.8903990823184377, + 0.7726342767400922, + 0.8306272133116972, + 0.8104433043962774, + 0.5839483659852368, + 0.9284883112985663, + 0.7337267881604856, + 0.9411842720247247, + 0.7979435207374682, + 0.7370455831115817, + 0.6247100009578029, + 0.7420664719650798, + 0.6478180947433212, + 0.8921157527923221, + 0.924966777431233, + 0.8748777199910268, + 0.7651681699521801, + 0.9398940673075368, + 0.9434089475507182, + 0.9248835082600255, + 0.9039886851484524, + 0.8425187063839825, + 0.6390990524725063, + 0.8436767247023846, + 0.8761054231071452, + 0.7730656575790537, + 0.5920244118833012, + 0.8469187456985129, + 0.9137932392989071, + 0.8874612615199121, + 0.8934240002842223, + 0.7772884003481083, + 0.934399555387464, + 0.9554595756233563, + 0.8143644306155066, + 0.9053115545432684, + 0.8446719207718891, + 0.9109104186854768, + 0.9275318081601832, + 0.909484116500785, + 0.912520843386043, + 0.8860549559291068, + 0.9194233450375814, + 0.9614317831342941, + 0.923883325221143, + 0.9388230074686125, + 0.958285564042908, + 0.9534536360172557, + 0.929829314051193, + 0.9243056683064671, + 0.8143577001572352, + 0.8333339706230128, + 1.0, + 0.6401524761304591, + 0.9187947705862476, + 0.8139181620120345, + 0.7319209670906437, + 0.9414378363701816, + 0.8060905078201491, + 0.9759304721002471, + 0.9121538966657229, + 0.954810264717404, + 0.859623662060716, + 0.9331398236438557, + 0.9595917765394435, + 0.8974930878645433, + 0.8413803946649112, + 0.9025219167722375, + 0.9356763872449642, + 0.9187665995461101, + 0.9723426384341067, + 0.9528499639490798, + 0.8942966426769833, + 0.8028933294227565, + 0.9012068942351484, + 0.951001420643888, + 0.8737405547481533, + 0.8559055781168208, + 0.8986136565022885, + 0.7554888824054868, + 0.8917609174997145, + 0.8836503630373272, + 0.918078450220665, + 0.9603057453174911, + 0.8919409734280787, + 0.9023614589198365, + 0.7251144514411976, + 0.9543534734366165, + 0.8430477955047394, + 0.8310322458147436, + 0.8851980058337342, + 0.9057621085365145, + 0.8855253006956506, + 0.7748247772959699, + 0.8290334648215314, + 0.9409024339240849, + 0.8654612402085624, + 0.9791451738351266, + 0.8199955306756173, + 0.6953057301152163, + 0.9315329761660416, + 0.9329537164119602, + 0.8609800827070146, + 0.8714099370798366, + 0.8693070677477065, + 0.8840031684288201, + 0.6351547243098695, + 0.9050911455419755, + 0.9267365770766132, + 0.9355358909104277, + 0.9732806582843836, + 0.9160256915305911, + 0.9258965453431978, + 0.6284468577822093, + 0.7227758056994646, + 0.7797453255040239, + 0.9200705309107621, + 0.947334131135234, + 0.6666203219254473, + 0.8867310257626448, + 0.7932433834523117, + 0.8124059957348799, + 0.8617139515871568, + 0.72383628802647, + 0.5792034939196611, + 0.7244508317730348, + 0.7244005341491475, + 0.7622279532577613, + 0.7237790157050652, + 0.719701642318466, + 0.8035252069224739, + 0.6528590185538127, + 0.7255941073602128, + 0.8398643688130439, + 0.9299881554362406, + 0.7195223878734132, + 0.5074015781486696, + 0.9133237026838804, + 0.8760212481660491, + 0.7347160169198043 + ], + [ + 0.5053857531245801, + 0.1329801406009738, + 0.11731623430487745, + 0.4596430313701929, + 0.6847265231731406, + 0.37871173377138173, + 0.17556758321520102, + 0.5709724209466687, + 0.3891322811903589, + 0.3791803772623984, + 0.3749505991115018, + 0.35824697487939444, + 0.3347155577979912, + 0.5805505970497058, + 0.491301139206655, + 0.583130560329173, + 0.4574335392618791, + 0.3644930929211729, + 0.6232847282762498, + 0.2790766941791143, + 0.529643528420971, + 0.6596910613378139, + 0.4203362618900906, + 0.41779172543676946, + 0.4493063901207001, + 0.5517746528786889, + 0.4507307363554109, + 0.3888242030445242, + 0.5073344394473324, + 0.40713875741276895, + 0.561457620809137, + 0.4446921808912793, + 0.5308954322868165, + 0.6166014455353197, + 0.39146818275286166, + 0.6900890619994416, + 0.5897850995651335, + 0.5691211906918638, + 0.4751855144897058, + 0.7486404599741942, + 0.40106784808447976, + 0.3684152119140595, + 0.6330122063070683, + 0.503950953957487, + 0.4212151170371124, + 0.4313703119509745, + 0.7267439992820642, + 0.4213883455062177, + 0.47432398713665297, + 0.8017273525481302, + 0.4817459505089791, + 0.39617769834884164, + 0.6889635651694793, + 0.5713152113118216, + 0.6807997638942853, + 0.628657755556031, + 0.6512463997264584, + 0.7016749216370376, + 0.41912526855965243, + 0.5600718190993368, + 0.533219918375419, + 0.6257453901171938, + 0.4472088981723428, + 0.6831769783966885, + 0.26659220841987163, + 0.44995109966216734, + 0.44120331552482894, + 0.5172799844393312, + 0.4503088492553699, + 0.525783532611122, + 0.5766964918135699, + 0.2857219774778603, + 0.3003124561996039, + 0.6337180544184626, + 0.4637745378211865, + 0.5468265775010223, + 0.5194187194991672, + 0.5527329043945401, + 0.43824418173770274, + 0.546710898634544, + 0.48463352267084564, + 0.5737587574719023, + 0.4973422624560509, + 0.63856959041822, + 0.5490926536342885, + 0.5201494992132863, + 0.4449364977193389, + 0.4847494441718363, + 0.5920811769257345, + 0.4711381952408156, + 0.4504994463935757, + 0.5144261616823665, + 0.45537271393158174, + 0.5550320446334848, + 0.4906812600908791, + 0.6356953652280067, + 0.3664819577065715, + 0.7056835349718223, + 0.47053883610850056, + 0.3740999670057338, + 0.5257175765421379, + 0.6858059544441022, + 0.5322246147512164, + 0.7075808831807151, + 0.5061774280283899, + 0.3202337095210308, + 0.5167176576610056, + 0.6512013001949096, + 0.6768527661724424, + 0.5720761102021856, + 0.7458420823823078, + 0.4825808633259183, + 0.44260842331108524, + 0.490146237450593, + 0.6590697261736691, + 0.49772177587342803, + 0.7481134762352719, + 0.4956688770841924, + 0.3588330222325533, + 0.5626170491852995, + 0.5681199074209969, + 0.5761760793043537, + 0.6558015161500033, + 0.56557211485706, + 0.5266262200845757, + 0.5726698901093091, + 0.517861925445881, + 0.5273871303642839, + 0.36225243431340026, + 0.5839814521716747, + 0.4749953240273504, + 0.5650536998269662, + 0.4394315065384516, + 0.5657978648274742, + 0.20563958979756441, + 0.6857796207129702, + 0.7004883910966682, + 0.3622121299630181, + 0.753429353717911, + 0.6446451205064777, + 0.6947020118412462, + 0.547622533898748, + 0.6631763005193948, + 0.5947219897062342, + 0.4238843371511068, + 0.41723336999507, + 0.5303730575039314, + 0.7282862182773869, + 0.7142202193577819, + 0.6072632146260657, + 0.6973415606261242, + 0.7875883052025892, + 0.68172685814269, + 0.4901916738832393, + 0.5615418651176801, + 0.6959843502710724, + 0.7989441737139965, + 0.6645111835427867, + 0.6521364296323878, + 0.6478549421311514, + 0.6444577215334721, + 0.7946161958153491, + 0.541056555665057, + 0.5811458957519042, + 0.49045025608197707, + 0.5469634494183149, + 0.6688860175658776, + 0.6716231322127516, + 0.7180727183479538, + 0.5884200483150162, + 0.6538722161480972, + 0.7096669291956572, + 0.4879789722773023, + 0.41785319971689006, + 0.6401524761304591, + 1.0, + 0.7863689858202814, + 0.5335775202898595, + 0.4748789989216822, + 0.7313089930710985, + 0.5156943467903884, + 0.656864551784591, + 0.7480721679539752, + 0.5921480736237679, + 0.5736967783740242, + 0.49233765210574987, + 0.5945035511266688, + 0.46841790982829146, + 0.5104789949314177, + 0.43143946677554185, + 0.539209846140039, + 0.4259016851922017, + 0.5560293331081676, + 0.5905370743780607, + 0.6915993162967912, + 0.4926400855640355, + 0.6030828713532904, + 0.6461648453454805, + 0.5209302010047933, + 0.635842352867517, + 0.7324944262908091, + 0.5030471376533981, + 0.6923902565636528, + 0.6987363379235978, + 0.5443817068499024, + 0.6054176106881909, + 0.46206107532625124, + 0.4631153619840642, + 0.6175893787853367, + 0.6528685231382418, + 0.6184467315563055, + 0.7640912430535087, + 0.6881179839862437, + 0.6672520021379406, + 0.47812152055267454, + 0.3606786212160536, + 0.4269819135918891, + 0.6232859520494015, + 0.6553016358829069, + 0.6437186499671167, + 0.3892260972191043, + 0.8688775752835983, + 0.6119996694998606, + 0.7476697653800938, + 0.6896512487667473, + 0.49244770126962406, + 0.5575440524229236, + 0.6822188045200888, + 0.5083470697781545, + 0.49675622957730425, + 0.6962229269731519, + 0.5026838931448814, + 0.6006704848623002, + 0.5368354741241965, + 0.5348930297686444, + 0.6102169926001896, + 0.42004356393729403, + 0.7946334530318425, + 0.7666086614473198, + 0.6361730721372468, + 0.562238529206649, + 0.6591916288301702, + 0.34323728136118226, + 0.5746549493957192, + 0.5843742048048902, + 0.6939664916305686, + 0.44203311217688285, + 0.8179369678676108, + 0.8931433961321067, + 0.4800073159503863, + 0.7503027472373842, + 0.5154455692415646, + 0.39903690073985065, + 0.34601939084478356, + 0.5733478444474336, + 0.481810271382361, + 0.6138488080184221, + 0.6456733690355854, + 0.419848005574613, + 0.6892483061036772, + 0.47653717416611463, + 0.5148731308165618 + ], + [ + 0.8127490320213707, + 0.4668552023304388, + 0.5286039522689029, + 0.6405238162525444, + 0.7869700352338476, + 0.6625986624638265, + 0.4724190067049677, + 0.8003499430318379, + 0.6390928029846579, + 0.6696080004386381, + 0.5734621741983195, + 0.6455308629068767, + 0.6733435033450842, + 0.7477940391801322, + 0.7565289465379843, + 0.7393918382226968, + 0.7087743885159996, + 0.7177174057718123, + 0.7983831796221383, + 0.6526923203241995, + 0.8433310174009518, + 0.719659287535432, + 0.6742335643634211, + 0.6565896187321271, + 0.6420782049313486, + 0.7290137631076241, + 0.7132004230537247, + 0.7185194381614006, + 0.7066976007077145, + 0.5913149405040375, + 0.7772691944046229, + 0.6323307483423246, + 0.7168294954245173, + 0.7200496948626762, + 0.7161793009742615, + 0.8724753861056713, + 0.8517585372906076, + 0.4530392876191262, + 0.6859221852393893, + 0.8811964774315588, + 0.6288202338700655, + 0.5600431792323312, + 0.4535684932601463, + 0.7122216066934415, + 0.6894979597717342, + 0.7397705652661944, + 0.9493397955697817, + 0.696671314623671, + 0.7398152029013965, + 0.9411930455412206, + 0.7896973938635042, + 0.6795413413002485, + 0.745675809437576, + 0.7311852897857909, + 0.7187628170176668, + 0.7545434350430226, + 0.7944542245327302, + 0.8707912116906913, + 0.5584444441588406, + 0.8801036216436185, + 0.7012398898124694, + 0.882398882780371, + 0.6565788326528018, + 0.800964076751498, + 0.591932764847441, + 0.5720125147979247, + 0.7654711518555484, + 0.8621708774065983, + 0.6998185255108474, + 0.7491702512682716, + 0.822522477285213, + 0.6117379868854629, + 0.7136306633762418, + 0.8770184442165988, + 0.7978774223446035, + 0.827728137733445, + 0.8178191027301169, + 0.7069152594659214, + 0.6959905726136817, + 0.823430511423745, + 0.7052992142862382, + 0.6374322910771949, + 0.7988892999501596, + 0.8911109479728124, + 0.8324477560000573, + 0.7920082590267087, + 0.7859984715619133, + 0.6777454707096583, + 0.6915144412046251, + 0.6777519490101164, + 0.7610720718070438, + 0.8091153828971674, + 0.7430541813113251, + 0.8502885849831101, + 0.8444214645851827, + 0.811913098748716, + 0.6912451762578752, + 0.8297340451798091, + 0.7694659140813617, + 0.6549734929866817, + 0.8294313308893144, + 0.8645968193269358, + 0.7665929989773226, + 0.8776895596369947, + 0.8517400046301705, + 0.5849477935761553, + 0.7576467413157266, + 0.8875625126392849, + 0.8696829717632792, + 0.8693710084107527, + 0.9777226172173887, + 0.7459423953423165, + 0.8053987590552137, + 0.8030358771606033, + 0.8996749112512118, + 0.8128557526707397, + 0.9506536370549276, + 0.8179144320373136, + 0.7287044652679033, + 0.8699410375755108, + 0.8656623111007279, + 0.8990707224397888, + 0.918310572588522, + 0.7574662009665745, + 0.7698285483777787, + 0.8293666399531826, + 0.5653723149387153, + 0.7936838085411702, + 0.6204746683456496, + 0.7837173387577664, + 0.7388941117060135, + 0.7162850427832704, + 0.6441154402984128, + 0.7324728042183513, + 0.5264937997122021, + 0.9000023447134062, + 0.9579163853407209, + 0.7221014575446177, + 0.85983925479365, + 0.8947006517707301, + 0.9006025105456991, + 0.8582270536126169, + 0.8625627889246126, + 0.8649805468360132, + 0.5460423222877115, + 0.7240596358623577, + 0.7863876064398964, + 0.816769159209903, + 0.6937364489553606, + 0.8880438004395285, + 0.9351217800206842, + 0.9491148360154786, + 0.913802388138282, + 0.7698201357126654, + 0.85849010456879, + 0.9299366149608882, + 0.9399552301019483, + 0.9198899574554215, + 0.9112542544770719, + 0.9151818034404161, + 0.9427902537979264, + 0.9618187404661261, + 0.8851108101110703, + 0.890551014421624, + 0.8539662246370472, + 0.877172452145966, + 0.9456449698643277, + 0.9279234872161173, + 0.9447816055457261, + 0.9106928171538774, + 0.9218684714940019, + 0.9407198524842428, + 0.7581255479441112, + 0.6532094334888909, + 0.9187947705862476, + 0.7863689858202814, + 1.0, + 0.7729122143036615, + 0.768190146521397, + 0.9687773542486512, + 0.7763501898642955, + 0.9472266857464103, + 0.9666772831450526, + 0.8955598109774838, + 0.8084007470452487, + 0.840640132541794, + 0.8684891933367457, + 0.8320137348945958, + 0.7852964952613045, + 0.8279076815879322, + 0.8639567156798725, + 0.7966755035607052, + 0.8463883867626434, + 0.899302949740125, + 0.880509045836084, + 0.8086383621460986, + 0.8765716706384991, + 0.9610000012388589, + 0.7832840554383259, + 0.7636952530428658, + 0.9459086107686366, + 0.7599464183784247, + 0.8841354381502804, + 0.8673662681743567, + 0.8927690120643168, + 0.8724920079148358, + 0.754352735888338, + 0.8079093830635182, + 0.7335763731865598, + 0.8970868190954123, + 0.82567172559794, + 0.8876895793012007, + 0.9140551882658975, + 0.9050389057647762, + 0.8208435261582164, + 0.5798767593207733, + 0.7720482439169705, + 0.9378132169653116, + 0.8996879679148577, + 0.9131362172891307, + 0.7334144238321038, + 0.8078577512363855, + 0.8653383318662625, + 0.9086046805540625, + 0.9192850133613926, + 0.7383507051271756, + 0.8250450854356158, + 0.8693429047395183, + 0.7203805432687089, + 0.8825983383243486, + 0.9615536167517702, + 0.8691117889731674, + 0.9170413444722827, + 0.8567236136299626, + 0.8572120847418284, + 0.5997947308091158, + 0.5463847294533809, + 0.8406920513099807, + 0.916066999062374, + 0.9077623328429769, + 0.7035188809843619, + 0.8403353767528253, + 0.6681306294025989, + 0.774799867227089, + 0.8368726005256912, + 0.7544376867217378, + 0.6197608682674904, + 0.8247815029149287, + 0.8884763181163504, + 0.7354473818373326, + 0.8481359115542376, + 0.6500707850526748, + 0.64521530879503, + 0.514749807398755, + 0.6677445904546802, + 0.7292356064876121, + 0.8632380968948615, + 0.6981123508044883, + 0.5203870454249996, + 0.9385204599965178, + 0.7829897870377451, + 0.7523584941085196 + ], + [ + 0.5762954659502385, + 0.4753892993115896, + 0.627228383667276, + 0.7322642123102486, + 0.7401183574417947, + 0.6952836642452372, + 0.45498444300832386, + 0.6072725591630168, + 0.3609098983892239, + 0.6787424619773205, + 0.5031586734155277, + 0.6212744573914528, + 0.6531407088638228, + 0.583806462164161, + 0.6963533674566422, + 0.5317071795562696, + 0.3959117999047964, + 0.645336733554615, + 0.6890411568436297, + 0.7222185337857479, + 0.7322936954896163, + 0.6479665461805755, + 0.8064416637011307, + 0.6221232687669356, + 0.37498671881534335, + 0.6582522256323785, + 0.8288349438876799, + 0.7313455202234513, + 0.5810918567612549, + 0.4209124215080878, + 0.5689182016797724, + 0.5298852245612645, + 0.6992091569565847, + 0.6348214998384066, + 0.8060235764497572, + 0.6637390991736982, + 0.7513038454808948, + 0.4690076061200568, + 0.42706767023760156, + 0.6996288788806656, + 0.6682668440673005, + 0.5907139724406791, + 0.4090256533286148, + 0.8123488273598108, + 0.7830270860288, + 0.7829635856599746, + 0.7834221805110129, + 0.6895084297996803, + 0.8342556402440711, + 0.8086747011746231, + 0.660889002182156, + 0.6707600151710007, + 0.4921770742778179, + 0.5250612511126391, + 0.3531485866494417, + 0.47362998557197666, + 0.5762566254181944, + 0.7302574516047206, + 0.6916311575694837, + 0.7817841192197463, + 0.352815338402564, + 0.8551282669798874, + 0.42175648304743235, + 0.5856977086210438, + 0.7599242907379438, + 0.5746691837049908, + 0.7345096112637826, + 0.8675774683606122, + 0.6069926568639017, + 0.5645569003827934, + 0.7379381857559612, + 0.6174839257397151, + 0.661929597441292, + 0.6304242295724699, + 0.780122760124008, + 0.8540198836417505, + 0.8493784411664832, + 0.7447763187602244, + 0.5165136144198523, + 0.7809322309511187, + 0.5774165211742758, + 0.5694423380233701, + 0.6786209752316976, + 0.8386937760264372, + 0.6561363848387114, + 0.6036894905477926, + 0.6808643188664818, + 0.651635112768549, + 0.6482379366761702, + 0.6809646558952643, + 0.7614685851592708, + 0.7896071646838547, + 0.8714717270915157, + 0.7689882996281836, + 0.8314849400545193, + 0.604980536476231, + 0.5806936158358088, + 0.7491864575124363, + 0.7112098975918869, + 0.6161180694059297, + 0.8434056855773252, + 0.6489281999649216, + 0.6223587840431168, + 0.7537363755283273, + 0.796166335620262, + 0.5319337575090954, + 0.7449523754938042, + 0.7413268096614893, + 0.7648732277919934, + 0.8706593164239865, + 0.8299909823346983, + 0.706110405028942, + 0.6354501112034392, + 0.6551763128715856, + 0.7661160549662092, + 0.7989366152012737, + 0.7823517506915506, + 0.7501122945646457, + 0.6562101298954045, + 0.805752070942443, + 0.8240766530171992, + 0.816633922446248, + 0.7380434155108819, + 0.43533057407033204, + 0.6273209827265098, + 0.6491066032747158, + 0.6369598216366575, + 0.8046070332181606, + 0.6963996453246931, + 0.7513476867185157, + 0.6458699989484151, + 0.6425141439523047, + 0.43569083854075324, + 0.6490808252762766, + 0.5086109938769892, + 0.7060826084991154, + 0.7848644853952895, + 0.8274817483631084, + 0.8112443811945748, + 0.8615089397239928, + 0.7725432918347384, + 0.8337321912288218, + 0.8148074522327002, + 0.8123991311689582, + 0.5926955629816698, + 0.7597308562495592, + 0.8917521334307903, + 0.8867120920722549, + 0.7403533078104179, + 0.7797158876119639, + 0.7667831385699594, + 0.7686210204614965, + 0.7733156020642684, + 0.5341937732335358, + 0.8331300130457816, + 0.8760357782352477, + 0.7856106367742672, + 0.7915484207984064, + 0.615429054882058, + 0.7055363142640656, + 0.81124974838562, + 0.8219245671925959, + 0.7612009487262286, + 0.8122875074387118, + 0.8187350553303651, + 0.8262604629463987, + 0.8300533783774031, + 0.8022627732341331, + 0.8324722479432448, + 0.8297993445872575, + 0.8379707650131566, + 0.8488720977655139, + 0.560353016684685, + 0.6908947696007764, + 0.8139181620120345, + 0.5335775202898595, + 0.7729122143036615, + 1.0, + 0.5862609296915902, + 0.7426438747310873, + 0.5694104912566025, + 0.8167645325317864, + 0.8445530959148583, + 0.8396513450975912, + 0.796223084199226, + 0.7713294411112073, + 0.7938599838490138, + 0.6895041521470019, + 0.6876561791963652, + 0.6708673910935928, + 0.8080469091626293, + 0.8337682952354706, + 0.8376463324081954, + 0.8178368681772071, + 0.8740500649408994, + 0.7024989206494668, + 0.7538960394029091, + 0.7743928029503272, + 0.9133850917886283, + 0.6648854777561305, + 0.8547586005556222, + 0.48016984326912476, + 0.6533740935008927, + 0.8877273069211356, + 0.8858001915220026, + 0.8417989111692235, + 0.7619792352444056, + 0.8291793215471597, + 0.6957485610137982, + 0.8595568308608895, + 0.8061161527789948, + 0.8262969046451237, + 0.8183678685001053, + 0.7514960371963979, + 0.9027033819413538, + 0.5710777588239331, + 0.7568278208373165, + 0.7921382850099599, + 0.7895122275705021, + 0.8670094330160965, + 0.8001172457807944, + 0.7316454686656282, + 0.8958772399538044, + 0.7875841950831621, + 0.7199374593114823, + 0.6303429179128608, + 0.9051395867071553, + 0.8079300519031696, + 0.3927768595119197, + 0.7141656858297527, + 0.8408258029826071, + 0.8408070625562224, + 0.8441198846464325, + 0.8494546365504582, + 0.8846817562154495, + 0.5730806087354257, + 0.5343043311739438, + 0.8067050106690383, + 0.8040833204284691, + 0.8529784270049562, + 0.4732117920721929, + 0.8995514529387001, + 0.8294280246168854, + 0.7206716128181592, + 0.8278720193831393, + 0.4341141012313527, + 0.3615776386981142, + 0.7210680108619707, + 0.7433805769642017, + 0.7432371005889713, + 0.7841205274616613, + 0.6781366952294133, + 0.7297515399084732, + 0.5264778139837846, + 0.666389600565251, + 0.5954796013776905, + 0.8776024933666904, + 0.5798425986996902, + 0.3520589405027835, + 0.8074894208087666, + 0.8331423370294136, + 0.625347335764448 + ], + [ + 0.9176451666706013, + 0.856948515935389, + 0.8132645667460842, + 0.5437098759993297, + 0.7689278739676866, + 0.7027966728301521, + 0.7915287453666572, + 0.9131803532587929, + 0.798022145136138, + 0.8383947910267967, + 0.8609984852618215, + 0.8235268559887424, + 0.7844423846473381, + 0.7095970930565308, + 0.8110705716876208, + 0.6930628314656516, + 0.8149836908745647, + 0.9111536257632165, + 0.7652285892566503, + 0.8139744901026751, + 0.9089994661172204, + 0.6709944077871307, + 0.8342880881253195, + 0.8526855059073396, + 0.748824203664714, + 0.8026981822064707, + 0.7620838786809264, + 0.868953392661316, + 0.7639142220371985, + 0.7642382598952748, + 0.8482535905369258, + 0.8593537310618902, + 0.8412383449666301, + 0.7444680312992575, + 0.7308377734586242, + 0.8625824799261368, + 0.9541943364680165, + 0.2212365283195546, + 0.790266596425848, + 0.7797915176052927, + 0.8184855908515625, + 0.5916558925696377, + 0.19843630090654943, + 0.5728853129132453, + 0.6436566175670683, + 0.8258456251676808, + 0.8535633786911248, + 0.8657750254893222, + 0.688558044924136, + 0.7144577694450308, + 0.8579217815886225, + 0.5971787104441194, + 0.6055495410660169, + 0.8682375364914319, + 0.7648815485059425, + 0.8087525323638386, + 0.8527337533913234, + 0.7844449317258888, + 0.31224478537350864, + 0.8822110485884026, + 0.7229019408850872, + 0.8091679337682193, + 0.7877866277087038, + 0.780546261623732, + 0.7407160238331273, + 0.5812962759487654, + 0.7694207349451992, + 0.7233509545996477, + 0.906216263987706, + 0.9526861444685275, + 0.8447668827955919, + 0.7139168554560112, + 0.8838142627888823, + 0.865425691783532, + 0.831257319392281, + 0.6850778363692245, + 0.6721894140468473, + 0.5550448980605039, + 0.8695651548490722, + 0.7404037886029302, + 0.8872089435760521, + 0.3101544051390212, + 0.8172435949871035, + 0.6262388646591577, + 0.921987405513888, + 0.959706452280122, + 0.8801413509334051, + 0.615225050112807, + 0.38714788769998837, + 0.6509824408630311, + 0.8403684969370683, + 0.7837390575277599, + 0.6375062523450182, + 0.8179754193841523, + 0.769860426382467, + 0.7481757150191541, + 0.8645186941083048, + 0.6817633074851399, + 0.8376124364305513, + 0.9357232992125388, + 0.8652943430174171, + 0.7919924055286931, + 0.7013931385091499, + 0.7023395205511526, + 0.882054903074296, + 0.7998498359463434, + 0.6866298617234193, + 0.8717863449478501, + 0.6566705108348405, + 0.7731761398321886, + 0.801253754787016, + 0.635708140070691, + 0.8875122799971036, + 0.8548665162236112, + 0.7792166413034248, + 0.7764879448811121, + 0.8505450780608069, + 0.8971834270357161, + 0.65644817109664, + 0.6849011725561662, + 0.7964614587861555, + 0.7233398837652842, + 0.9092762989798602, + 0.8232295201590437, + 0.6738787713131384, + 0.7151687846523392, + 0.2948050981680717, + 0.7773759991387484, + 0.5286948360555486, + 0.5981203096401403, + 0.6742604098495493, + 0.7270949622757191, + 0.6177545151061538, + 0.5529636480724682, + 0.7307826466031794, + 0.8950126289997862, + 0.8575692881646081, + 0.6283627914163273, + 0.6491001253167864, + 0.7777399807243726, + 0.7887582463020512, + 0.813987509130829, + 0.7946935905522855, + 0.9027950859054795, + 0.3935732872568539, + 0.7839423283301348, + 0.6450100732466663, + 0.5774165337868746, + 0.5623145433871546, + 0.853392979133371, + 0.8532315796016582, + 0.8627378551156613, + 0.8833266917412027, + 0.8068138056963016, + 0.6554458964849662, + 0.6946465717207038, + 0.6457537932435025, + 0.8247009695274262, + 0.8720027244994085, + 0.8824367418066892, + 0.8700567319437211, + 0.8017297672737734, + 0.8311103288646402, + 0.7707363197868806, + 0.859672032823453, + 0.7683124481990347, + 0.7966999313828901, + 0.7741452464675699, + 0.7851985093406577, + 0.7814007623480682, + 0.7291376830788668, + 0.7648570463103751, + 0.6315885815635636, + 0.565997300941028, + 0.7319209670906437, + 0.4748789989216822, + 0.768190146521397, + 0.5862609296915902, + 1.0, + 0.7560664544685928, + 0.7246464147105377, + 0.7783832927933211, + 0.7996646098786787, + 0.8170144104442956, + 0.8301671755271375, + 0.7967018621680555, + 0.772840501924782, + 0.8763616754310214, + 0.6119466642793593, + 0.8505315695594358, + 0.7925380703786573, + 0.7393431306555712, + 0.6974962403683125, + 0.7945945991169161, + 0.6318363753140249, + 0.662353912203604, + 0.8260582950415012, + 0.7620778242583172, + 0.6338590198683121, + 0.49401616511109525, + 0.8413361954603841, + 0.7311664098256693, + 0.760585301619969, + 0.5885026616602239, + 0.7649179843710593, + 0.7397328276032956, + 0.7199931184317447, + 0.6554043435004078, + 0.4230558781631799, + 0.6049131520778559, + 0.7180108316930203, + 0.7594183908787084, + 0.8160344046548497, + 0.799159815415376, + 0.6823996810485939, + 0.31202364664958027, + 0.6200387872462333, + 0.8040122187194719, + 0.8233779322372956, + 0.6850822533439302, + 0.6676210778464226, + 0.4888021023562979, + 0.6371528761532376, + 0.7644775458297756, + 0.6998227194890192, + 0.5372202354640214, + 0.6901429381775339, + 0.7256813494267333, + 0.8699228332479474, + 0.9002084234025327, + 0.7629144544160611, + 0.7706945307703683, + 0.8184198643444532, + 0.7027194471540257, + 0.7929029791818815, + 0.36764299850799936, + 0.3571089716712159, + 0.6958740820392345, + 0.7919220117602147, + 0.7829102145746804, + 0.8426197473608991, + 0.6056433266203632, + 0.6627444347120318, + 0.4791299711780477, + 0.6386178090305575, + 0.6902491604942986, + 0.8601633128418099, + 0.4426256162430846, + 0.5515125440813141, + 0.8095940137040787, + 0.6347123150006726, + 0.33780580579827063, + 0.6065042267827345, + 0.687161235001947, + 0.5817221297096131, + 0.8038917011194647, + 0.628060602653629, + 0.5951901262103809, + 0.8204831424696701, + 0.8212655333203149, + 0.738093922570729, + 0.6036072299160127 + ], + [ + 0.8279016476150004, + 0.5138174771149275, + 0.5892800927166139, + 0.7164557095576987, + 0.8075181993096511, + 0.7323757947936038, + 0.5526443921355935, + 0.8147483951750475, + 0.6725037020486698, + 0.6835555225849815, + 0.5864869263694009, + 0.6603719454974835, + 0.7356094133798184, + 0.7736079472910065, + 0.8297269578335748, + 0.7962015138444962, + 0.7457329811871677, + 0.7595434569839351, + 0.8313632042633367, + 0.6796550347577093, + 0.8749261289449798, + 0.7597211711104234, + 0.7037598938071246, + 0.699408640535831, + 0.6931080434977077, + 0.7877356418620137, + 0.7377137289756677, + 0.7481978377949622, + 0.7691377949737112, + 0.6245617711782486, + 0.8459051865613567, + 0.6875340813263766, + 0.7453739927575623, + 0.7541057784074043, + 0.7787308335159957, + 0.8839827551138144, + 0.8159029273536492, + 0.40986370533607325, + 0.7092976920179194, + 0.8748617778757646, + 0.656070865648444, + 0.6304116046566591, + 0.4456567090472311, + 0.7800833548015053, + 0.7770383380048401, + 0.7209433805965606, + 0.9507580494089242, + 0.7150131519021945, + 0.7701992404649824, + 0.8849826530203082, + 0.8071889343256052, + 0.738046029435576, + 0.7920635489399933, + 0.748220556068547, + 0.7170380327865152, + 0.7571552755269816, + 0.8188596782683287, + 0.8763708188345875, + 0.6127839376281417, + 0.8465060039831378, + 0.7416615396181064, + 0.8950149216496179, + 0.7268802228091834, + 0.8633152878551582, + 0.6110975790860778, + 0.6112613499293306, + 0.8254144248646947, + 0.8725640381609879, + 0.6829106034361445, + 0.7222550234685987, + 0.8023286049856251, + 0.6627887126246654, + 0.7580711840638974, + 0.8910451347766993, + 0.8042755798066995, + 0.8551883977855643, + 0.8504408701450371, + 0.7205106217855447, + 0.7121040193655447, + 0.8170885950833596, + 0.7026815330781401, + 0.6881421933139422, + 0.7412765767581169, + 0.911738864826194, + 0.8380195011309217, + 0.805427721161759, + 0.8213617387463725, + 0.7295042791914438, + 0.7140012228315814, + 0.723944250968438, + 0.8220145210193566, + 0.8178148058492607, + 0.7343348058239423, + 0.8649965056612857, + 0.854956191084772, + 0.8494600251378456, + 0.7052438571752849, + 0.8310549538797646, + 0.787440234611702, + 0.6466947296127162, + 0.8215456327220348, + 0.8925128725141365, + 0.806337168919382, + 0.8932214442294867, + 0.8756949592138601, + 0.6429304715458581, + 0.7758978440455947, + 0.8894130386737327, + 0.8911681717528558, + 0.8833787833082264, + 0.9307740644346871, + 0.8125069404875881, + 0.8442077892156523, + 0.8555746329382492, + 0.9241040663843105, + 0.8514335761064135, + 0.9121467116386078, + 0.8557588704026307, + 0.7928749344738781, + 0.8954553883776154, + 0.8590579515539638, + 0.8886614095638132, + 0.9097016971868305, + 0.78272853339447, + 0.8025545177493528, + 0.8278717434466338, + 0.5710155889451911, + 0.810962249483128, + 0.635717529137006, + 0.8122540942336889, + 0.8014501980813512, + 0.7649850004242408, + 0.6986178796671539, + 0.7799041826617994, + 0.5676511252906641, + 0.9228502729756739, + 0.9566910589717179, + 0.7644895243722382, + 0.794694951295289, + 0.9256396890007412, + 0.9405591801079252, + 0.8864693460663491, + 0.881921587265109, + 0.8558763693556156, + 0.5606248498911732, + 0.7763567418454445, + 0.8090934784098174, + 0.7745078710337369, + 0.6573881022583156, + 0.828264707545494, + 0.9205374847286433, + 0.9238547738242934, + 0.9086832566348179, + 0.7808939480307345, + 0.8980140056591054, + 0.9401607255613763, + 0.8813992553800944, + 0.9255681806880195, + 0.9181181683786594, + 0.9271740732958181, + 0.9319889463032982, + 0.9296276052029602, + 0.9107250305586814, + 0.8657574334531859, + 0.8724512614360589, + 0.8953182212194403, + 0.9069902364819135, + 0.9583992648943163, + 0.9658833908754848, + 0.9415762668924272, + 0.9425460437779226, + 0.9405572881569647, + 0.8221185659995736, + 0.6825187648982913, + 0.9414378363701816, + 0.7313089930710985, + 0.9687773542486512, + 0.7426438747310873, + 0.7560664544685928, + 1.0, + 0.8117553373015575, + 0.9572109600282699, + 0.9232334016635204, + 0.9187640680741875, + 0.808141055024021, + 0.9042187491930364, + 0.9159016426178626, + 0.8517627122725454, + 0.8509242585283706, + 0.8468995249599138, + 0.8668766785855087, + 0.8091794150358441, + 0.8740058621245599, + 0.8970842530244991, + 0.8489326947606258, + 0.8446379968487329, + 0.8910298133705622, + 0.9618118616514706, + 0.7672994383848539, + 0.7933363356290302, + 0.9186247154441046, + 0.7663560408349208, + 0.9071167555616989, + 0.8258633369637269, + 0.9003252436586631, + 0.8899795734615615, + 0.7984179992489424, + 0.8280954528255278, + 0.7542164854140612, + 0.911312923381302, + 0.8256333956718075, + 0.866290942443583, + 0.8778465034663366, + 0.9306951517250209, + 0.833853270952037, + 0.6748015641740026, + 0.7797927066376554, + 0.9473756477300975, + 0.8895624376588748, + 0.9287869705332128, + 0.7141901380536856, + 0.7228714149280715, + 0.833852659663527, + 0.9089623213487099, + 0.9150173239706778, + 0.8312117384162783, + 0.7928834137014074, + 0.8447409064601418, + 0.751388460157659, + 0.8913757118114332, + 0.9566967533145194, + 0.8826204593733943, + 0.933102172747047, + 0.868669159647708, + 0.8655330375946645, + 0.5092187708507185, + 0.6135971172527178, + 0.7790715802956139, + 0.9003424503325264, + 0.8874473452150959, + 0.6806143441786245, + 0.7939206347971817, + 0.6555229433920805, + 0.7847413565706232, + 0.8404799350782315, + 0.7680259148738483, + 0.6462186087477901, + 0.7675011797041593, + 0.8190449378720019, + 0.7179897339476807, + 0.7419556060283407, + 0.6896482781328875, + 0.7176057903723052, + 0.5833035353304955, + 0.7402164737145441, + 0.7985325897518771, + 0.9021293710390406, + 0.7078623672066484, + 0.5655524825603881, + 0.9381815993037627, + 0.8219890383958202, + 0.7995409151150784 + ], + [ + 0.7871871134859081, + 0.6266987320052175, + 0.5564159671287343, + 0.7153665746790178, + 0.8158628797196037, + 0.7768903027532675, + 0.6044659955804855, + 0.7089129117268969, + 0.7924795950919831, + 0.5879057394283975, + 0.5004730942860187, + 0.8165912844245582, + 0.7625754863098547, + 0.903029003333596, + 0.799761033808966, + 0.9403509945841092, + 0.7966113952093647, + 0.7409792205861638, + 0.88492759290758, + 0.6291062989471092, + 0.814706027646081, + 0.8152491701934, + 0.6192593401394645, + 0.7344039283632626, + 0.8678854861285888, + 0.8931718350670794, + 0.5298331166949094, + 0.6825310588806242, + 0.8297792931907659, + 0.9045399065148106, + 0.8701444195477912, + 0.739549184818791, + 0.7444459380767302, + 0.5803998167850176, + 0.6436006894720873, + 0.8968703883183881, + 0.7433347216277274, + 0.4841128340613944, + 0.8844174735259538, + 0.7668179889679558, + 0.6894738128969633, + 0.7180102765716505, + 0.45943692225510674, + 0.5886164257034935, + 0.6132805521524172, + 0.6252217309644303, + 0.7152301492990277, + 0.6774395803952957, + 0.6448311982622618, + 0.6759309696717564, + 0.7504349363129071, + 0.9104866097372759, + 0.8236704837427108, + 0.8684396529247183, + 0.8237133745603042, + 0.8603286851855027, + 0.8778800303857632, + 0.8200348035782182, + 0.657718391367447, + 0.7376989748710545, + 0.8539239119784263, + 0.8106202915867426, + 0.862211315265047, + 0.8774601722128011, + 0.5339845959232676, + 0.5755859817575236, + 0.8791477958547304, + 0.692750977776487, + 0.6099806708324086, + 0.7217190017292869, + 0.7498240625283387, + 0.8563940685395753, + 0.746947590641634, + 0.8369594873253673, + 0.8110957523048217, + 0.6824488245688058, + 0.6613447047803406, + 0.7956014716296606, + 0.7344856036692324, + 0.8326261493983614, + 0.7391822892006938, + 0.6690798278541092, + 0.6824888164669094, + 0.7762050857401437, + 0.8530495443385165, + 0.8002063728264326, + 0.8785000233215992, + 0.7788408778731336, + 0.6853380128065587, + 0.8527805001489249, + 0.7623160554061761, + 0.6177782865159716, + 0.5888521306420663, + 0.7710357854150884, + 0.7060727168562893, + 0.945128576751038, + 0.8208242096132473, + 0.8725154113923773, + 0.5768752488908657, + 0.6341061620850872, + 0.7433009490636489, + 0.9096519195807978, + 0.8518337498285262, + 0.863226841173763, + 0.7540420556488204, + 0.5346105883860031, + 0.8142327635508955, + 0.7122019266107968, + 0.8037725337183398, + 0.6575005693632676, + 0.7374633052533935, + 0.6832770247102568, + 0.7723020396461879, + 0.867840608042438, + 0.9014533559123701, + 0.8466134776490465, + 0.7842984833705111, + 0.8141740893779391, + 0.65069632336998, + 0.6745671387754183, + 0.7619196942293602, + 0.8145501564581195, + 0.8203729717540127, + 0.8144249708549803, + 0.7838734579364333, + 0.7643341998377225, + 0.6229599699104195, + 0.69391542472773, + 0.7026166519165279, + 0.6600379789083346, + 0.7640621614356122, + 0.7574732941018573, + 0.7077931100043664, + 0.7641150437404471, + 0.5017211823431084, + 0.8058439895422108, + 0.8529010838097135, + 0.6146253358630158, + 0.5278110236986134, + 0.7917006924589483, + 0.8827904203575827, + 0.7232169282891623, + 0.7747079929703008, + 0.8068760451910211, + 0.6620237002132872, + 0.6902129266115844, + 0.7056264729572246, + 0.5162159876316806, + 0.5384388159219652, + 0.6357412228536664, + 0.8009438756363302, + 0.7958315653393698, + 0.7669323266752206, + 0.694941796729022, + 0.7006502011658194, + 0.7236227843845479, + 0.5800624166868137, + 0.8304359925552169, + 0.791475579062195, + 0.8817509530610529, + 0.7810102760718192, + 0.7178128149720201, + 0.7459610340472024, + 0.5730242189892109, + 0.7098732806242058, + 0.7542980899188425, + 0.6601914632660004, + 0.8703949460343119, + 0.8260650182684401, + 0.8294939121437233, + 0.7002545464125542, + 0.7261371475503414, + 0.7827194519577041, + 0.6936610052675926, + 0.8060905078201491, + 0.5156943467903884, + 0.7763501898642955, + 0.5694104912566025, + 0.7246464147105377, + 0.8117553373015575, + 1.0, + 0.8252342798487612, + 0.7766118504454133, + 0.7304748876243227, + 0.6841572237854425, + 0.7595326408439318, + 0.8144202469285593, + 0.7966867564864194, + 0.6627078342210678, + 0.7800675767330681, + 0.7955194010597277, + 0.6573947258387126, + 0.794581814253376, + 0.7952914205389642, + 0.6866198366567506, + 0.5050387355599025, + 0.7390767405762418, + 0.756131830554555, + 0.6265905644891275, + 0.7848863133215157, + 0.741318917947672, + 0.8039252294205906, + 0.8401718652131036, + 0.5702752324425534, + 0.6809378807722691, + 0.7261479952927873, + 0.8298080409612526, + 0.7992940708961271, + 0.6412078764798493, + 0.6781539182167754, + 0.4939400625067877, + 0.6185861153452088, + 0.6396929678536364, + 0.7742130791219841, + 0.6774468639260669, + 0.699771524330911, + 0.751542241101478, + 0.7273419300145587, + 0.6510636634589643, + 0.7716158105919378, + 0.5436893234245697, + 0.44535435880506763, + 0.6517709705912825, + 0.7619823310896269, + 0.8537061889529824, + 0.7342545530634031, + 0.6544360357848785, + 0.5721846017667013, + 0.5877408929511541, + 0.7711945870770357, + 0.813802202235979, + 0.6670729451648918, + 0.831797825671745, + 0.7770319546220151, + 0.741653664150933, + 0.5148034295176168, + 0.6682440260490793, + 0.6258251340083434, + 0.8077459291058955, + 0.7516800166870105, + 0.6783654019213424, + 0.6583112510814391, + 0.5303960387264225, + 0.7459649260640232, + 0.5216107885810927, + 0.8551329090896247, + 0.5048440322799894, + 0.6803136448763292, + 0.5350415882593682, + 0.5263505480775538, + 0.5420179467257992, + 0.6297826381911654, + 0.8434468318532601, + 0.6864599717572997, + 0.799188180104926, + 0.7957164970483963, + 0.6865816992316358, + 0.7853526644709461, + 0.4854152549188973, + 0.8615417849716668, + 0.5997229753152622, + 0.6725713598148485 + ], + [ + 0.8278211615430003, + 0.5735374414416068, + 0.6683803469533868, + 0.7281544066635799, + 0.832042456132418, + 0.8090255958079596, + 0.5571503239886205, + 0.8066822071470394, + 0.6386499023492235, + 0.6696520101195933, + 0.5397390212419342, + 0.7315755032859105, + 0.8388321585324346, + 0.7761796851504922, + 0.8179874523282293, + 0.7756379443688868, + 0.7030864892683386, + 0.8013566384652727, + 0.8511560472005751, + 0.7578090916857001, + 0.8925507235336451, + 0.7335538340001512, + 0.7659141588874936, + 0.7282297510531631, + 0.6552952136329878, + 0.8113268003353651, + 0.813660960868255, + 0.7675852241669274, + 0.7590196377168784, + 0.6469528507705723, + 0.8348015739821262, + 0.6893743275437382, + 0.7700819291662668, + 0.7226055290320929, + 0.827643334640894, + 0.8755377550232325, + 0.865824698941042, + 0.46750820867710197, + 0.7276016074398028, + 0.8369284608867671, + 0.743147424463924, + 0.7184024025997036, + 0.5183992858185271, + 0.7995119140651976, + 0.8151036640374993, + 0.7566672632685555, + 0.9246956999185157, + 0.7329676137905299, + 0.832589617209918, + 0.8678876542046091, + 0.8030251185760201, + 0.7982608359189339, + 0.7473401365804032, + 0.7694304917698431, + 0.6723278651199716, + 0.7328141345966451, + 0.8138972427086577, + 0.9045210764203891, + 0.6699323947088319, + 0.8814485208584214, + 0.6702788282418871, + 0.9160844047800552, + 0.6879643432167067, + 0.8064457998513641, + 0.7040244341765942, + 0.6555030702065406, + 0.8531823243624285, + 0.9173131880808445, + 0.7685224873449499, + 0.7808584329660723, + 0.8613720025103506, + 0.7372884104572913, + 0.778804780295512, + 0.8743350314959231, + 0.8930837703898116, + 0.9013161246679222, + 0.9020898587571632, + 0.8195429229820635, + 0.7305636230671834, + 0.8730724016123601, + 0.7870012987958861, + 0.6717874682804094, + 0.7480117683002013, + 0.939535004380851, + 0.8503340833004117, + 0.8145984416162855, + 0.849888657611634, + 0.7418284710747026, + 0.6996233375283123, + 0.8013759337791092, + 0.8607556619428193, + 0.879593195758627, + 0.8613252442842257, + 0.9521089798562298, + 0.9097898091699669, + 0.835800815514067, + 0.7452714683689494, + 0.8462607268239049, + 0.8279460946904571, + 0.7312826118336918, + 0.9218716069700265, + 0.865150335982808, + 0.7690281218571485, + 0.9029364769968534, + 0.9397789288944522, + 0.6389107734916925, + 0.8386235000522042, + 0.8834562931552827, + 0.9048887926964898, + 0.9203478567327518, + 0.9557516665083094, + 0.7461140934440031, + 0.8596538980347107, + 0.9017722880139613, + 0.9343126808344417, + 0.8985593667940677, + 0.932985974274843, + 0.909655560084321, + 0.7556104514056889, + 0.926429064573724, + 0.9455261467750259, + 0.9302799805407667, + 0.9171718993985455, + 0.7344422927655809, + 0.7796779880004476, + 0.7846711402145091, + 0.5647284515983272, + 0.8998595382829168, + 0.7126935772537484, + 0.8920900061773552, + 0.7420345436005473, + 0.7179572225672892, + 0.5895631724511441, + 0.7079724467820872, + 0.6039525252440523, + 0.9083776488205176, + 0.96661865070794, + 0.8227663692389436, + 0.7775795005201179, + 0.9338814707309607, + 0.9371568000258816, + 0.9133980488716782, + 0.9067092808731189, + 0.8833021197986731, + 0.6087126967840564, + 0.8298469810888787, + 0.8852796267209022, + 0.7752589377236729, + 0.6146616348966172, + 0.891455109440724, + 0.9298975373442623, + 0.9172869854389378, + 0.9048081482195683, + 0.7702140150412916, + 0.9298344249346167, + 0.9507105279145511, + 0.8477913837745652, + 0.9278246418626045, + 0.868211386336678, + 0.9173324160162141, + 0.9574642235286278, + 0.9376226362274414, + 0.9198275807535877, + 0.921498308823488, + 0.9224082656207713, + 0.9495624822895031, + 0.9493252348644198, + 0.9426165217183232, + 0.9766267372214527, + 0.9587726672278466, + 0.946761209170928, + 0.954634250552469, + 0.8042607542998993, + 0.7926578395326324, + 0.9759304721002471, + 0.656864551784591, + 0.9472266857464103, + 0.8167645325317864, + 0.7783832927933211, + 0.9572109600282699, + 0.8252342798487612, + 1.0, + 0.9504173700247783, + 0.9560228593590168, + 0.873473963804116, + 0.9192520453520712, + 0.9344124179557531, + 0.877824596096662, + 0.8001222799716915, + 0.9011573595507092, + 0.9111524645495199, + 0.8810678664709858, + 0.9291113878066292, + 0.9633929432615138, + 0.8798359457498521, + 0.8437347935420727, + 0.904772436421017, + 0.9628325655368257, + 0.8454025526103658, + 0.8185086001029824, + 0.9340369596179817, + 0.7396328578050343, + 0.8915470147516693, + 0.8574571637397537, + 0.914808754873964, + 0.9517549733101903, + 0.877398354156745, + 0.8808106610360126, + 0.7273892554397345, + 0.9488454829177491, + 0.8470079863464539, + 0.8363759354393443, + 0.9165184216798128, + 0.9083358330748399, + 0.8784685345775869, + 0.7009575122267925, + 0.8284954371312062, + 0.9446092696209469, + 0.9019114167370881, + 0.9761650981418397, + 0.8192066422675511, + 0.7004237675559579, + 0.8995761335883594, + 0.9135638542121151, + 0.9008843333852661, + 0.8055011742622589, + 0.8641680554699326, + 0.8983242893997692, + 0.6918982397587501, + 0.9175148082386438, + 0.9581354996658449, + 0.9308283599174616, + 0.9819280377401253, + 0.9127936231397678, + 0.9314538130523119, + 0.5887582063363017, + 0.6472299480174803, + 0.7853913455359381, + 0.9142761812950511, + 0.9417422175322288, + 0.6862386873454924, + 0.8722083701662525, + 0.7705260491008317, + 0.8359925526297564, + 0.8575106332661877, + 0.701916425532091, + 0.6194381180555153, + 0.7174892844060027, + 0.7687224325342817, + 0.7803863804125943, + 0.7338259575898065, + 0.7302681778057369, + 0.8080461326344666, + 0.6293741029342979, + 0.7630902016882549, + 0.7905474317998004, + 0.917403180879854, + 0.663816848986487, + 0.5200357115711356, + 0.9556515787488254, + 0.8477237617239205, + 0.8228407116520663 + ], + [ + 0.8309440217036909, + 0.5488544304241505, + 0.5920109897243443, + 0.6725527538867264, + 0.8693508263658467, + 0.762123318850963, + 0.5534084832245715, + 0.8078919130435716, + 0.6130283236141285, + 0.7048979268459099, + 0.6080119429620301, + 0.7214526698493863, + 0.7142074292706255, + 0.8020169583750235, + 0.758023059142871, + 0.7409134754623103, + 0.6588884886961062, + 0.7656616336223977, + 0.8375563848448235, + 0.7114662083828113, + 0.8645741222953629, + 0.770428353198535, + 0.761656745169711, + 0.7261277077812304, + 0.5868063908696507, + 0.7844393532844631, + 0.7573160656234165, + 0.7486476715079565, + 0.7567695482226984, + 0.633160806879841, + 0.7600832101259016, + 0.66230213139564, + 0.8031198160681224, + 0.7444353547879397, + 0.7709137119870978, + 0.8911581305224349, + 0.9034718115704838, + 0.49950369119031746, + 0.6751586826059321, + 0.8357554009898007, + 0.715722075452938, + 0.6128414064676816, + 0.46347131228123356, + 0.7465480338750382, + 0.7213234951422224, + 0.7889180481084778, + 0.9376003145347498, + 0.7580737523283047, + 0.7853254078841634, + 0.9131495418141224, + 0.8075200002078882, + 0.7252938384740588, + 0.7427531037702607, + 0.7714828432055932, + 0.7035563906622511, + 0.7735861903542302, + 0.8244839992404771, + 0.8721343919286105, + 0.5726083636073043, + 0.9137892327700629, + 0.6522859886503066, + 0.8950437336380872, + 0.6401057878059982, + 0.7795785544091982, + 0.6807770844403881, + 0.610847133611099, + 0.8252422217975403, + 0.9034733334080873, + 0.7975662290396645, + 0.8161272542528131, + 0.8879131961632095, + 0.6905562360230385, + 0.7207019023099126, + 0.83220672698058, + 0.8707029971000627, + 0.831819639205014, + 0.8349897006402164, + 0.7662357524053733, + 0.7181319688970003, + 0.8342346680398978, + 0.8020336453489446, + 0.6220652437838453, + 0.8003162298024133, + 0.8729294505763359, + 0.829218746141067, + 0.7978004667962434, + 0.8024937578076367, + 0.7121643495264207, + 0.7109529389669242, + 0.760816369398587, + 0.7977067935538071, + 0.8644269348798059, + 0.8189381179602546, + 0.8963116027342483, + 0.8472519041895011, + 0.8049767570266605, + 0.6894650979226896, + 0.8743107323655177, + 0.830623916850649, + 0.7563031617485939, + 0.8910951751220829, + 0.8521144327721096, + 0.7366702761810693, + 0.9152893065728926, + 0.8929468986978419, + 0.6083001520295181, + 0.834972507961967, + 0.8973402021546995, + 0.8534546545473958, + 0.8724824707964841, + 0.9843438370838861, + 0.7052490990740332, + 0.7806478893117305, + 0.8087516485397133, + 0.8922546620944386, + 0.844799488589943, + 0.9639285420926895, + 0.8576146017917631, + 0.6529549155365519, + 0.8665798203562992, + 0.88693302546338, + 0.9007702033425026, + 0.9131762661662939, + 0.7061544673183642, + 0.7227587874729846, + 0.7760713953947588, + 0.6040970979425019, + 0.8460522760406801, + 0.6416378794366451, + 0.790946330199733, + 0.699670750265859, + 0.696595468217585, + 0.5819929484716341, + 0.6960071949319706, + 0.5648441119460401, + 0.8867367698278797, + 0.9635258962905051, + 0.747935273006975, + 0.820054785849496, + 0.9015069959705496, + 0.9098067367140131, + 0.861049377667759, + 0.8786379866826162, + 0.9056108802658067, + 0.6043814533491675, + 0.7838423516446981, + 0.831445912775084, + 0.8526128179352347, + 0.7446161821763749, + 0.9217770135155392, + 0.9549275508215223, + 0.9612174576234847, + 0.9173704200665911, + 0.7437842658141095, + 0.8771422050227239, + 0.9053180908261296, + 0.887796047701205, + 0.9259543968838654, + 0.8745163560236763, + 0.9039043942871517, + 0.9519062362998224, + 0.9811980109731, + 0.8792818501479367, + 0.9015274595730272, + 0.8716187062650398, + 0.891363761261388, + 0.9478245923173988, + 0.9281889821673667, + 0.9566241015253347, + 0.910711887965907, + 0.9141427474252299, + 0.956623922812633, + 0.6923830224824715, + 0.6769109552039784, + 0.9121538966657229, + 0.7480721679539752, + 0.9666772831450526, + 0.8445530959148583, + 0.7996646098786787, + 0.9232334016635204, + 0.7766118504454133, + 0.9504173700247783, + 1.0, + 0.9049270077301712, + 0.8699889874857453, + 0.844135222352079, + 0.8816348942271928, + 0.8203080268774728, + 0.7075027155901249, + 0.8286627654858898, + 0.8643553405670203, + 0.8134992233624496, + 0.8508537114034228, + 0.9109795075323202, + 0.865640176518591, + 0.7739690680886818, + 0.8918534023541045, + 0.933758609852303, + 0.8253884972502576, + 0.7694223082546422, + 0.969751778115263, + 0.6948203430305384, + 0.8240511534617319, + 0.8538537182713994, + 0.9074552473446, + 0.9114958583392588, + 0.7910328901551734, + 0.8107043865643501, + 0.7308531078685994, + 0.8905066282756029, + 0.8633350589329712, + 0.881396581149315, + 0.9170967344127632, + 0.8716663309895141, + 0.8342386591695131, + 0.5560829921337941, + 0.7739825654041628, + 0.9135202461340012, + 0.8983805562565216, + 0.9175588032201227, + 0.740720181138082, + 0.8138786401525997, + 0.9021059044129053, + 0.8951374821199025, + 0.8784663257624721, + 0.6844546783164036, + 0.8545103635503355, + 0.9042179816609909, + 0.6924210682475067, + 0.8734554085183471, + 0.9670934203604485, + 0.8668384324549959, + 0.9317603857073404, + 0.8634267746970401, + 0.919355165092548, + 0.6488248829608072, + 0.5325098848869468, + 0.8552208216146934, + 0.9270957587790678, + 0.9405006302440901, + 0.7709418985156071, + 0.8778736796746421, + 0.720993252537954, + 0.7505171272683301, + 0.8585208437257029, + 0.7157743501113947, + 0.6190431282111164, + 0.7893512393452445, + 0.8771073281320445, + 0.7739369327973445, + 0.8358005286552689, + 0.6492389713205332, + 0.7156442272300668, + 0.5771415790791888, + 0.7167037218975165, + 0.6970921438072514, + 0.8410023024647184, + 0.6776677251389855, + 0.5488592642128115, + 0.9648962819569686, + 0.7877469258792755, + 0.7377998772189079 + ], + [ + 0.8218432448331704, + 0.6375340119629994, + 0.7965639936581449, + 0.7431127455010025, + 0.8010244484946506, + 0.7696348611685395, + 0.6207262042284245, + 0.8722807518591207, + 0.6342970203786811, + 0.7501021327356522, + 0.6355446008244348, + 0.7222160230740066, + 0.8725460250646025, + 0.683940684800114, + 0.8861632958698769, + 0.6769795985240054, + 0.691710975720087, + 0.8428349667512234, + 0.7857433772298913, + 0.8209555473890038, + 0.9138424054546381, + 0.6742482616874251, + 0.8694134418417343, + 0.7468727920917334, + 0.6458585382633004, + 0.7923696519158612, + 0.920025872185311, + 0.8627723051760512, + 0.6891756273128806, + 0.6108244402075477, + 0.8387950446097889, + 0.725506721407374, + 0.815325743912049, + 0.7354469872614743, + 0.8915328283985894, + 0.8334589506270033, + 0.8798133117815956, + 0.41301066462798297, + 0.7006009597119398, + 0.8527596346371615, + 0.8178196047585166, + 0.7303889656369401, + 0.43284899804854743, + 0.8332821699350659, + 0.9009568735740072, + 0.7942761134062067, + 0.9472062747392324, + 0.7957674579206147, + 0.8851551128760553, + 0.8706831654122286, + 0.8296121887824759, + 0.7273473018413125, + 0.6336844028716568, + 0.727803241967903, + 0.5887430915503139, + 0.6549039113437123, + 0.7627120288714422, + 0.9084982935678794, + 0.6071942668644115, + 0.8893883944922748, + 0.6135117301984764, + 0.9420103393428025, + 0.6809666252577115, + 0.7661481451470614, + 0.82093097567723, + 0.7129941905020543, + 0.8260322959628346, + 0.9181533670060874, + 0.779796076266741, + 0.7699461058722757, + 0.8097371550974864, + 0.6871138025238521, + 0.8553527185357459, + 0.8800509723427388, + 0.8953763162633228, + 0.9372525573007732, + 0.9506190649578226, + 0.7559525415122769, + 0.755661877416304, + 0.8780053517246041, + 0.7616138429288282, + 0.5404449702221611, + 0.7635145910148187, + 0.9173618645273918, + 0.8766359701087841, + 0.858750074866685, + 0.8635886685356643, + 0.6899222053107484, + 0.5895342435458738, + 0.7251915758788031, + 0.92963761988089, + 0.8953655791760917, + 0.867968982656501, + 0.9397342283781516, + 0.919874300262908, + 0.7884734217001533, + 0.7762700729470557, + 0.7526739424172468, + 0.8690901281563489, + 0.7708290458647623, + 0.9369759172604549, + 0.8062391037426857, + 0.786003141679156, + 0.8063790333808244, + 0.9710258730616209, + 0.7177738241107318, + 0.782197958233639, + 0.9081260005770947, + 0.83430214190107, + 0.977718737589155, + 0.9136852469209065, + 0.7977893217450639, + 0.909532296600549, + 0.8940708357239963, + 0.9060273221378299, + 0.8908819490333102, + 0.9143514047480101, + 0.9465242523736992, + 0.811017435953994, + 0.9091841356502613, + 0.9215405503004106, + 0.8977370923209332, + 0.9201735951699265, + 0.7339638266002512, + 0.783971647255209, + 0.7780004268941849, + 0.4746116876521026, + 0.9237556268067008, + 0.7000958197106137, + 0.879474569934701, + 0.7735281413371403, + 0.739456627376358, + 0.5945877996193789, + 0.6802619754084114, + 0.6733049996681594, + 0.9302216878548503, + 0.9154568075097169, + 0.8656767646531649, + 0.8122938545166325, + 0.9612090015603816, + 0.9081443162360652, + 0.9795273189968171, + 0.9484547221571834, + 0.909037827485954, + 0.5214711836809363, + 0.8821280983485471, + 0.8878968030195156, + 0.7883526107411252, + 0.6532630168871529, + 0.9028493440972338, + 0.9089346698942368, + 0.8844206972100462, + 0.9217243235846507, + 0.7966502158541663, + 0.9149534626297436, + 0.9388180754983351, + 0.8353636803772246, + 0.8885201573636397, + 0.841889978494361, + 0.9156400005577556, + 0.955138716390788, + 0.9159219673739294, + 0.9321700743554172, + 0.9416087366169246, + 0.9774267586902405, + 0.9716402117886617, + 0.9443782523651335, + 0.9130311021957771, + 0.9501708867917331, + 0.9623886332700496, + 0.9369176899261459, + 0.9231534107933239, + 0.7959095108969315, + 0.788008043548075, + 0.954810264717404, + 0.5921480736237679, + 0.8955598109774838, + 0.8396513450975912, + 0.8170144104442956, + 0.9187640680741875, + 0.7304748876243227, + 0.9560228593590168, + 0.9049270077301712, + 1.0, + 0.9259660704209138, + 0.9503236146605356, + 0.9356656748904318, + 0.9319040906868462, + 0.8450853375722807, + 0.9190427963015673, + 0.947725323412548, + 0.9513705097326391, + 0.9277122702939051, + 0.9646786751977446, + 0.9000103767705784, + 0.8709318906422461, + 0.9096735736715723, + 0.9345592613591834, + 0.9079257919160003, + 0.705701611990733, + 0.9287534489319949, + 0.7395065476405517, + 0.84185595452265, + 0.8918173408454475, + 0.9563411912703605, + 0.9598623107748427, + 0.8866536882778938, + 0.8668812957473402, + 0.6372642107919192, + 0.914531089617888, + 0.9075338264335696, + 0.8920108362810322, + 0.9416231825654603, + 0.9075304650857358, + 0.9191845570070144, + 0.6750261719974697, + 0.812427531943016, + 0.9761780103817412, + 0.949707311328725, + 0.9454891907944916, + 0.855740876567058, + 0.6926099711758379, + 0.9113850941785314, + 0.908509563853332, + 0.8347527085741714, + 0.8272706427856992, + 0.9222755118209299, + 0.9264015096058413, + 0.7245062021095212, + 0.9474232074249117, + 0.9172331669670063, + 0.9734924887440695, + 0.9767830066839557, + 0.9151369356144934, + 0.9636994026876002, + 0.4747148519709599, + 0.6359871397345976, + 0.8282957408852988, + 0.9072274128399305, + 0.9302194638815474, + 0.6491409957362856, + 0.8678864700286837, + 0.8546958628741822, + 0.7448738626897353, + 0.8802440045610562, + 0.6457651807072686, + 0.6763573514832095, + 0.6456294739111585, + 0.7085541699880663, + 0.8675198438149944, + 0.7478079424704858, + 0.6313058573201636, + 0.7676750414762363, + 0.6688262078630655, + 0.6784598376233474, + 0.8503994910169997, + 0.9287993223042623, + 0.6077395277670672, + 0.5911701246955877, + 0.895636172241141, + 0.9079060627453148, + 0.7649430443688096 + ], + [ + 0.7648645548466834, + 0.7302510063618135, + 0.7707010088490068, + 0.7404082276143209, + 0.8410767569580577, + 0.7486665360084369, + 0.6866478563843761, + 0.8490744284595737, + 0.5980624660848121, + 0.7675794320997359, + 0.6576595518528127, + 0.7822235088831129, + 0.8670602859618864, + 0.6719912040651809, + 0.825944687327418, + 0.6368451974027451, + 0.5553769773938043, + 0.8484728926868287, + 0.7688006391346343, + 0.810950597559321, + 0.8546145965872484, + 0.6608073894324161, + 0.8825789639035322, + 0.7923222536854985, + 0.5900561501463256, + 0.7985635034111366, + 0.8609406889999692, + 0.8207423905710699, + 0.6823994481720314, + 0.647445358574216, + 0.7600330803043196, + 0.8039327253507819, + 0.8365831250447734, + 0.6806743325835811, + 0.8761050726654505, + 0.7835915112407641, + 0.8891225791423832, + 0.5189173385280859, + 0.6678782093168943, + 0.7500439189340213, + 0.8068688432695874, + 0.7295476230093184, + 0.36830821592348, + 0.7710483567555287, + 0.8143126415898513, + 0.8375181391188852, + 0.8685784991219303, + 0.8034492528863618, + 0.8971384688117712, + 0.7847208365595579, + 0.7913016829878362, + 0.7064125779079814, + 0.5914595401654912, + 0.7089021124421777, + 0.5639984964649106, + 0.6175029357001567, + 0.7277376801832999, + 0.8708398371585265, + 0.5370512370524307, + 0.8768589286353454, + 0.531467438863497, + 0.8802611958098757, + 0.6274575970054646, + 0.6910302924752814, + 0.8143418708493321, + 0.7435640935666961, + 0.8252882444340519, + 0.8647681186127986, + 0.8566680016026469, + 0.8165694745046722, + 0.8559389377337304, + 0.7131958119837312, + 0.7956503429478642, + 0.7888914762479927, + 0.9143354642104392, + 0.8118649671410233, + 0.8400527508573837, + 0.7479584389971411, + 0.6737472839377503, + 0.8233518114469822, + 0.8176193453564946, + 0.5046370404319087, + 0.7794213694039158, + 0.790383403520426, + 0.8255649046612927, + 0.8767637106433436, + 0.8383279086004402, + 0.693233252183694, + 0.5507176413873722, + 0.7513122420310324, + 0.9068137342734575, + 0.8489096813261714, + 0.8955062731758686, + 0.9441593948122411, + 0.8529646688379714, + 0.7473770624613258, + 0.7788146843022056, + 0.7721556004961367, + 0.8811320947853952, + 0.8497759442638798, + 0.9337890374154887, + 0.7548612630094785, + 0.741588441713917, + 0.7855028900533585, + 0.9083585857707899, + 0.6845148958132387, + 0.7314047096027075, + 0.8912983947782827, + 0.8133997849761992, + 0.8931293106220116, + 0.8445998398674248, + 0.672971828733658, + 0.8373567047010613, + 0.8344068556068129, + 0.8457353443373985, + 0.865174471624078, + 0.8508057631849011, + 0.9070396355863247, + 0.6938557064495426, + 0.7916232415461701, + 0.854593131841603, + 0.8522616154066632, + 0.9151628158909756, + 0.6742005818402798, + 0.7197971368727275, + 0.7593045878065227, + 0.5108983509175286, + 0.9014583387073594, + 0.7050282864952807, + 0.8142327320592191, + 0.6860356349287936, + 0.7459604913681426, + 0.5753140123664104, + 0.6345258532850203, + 0.6543575139023964, + 0.8669822473905617, + 0.8539325433190086, + 0.7904891257061775, + 0.7177104877558342, + 0.8835159492442378, + 0.8280013569293109, + 0.9154895562140625, + 0.8814865954177532, + 0.892168355270422, + 0.577964391576075, + 0.831248588434357, + 0.8392620706247604, + 0.8269793554653526, + 0.7539982719680735, + 0.8573990259427745, + 0.8209473511275027, + 0.835676996208887, + 0.8494611078747646, + 0.8010885702319553, + 0.8493067937266043, + 0.8188496350376253, + 0.7334220963995357, + 0.8309056500220228, + 0.7599220849533871, + 0.8289089145288884, + 0.9072555795344818, + 0.8817452052810709, + 0.8595886710172491, + 0.8736571645185645, + 0.8957248450655542, + 0.9246080180474129, + 0.8748083521063533, + 0.8367779223367209, + 0.892596084331275, + 0.8961294314940109, + 0.8624730623537658, + 0.8668778300978203, + 0.6875753424736045, + 0.715662080720833, + 0.859623662060716, + 0.5736967783740242, + 0.8084007470452487, + 0.796223084199226, + 0.8301671755271375, + 0.808141055024021, + 0.6841572237854425, + 0.873473963804116, + 0.8699889874857453, + 0.9259660704209138, + 1.0, + 0.8593782287286484, + 0.8817029995622091, + 0.8474399471158222, + 0.7277910124786596, + 0.8145790905752226, + 0.8512471209479274, + 0.88069458860289, + 0.8399222351785676, + 0.8626099092839496, + 0.8018474558808956, + 0.7902576325508839, + 0.8642412286313634, + 0.8459429512836156, + 0.8602918699706058, + 0.6049336240686205, + 0.8927124964263269, + 0.7021872904386774, + 0.7469530014493327, + 0.7978826991329818, + 0.8756479889221076, + 0.870420292765873, + 0.8127095904635858, + 0.7796681156108451, + 0.6167667795473598, + 0.8120516243100986, + 0.8499870281355694, + 0.8082838866463338, + 0.8630532324097763, + 0.8255067403146976, + 0.863037519005148, + 0.5999024757131146, + 0.819604738458028, + 0.885048365778216, + 0.8712997415100356, + 0.8774908670981685, + 0.8194395371002053, + 0.6660875359704931, + 0.8416185576747048, + 0.7981434987662699, + 0.7915201242465667, + 0.6702939224289247, + 0.8556738371114326, + 0.8512535560546876, + 0.7379931955921939, + 0.864966972613763, + 0.8153620974585223, + 0.8978346874360592, + 0.9136810929361897, + 0.8926690726289781, + 0.9275464983683817, + 0.487629167049778, + 0.6056535719860778, + 0.8094752336881562, + 0.8319190455097825, + 0.8629914824670541, + 0.7082609598768387, + 0.7951837862834141, + 0.7363229231184195, + 0.708066453523595, + 0.8238711223012568, + 0.5841399279871138, + 0.627702950822903, + 0.6021969179275823, + 0.6408355319367551, + 0.8135034675615294, + 0.7496190773126299, + 0.6076767451273112, + 0.7488426292778294, + 0.7074868441486256, + 0.6288488981768979, + 0.7709158150812447, + 0.8161583180548989, + 0.5789480689011276, + 0.6146026276836981, + 0.8512088460801798, + 0.847792289484296, + 0.6908979764795726 + ], + [ + 0.8377087747213215, + 0.6826425848284028, + 0.8343841331411425, + 0.7654772380355602, + 0.7942993298686402, + 0.8359814473213173, + 0.7328047985538639, + 0.8436308483348853, + 0.6884361752333467, + 0.7778016303963139, + 0.6811995427118939, + 0.7064923265635418, + 0.8576213431614216, + 0.6915451718737713, + 0.9133321923341385, + 0.7138313879257114, + 0.7083652428226404, + 0.8709937138384971, + 0.792632777618356, + 0.8111347791189293, + 0.9510943128906284, + 0.7265123838289508, + 0.8501683738712587, + 0.8175018058915319, + 0.64464312463557, + 0.7924069686242493, + 0.8380087601755118, + 0.8469620629609335, + 0.7776123077119845, + 0.612936550158324, + 0.8252750753147542, + 0.7364436490016276, + 0.8270372985382644, + 0.7976918535042467, + 0.9354689336854276, + 0.8191482405032808, + 0.8507176668756968, + 0.3125547391582246, + 0.7153312098234129, + 0.8238754416665309, + 0.806359791130255, + 0.7676223583142886, + 0.39214136007684985, + 0.8687255669007823, + 0.9378802310226584, + 0.7709224367344732, + 0.9019213055239915, + 0.8242545693829506, + 0.8877134663077207, + 0.7892298692290735, + 0.8799636880452919, + 0.7561076293591039, + 0.6852951973209472, + 0.705244112949521, + 0.5651503660899277, + 0.673919410883051, + 0.7814043803216869, + 0.8554239371828957, + 0.6149535649212532, + 0.8370667622504547, + 0.6724732405322339, + 0.9110985342438849, + 0.7302240154201491, + 0.8091376111535608, + 0.8091253794846542, + 0.6974244412602199, + 0.8959738098430285, + 0.9229343002527916, + 0.7443805967660986, + 0.7236787076121458, + 0.7799790851518218, + 0.7329019485033207, + 0.8519356592232719, + 0.8463565783061654, + 0.9065023290061546, + 0.9425719477786109, + 0.9381695107420048, + 0.7277711274239981, + 0.7908036845708719, + 0.8334359013563104, + 0.7638998199898671, + 0.5985385367403434, + 0.7229373033635199, + 0.8794991262987205, + 0.828514655615542, + 0.8350982535536957, + 0.8591055872601376, + 0.745299901225931, + 0.6217178301966508, + 0.7267530984784951, + 0.949596847916216, + 0.9012097875038789, + 0.804063670287685, + 0.9018835039409157, + 0.8782502015311617, + 0.8046027196342188, + 0.7386151887679667, + 0.7384721865008367, + 0.8908456242633153, + 0.777233820507166, + 0.8822945214260115, + 0.8461270956987135, + 0.7767042766563194, + 0.8071703135167876, + 0.941161734593907, + 0.8046108316402308, + 0.7835385215083679, + 0.9006105538852502, + 0.7908335994515605, + 0.9253611934826416, + 0.8389155068199252, + 0.8576705943793059, + 0.9015945078404819, + 0.9012461617512579, + 0.8615955702644565, + 0.8753866234102239, + 0.8315409386305042, + 0.935746797382896, + 0.8293323206386972, + 0.9079534323633891, + 0.8479409456394094, + 0.8736461272685973, + 0.8675463966661766, + 0.7483520378967083, + 0.7866381913625525, + 0.7813896410395866, + 0.4859307302310765, + 0.8986285081480962, + 0.6968344242653329, + 0.847433665271277, + 0.8268742541978301, + 0.7530508408874739, + 0.6829114399842596, + 0.7385284670550455, + 0.7615384635531633, + 0.8773097249508408, + 0.8971679597090616, + 0.9088439297085898, + 0.678729184145016, + 0.9302352497004286, + 0.8941516935268677, + 0.9196039848074145, + 0.8998426381625817, + 0.8564382043741687, + 0.5694081312629639, + 0.9079872861663449, + 0.7961389086034149, + 0.6984875300377672, + 0.5634816773938314, + 0.7873839631606904, + 0.8827501104004353, + 0.834710826946451, + 0.8719013292312716, + 0.800472800439242, + 0.9271224512668631, + 0.8851377358762574, + 0.7193094372075872, + 0.8833242710518026, + 0.8565757182099695, + 0.8878316513224755, + 0.8988178624035043, + 0.8530456770018237, + 0.9382415226102079, + 0.8679098898301966, + 0.931060857119407, + 0.9159160028397967, + 0.8628887735033197, + 0.9112488967642206, + 0.9183416439824208, + 0.9346001873046964, + 0.9265989447562095, + 0.896633711664997, + 0.849770781228412, + 0.7445682948411206, + 0.9331398236438557, + 0.49233765210574987, + 0.840640132541794, + 0.7713294411112073, + 0.7967018621680555, + 0.9042187491930364, + 0.7595326408439318, + 0.9192520453520712, + 0.844135222352079, + 0.9503236146605356, + 0.8593782287286484, + 1.0, + 0.9648290558310695, + 0.9147361563996486, + 0.8776915292854609, + 0.9071922520167023, + 0.8852131020096102, + 0.9077076883238971, + 0.9160329151003482, + 0.8960660208307487, + 0.7887147620439209, + 0.8673495803392265, + 0.90135575327715, + 0.9099822394778341, + 0.8086105368030396, + 0.7463936266951301, + 0.8817402424556359, + 0.6843973482028085, + 0.8170915745963236, + 0.7747345468607478, + 0.9207432566785931, + 0.9293929147690814, + 0.8657761874602543, + 0.8533478667880094, + 0.6711738036610778, + 0.8547637593623492, + 0.8668375406953118, + 0.8073022678861129, + 0.8218608407087934, + 0.9013643421622209, + 0.8761810491593658, + 0.7097363921666505, + 0.8008749701116494, + 0.9311535668121159, + 0.8574432436221149, + 0.8975378488095497, + 0.806483351189066, + 0.5747241422117443, + 0.8412713835609171, + 0.899685768873109, + 0.7823238238024709, + 0.8728917634003337, + 0.8039189636861589, + 0.8318913612250077, + 0.7481222884051325, + 0.9369842833937096, + 0.8874852344785109, + 0.9340031837952183, + 0.9324476646990735, + 0.8774327204716325, + 0.9241649928809714, + 0.4437806255156937, + 0.6108620495485461, + 0.6813807090096767, + 0.8480124165942087, + 0.8767687786975277, + 0.6863969920338875, + 0.7422197641393782, + 0.7875313663911171, + 0.6905505791610423, + 0.8812753159346844, + 0.6431649061075121, + 0.7094627225946077, + 0.5689877287972237, + 0.6346513199427448, + 0.7861325582078383, + 0.6017520653524386, + 0.6446156057989318, + 0.772261988576899, + 0.7148092441855279, + 0.6934202833269613, + 0.8603966785971807, + 0.8941265057471809, + 0.6134743908878735, + 0.6575162522847443, + 0.8819160482659453, + 0.906730836535536, + 0.790080638195978 + ], + [ + 0.7904559266342291, + 0.6377501745254981, + 0.7372411195394754, + 0.808284216186449, + 0.8584003870674886, + 0.8666994692730012, + 0.69931750118257, + 0.8275466973670547, + 0.6612908924904717, + 0.7551264176926538, + 0.6270500826136188, + 0.7418663921673608, + 0.8449233431131928, + 0.7833580554093295, + 0.9234030607377782, + 0.7789089470910031, + 0.6716996572007637, + 0.8512481111537934, + 0.8566727142986397, + 0.7693559867191537, + 0.9448009494935613, + 0.8160311390354883, + 0.8379580885867315, + 0.8254429398444292, + 0.6675587120209907, + 0.8359449710303178, + 0.7862456652713398, + 0.8325360010356039, + 0.8057274479365607, + 0.6495953032961855, + 0.8173753001284825, + 0.7275820587115307, + 0.874808441394179, + 0.7941150226729145, + 0.9192094785401131, + 0.8489396231994409, + 0.8669510918259992, + 0.42113978756576326, + 0.7233928403037546, + 0.8343823901086037, + 0.7865132845245647, + 0.7444917894334262, + 0.4811225099523202, + 0.9151857584177393, + 0.8988609044619356, + 0.7711330710750193, + 0.8829712949835602, + 0.7811866777825291, + 0.9217780214870313, + 0.8185127620282513, + 0.9068408071657765, + 0.8357834715458032, + 0.7711570469519773, + 0.7483550714307946, + 0.6151799043778167, + 0.709765851802548, + 0.8170023172257935, + 0.8765667571469674, + 0.6500618909506747, + 0.8613362046742236, + 0.693312037923859, + 0.9391570227007211, + 0.7326900935020867, + 0.8497694867663427, + 0.7739220756472136, + 0.6910413224525725, + 0.9172562824885631, + 0.9034576207338686, + 0.7378782716160777, + 0.7140032339138633, + 0.8067524242186839, + 0.7763821067966289, + 0.8004767077314381, + 0.8369174713788339, + 0.9397812697017907, + 0.9244690445889733, + 0.9057614459465495, + 0.8160507211894896, + 0.7524245437121275, + 0.8615134711622994, + 0.7810071823178061, + 0.686344281264472, + 0.7577290159465806, + 0.9031200429108454, + 0.8321412881870724, + 0.8201207208959419, + 0.8676438068502116, + 0.7757884821588821, + 0.6911496246668388, + 0.7724094207016384, + 0.9447794081602084, + 0.8759238762654195, + 0.8114626187681789, + 0.9150705746469652, + 0.8814314017708306, + 0.8429165950706016, + 0.7606425218154524, + 0.8215791584524772, + 0.860012533055462, + 0.7675609073734566, + 0.8859670046070587, + 0.8821092652536218, + 0.781175704006673, + 0.8642024850476463, + 0.9169750501090261, + 0.7518553592671652, + 0.8084571032160377, + 0.8927872746047514, + 0.8458079266349746, + 0.9009173129320119, + 0.8617517607664923, + 0.8374395163591797, + 0.8548595605251814, + 0.9047563033334988, + 0.9094577864333306, + 0.9077723039368605, + 0.849973558697176, + 0.9402879417347223, + 0.7957479390349345, + 0.9132714011297599, + 0.8552323655801672, + 0.912015934980645, + 0.8754849361689007, + 0.7915647208155004, + 0.7854450331826539, + 0.8040626478969023, + 0.6133016185409357, + 0.9331637426755107, + 0.7286307209627099, + 0.885862999144338, + 0.8310181013890352, + 0.7975599574828011, + 0.6819969050241044, + 0.7810984500676621, + 0.6999466276676759, + 0.8766643868995407, + 0.9235423187547526, + 0.9071895189950417, + 0.7038221097738317, + 0.9488549741581789, + 0.9348951423865386, + 0.9189461894831419, + 0.8992684604038162, + 0.869947246303474, + 0.6501013718115527, + 0.8967127019536855, + 0.8511461485061714, + 0.7805476580764135, + 0.6550734605990999, + 0.7852694607017614, + 0.8834420023501514, + 0.8758109552619169, + 0.8574102595368078, + 0.7653617503318213, + 0.9391220422839086, + 0.8985617435761353, + 0.7410743168336313, + 0.9107296347799543, + 0.8549615410327274, + 0.896624305959684, + 0.9083161063311532, + 0.8974111781882671, + 0.9192629132824082, + 0.8380693596862627, + 0.9022960359070481, + 0.9387780930007595, + 0.8662094215879265, + 0.9390643007198407, + 0.944961329915261, + 0.9381322627985841, + 0.9213592271900758, + 0.9039461686544052, + 0.8124545258488338, + 0.7318291653657792, + 0.9595917765394435, + 0.5945035511266688, + 0.8684891933367457, + 0.7938599838490138, + 0.772840501924782, + 0.9159016426178626, + 0.8144202469285593, + 0.9344124179557531, + 0.8816348942271928, + 0.9356656748904318, + 0.8817029995622091, + 0.9648290558310695, + 1.0, + 0.8934851403253524, + 0.8359553420733374, + 0.8675427911047289, + 0.9012892961914285, + 0.8954259777493839, + 0.952991227018033, + 0.8952489286257042, + 0.8223114296302769, + 0.7889837610866891, + 0.8913335922162098, + 0.9072746317602889, + 0.8241647824604657, + 0.7977537766043462, + 0.8980287284430151, + 0.7257833484708918, + 0.8377674031048193, + 0.8024229863269864, + 0.907062349877197, + 0.923217599598325, + 0.8461714634701002, + 0.8559327082947595, + 0.7362754649286203, + 0.8749659893183634, + 0.855176201732709, + 0.8174787548021418, + 0.8107346306975612, + 0.8943788398001166, + 0.8758653129537237, + 0.730006837703673, + 0.8025108405522265, + 0.9119795916935187, + 0.8199159216202484, + 0.9284721860995155, + 0.7597690786631001, + 0.6621847375566293, + 0.8655654421023413, + 0.9180489587645206, + 0.8333012117063354, + 0.8463529532549041, + 0.8105850331597075, + 0.813927091155633, + 0.7113960650163156, + 0.9000817191100444, + 0.8961281621408939, + 0.9106979949435002, + 0.945165279129368, + 0.905914384695408, + 0.9255406006493184, + 0.5243942526740093, + 0.6632296245323014, + 0.7228737888681543, + 0.8814408638035625, + 0.8989051827062733, + 0.7366885236277902, + 0.7831496823704918, + 0.7259109278019616, + 0.744700533679976, + 0.8845214491294304, + 0.7117619193805125, + 0.6231684769863085, + 0.6815988287098838, + 0.6816859746612841, + 0.7025680205822559, + 0.6728666715871062, + 0.7083683820180701, + 0.8074509634287818, + 0.6948371810939195, + 0.7367079490878893, + 0.8430683515207471, + 0.890389398941585, + 0.719280306254653, + 0.6405326751654985, + 0.9070452981615996, + 0.9014537122133935, + 0.7435306180913507 + ], + [ + 0.860092144287839, + 0.6975680686640165, + 0.8379325484981631, + 0.6785545209331216, + 0.7353385460209351, + 0.7201880188349271, + 0.6787984714145844, + 0.9169600517045211, + 0.7941570333914373, + 0.7781876232946814, + 0.6935423905112179, + 0.767177287196788, + 0.8690281517457417, + 0.6833586416579005, + 0.9264503484945963, + 0.714152616807679, + 0.8286572115207974, + 0.8824795366255821, + 0.7706234474355683, + 0.8204258964146085, + 0.9304020704432829, + 0.6517877484137237, + 0.8332768674669911, + 0.7685827049078716, + 0.7922132721839479, + 0.79495709409903, + 0.8187415507643113, + 0.9102315162139182, + 0.6837365576792536, + 0.71708286769296, + 0.8754492248972586, + 0.7357932388685152, + 0.8155185152421489, + 0.6801163002272615, + 0.827599708053541, + 0.8524031914546297, + 0.8820708598968399, + 0.3389533785805541, + 0.8305430681377545, + 0.8758387672661238, + 0.8517295049045227, + 0.7171104185801966, + 0.3555165686908801, + 0.7126309484024829, + 0.8239590062994354, + 0.7671302110553545, + 0.87877771139495, + 0.8180738674521753, + 0.8200059326793354, + 0.8097185948016965, + 0.8869748209513151, + 0.7411557883295257, + 0.6299264109277892, + 0.7867631489920953, + 0.6595513621326051, + 0.7242572768109178, + 0.7946291914746021, + 0.8894459147266565, + 0.5145638081675505, + 0.8629053819933549, + 0.7520220318350925, + 0.9254045510522282, + 0.8104282383354797, + 0.7825382187796648, + 0.8247151474206257, + 0.6944051377234148, + 0.8175922746657674, + 0.8284173862277934, + 0.731522348421159, + 0.7767723610878374, + 0.7446423440146333, + 0.7199819060778311, + 0.9336492849348001, + 0.932299737872245, + 0.8892524398831257, + 0.8769653222536352, + 0.8730544912882879, + 0.7033470233586456, + 0.8657750073093458, + 0.89967295091254, + 0.7627269602362541, + 0.43916405509292017, + 0.8232584796144088, + 0.8453567868396437, + 0.9503672031264476, + 0.9151854850566362, + 0.9276090784672227, + 0.667281514425562, + 0.501450665155917, + 0.6757134371755009, + 0.92670708335827, + 0.8156613934410564, + 0.7221201401298303, + 0.8686375892609721, + 0.8717495203649601, + 0.8380865478982665, + 0.8830745200187973, + 0.6894488025693691, + 0.7966601813889841, + 0.778293398240678, + 0.8800791811370535, + 0.8304873549200281, + 0.8489626715114365, + 0.7228994241547456, + 0.9299229692726267, + 0.7595384217854798, + 0.7428345893839139, + 0.8796693738755788, + 0.734010070128778, + 0.9025862760274157, + 0.8300263889128637, + 0.8126141251004476, + 0.9626682465530574, + 0.9219078128660062, + 0.8885894308919966, + 0.8721094266151067, + 0.8766338872402365, + 0.9522228007517834, + 0.8348538254008222, + 0.8276179166595977, + 0.8574947235044577, + 0.8719007929910089, + 0.9111264093867089, + 0.8713413480039813, + 0.8339290406428563, + 0.8232489074432573, + 0.40312903184324433, + 0.8681386245952881, + 0.7021372777635989, + 0.780098276441429, + 0.8346381735194071, + 0.7621338262248162, + 0.6925032732477302, + 0.6890419065849082, + 0.7448009029934274, + 0.9122468262919932, + 0.8649721589019158, + 0.8122723637874162, + 0.7210944152235841, + 0.901156123036013, + 0.8694919109800618, + 0.9384462625479567, + 0.8991392204892732, + 0.8982275113118835, + 0.4862609948817076, + 0.864040687779291, + 0.7688036934555806, + 0.6169310563963926, + 0.5389810887296993, + 0.8399396377624564, + 0.8814458957672014, + 0.8341466219177911, + 0.8946464299856035, + 0.845500206360938, + 0.8018728088870071, + 0.8354925859983576, + 0.720533580847094, + 0.854108888390254, + 0.8674652316791356, + 0.9483201808015992, + 0.909138138089495, + 0.818635281749263, + 0.9095057950108875, + 0.8278286630470366, + 0.9395586492746247, + 0.9096789148586458, + 0.8513021717564518, + 0.87346419074918, + 0.8615024463336717, + 0.9163774773820584, + 0.8247391817565248, + 0.805213736168761, + 0.8318677663812807, + 0.7516582064838295, + 0.8974930878645433, + 0.46841790982829146, + 0.8320137348945958, + 0.6895041521470019, + 0.8763616754310214, + 0.8517627122725454, + 0.7966867564864194, + 0.877824596096662, + 0.8203080268774728, + 0.9319040906868462, + 0.8474399471158222, + 0.9147361563996486, + 0.8934851403253524, + 1.0, + 0.8254613400019762, + 0.9500766988885092, + 0.9592245894853327, + 0.9163383078787789, + 0.8842295257579192, + 0.9253045041354455, + 0.8225220743813265, + 0.7329089996950247, + 0.8786322395763685, + 0.8767942126973265, + 0.8208629400626332, + 0.6395026477039836, + 0.8527476183590057, + 0.8583494783715557, + 0.8325839727836333, + 0.7824253178910869, + 0.875789777274913, + 0.8711710742898398, + 0.8729351191807622, + 0.8483417135021629, + 0.5243931675566452, + 0.7693828734348158, + 0.7799972478344638, + 0.808565967733746, + 0.8546338890875057, + 0.8792920795266839, + 0.8463484947069512, + 0.6385086600646226, + 0.7723481750903025, + 0.9263681492006062, + 0.8680526130368561, + 0.8339786359367228, + 0.7850781382206761, + 0.54561936679501, + 0.8237326029376824, + 0.8682097124451782, + 0.7866329259961022, + 0.8216827418109661, + 0.8555653881111999, + 0.8025691491827645, + 0.7502538902115721, + 0.9734059379656633, + 0.8456122510319637, + 0.9088224984087696, + 0.9251913652359126, + 0.8562797250258859, + 0.8941160626934269, + 0.41789594451583967, + 0.6017710818196094, + 0.7552601608037334, + 0.8683290312739139, + 0.8607739568750498, + 0.6856478499958966, + 0.7644474002047602, + 0.8194649961668581, + 0.6460761740295352, + 0.7351720627529666, + 0.7278282477840636, + 0.7295983813279346, + 0.5672442034064646, + 0.5542500682637032, + 0.8233369126680337, + 0.6791765639035099, + 0.4955371794050256, + 0.7192587997786948, + 0.7112780302534966, + 0.5838445211647008, + 0.9217859629502269, + 0.8100739465567616, + 0.6447777920348662, + 0.6477088445451634, + 0.8322658851923859, + 0.8352191375980589, + 0.6359977567091092 + ], + [ + 0.6566843205615431, + 0.48210664119708485, + 0.6820064144771484, + 0.8023282609569268, + 0.6416745826084863, + 0.5839797190987989, + 0.5509232508453175, + 0.7122641877775511, + 0.6988480808653816, + 0.733838156665557, + 0.5917980809701626, + 0.5084024773815157, + 0.7100143329847624, + 0.4729798753265736, + 0.8384802260484909, + 0.649288310519308, + 0.6612970315943959, + 0.7124097854386132, + 0.6870519679638218, + 0.7290323772190392, + 0.7732539178826872, + 0.5935021234157145, + 0.6882581059423277, + 0.6664551910009388, + 0.6409340482228133, + 0.6457441601026128, + 0.7086752475275522, + 0.7392965942126641, + 0.6184698399893038, + 0.48685946740296865, + 0.7297929749094995, + 0.6131937062620405, + 0.5750694886306813, + 0.609726367151644, + 0.8298810464908213, + 0.6908374313349125, + 0.6613694936522532, + 0.4224078867503858, + 0.6223287752948279, + 0.8395464492328045, + 0.6127140997012741, + 0.6632191889246216, + 0.3954261889114336, + 0.7419614509947344, + 0.8383653914852407, + 0.713231640944992, + 0.8043916450805182, + 0.738246277720949, + 0.8245210831376694, + 0.7728536295449595, + 0.7202147270098094, + 0.6665371609404693, + 0.620803025995127, + 0.5261071721437195, + 0.4472994116098345, + 0.5151841342565374, + 0.6163373979093042, + 0.7879734798160092, + 0.701784518632575, + 0.6337637271721415, + 0.6712424465720845, + 0.8532824691367109, + 0.6788843994950841, + 0.7080587703160808, + 0.7021797580522665, + 0.7508738232590983, + 0.7500066646478751, + 0.8310202462148991, + 0.4585377607145127, + 0.49218885430589854, + 0.6409880292751632, + 0.5921527251186111, + 0.7848191248171006, + 0.8139966461299333, + 0.7012835732900636, + 0.8591445841265855, + 0.8402412916742474, + 0.6414209676136979, + 0.6501638284036981, + 0.7731019528871228, + 0.507648297737944, + 0.6787970967932236, + 0.6626842293247187, + 0.8432303799214462, + 0.7318641629119907, + 0.7229878874577862, + 0.7863990019540102, + 0.7574676720896079, + 0.6770541123358773, + 0.5912095932835318, + 0.8080595481881623, + 0.7528726276140233, + 0.7073728402326953, + 0.7329411458263017, + 0.836149850284302, + 0.7549713928430954, + 0.6545955119576921, + 0.6777701326974884, + 0.6978975818367592, + 0.5035075897800341, + 0.7280423778927461, + 0.7794931631856301, + 0.8513723078834137, + 0.7049211189071775, + 0.7471988346768684, + 0.7091748465791431, + 0.6596572437106614, + 0.8339290945696444, + 0.8012440489470082, + 0.8652286649505517, + 0.7273343317855023, + 0.9347018036651435, + 0.8097679883698377, + 0.764313359747664, + 0.7921765250099891, + 0.8076460873681122, + 0.7080564064953494, + 0.7597848196926159, + 0.9318953501159687, + 0.8236017368871975, + 0.7371391766904888, + 0.8059818013236578, + 0.7961465436656596, + 0.7091019413323982, + 0.8914365548761897, + 0.8896499671194262, + 0.5756532387854334, + 0.7272826730995818, + 0.7907937894117671, + 0.7319189994847997, + 0.9088057384425261, + 0.8227229443749149, + 0.824282752690202, + 0.8644371363720902, + 0.6661904053179025, + 0.7666809338396744, + 0.762479945341563, + 0.8396324931501793, + 0.6871873188332674, + 0.839348344240141, + 0.7749300898091285, + 0.8600228148248112, + 0.7939888354114139, + 0.7390913059149818, + 0.6136533081726477, + 0.7753052823418684, + 0.7023568975662675, + 0.6572008322204336, + 0.543085039515853, + 0.6027091901896482, + 0.7200076342174121, + 0.6845144742224695, + 0.7585989572450407, + 0.8237997830270869, + 0.8466722174432989, + 0.8657403025184354, + 0.7287207826405336, + 0.8193039391490586, + 0.7901080722874378, + 0.7868725494212949, + 0.8068438708299439, + 0.7274437622432061, + 0.8810664965739352, + 0.7392067905955273, + 0.7774426781715773, + 0.8010455488078345, + 0.747367248194344, + 0.8542059063486744, + 0.8264413405431674, + 0.8901283343490026, + 0.882026525308592, + 0.8127437606618848, + 0.9125295686530586, + 0.6769298721954452, + 0.8413803946649112, + 0.5104789949314177, + 0.7852964952613045, + 0.6876561791963652, + 0.6119466642793593, + 0.8509242585283706, + 0.6627078342210678, + 0.8001222799716915, + 0.7075027155901249, + 0.8450853375722807, + 0.7277910124786596, + 0.8776915292854609, + 0.8359553420733374, + 0.8254613400019762, + 1.0, + 0.7283195316189421, + 0.7936322136298548, + 0.7939282326940765, + 0.8229508555354962, + 0.7624492773296746, + 0.7890190051169188, + 0.8088426174262127, + 0.8382631036116277, + 0.8619987314113855, + 0.7327747957008018, + 0.6460123263675799, + 0.7829484005291434, + 0.7513045094537357, + 0.7854047992255093, + 0.782971671031383, + 0.8080953123892156, + 0.7778165504517262, + 0.7740624513960777, + 0.877216270212277, + 0.7515889281047635, + 0.8055902699475843, + 0.7233664353719901, + 0.7309684608552679, + 0.7258621215245041, + 0.9158353524802105, + 0.8800838310322502, + 0.7587106310941027, + 0.8399186663645858, + 0.8585750505121753, + 0.746968138367863, + 0.8209942604115315, + 0.7809668854561811, + 0.5031538027625491, + 0.7702398203724206, + 0.8199423577779806, + 0.788857783048654, + 0.9157393615303949, + 0.7586874847160002, + 0.6965205883061755, + 0.6560386821008516, + 0.8270851306533032, + 0.8030353191547387, + 0.8726964141570639, + 0.8315478044359004, + 0.8743601689041389, + 0.7843162408952811, + 0.4076412632761586, + 0.5884564270710294, + 0.6648381513950011, + 0.7557275717881734, + 0.7090698417163845, + 0.4468583995726507, + 0.6917899236582701, + 0.6822307190359133, + 0.7720004425295292, + 0.745728442051706, + 0.5929336016057768, + 0.5749148477458328, + 0.6165177050272019, + 0.5885772809780843, + 0.7126725640888836, + 0.6390644486648308, + 0.7076392171449383, + 0.6709591416042541, + 0.6787309366445999, + 0.589655820350568, + 0.8189780360367314, + 0.8914130851679439, + 0.5866300499583811, + 0.5097608395390469, + 0.7638474582937411, + 0.8602449237946608, + 0.6949910059207495 + ], + [ + 0.897964336469178, + 0.6894176619069813, + 0.7983692262190306, + 0.5590170008733423, + 0.681757647053798, + 0.7272529277313278, + 0.5937006997706434, + 0.8689366815555506, + 0.6847284387214432, + 0.6386028839171686, + 0.576369127860194, + 0.7810914952619892, + 0.8838735749000747, + 0.6884425634795881, + 0.8250129290939584, + 0.6700805857831001, + 0.7597422335748831, + 0.8498952382386059, + 0.7347108230555046, + 0.7285734713991358, + 0.919112181427519, + 0.6062811746259307, + 0.75789707373894, + 0.6817853836793816, + 0.7284790333287068, + 0.7637736855811356, + 0.8145286320520871, + 0.8351029262436596, + 0.6541449411480134, + 0.6834008048009163, + 0.8542068117162654, + 0.6818431191126229, + 0.7945188297977296, + 0.7094306631577634, + 0.7684968658080122, + 0.8284691384653803, + 0.8586476046334638, + 0.2836706694696828, + 0.8265823424453509, + 0.8060135193061422, + 0.8266035608045365, + 0.7370105420967366, + 0.3652640646493421, + 0.6926334871888362, + 0.7871017231321275, + 0.6579482460195938, + 0.8713354336705732, + 0.715174864520471, + 0.7450294172693257, + 0.780711960392166, + 0.846877464057498, + 0.705286062521828, + 0.5901524577930664, + 0.7577134486706676, + 0.6664483257069801, + 0.7296915780371289, + 0.7814731051665617, + 0.8815892876926621, + 0.4266883125710419, + 0.8917479147736085, + 0.6731488896498178, + 0.8599733653937521, + 0.7379967606712563, + 0.7519440094716601, + 0.7356293382221307, + 0.5387304396722372, + 0.7846297061204296, + 0.8194224937218131, + 0.7766053718498319, + 0.8003494086112305, + 0.7251216850392388, + 0.6533812239697899, + 0.8600423833153704, + 0.8978228598241955, + 0.8726587428445797, + 0.870730473871839, + 0.8743848236112409, + 0.7013315925620526, + 0.8326131672951017, + 0.884601234962196, + 0.770903101212715, + 0.36642615646577914, + 0.7802101078167687, + 0.8521487147899894, + 0.892442922945417, + 0.8751785074658374, + 0.8535634952435827, + 0.5537237518179902, + 0.42096697948114387, + 0.6767981688182838, + 0.8880335316428224, + 0.8047237879429362, + 0.7109286132009756, + 0.8892683060801008, + 0.8160014823332894, + 0.7969055347585849, + 0.827356372251307, + 0.6417240130441094, + 0.7848642917691384, + 0.778205415308778, + 0.8708503575518084, + 0.7996441589439013, + 0.7478223848951785, + 0.7080611683199393, + 0.9441634820593654, + 0.6511000689738401, + 0.7027253260215072, + 0.8254114886137162, + 0.6837462271044289, + 0.8671609557351981, + 0.8476676346138181, + 0.6758172713324802, + 0.9488793172266402, + 0.9268355763264127, + 0.8713540738989072, + 0.8217445401262718, + 0.8799937650942383, + 0.9300068335568205, + 0.7041592126376801, + 0.8296363479211881, + 0.8660097426870411, + 0.8703060392331374, + 0.8755553176848687, + 0.7786300551984964, + 0.7429477592912096, + 0.6985826379218949, + 0.26847498745971815, + 0.8528186176323553, + 0.5694470724037409, + 0.8222641844671544, + 0.6906542749093393, + 0.5984385881636529, + 0.5306800764795968, + 0.5395244215311018, + 0.6670168852590252, + 0.9025565051652489, + 0.8655949822374438, + 0.7665161774477581, + 0.677367501954294, + 0.8582409692865189, + 0.8593584856679046, + 0.8761766313360375, + 0.8719285624321301, + 0.8283979390216464, + 0.3972336649192352, + 0.7890554691184855, + 0.7363234541512522, + 0.5613293931377222, + 0.4321626628503944, + 0.8815936988475308, + 0.9057282195283871, + 0.8370281723080307, + 0.8959991175915227, + 0.780866268012585, + 0.7822921909709558, + 0.8157079064606699, + 0.706445805064623, + 0.7976521672824494, + 0.8246913743163863, + 0.9202181128940835, + 0.8790534807013246, + 0.8034470501687718, + 0.8519397958985859, + 0.8566094813546157, + 0.9465697701010561, + 0.9093589424097777, + 0.8757232838084821, + 0.8275726789611109, + 0.8478608421463828, + 0.8706205349819116, + 0.7962831395365011, + 0.7966346593065549, + 0.7510537962417209, + 0.7939395268804594, + 0.9025219167722375, + 0.43143946677554185, + 0.8279076815879322, + 0.6708673910935928, + 0.8505315695594358, + 0.8468995249599138, + 0.7800675767330681, + 0.9011573595507092, + 0.8286627654858898, + 0.9190427963015673, + 0.8145790905752226, + 0.9071922520167023, + 0.8675427911047289, + 0.9500766988885092, + 0.7283195316189421, + 1.0, + 0.9265146941729908, + 0.9137571320582482, + 0.8816078470438015, + 0.9444085304289677, + 0.7887841723416681, + 0.7659754944089666, + 0.8203261002298642, + 0.866205028630508, + 0.80411609658391, + 0.7039979400901047, + 0.8111849632319564, + 0.7304797412089609, + 0.8311342818724244, + 0.7452267526081352, + 0.8801865275185033, + 0.9010145634697544, + 0.8760702011137896, + 0.7893594498138783, + 0.43013738673326396, + 0.7927505294093837, + 0.761293008396351, + 0.77445379768879, + 0.8616355641379912, + 0.8001085857495461, + 0.7656301924766552, + 0.6233565275742765, + 0.7377838361708471, + 0.9166302674236149, + 0.8814571136139824, + 0.848540086900561, + 0.7785897584847705, + 0.5356048901272462, + 0.8134257204359494, + 0.8496684161736084, + 0.7572003324101193, + 0.7802728125015642, + 0.8159234955492383, + 0.8355778418303016, + 0.6841659962919214, + 0.9516832474066952, + 0.8406095275421976, + 0.8819082823857582, + 0.9130414689060058, + 0.7944532105023987, + 0.8737878744194069, + 0.45594870581093383, + 0.6308834322585127, + 0.6978202074573752, + 0.8569274109040309, + 0.9109999904649637, + 0.6831802069081956, + 0.7626775040345443, + 0.816977637801224, + 0.59961683780601, + 0.7503894595483008, + 0.7047587674303915, + 0.6896865930015113, + 0.5225110543822314, + 0.5559170705125089, + 0.8030231382517242, + 0.6065331004129996, + 0.4301872917668085, + 0.6951847230219852, + 0.6102001941098882, + 0.57534811644151, + 0.8655000646020298, + 0.78144752977271, + 0.5923462051239348, + 0.5516887544257154, + 0.8286316411217985, + 0.7686531215437269, + 0.6992693395243268 + ], + [ + 0.7830049694676406, + 0.594357927011768, + 0.7480552376426628, + 0.692045465269612, + 0.744944549934323, + 0.7155688794962315, + 0.5453784882723283, + 0.8593918511383556, + 0.6536090212050487, + 0.6968469293665832, + 0.5654996203190201, + 0.7710521000171413, + 0.8455399198021402, + 0.7160845581522767, + 0.8962635461360619, + 0.7025487271634383, + 0.734601599563888, + 0.8036022110558992, + 0.7735009589712593, + 0.7612921467763498, + 0.8901966220930946, + 0.6695107229404907, + 0.8231455879017456, + 0.6797478206089123, + 0.7427059643984302, + 0.7964060387003897, + 0.8501443728434684, + 0.8855190211855162, + 0.6318998362164224, + 0.6754295146311907, + 0.8404645799027828, + 0.6706263836037646, + 0.8130344328264528, + 0.6597954324778835, + 0.7998217554113759, + 0.838870380255979, + 0.8520810668906167, + 0.4152819263929559, + 0.7717311078508655, + 0.8705875489813016, + 0.82469372150624, + 0.7090513527513191, + 0.4306685794138975, + 0.7641848933528295, + 0.8227862776307612, + 0.7398620037532421, + 0.8793666518506918, + 0.7291765488821729, + 0.8307093604037437, + 0.8631399944062418, + 0.8364523672253347, + 0.779246714768183, + 0.6151798779088317, + 0.7522148949559508, + 0.6263397625030124, + 0.684776944454637, + 0.7560609726164476, + 0.9069473576791754, + 0.5882444921163913, + 0.8880389904454189, + 0.6578017556816467, + 0.9522607555809105, + 0.7292062523973963, + 0.7686717492573611, + 0.7915974061134358, + 0.6326985751319054, + 0.7957592552070738, + 0.8335386315721279, + 0.6758147061101009, + 0.712198330947499, + 0.7231009740933532, + 0.6933688793847802, + 0.8711625647485238, + 0.8981397586158395, + 0.8840869350729549, + 0.9100315593645082, + 0.9085117380283477, + 0.7809184710143579, + 0.7671723796549335, + 0.9434818114656369, + 0.6926365144339053, + 0.4750905586150388, + 0.8173804595108461, + 0.9217730577857622, + 0.9231941164081733, + 0.8460912916355953, + 0.8843121508288981, + 0.6355143858321963, + 0.5360610106398536, + 0.7069365854228873, + 0.9052143017730205, + 0.7830027616028873, + 0.7690752595853741, + 0.8721129351118908, + 0.8851253596380219, + 0.8270034914515689, + 0.8591690026547113, + 0.7305808699453107, + 0.7302032428643651, + 0.7017689027386583, + 0.8898429539450752, + 0.8089551769335126, + 0.8262989394474225, + 0.752058094823624, + 0.9244316904704893, + 0.6275542071485204, + 0.7506874148380546, + 0.8274542119389418, + 0.7804752679554489, + 0.927768999246201, + 0.8719513630435577, + 0.7789893497842628, + 0.90957206645422, + 0.8913301462656471, + 0.9322933624182145, + 0.8865131907465408, + 0.9063037061446542, + 0.9305828169803616, + 0.7968150445781322, + 0.848401384356695, + 0.897863766829169, + 0.9163445798371829, + 0.8942989426850159, + 0.7949758556585141, + 0.8020365326298325, + 0.7843564573144821, + 0.47586030437718824, + 0.88819116293446, + 0.7035891929191838, + 0.8424367728871804, + 0.7897159665342295, + 0.7305768428749968, + 0.5920040265912376, + 0.6771130935441901, + 0.6235061169440786, + 0.9065563591725939, + 0.8739563169136624, + 0.8194784449590932, + 0.8173144048462468, + 0.9461811401111834, + 0.9029015488037199, + 0.954165453379682, + 0.9325877907347229, + 0.9008357242965824, + 0.4949290564607693, + 0.8263287407830542, + 0.8736112275535504, + 0.7254804745691306, + 0.6238760105058372, + 0.8719758880781227, + 0.8882871209077574, + 0.8607313937489919, + 0.900860679097104, + 0.7362177396067497, + 0.8217288138747059, + 0.8980169350345055, + 0.7955831738276565, + 0.8468717567485244, + 0.7996364503637463, + 0.9351292965757946, + 0.9078052957275634, + 0.8527195882682268, + 0.8654093526302894, + 0.8446960427560263, + 0.951060547579724, + 0.947692524775302, + 0.88480055421303, + 0.887075310868724, + 0.8892806374303571, + 0.9298626477823749, + 0.8332790980559438, + 0.8234119112108985, + 0.7720134481461743, + 0.8070986782082926, + 0.9356763872449642, + 0.539209846140039, + 0.8639567156798725, + 0.8080469091626293, + 0.7925380703786573, + 0.8668766785855087, + 0.7955194010597277, + 0.9111524645495199, + 0.8643553405670203, + 0.947725323412548, + 0.8512471209479274, + 0.8852131020096102, + 0.9012892961914285, + 0.9592245894853327, + 0.7936322136298548, + 0.9265146941729908, + 1.0, + 0.9521611780717673, + 0.939255963232427, + 0.9688403925275794, + 0.9235998879472531, + 0.7117926859953471, + 0.8394267679888351, + 0.8767662337993911, + 0.9237822219779688, + 0.7088097580764245, + 0.8679148343504179, + 0.8202387325367257, + 0.8505880185848899, + 0.8870746721755173, + 0.9169196417475655, + 0.9032331414086666, + 0.8946922424759906, + 0.8777009422338161, + 0.5555208039768516, + 0.8505115102753875, + 0.7892876746890154, + 0.86762344809303, + 0.8940685179072808, + 0.8511888969312764, + 0.8860518079305051, + 0.6923609790035119, + 0.7828490677947684, + 0.9337191096464406, + 0.8914170483629791, + 0.9025061943011616, + 0.8020500656774384, + 0.6678358702014631, + 0.8963676641045393, + 0.8860744654770735, + 0.8239122081907229, + 0.8125066274650953, + 0.9382856434430399, + 0.8387446174952056, + 0.6067184245216976, + 0.9212949333415165, + 0.8785393004451049, + 0.9151977841408855, + 0.9511455937118923, + 0.8875322794474285, + 0.9175335898211955, + 0.487196379633374, + 0.6997097570869095, + 0.8397828174120576, + 0.9104281616411354, + 0.9187373960545179, + 0.6039404896856794, + 0.8804580361536073, + 0.8623822615465467, + 0.7134202416382154, + 0.7657718058360902, + 0.7172412080716387, + 0.572861101129939, + 0.7011631039398057, + 0.639418215873803, + 0.795181520678059, + 0.7629762991271529, + 0.5594555502516897, + 0.7630171180974598, + 0.629375503312566, + 0.6320626799636172, + 0.8824307244059033, + 0.8765592683871989, + 0.7060309101038992, + 0.5004237708056428, + 0.8443206638931502, + 0.8354806574527748, + 0.6284203934639109 + ], + [ + 0.7234687702531881, + 0.6088706165097127, + 0.801306648429036, + 0.6601147703616098, + 0.6622138496621637, + 0.6931616513655169, + 0.5419628871354532, + 0.8104199155373177, + 0.5222919656336699, + 0.6784485340079458, + 0.525791102965844, + 0.7196767089509519, + 0.8643261675500835, + 0.5727359748849653, + 0.8435598446630215, + 0.5479045632844414, + 0.5677137161062106, + 0.7978431001925484, + 0.6710917918773354, + 0.7602061727634938, + 0.8642718586344647, + 0.5584049349284722, + 0.8325343255656683, + 0.6462135861324975, + 0.5849060406163906, + 0.6956899969142977, + 0.8918256159401781, + 0.8610424812970351, + 0.5459811141408433, + 0.5216652743432318, + 0.7294670401701535, + 0.6246605736388806, + 0.7745593856024592, + 0.6621795483970274, + 0.8596872957986134, + 0.7102482909011443, + 0.8170953233220745, + 0.35995149336854815, + 0.6572656715611033, + 0.7757734048175756, + 0.7995161834128507, + 0.7234631518986101, + 0.36215353680501655, + 0.8176121574906631, + 0.8753122791734737, + 0.7310795264213866, + 0.8446310834081667, + 0.6933500348007516, + 0.8850214147068269, + 0.8070376414528145, + 0.8121532065194497, + 0.7001738137410549, + 0.48337632983477613, + 0.5956252526278177, + 0.44090941302734277, + 0.5266305959812501, + 0.6271080858674, + 0.8550935847928817, + 0.532079605762757, + 0.8732048543808292, + 0.48633568181037, + 0.9046271576907949, + 0.5905304538663511, + 0.6462479602443307, + 0.8288293749206268, + 0.6028421990713456, + 0.762375490608302, + 0.8655324913872565, + 0.6885493743460576, + 0.6502473522340284, + 0.6846828238094816, + 0.6141898407047833, + 0.8302203944005051, + 0.8042247867188331, + 0.8859510613965955, + 0.9360207214016633, + 0.9442820221960132, + 0.7388733772586311, + 0.6830969131941823, + 0.8976110406888648, + 0.6497894597540413, + 0.41360841643240565, + 0.7891980445799374, + 0.8961962772708348, + 0.8168557538406969, + 0.7927585732017048, + 0.8066249763456562, + 0.5638834361625877, + 0.4527531015947046, + 0.6388869450963529, + 0.9186258049043352, + 0.8157834356843944, + 0.8350328653211453, + 0.8862029161323933, + 0.8812898293995434, + 0.7053059793957801, + 0.783646075939582, + 0.6255934776519511, + 0.786334092561932, + 0.7146393594315161, + 0.8904169351384585, + 0.7098368486867981, + 0.7238863955355742, + 0.6660605325453871, + 0.9208764679326475, + 0.629918992237296, + 0.6587522118297339, + 0.811908150626314, + 0.7243204915780829, + 0.9452480149776099, + 0.8267951665577637, + 0.7335000272849346, + 0.8891954154533812, + 0.8475652463877362, + 0.8506954662597002, + 0.8457430687830433, + 0.8269621625955601, + 0.903776591622805, + 0.7767366064847971, + 0.8640111076286343, + 0.8679770335795248, + 0.9050253727163282, + 0.8417743192775001, + 0.6658641514705597, + 0.7368080594215924, + 0.7255044972709679, + 0.39095975649698445, + 0.9121181019704616, + 0.6732631426301157, + 0.8844115326170063, + 0.7162708955389592, + 0.6443361075955479, + 0.5071343517503667, + 0.5905868603099718, + 0.6592731246814306, + 0.8360736624700853, + 0.808634351892238, + 0.8866335443277557, + 0.7672285668525322, + 0.9096124877432885, + 0.8195421949716136, + 0.9421577186599773, + 0.8892560614319716, + 0.8247700672825587, + 0.4563217960287371, + 0.8200384149657323, + 0.8487132119939543, + 0.7417930549304014, + 0.5704952100493078, + 0.8529196211081906, + 0.8226184869549825, + 0.7787893657206365, + 0.8438044462931388, + 0.7191475560293494, + 0.8500674504052778, + 0.8716735028069377, + 0.7472919503993903, + 0.7754700374529228, + 0.7154702475566044, + 0.8352530236739734, + 0.8672228831552932, + 0.8115758661417136, + 0.8500036675809863, + 0.886827517593191, + 0.9596389705315208, + 0.9596222064993688, + 0.8880166442483707, + 0.8134404285772543, + 0.8447032153910341, + 0.8955302674562734, + 0.8409133494338179, + 0.8084900171949141, + 0.7213793389668318, + 0.8082440568457786, + 0.9187665995461101, + 0.4259016851922017, + 0.7966755035607052, + 0.8337682952354706, + 0.7393431306555712, + 0.8091794150358441, + 0.6573947258387126, + 0.8810678664709858, + 0.8134992233624496, + 0.9513705097326391, + 0.88069458860289, + 0.9077076883238971, + 0.8954259777493839, + 0.9163383078787789, + 0.7939282326940765, + 0.9137571320582482, + 0.9521611780717673, + 1.0, + 0.9369624035366332, + 0.9307531704497664, + 0.8809372998474847, + 0.7974965767577973, + 0.8098017856773, + 0.8586209295299482, + 0.9436351196724344, + 0.660827898140023, + 0.8255721771045662, + 0.6906239018158872, + 0.7684484451544532, + 0.8815546837199063, + 0.9391459049963004, + 0.9087387959866245, + 0.8575635105282065, + 0.8441776360354182, + 0.5150335580968396, + 0.8592245758657502, + 0.8327415781090899, + 0.8207921820387004, + 0.8665429771936759, + 0.7969039191914781, + 0.898429987147311, + 0.6950976370253591, + 0.8023147909363694, + 0.9265402702577218, + 0.8742400037738309, + 0.9030650143517732, + 0.8812522020806033, + 0.6299192269024597, + 0.9050826351307952, + 0.837985831489917, + 0.7411179593648523, + 0.7875551088470047, + 0.9209001968657007, + 0.8479098800305673, + 0.5722861723599161, + 0.9000155993325754, + 0.8133344611795842, + 0.9509399972840955, + 0.9218970093454831, + 0.8838200602541048, + 0.9199592787383478, + 0.4570052869526062, + 0.6906380535690028, + 0.7628262391534021, + 0.830359270763665, + 0.9091717385379109, + 0.5441736306127755, + 0.8458658502129385, + 0.8855641810123205, + 0.6677288351655446, + 0.8449047611111881, + 0.5500495963390228, + 0.5282904109717171, + 0.5962131326091745, + 0.5755451197945385, + 0.8019449719438442, + 0.7095200729178646, + 0.5450174748628921, + 0.7083564831509903, + 0.5875137072309454, + 0.52740851434846, + 0.8258158299168716, + 0.8824554013280316, + 0.5837194658229309, + 0.4555157849200326, + 0.7779648092271799, + 0.8810889455879696, + 0.6383374026116972 + ], + [ + 0.736403286184343, + 0.5777310545204524, + 0.7039605028739069, + 0.7792497390581985, + 0.7633125960079702, + 0.7814255957196016, + 0.5233387419480691, + 0.7542045667581392, + 0.5882913652207811, + 0.6500780118919051, + 0.4846850847487698, + 0.7453390515426705, + 0.870968617846305, + 0.7025948902040445, + 0.8644499546123627, + 0.7293580156911655, + 0.612954476051398, + 0.7950264818117376, + 0.8222606044731584, + 0.7244968654416831, + 0.8924375996367315, + 0.7424240567968401, + 0.7813604058941438, + 0.700342160110667, + 0.6793358742516018, + 0.794098403657473, + 0.8107350741337856, + 0.814597454486303, + 0.6830970700575424, + 0.6177370963569694, + 0.7946019198214761, + 0.626687064597743, + 0.7985423758570896, + 0.7233208004028222, + 0.8583991870411173, + 0.7975032339332363, + 0.8157075622277645, + 0.505825896785431, + 0.7358587265988766, + 0.8438345123105865, + 0.7737687471296613, + 0.766900965628405, + 0.5749432161217976, + 0.8879281688348958, + 0.8646970870873464, + 0.6979927186239653, + 0.834917329323103, + 0.6850484301100377, + 0.9053193464828918, + 0.8431494303787324, + 0.8451162786218362, + 0.8431356322440943, + 0.6872979271346977, + 0.6911334341856926, + 0.5705856892692719, + 0.6504652565281072, + 0.7506735901771322, + 0.9034884771509221, + 0.6789176347351975, + 0.8443443548372547, + 0.6301579870369624, + 0.9444736313666705, + 0.6783936869407626, + 0.7867957983847849, + 0.7558828552533403, + 0.6217420634466498, + 0.8372307131433113, + 0.8732566346245304, + 0.6549620564985086, + 0.6451623696493487, + 0.7419992039421467, + 0.7080666218030758, + 0.7830805384698065, + 0.843857185174312, + 0.891503014196053, + 0.9527814406313597, + 0.9170298835048135, + 0.8811977802300369, + 0.711373883224312, + 0.9354119003125673, + 0.6905963033475645, + 0.6421424470039945, + 0.7685874174035303, + 0.9618241798345465, + 0.8132967245795747, + 0.7736588302652619, + 0.844272573159202, + 0.6944434699921767, + 0.6396260649573465, + 0.7516300738107717, + 0.9104500090619068, + 0.8177928445829158, + 0.8172595405190244, + 0.8891675460100003, + 0.8858432073146975, + 0.8186919255268122, + 0.7832315112509831, + 0.7789520831505746, + 0.7416484112872855, + 0.67588739285048, + 0.8878227880328908, + 0.8394313234740265, + 0.7817942061117333, + 0.7980015109292643, + 0.8890993625940501, + 0.6204913801718881, + 0.7618215500715648, + 0.8259504673508483, + 0.8250035731773453, + 0.9053203558221006, + 0.8574820193675509, + 0.7868412019932304, + 0.8467640426485025, + 0.9052257660329839, + 0.9285835437546451, + 0.9102063072746133, + 0.8437319354648408, + 0.909221082220802, + 0.7718999404747137, + 0.910117061906169, + 0.8915901754875624, + 0.9419534032901858, + 0.8444946576780483, + 0.7398470480331845, + 0.8128812829644925, + 0.7751949408921375, + 0.5793464578442838, + 0.9200949679419893, + 0.7540372898459538, + 0.9342977532970916, + 0.7890819542882013, + 0.7353662809057324, + 0.5863874372471128, + 0.7250887964635502, + 0.6126756732820661, + 0.8516136039754715, + 0.8776102656872818, + 0.9074734090304034, + 0.7502153604656214, + 0.9253466502151888, + 0.9120748972560462, + 0.9152935181083478, + 0.8885797051875226, + 0.8198590457694733, + 0.6336612553327887, + 0.8275442302301598, + 0.8814491882371943, + 0.7517335483599533, + 0.5837039549295024, + 0.7948521474520228, + 0.8565784278746746, + 0.8357813691775272, + 0.8460417475173495, + 0.724009966073912, + 0.8929618086401666, + 0.926347039710054, + 0.7601332729076248, + 0.8604412970711831, + 0.7748945356147731, + 0.8728463042416054, + 0.8803858986513622, + 0.8429583066521417, + 0.8612886436563439, + 0.8244078939893206, + 0.9043321149783147, + 0.9526612032875379, + 0.873743399421978, + 0.897118167403827, + 0.9125303750998063, + 0.9184254125406547, + 0.8743140824176533, + 0.8591292654056784, + 0.7692236162337023, + 0.8418447521711077, + 0.9723426384341067, + 0.5560293331081676, + 0.8463883867626434, + 0.8376463324081954, + 0.6974962403683125, + 0.8740058621245599, + 0.794581814253376, + 0.9291113878066292, + 0.8508537114034228, + 0.9277122702939051, + 0.8399222351785676, + 0.9160329151003482, + 0.952991227018033, + 0.8842295257579192, + 0.8229508555354962, + 0.8816078470438015, + 0.939255963232427, + 0.9369624035366332, + 1.0, + 0.9283608667857923, + 0.9008175118105716, + 0.7372867945476136, + 0.8274439918703266, + 0.8775969135092037, + 0.8935902231908033, + 0.828925920804925, + 0.8433955639613726, + 0.7079493540370684, + 0.854063028352035, + 0.8690617739565911, + 0.9024725092223939, + 0.929064384951352, + 0.8953860359895979, + 0.9053110810892785, + 0.6710907694674577, + 0.9097778745433102, + 0.7823545744948796, + 0.8042165157827603, + 0.8338498349845068, + 0.8520058841840334, + 0.8860679247460032, + 0.7762983357537991, + 0.8368971747297822, + 0.8942033624678246, + 0.8101542045484506, + 0.9530889347472348, + 0.8188286978147271, + 0.6488014030133129, + 0.9084292117280717, + 0.9187260817408298, + 0.8338941375780679, + 0.8600968875684923, + 0.8801224098162604, + 0.8180058856567934, + 0.5378858637122239, + 0.8684650317552822, + 0.8736583358178575, + 0.9135772071581146, + 0.9486624821720461, + 0.9175795748383927, + 0.9066108132896326, + 0.6092015358692418, + 0.7482593300173965, + 0.7575426683387875, + 0.901620584455848, + 0.9331358007308012, + 0.6115637876562067, + 0.8783838526365372, + 0.8104534333028008, + 0.7872316930983396, + 0.8287452180481998, + 0.7034224862244162, + 0.4873280193874091, + 0.7118297327819405, + 0.6382008743950326, + 0.7185419921028815, + 0.7124052699766702, + 0.6874889780895171, + 0.81776816035969, + 0.6388818446160558, + 0.7039127958824801, + 0.8470570456448464, + 0.9107476945106576, + 0.7319965884139179, + 0.46888404979636805, + 0.8636548876336653, + 0.8821675772204688, + 0.7025373953962405 + ], + [ + 0.8187703730779046, + 0.5788777468611002, + 0.7273810832227042, + 0.6605928993918612, + 0.7746231305400642, + 0.7522193548184508, + 0.5155987244056492, + 0.8424569019373728, + 0.6200085881414059, + 0.6401152749560997, + 0.528452471688465, + 0.7512064855546832, + 0.8582757709406706, + 0.732687534309562, + 0.836296671739862, + 0.706140926044221, + 0.7259329313765818, + 0.7856559582673817, + 0.7849638510397092, + 0.7539511046436335, + 0.8859120985102361, + 0.660605563622326, + 0.8017106963709754, + 0.6728942847167106, + 0.6861393456344045, + 0.7972261662657452, + 0.8753659425356296, + 0.8171952255457346, + 0.6589642963411604, + 0.663579357712896, + 0.8481867177379181, + 0.675136185072961, + 0.7857750000203618, + 0.6826351535309424, + 0.789057928267355, + 0.8565681684693439, + 0.8618433216089298, + 0.42505841933487226, + 0.7615398922566221, + 0.8500296956759956, + 0.8196302389794874, + 0.7418283265558586, + 0.49862881988782876, + 0.7467620528197926, + 0.8252786197124178, + 0.7187496673024744, + 0.9100344023046916, + 0.7184552804142851, + 0.7988464043534494, + 0.869134266122238, + 0.7837333368764501, + 0.7554110064594151, + 0.6345023601996314, + 0.7686078118894242, + 0.6538427312450498, + 0.7066391376879365, + 0.7805524788841096, + 0.9205388130613206, + 0.6142773029788033, + 0.8882524930638981, + 0.6281166937100164, + 0.92188129470572, + 0.6888819043736168, + 0.7667595783023565, + 0.7524948815313394, + 0.6344801812655861, + 0.7927202016291116, + 0.8636989088325329, + 0.7423854106246084, + 0.7734611239195887, + 0.7772463380763264, + 0.6870369002089964, + 0.8200153364897237, + 0.8899768031924604, + 0.885234963196947, + 0.9177419167568085, + 0.9284471806274789, + 0.7937107705383664, + 0.7615401153030459, + 0.9155402991395034, + 0.7496220515300908, + 0.5056674314569983, + 0.7518490901543404, + 0.9330367699923787, + 0.8968485635527871, + 0.832839997778774, + 0.8485424861327655, + 0.6417239391115648, + 0.5616585847457461, + 0.7508623661408239, + 0.8758181683032584, + 0.8309436130147754, + 0.8244225298758195, + 0.92379164192342, + 0.8832762499373549, + 0.8194615025328521, + 0.7967330119739706, + 0.7579395745646849, + 0.771206739022099, + 0.7258841954920482, + 0.9218284040932694, + 0.8118086453843977, + 0.772281376101019, + 0.8059372200286135, + 0.955990967307712, + 0.6061084915771008, + 0.7936147405735934, + 0.8348790333566245, + 0.8150528626185976, + 0.9347124022383518, + 0.9223696483612908, + 0.7141858821644674, + 0.8952998102397773, + 0.8981640171716221, + 0.9244912332819116, + 0.8679488067997952, + 0.9417290511561652, + 0.924757945984593, + 0.7334219352101091, + 0.8719877379412995, + 0.9429547221769439, + 0.9070973241949978, + 0.9012585410039016, + 0.7319106361956408, + 0.7569096089563517, + 0.7279724174770524, + 0.4406428882323488, + 0.8956970111627025, + 0.6740023636919309, + 0.8785908606589534, + 0.7091759383622706, + 0.6643905170821851, + 0.5115995927896088, + 0.6192555219982326, + 0.5949679837830592, + 0.9187134021680207, + 0.9138792340403844, + 0.7921576788952175, + 0.8138265736577647, + 0.9394465239344705, + 0.9128772038281098, + 0.9307582978551258, + 0.9464561133477324, + 0.8949366009081674, + 0.4895088516533859, + 0.8185855588588402, + 0.8798353846272347, + 0.7200415706522613, + 0.5887625086230752, + 0.9176868501015187, + 0.9256954558547816, + 0.8917768228554818, + 0.9186566290772852, + 0.7266367823951561, + 0.8528192294857044, + 0.920673087354402, + 0.8258376540991921, + 0.860605670399795, + 0.8070069817587335, + 0.9293028044629996, + 0.9274997822988459, + 0.8919341115014667, + 0.8711729585712924, + 0.9064850356677026, + 0.9575029978371173, + 0.9474918890215096, + 0.9306695627816934, + 0.8899917119698645, + 0.9247219348660577, + 0.9328421321282817, + 0.8725644955892752, + 0.879246962603821, + 0.7774793469619802, + 0.8423207365195242, + 0.9528499639490798, + 0.5905370743780607, + 0.899302949740125, + 0.8178368681772071, + 0.7945945991169161, + 0.8970842530244991, + 0.7952914205389642, + 0.9633929432615138, + 0.9109795075323202, + 0.9646786751977446, + 0.8626099092839496, + 0.8960660208307487, + 0.8952489286257042, + 0.9253045041354455, + 0.7624492773296746, + 0.9444085304289677, + 0.9688403925275794, + 0.9307531704497664, + 0.9283608667857923, + 1.0, + 0.9179303806420438, + 0.784174984527477, + 0.8571476871283309, + 0.9070164583419802, + 0.9094570742771038, + 0.76174613256853, + 0.8998166748757572, + 0.7506557870819014, + 0.870224911308819, + 0.8869463842530123, + 0.9140048372924877, + 0.949743109786571, + 0.9152282350864351, + 0.8641730672297627, + 0.5732286426489713, + 0.8993790734410017, + 0.8249175299950359, + 0.8674480249847651, + 0.9381636845277278, + 0.8572785591847686, + 0.8649893451665457, + 0.682392911879337, + 0.77919501527944, + 0.9433904019499575, + 0.9336527049744416, + 0.9368974845810378, + 0.831681197066356, + 0.6941466543724182, + 0.9062596211056082, + 0.9045469520550042, + 0.8384765913321854, + 0.7974101497305657, + 0.928761217614367, + 0.9084366808357662, + 0.6259152616677971, + 0.925069640825126, + 0.9168402165012546, + 0.9219988888616295, + 0.969249149518738, + 0.8744760198695358, + 0.9309554887780008, + 0.5375404234748854, + 0.6813740583396111, + 0.8369681409939053, + 0.9256656779122804, + 0.9457039528722232, + 0.6206206543835537, + 0.9014101380624231, + 0.8730838518443771, + 0.7538085933566988, + 0.7988749205813842, + 0.6914240949927297, + 0.6134143699973718, + 0.6846298324659543, + 0.7057446317697544, + 0.8330680985346987, + 0.7342412414397305, + 0.6054305721960036, + 0.7854291705992082, + 0.6196164530974831, + 0.6927450468109407, + 0.8370382746547488, + 0.8950673526810643, + 0.6458084682833418, + 0.48287124098001544, + 0.890215638504655, + 0.8127608266946801, + 0.74472754504534 + ], + [ + 0.6463924969646238, + 0.3989041806514934, + 0.5660202583321555, + 0.6990733500920897, + 0.6974186221267663, + 0.5695886191149809, + 0.3182520543518298, + 0.7061372803385237, + 0.49165784101548815, + 0.579982507958815, + 0.43058425995308663, + 0.6035369481986059, + 0.7119233637052388, + 0.6156350227449919, + 0.7627197547061587, + 0.600684214861074, + 0.5660370656088922, + 0.6176952729089397, + 0.6953926988623234, + 0.6360016639537572, + 0.7632176503466275, + 0.6125095592741501, + 0.7118889456123576, + 0.5326044957326171, + 0.6074676041461783, + 0.6774085815427239, + 0.8149338222456018, + 0.7252977581677592, + 0.49811594593595626, + 0.5395154155177345, + 0.7195026106017797, + 0.5465721639779386, + 0.676502073023006, + 0.5824565612712495, + 0.7116452382534154, + 0.7436346007265489, + 0.7513741906784408, + 0.5577192016149916, + 0.6288546538625412, + 0.8622407000560504, + 0.6679739387897359, + 0.6196896651812511, + 0.5416011053257366, + 0.7417000774925445, + 0.7612452670946198, + 0.66453589173287, + 0.856642790307083, + 0.6214935942290518, + 0.7827188382941738, + 0.942624437869191, + 0.6860663690368232, + 0.6751534065026947, + 0.5442771324317209, + 0.6078538423117757, + 0.5349206212264813, + 0.5618751804145525, + 0.6430078938366979, + 0.8801455640363312, + 0.6481215738807286, + 0.8085675953762135, + 0.5277175087955069, + 0.8991012394660802, + 0.5446206257484135, + 0.6810843191316456, + 0.6636035418461693, + 0.6020965936559475, + 0.6698972088972975, + 0.8019269350599281, + 0.550846060732409, + 0.5888372763221125, + 0.6652646617479837, + 0.5380319095003969, + 0.6981455960229933, + 0.8149021089422356, + 0.7570597528439063, + 0.884338545375981, + 0.8753762259410869, + 0.7610510419455081, + 0.5910230270251186, + 0.8910318814379933, + 0.546178390626622, + 0.5371088878199733, + 0.7235552476179636, + 0.929551788156751, + 0.7902610952064, + 0.716806602284263, + 0.7398376593149275, + 0.5805869795273187, + 0.5863196576317273, + 0.6184902140551541, + 0.7705589980056592, + 0.7133448554310902, + 0.778070341390067, + 0.7873223762381145, + 0.8208628451750858, + 0.7418866221681909, + 0.6991778617605947, + 0.7302748205045129, + 0.6235403017718656, + 0.5354064555591325, + 0.8194268895696654, + 0.7332087247526294, + 0.7734405119878847, + 0.7329584755990421, + 0.8102891837535493, + 0.4613529047734025, + 0.6925076835938101, + 0.7666431416071784, + 0.7990891123866632, + 0.8944888714018387, + 0.8799044132724317, + 0.7338790601432329, + 0.7587643591407893, + 0.7489887153378877, + 0.8797388895387501, + 0.7962398134195863, + 0.8759088794906126, + 0.7913868406186456, + 0.7262110414235479, + 0.8008529494526611, + 0.847199176259808, + 0.8705409869676703, + 0.8291598272208333, + 0.6340747076940233, + 0.75680597682066, + 0.7456153978292215, + 0.5390308450149609, + 0.7882225467646028, + 0.6882199919359039, + 0.8191856580346025, + 0.7054622658612203, + 0.6709263830455382, + 0.5072621620552709, + 0.6701754140468271, + 0.4136618825512349, + 0.8369316730920457, + 0.8281890498782385, + 0.7620621917456935, + 0.9173806309699631, + 0.9062878665758108, + 0.8396023616490474, + 0.8932668412320223, + 0.9034555082025485, + 0.8270246004909317, + 0.4970562986883592, + 0.6960208963536237, + 0.8611232796498622, + 0.8175973991141329, + 0.7167244827975505, + 0.8312028601585917, + 0.8309932652957769, + 0.8306913628714647, + 0.8448871278922638, + 0.6543978734735715, + 0.7980811329092224, + 0.92718077160752, + 0.9080628091998957, + 0.7999995217252087, + 0.715661303659977, + 0.8442898118629776, + 0.8627371490518225, + 0.8559530765884688, + 0.7809318476662936, + 0.8317967365998156, + 0.8541966023050513, + 0.8935901771003362, + 0.8850683466469205, + 0.8466116049080481, + 0.8761368302071608, + 0.8830449666062092, + 0.8374802492040243, + 0.8310304926110043, + 0.7109560303141016, + 0.7642245661021834, + 0.8942966426769833, + 0.6915993162967912, + 0.880509045836084, + 0.8740500649408994, + 0.6318363753140249, + 0.8489326947606258, + 0.6866198366567506, + 0.8798359457498521, + 0.865640176518591, + 0.9000103767705784, + 0.8018474558808956, + 0.7887147620439209, + 0.8223114296302769, + 0.8225220743813265, + 0.7890190051169188, + 0.7887841723416681, + 0.9235998879472531, + 0.8809372998474847, + 0.9008175118105716, + 0.9179303806420438, + 1.0, + 0.7164569586926187, + 0.7580733944497751, + 0.8471700471810001, + 0.9385922641166176, + 0.7017358853719783, + 0.8587790514032458, + 0.703280052377343, + 0.8063880667563704, + 0.9725021753947819, + 0.8874564079040835, + 0.8707819648327831, + 0.8238291755769288, + 0.8501866315935083, + 0.6183925486012345, + 0.8854357343240372, + 0.7730532377007207, + 0.9017772292633114, + 0.8999120985409287, + 0.8159218625026342, + 0.8781887214324842, + 0.6703868190294606, + 0.7939694250264494, + 0.8976968078755952, + 0.8806859649466663, + 0.9067431411332049, + 0.789940704007771, + 0.8087685956384262, + 0.9167487758661755, + 0.886414548148047, + 0.8587196040874056, + 0.7805520106336302, + 0.9663093578796741, + 0.8567345407903888, + 0.46916166449035995, + 0.8066935977612366, + 0.8805665549815229, + 0.8706871237845417, + 0.8971461986444227, + 0.8829137090418888, + 0.864506793768728, + 0.5672992954709879, + 0.6756256507335572, + 0.921091326736044, + 0.914572735012894, + 0.8912841936751345, + 0.4610303497957643, + 0.9455693851981879, + 0.8174124792595225, + 0.7815838509611296, + 0.7782680016765907, + 0.662299150360701, + 0.4119053363518108, + 0.8380742544031551, + 0.7755458058857982, + 0.7540036562776995, + 0.880633980196858, + 0.6182491694669541, + 0.6873829161045206, + 0.49496503956558946, + 0.6067463282648944, + 0.7487527556545007, + 0.9019728995105958, + 0.6557534585815452, + 0.32936575168965787, + 0.8152732046299406, + 0.7828339508561244, + 0.6688856645178777 + ], + [ + 0.684826685974069, + 0.49860287885708154, + 0.6633509862908374, + 0.5762460284212267, + 0.5926461679096439, + 0.5938179877138803, + 0.5156151197644246, + 0.6884112046836122, + 0.4482984826652262, + 0.6327226423799794, + 0.5398263836875938, + 0.45769029155895924, + 0.6840719200066224, + 0.44852166158646267, + 0.667567686423707, + 0.4457332722131054, + 0.4982117105928242, + 0.6637464174405482, + 0.5455497664601432, + 0.6818805512966797, + 0.7517930378504194, + 0.42835488989424064, + 0.6709781193199762, + 0.5966963086013511, + 0.37837044702149314, + 0.5233521714678377, + 0.7916385330182532, + 0.6231108541402283, + 0.5454967476947832, + 0.32843887016052226, + 0.6226959110374217, + 0.6186914141082498, + 0.5536209929140332, + 0.6323646201399884, + 0.7887873903365129, + 0.6022572886346228, + 0.705298507676935, + 0.18850928678750237, + 0.44307967814745, + 0.6530035716615931, + 0.5363853935513926, + 0.554116177592135, + 0.21621383180474082, + 0.7099287248162304, + 0.7917566807752306, + 0.69925053702286, + 0.8601311553099416, + 0.6495024802227871, + 0.7339925746277944, + 0.7367319472477022, + 0.6366116555075778, + 0.4618981532492597, + 0.44555547626849984, + 0.44723006425575174, + 0.3596682427502313, + 0.4158531644475307, + 0.5265865585602373, + 0.6962590944638295, + 0.4875970468369465, + 0.7421652245306581, + 0.39725761656289604, + 0.7162988159272581, + 0.42653669839482883, + 0.5720957782339804, + 0.6070843443756909, + 0.5677349258006251, + 0.6652035171727522, + 0.8442020192275234, + 0.6737127597237349, + 0.6187815497026196, + 0.6978436521415664, + 0.4762996553244295, + 0.6616438520675157, + 0.6861536491916369, + 0.7132791332164623, + 0.804305472171051, + 0.8365176141860853, + 0.48072571629484967, + 0.5192022789504412, + 0.6188700752925056, + 0.5818703582014166, + 0.487741816741612, + 0.5783063211300719, + 0.7529900927981751, + 0.6350359860557478, + 0.690520352603262, + 0.6292914179592721, + 0.5559762624244432, + 0.48206724639075627, + 0.5101229127230636, + 0.740493446343645, + 0.8120070943950062, + 0.7990653227256761, + 0.817163616178571, + 0.7971855070546118, + 0.5531103162451813, + 0.5223056845840336, + 0.5639410689047164, + 0.8390612263129994, + 0.6286171708932273, + 0.7689810890835319, + 0.6227324220056839, + 0.5688850897278358, + 0.6691280060086844, + 0.822275753082395, + 0.6359370482580216, + 0.5731125779821775, + 0.7978357818766603, + 0.7516446592086519, + 0.864452309581488, + 0.8014487234560502, + 0.6754172482633871, + 0.7652015051670842, + 0.6893555501159002, + 0.68204484045814, + 0.6726331773605454, + 0.7299658053462905, + 0.7323471838535879, + 0.7521799630532908, + 0.8120999200484329, + 0.7627937642026362, + 0.7409364770356915, + 0.7833777057372576, + 0.48659196995269655, + 0.6015486656067971, + 0.6635718906432353, + 0.3057026639407477, + 0.7367490639131747, + 0.5304339158095625, + 0.7425570687458791, + 0.5931016737653036, + 0.5599011373986874, + 0.5012909405223251, + 0.5501436094830255, + 0.5667964216223174, + 0.7586739799466323, + 0.7950346742128256, + 0.7576398539125, + 0.7008898786781215, + 0.7971613321638146, + 0.694217660518453, + 0.8109005454871109, + 0.7685488763593988, + 0.7140967413866183, + 0.3562083239723807, + 0.7018960961024726, + 0.6911127923647103, + 0.7058236643845807, + 0.5127680466698544, + 0.7671529145992552, + 0.7397701175018221, + 0.7196441767628545, + 0.7565617536695894, + 0.7078854102462055, + 0.8561960519984132, + 0.8264569937125066, + 0.7886159004468452, + 0.7470526958771463, + 0.7404440840385365, + 0.7035981295509759, + 0.8220900499185164, + 0.7998770203798466, + 0.8422167859740967, + 0.9190514366519483, + 0.83407320057342, + 0.8181847317269548, + 0.8633423498312945, + 0.7519851259231679, + 0.8166955074112344, + 0.8255190815928276, + 0.9068059760256538, + 0.858378199008052, + 0.738696745470224, + 0.584357630622935, + 0.8028933294227565, + 0.4926400855640355, + 0.8086383621460986, + 0.7024989206494668, + 0.662353912203604, + 0.8446379968487329, + 0.5050387355599025, + 0.8437347935420727, + 0.7739690680886818, + 0.8709318906422461, + 0.7902576325508839, + 0.8673495803392265, + 0.7889837610866891, + 0.7329089996950247, + 0.8088426174262127, + 0.7659754944089666, + 0.7117926859953471, + 0.7974965767577973, + 0.7372867945476136, + 0.784174984527477, + 0.7164569586926187, + 1.0, + 0.786889764230226, + 0.8766596987437216, + 0.7136447746622738, + 0.5510192666054592, + 0.8157693443084076, + 0.5232373895948906, + 0.7070835437669971, + 0.7517383929472783, + 0.8558047997334683, + 0.8071813346372471, + 0.6598452811671418, + 0.6926829668384415, + 0.6030062070724931, + 0.8314004633367716, + 0.8493186049281566, + 0.7496562831510276, + 0.8146211600519209, + 0.8032890535074961, + 0.8034258663219058, + 0.5490288730222209, + 0.7382506693790752, + 0.8896404707150306, + 0.8604414448950644, + 0.8306635141767744, + 0.8227171668577439, + 0.5939676779242307, + 0.7371884519934759, + 0.7465000099192867, + 0.7357262552216091, + 0.6966826091262217, + 0.7189517574829052, + 0.8136482421499558, + 0.7355567746857934, + 0.8294215306190186, + 0.7961298202918753, + 0.8921467047126534, + 0.813726786591789, + 0.7873440541066531, + 0.7947272158594799, + 0.29710196226787317, + 0.4446440148108489, + 0.6127319987822053, + 0.6793634563808015, + 0.7544621672806985, + 0.47838528258246316, + 0.6410494146035296, + 0.6592810145611818, + 0.6680806266406227, + 0.885132574008295, + 0.37808193683919955, + 0.62283184731108, + 0.49912489366602764, + 0.682985032304188, + 0.738557256369779, + 0.6045515849176568, + 0.6098458396983412, + 0.5364392825945741, + 0.454941176057489, + 0.49871865878835847, + 0.6276872383860683, + 0.8515707563781354, + 0.34346555917340627, + 0.47730225945932575, + 0.7647048075334973, + 0.8159154190441743, + 0.8517522626619443 + ], + [ + 0.8425513374922514, + 0.6348846327019175, + 0.7557753397093174, + 0.7595403667356063, + 0.8565590325646307, + 0.8031069869220614, + 0.7278932803070647, + 0.8789973546824973, + 0.7876447570496893, + 0.8514751280713222, + 0.7449422136756217, + 0.712668464038609, + 0.7896994450528246, + 0.6761779564232306, + 0.8535782267834187, + 0.7797946343477398, + 0.7723844134697844, + 0.8960179242734639, + 0.8712522384667548, + 0.8718526543810902, + 0.8797338859912052, + 0.7549074436748161, + 0.8392841208625863, + 0.8451753108136825, + 0.6379309788685712, + 0.8121813948982708, + 0.7800422401964481, + 0.8550356375009941, + 0.827825568724057, + 0.6122905892067604, + 0.8106009807279341, + 0.7042645778796186, + 0.7719010921850813, + 0.7627594103844272, + 0.888851725557121, + 0.8855060010713598, + 0.8850223857959986, + 0.46609934691113336, + 0.7026179099794726, + 0.8527237415746866, + 0.8050781974921299, + 0.6987981150688273, + 0.44787758219839846, + 0.7540423473649507, + 0.8146225270790385, + 0.8645645621795094, + 0.901740748803157, + 0.885690910237984, + 0.8691641104001313, + 0.7889368013991233, + 0.8422567177968407, + 0.7500620081065331, + 0.7941872381356043, + 0.7794633892822315, + 0.6492374569653917, + 0.7526537541157279, + 0.8310812117341392, + 0.8530670449085905, + 0.6406151054456248, + 0.7927164087499283, + 0.7530950443364596, + 0.9201938683773263, + 0.7786646289605228, + 0.7821780272639138, + 0.844527830583037, + 0.8064326888006719, + 0.8677149482376681, + 0.9354083686792254, + 0.777467141062203, + 0.7942551702078383, + 0.9000502290768335, + 0.7614309192981655, + 0.8550028812866078, + 0.8719135826468896, + 0.8625557080103773, + 0.8516912044208446, + 0.8505740000723014, + 0.7598264628274017, + 0.8419838157779389, + 0.8090993685673555, + 0.8334218407169971, + 0.6765695842780455, + 0.7877509122862113, + 0.8401455209107516, + 0.8515442705461481, + 0.8286463124814075, + 0.8935658169332156, + 0.8531086953909487, + 0.7585483693651273, + 0.7922029373222653, + 0.8740293689655668, + 0.9464577522275622, + 0.828410330633457, + 0.9054834191299285, + 0.9266536385864379, + 0.8215898114937314, + 0.7209634146983966, + 0.8369700325801944, + 0.9012546657730088, + 0.7854266930718958, + 0.9053748126338026, + 0.8725811881467543, + 0.8068316515898789, + 0.8820963310320289, + 0.9063493353908739, + 0.8312244316328161, + 0.8632899757204928, + 0.9713006890820346, + 0.8520413800604795, + 0.9130124184873688, + 0.892699888215598, + 0.8462439243966406, + 0.8603385987625527, + 0.8718021795910383, + 0.8580752318445074, + 0.9134700746265516, + 0.8913783318851011, + 0.8993378925814911, + 0.806509109765146, + 0.9214019236157754, + 0.8908389177649911, + 0.8667538960520811, + 0.9087663641515044, + 0.8025541925855558, + 0.8529588111581948, + 0.8694104698443241, + 0.6257935701026998, + 0.892682048950985, + 0.7776726011991725, + 0.7854517504177589, + 0.8608676291513502, + 0.8307709728413556, + 0.7620564128413985, + 0.8014837978483369, + 0.8298409387836656, + 0.8661322218456114, + 0.9060581007159488, + 0.8331470325993853, + 0.6831968694013874, + 0.8769632860322172, + 0.8871511582779132, + 0.9023401874067091, + 0.8391827963219077, + 0.8876749574658347, + 0.7094992088784183, + 0.9230295378694039, + 0.8002105976932149, + 0.7379218253708192, + 0.5960610638030037, + 0.8207650958929511, + 0.894930009773749, + 0.8666537483345911, + 0.8922277022766594, + 0.8787357950776229, + 0.9116873868343853, + 0.8895700103084794, + 0.7417874674902509, + 0.9537787184087468, + 0.9097164891143096, + 0.8880623516328846, + 0.9437903891531775, + 0.9022718099621748, + 0.9745730811527225, + 0.8666243031769828, + 0.8743000918276187, + 0.8628595857341077, + 0.8772296527984703, + 0.9316395783436552, + 0.9281430974254714, + 0.9349574810966301, + 0.9362484606531604, + 0.9458667177186311, + 0.815237467987536, + 0.7139733752524664, + 0.9012068942351484, + 0.6030828713532904, + 0.8765716706384991, + 0.7538960394029091, + 0.8260582950415012, + 0.8910298133705622, + 0.7390767405762418, + 0.904772436421017, + 0.8918534023541045, + 0.9096735736715723, + 0.8642412286313634, + 0.90135575327715, + 0.8913335922162098, + 0.8786322395763685, + 0.8382631036116277, + 0.8203261002298642, + 0.8394267679888351, + 0.8098017856773, + 0.8274439918703266, + 0.8571476871283309, + 0.7580733944497751, + 0.786889764230226, + 1.0, + 0.9370594156376737, + 0.7516906452533482, + 0.7187675614089045, + 0.9339505250152024, + 0.7812882789412111, + 0.8156291079150173, + 0.7763209858288709, + 0.8527668822491158, + 0.8941467535484187, + 0.828269909459337, + 0.8774042414309211, + 0.786266788647635, + 0.8609873821006083, + 0.8683379255757226, + 0.7817080472389012, + 0.8618352330023367, + 0.9636443170562063, + 0.8773949262265303, + 0.617222752615287, + 0.7813642467181323, + 0.8880812655842412, + 0.8327260915518726, + 0.8741411482957254, + 0.7925873341292523, + 0.5838974371161282, + 0.8603919811030958, + 0.8654093041286439, + 0.7780630982048532, + 0.7819107500141252, + 0.7875212116581577, + 0.8586402581849781, + 0.8016764623193793, + 0.913791664575264, + 0.9018655394061724, + 0.9088241319232915, + 0.9254230396347418, + 0.8712903230335746, + 0.9136289280427704, + 0.5825654798142981, + 0.49079407001491826, + 0.7358873106989365, + 0.8539062611890795, + 0.8430325475097867, + 0.7686413268899259, + 0.7891009619619758, + 0.7571275836422012, + 0.749204767641754, + 0.8043486434015915, + 0.6545788975703559, + 0.7824750164904617, + 0.5754020328353856, + 0.694869782327904, + 0.8587779762918687, + 0.6790886331271252, + 0.7014939016937884, + 0.7674414844585614, + 0.8037197043272067, + 0.7294228178778424, + 0.8047216111863252, + 0.8528733042267233, + 0.6384656395246525, + 0.7149896362828665, + 0.9202131896952357, + 0.8908483160565853, + 0.6592907945034738 + ], + [ + 0.8158385362907584, + 0.5174802454525185, + 0.6436623602742021, + 0.7026738962386884, + 0.7680702749325111, + 0.7239289761308073, + 0.5595171859634211, + 0.8127410718464254, + 0.6751090271282649, + 0.7226650960214873, + 0.5835445010471868, + 0.6441887590230233, + 0.7579149203761281, + 0.6824548780057279, + 0.7959134161211561, + 0.7198964979988919, + 0.7015808734542773, + 0.7934304740429226, + 0.7961844880307385, + 0.7536734590164881, + 0.8605675196859821, + 0.6715601036512091, + 0.7185453118147755, + 0.7035982567108194, + 0.607799703659585, + 0.7193723754738569, + 0.7492425128604335, + 0.7625955641928027, + 0.7190519250822176, + 0.5498418872776497, + 0.7673634015000088, + 0.6232130965451351, + 0.7011912677079748, + 0.6946423006495427, + 0.8261880087515773, + 0.8345547400845613, + 0.840141869155746, + 0.4367504119722361, + 0.6691469084295002, + 0.840430536892582, + 0.667769171537941, + 0.6255405715377678, + 0.4164616211892209, + 0.7646416097417172, + 0.7812265640607919, + 0.7809965981659608, + 0.9296661132135637, + 0.7474760434253815, + 0.8288813075590501, + 0.8745286738466679, + 0.8166664505754218, + 0.7259809043107824, + 0.7302854325579344, + 0.6857341563650127, + 0.6116203224279135, + 0.6849831205649974, + 0.7533077797446647, + 0.8592236687526312, + 0.606559533931273, + 0.8523866920564509, + 0.6891228982813682, + 0.8961250050452437, + 0.667216794375754, + 0.7468526501027972, + 0.7036110347503425, + 0.6692945427941531, + 0.8203001720568788, + 0.9391239537065279, + 0.7155059257721241, + 0.7255820564587226, + 0.8394131160929915, + 0.6702698171867347, + 0.7820398985708528, + 0.8667954596060929, + 0.8461706746101979, + 0.8737449765263583, + 0.878080225557741, + 0.7302439748469641, + 0.722158072595124, + 0.8289872743000388, + 0.7280962144524041, + 0.6707250679217999, + 0.7928797021530444, + 0.9091460724446189, + 0.8183828734936648, + 0.7914968297961278, + 0.8297797821434074, + 0.7399989903759788, + 0.720920994623514, + 0.7075797504441756, + 0.8231627806631171, + 0.8890240370654285, + 0.8252065881017263, + 0.9050486337304648, + 0.9138090214464032, + 0.7949730294004784, + 0.6937581920923199, + 0.79954183515028, + 0.8478668394839359, + 0.6836876733600481, + 0.8661671015480497, + 0.8437880196336823, + 0.7852922132143874, + 0.8667134710357336, + 0.8940962245248304, + 0.6746739390751441, + 0.7894499416267214, + 0.9225818410132496, + 0.8791422247651708, + 0.9170052356082669, + 0.9473905241417989, + 0.8059885151678807, + 0.8529212711990701, + 0.8449230020002303, + 0.8862617738845022, + 0.868728808977669, + 0.9069736127842405, + 0.8603637040393812, + 0.8169466147571027, + 0.9392591793893764, + 0.8878314968397084, + 0.9273856387478054, + 0.9117245140419696, + 0.7524454793592712, + 0.8196072276323704, + 0.8648914126952418, + 0.5755231815173518, + 0.8540524548817718, + 0.7134719944803607, + 0.8310952980969272, + 0.7985876409905432, + 0.7318365386302271, + 0.6920154331259747, + 0.759638223596525, + 0.6568327018892235, + 0.8714432223879595, + 0.9364268427624777, + 0.8313304912765314, + 0.7688208160629522, + 0.8967986529472617, + 0.8841384620964943, + 0.9036549030256046, + 0.8463246024884555, + 0.8504240303543245, + 0.613945591537198, + 0.8161613222407614, + 0.8105765317128892, + 0.7806382500613731, + 0.6028401819044547, + 0.8658697177472771, + 0.9064983087055989, + 0.8819930062343566, + 0.8845859962927263, + 0.8422941375218068, + 0.9382275873454359, + 0.9365164842740302, + 0.8687982885113334, + 0.9295231225049025, + 0.9098211707305606, + 0.8967650948044507, + 0.9588701462986234, + 0.9314761473862065, + 0.9561811031460038, + 0.9278415971107963, + 0.8911877412281811, + 0.9231440725469241, + 0.94770899513617, + 0.9383789790549496, + 0.9500458324516492, + 0.955835832403859, + 0.9671540130837433, + 0.9576070222840094, + 0.8270238784829339, + 0.7018979125647702, + 0.951001420643888, + 0.6461648453454805, + 0.9610000012388589, + 0.7743928029503272, + 0.7620778242583172, + 0.9618118616514706, + 0.756131830554555, + 0.9628325655368257, + 0.933758609852303, + 0.9345592613591834, + 0.8459429512836156, + 0.9099822394778341, + 0.9072746317602889, + 0.8767942126973265, + 0.8619987314113855, + 0.866205028630508, + 0.8767662337993911, + 0.8586209295299482, + 0.8775969135092037, + 0.9070164583419802, + 0.8471700471810001, + 0.8766596987437216, + 0.9370594156376737, + 1.0, + 0.7993605937170621, + 0.7502426637965361, + 0.9303348709395333, + 0.77986897788979, + 0.8513313734573024, + 0.8528926594092472, + 0.9188250359502833, + 0.9111087892184031, + 0.799267355843823, + 0.8749750705014645, + 0.7703580413728713, + 0.9309690656418054, + 0.8666892978440114, + 0.8174714971774376, + 0.8948088566765144, + 0.9356175611503235, + 0.8900924008929779, + 0.6692260352501076, + 0.8423249241941261, + 0.9609100165323653, + 0.8819143479517538, + 0.9411810061420148, + 0.8128013821030268, + 0.6882547612216988, + 0.8990915061664234, + 0.8831452598662342, + 0.8872216084280279, + 0.8122274404955391, + 0.8295388035050197, + 0.8799009689052163, + 0.7508777672628203, + 0.9310752571085128, + 0.9495606346694816, + 0.9443004536970117, + 0.9478547186323859, + 0.912534510491736, + 0.9077452482785335, + 0.5620397909394598, + 0.5576915542756616, + 0.7531569254189808, + 0.8662123953697832, + 0.8965618304564807, + 0.6833652805882456, + 0.8248694337343625, + 0.7222759471326882, + 0.8081817655948782, + 0.8790494983346279, + 0.6658755375543799, + 0.6482563698624393, + 0.7015007904894222, + 0.7784015287671854, + 0.7772630209076064, + 0.7637503413174606, + 0.7087005120736461, + 0.6985903452963202, + 0.6001884352930449, + 0.6478363416689182, + 0.7569306597026932, + 0.8975022371772479, + 0.61521897210634, + 0.5371821812982921, + 0.9280276165902527, + 0.8616928114371174, + 0.7622090307847894 + ], + [ + 0.6210018738653852, + 0.48838630477915945, + 0.6801025818514967, + 0.6716357983169193, + 0.6907742995921048, + 0.6306359489232658, + 0.41509694079613507, + 0.7373823837722006, + 0.4137613820594235, + 0.6015665303407555, + 0.4344586371201135, + 0.6873968513662577, + 0.771255697278483, + 0.5758786220095669, + 0.7749750119190788, + 0.5263498853748274, + 0.47315630822652266, + 0.6707831646139418, + 0.6489163891369444, + 0.6836666439657638, + 0.758469030670092, + 0.5622588788584078, + 0.8080491335315442, + 0.553552890596612, + 0.5197755922315108, + 0.6906972874607878, + 0.8786232886394966, + 0.7899119149083778, + 0.4830764881147477, + 0.5069454294936864, + 0.6700190868666345, + 0.5763819542678407, + 0.7326327934739258, + 0.5898347343254696, + 0.7812636221698812, + 0.6913545848567482, + 0.747525747904852, + 0.4998910984346949, + 0.585812080265416, + 0.7593543261005328, + 0.7657416423239124, + 0.712847343114087, + 0.42648446352149905, + 0.7632354668308503, + 0.8258571442111287, + 0.698997716071755, + 0.8146077453407885, + 0.637890395739038, + 0.8338162449424454, + 0.8307470166191837, + 0.6803540191112907, + 0.6855729100993385, + 0.45190719930092804, + 0.5548209621969513, + 0.41832925818073674, + 0.4900870812228222, + 0.5783843485070949, + 0.849993857220067, + 0.6153058181915376, + 0.8204012563288365, + 0.3972379105670731, + 0.8886136433373995, + 0.5130456967214464, + 0.6012989644240938, + 0.7794078770834475, + 0.6063778490730906, + 0.7111529906285986, + 0.8274130729885261, + 0.5977255537236873, + 0.5824272282164284, + 0.6481964497079024, + 0.5678404984802587, + 0.7345751717517156, + 0.7392692692781451, + 0.8218678176245697, + 0.8950040916822226, + 0.9224501919590807, + 0.7684955621732421, + 0.5708636448480978, + 0.8933048022511633, + 0.5632033169281525, + 0.43305002496799827, + 0.7306431717126675, + 0.8986842787676578, + 0.7673266980658565, + 0.7092838633473353, + 0.7336272823814385, + 0.5586179676787985, + 0.5054545924204544, + 0.6692180997413404, + 0.8389832575909628, + 0.7357873466513333, + 0.8433606990004123, + 0.830047604335408, + 0.8230818296451765, + 0.6956888836120659, + 0.7086919782722102, + 0.67674695388467, + 0.6769920550622899, + 0.6067609630688416, + 0.8524787885437612, + 0.6673432631997086, + 0.7255388959708153, + 0.6865003953479784, + 0.8518742230720019, + 0.4795883816876386, + 0.670818782258553, + 0.7410917768864269, + 0.7395992123821173, + 0.9173552978280863, + 0.8179360555213082, + 0.6839053529885075, + 0.779241520163279, + 0.7440056069501717, + 0.8420460573634577, + 0.8115093001445735, + 0.8316260628067679, + 0.8191982679858913, + 0.6847143753647081, + 0.7872736377924829, + 0.8438841103038942, + 0.8756548859251759, + 0.8022996479665783, + 0.5483351775944784, + 0.6988046399038222, + 0.6803725766136088, + 0.48584888654570185, + 0.8470610318411053, + 0.678853621134566, + 0.8409904249112085, + 0.6596843735425706, + 0.6216277225347674, + 0.44091310517916404, + 0.5937704980276913, + 0.5155681474677224, + 0.7939843281079183, + 0.7643808777205002, + 0.7993697480483145, + 0.8294295623643152, + 0.9071567283785154, + 0.8047675122096428, + 0.9010476609891542, + 0.9033913474714764, + 0.8204098048708732, + 0.4829623783474231, + 0.744722799097062, + 0.8844625846131419, + 0.8222086580894619, + 0.7063604530842058, + 0.8249035125556428, + 0.7929029313306587, + 0.76714127339576, + 0.8229838531894375, + 0.6093358316635993, + 0.8025404328698663, + 0.8692733764221695, + 0.7820991080398672, + 0.7341897027696742, + 0.6097088673987455, + 0.787612380141447, + 0.8198389889884258, + 0.8066482306671618, + 0.7566863962864724, + 0.8332089356720768, + 0.8931982844272933, + 0.9097781722329046, + 0.8475094893841282, + 0.7946588389898227, + 0.8319523832811488, + 0.8699055015087318, + 0.8001031419755277, + 0.7901525999824176, + 0.6552367119894636, + 0.8188152349174973, + 0.8737405547481533, + 0.5209302010047933, + 0.7832840554383259, + 0.9133850917886283, + 0.6338590198683121, + 0.7672994383848539, + 0.6265905644891275, + 0.8454025526103658, + 0.8253884972502576, + 0.9079257919160003, + 0.8602918699706058, + 0.8086105368030396, + 0.8241647824604657, + 0.8208629400626332, + 0.7327747957008018, + 0.80411609658391, + 0.9237822219779688, + 0.9436351196724344, + 0.8935902231908033, + 0.9094570742771038, + 0.9385922641166176, + 0.7136447746622738, + 0.7516906452533482, + 0.7993605937170621, + 1.0, + 0.6707303412231604, + 0.8227934778276279, + 0.6373599854347296, + 0.7303271038345718, + 0.9392401461621982, + 0.9082869920585672, + 0.8809594142638407, + 0.8555556502356038, + 0.8352777568084503, + 0.5464740136812045, + 0.8610425878682902, + 0.7930786314585929, + 0.8561823130480469, + 0.8618183056620086, + 0.7473738100451932, + 0.894704935471368, + 0.709309268531455, + 0.786831604700085, + 0.8746325367308856, + 0.8677593340607805, + 0.895242948414553, + 0.8417610462414374, + 0.7358407609345867, + 0.927814220311864, + 0.8051716738243968, + 0.7401053059122756, + 0.7359465126257638, + 0.9725083164661857, + 0.8488154145116592, + 0.4230350540228948, + 0.7884956907906929, + 0.8125725374394408, + 0.8819603365252796, + 0.8879990274191946, + 0.8673016974057146, + 0.903052382531759, + 0.5200120073263074, + 0.7363950753381368, + 0.8713912352402304, + 0.845651866279531, + 0.8886355976766847, + 0.43905990517552923, + 0.9258235114981138, + 0.8877966701797233, + 0.7056817261044327, + 0.7909980929059647, + 0.5260662779298764, + 0.3856934981730191, + 0.7201686379540071, + 0.6618143423037045, + 0.7841525645511519, + 0.7814270448446506, + 0.5857177343409011, + 0.7319443708275528, + 0.5563823330100526, + 0.5740185963394646, + 0.7476360805578267, + 0.8908739278199118, + 0.6098367735683867, + 0.31204858107371986, + 0.7607360660866823, + 0.8001042602080857, + 0.5934116064315879 + ], + [ + 0.6640016921893587, + 0.36258059696322975, + 0.4073487896701377, + 0.6055922615733692, + 0.7320285090833983, + 0.721206426523689, + 0.3604474834002475, + 0.6101621963140782, + 0.51068703685942, + 0.3990381287906916, + 0.2924338810399936, + 0.6671758825271991, + 0.6606313536313704, + 0.703193235533038, + 0.647629126189332, + 0.7981257500689045, + 0.5497757629744242, + 0.6106783246469715, + 0.8133002562062775, + 0.4443826964320701, + 0.7177699717297644, + 0.7939076664111124, + 0.5344721525499777, + 0.5506437047855196, + 0.5898360337110284, + 0.7613860066351519, + 0.5412514871316614, + 0.5745539486571604, + 0.7267627685121434, + 0.5662823934798967, + 0.7014379128331306, + 0.47694357536022064, + 0.6562010747097642, + 0.7490149438046374, + 0.6290496725743964, + 0.7911633643589548, + 0.629128072413349, + 0.5684457182934705, + 0.7163214574235222, + 0.7548314268095431, + 0.6561877639662764, + 0.7872802041822866, + 0.7240362813811979, + 0.6990754976074275, + 0.6670253698063677, + 0.45790544190996363, + 0.6994968758008874, + 0.49662890252684744, + 0.6657540093682089, + 0.6917887898776304, + 0.6526093753912735, + 0.7919912142115942, + 0.8277065583832949, + 0.6475532999944367, + 0.6675228492567998, + 0.7485520756178018, + 0.764288019863305, + 0.8216372877663524, + 0.671381178576428, + 0.6355531619428982, + 0.6503698025696444, + 0.7752795302255505, + 0.6706377079022747, + 0.7957312358337679, + 0.4941709910416731, + 0.46427902877435456, + 0.7580825222688254, + 0.7381405319093336, + 0.48642385606789607, + 0.5318277958213813, + 0.6423632665716699, + 0.5903802580230856, + 0.5247347327733499, + 0.7269204754916123, + 0.7093822644641794, + 0.7990536901774327, + 0.7614898471604106, + 0.8803224475023393, + 0.6371086447753616, + 0.8103347392893696, + 0.6011468348582778, + 0.7295482910632656, + 0.6004927232624524, + 0.8769159592237169, + 0.6321994719203534, + 0.569902876667018, + 0.6535445616170392, + 0.682094612292122, + 0.7305199322893637, + 0.8114046252255391, + 0.6995172339036947, + 0.6711512997589223, + 0.6175551888582917, + 0.7483640863020282, + 0.662421896142996, + 0.8402720268455357, + 0.5476003380933496, + 0.8111390504907979, + 0.5498826208349717, + 0.47518472759872876, + 0.688228554294949, + 0.8670698808542407, + 0.6778309470573592, + 0.8390173131110054, + 0.6955985058972426, + 0.41777673891280903, + 0.7221590492611456, + 0.6833889182479157, + 0.7497296951716186, + 0.6913608767020131, + 0.7580500745829755, + 0.6189011402720285, + 0.6572476790092358, + 0.7774559968677369, + 0.8313863703813305, + 0.7650024239582018, + 0.7634322389162197, + 0.6951159336307904, + 0.48531845860647355, + 0.7935809574224835, + 0.755338482615768, + 0.832703515149556, + 0.6883942336807151, + 0.6252826523094649, + 0.7283915394381013, + 0.6419528507714711, + 0.6094599405498333, + 0.7410974692228385, + 0.5977805293245234, + 0.8426097787663567, + 0.6522298024375661, + 0.5920886076017595, + 0.5299716866078837, + 0.6838204104702178, + 0.5029623857165711, + 0.7081251129890189, + 0.7760039658557114, + 0.6638594884870855, + 0.5533049490307286, + 0.7536113786003257, + 0.8602600801898703, + 0.6353827559218512, + 0.7357104333494102, + 0.6121358784607697, + 0.6925389472761528, + 0.6293243412752803, + 0.6753740762666576, + 0.6006126621289427, + 0.4424693943729666, + 0.5995007937424683, + 0.801812928709937, + 0.7673629977691016, + 0.7505837675986428, + 0.5640350600333147, + 0.754870628074181, + 0.7960140169600459, + 0.6016282598132099, + 0.7527130844853712, + 0.6601269633663229, + 0.7429669936947064, + 0.6821221517061586, + 0.7286669231222092, + 0.6691208456025252, + 0.6115561222257737, + 0.6629481127944864, + 0.7127161904035568, + 0.6887116881863221, + 0.8058679547358695, + 0.8065898675972242, + 0.745595752685787, + 0.7308849294083829, + 0.7710879506401803, + 0.6816772301279223, + 0.819464509243947, + 0.8559055781168208, + 0.635842352867517, + 0.7636952530428658, + 0.6648854777561305, + 0.49401616511109525, + 0.7933363356290302, + 0.7848863133215157, + 0.8185086001029824, + 0.7694223082546422, + 0.705701611990733, + 0.6049336240686205, + 0.7463936266951301, + 0.7977537766043462, + 0.6395026477039836, + 0.6460123263675799, + 0.7039979400901047, + 0.7088097580764245, + 0.660827898140023, + 0.828925920804925, + 0.76174613256853, + 0.7017358853719783, + 0.5510192666054592, + 0.7187675614089045, + 0.7502426637965361, + 0.6707303412231604, + 1.0, + 0.708427122981815, + 0.5306557572628997, + 0.8282646517102806, + 0.682083086138544, + 0.6807061295976002, + 0.8091468720317132, + 0.8067003614345698, + 0.7649972469690387, + 0.7017911384915041, + 0.8191938875617325, + 0.5823929534928688, + 0.6353542786991698, + 0.6459076683606317, + 0.7296692960777194, + 0.6260463385911399, + 0.7842756210560893, + 0.6620935320310102, + 0.686043600597054, + 0.6218019001231556, + 0.8328147927311174, + 0.6061445087970637, + 0.5865572879384932, + 0.7651572011747904, + 0.8219516337362522, + 0.6936734893386028, + 0.7708737145717827, + 0.6209548605992236, + 0.6874762053245141, + 0.3607760096426499, + 0.6346040143963748, + 0.7843728038789578, + 0.6501596078094742, + 0.7758448444373447, + 0.6867101808135814, + 0.7003538051867717, + 0.795343536259078, + 0.7657646728039639, + 0.6177210949203609, + 0.8137528801659275, + 0.8130452502085489, + 0.585478904517139, + 0.7611764263670886, + 0.6024822081383238, + 0.7171261244397122, + 0.6433454920470615, + 0.7320541776163453, + 0.39054365483396425, + 0.7114582598470894, + 0.6689849495006146, + 0.5384312512508532, + 0.49481681912943337, + 0.7005604951941883, + 0.7747201681127136, + 0.6052134337212903, + 0.7920918702339602, + 0.6989369193754843, + 0.7716133305918155, + 0.7994334151322153, + 0.3249175769298292, + 0.8009413558221568, + 0.6209528731341871, + 0.613031182667023 + ], + [ + 0.815470814493188, + 0.5969055109122728, + 0.6859383304052669, + 0.7255647653772768, + 0.8853348846299747, + 0.7705537346552336, + 0.6479125183895511, + 0.8525441469417486, + 0.6685548444359835, + 0.817589863043629, + 0.7306287146757809, + 0.6975244294684618, + 0.7269192482167705, + 0.7470508744970843, + 0.8302421410735024, + 0.730505595108432, + 0.7111290634475805, + 0.8057298885553901, + 0.831569444622111, + 0.8073101128929554, + 0.8920094245672805, + 0.7668337823665741, + 0.850402350252203, + 0.8096669173521065, + 0.5987570229468122, + 0.7916580332048353, + 0.822574109369499, + 0.8106901682169206, + 0.7815454021595976, + 0.6156731770342766, + 0.7841109732876708, + 0.7398950614923795, + 0.8093868442176243, + 0.7739765453526195, + 0.8385139447165204, + 0.8849935102209249, + 0.9295378201079494, + 0.43656665704044245, + 0.6557818995612494, + 0.870242609802409, + 0.7585719703560209, + 0.6277034641957434, + 0.4348669807247261, + 0.7698847064561993, + 0.7914070005222443, + 0.8778314510182301, + 0.9564388108423669, + 0.8478320517305212, + 0.835695912643228, + 0.904114340136834, + 0.8206341434860089, + 0.6933672596480742, + 0.724825496652722, + 0.7760394450141996, + 0.6662091020737652, + 0.741745268406248, + 0.8209414673215876, + 0.86048477515607, + 0.6255371412128911, + 0.8846927415335828, + 0.6609341404924298, + 0.9238637121660788, + 0.673215642967367, + 0.8000672131241688, + 0.7627714305518025, + 0.7135439659418796, + 0.8336199060803722, + 0.909829182432449, + 0.8002265595858785, + 0.8199643833071301, + 0.9001696748942944, + 0.7162541097550238, + 0.7853794336790624, + 0.8480337212648433, + 0.8772509491569049, + 0.8625876892357828, + 0.8592487233498963, + 0.7235127340315648, + 0.7537506761038487, + 0.8103596098543475, + 0.807827310615449, + 0.6317864309269123, + 0.7882128438179086, + 0.8487900424268251, + 0.8593599576530059, + 0.8345880591459172, + 0.8352138399144774, + 0.7728078356321287, + 0.7054502766315527, + 0.7415416261748656, + 0.8444885015592423, + 0.9023416133357601, + 0.8431453440084729, + 0.8952988368468967, + 0.8963973679065149, + 0.7938311543382319, + 0.7159158221182389, + 0.8593452280436119, + 0.8802242232125869, + 0.7959262023111338, + 0.9183342782063433, + 0.8525633626956699, + 0.7520378088991594, + 0.8951710784921847, + 0.9128621121245818, + 0.7432411540869447, + 0.8366168950702673, + 0.9371168920625823, + 0.8729505971768967, + 0.9229093716683521, + 0.960556765752076, + 0.7905334388150013, + 0.815337340467243, + 0.814842680746897, + 0.8699079074131838, + 0.8565756846840336, + 0.946230926644955, + 0.8825322883293493, + 0.7530423663338814, + 0.8730949209861275, + 0.8990954940946706, + 0.8672545404670872, + 0.9319909846524446, + 0.7350453037415743, + 0.7479431078362175, + 0.8168701242961316, + 0.6064470404403454, + 0.8727167872918153, + 0.7007451772218924, + 0.7753124978919461, + 0.7671719216192724, + 0.791173913261518, + 0.6530185080477331, + 0.750786047636302, + 0.6687825050524396, + 0.8995867568125976, + 0.9604101715027529, + 0.7920177463214477, + 0.8477590178895985, + 0.932592434593746, + 0.8987099355536134, + 0.9061869729208261, + 0.9095727615114203, + 0.9482490690380138, + 0.6030923061494005, + 0.8562729056800493, + 0.8428511282542429, + 0.8625784672079788, + 0.7625922892665172, + 0.8972947489994195, + 0.931553205490816, + 0.9497037971907022, + 0.9243021188830257, + 0.7733517613929122, + 0.8916070306784513, + 0.9220058903574634, + 0.8790945519492545, + 0.9522009006188897, + 0.8939528008928217, + 0.9019681677354521, + 0.9630999201191823, + 0.9787303163292886, + 0.9271294686970715, + 0.9130693177826195, + 0.8949234406917898, + 0.8783425518147432, + 0.936507669881547, + 0.9306841530844663, + 0.9540549236155775, + 0.9273312375335867, + 0.9465830897298658, + 0.9677735047939992, + 0.757729765367044, + 0.6630837182534252, + 0.8986136565022885, + 0.7324944262908091, + 0.9459086107686366, + 0.8547586005556222, + 0.8413361954603841, + 0.9186247154441046, + 0.741318917947672, + 0.9340369596179817, + 0.969751778115263, + 0.9287534489319949, + 0.8927124964263269, + 0.8817402424556359, + 0.8980287284430151, + 0.8527476183590057, + 0.7829484005291434, + 0.8111849632319564, + 0.8679148343504179, + 0.8255721771045662, + 0.8433955639613726, + 0.8998166748757572, + 0.8587790514032458, + 0.8157693443084076, + 0.9339505250152024, + 0.9303348709395333, + 0.8227934778276279, + 0.708427122981815, + 1.0, + 0.7214346086724421, + 0.8324258175185155, + 0.8623753970614146, + 0.9035538884117825, + 0.8980337929853013, + 0.7915752113412514, + 0.8281893288217872, + 0.7567956686607691, + 0.870984371905745, + 0.9021097047053614, + 0.9100694089807778, + 0.92617498297358, + 0.9318289084124608, + 0.8834919885781964, + 0.5348116684865244, + 0.7640241063562602, + 0.920612678673323, + 0.9131201088114638, + 0.8988401560400394, + 0.7934792464652723, + 0.7834622407649425, + 0.8769896066498403, + 0.914137326923911, + 0.8524033513916386, + 0.7031987419217663, + 0.8621626965538068, + 0.8944345581656887, + 0.7735228548400104, + 0.9005797629065792, + 0.9504710950508823, + 0.9022919709323365, + 0.9342979199117475, + 0.8772519417645289, + 0.9249819735563567, + 0.5729923138853659, + 0.4835766386325762, + 0.8612905973509569, + 0.9124504202608101, + 0.8953377067963527, + 0.7534209383580125, + 0.8423550216676547, + 0.7597824100331846, + 0.7517841411747472, + 0.8666940033234367, + 0.6657997606495523, + 0.717019456395999, + 0.740805133129771, + 0.857304381707348, + 0.8328309185702262, + 0.8239874600991047, + 0.6851804257011918, + 0.7233367269557952, + 0.6616202163803948, + 0.7303642416490831, + 0.7498483376978555, + 0.8803309069275272, + 0.6666059340071034, + 0.6630287021473571, + 0.9529412850649772, + 0.8648717643640433, + 0.7476734070096851 + ], + [ + 0.6788905487132834, + 0.5106918562312055, + 0.5558767352603405, + 0.6234943852098299, + 0.6482319159123481, + 0.5261516542343869, + 0.5327737508142745, + 0.8021769392621273, + 0.8210895710450336, + 0.6733535459759362, + 0.5507429540736203, + 0.6819608440503475, + 0.6922540381832102, + 0.6412577190649947, + 0.8050342156678598, + 0.7640889991639247, + 0.8197268720445898, + 0.7220903509599593, + 0.7282029254557555, + 0.6771907445558231, + 0.7101129702519487, + 0.5751771270386432, + 0.6111425939654095, + 0.6318664849446085, + 0.8420996748320637, + 0.726726191781367, + 0.5478185015960905, + 0.756227920659739, + 0.6092069839284169, + 0.7174114007282973, + 0.7962417876003941, + 0.6647075285860338, + 0.6027905051546733, + 0.4307721840447276, + 0.605758353291551, + 0.7895593398011812, + 0.7061467030884058, + 0.4397810565368069, + 0.7835598803997542, + 0.7921248663609279, + 0.6323808320790757, + 0.5532052475017957, + 0.30043929726322377, + 0.47043203730931854, + 0.5528558594544682, + 0.6938610006689983, + 0.7149375521597557, + 0.661508246082944, + 0.6570511633039652, + 0.6816754963111281, + 0.7103229461868429, + 0.7257786503230581, + 0.6735413661666273, + 0.7419443860557567, + 0.6923005462605301, + 0.6852734860052343, + 0.7049893407134006, + 0.7780079834437573, + 0.5265393581859314, + 0.681051509391294, + 0.8036255070476375, + 0.8054787005047184, + 0.818875005780932, + 0.7146749475939118, + 0.6075086872520824, + 0.6709127815258376, + 0.6965301044349113, + 0.6366284015452168, + 0.5133895667090055, + 0.6336371224546635, + 0.6630471141744883, + 0.685280416784797, + 0.8157761433801047, + 0.8663517864752045, + 0.7112521470247133, + 0.6264783942780978, + 0.6275264418199489, + 0.6321233274638897, + 0.7003017954763998, + 0.7892262390385681, + 0.6002309284504022, + 0.5182217520101864, + 0.7763196871778817, + 0.7166725819559437, + 0.8859091316060893, + 0.8118680993325739, + 0.8705425099975703, + 0.6865848617248391, + 0.556137490034515, + 0.6401330106934653, + 0.724783771143465, + 0.5851015323195864, + 0.5603458720783929, + 0.7182118730402763, + 0.7746830547543913, + 0.8310410738373939, + 0.850477838782899, + 0.7021639098752565, + 0.5610870995951204, + 0.5491419738395823, + 0.6988209146333535, + 0.7823161621933811, + 0.8740086168586542, + 0.6847177368583722, + 0.7061740969914745, + 0.5798575900437014, + 0.6410707681498348, + 0.751236732898238, + 0.7663698474411732, + 0.7215208061061062, + 0.7013831988654458, + 0.7272602386552602, + 0.8247317891582582, + 0.787377254697887, + 0.8347239094568488, + 0.8007519907023527, + 0.7615245562263041, + 0.765039929991642, + 0.8059598348691127, + 0.6605197109290878, + 0.7336580131199033, + 0.7829993441800407, + 0.8478341941150983, + 0.8907968427527705, + 0.8474339445636696, + 0.8863197169027663, + 0.5309086783154543, + 0.6792544926910611, + 0.7271369278278607, + 0.6021696847914404, + 0.8242067162197276, + 0.8135184744656423, + 0.7912015951873644, + 0.7546257549063033, + 0.5894717831381338, + 0.788026142995681, + 0.7450071205288166, + 0.5849818118020427, + 0.6192963221352417, + 0.754960597715131, + 0.7617589707999095, + 0.7982784910850184, + 0.7230926570709992, + 0.7891860210004203, + 0.539055062796583, + 0.6718914688487296, + 0.6674406794240512, + 0.5390090588826212, + 0.5280143588473623, + 0.6530663142164269, + 0.7007190699713756, + 0.7109867674067286, + 0.7414026004539765, + 0.7991432285325134, + 0.6455748956708148, + 0.7119063723013014, + 0.6368083180555578, + 0.7798721007920436, + 0.7917393429626065, + 0.8465260611985926, + 0.7928720972344304, + 0.6931933059802645, + 0.7870055083079939, + 0.6158810272110619, + 0.7177218142825802, + 0.7513631537654388, + 0.6758952733785195, + 0.7939405067939703, + 0.740993218844097, + 0.821691667527398, + 0.6851682023511902, + 0.6656287366298016, + 0.8006123961249936, + 0.6075558508603903, + 0.7554888824054868, + 0.5030471376533981, + 0.7599464183784247, + 0.48016984326912476, + 0.7311664098256693, + 0.7663560408349208, + 0.8039252294205906, + 0.7396328578050343, + 0.6948203430305384, + 0.7395065476405517, + 0.7021872904386774, + 0.6843973482028085, + 0.7257833484708918, + 0.8583494783715557, + 0.7513045094537357, + 0.7304797412089609, + 0.8202387325367257, + 0.6906239018158872, + 0.7079493540370684, + 0.7506557870819014, + 0.703280052377343, + 0.5232373895948906, + 0.7812882789412111, + 0.77986897788979, + 0.6373599854347296, + 0.5306557572628997, + 0.7214346086724421, + 1.0, + 0.8005620581631522, + 0.6547067044604156, + 0.6589901291569483, + 0.6309940301426704, + 0.7114990252485769, + 0.7746726854699809, + 0.5761469584168823, + 0.6412721835198456, + 0.5343777180853488, + 0.6356512281668207, + 0.6915051975862362, + 0.8166981795105333, + 0.7321180234106253, + 0.6174392637350165, + 0.7159355703124657, + 0.7685035524247097, + 0.6776648655357387, + 0.706911689338731, + 0.6130172662741619, + 0.44075185413709167, + 0.6517942792318882, + 0.6809593447889749, + 0.7938798512146868, + 0.6981947489718724, + 0.6941752002903182, + 0.5712651925284217, + 0.6914192859591337, + 0.8037566115373951, + 0.7135531004727491, + 0.7320821905944909, + 0.7910861039886583, + 0.7807050493370535, + 0.6923404206238065, + 0.3671394931355302, + 0.5741621000746544, + 0.6769694095006461, + 0.7217513899857394, + 0.6479972885622856, + 0.5611635704571368, + 0.6323421973977674, + 0.5421457681415498, + 0.7077319127492527, + 0.47869297744486744, + 0.7356573132937126, + 0.5664645526109305, + 0.6102309848784082, + 0.46914716388700756, + 0.6084436533776851, + 0.6558035555819274, + 0.5449698440178178, + 0.6421307831229743, + 0.6505692008478529, + 0.5263743216970892, + 0.8169009736030599, + 0.6770944319755372, + 0.690240130248273, + 0.5090120630810617, + 0.7217964017308086, + 0.6563128124659415, + 0.4446735197442745 + ], + [ + 0.7863558427688302, + 0.5555010850442267, + 0.5709162935938901, + 0.613886365007898, + 0.7373753377575207, + 0.6424074330549133, + 0.4766288213987509, + 0.8214323011263427, + 0.697121048754014, + 0.6102143408434203, + 0.536679036479164, + 0.7686040331644318, + 0.7740757172342274, + 0.7076952670097132, + 0.8019093693916344, + 0.8310660863406538, + 0.7845858105060364, + 0.7484288212208893, + 0.8277873214474221, + 0.6264729968403827, + 0.8318417728948156, + 0.7272846956638039, + 0.6703914442254384, + 0.6554772633592297, + 0.8248644039843632, + 0.8276192961063796, + 0.7198180693767505, + 0.7630320449046639, + 0.7310271268712254, + 0.6943210199306845, + 0.894813777973357, + 0.747035081943789, + 0.6946361225021045, + 0.7553580834184002, + 0.6633256614512191, + 0.8831981804126908, + 0.7916820173224719, + 0.43587036685133485, + 0.8344475771646438, + 0.900464534682774, + 0.7147589999646542, + 0.7375409353025171, + 0.5334566187196282, + 0.64548033086337, + 0.680361424256124, + 0.6715889269488733, + 0.8644778375834163, + 0.6366138952284461, + 0.6994208961590792, + 0.809082271149814, + 0.7369359201558591, + 0.7330774016968153, + 0.7691380674766993, + 0.7884262658859768, + 0.8051516665038552, + 0.802312486849331, + 0.8279794654484613, + 0.9091784698587217, + 0.612726582186852, + 0.7901984405766012, + 0.7555673387661039, + 0.8776041207328122, + 0.8097344631906116, + 0.8961321397803039, + 0.5632925332026849, + 0.5433275627599133, + 0.7483977778200839, + 0.728119880584092, + 0.6231077407799784, + 0.7230322463978646, + 0.7440858696223883, + 0.6320185137585266, + 0.7660389434219977, + 0.9340376649523612, + 0.7521985941309642, + 0.8144300496199596, + 0.7784111028166844, + 0.7660752663374976, + 0.7351253298360987, + 0.8713326847870577, + 0.6639280886594937, + 0.6101308605831277, + 0.7715538777465021, + 0.8800574765722324, + 0.8793465298437119, + 0.8379385447662694, + 0.8283798031266428, + 0.6833559116772701, + 0.5862120971304836, + 0.7591029207997676, + 0.8063318919161115, + 0.693187783075859, + 0.6522958889794752, + 0.8315290025179766, + 0.8192981684108077, + 0.8941140078241508, + 0.8253264751926384, + 0.8016344391896382, + 0.6378450525081834, + 0.6221076481296156, + 0.8131877114006955, + 0.9180267382056081, + 0.8068259161864224, + 0.8138186789702765, + 0.8218178824848577, + 0.578808649914949, + 0.6685207505230483, + 0.811776655840701, + 0.8687154025929708, + 0.8345920620049205, + 0.8560062218333673, + 0.7077070282060146, + 0.8844038146225754, + 0.8950596898405916, + 0.9342767658473712, + 0.8373123348274258, + 0.8860282531992331, + 0.8230071106931365, + 0.7330979450701185, + 0.8022715570325073, + 0.8866332250260437, + 0.8707255275586432, + 0.9114474341970148, + 0.8253041472791657, + 0.833867161715899, + 0.8119185186066207, + 0.48301791068356764, + 0.791318692640427, + 0.6398339878220185, + 0.8240116921589629, + 0.7544997050570162, + 0.7871250491584887, + 0.6681852814321928, + 0.7255919717799288, + 0.5811821054726082, + 0.9155503187133451, + 0.8905891712724316, + 0.6546665543163642, + 0.7755583038025116, + 0.8689433962291018, + 0.9104300847071597, + 0.8224454525911203, + 0.8610971962327609, + 0.8082448784315077, + 0.5304109795999353, + 0.6817961506994596, + 0.7566916667189761, + 0.6628794266202506, + 0.5489139624012336, + 0.7678350253384214, + 0.858980554537091, + 0.886523155061622, + 0.9044832081745829, + 0.7386988627877096, + 0.7430285755933504, + 0.8887643498470038, + 0.7769048456625202, + 0.8545341602326805, + 0.8294366849488166, + 0.8962004978616014, + 0.8422339669245975, + 0.8198593411314788, + 0.8064006778939053, + 0.751212675660531, + 0.831420109266989, + 0.8157927310579561, + 0.8194822775376034, + 0.8633194294992373, + 0.872227878354135, + 0.8575699238540032, + 0.8120790053417286, + 0.8257028629999709, + 0.8023234362231996, + 0.8079203884801345, + 0.8917609174997145, + 0.6923902565636528, + 0.8841354381502804, + 0.6533740935008927, + 0.760585301619969, + 0.9071167555616989, + 0.8401718652131036, + 0.8915470147516693, + 0.8240511534617319, + 0.84185595452265, + 0.7469530014493327, + 0.8170915745963236, + 0.8377674031048193, + 0.8325839727836333, + 0.7854047992255093, + 0.8311342818724244, + 0.8505880185848899, + 0.7684484451544532, + 0.854063028352035, + 0.870224911308819, + 0.8063880667563704, + 0.7070835437669971, + 0.8156291079150173, + 0.8513313734573024, + 0.7303271038345718, + 0.8282646517102806, + 0.8324258175185155, + 0.8005620581631522, + 1.0, + 0.7721883460093653, + 0.771912837187663, + 0.7958250154965342, + 0.8320274483436426, + 0.8063255126537461, + 0.6339581206363119, + 0.8310061163487611, + 0.6419829342786113, + 0.8023580838651818, + 0.8347447054944044, + 0.8870021825017221, + 0.7411628329457814, + 0.681717553086745, + 0.7241179058818246, + 0.8449440455924109, + 0.8220275110718499, + 0.8708231899158805, + 0.7506945208304541, + 0.6139863252325115, + 0.7320110814301067, + 0.8782625537219747, + 0.8465869115461381, + 0.7649012121652643, + 0.7376662602143148, + 0.7337622497702274, + 0.657921886498717, + 0.8226308845559139, + 0.8334005589743573, + 0.7937586134147777, + 0.8831453110861714, + 0.7859611294962032, + 0.7433273896242818, + 0.5872138633020767, + 0.7315759804945706, + 0.7708319407987632, + 0.8794079960871135, + 0.8406726382832796, + 0.6150624142736346, + 0.7610875622887849, + 0.6616291066840547, + 0.7733282232867955, + 0.6442174058810387, + 0.8030633728191695, + 0.6209873708281264, + 0.7356828451905911, + 0.6969165346118699, + 0.7088630002321717, + 0.6730561794450731, + 0.6488939489697486, + 0.7390647369389965, + 0.6486328815703833, + 0.7561806870157104, + 0.8862112725044075, + 0.8567203606209113, + 0.8452081447182516, + 0.5225303135360851, + 0.8564117940429926, + 0.7523221471708482, + 0.6937430812916093 + ], + [ + 0.5838946368965401, + 0.3195039148760504, + 0.5419865618745692, + 0.6373434490730495, + 0.655808201099405, + 0.5331481202915632, + 0.29017093106516245, + 0.7085441722686229, + 0.4097722130298818, + 0.581591937581674, + 0.4193122651096806, + 0.5353099805143777, + 0.6547139276629911, + 0.5128394433613951, + 0.7208877158384598, + 0.511762472722176, + 0.4947690132061289, + 0.5907434360259375, + 0.6343859758180203, + 0.6240780075560438, + 0.7178543903163732, + 0.5515142136454839, + 0.7141241238587852, + 0.49538723627237413, + 0.47998360449688043, + 0.5999965702879976, + 0.8228343008746115, + 0.7155987651089052, + 0.4490898956313248, + 0.38652985479845114, + 0.6326933832504004, + 0.4808764618819377, + 0.6323510485601722, + 0.6040898070914692, + 0.7206017120249748, + 0.685202015178902, + 0.730129078483938, + 0.515985691702075, + 0.5229838278675829, + 0.8288706305920743, + 0.647928556721001, + 0.5869012001518833, + 0.521975923760814, + 0.747371220680334, + 0.7663285889162994, + 0.6778324672586636, + 0.8520945311069053, + 0.5920726953773946, + 0.7982811930361748, + 0.9192550590206644, + 0.6538599874208709, + 0.5918779508879415, + 0.5077614900410443, + 0.5177230394365511, + 0.4386579556444686, + 0.4830188061519872, + 0.5672227344801007, + 0.8379206652806019, + 0.6187442920004742, + 0.7766147722246756, + 0.43376966013946083, + 0.8765028417038547, + 0.4654877179410183, + 0.6093546267335271, + 0.6867265463905433, + 0.600184080777279, + 0.6165805304104146, + 0.8157134226706956, + 0.5295465720755542, + 0.5358756360714435, + 0.6446161229828592, + 0.45598975655457125, + 0.6523358665150085, + 0.7598964919354158, + 0.7316128322766186, + 0.8915583155678654, + 0.8919938475945579, + 0.7221658373830279, + 0.5482987326337209, + 0.8404988512117294, + 0.5046631669069219, + 0.520768962048044, + 0.7176883070243533, + 0.9141841421868173, + 0.7288417753253642, + 0.6523395612311147, + 0.6709694005910054, + 0.5531740000703969, + 0.5737424165537506, + 0.569802749475406, + 0.748300988267255, + 0.7454166408102394, + 0.8036638104808688, + 0.7838976023043682, + 0.8349651801635749, + 0.664642999222843, + 0.6166739701476021, + 0.679361449152143, + 0.6567168504661578, + 0.5126135874594299, + 0.8056576025454489, + 0.6803264470952793, + 0.6937673047869781, + 0.6994747616028567, + 0.7962006130058217, + 0.4760404585813855, + 0.6408366935582975, + 0.7733102725216526, + 0.7809297524775978, + 0.9200030020852078, + 0.877594949505934, + 0.7167976249781222, + 0.7296011223496258, + 0.6910401124073751, + 0.8211020470854465, + 0.7584686911254483, + 0.8582522794834763, + 0.7500914625930084, + 0.7135740258749605, + 0.8316651787374134, + 0.8399895605203429, + 0.8588222607267817, + 0.7988704489654009, + 0.5789941861721872, + 0.7161952347220473, + 0.729238412293171, + 0.5204103997735443, + 0.8116360645402372, + 0.6598644729620005, + 0.8399586617970034, + 0.6730045829905955, + 0.6369998143534814, + 0.4718418130106345, + 0.6381927432634219, + 0.47132110537349087, + 0.7905241767065467, + 0.7902715058830121, + 0.7740308154548418, + 0.9262455110493412, + 0.8884271110432114, + 0.7938975053304879, + 0.8805395052710344, + 0.8726638455520204, + 0.7849519123498122, + 0.4782367934033634, + 0.6983465940913685, + 0.8476020253490926, + 0.8635017021595427, + 0.6994395521455374, + 0.829791810382181, + 0.8036433458950191, + 0.8043633544603669, + 0.8250208461064541, + 0.6258035068803242, + 0.8158157546139795, + 0.9297392340028383, + 0.9084025218690533, + 0.7751127123222248, + 0.6792859540469061, + 0.7816409996170626, + 0.8409983504834445, + 0.865318103763043, + 0.7814253359222801, + 0.8672729309575337, + 0.8460328505029638, + 0.8731758637791474, + 0.896309470414846, + 0.8068538955698803, + 0.8483332695029884, + 0.8557203086976973, + 0.8536650473407811, + 0.8412156473749577, + 0.6792072328999786, + 0.7459213156141011, + 0.8836503630373272, + 0.6987363379235978, + 0.8673662681743567, + 0.8877273069211356, + 0.5885026616602239, + 0.8258633369637269, + 0.5702752324425534, + 0.8574571637397537, + 0.8538537182713994, + 0.8918173408454475, + 0.7978826991329818, + 0.7747345468607478, + 0.8024229863269864, + 0.7824253178910869, + 0.782971671031383, + 0.7452267526081352, + 0.8870746721755173, + 0.8815546837199063, + 0.8690617739565911, + 0.8869463842530123, + 0.9725021753947819, + 0.7517383929472783, + 0.7763209858288709, + 0.8528926594092472, + 0.9392401461621982, + 0.682083086138544, + 0.8623753970614146, + 0.6547067044604156, + 0.7721883460093653, + 1.0, + 0.8829894522711137, + 0.8639287790888954, + 0.7664387617519766, + 0.8181361931261684, + 0.6362310241604504, + 0.9053096650332069, + 0.8306118965391269, + 0.9003367438866436, + 0.9042296056765835, + 0.8103782983126698, + 0.8812175362380256, + 0.6438618986665503, + 0.7450861862831305, + 0.8889033516350195, + 0.8748790612844664, + 0.9006382519765429, + 0.8289202526756375, + 0.84184944640012, + 0.9352824692108113, + 0.8636128952886853, + 0.7809056374691858, + 0.7406498160489174, + 0.946090310282738, + 0.8817024682064365, + 0.4652839978794838, + 0.7781965052738864, + 0.8461765036086045, + 0.8834664020960016, + 0.8678708245651884, + 0.851906677110385, + 0.8494852607014858, + 0.5834487038377295, + 0.639006376368447, + 0.9039639572503987, + 0.8674477406549166, + 0.8711085222224865, + 0.4331832948307098, + 0.9382032828036192, + 0.8293636678957621, + 0.7524426671032995, + 0.8235976449541242, + 0.5504273872254517, + 0.4196490691211513, + 0.8032630873830394, + 0.8026114223039386, + 0.7716531502397752, + 0.8715972000140231, + 0.6373029137935515, + 0.6220145621404136, + 0.46960608029889683, + 0.546274908454959, + 0.697911778953738, + 0.9166700639119041, + 0.6150613340381429, + 0.3231371936412155, + 0.7731520438598726, + 0.8113988221156924, + 0.6062323532382846 + ], + [ + 0.7950110833335353, + 0.6006198039528585, + 0.7366845206679616, + 0.6995498490169324, + 0.7421081032329038, + 0.7242484619701968, + 0.5818393873162205, + 0.8033312447071993, + 0.5405142822803437, + 0.7410199713878177, + 0.612557255180963, + 0.6965322583501703, + 0.7712182585818881, + 0.6730894106992539, + 0.8259442029630009, + 0.6076903433814416, + 0.5906888618028797, + 0.7940525224609941, + 0.7272377978401708, + 0.7492414486785176, + 0.8861231198900897, + 0.6593210678253769, + 0.8186479328005325, + 0.6804166495288366, + 0.5584613822839833, + 0.7186155886984442, + 0.8588055944913366, + 0.8402284727513498, + 0.6472335339451086, + 0.5327767383351182, + 0.736541421897347, + 0.639017254803562, + 0.8025482256243492, + 0.730825117268131, + 0.861029250174306, + 0.77763342277619, + 0.84609056888518, + 0.34906605237277927, + 0.6064981080799137, + 0.7994586113581074, + 0.723640619921169, + 0.6200478590674668, + 0.28961794624024517, + 0.845575305917729, + 0.8458918874559054, + 0.7811462630906514, + 0.9304740583909245, + 0.7489917495770423, + 0.8518886653412014, + 0.8795897092605431, + 0.8403689752552382, + 0.6900291696220313, + 0.5712366008522383, + 0.6300053596009058, + 0.5123469945388818, + 0.6079678434102712, + 0.6922828238275444, + 0.8355364588505492, + 0.5232171218949851, + 0.9231078958218579, + 0.5433989934054346, + 0.9107423767662325, + 0.5920960346648809, + 0.7102030904831296, + 0.7694436305636005, + 0.5661434460263796, + 0.813448493983776, + 0.9266243736636031, + 0.7276741507927234, + 0.695665040398027, + 0.7653207672567159, + 0.6275535089270612, + 0.8116077551935283, + 0.8084713875751622, + 0.8605414486342953, + 0.9068387276138599, + 0.9186159804194971, + 0.6913841562227312, + 0.6754630112593064, + 0.8495004671809726, + 0.6733193033203515, + 0.49720850442248976, + 0.8052788467938613, + 0.8975450877330876, + 0.8071913030379394, + 0.7912581612224996, + 0.8019858187065133, + 0.6185279249289535, + 0.5760976123988832, + 0.6536082143576146, + 0.8814691899363615, + 0.8528996165860605, + 0.8184187739528686, + 0.8651054341658737, + 0.874653860682305, + 0.7209475102570231, + 0.7163065908339602, + 0.7193875831993465, + 0.8384427570948271, + 0.7199943540773557, + 0.8725291827436603, + 0.7613210202603671, + 0.7450376061934878, + 0.7754797749003035, + 0.9196875417850543, + 0.642687362060644, + 0.7273136650367171, + 0.870205667980239, + 0.7733837542478746, + 0.9379007643897047, + 0.9071763004126036, + 0.7906170801498298, + 0.8462856033912767, + 0.8097649704210185, + 0.869177184043668, + 0.8494678386344251, + 0.8797150869188138, + 0.8840793276849991, + 0.7778058658964243, + 0.8899883226617096, + 0.850009907959767, + 0.904385928170729, + 0.8736242554900387, + 0.6541596113834784, + 0.732018488255733, + 0.7592713420963226, + 0.48742118438910687, + 0.8567591011323883, + 0.620082218942334, + 0.8089792010580947, + 0.7491023400801495, + 0.6767969358946205, + 0.5778182205554505, + 0.6706715033452372, + 0.6071539527308184, + 0.8748454691263694, + 0.8900770926389707, + 0.8654935259258769, + 0.8206162474140533, + 0.9344367948369292, + 0.8711795105691064, + 0.936548449170553, + 0.8886582366976455, + 0.8729126519758554, + 0.48695572000799925, + 0.8155841693676769, + 0.852790990186593, + 0.8362783220027752, + 0.6971593772287535, + 0.8910270978368033, + 0.8953132520063676, + 0.8673637091192082, + 0.8978842583952641, + 0.7352285528385926, + 0.897395905464496, + 0.9136520797267462, + 0.8557385664320092, + 0.8560500668711359, + 0.8146941181856271, + 0.8750862643601865, + 0.9233604148869267, + 0.8989519399800787, + 0.8917673796780939, + 0.9185704066124796, + 0.9497562075515869, + 0.9493064361694077, + 0.9326385676049809, + 0.8969112189616619, + 0.9160080679823789, + 0.9295552334390307, + 0.9140871372532218, + 0.9031263848122628, + 0.6960615995969665, + 0.6932069540743103, + 0.918078450220665, + 0.5443817068499024, + 0.8927690120643168, + 0.8858001915220026, + 0.7649179843710593, + 0.9003252436586631, + 0.6809378807722691, + 0.914808754873964, + 0.9074552473446, + 0.9563411912703605, + 0.8756479889221076, + 0.9207432566785931, + 0.907062349877197, + 0.875789777274913, + 0.8080953123892156, + 0.8801865275185033, + 0.9169196417475655, + 0.9391459049963004, + 0.9024725092223939, + 0.9140048372924877, + 0.8874564079040835, + 0.8558047997334683, + 0.8527668822491158, + 0.9188250359502833, + 0.9082869920585672, + 0.6807061295976002, + 0.9035538884117825, + 0.6589901291569483, + 0.771912837187663, + 0.8829894522711137, + 1.0, + 0.9219739800590723, + 0.8087733332828899, + 0.8356772213227823, + 0.6318153191389194, + 0.895532989681132, + 0.8916935193005585, + 0.8947392554912509, + 0.8994581189245546, + 0.8454603673596193, + 0.9096615539919419, + 0.6225970424104125, + 0.8103905366011938, + 0.9648094623126895, + 0.920243934344413, + 0.9206205733661994, + 0.803223156988086, + 0.7258175830313321, + 0.9142990806385616, + 0.8624999935610586, + 0.821519769435196, + 0.7720904661472864, + 0.9069023740654295, + 0.8838146718130245, + 0.6478179133490386, + 0.9059808283104602, + 0.9202494725724117, + 0.944203089751887, + 0.9335328568519546, + 0.8954561443744622, + 0.946720718968639, + 0.45968991150481026, + 0.5887527206595861, + 0.8030793611648954, + 0.8709454755603724, + 0.9385793212102089, + 0.6279384321334431, + 0.8524395469366601, + 0.8110099502103867, + 0.6740319270714281, + 0.9160277711257511, + 0.6085717053717798, + 0.5656648413073146, + 0.6957167590313801, + 0.7430974337863332, + 0.7959696243806369, + 0.7890955673816105, + 0.5645561374256275, + 0.6831463468392617, + 0.5383102995934388, + 0.6009822090366574, + 0.7608142292593622, + 0.8973867167048054, + 0.6020019932654319, + 0.5080731867272927, + 0.876219014966828, + 0.8837498083221569, + 0.7145413841816194 + ], + [ + 0.8233176437837672, + 0.5693094672527623, + 0.7380971751545808, + 0.7274211039054229, + 0.8189460267827655, + 0.8185405081397125, + 0.564718481735671, + 0.8080453163759438, + 0.5915015321953446, + 0.6572368170225928, + 0.547495614744498, + 0.6954549607625536, + 0.8472938001458193, + 0.701723191394222, + 0.8186726654700345, + 0.6898458125200795, + 0.6386028448929163, + 0.8090598943287443, + 0.8134707850756882, + 0.755669190581737, + 0.8902432112778003, + 0.7254958907871392, + 0.8151338551915029, + 0.7146078084044494, + 0.5743141331609144, + 0.787280521791916, + 0.8627676728630469, + 0.7923935206649078, + 0.7094347822707646, + 0.5855324552618619, + 0.7949190576320907, + 0.6095005443821482, + 0.8157602751533266, + 0.7659095197060526, + 0.8713014043488244, + 0.8368017174048022, + 0.8451841253665839, + 0.4934435425867551, + 0.6956535041268086, + 0.8274625097470112, + 0.8269894088884082, + 0.7675974781918368, + 0.5757878051768732, + 0.8497066417676407, + 0.8930788218090043, + 0.6956413687999436, + 0.9047868973626326, + 0.7554309500851275, + 0.8629989384731458, + 0.8506354441047936, + 0.8123520270064483, + 0.754864108000589, + 0.692420326761636, + 0.7196281751855642, + 0.5907491359999435, + 0.6885974210424238, + 0.7873081681622388, + 0.9061428021153374, + 0.6211406258651421, + 0.8417213753102973, + 0.612042891186699, + 0.9127558825913155, + 0.6516894310515583, + 0.750234398694664, + 0.8011439964591327, + 0.687007980599509, + 0.8291695031271529, + 0.9349996706647516, + 0.7653328128698964, + 0.743893991997885, + 0.7980509509019568, + 0.6711548301945114, + 0.765216802029317, + 0.83318307563507, + 0.8834993945205576, + 0.9465214940829089, + 0.9527188367558161, + 0.8297833655845805, + 0.7736871561817223, + 0.8733536874264459, + 0.7858117104800287, + 0.5874628505301868, + 0.7018313811499112, + 0.9340327973924497, + 0.7993337194518596, + 0.7694336878177271, + 0.8079459901903998, + 0.69065052920777, + 0.6579641075617785, + 0.764726109143181, + 0.8881393028975497, + 0.9185228742626059, + 0.8555411959883867, + 0.9262684217164229, + 0.8625600221481091, + 0.7892975095941347, + 0.6688980185919311, + 0.7733690060908267, + 0.8491016882252218, + 0.7389352402237607, + 0.911200334028839, + 0.8132259808403967, + 0.7383188317393912, + 0.8387077542504799, + 0.9444950322722576, + 0.6643913622163815, + 0.8381743406218588, + 0.881478667974678, + 0.7843112547559212, + 0.9273528493215737, + 0.9101562818627128, + 0.7523672630260657, + 0.8343840262867155, + 0.8786183921747271, + 0.8819201537549753, + 0.8713410297023898, + 0.9057463765758536, + 0.9165519723997216, + 0.6859304836654874, + 0.9290920487795973, + 0.8985893595417656, + 0.8890682329519943, + 0.845733843923041, + 0.6812624592599482, + 0.7560765074590234, + 0.7017861696013121, + 0.5072270410358606, + 0.9196751790021023, + 0.6748634084285445, + 0.9079191654121197, + 0.7262130638709302, + 0.6475967987988024, + 0.5224065634018876, + 0.6465536126444082, + 0.6525927406835038, + 0.8756329314867733, + 0.8961998821738173, + 0.86439297344646, + 0.7324138066315682, + 0.9140960919308277, + 0.9129789381709876, + 0.9070806431827051, + 0.9116780786323249, + 0.8403128778365259, + 0.5929012121786913, + 0.8745020446705298, + 0.8539358205038499, + 0.7433973394414712, + 0.5812741506711671, + 0.8747188154046489, + 0.9305695410265789, + 0.8715684693889958, + 0.8931688631696839, + 0.7515013188389552, + 0.9227412318987489, + 0.9185090170241066, + 0.7837578541794137, + 0.8697765143643397, + 0.8074191410146787, + 0.8847867296499893, + 0.9148394961916709, + 0.904190353428928, + 0.891243145987005, + 0.9081950207557653, + 0.9247019156098026, + 0.9375497843876915, + 0.921857572541826, + 0.9045749699417343, + 0.9449992020191841, + 0.9219139036406965, + 0.9131984470719455, + 0.9248223822929881, + 0.746969760613489, + 0.8225541074413375, + 0.9603057453174911, + 0.6054176106881909, + 0.8724920079148358, + 0.8417989111692235, + 0.7397328276032956, + 0.8899795734615615, + 0.7261479952927873, + 0.9517549733101903, + 0.9114958583392588, + 0.9598623107748427, + 0.870420292765873, + 0.9293929147690814, + 0.923217599598325, + 0.8711710742898398, + 0.7778165504517262, + 0.9010145634697544, + 0.9032331414086666, + 0.9087387959866245, + 0.929064384951352, + 0.949743109786571, + 0.8707819648327831, + 0.8071813346372471, + 0.8941467535484187, + 0.9111087892184031, + 0.8809594142638407, + 0.8091468720317132, + 0.8980337929853013, + 0.6309940301426704, + 0.7958250154965342, + 0.8639287790888954, + 0.9219739800590723, + 1.0, + 0.9037277900598402, + 0.8579719458090689, + 0.6557902450749312, + 0.9274188697610907, + 0.9004556110393026, + 0.8393844704104242, + 0.9023424823056932, + 0.8609439347049984, + 0.8589943398254981, + 0.698382490161817, + 0.7781266723331783, + 0.9232217593011243, + 0.8923803821369228, + 0.9414166171196922, + 0.7996892133567427, + 0.6937710278309882, + 0.945657379782377, + 0.9220612476646266, + 0.7796688013089456, + 0.8406790865344169, + 0.8853494582881775, + 0.9532706986763969, + 0.6182101637120033, + 0.8948611187138213, + 0.924675267804645, + 0.9212465208288481, + 0.9514625635114883, + 0.8680336595538205, + 0.9608422733473949, + 0.614690263668563, + 0.6362836015263417, + 0.7868741985783746, + 0.9217937621137893, + 0.9525509100592855, + 0.6842092325472461, + 0.8997922117129218, + 0.859671991860496, + 0.7216177333628464, + 0.8808065402742091, + 0.6614395713799586, + 0.6322701825042765, + 0.6304344859801292, + 0.7214689788249143, + 0.8407323156075857, + 0.6835873388038678, + 0.6343011413985084, + 0.7908152919998283, + 0.6685819707580645, + 0.7183714098507098, + 0.7887374945567694, + 0.8908834546496216, + 0.5936082506607651, + 0.5384908927694916, + 0.9021966326351089, + 0.8510725208910991, + 0.7486284450863533 + ], + [ + 0.7960610800502188, + 0.6598329640650125, + 0.7804325680317359, + 0.7593801804436056, + 0.7914790525796426, + 0.7795772518301265, + 0.5765761124411186, + 0.7857500766512394, + 0.6990441714147199, + 0.6255676026131508, + 0.5160947066413313, + 0.8132671896710622, + 0.9120553979995284, + 0.6929608073000059, + 0.8413531866370639, + 0.7818079587429333, + 0.7151547875525243, + 0.8109536908048337, + 0.8339603741219094, + 0.7664432033867787, + 0.838918403851216, + 0.708431193742406, + 0.8005255449325228, + 0.7088741331805832, + 0.752000542752331, + 0.8780973411442423, + 0.8274735761682653, + 0.8116426923842882, + 0.7136461653219298, + 0.7604536667541647, + 0.876531532014805, + 0.7051684375976218, + 0.7631184537691568, + 0.6590811419540263, + 0.8041369025359976, + 0.8475501170112686, + 0.7680532071782237, + 0.5649977739166228, + 0.8370843022813527, + 0.8222977185545973, + 0.8882020290732183, + 0.9115586461317592, + 0.5786386064863228, + 0.7037342782358442, + 0.845409353395499, + 0.6667692189928601, + 0.7958171656546501, + 0.7543868481381345, + 0.7986360819178148, + 0.7331854460477812, + 0.7211536782224772, + 0.8458397612304056, + 0.6717566966961291, + 0.7705406459401991, + 0.649167019882736, + 0.7238317175963415, + 0.7961081450917584, + 0.924888866775547, + 0.7264190865712853, + 0.7435007823264794, + 0.6808934522551814, + 0.901799572189891, + 0.7902508222070853, + 0.7756810751151334, + 0.7945645813924327, + 0.7247392273882257, + 0.844041594175118, + 0.8301920563485432, + 0.6628070305282036, + 0.7174862323602941, + 0.7395675989692498, + 0.7563970792575699, + 0.8388884516677784, + 0.8669005260056775, + 0.8432411379676362, + 0.8840491064880541, + 0.8902636051898131, + 0.8773844645373254, + 0.7917098781980099, + 0.9334418975378966, + 0.735528240478559, + 0.56424971175468, + 0.6778795336668645, + 0.8998076299385276, + 0.8547192094346706, + 0.810541462083217, + 0.8786269586993583, + 0.7453544003105933, + 0.6215906159712007, + 0.8676602668896816, + 0.8895970293554986, + 0.7779396839049902, + 0.7891950106250653, + 0.8750675937252537, + 0.8192578097144119, + 0.8845941778468555, + 0.7974827194798907, + 0.7880324355950108, + 0.6856763838399539, + 0.6809963132842051, + 0.8837004291252611, + 0.8385810826323508, + 0.8584415708843534, + 0.7975534330832226, + 0.886584633502138, + 0.6074356024775953, + 0.8269303965282276, + 0.7902214281505708, + 0.7800742302505848, + 0.8630838695071169, + 0.7819910539540414, + 0.7374767579449352, + 0.8705417972417577, + 0.9150452771908577, + 0.9072655801212899, + 0.9052575592860246, + 0.8396928107969855, + 0.8949031989013729, + 0.6973648685397961, + 0.7992168705778977, + 0.8865513372619366, + 0.8603389896102297, + 0.838203638945391, + 0.7021046581275745, + 0.8444225010959736, + 0.724247827447696, + 0.5142699055105455, + 0.8421337519760947, + 0.7750682771790189, + 0.8376623012889611, + 0.7684887380717856, + 0.7168104371225555, + 0.5956897518122098, + 0.6888088841378028, + 0.6505175885525329, + 0.8527056106749437, + 0.8139623377001498, + 0.773827120990025, + 0.6320922258243435, + 0.8730679663820218, + 0.8917696746074193, + 0.8642026177383916, + 0.9013577602051324, + 0.8277799098354507, + 0.6414209190884426, + 0.823134058546796, + 0.8235361019134414, + 0.5886488822568158, + 0.5141389138101454, + 0.7475641720220475, + 0.8451552170771559, + 0.7757866281915546, + 0.8583104483334111, + 0.7469484312897232, + 0.7956340873240154, + 0.8426427151589699, + 0.6263636243553551, + 0.8094169896558098, + 0.713786202543635, + 0.873476022173111, + 0.8272029575301936, + 0.7443453645891613, + 0.8089894068895127, + 0.741140213705898, + 0.8679511892877388, + 0.8633323826602932, + 0.7706041041824526, + 0.8612861140427872, + 0.868799205177146, + 0.8974009184898772, + 0.7879599462377088, + 0.7998289962179379, + 0.8047296799732698, + 0.9371244276854087, + 0.8919409734280787, + 0.46206107532625124, + 0.754352735888338, + 0.7619792352444056, + 0.7199931184317447, + 0.7984179992489424, + 0.8298080409612526, + 0.877398354156745, + 0.7910328901551734, + 0.8866536882778938, + 0.8127095904635858, + 0.8657761874602543, + 0.8461714634701002, + 0.8729351191807622, + 0.7740624513960777, + 0.8760702011137896, + 0.8946922424759906, + 0.8575635105282065, + 0.8953860359895979, + 0.9152282350864351, + 0.8238291755769288, + 0.6598452811671418, + 0.828269909459337, + 0.799267355843823, + 0.8555556502356038, + 0.8067003614345698, + 0.7915752113412514, + 0.7114990252485769, + 0.8320274483436426, + 0.7664387617519766, + 0.8087733332828899, + 0.9037277900598402, + 1.0, + 0.9069919969354768, + 0.5884078400086863, + 0.8240224984967774, + 0.6786465311471842, + 0.7305212208751717, + 0.8022903476138828, + 0.8264682598376563, + 0.8239089454070512, + 0.8044107101193845, + 0.8157998357389123, + 0.8250636075539495, + 0.8061837871917698, + 0.874525358772233, + 0.7926937870564165, + 0.485024567360126, + 0.8396942514109466, + 0.8393155247332745, + 0.7555847404550855, + 0.8578427480548027, + 0.8571842566425228, + 0.7992431680267719, + 0.5155399703633059, + 0.8359356436783707, + 0.8340367257159099, + 0.8328941305544612, + 0.9167793039240216, + 0.8453804233053973, + 0.8851626428076104, + 0.588403402009235, + 0.7712248362497646, + 0.7543750563998425, + 0.8793609228327754, + 0.8608158858414335, + 0.5628904744428859, + 0.8526392699150528, + 0.8622024780232241, + 0.7570178138314868, + 0.6459823324524852, + 0.7019446011525633, + 0.5676312247963744, + 0.5814979261964042, + 0.5272948035543341, + 0.8219178847668893, + 0.5681525467711372, + 0.6331267100064395, + 0.9108072364872503, + 0.813111267180024, + 0.7865399516440601, + 0.8869347613220228, + 0.849106958404933, + 0.6748440309067998, + 0.4600208521930085, + 0.8399994779632031, + 0.7599856625213047, + 0.6879545129281526 + ], + [ + 0.7062056404907603, + 0.5631039944721361, + 0.70969746053695, + 0.850035012213112, + 0.7531743999364345, + 0.7422354840539321, + 0.5502178085215368, + 0.6959354080349106, + 0.7109568824168624, + 0.7284641823298657, + 0.5267959612305689, + 0.7109112057932706, + 0.8160638059495854, + 0.6290277941891032, + 0.8192489511681841, + 0.7709260470513778, + 0.6734735288833301, + 0.7894161019730456, + 0.8381628083814625, + 0.8244289722956576, + 0.8002715805329799, + 0.6954537477631001, + 0.7516754300727627, + 0.7160281006827423, + 0.6779871855711174, + 0.7791261657253051, + 0.7456605714876656, + 0.7971526061728973, + 0.7091375235120364, + 0.6312225305241097, + 0.7633678566587073, + 0.6008009736255142, + 0.6543032175955168, + 0.5806889708271868, + 0.8458054936547811, + 0.7885518312445272, + 0.7521607647289175, + 0.5851134882382953, + 0.7044931246654561, + 0.8204223525755192, + 0.7313180542558465, + 0.7475323217312287, + 0.514061331550417, + 0.7492987679150006, + 0.8016023345476329, + 0.784362579972892, + 0.7740969891207821, + 0.7715909410206155, + 0.8711060650330767, + 0.7734393482394787, + 0.7460473114354005, + 0.8702363737858184, + 0.6944201110111232, + 0.6715477360358889, + 0.5261855764570598, + 0.630084872881005, + 0.7135614608595808, + 0.8427061121857546, + 0.8214150451108114, + 0.722894836568378, + 0.6882406168437974, + 0.925193058303235, + 0.719639401076257, + 0.7119395497345075, + 0.7988835090271609, + 0.753627207352568, + 0.8502491154134826, + 0.9003985971435627, + 0.5701081941575489, + 0.6097832348365834, + 0.7883491583234471, + 0.7872763435703248, + 0.8359802847696586, + 0.8297699654985635, + 0.821529086198072, + 0.8781012869857806, + 0.855795457405428, + 0.8623301441433027, + 0.7146579335982911, + 0.9015938251768111, + 0.6544686560656436, + 0.7364344537035727, + 0.7482826340656522, + 0.9160957471624084, + 0.7995020792959732, + 0.7339789511963268, + 0.8879697014737462, + 0.8449120990303516, + 0.7837278757856324, + 0.811139773633791, + 0.8340309603367334, + 0.8140876753369445, + 0.8400010353700427, + 0.833868603467457, + 0.9219299234508334, + 0.8242718103951469, + 0.7568777892819801, + 0.831374123788935, + 0.6946593935396583, + 0.6022247726262243, + 0.8666671449527782, + 0.825781408140235, + 0.8708628186362235, + 0.8271397081408944, + 0.8238977164518833, + 0.6452824027740213, + 0.8471834959583825, + 0.8276830173319462, + 0.8692664402464528, + 0.8798494408683224, + 0.8151474307758846, + 0.8582231985846774, + 0.8073206633673122, + 0.8505274747931948, + 0.8883587201567047, + 0.9450653597808855, + 0.8000062329629539, + 0.8384660034220096, + 0.8510750181035914, + 0.8782521513664665, + 0.8870942656962085, + 0.9107256610100064, + 0.8325024312358671, + 0.7024391154140235, + 0.910888864264244, + 0.8722187443236654, + 0.7187783849621268, + 0.8272250526944063, + 0.9161808742975386, + 0.7979957850925868, + 0.879657944784426, + 0.8116701298639121, + 0.729302871536775, + 0.8468524782278828, + 0.6728674986991703, + 0.7739409092658619, + 0.8308630599102935, + 0.8768458161379125, + 0.6767967966226509, + 0.8623595922116162, + 0.85233318754586, + 0.8847179742121469, + 0.8131881469045031, + 0.8249632606941737, + 0.7833973205866095, + 0.8389646363370956, + 0.8604909537299202, + 0.6898580217173227, + 0.5453228234421184, + 0.7133373574875626, + 0.7935609752153391, + 0.7480405524588849, + 0.8004029805453575, + 0.7905919052900544, + 0.8778379414300164, + 0.904766204836822, + 0.7068070298705285, + 0.8918368262846538, + 0.7698195709551392, + 0.8341353770677895, + 0.8719219343847996, + 0.7702860265637834, + 0.8904588737561789, + 0.7631308503298014, + 0.8279480938815925, + 0.8687555239914997, + 0.8025565992699693, + 0.9076032270684128, + 0.8812830423939008, + 0.9378429533483806, + 0.8728466016707221, + 0.8580211154434768, + 0.8343564349376471, + 0.8280324638516586, + 0.9023614589198365, + 0.4631153619840642, + 0.8079093830635182, + 0.8291793215471597, + 0.6554043435004078, + 0.8280954528255278, + 0.7992940708961271, + 0.8808106610360126, + 0.8107043865643501, + 0.8668812957473402, + 0.7796681156108451, + 0.8533478667880094, + 0.8559327082947595, + 0.8483417135021629, + 0.877216270212277, + 0.7893594498138783, + 0.8777009422338161, + 0.8441776360354182, + 0.9053110810892785, + 0.8641730672297627, + 0.8501866315935083, + 0.6926829668384415, + 0.8774042414309211, + 0.8749750705014645, + 0.8352777568084503, + 0.7649972469690387, + 0.8281893288217872, + 0.7746726854699809, + 0.8063255126537461, + 0.8181361931261684, + 0.8356772213227823, + 0.8579719458090689, + 0.9069919969354768, + 1.0, + 0.7910636156144979, + 0.878352033719186, + 0.6949529742751569, + 0.7012223151655204, + 0.7835580782000194, + 0.8995642078120821, + 0.9383915724115944, + 0.789644973093444, + 0.9110438745219049, + 0.833688882649493, + 0.7409063978799223, + 0.9038187290494643, + 0.8378048293607133, + 0.49211384592045865, + 0.8816359963225144, + 0.8275222239278569, + 0.8315440724999272, + 0.8550156666866798, + 0.8643534048176186, + 0.7471826694612443, + 0.5192657895562558, + 0.8411343467694284, + 0.8740904463875442, + 0.8925458192907604, + 0.9231591302030415, + 0.9446656768221747, + 0.8859585076965713, + 0.617635814796122, + 0.6488936473285779, + 0.7163526854076249, + 0.8326182216473296, + 0.8275991901582616, + 0.5255452428784438, + 0.8645692089324484, + 0.809968191262977, + 0.8813352831050397, + 0.7076820189891229, + 0.6303921959062709, + 0.4841488842767125, + 0.6582801936222358, + 0.5779636744137736, + 0.7648360106445478, + 0.6837932729812726, + 0.7836175405144373, + 0.8687599290950966, + 0.7524653174981395, + 0.7400235908411146, + 0.799865978437815, + 0.8966677505548563, + 0.6709493028102368, + 0.42169789984627704, + 0.8653875273565638, + 0.8574671169626492, + 0.6593430835744728 + ], + [ + 0.48013370535727706, + 0.3004614675785658, + 0.3599288558010976, + 0.8224225945953093, + 0.763306448088365, + 0.6786377405913462, + 0.49464730175660104, + 0.4738466058486597, + 0.5509073988929736, + 0.6502604727841569, + 0.45640220715176666, + 0.4359924882765868, + 0.47979292285543695, + 0.589792615685473, + 0.6178732231335351, + 0.7294693594871475, + 0.4600945768202324, + 0.567120818758655, + 0.7740420272326225, + 0.6235749580855106, + 0.592562819188282, + 0.7364625778341212, + 0.5473378150577662, + 0.6676869595851495, + 0.39651699829857234, + 0.623871188923479, + 0.44002233900799875, + 0.505189252742007, + 0.746912457207486, + 0.40675661461027474, + 0.5144955860464389, + 0.4647649537940306, + 0.49285538651566635, + 0.5335317946381907, + 0.7249817514365552, + 0.6580415838576529, + 0.5761307005450504, + 0.5808441342564697, + 0.39955985189127663, + 0.6398461626566668, + 0.4145704085194875, + 0.49193938307471674, + 0.4882482126574032, + 0.6966584663708438, + 0.6163382802143332, + 0.7098018296800443, + 0.6372762619732435, + 0.6450208353453, + 0.747930662076839, + 0.6357710191139949, + 0.5819255905145644, + 0.7324778604168917, + 0.7957172958249761, + 0.5099775020554617, + 0.422482182243677, + 0.5273616744435228, + 0.609734040897735, + 0.6039690336725722, + 0.8169503836232566, + 0.5008416633692337, + 0.5964168136950823, + 0.7237068630439374, + 0.5275649741248882, + 0.6361912162182483, + 0.5382842664642836, + 0.7011564811987318, + 0.7632090485363392, + 0.79438856630371, + 0.4228176170727663, + 0.4271736455087129, + 0.7549216517698474, + 0.6901297367097791, + 0.5058301028238138, + 0.5678863827200996, + 0.6365497119459169, + 0.6489061639161403, + 0.6209552700291879, + 0.7120088204066465, + 0.457964512122722, + 0.5821296004755826, + 0.5399340926299825, + 0.954792866685579, + 0.5343201652998552, + 0.715735556420113, + 0.5091791059213561, + 0.4718276267027768, + 0.6446117488455034, + 0.9005759628188462, + 0.9633834320134684, + 0.7189447560466452, + 0.5872227198480867, + 0.7198041828758288, + 0.7193862247092888, + 0.6573750001030987, + 0.7479297697963819, + 0.6713158221444768, + 0.40600458903141273, + 0.86409453592499, + 0.6346167057001731, + 0.42448996634779174, + 0.6386158996300868, + 0.7408163267450736, + 0.6651235674407494, + 0.8671901675010398, + 0.5684696815479344, + 0.5715527857114459, + 0.7810894551436562, + 0.7347851569712495, + 0.8655161809278051, + 0.6617488743903478, + 0.699587298995425, + 0.7770042107465821, + 0.4759114184028801, + 0.579342526833323, + 0.6848696103283223, + 0.7625315379219714, + 0.6172868480291415, + 0.5796466578841772, + 0.690714342495817, + 0.7672375740691962, + 0.6575967646494826, + 0.7204910694540512, + 0.6504891440065877, + 0.5323980713072434, + 0.7226783758564498, + 0.7949998768682992, + 0.9179674828006784, + 0.6430107487834991, + 0.804807133135735, + 0.6115844075007951, + 0.7739481902632328, + 0.7805846466966271, + 0.7422532371162843, + 0.8989545396538374, + 0.5272052357452786, + 0.5530113245187108, + 0.7357296108566764, + 0.7201233767701881, + 0.5216294213808924, + 0.6927827328287816, + 0.7138078766935473, + 0.6453470490534894, + 0.5850138854503211, + 0.6463660142200077, + 0.8773748663171048, + 0.6927859004634567, + 0.6976739681477875, + 0.7421814960260046, + 0.6145309663378787, + 0.46919813829811147, + 0.6204758025894186, + 0.648782171527338, + 0.5826152433595349, + 0.6273389562267636, + 0.8389226220696849, + 0.7710520696453156, + 0.6292189612591086, + 0.8356300492078792, + 0.693973718221049, + 0.6067557322833929, + 0.7173794066393706, + 0.7325080129442675, + 0.7693423432985518, + 0.5957862882536196, + 0.5284172926563963, + 0.633678439965091, + 0.6335167228716296, + 0.8230658087406708, + 0.7903847094102048, + 0.7720171365525368, + 0.8325895528986746, + 0.8276168837454887, + 0.7023669625429154, + 0.48764178364703653, + 0.7251144514411976, + 0.6175893787853367, + 0.7335763731865598, + 0.6957485610137982, + 0.4230558781631799, + 0.7542164854140612, + 0.6412078764798493, + 0.7273892554397345, + 0.7308531078685994, + 0.6372642107919192, + 0.6167667795473598, + 0.6711738036610778, + 0.7362754649286203, + 0.5243931675566452, + 0.7515889281047635, + 0.43013738673326396, + 0.5555208039768516, + 0.5150335580968396, + 0.6710907694674577, + 0.5732286426489713, + 0.6183925486012345, + 0.6030062070724931, + 0.786266788647635, + 0.7703580413728713, + 0.5464740136812045, + 0.7017911384915041, + 0.7567956686607691, + 0.5761469584168823, + 0.6339581206363119, + 0.6362310241604504, + 0.6318153191389194, + 0.6557902450749312, + 0.5884078400086863, + 0.7910636156144979, + 1.0, + 0.7701586362936412, + 0.6331333900745699, + 0.5504353970233599, + 0.5584435868470324, + 0.8119939103585129, + 0.7711279887544105, + 0.6356452186282, + 0.740487349047356, + 0.6285273173062675, + 0.5072047662687036, + 0.7591315124354465, + 0.5769204355481207, + 0.5288660093116961, + 0.6987998570019237, + 0.6799995797490693, + 0.7433338279023121, + 0.6631941671816828, + 0.5674208200116097, + 0.5710563958189963, + 0.5094905813063888, + 0.5818524328382805, + 0.7723266323592477, + 0.6762395175819195, + 0.713533396733078, + 0.7918009578504324, + 0.6894513264236817, + 0.6011135906996236, + 0.40844583126627176, + 0.5395382205628493, + 0.6406311425308039, + 0.5984673886634483, + 0.5212589156295545, + 0.6426478715141918, + 0.4213119071456995, + 0.8446112115853853, + 0.6804741302967305, + 0.49417901724050656, + 0.3712486431196835, + 0.6776893800712177, + 0.6864052290913366, + 0.473297453581171, + 0.5914888969132831, + 0.9143655736193994, + 0.7067620105735876, + 0.612195804698106, + 0.7403585646244991, + 0.48740469972150313, + 0.7600491398310825, + 0.596635862206666, + 0.41661483030592145, + 0.7950989750206805, + 0.7240043661869303, + 0.600851496999425 + ], + [ + 0.683627216398995, + 0.41035190843036556, + 0.5656449110826524, + 0.7198721321680617, + 0.737851222066421, + 0.7173852912691218, + 0.40011988158580036, + 0.6941977361613694, + 0.47640557304545145, + 0.5865049033510207, + 0.402081808592216, + 0.6156034586543897, + 0.7590796221716597, + 0.6237305938262669, + 0.7241411655615814, + 0.6704983076201874, + 0.5389777374445301, + 0.6999748338009318, + 0.7791035347457804, + 0.6841572709167234, + 0.7704997204058334, + 0.6582621421594375, + 0.695620724556226, + 0.5891727580213978, + 0.5068640942299163, + 0.7045019093634186, + 0.7958459677778067, + 0.7036621315411187, + 0.6424854926519121, + 0.4472674907420972, + 0.7111929641237048, + 0.5238850838518715, + 0.6509015635876505, + 0.6772196034790721, + 0.8015543966360049, + 0.7574540251619398, + 0.7406127171732358, + 0.5267260282316019, + 0.5667594772704166, + 0.7795200880230145, + 0.6462109063661189, + 0.6660979425728967, + 0.5617995234337961, + 0.8266215865765126, + 0.7997238982435043, + 0.6903243387471345, + 0.8633910562358642, + 0.6181531547654857, + 0.8369530707410094, + 0.8366275524245474, + 0.6979586040793084, + 0.7394479119340768, + 0.687126878858054, + 0.6014045586754317, + 0.5111680801127957, + 0.5801752017391466, + 0.6720377790909453, + 0.8454776028978517, + 0.7022995210560009, + 0.7819257884648285, + 0.5288763472575682, + 0.8781311812464838, + 0.552092367279012, + 0.6933533256715654, + 0.6750732102960174, + 0.6132445437489038, + 0.7546705907931501, + 0.9094369486768539, + 0.6303097066132592, + 0.6086895373949, + 0.7769958603314018, + 0.6061773948803864, + 0.6786903564230923, + 0.7794359932580945, + 0.7821101887440034, + 0.8965506383304014, + 0.8962999911882009, + 0.8232543786325641, + 0.5940690001690386, + 0.8275742740449262, + 0.6312596581790657, + 0.7063477367722307, + 0.6892553710135298, + 0.9583565470845661, + 0.7126667976258579, + 0.660037763994977, + 0.7386384371649595, + 0.6935580197725609, + 0.7281409193231583, + 0.7433451064738787, + 0.7874001061221092, + 0.8475697769980025, + 0.8706225283632951, + 0.8871781559541224, + 0.8993614882447435, + 0.7286664306802249, + 0.6101181102816626, + 0.7893038776065665, + 0.7519292195073365, + 0.5726826895995223, + 0.8565771236794619, + 0.7712139812429004, + 0.7010388488608131, + 0.8446758564340228, + 0.8555618484680693, + 0.5368962425446542, + 0.7632932977050222, + 0.8254998256105112, + 0.8880723214106334, + 0.9154472315623137, + 0.9136982476684279, + 0.729669730218414, + 0.7598351395591652, + 0.8044470275763265, + 0.8786588964032815, + 0.8633081455715612, + 0.8597326542033695, + 0.8066987227166827, + 0.7320244703825955, + 0.9486206653475617, + 0.9106839127161345, + 0.90784894531144, + 0.8222220843528343, + 0.6033618991333276, + 0.761676021947224, + 0.7437094965290558, + 0.6084315004033249, + 0.868851769230153, + 0.7047855192117051, + 0.9151409126487596, + 0.7076283960117479, + 0.6648045609362807, + 0.5221586091323575, + 0.6928126195546201, + 0.5437200007087967, + 0.8137051802714337, + 0.8733141093942776, + 0.834948832859272, + 0.7801221416906797, + 0.8863223380521321, + 0.8762920637852685, + 0.8796521806081785, + 0.832579678848015, + 0.7694786164205095, + 0.6288700971055555, + 0.7707030664173125, + 0.8985259520399622, + 0.8212965666875498, + 0.5854891532120959, + 0.8242412571214618, + 0.8435657679315143, + 0.8300840962237286, + 0.8352612166018185, + 0.6914262824770627, + 0.9334449642085728, + 0.9699476889743871, + 0.8485552229216317, + 0.8638353933380959, + 0.7586296054385006, + 0.8035972216905751, + 0.89075609743895, + 0.8880562695283407, + 0.8647332014158755, + 0.8981497132749767, + 0.8634300825863448, + 0.917470307064997, + 0.9207777747702517, + 0.8897086800818471, + 0.9327226752663741, + 0.9152581656409268, + 0.9374301623303616, + 0.9352098039315649, + 0.7240687053526366, + 0.7990466569115335, + 0.9543534734366165, + 0.6528685231382418, + 0.8970868190954123, + 0.8595568308608895, + 0.6049131520778559, + 0.911312923381302, + 0.6781539182167754, + 0.9488454829177491, + 0.8905066282756029, + 0.914531089617888, + 0.8120516243100986, + 0.8547637593623492, + 0.8749659893183634, + 0.7693828734348158, + 0.8055902699475843, + 0.7927505294093837, + 0.8505115102753875, + 0.8592245758657502, + 0.9097778745433102, + 0.8993790734410017, + 0.8854357343240372, + 0.8314004633367716, + 0.8609873821006083, + 0.9309690656418054, + 0.8610425878682902, + 0.8191938875617325, + 0.870984371905745, + 0.6412721835198456, + 0.8310061163487611, + 0.9053096650332069, + 0.895532989681132, + 0.9274188697610907, + 0.8240224984967774, + 0.878352033719186, + 0.7701586362936412, + 1.0, + 0.8401076934479589, + 0.802306734725723, + 0.8863353277796299, + 0.8677496602992103, + 0.8878842584631006, + 0.7367661481617165, + 0.8082594536121196, + 0.8962900424915418, + 0.8443400585803333, + 0.9814744805041452, + 0.8269826099384118, + 0.7096934288537501, + 0.9269691763718798, + 0.8616362158915236, + 0.8325355409304693, + 0.8007040563350951, + 0.8563518223353115, + 0.8919534336142287, + 0.5373199459743988, + 0.8098544298667961, + 0.9068183711693436, + 0.9157168684514622, + 0.9308387618592132, + 0.8940255158098148, + 0.8870215526072492, + 0.6308702972051672, + 0.6658756236697535, + 0.762454229579403, + 0.8560613423989643, + 0.9071202817206576, + 0.5348302885714098, + 0.9097045448846242, + 0.7678368321573616, + 0.8544104860827376, + 0.8638821416046352, + 0.5810209290856768, + 0.46969564859385304, + 0.7190769748004818, + 0.7673483723570992, + 0.7486191574326385, + 0.7314163297750886, + 0.7775942811436042, + 0.7633164946269367, + 0.5553918859195159, + 0.720010621449949, + 0.7036531560656437, + 0.9501482891368553, + 0.623630247626652, + 0.37245914761750815, + 0.8778745444309509, + 0.8599690654029394, + 0.7343155042292605 + ], + [ + 0.7088639743334252, + 0.47925574282420097, + 0.6933515231025257, + 0.6351440487252786, + 0.7565315378583888, + 0.7268454028769034, + 0.6008025311415505, + 0.7899999348906426, + 0.4698018736531486, + 0.734196147628793, + 0.6493319380452584, + 0.5039256234410983, + 0.6663724929073658, + 0.5698145953007149, + 0.7604680872980605, + 0.4928193478092777, + 0.5320092541437371, + 0.7354010700997817, + 0.6581994465537082, + 0.7458473691984043, + 0.8171942905227575, + 0.6151288955060881, + 0.8266178003308517, + 0.7030034035050902, + 0.3507601312130021, + 0.6162578423656399, + 0.8384744074686142, + 0.7485007218970345, + 0.6222828015480539, + 0.35570697823263886, + 0.6288900936487836, + 0.5589220320933798, + 0.7656874460604677, + 0.7468607713522069, + 0.8620008316566411, + 0.7079043035463858, + 0.8240438020626302, + 0.29178434945119797, + 0.4424418796858867, + 0.7276473001268072, + 0.7068848739812674, + 0.5319639108370022, + 0.3679575219747175, + 0.8361749366771614, + 0.8534031458169707, + 0.7525866009782342, + 0.8955069278121032, + 0.755465832717364, + 0.8338001895622437, + 0.8082700471475032, + 0.77387542516949, + 0.5269720711292721, + 0.5672371892481654, + 0.5829698984601202, + 0.42066756739461125, + 0.5254779818592622, + 0.6495423393556548, + 0.7394650023366868, + 0.4686640784880267, + 0.7976075392928194, + 0.4540779714926306, + 0.8192532958163493, + 0.4771980178688807, + 0.6227166882779741, + 0.7877301128880301, + 0.6688540375852201, + 0.7130366893008967, + 0.8901738880555792, + 0.7609022487539903, + 0.6828394423624059, + 0.7555259643458936, + 0.5396129614636527, + 0.6788753011134235, + 0.6918962585527785, + 0.8065512090373103, + 0.8566581541411387, + 0.8790544989074301, + 0.5959448324518372, + 0.6613118958090528, + 0.666968767811371, + 0.7201628363250213, + 0.48935097272197026, + 0.6403879429596531, + 0.7773182956961138, + 0.6921851728011464, + 0.6843987417558675, + 0.6751477229366772, + 0.6043334148754452, + 0.5710251842651485, + 0.5588437204810925, + 0.8080749834421863, + 0.9240098749302934, + 0.8188650346595896, + 0.8383096293280723, + 0.8220123096603397, + 0.5843793037761306, + 0.5136075095427769, + 0.642405957600079, + 0.9218407205584885, + 0.7384555039253683, + 0.8315923316863177, + 0.6590539143346527, + 0.5636419749752609, + 0.7342142080530044, + 0.8809507045482654, + 0.7403674014220386, + 0.7206947186209673, + 0.873535540264653, + 0.6987142279045155, + 0.9019394140312246, + 0.8619689846769321, + 0.7291657035513709, + 0.7243894347184912, + 0.7033517250727055, + 0.7121811750064949, + 0.7305220647579845, + 0.8255788574380917, + 0.826104001382884, + 0.6769348889068378, + 0.8768294924641288, + 0.7829417609270256, + 0.7515639149501171, + 0.7740284546100181, + 0.5881842588559499, + 0.585302343475847, + 0.6376283254013513, + 0.43771139203385434, + 0.8686173361769606, + 0.5434134980895309, + 0.7791698346887035, + 0.6496588087434118, + 0.6057620418821495, + 0.47275842553230896, + 0.5722605512792683, + 0.6648902571066417, + 0.7898036827999194, + 0.8269188863947116, + 0.8247859180548703, + 0.7521727609026332, + 0.8586109624907478, + 0.7810161920680406, + 0.8692577891857719, + 0.8286468724970028, + 0.807335499704047, + 0.44604638807991454, + 0.8585741474081824, + 0.7785281892260206, + 0.8155638114157019, + 0.646374192140177, + 0.849276422283234, + 0.8402120521281421, + 0.8200387948514014, + 0.8113234443877078, + 0.6758461011219781, + 0.8954156650757621, + 0.8459140727937435, + 0.7976352110649655, + 0.8144698034550704, + 0.7789978713047985, + 0.7685155246737092, + 0.8741303605506219, + 0.9152892614761695, + 0.8747920281875214, + 0.9304214276247245, + 0.8692493351060073, + 0.8529515199412506, + 0.8995039045621501, + 0.8118062564881978, + 0.8649763745543362, + 0.8350515519081425, + 0.9083062052072074, + 0.9003994725336573, + 0.6375985118544115, + 0.5653262876120526, + 0.8430477955047394, + 0.6184467315563055, + 0.82567172559794, + 0.8061161527789948, + 0.7180108316930203, + 0.8256333956718075, + 0.4939400625067877, + 0.8470079863464539, + 0.8633350589329712, + 0.9075338264335696, + 0.8499870281355694, + 0.8668375406953118, + 0.855176201732709, + 0.7799972478344638, + 0.7233664353719901, + 0.761293008396351, + 0.7892876746890154, + 0.8327415781090899, + 0.7823545744948796, + 0.8249175299950359, + 0.7730532377007207, + 0.8493186049281566, + 0.8683379255757226, + 0.8666892978440114, + 0.7930786314585929, + 0.5823929534928688, + 0.9021097047053614, + 0.5343777180853488, + 0.6419829342786113, + 0.8306118965391269, + 0.8916935193005585, + 0.9004556110393026, + 0.6786465311471842, + 0.6949529742751569, + 0.6331333900745699, + 0.8401076934479589, + 1.0, + 0.8558681403099169, + 0.8712958995155708, + 0.8166861851654035, + 0.8254759443299585, + 0.4684238826959071, + 0.624774295765719, + 0.8873879285342864, + 0.871605283450366, + 0.8305374801621553, + 0.7351975610989292, + 0.7584602931861205, + 0.8682844682188767, + 0.8363583676582934, + 0.6621454035006957, + 0.6795643944384246, + 0.8044979520672719, + 0.9287726813029735, + 0.7224663117557952, + 0.8401338016794953, + 0.8455208914974435, + 0.89363332637831, + 0.8437683425070641, + 0.7785417664978701, + 0.9019938996735394, + 0.4264012618386099, + 0.3818307653075293, + 0.7403049409284909, + 0.7949352098370916, + 0.8350645139684209, + 0.6717312742987321, + 0.7684224555059107, + 0.7607577310170669, + 0.5730035344025114, + 0.9474248752016511, + 0.46334244604835656, + 0.6920615766604056, + 0.5465965616720581, + 0.7686978102863505, + 0.802948417643067, + 0.6995978144410299, + 0.5603084041326376, + 0.5755060480006496, + 0.5393047663019217, + 0.5512822125146946, + 0.6364600729449573, + 0.8251508556868618, + 0.4304218368051423, + 0.6424918755708191, + 0.8084162603857182, + 0.8669159511857101, + 0.663083234779724 + ], + [ + 0.7355436374396269, + 0.48702972101644576, + 0.6095062068588538, + 0.6000107878733506, + 0.7540730391040182, + 0.58940990729031, + 0.4773673319156446, + 0.829711301959686, + 0.5105336552975582, + 0.6911614617590491, + 0.6541094441408308, + 0.6179058312416709, + 0.6305810136915122, + 0.6575974321088693, + 0.8005783534413322, + 0.5888621943617967, + 0.6368887915859891, + 0.6691572785434295, + 0.6834851042192112, + 0.6312390319469436, + 0.8263773689159136, + 0.6816842840908585, + 0.7992781749523981, + 0.6246371110183055, + 0.5896758128958636, + 0.7091495432263325, + 0.84803774867361, + 0.7910852028750417, + 0.5927174869267234, + 0.531824643232708, + 0.7571672216080066, + 0.6691378167022396, + 0.7926080473241379, + 0.7736567019126454, + 0.7103643691961858, + 0.8036057468582617, + 0.8302833951349748, + 0.3451207421997139, + 0.6019981873327754, + 0.8805609036412959, + 0.7167399338545003, + 0.554178814851116, + 0.3896746172171643, + 0.7378510431994773, + 0.7619207159786612, + 0.7175922414565796, + 0.9466032439970276, + 0.7047681427433478, + 0.7227201174028764, + 0.9331539077196078, + 0.7473690624957086, + 0.5344942934793449, + 0.5678048391985121, + 0.6766304931642312, + 0.6284975745567075, + 0.6581222735388254, + 0.7232458113993591, + 0.8414782671307506, + 0.4720370787448853, + 0.85965468788698, + 0.5469526277043408, + 0.8779336336436533, + 0.5939864076130639, + 0.7736759401749344, + 0.6619470700591711, + 0.5411545822786289, + 0.668501784010336, + 0.7669448483571765, + 0.6611045434001431, + 0.6954859860142939, + 0.6861565821251712, + 0.48466372725210266, + 0.7156100272473034, + 0.8194896670566932, + 0.7391767319485791, + 0.8435579289039332, + 0.8411237559555256, + 0.6043507871821218, + 0.6640290011925734, + 0.7884619630541563, + 0.6138779576116828, + 0.41548288996787913, + 0.7349441643359478, + 0.8264797730537737, + 0.8227257676695293, + 0.7814168082101333, + 0.7122684402984593, + 0.5379119336351734, + 0.49230192157673125, + 0.5633779256648518, + 0.7959881124660476, + 0.7403373731076588, + 0.6777127703880755, + 0.7573277849084906, + 0.7644230211604377, + 0.71826483789373, + 0.6753117458066902, + 0.6986372367530377, + 0.7265681306312191, + 0.6568859392428354, + 0.7982415113997665, + 0.7562093549500134, + 0.7033270666345075, + 0.7286970554593489, + 0.8414738441943742, + 0.5979482535451272, + 0.6448837691199558, + 0.8236982551683376, + 0.727447970057125, + 0.8897173774593728, + 0.8874086499090205, + 0.7336832168931101, + 0.7805705735521684, + 0.7218044357412724, + 0.8301139268593738, + 0.725842682022286, + 0.9096081716580601, + 0.8063949795328277, + 0.6756491931345041, + 0.7619761812142858, + 0.7942504329533425, + 0.7795407623044228, + 0.8553119631446726, + 0.6732288049596005, + 0.6598847191402317, + 0.6909909617083638, + 0.4185532171499906, + 0.7735547441588723, + 0.49322578441480164, + 0.7288487918368924, + 0.6806567666634471, + 0.6908044496766703, + 0.5238483829835736, + 0.625610416072468, + 0.49977711707913935, + 0.9044340206159219, + 0.8572393739206893, + 0.6832095573236335, + 0.9458443366146663, + 0.9212385096656494, + 0.8552983980180845, + 0.874317645621724, + 0.9268697646552018, + 0.8755453575364119, + 0.3470087120700069, + 0.7185167459722317, + 0.781534029409319, + 0.8460713809018651, + 0.7973652548125528, + 0.8659651891339419, + 0.887778317456014, + 0.9154708532751173, + 0.9204032434103495, + 0.6296358684556689, + 0.7497756655250059, + 0.8829975760180722, + 0.9109244865199844, + 0.8067062982567993, + 0.7834876842196138, + 0.8665324669786156, + 0.8586961218598735, + 0.9085374791784196, + 0.7830975569757005, + 0.8413590680498706, + 0.8751288808791481, + 0.8262295922773436, + 0.8782332416812286, + 0.8343598393080014, + 0.8665286918629522, + 0.8326478123946128, + 0.8308650222944322, + 0.8451441088865199, + 0.6415482638783228, + 0.6253303009051192, + 0.8310322458147436, + 0.7640912430535087, + 0.8876895793012007, + 0.8262969046451237, + 0.7594183908787084, + 0.866290942443583, + 0.6185861153452088, + 0.8363759354393443, + 0.881396581149315, + 0.8920108362810322, + 0.8082838866463338, + 0.8073022678861129, + 0.8174787548021418, + 0.808565967733746, + 0.7309684608552679, + 0.77445379768879, + 0.86762344809303, + 0.8207921820387004, + 0.8042165157827603, + 0.8674480249847651, + 0.9017772292633114, + 0.7496562831510276, + 0.7817080472389012, + 0.8174714971774376, + 0.8561823130480469, + 0.6353542786991698, + 0.9100694089807778, + 0.6356512281668207, + 0.8023580838651818, + 0.9003367438866436, + 0.8947392554912509, + 0.8393844704104242, + 0.7305212208751717, + 0.7012223151655204, + 0.5504353970233599, + 0.802306734725723, + 0.8558681403099169, + 1.0, + 0.9179706280375413, + 0.8232221641544444, + 0.7915906595269098, + 0.47774525838780646, + 0.6224541482216326, + 0.900756907394871, + 0.940221487532538, + 0.8229804643396766, + 0.6966274522602414, + 0.8702020610580966, + 0.8240784505217492, + 0.8954742955953549, + 0.7706511438350875, + 0.6815343394377632, + 0.8761872917381178, + 0.8702476956111704, + 0.6463286940907274, + 0.8124919124550232, + 0.8696502706260341, + 0.820948578195579, + 0.8467700689058919, + 0.7599880447712826, + 0.8354271404389128, + 0.4517269259796695, + 0.5422833555442755, + 0.9346878421352368, + 0.9113140153345741, + 0.8713362648698516, + 0.6033466261246113, + 0.8301245990856728, + 0.7603286712610152, + 0.5825191331754718, + 0.8116022106600171, + 0.676957480268795, + 0.6236771663278575, + 0.7862417350320197, + 0.8623657503797705, + 0.7922283961124656, + 0.8486668791019528, + 0.4752907280984048, + 0.577278940807876, + 0.499131237730435, + 0.6118854333962382, + 0.7604573126538039, + 0.8508989784729922, + 0.6791307488606372, + 0.5693199875211952, + 0.8202109839380483, + 0.7832477583777535, + 0.6449460031255024 + ], + [ + 0.8045637743066667, + 0.5519304822974054, + 0.6753263191474095, + 0.5904581519318932, + 0.7376114806412332, + 0.632499717443655, + 0.46390355124135246, + 0.8389008887654894, + 0.5694790099241094, + 0.6840685376671813, + 0.6075833910045564, + 0.6736517715293634, + 0.7638231368332564, + 0.6197813951266946, + 0.748517455368991, + 0.6075089591198989, + 0.6760332164928874, + 0.7595389976438909, + 0.7343945612741727, + 0.7479961316048683, + 0.8299557529616962, + 0.6032907473491138, + 0.7897399565746304, + 0.6377322335078034, + 0.5969691020114126, + 0.7165522560071845, + 0.8983595289450794, + 0.8001715882989802, + 0.6003711305477291, + 0.5454172953014734, + 0.7909453675620328, + 0.6514584457169019, + 0.7270683137456452, + 0.7094006271948506, + 0.739357689108023, + 0.819117560890666, + 0.8784042698406886, + 0.4134736022342934, + 0.649029814604716, + 0.8517116733510043, + 0.7500519699110284, + 0.5993195613090361, + 0.44723960891091824, + 0.6956252580946116, + 0.74055453706745, + 0.7612724969565601, + 0.946494073011137, + 0.7245901023342728, + 0.7571657273964256, + 0.9052313032551177, + 0.7370230817658793, + 0.5848788128317268, + 0.5754820519518759, + 0.7236572550759108, + 0.638560611816746, + 0.6656289012427754, + 0.7385422943263292, + 0.8765168921051637, + 0.5004336003925816, + 0.8826516476667216, + 0.5595609275935637, + 0.8828950892073404, + 0.6005947050788539, + 0.7073680778041571, + 0.7254757564340092, + 0.6017549820101045, + 0.67484567614122, + 0.8384412835139785, + 0.7827267763391031, + 0.8059605133801221, + 0.8090103432170334, + 0.5541991085581272, + 0.7783797053432256, + 0.8696432685488137, + 0.7815215904993379, + 0.8510652992615994, + 0.8550610801336778, + 0.6847839327684481, + 0.7237647638969289, + 0.8264710069032374, + 0.7302911257199888, + 0.4378615262324494, + 0.7694847362438414, + 0.8605518916794468, + 0.8537955299927216, + 0.8194139612407773, + 0.7823676426453964, + 0.5752050105697202, + 0.5144609436906741, + 0.6446646058029355, + 0.8004532993037339, + 0.8428118478431674, + 0.808601191727112, + 0.877039950531047, + 0.8751559738865754, + 0.709439149820721, + 0.7277224159286068, + 0.7147345953353406, + 0.7946092696708568, + 0.732089523096138, + 0.9094334806730467, + 0.7479597727703395, + 0.6954741787610392, + 0.759427332385031, + 0.9164651268187982, + 0.615480363788296, + 0.7158372934175079, + 0.8728049615096818, + 0.7915971703897713, + 0.9330481850162751, + 0.9546039751415019, + 0.6684079639771879, + 0.8455893009918909, + 0.8155302828329125, + 0.8578884347949494, + 0.8041869447328661, + 0.9534705282556234, + 0.8605729680439449, + 0.695763975164498, + 0.8514897691630822, + 0.9270468683600348, + 0.8352934030505019, + 0.9076970306617572, + 0.6833335841873739, + 0.7122720250047911, + 0.7127501594946469, + 0.387746022832521, + 0.8481768456925803, + 0.5874373286105018, + 0.8086281922698422, + 0.647072981911943, + 0.655314257383077, + 0.47354826222432544, + 0.5627414470909926, + 0.5691360924906715, + 0.9199898279822795, + 0.8962354495711579, + 0.7216954217306044, + 0.8963073481149748, + 0.8860929392800752, + 0.8522918987137743, + 0.9135733235532857, + 0.8955483430649743, + 0.8820019108123253, + 0.41544598036365116, + 0.7648683449624946, + 0.8403801338301825, + 0.7862884058727206, + 0.6386455490994234, + 0.9665997632003777, + 0.9100544663902022, + 0.9122963182314385, + 0.9370752242959041, + 0.7401420299359329, + 0.8045773704057495, + 0.922241766973212, + 0.9089344456028251, + 0.8540516866375731, + 0.8220516931868365, + 0.881775919754128, + 0.9396416517991538, + 0.9252857914643959, + 0.8603607973011209, + 0.9472107108519873, + 0.9324933824997518, + 0.895414390866962, + 0.9689494908985076, + 0.8413818394539179, + 0.901680855766978, + 0.8797098217793945, + 0.8786005333797126, + 0.90306604476997, + 0.6616053059603194, + 0.7366591632636887, + 0.8851980058337342, + 0.6881179839862437, + 0.9140551882658975, + 0.8183678685001053, + 0.8160344046548497, + 0.8778465034663366, + 0.6396929678536364, + 0.9165184216798128, + 0.9170967344127632, + 0.9416231825654603, + 0.8630532324097763, + 0.8218608407087934, + 0.8107346306975612, + 0.8546338890875057, + 0.7258621215245041, + 0.8616355641379912, + 0.8940685179072808, + 0.8665429771936759, + 0.8338498349845068, + 0.9381636845277278, + 0.8999120985409287, + 0.8146211600519209, + 0.8618352330023367, + 0.8948088566765144, + 0.8618183056620086, + 0.6459076683606317, + 0.92617498297358, + 0.6915051975862362, + 0.8347447054944044, + 0.9042296056765835, + 0.8994581189245546, + 0.9023424823056932, + 0.8022903476138828, + 0.7835580782000194, + 0.5584435868470324, + 0.8863353277796299, + 0.8712958995155708, + 0.9179706280375413, + 1.0, + 0.8640332358069442, + 0.836247258560721, + 0.48902660101255024, + 0.7090874250929923, + 0.9295687410626664, + 0.9677967455541939, + 0.8906542499322296, + 0.8252376034025138, + 0.7593019832597446, + 0.8771531007061314, + 0.8806673617425959, + 0.8047028140857889, + 0.6756729629467597, + 0.9086773791822345, + 0.949749491939996, + 0.6852892607035862, + 0.8907679077613542, + 0.8953318811088815, + 0.9079972083197693, + 0.9214224437566897, + 0.8229011665844, + 0.8881377980581752, + 0.5347566511702969, + 0.5177482661061157, + 0.8900132152344213, + 0.9099665944860831, + 0.9204983074334734, + 0.6334172548281561, + 0.8951243572495845, + 0.8368641524899902, + 0.6954708983237449, + 0.8064205744999906, + 0.6306751535062239, + 0.6787715673290908, + 0.6657415418634137, + 0.7905628254466582, + 0.9007485986093048, + 0.8291963447690748, + 0.5316051667836666, + 0.6448498721717026, + 0.5533194681644813, + 0.6255365473526934, + 0.7573929125295221, + 0.8643665706878072, + 0.5826789291726834, + 0.5440578302280018, + 0.8686729652198886, + 0.824742172886893, + 0.6973411904269818 + ], + [ + 0.8101966559725807, + 0.59854991125826, + 0.7118419939314153, + 0.8016842845456027, + 0.8295809482226986, + 0.7379407767407483, + 0.6619219967057267, + 0.8437406597954654, + 0.802338221318729, + 0.8374341958251493, + 0.7316929700554807, + 0.6728740046084134, + 0.7698331916013145, + 0.6677305371215887, + 0.8777434113741208, + 0.8083843356155022, + 0.8046540244229218, + 0.8430696879515217, + 0.867424323098194, + 0.8366453182043017, + 0.878007367413114, + 0.7631188383345545, + 0.8001641506933208, + 0.8178807495858021, + 0.7186562721936687, + 0.8074317705306204, + 0.7762314283577573, + 0.8320108441296536, + 0.8072981438296024, + 0.6312958571139179, + 0.8503979915480046, + 0.7345194833740795, + 0.7241868730193015, + 0.750839419654999, + 0.8553392657264979, + 0.8816748103164261, + 0.8535558319693737, + 0.4680815673558375, + 0.723977881092751, + 0.9169049950986057, + 0.7418203613715426, + 0.681176358645026, + 0.4836139286316537, + 0.7568338216353884, + 0.8103687789524525, + 0.8477279849440521, + 0.9137455343454757, + 0.856293781256437, + 0.8496009796176389, + 0.8442226468043577, + 0.8183776790786554, + 0.7449317690002075, + 0.7946542324828884, + 0.7697937046303016, + 0.6766128148027927, + 0.7429104229781444, + 0.8265959141954362, + 0.8702447063169371, + 0.7066019196532953, + 0.7719367351891911, + 0.7897581984723571, + 0.9355284981502869, + 0.7949733353638564, + 0.8424181695974553, + 0.7670947292559644, + 0.7886154321467103, + 0.8389967145853133, + 0.8917630512375759, + 0.6888906389489815, + 0.7419583494345011, + 0.8587850931494022, + 0.7339992344648811, + 0.8510968395880987, + 0.9125886603117127, + 0.8106648777147967, + 0.8668315526362773, + 0.8402229751349231, + 0.7438891299622995, + 0.8042546873993958, + 0.8231695096205852, + 0.748985627308058, + 0.728214398739528, + 0.7704213934037978, + 0.8692429946254216, + 0.8667749843218494, + 0.8393799143489871, + 0.8947052415903343, + 0.8565388916228834, + 0.76313025955747, + 0.7521691976089939, + 0.8582069849464657, + 0.8805109681254009, + 0.7845926092919291, + 0.8594497367109026, + 0.9264342897511909, + 0.8496243006500507, + 0.7522272150862194, + 0.846498564976734, + 0.8239296558557084, + 0.706168722494026, + 0.8753738288532364, + 0.9022079657215627, + 0.8550427648467505, + 0.8727857083655867, + 0.8691980036351165, + 0.8059615112704202, + 0.8223677323573879, + 0.9504406404670044, + 0.9013401246110209, + 0.9155634465616129, + 0.8878732840208587, + 0.90101635285155, + 0.8661613041927391, + 0.8718074372106527, + 0.8885244670833262, + 0.904306627276515, + 0.881072570399682, + 0.8741222300418444, + 0.8811211927903179, + 0.9007335717308854, + 0.8870637012200803, + 0.8621586892372204, + 0.9223395705293745, + 0.8282866102963193, + 0.8969385059252454, + 0.9138115632854663, + 0.6442894214172854, + 0.8448038850516872, + 0.8006368458293863, + 0.7783450362651021, + 0.9046307059276899, + 0.8949474389839274, + 0.8143602096615712, + 0.8684899588652878, + 0.7491000355626032, + 0.8919207807729457, + 0.9201618721972893, + 0.8222745059882558, + 0.7641167360483778, + 0.9028616478186153, + 0.9006976211609825, + 0.912560490085741, + 0.8645003862484973, + 0.8891932102807176, + 0.6863150748510365, + 0.8735103380698177, + 0.8039363638853708, + 0.7444518675975479, + 0.6254827211545768, + 0.7797042650580108, + 0.8752214315469309, + 0.8748602721106556, + 0.8962736337139586, + 0.8707849428448946, + 0.8912721035648035, + 0.9334373491836857, + 0.8077702381742655, + 0.9651487447837673, + 0.9258190227268811, + 0.9044099242920373, + 0.9382631843357909, + 0.8896538290353774, + 0.9645039072972924, + 0.8375904517653822, + 0.8596701936309068, + 0.8522001880586428, + 0.867463726013555, + 0.9474224890992468, + 0.9368648666939328, + 0.9449480165740057, + 0.9470999429324176, + 0.9387962276577743, + 0.8761504493501905, + 0.7115941295684194, + 0.9057621085365145, + 0.6672520021379406, + 0.9050389057647762, + 0.7514960371963979, + 0.799159815415376, + 0.9306951517250209, + 0.7742130791219841, + 0.9083358330748399, + 0.8716663309895141, + 0.9075304650857358, + 0.8255067403146976, + 0.9013643421622209, + 0.8943788398001166, + 0.8792920795266839, + 0.9158353524802105, + 0.8001085857495461, + 0.8511888969312764, + 0.7969039191914781, + 0.8520058841840334, + 0.8572785591847686, + 0.8159218625026342, + 0.8032890535074961, + 0.9636443170562063, + 0.9356175611503235, + 0.7473738100451932, + 0.7296692960777194, + 0.9318289084124608, + 0.8166981795105333, + 0.8870021825017221, + 0.8103782983126698, + 0.8454603673596193, + 0.8609439347049984, + 0.8264682598376563, + 0.8995642078120821, + 0.8119939103585129, + 0.8677496602992103, + 0.8166861851654035, + 0.8232221641544444, + 0.8640332358069442, + 1.0, + 0.8918508198295596, + 0.6464151124062469, + 0.8071709069336899, + 0.8990744556561968, + 0.8402890517877489, + 0.8844645106519645, + 0.7968601054207687, + 0.6072577690980137, + 0.8248229319180433, + 0.907187073691098, + 0.8533373338273029, + 0.8319627257003137, + 0.798773774395229, + 0.8146545099646753, + 0.7913022481073048, + 0.9053429430509343, + 0.9131316661553284, + 0.9050772992603302, + 0.9258915738166723, + 0.893739094842428, + 0.8697646475917764, + 0.5503031107566818, + 0.5294268893934153, + 0.7716106519391401, + 0.8785346789801898, + 0.8236254851377764, + 0.6881732109169206, + 0.7850002807318044, + 0.7278011211197016, + 0.8114299311452318, + 0.7789905908151267, + 0.7109915191609091, + 0.7469065461809389, + 0.6671237078405702, + 0.7292609798892306, + 0.8229538344033644, + 0.727283809790688, + 0.7420216773365864, + 0.7617440470431607, + 0.7691567992849209, + 0.7570232451259074, + 0.8481927806447604, + 0.9016786527428217, + 0.7008330991853139, + 0.6868913326755985, + 0.920192103534955, + 0.9002683382469797, + 0.7240592235204588 + ], + [ + 0.6508104006630554, + 0.560772914713871, + 0.7482195581128233, + 0.8420776711543564, + 0.7497778486005633, + 0.7247246425782278, + 0.5939882505623406, + 0.722108219476015, + 0.5928056266084558, + 0.8016670601089854, + 0.5946617684352673, + 0.6433128607950163, + 0.7789035971498108, + 0.5868921453677965, + 0.8390810497193891, + 0.6334679446722812, + 0.5830112141280779, + 0.7719017629255513, + 0.7452547001688318, + 0.8655114087002796, + 0.8038503655673235, + 0.6235379055004173, + 0.8377826274144784, + 0.7273114816764683, + 0.5468171180813327, + 0.7084727237830193, + 0.8384145310348164, + 0.8207578911624763, + 0.6437855030304221, + 0.5146612764399814, + 0.6941455164214321, + 0.6377823488615381, + 0.6844566800529159, + 0.5768061893047279, + 0.9048947617831847, + 0.7181925946631854, + 0.7846928635946653, + 0.46081683827285097, + 0.5491339702148433, + 0.770757258987678, + 0.6985393701873243, + 0.6431938979462114, + 0.3548494136931949, + 0.8156280741747518, + 0.8569330030128968, + 0.8722748312114545, + 0.827470338804007, + 0.7936502483825993, + 0.9202142523489985, + 0.8031231807849872, + 0.7484318298058208, + 0.7615698112278999, + 0.5711809862516429, + 0.5930242384377317, + 0.39737562963479756, + 0.49988187172206255, + 0.6219304272933927, + 0.7877231224577573, + 0.7574553693065514, + 0.7819475780340354, + 0.5348887200195249, + 0.9196454036233341, + 0.5889830454249022, + 0.6438056829542915, + 0.8405593222614799, + 0.7614864606979115, + 0.8196014081732031, + 0.9230434840911373, + 0.6246218906294996, + 0.6060565260682358, + 0.7901162095286414, + 0.7375173731928548, + 0.8297347327899448, + 0.7632805469281132, + 0.8451721768508793, + 0.8858742300132052, + 0.8901366044336377, + 0.7469484734544319, + 0.6206173579675596, + 0.8285523653554612, + 0.6312984901798667, + 0.6566903947076334, + 0.7408478051112255, + 0.8767405655876833, + 0.7792500697686809, + 0.7357306483345143, + 0.8402090056252083, + 0.7835710278761354, + 0.704386057081625, + 0.7108495549461845, + 0.8563902971706594, + 0.8486684725733521, + 0.9085342094621348, + 0.8502455359036029, + 0.9516942136917051, + 0.7078242148344788, + 0.7204111101170861, + 0.767880289199831, + 0.7906902385841186, + 0.6532424733322348, + 0.8878892131241738, + 0.7272045713454437, + 0.7868091361366337, + 0.7823316962637841, + 0.8600166051388258, + 0.6914046363130161, + 0.7894003971891207, + 0.8450875120630119, + 0.8676003565130884, + 0.9414533934194177, + 0.83343763106458, + 0.8599938683188614, + 0.7919215332848052, + 0.7794233374053207, + 0.8378678079978544, + 0.9026472991363015, + 0.7942875939119702, + 0.8465801921235087, + 0.8936140720995779, + 0.8779914806090307, + 0.8738132589092913, + 0.8801245342111679, + 0.8432298781976937, + 0.627837201109068, + 0.8023522382182239, + 0.8398355456807922, + 0.6687970173446917, + 0.8584383403359016, + 0.857883023203614, + 0.7836796929310577, + 0.8319029706975337, + 0.8010817390428433, + 0.6663960826724804, + 0.7939013766768965, + 0.6607020456451685, + 0.7798037467141304, + 0.8341197706055177, + 0.91230385160599, + 0.7718379200476779, + 0.9114391296262473, + 0.8127928175915953, + 0.9462401996623618, + 0.8462967727032296, + 0.8733203539994396, + 0.6627926668446898, + 0.8676998233523215, + 0.912044818589979, + 0.8250582133900106, + 0.6784778192619193, + 0.7733509174493152, + 0.7707670735535531, + 0.7581430371369714, + 0.7956912225813502, + 0.7464784588790953, + 0.9183841675185954, + 0.9176752136224147, + 0.7840706978108333, + 0.8788011002050641, + 0.7531271666271323, + 0.8013311449310674, + 0.902439668393144, + 0.8312002940168762, + 0.9142754044590556, + 0.8579857827558213, + 0.8818761787607815, + 0.9098714693680626, + 0.8579050810408503, + 0.8869572716229663, + 0.8879874750437445, + 0.9492750147762988, + 0.9237007255073125, + 0.8859471273490466, + 0.7865568174549052, + 0.718895934260368, + 0.8855253006956506, + 0.47812152055267454, + 0.8208435261582164, + 0.9027033819413538, + 0.6823996810485939, + 0.833853270952037, + 0.6774468639260669, + 0.8784685345775869, + 0.8342386591695131, + 0.9191845570070144, + 0.863037519005148, + 0.8761810491593658, + 0.8758653129537237, + 0.8463484947069512, + 0.8800838310322502, + 0.7656301924766552, + 0.8860518079305051, + 0.898429987147311, + 0.8860679247460032, + 0.8649893451665457, + 0.8781887214324842, + 0.8034258663219058, + 0.8773949262265303, + 0.8900924008929779, + 0.894704935471368, + 0.6260463385911399, + 0.8834919885781964, + 0.7321180234106253, + 0.7411628329457814, + 0.8812175362380256, + 0.9096615539919419, + 0.8589943398254981, + 0.8239089454070512, + 0.9383915724115944, + 0.7711279887544105, + 0.8878842584631006, + 0.8254759443299585, + 0.7915906595269098, + 0.836247258560721, + 0.8918508198295596, + 1.0, + 0.6963851618702184, + 0.8827774416111911, + 0.889268547627333, + 0.8180460218195532, + 0.9106897622490359, + 0.8751635607237258, + 0.6050882628726812, + 0.8960777283301117, + 0.8085338723924452, + 0.8219011032141408, + 0.7849391335859451, + 0.9158826324745658, + 0.7958865143143117, + 0.6000199162436725, + 0.8595176218801761, + 0.8712647960862702, + 0.9545418672190543, + 0.9258668931776276, + 0.966539783192327, + 0.9287124877856379, + 0.45992311062985963, + 0.5675357752318294, + 0.7626343220084549, + 0.7984412633481425, + 0.8229463719995856, + 0.5002853383510748, + 0.8501926232860101, + 0.8204291235130964, + 0.8358331344727309, + 0.8302451886795301, + 0.49574337998354173, + 0.5015389623670465, + 0.6592171716126497, + 0.6432657569417585, + 0.7870404987180799, + 0.7624859305806859, + 0.7656887939735812, + 0.7867508977387511, + 0.663663598953089, + 0.6545447481334402, + 0.7441574850093997, + 0.9334811141814656, + 0.572252216084761, + 0.4690973914390097, + 0.84426874344541, + 0.929648223108027, + 0.6836636450138012 + ], + [ + 0.44614823635937323, + 0.2923251582043561, + 0.45620592574454005, + 0.6953417796929632, + 0.5653260972408802, + 0.5831492153719755, + 0.3283648504746151, + 0.5176478285693915, + 0.45407434760926224, + 0.33308541064060276, + 0.13156702887414035, + 0.5405954041660281, + 0.6941128727315947, + 0.5052037320725897, + 0.6743444944584069, + 0.6421775568639599, + 0.4245168558088819, + 0.5081398870540089, + 0.6151324289550474, + 0.45060548009175827, + 0.5603259463322772, + 0.5280264582001208, + 0.48857192981622416, + 0.4233706038012711, + 0.5522664087176516, + 0.6410527471061495, + 0.5145120587105845, + 0.5199488312678854, + 0.498974639180584, + 0.496753501680523, + 0.6100578944722214, + 0.44343784949963766, + 0.4844233787528636, + 0.4097354510651475, + 0.6505215196111616, + 0.572137327682718, + 0.3977822115211965, + 0.5765568708648849, + 0.6121130277637357, + 0.6016309863148016, + 0.5677352344150638, + 0.8187487183393164, + 0.531990402541501, + 0.6286019391576413, + 0.732629386043277, + 0.3926312254967396, + 0.5430348323598969, + 0.41664409826470267, + 0.6885667920469432, + 0.5238098594095948, + 0.48789858222611093, + 0.787981401599508, + 0.5936923171843348, + 0.4148323512752292, + 0.36635150137826783, + 0.42733253887464256, + 0.4899539342487322, + 0.7343749827146552, + 0.7550176145806434, + 0.45555946402195796, + 0.501760785708497, + 0.6980083070948265, + 0.5861969570516362, + 0.5832800755420638, + 0.5212944539695634, + 0.6094804191390552, + 0.7039949841991672, + 0.6698748583907003, + 0.2549468790343281, + 0.27846661274620593, + 0.43238246396240576, + 0.5660412499805931, + 0.5464548002802194, + 0.6149755266491531, + 0.6465286553859135, + 0.7383800439832292, + 0.7674502394118388, + 0.7845350490629766, + 0.4313468933484254, + 0.7634750724425747, + 0.365515900987866, + 0.6685751604545207, + 0.45743984366941637, + 0.8216496174701723, + 0.5535666259710473, + 0.49815616668562296, + 0.625034324985535, + 0.65392073094212, + 0.639121282138726, + 0.7204996380017217, + 0.6914809832322834, + 0.5177407602562882, + 0.6325257225936494, + 0.679601968435037, + 0.6253147809500909, + 0.7591620554725574, + 0.5346366808699663, + 0.6414395474139037, + 0.4272764394908653, + 0.2759538351200679, + 0.5738346065448598, + 0.6761971278552997, + 0.7566694769154574, + 0.6557135238325925, + 0.5990299190109138, + 0.3266509675477589, + 0.5939882795317176, + 0.5442759132700792, + 0.7098820511299098, + 0.6677023832817381, + 0.5271725424157246, + 0.658076289293735, + 0.6395836992744633, + 0.6823305315643874, + 0.7492467063456366, + 0.7294653054540647, + 0.5514008562708578, + 0.6199033546853303, + 0.6310824521979923, + 0.6667267042033739, + 0.6232817401635906, + 0.7688446158132063, + 0.5914917561271698, + 0.5086680111094335, + 0.7528128769963989, + 0.6593690039422475, + 0.5828991985758595, + 0.6470549180674808, + 0.7226251654927409, + 0.774892410198601, + 0.6925120454224428, + 0.5852741608036958, + 0.58180150793338, + 0.6995424908822957, + 0.4426959787276657, + 0.5739519886986071, + 0.5685229474181304, + 0.6755483763208685, + 0.4095194765606319, + 0.7121658452432353, + 0.7064467201994028, + 0.6572805846750752, + 0.6865073416091789, + 0.515006416060707, + 0.6496084125387275, + 0.5887287412869311, + 0.6610755193807261, + 0.49948161920024514, + 0.4023401443060181, + 0.39568318969088073, + 0.5587325666636834, + 0.48875680849463016, + 0.5575153588925049, + 0.5579137782622569, + 0.7252198285260304, + 0.6894132777122486, + 0.44575512315771454, + 0.5829769722529488, + 0.4632855439541623, + 0.6178172291865314, + 0.5640075067027334, + 0.5205084755212827, + 0.6092066362641632, + 0.5041164001286728, + 0.5992264948595658, + 0.7110809636863522, + 0.5220926570752398, + 0.7083677981583217, + 0.6883355886672033, + 0.7540656766010585, + 0.6530171983216725, + 0.6020356887031163, + 0.7933268306989681, + 0.8135050583401128, + 0.7748247772959699, + 0.3606786212160536, + 0.5798767593207733, + 0.5710777588239331, + 0.31202364664958027, + 0.6748015641740026, + 0.699771524330911, + 0.7009575122267925, + 0.5560829921337941, + 0.6750261719974697, + 0.5999024757131146, + 0.7097363921666505, + 0.730006837703673, + 0.6385086600646226, + 0.7587106310941027, + 0.6233565275742765, + 0.6923609790035119, + 0.6950976370253591, + 0.7762983357537991, + 0.682392911879337, + 0.6703868190294606, + 0.5490288730222209, + 0.617222752615287, + 0.6692260352501076, + 0.709309268531455, + 0.7842756210560893, + 0.5348116684865244, + 0.6174392637350165, + 0.681717553086745, + 0.6438618986665503, + 0.6225970424104125, + 0.698382490161817, + 0.8044107101193845, + 0.789644973093444, + 0.6356452186282, + 0.7367661481617165, + 0.4684238826959071, + 0.47774525838780646, + 0.48902660101255024, + 0.6464151124062469, + 0.6963851618702184, + 1.0, + 0.7677501198958198, + 0.6539799604028711, + 0.5287870149614435, + 0.7726510782158521, + 0.6273603557677228, + 0.3770122451044115, + 0.7001844247504053, + 0.6237659310915892, + 0.646858373034419, + 0.868861780604073, + 0.6367119872137684, + 0.5356331978181244, + 0.26635610655915737, + 0.5736829351549929, + 0.626710297150523, + 0.6584017661767514, + 0.7137617585099553, + 0.7452330018651598, + 0.659476103938163, + 0.48226254965876375, + 0.893497707275793, + 0.5089252836276894, + 0.6200700120018787, + 0.620011447035965, + 0.24674628596086456, + 0.654582056386419, + 0.5681159716694942, + 0.7636703026155184, + 0.5406207065843962, + 0.5276094084908132, + 0.1875910718177515, + 0.5830098338025029, + 0.37906156981081796, + 0.44480076702261867, + 0.36931257185919475, + 0.735594504685885, + 0.7855460612069489, + 0.6189342719315504, + 0.6123623784830379, + 0.7039480667384497, + 0.7714875076210711, + 0.5992066366644649, + 0.11313988803594383, + 0.6042044763161066, + 0.5853704563238826, + 0.5507734529311076 + ], + [ + 0.6693320102363379, + 0.599382399330956, + 0.6424067973574497, + 0.8145000717045091, + 0.6833876070948832, + 0.6281425524242956, + 0.5102236019581547, + 0.6111458345666327, + 0.6343835062530135, + 0.6544683245925708, + 0.45543280503069755, + 0.6758316825466065, + 0.7948838381156013, + 0.5689451877240289, + 0.7123236000946701, + 0.6610500425324255, + 0.4998426315389839, + 0.7248698160169254, + 0.7308749750981837, + 0.7256800585066693, + 0.7356897382423069, + 0.5783668640724532, + 0.6441968584906843, + 0.6514382642252683, + 0.6111253304519528, + 0.6836646207781624, + 0.6569670838553547, + 0.6662189444142921, + 0.608682952921351, + 0.6178760431261366, + 0.6627773887226222, + 0.6238349204607913, + 0.5841231488411949, + 0.4703602006042534, + 0.7963156340393748, + 0.6772789041320074, + 0.6985158824578531, + 0.6374954904873514, + 0.6613521375529116, + 0.7131317578519222, + 0.5919793599332237, + 0.7040810274585325, + 0.3798606850557393, + 0.6787742172991005, + 0.7137335008898427, + 0.7361674266819832, + 0.7256536003083616, + 0.6998142582392822, + 0.8342629203857905, + 0.7464466015945181, + 0.6859850591897538, + 0.7922697978303507, + 0.5712648909748528, + 0.541514122979096, + 0.4519119709326543, + 0.5222095886204218, + 0.6036333952062573, + 0.8048240597922008, + 0.700036350883649, + 0.7280627173646892, + 0.5836732600941116, + 0.8202617799929057, + 0.591052859000425, + 0.600642996642942, + 0.672815822320823, + 0.6904527802460128, + 0.8128455781729372, + 0.8629722844142359, + 0.5850883787336651, + 0.5931343911465473, + 0.7614914333997214, + 0.7118649357419609, + 0.7406252088333938, + 0.7491979649299008, + 0.7950279884363475, + 0.7735366430576662, + 0.7720315705276989, + 0.7740348830602107, + 0.558686099842342, + 0.8429771580974275, + 0.6084013037048389, + 0.6780815859885212, + 0.7393941964235186, + 0.8277863674096708, + 0.7050239180456122, + 0.7400093892559222, + 0.8112556876951673, + 0.7539523551474342, + 0.6971607343968904, + 0.7285257547312988, + 0.7719492157643078, + 0.7254080278868907, + 0.8362388420600763, + 0.8142416222537189, + 0.8190899487720149, + 0.7580630161366623, + 0.7155045512266172, + 0.7774891064802252, + 0.6770180966171041, + 0.5881664858743298, + 0.8040398362887029, + 0.7494919021948753, + 0.8414605064599303, + 0.7630581567329824, + 0.7418808006126908, + 0.5206264145643639, + 0.7160417811160645, + 0.7873405072972006, + 0.8362500284554868, + 0.7899133890066729, + 0.7595872834400212, + 0.7416025228695283, + 0.7528271172027763, + 0.7711251032161368, + 0.8241872563662774, + 0.8623474649074941, + 0.7158352565272323, + 0.7570704267750618, + 0.7757751665757731, + 0.7630285816859733, + 0.7768677956859475, + 0.8878352897440799, + 0.8226810512558191, + 0.5937071254253614, + 0.853011458911221, + 0.8637312880874847, + 0.6571851611715489, + 0.7243639187638122, + 0.8601536248800665, + 0.7336669532836447, + 0.7696464117056175, + 0.7297172653692374, + 0.7074602913400461, + 0.7801519825408839, + 0.533081355932843, + 0.7144186791021581, + 0.7757618579731829, + 0.8076464319842415, + 0.6075209704560903, + 0.7764878998307305, + 0.7448360063317855, + 0.8117365939001162, + 0.7391941831487849, + 0.7502770203973569, + 0.742658908492149, + 0.6958236579245843, + 0.7518638436719965, + 0.6953460898659258, + 0.5990995903027153, + 0.6689475142601977, + 0.7063006970186955, + 0.6750517672668301, + 0.7170858836707436, + 0.828933027705307, + 0.8311945468291078, + 0.8048290025163594, + 0.6892746108304239, + 0.800350396769055, + 0.7104736420656537, + 0.7531929076763352, + 0.8261779606027678, + 0.720086588616332, + 0.8182943259686364, + 0.7377892449617883, + 0.7519979208063589, + 0.8528152854882454, + 0.7707843341853239, + 0.8325198374056219, + 0.8309383225693766, + 0.8893401392388272, + 0.8311363836890724, + 0.8044632712874138, + 0.7841759891099681, + 0.7311249420067867, + 0.8290334648215314, + 0.4269819135918891, + 0.7720482439169705, + 0.7568278208373165, + 0.6200387872462333, + 0.7797927066376554, + 0.751542241101478, + 0.8284954371312062, + 0.7739825654041628, + 0.812427531943016, + 0.819604738458028, + 0.8008749701116494, + 0.8025108405522265, + 0.7723481750903025, + 0.8399186663645858, + 0.7377838361708471, + 0.7828490677947684, + 0.8023147909363694, + 0.8368971747297822, + 0.77919501527944, + 0.7939694250264494, + 0.7382506693790752, + 0.7813642467181323, + 0.8423249241941261, + 0.786831604700085, + 0.6620935320310102, + 0.7640241063562602, + 0.7159355703124657, + 0.7241179058818246, + 0.7450861862831305, + 0.8103905366011938, + 0.7781266723331783, + 0.8157998357389123, + 0.9110438745219049, + 0.740487349047356, + 0.8082594536121196, + 0.624774295765719, + 0.6224541482216326, + 0.7090874250929923, + 0.8071709069336899, + 0.8827774416111911, + 0.7677501198958198, + 1.0, + 0.8141227213915083, + 0.7048025953375209, + 0.8647002785590043, + 0.8174283972578147, + 0.47806458395023393, + 0.8133609544632548, + 0.726556177966091, + 0.8732624192188563, + 0.7784066570494544, + 0.8032435392729148, + 0.6792933261018912, + 0.5319935499195496, + 0.7953577203967473, + 0.8078602044048728, + 0.8506012203713919, + 0.8624458466445378, + 0.9506957118220611, + 0.8340335521638268, + 0.5619803552563077, + 0.6431751068520498, + 0.6672119460098384, + 0.7481494620147744, + 0.7773866884201021, + 0.49736747572135553, + 0.7695046598251956, + 0.6529686034914965, + 0.8661342665549931, + 0.710600203864939, + 0.5769489729980277, + 0.37520511845247834, + 0.6559768319538475, + 0.5383985553131395, + 0.6672583698081982, + 0.7073502865257458, + 0.726523324192572, + 0.7650424983154387, + 0.6454770925073866, + 0.5920068632840085, + 0.7001598675790934, + 0.8100481533397268, + 0.5562237186884316, + 0.32280562523038964, + 0.8160992546638884, + 0.7703736729598707, + 0.7258778149557675 + ], + [ + 0.8299103575171095, + 0.5725133351564694, + 0.7191524545745309, + 0.6763588108642188, + 0.7434699655740603, + 0.6841516656776933, + 0.56547113648118, + 0.8664108772529211, + 0.6354696566629074, + 0.7200168763801696, + 0.6149994416373374, + 0.6703167595927059, + 0.7942491099286927, + 0.6728994424998579, + 0.8498082793206843, + 0.6507542645904949, + 0.6972962900289417, + 0.7928632426451601, + 0.7339767265086651, + 0.7419042202015643, + 0.8927233224213533, + 0.6318568067485377, + 0.7830481478347189, + 0.6800629000457796, + 0.6450301713091342, + 0.7274694964915351, + 0.8442627874718102, + 0.8195673051979935, + 0.6452663086648769, + 0.5796861072251552, + 0.8063769546017531, + 0.6822449639323628, + 0.7677656472076096, + 0.7088816601584328, + 0.8277959530890534, + 0.8206546119073235, + 0.8535926312743117, + 0.37122573873535974, + 0.6920702984676698, + 0.8606369443120471, + 0.7289089729937944, + 0.6487925811348135, + 0.3508792046649785, + 0.7788963465993821, + 0.835764196374356, + 0.7580748851903082, + 0.9639127032442742, + 0.749072207862839, + 0.8230551069728962, + 0.905704817084848, + 0.828705569754477, + 0.6721922749549993, + 0.6195541699778263, + 0.6812655690526622, + 0.6016829609684314, + 0.6549954836988057, + 0.7328949213776468, + 0.8900359372316635, + 0.5268610308029253, + 0.9024945392257258, + 0.6349894972045534, + 0.9112877571334197, + 0.6612001473960785, + 0.7522751819509489, + 0.7320621473465083, + 0.6381978914747402, + 0.790628895611975, + 0.9008431427513085, + 0.7291740794314303, + 0.7368635383364659, + 0.7673677643927568, + 0.6137114875843243, + 0.8245441452185106, + 0.8870116126281249, + 0.8537169545590012, + 0.9028312749969603, + 0.9206256032686454, + 0.6782734299528421, + 0.7238212364369772, + 0.858911511063605, + 0.69756814504428, + 0.5130251672358264, + 0.7957479407262241, + 0.9067504521872436, + 0.865429434178291, + 0.8494540604997923, + 0.8283738625082853, + 0.6342763315364196, + 0.5707727229706443, + 0.6460599637487946, + 0.8771336138638856, + 0.8469412243884555, + 0.7968877428617431, + 0.8945386350533968, + 0.8801881528543873, + 0.7833058265647145, + 0.7499659368535714, + 0.7221411447863892, + 0.8372796207589638, + 0.710009115773281, + 0.8707924990633084, + 0.8057119518734442, + 0.7971709910609176, + 0.7867618529841465, + 0.9300173459173584, + 0.6629764673666573, + 0.7214647998374487, + 0.9015276668105325, + 0.8131481165229799, + 0.9483867660255623, + 0.9253789326505556, + 0.7975972142853027, + 0.9040475750055834, + 0.8503661638486, + 0.8946612788614938, + 0.8397023178565447, + 0.9177059383529439, + 0.8971633890937784, + 0.8154863466141766, + 0.8868860444629229, + 0.8690122431221976, + 0.9055983726385097, + 0.9243150044066911, + 0.7468356368409491, + 0.7846032416053799, + 0.8128384279898663, + 0.4434803290933486, + 0.8545499071241994, + 0.6366402100820052, + 0.829429356770161, + 0.7720040936321243, + 0.7066885381361947, + 0.6342713188414121, + 0.6876177614714604, + 0.6189974404558285, + 0.9254632087522817, + 0.9146568524700175, + 0.8186231603342772, + 0.8349646406343615, + 0.9409005922563793, + 0.8862306029755403, + 0.9492305462004633, + 0.9202245119010047, + 0.8827784287036494, + 0.46437509930138543, + 0.8075667250671644, + 0.8176921037596073, + 0.785740229133508, + 0.6618333152439594, + 0.9013562831371477, + 0.9150347816476646, + 0.8889422988070331, + 0.9209275070248965, + 0.8129919937992127, + 0.8916781809726791, + 0.924075063583852, + 0.886703136409687, + 0.873628083687724, + 0.8744425323947514, + 0.9241103599404027, + 0.9487516120802347, + 0.9195169701115157, + 0.9219676721896358, + 0.937911936146109, + 0.950952822357225, + 0.9533794450039138, + 0.9499006624083189, + 0.9109068675717202, + 0.93465720833488, + 0.9516976731299924, + 0.9309697414287027, + 0.911397933761004, + 0.8043240406774719, + 0.7160310459851992, + 0.9409024339240849, + 0.6232859520494015, + 0.9378132169653116, + 0.7921382850099599, + 0.8040122187194719, + 0.9473756477300975, + 0.7273419300145587, + 0.9446092696209469, + 0.9135202461340012, + 0.9761780103817412, + 0.885048365778216, + 0.9311535668121159, + 0.9119795916935187, + 0.9263681492006062, + 0.8585750505121753, + 0.9166302674236149, + 0.9337191096464406, + 0.9265402702577218, + 0.8942033624678246, + 0.9433904019499575, + 0.8976968078755952, + 0.8896404707150306, + 0.8880812655842412, + 0.9609100165323653, + 0.8746325367308856, + 0.686043600597054, + 0.920612678673323, + 0.7685035524247097, + 0.8449440455924109, + 0.8889033516350195, + 0.9648094623126895, + 0.9232217593011243, + 0.8250636075539495, + 0.833688882649493, + 0.6285273173062675, + 0.8962900424915418, + 0.8873879285342864, + 0.900756907394871, + 0.9295687410626664, + 0.8990744556561968, + 0.889268547627333, + 0.6539799604028711, + 0.8141227213915083, + 1.0, + 0.9553432776183151, + 0.925332263942281, + 0.8154674971712063, + 0.7310062635678465, + 0.895158375905069, + 0.8951503979562766, + 0.8677982593197212, + 0.8228949824570598, + 0.8946802897680658, + 0.9039778958749399, + 0.7480555602221388, + 0.9522975584500578, + 0.9282641834908882, + 0.9555455729500933, + 0.9501699040038559, + 0.8974375983895774, + 0.9259134833391274, + 0.44962139304192167, + 0.6119151346430638, + 0.8250375631492751, + 0.8933438637567717, + 0.9187353362418645, + 0.6421600789090959, + 0.8324684851292002, + 0.7849236806279546, + 0.7186490720670725, + 0.8855181165283103, + 0.6762356376597857, + 0.6582165549662834, + 0.701359413576412, + 0.7571209686482757, + 0.8178468221860186, + 0.7892721290311764, + 0.5824570484678405, + 0.6686934683792641, + 0.5727229546997754, + 0.5927442468407305, + 0.820802322333137, + 0.9033661139557664, + 0.604682893308576, + 0.54843687085774, + 0.8859361428867966, + 0.8601453011101731, + 0.7601221088269374 + ], + [ + 0.8221083303150023, + 0.5770917516821131, + 0.7073853264276841, + 0.5739636469332964, + 0.7341801843240846, + 0.626286823945785, + 0.5166183837139309, + 0.8693639513196125, + 0.562231064669353, + 0.6741038165185633, + 0.6295214032695594, + 0.667822400193342, + 0.7548076159620629, + 0.6416934722024209, + 0.7830969894269257, + 0.5848716478799619, + 0.6814500082169037, + 0.7398639912731968, + 0.6792444672569473, + 0.7116314267413268, + 0.8443641532315249, + 0.5803151325771932, + 0.8011380340696206, + 0.6332193347749575, + 0.604367395777491, + 0.7198064663004501, + 0.9040939590995903, + 0.792938331938172, + 0.5938819994150936, + 0.5747388769224697, + 0.8071651877296651, + 0.7164838169171241, + 0.754187664852358, + 0.7130850106706541, + 0.7429775304324385, + 0.8115136940116067, + 0.8508555050560442, + 0.3278890914733187, + 0.6590527100795011, + 0.8337579195829382, + 0.7559162890204327, + 0.6343028517915588, + 0.33800560729771656, + 0.6816751093958047, + 0.7853018114241886, + 0.7336675145296013, + 0.9686275164226176, + 0.7301307960448731, + 0.7236044872572618, + 0.8881495698022214, + 0.7263150414602231, + 0.5542230804650016, + 0.5301022305400855, + 0.6981346504406045, + 0.6289189134855699, + 0.6536186729629935, + 0.7218061217879959, + 0.8725052556201579, + 0.46481118169020724, + 0.8885189556057924, + 0.5438335940869525, + 0.8598728822108828, + 0.6113466262298021, + 0.7235964330322116, + 0.699856819151573, + 0.5905624156769796, + 0.6997758297453717, + 0.825235119699725, + 0.766763471230773, + 0.7923707121321547, + 0.7499645981616736, + 0.5362301635079942, + 0.7854954761125612, + 0.8589107719044834, + 0.7885693792550399, + 0.8495135402387071, + 0.8831729868307854, + 0.60944160754617, + 0.7015164946023917, + 0.807376275679315, + 0.697023623475067, + 0.3751083015123968, + 0.7305384576665475, + 0.8396885609966546, + 0.8606959685177208, + 0.8462067926121134, + 0.7640319999913786, + 0.5445818106923809, + 0.4553831611887856, + 0.6233143724606757, + 0.824975541289812, + 0.8022412525971231, + 0.7700556232822053, + 0.8636317954732826, + 0.8172387045152179, + 0.7272462023181225, + 0.7202297320398451, + 0.6776713642689333, + 0.8006891902439394, + 0.7266619143806519, + 0.8687793935596141, + 0.7415625801277136, + 0.719272536642452, + 0.7395339185385519, + 0.9240308413437657, + 0.6104806675980786, + 0.6790677906005749, + 0.8518994707725367, + 0.7582706783030103, + 0.927872784300611, + 0.9150345354117848, + 0.6818251725067189, + 0.8712582539758558, + 0.7966869099002204, + 0.8457506825370239, + 0.7629003081969976, + 0.9348924840993743, + 0.8590159520827205, + 0.7000781811124797, + 0.7965774366014894, + 0.8685710499490599, + 0.812870471126583, + 0.908121667031507, + 0.6595621358999447, + 0.6812593780963233, + 0.6915418261146896, + 0.3167532104372269, + 0.8068563592079037, + 0.5243136703841883, + 0.7715769563439387, + 0.6426639514810346, + 0.6338431254204665, + 0.4951547482017866, + 0.5547427404444354, + 0.551453274549806, + 0.9362077153756595, + 0.8821708820293235, + 0.6923816932609141, + 0.878197883159383, + 0.9121269712027663, + 0.8488733665414085, + 0.9084997473314818, + 0.9363210866094072, + 0.8884337827857687, + 0.3300876229827385, + 0.7480759561707196, + 0.7969715956436382, + 0.7682702045202845, + 0.6824184678474794, + 0.9371767723789898, + 0.9087473486820196, + 0.8976376532521406, + 0.9408419142138932, + 0.7248696853227654, + 0.7922860827056072, + 0.8849008721203032, + 0.8888740721632149, + 0.8119157356364627, + 0.8059882700173653, + 0.8911726059895048, + 0.9105269469609326, + 0.9043646484921536, + 0.8402974400331205, + 0.932098089301123, + 0.9411838834141465, + 0.8879241548503962, + 0.9331746883136203, + 0.8369535632882475, + 0.8921664731855636, + 0.8845049871173646, + 0.8669205625308498, + 0.8755782325247853, + 0.7066674955077417, + 0.7110684206250503, + 0.8654612402085624, + 0.6553016358829069, + 0.8996879679148577, + 0.7895122275705021, + 0.8233779322372956, + 0.8895624376588748, + 0.6510636634589643, + 0.9019114167370881, + 0.8983805562565216, + 0.949707311328725, + 0.8712997415100356, + 0.8574432436221149, + 0.8199159216202484, + 0.8680526130368561, + 0.746968138367863, + 0.8814571136139824, + 0.8914170483629791, + 0.8742400037738309, + 0.8101542045484506, + 0.9336527049744416, + 0.8806859649466663, + 0.8604414448950644, + 0.8327260915518726, + 0.8819143479517538, + 0.8677593340607805, + 0.6218019001231556, + 0.9131201088114638, + 0.6776648655357387, + 0.8220275110718499, + 0.8748790612844664, + 0.920243934344413, + 0.8923803821369228, + 0.8061837871917698, + 0.7409063978799223, + 0.5072047662687036, + 0.8443400585803333, + 0.871605283450366, + 0.940221487532538, + 0.9677967455541939, + 0.8402890517877489, + 0.8180460218195532, + 0.5287870149614435, + 0.7048025953375209, + 0.9553432776183151, + 1.0, + 0.867539917463845, + 0.7946997946194411, + 0.7620077842635723, + 0.8394730051955066, + 0.8607699036724107, + 0.798247181932339, + 0.7073357524322332, + 0.8950042019786058, + 0.9292664779556081, + 0.7220326676166942, + 0.8973745185878882, + 0.8884620825118976, + 0.8927910695194563, + 0.9048033178057636, + 0.8018275809782479, + 0.8860234272475813, + 0.41410844371699496, + 0.5633285267148472, + 0.8838336404846544, + 0.8890663490073778, + 0.896605660113988, + 0.6031932821494967, + 0.8313746082261374, + 0.8132347756745995, + 0.6377754344792902, + 0.8183986672490744, + 0.6272864201248306, + 0.6940109736501946, + 0.6642472471881089, + 0.7851702962256434, + 0.8783959421735889, + 0.7802407862013382, + 0.48502126329693973, + 0.6280298018105537, + 0.5446152703288183, + 0.6014481789665337, + 0.7821950276854523, + 0.863032856770847, + 0.5575872043801395, + 0.5448806054360705, + 0.8490320337092326, + 0.7864879913560631, + 0.7493526171089494 + ], + [ + 0.73562558684868, + 0.5200212976030757, + 0.6314543001515762, + 0.7634563870831882, + 0.7961313012404267, + 0.7688935700108267, + 0.4873496930105245, + 0.7510098570865568, + 0.5458106413954898, + 0.6346980954614647, + 0.45716666202868955, + 0.7147149373537612, + 0.8319686439998917, + 0.7069517905644329, + 0.7969057754807631, + 0.7297425388016513, + 0.5855168428226997, + 0.7609095699738282, + 0.8235156128775816, + 0.7235991510891792, + 0.8390549840434337, + 0.7086923589911012, + 0.7531226774986636, + 0.66758320306212, + 0.6016436908925513, + 0.7808215906255861, + 0.8169677878583108, + 0.7558503610110868, + 0.6952382988783188, + 0.5709217109868727, + 0.7739984519121589, + 0.6354405499673907, + 0.7345854051422751, + 0.695150384961976, + 0.8395267808594815, + 0.809187513692655, + 0.8046078650504889, + 0.5446358320221998, + 0.6640965976446396, + 0.8112143368848748, + 0.7109423781062745, + 0.7347164685447978, + 0.5434868186351288, + 0.8431084141989341, + 0.8290825206563853, + 0.7381375367347516, + 0.8845451776981577, + 0.6733209058481268, + 0.877238259895092, + 0.8563255519574934, + 0.7627968619181031, + 0.809206829351045, + 0.7085515774744148, + 0.6736444055487899, + 0.575623089434249, + 0.6399557704689066, + 0.7320566263061985, + 0.8978320587172942, + 0.7130453154743132, + 0.8475580183286727, + 0.5839416784596784, + 0.9204824255137354, + 0.6245884708678417, + 0.7546700302966995, + 0.7081879620718038, + 0.6461845122106394, + 0.8297404185372187, + 0.9186854447880444, + 0.6908414334902792, + 0.6785162830369605, + 0.8151303888727839, + 0.6929993434469085, + 0.7406943896072986, + 0.8267962255816039, + 0.8669931213215862, + 0.9153638274675434, + 0.9149702410904281, + 0.8612687252658467, + 0.6395882230589677, + 0.8889471954773959, + 0.6977445083749382, + 0.7021139649173205, + 0.7476553047509172, + 0.9686072888769977, + 0.7888849737605663, + 0.7541548854170309, + 0.8123175849633549, + 0.7298597362710031, + 0.714503141053755, + 0.7970138818369862, + 0.8576379170276417, + 0.8485576540587442, + 0.8913118480998261, + 0.934896502394127, + 0.9136898253573233, + 0.8031004146620724, + 0.7163589302478492, + 0.8354404750632303, + 0.7809291650538985, + 0.6562078945885207, + 0.9032931103042795, + 0.8278384896358495, + 0.7655011223160185, + 0.8745225912826063, + 0.8983726564638228, + 0.572597702795101, + 0.7901504283944448, + 0.8523561001251948, + 0.91571850358369, + 0.9290668305854558, + 0.9235390065521264, + 0.7475811380371689, + 0.8216369699562418, + 0.8663905702708444, + 0.9314499380474217, + 0.9086402805175984, + 0.8877968589237206, + 0.8718696411902531, + 0.7587879751434352, + 0.9325074291100863, + 0.9314882031271912, + 0.951301992572656, + 0.8831294520952463, + 0.6697109455333409, + 0.7943829865916612, + 0.7893288388776819, + 0.6219181458732023, + 0.9045923292737936, + 0.7481790513287113, + 0.9310537230855177, + 0.7433341368058659, + 0.7216993196532556, + 0.5742074553943166, + 0.7266007671229948, + 0.5708547320810009, + 0.8631102703149115, + 0.9146885931377252, + 0.8561016494145935, + 0.7852841688232622, + 0.9309066713342902, + 0.915809171371378, + 0.9154823187590924, + 0.8873635311878559, + 0.8350989817707881, + 0.6520796591035604, + 0.8018720961395337, + 0.9182744159925541, + 0.8331746720406136, + 0.6453511569918257, + 0.8458585863333952, + 0.873051586740266, + 0.8673875199297592, + 0.8674935464556996, + 0.7357791345452451, + 0.9402037087524353, + 0.9654020040535689, + 0.8393731740723361, + 0.8912245051223554, + 0.7897907298373079, + 0.8598381387101, + 0.9214992995870517, + 0.9068639791745506, + 0.8861035871239161, + 0.8983610535907601, + 0.9017212064714947, + 0.959923202209546, + 0.9286479922030154, + 0.9223244421797864, + 0.9599488302181794, + 0.9523903935566168, + 0.9405955634273823, + 0.9371652748031516, + 0.7718857147105895, + 0.8279834665915075, + 0.9791451738351266, + 0.6437186499671167, + 0.9131362172891307, + 0.8670094330160965, + 0.6850822533439302, + 0.9287869705332128, + 0.7716158105919378, + 0.9761650981418397, + 0.9175588032201227, + 0.9454891907944916, + 0.8774908670981685, + 0.8975378488095497, + 0.9284721860995155, + 0.8339786359367228, + 0.8209942604115315, + 0.848540086900561, + 0.9025061943011616, + 0.9030650143517732, + 0.9530889347472348, + 0.9368974845810378, + 0.9067431411332049, + 0.8306635141767744, + 0.8741411482957254, + 0.9411810061420148, + 0.895242948414553, + 0.8328147927311174, + 0.8988401560400394, + 0.706911689338731, + 0.8708231899158805, + 0.9006382519765429, + 0.9206205733661994, + 0.9414166171196922, + 0.874525358772233, + 0.9038187290494643, + 0.7591315124354465, + 0.9814744805041452, + 0.8305374801621553, + 0.8229804643396766, + 0.8906542499322296, + 0.8844645106519645, + 0.9106897622490359, + 0.7726510782158521, + 0.8647002785590043, + 0.925332263942281, + 0.867539917463845, + 1.0, + 0.8486992240084348, + 0.7123606327383972, + 0.9291668045315575, + 0.8882023483230856, + 0.8853463349478556, + 0.8190860114665863, + 0.8857308301960715, + 0.8791683542922172, + 0.5880881875580243, + 0.8590199594396242, + 0.9233354250785523, + 0.9348736048785941, + 0.9700337975161093, + 0.9390619245962155, + 0.9233555328838721, + 0.6233844162353932, + 0.7267078896997072, + 0.7930828174385115, + 0.8917155364991944, + 0.9364879587070613, + 0.5962553014588763, + 0.9078074905149282, + 0.7754297897301988, + 0.87121343492406, + 0.8665860880822676, + 0.6480426186250337, + 0.4941487725025816, + 0.7518319144769016, + 0.7487336307630464, + 0.7510087274447299, + 0.75379624221188, + 0.7782852282586245, + 0.8193195149123134, + 0.6131851751298165, + 0.7447762046824139, + 0.772847486020429, + 0.9528587549349546, + 0.6839315170192211, + 0.4219877027891509, + 0.9138039503695384, + 0.8717281011871536, + 0.7724393554455498 + ], + [ + 0.6115741780765618, + 0.5598176668091789, + 0.7452640632261974, + 0.5973981234802874, + 0.5756614419108765, + 0.5762645726324842, + 0.459384435888523, + 0.6952732910949073, + 0.48956216702826005, + 0.6592324507349403, + 0.494752869954814, + 0.627864381716296, + 0.79408699829232, + 0.36439122204049357, + 0.6824284480428643, + 0.4674856541969973, + 0.49045984637768897, + 0.7202649223060045, + 0.5965178125769557, + 0.7808672667414515, + 0.7297230282347394, + 0.4128461731284322, + 0.7536298829007397, + 0.6095507156296436, + 0.462643238802226, + 0.5807476462259219, + 0.8488067769934307, + 0.737592984646096, + 0.49085804893900137, + 0.3930759466252693, + 0.6141991465519698, + 0.607525173665, + 0.5452313130515728, + 0.5731938419286784, + 0.7940012479465254, + 0.6021957468690537, + 0.7516817294497774, + 0.3896997206010861, + 0.5566435901540217, + 0.7048308840403944, + 0.7003860326887172, + 0.7175036856430331, + 0.383666753457591, + 0.6534445605249737, + 0.7683997046214242, + 0.780881864347523, + 0.7558651301885208, + 0.669250238186777, + 0.8280207564292629, + 0.7172362392001885, + 0.6252336387727522, + 0.5813989149436396, + 0.40048110095971434, + 0.4793388159309279, + 0.3372857412836566, + 0.41377838107501985, + 0.5112206494007694, + 0.77104943937409, + 0.6259793902647703, + 0.7294686855624862, + 0.37779432343697034, + 0.8074758466461875, + 0.48322374997578055, + 0.5175895097913429, + 0.7750621728908252, + 0.6438509868979505, + 0.6575851344455534, + 0.8273838601076579, + 0.6364554703205799, + 0.6152039005123441, + 0.718847567935686, + 0.5598922928696417, + 0.7489382644654128, + 0.7259333877537352, + 0.7805382937425174, + 0.8599726294010255, + 0.8580754096824884, + 0.684669637841277, + 0.5869438017811213, + 0.7976625889577318, + 0.5941561692036488, + 0.4689856462074453, + 0.7177817280271153, + 0.8047670955548984, + 0.7084408280929313, + 0.7145254240773254, + 0.7209776160188751, + 0.6107883733187175, + 0.46853996235639817, + 0.6260931710502727, + 0.7905152797461236, + 0.7967019403124682, + 0.8932266500823551, + 0.8514863168000429, + 0.8896704520299918, + 0.6044898358281519, + 0.6953571258161673, + 0.6047667802827251, + 0.7401795329331567, + 0.6591681205827248, + 0.8800957374676516, + 0.6393911391482869, + 0.6307466452164661, + 0.6261329176865665, + 0.8232289709597477, + 0.6117100999751878, + 0.5977329334999777, + 0.7736630045800994, + 0.7674761097087012, + 0.9069389225850024, + 0.7810648017017876, + 0.6452205212159966, + 0.8106046632036746, + 0.7529924804858744, + 0.7308215510145661, + 0.779292503746627, + 0.7459519774417983, + 0.7656238967518058, + 0.754750068376243, + 0.8078606340804799, + 0.8830771739177705, + 0.8346748572477399, + 0.8064305688768719, + 0.5207551383500566, + 0.7186005939202798, + 0.7317970278016362, + 0.3923462038083471, + 0.8364194202248868, + 0.7553466042499769, + 0.8245351326584519, + 0.6293039760273053, + 0.6318837298609485, + 0.4872648914271461, + 0.5690352450100901, + 0.6852269338092933, + 0.7149501874075284, + 0.7377863008803204, + 0.812128453394343, + 0.7256635228230829, + 0.7891798760574832, + 0.6763380707980142, + 0.8378334363012501, + 0.7815732719837789, + 0.7438795870198013, + 0.5165613282800652, + 0.7340088845502608, + 0.7720232738654658, + 0.6955245933285253, + 0.4619017606290831, + 0.7728771479330707, + 0.7012750545453321, + 0.6767518635142444, + 0.7595490142451967, + 0.7140215580629418, + 0.7924122044746877, + 0.8381663835054334, + 0.7001455103317696, + 0.7400774490465574, + 0.6308085602824186, + 0.6873466329578352, + 0.8030267401297476, + 0.7315717965850717, + 0.8098892053261363, + 0.8663367764926947, + 0.8531019819284358, + 0.8291419323686475, + 0.8400377030306947, + 0.7062960585679544, + 0.7604608608016142, + 0.8195954837813048, + 0.8260542178617636, + 0.7950012466801645, + 0.7284568877354892, + 0.8162381028497185, + 0.8199955306756173, + 0.3892260972191043, + 0.7334144238321038, + 0.8001172457807944, + 0.6676210778464226, + 0.7141901380536856, + 0.5436893234245697, + 0.8192066422675511, + 0.740720181138082, + 0.855740876567058, + 0.8194395371002053, + 0.806483351189066, + 0.7597690786631001, + 0.7850781382206761, + 0.7809668854561811, + 0.7785897584847705, + 0.8020500656774384, + 0.8812522020806033, + 0.8188286978147271, + 0.831681197066356, + 0.789940704007771, + 0.8227171668577439, + 0.7925873341292523, + 0.8128013821030268, + 0.8417610462414374, + 0.6061445087970637, + 0.7934792464652723, + 0.6130172662741619, + 0.7506945208304541, + 0.8289202526756375, + 0.803223156988086, + 0.7996892133567427, + 0.7926937870564165, + 0.8378048293607133, + 0.5769204355481207, + 0.8269826099384118, + 0.7351975610989292, + 0.6966274522602414, + 0.8252376034025138, + 0.7968601054207687, + 0.8751635607237258, + 0.6273603557677228, + 0.8174283972578147, + 0.8154674971712063, + 0.7946997946194411, + 0.8486992240084348, + 1.0, + 0.515891871526427, + 0.8163796441202997, + 0.7507702376740901, + 0.6817190536425101, + 0.663226596670743, + 0.8345562892233095, + 0.7758289986778949, + 0.5395487115118455, + 0.8116289688766437, + 0.725251217255798, + 0.908537428239905, + 0.8450564742726254, + 0.842508744271536, + 0.8087219665758887, + 0.5350322881248035, + 0.5808817304877738, + 0.6870484450076545, + 0.7117122100272608, + 0.7865204850195333, + 0.41859365192382514, + 0.7844798644795655, + 0.8526550598975444, + 0.7598143982251376, + 0.7478954417408343, + 0.3557546387668242, + 0.5200096573664728, + 0.5075095653563082, + 0.5467931266134486, + 0.8316495230104245, + 0.6572855351402273, + 0.666688504363904, + 0.6698552381543899, + 0.6170109658294722, + 0.5124378834915442, + 0.7149347882506164, + 0.8668892333905406, + 0.48554873779145324, + 0.37872312168385935, + 0.7241197354235768, + 0.8500167087620615, + 0.6646161193951567 + ], + [ + 0.4759671344821562, + 0.1411820404442375, + 0.23453504009770984, + 0.4173313327074782, + 0.6355264236092033, + 0.40995898791167934, + 0.179372792169207, + 0.5945097575603216, + 0.21062729197950306, + 0.4082722617211087, + 0.35053824142630524, + 0.3768453610283867, + 0.3570615806797748, + 0.5630116413040582, + 0.5274355097314153, + 0.40058012564585943, + 0.32524571797815505, + 0.36374089171027524, + 0.5018617357458631, + 0.3203216743451972, + 0.5834183057085878, + 0.5584150508251031, + 0.5362421174631894, + 0.3752894364940648, + 0.29640600389491284, + 0.471013237543528, + 0.5886245462355637, + 0.473961770875015, + 0.3842684002545231, + 0.2955511278843828, + 0.454729687860885, + 0.3931758464351038, + 0.6150766700180085, + 0.600701884109506, + 0.4871605705444849, + 0.608980288550712, + 0.6443197954144912, + 0.4244903215241273, + 0.3642108707062491, + 0.6923511196946761, + 0.44997510890429887, + 0.3480424892885815, + 0.4490621827162597, + 0.6181870286006735, + 0.5385853220674353, + 0.4989663458480474, + 0.7727338142413989, + 0.41893527042235246, + 0.5673016089275946, + 0.8679465324364498, + 0.5449977458534481, + 0.3737229180714313, + 0.4810673604071996, + 0.4483737031177671, + 0.47486134703214145, + 0.48108814570467284, + 0.5216855671803545, + 0.6826507441880268, + 0.3597453503526747, + 0.7145441349937612, + 0.3201453032984766, + 0.6730188907133935, + 0.28619930289586315, + 0.5618415573296466, + 0.3936311104132388, + 0.3712535442417353, + 0.46579874176509406, + 0.616476371683855, + 0.486720706273158, + 0.48638728494964806, + 0.5313061295783569, + 0.2614427947037572, + 0.3436274275349999, + 0.5655793845200454, + 0.5911305397523312, + 0.6667907800357458, + 0.6745321089450912, + 0.5215232230469801, + 0.37215787503654063, + 0.6096629645646127, + 0.43811282778322325, + 0.4093137480877476, + 0.577301100541456, + 0.7001711329418594, + 0.5538780202679633, + 0.5066228742688756, + 0.41798454097759835, + 0.3606896508560774, + 0.47016722857163656, + 0.39810301551051996, + 0.5331498474079114, + 0.567537337629926, + 0.5764808210519407, + 0.6069900014957703, + 0.5480961858749634, + 0.536965130378221, + 0.38105257376771384, + 0.6130957589877379, + 0.5541515133388946, + 0.43457230971808153, + 0.5913967558259184, + 0.5794737252048293, + 0.4667289969945832, + 0.6412498407821289, + 0.6079938852361129, + 0.29408820044911554, + 0.4884774478327673, + 0.6331353382696098, + 0.6162735305300602, + 0.6847718826723204, + 0.7965160318323098, + 0.48557305360713765, + 0.4786587759213011, + 0.45414808446175986, + 0.6511445167464854, + 0.49560995779469874, + 0.7775860854908643, + 0.5540265658669741, + 0.39141846838730926, + 0.6126899750208569, + 0.5985316931216461, + 0.6653848582070726, + 0.6553990045297171, + 0.4500450854258617, + 0.42470713716736763, + 0.5212522639721783, + 0.4370783768365099, + 0.6181031626263433, + 0.3284101542282039, + 0.6454446114463432, + 0.42283643822709255, + 0.4505074336045463, + 0.3010692025627042, + 0.46914052937250683, + 0.21507326978854088, + 0.6748570766002844, + 0.7065400544527899, + 0.5018350010202722, + 0.8671695089190588, + 0.7426420145487667, + 0.6772689752399504, + 0.6418889312792057, + 0.7443791539857174, + 0.6591085251095803, + 0.2976830445991888, + 0.47070150924860743, + 0.6321724860102097, + 0.8645369137078895, + 0.8060454098922218, + 0.7348564913620127, + 0.7336128673908903, + 0.7943357227645585, + 0.7050250240395536, + 0.4035262704111628, + 0.6365712405115047, + 0.7324532402920819, + 0.87108582424774, + 0.628510321314761, + 0.5855424639095244, + 0.6491431051709275, + 0.6813764691098242, + 0.8458825375313395, + 0.5619763974958891, + 0.7186471019499782, + 0.6309059068480302, + 0.6711089141807616, + 0.7692781551402488, + 0.6644684697101685, + 0.7243600157004866, + 0.6375802478895377, + 0.6929456430425569, + 0.7237080814616781, + 0.4371729888024027, + 0.4366262843660902, + 0.6953057301152163, + 0.8688775752835983, + 0.8078577512363855, + 0.7316454686656282, + 0.4888021023562979, + 0.7228714149280715, + 0.44535435880506763, + 0.7004237675559579, + 0.8138786401525997, + 0.6926099711758379, + 0.6660875359704931, + 0.5747241422117443, + 0.6621847375566293, + 0.54561936679501, + 0.5031538027625491, + 0.5356048901272462, + 0.6678358702014631, + 0.6299192269024597, + 0.6488014030133129, + 0.6941466543724182, + 0.8087685956384262, + 0.5939676779242307, + 0.5838974371161282, + 0.6882547612216988, + 0.7358407609345867, + 0.5865572879384932, + 0.7834622407649425, + 0.44075185413709167, + 0.6139863252325115, + 0.84184944640012, + 0.7258175830313321, + 0.6937710278309882, + 0.485024567360126, + 0.49211384592045865, + 0.5288660093116961, + 0.7096934288537501, + 0.7584602931861205, + 0.8702020610580966, + 0.7593019832597446, + 0.6072577690980137, + 0.6050882628726812, + 0.3770122451044115, + 0.47806458395023393, + 0.7310062635678465, + 0.7620077842635723, + 0.7123606327383972, + 0.515891871526427, + 1.0, + 0.7563534061083768, + 0.7563205890950648, + 0.6710962171341882, + 0.4783831571234581, + 0.7298308691467194, + 0.7716300368074471, + 0.4309333926019839, + 0.5699370605841387, + 0.7370125243779411, + 0.6249400725012003, + 0.6576035127712322, + 0.6091572021330312, + 0.6654126679640437, + 0.5318548803473404, + 0.4602560790362622, + 0.8579925020252672, + 0.7724651678649452, + 0.7475184167815957, + 0.5013801447686431, + 0.7555688141251732, + 0.524011008406895, + 0.5140108440751598, + 0.7651483753786558, + 0.5437288886097649, + 0.33984233427647575, + 0.8605228043140868, + 0.9284331881436259, + 0.5249511627015093, + 0.847418762775166, + 0.45511859654736586, + 0.368967022397358, + 0.2144170508852255, + 0.43289926513707505, + 0.4492319287655833, + 0.687589418048248, + 0.5682937881704261, + 0.31002551928946476, + 0.6752758323345103, + 0.5563447042434978, + 0.5150916284513972 + ], + [ + 0.6978821149821525, + 0.430773756227243, + 0.6312535491476362, + 0.7070457983457517, + 0.7456466267542011, + 0.6969721000758107, + 0.4331655007272573, + 0.7368786841496529, + 0.5102431769957362, + 0.6343149034367902, + 0.45979584146191443, + 0.6305679992440534, + 0.7423040920418748, + 0.6060526041969337, + 0.7476025747400776, + 0.6012727838219709, + 0.5229019791023316, + 0.718300053892067, + 0.7433985189939807, + 0.7039746048460088, + 0.7895827557776123, + 0.650735079939067, + 0.754020507807926, + 0.6072440525395741, + 0.4841713095304541, + 0.6809047996640857, + 0.7935690626134357, + 0.7583139666060039, + 0.5826924022011801, + 0.4717283878420187, + 0.6545748943521712, + 0.4708570648643635, + 0.7262046786166553, + 0.6528799208323237, + 0.8204157564655866, + 0.7541941010299555, + 0.7886554296020338, + 0.5894927386828436, + 0.5973445113664363, + 0.80645490361489, + 0.7389853871538208, + 0.6745456348142206, + 0.5522111901081593, + 0.8073985011792016, + 0.8136604814458169, + 0.7039217488676629, + 0.8467134428638751, + 0.6884496925177304, + 0.8703313300098966, + 0.8787001039055724, + 0.7612829427415748, + 0.7259017360445489, + 0.6205264837351149, + 0.5927247786850409, + 0.47362088533143276, + 0.5812024150967573, + 0.6627843475555775, + 0.8645018649168825, + 0.628059899759186, + 0.8112633272664879, + 0.5283427369097372, + 0.905432753801011, + 0.5450570979037662, + 0.6259447857209139, + 0.7918886567314937, + 0.6658697523393593, + 0.7575435869284248, + 0.9271425470779536, + 0.6419481950590401, + 0.6187452542666849, + 0.7450258918178174, + 0.5963133715947561, + 0.7056433688294822, + 0.7701336160159865, + 0.8387487840884934, + 0.916586421981519, + 0.9227995015913846, + 0.8290819024222066, + 0.668132494830703, + 0.883996232191673, + 0.6598251133378612, + 0.5908748047906688, + 0.7611929182831477, + 0.9357972698662349, + 0.7382374072937293, + 0.6776249615787361, + 0.7518547442108792, + 0.6580663156691797, + 0.6884201286594964, + 0.6961037605130058, + 0.8122178842345855, + 0.8622829971328373, + 0.8621811673567176, + 0.8607534400452095, + 0.8611080843821227, + 0.7285805756096436, + 0.6219480231520301, + 0.7552125222912303, + 0.7653211282173717, + 0.6245971162638735, + 0.8619687852411284, + 0.7462029048967174, + 0.7356149175378922, + 0.7907393391643932, + 0.8561450407819221, + 0.555951897035559, + 0.7835839427269213, + 0.8433496880825356, + 0.7709064485184703, + 0.9123181866143653, + 0.8999611386576906, + 0.7460707764545803, + 0.7542048098593349, + 0.7715156298497432, + 0.8482371441128829, + 0.8473255726891976, + 0.877179665636451, + 0.8274054519358481, + 0.6836075246965012, + 0.9073578903611349, + 0.8593990063022641, + 0.9189778998137722, + 0.8072432441361427, + 0.6219722537383618, + 0.768522427895821, + 0.7530384214176643, + 0.6025735137261872, + 0.8793291585964214, + 0.726806581570189, + 0.8729600917008421, + 0.7273548223246559, + 0.6314899138856446, + 0.5270346021578325, + 0.6761217397152143, + 0.5979899467706974, + 0.7848302240771706, + 0.8290297274368297, + 0.8623459135729369, + 0.7810323049451637, + 0.8781881047337898, + 0.8426067210634642, + 0.8839473588223233, + 0.8522074811512613, + 0.800639093012667, + 0.6411832568810756, + 0.806597429645877, + 0.8509936327855885, + 0.8218120541388599, + 0.640920034063898, + 0.8490084099900113, + 0.8690218441118059, + 0.8167799315914491, + 0.8367478418074115, + 0.7197851692342714, + 0.899005155528028, + 0.9112524497191778, + 0.8191051982125568, + 0.8340046414107161, + 0.7379754641369884, + 0.8209578875717758, + 0.8841907837424561, + 0.8849721246531412, + 0.8502145371887293, + 0.8804312951794094, + 0.8661226527131043, + 0.9172597780208769, + 0.9092273913179648, + 0.870168634439401, + 0.8948951102724614, + 0.899072512662289, + 0.8844179260235776, + 0.891171288451417, + 0.6922912902041252, + 0.7872346753739162, + 0.9315329761660416, + 0.6119996694998606, + 0.8653383318662625, + 0.8958772399538044, + 0.6371528761532376, + 0.833852659663527, + 0.6517709705912825, + 0.8995761335883594, + 0.9021059044129053, + 0.9113850941785314, + 0.8416185576747048, + 0.8412713835609171, + 0.8655654421023413, + 0.8237326029376824, + 0.7702398203724206, + 0.8134257204359494, + 0.8963676641045393, + 0.9050826351307952, + 0.9084292117280717, + 0.9062596211056082, + 0.9167487758661755, + 0.7371884519934759, + 0.8603919811030958, + 0.8990915061664234, + 0.927814220311864, + 0.7651572011747904, + 0.8769896066498403, + 0.6517942792318882, + 0.7320110814301067, + 0.9352824692108113, + 0.9142990806385616, + 0.945657379782377, + 0.8396942514109466, + 0.8816359963225144, + 0.6987998570019237, + 0.9269691763718798, + 0.8682844682188767, + 0.8240784505217492, + 0.8771531007061314, + 0.8248229319180433, + 0.8960777283301117, + 0.7001844247504053, + 0.8133609544632548, + 0.895158375905069, + 0.8394730051955066, + 0.9291668045315575, + 0.8163796441202997, + 0.7563534061083768, + 1.0, + 0.8720095552554771, + 0.7718038397583729, + 0.7919674069137017, + 0.9286073291799534, + 0.9191058870182169, + 0.4931199161306426, + 0.8336819294007582, + 0.8963135355602332, + 0.9094007094009896, + 0.9132274413652537, + 0.8918314496815369, + 0.9376333554915434, + 0.6881281940620628, + 0.6283924661762404, + 0.8286362692764694, + 0.8874819416135722, + 0.9284774530511475, + 0.5929882379765071, + 0.954824785293534, + 0.8542244752778251, + 0.7506965663047431, + 0.8667445260419293, + 0.5945118452957595, + 0.4710722585052438, + 0.7226594988757601, + 0.7459435525984773, + 0.7976007628441271, + 0.7985070549728941, + 0.6546426814449373, + 0.7203935156410501, + 0.5874706129354768, + 0.6022177889226978, + 0.7024792854710972, + 0.8808187825637476, + 0.5989018930009794, + 0.3890100015785962, + 0.8475416640189296, + 0.8314549464992556, + 0.6099820967075911 + ], + [ + 0.8105236207712759, + 0.5353271675646113, + 0.6613090974084935, + 0.717614138655168, + 0.8143970317923749, + 0.7325594913460961, + 0.534903924123421, + 0.8141450276710861, + 0.6721538305819457, + 0.6938996616363248, + 0.6303592832894321, + 0.6569456338787194, + 0.7584876231242236, + 0.7065437602892959, + 0.8500442523828377, + 0.7449272041238693, + 0.7245834328576776, + 0.7686770546441194, + 0.8307991969688934, + 0.6939274073200205, + 0.9144613415746987, + 0.8009817903119559, + 0.7748797117321553, + 0.7412305713744177, + 0.6855269647732797, + 0.7830317975448435, + 0.7931277262052469, + 0.7842739009327535, + 0.7323984086972928, + 0.6182202778843928, + 0.8267564760399311, + 0.6500156186030526, + 0.808063258286335, + 0.835104622336175, + 0.801988370065441, + 0.8728761073230712, + 0.8691674526835999, + 0.4769242079172492, + 0.7567022036454297, + 0.9492798021145692, + 0.7798401100407848, + 0.7080872912687679, + 0.6444787294507446, + 0.8219003613503794, + 0.8304669435056123, + 0.6962131061209649, + 0.9165555627009644, + 0.7582230781642942, + 0.8220523163135804, + 0.928686347296259, + 0.8490396687842834, + 0.7079774296752162, + 0.7551349097437866, + 0.7605982809341018, + 0.7008259369857905, + 0.7641919328461885, + 0.8456339409575978, + 0.9186475306457854, + 0.6173438166973313, + 0.8232339656507244, + 0.7276404021767245, + 0.9302931054857777, + 0.7176308640403273, + 0.8644012795878614, + 0.7108689476624654, + 0.6526671872437141, + 0.7838707063645327, + 0.8468609816067799, + 0.6881610798094192, + 0.7267595724541352, + 0.7662202387805837, + 0.6245761644507674, + 0.742607503185602, + 0.8942236621578217, + 0.8282863243936063, + 0.9367140480476568, + 0.8856107021085479, + 0.78873542059676, + 0.8096980621893161, + 0.8719725207853333, + 0.7407392731059061, + 0.6295062985251436, + 0.7404577105448871, + 0.9114821956203777, + 0.834735176146481, + 0.8015668389168882, + 0.8054231500598309, + 0.6987400588238507, + 0.6567501769766384, + 0.6840993656629942, + 0.8564934391904846, + 0.8476873174939834, + 0.7285362405447389, + 0.8373078092686788, + 0.8275960249304639, + 0.8381974795611721, + 0.708347393294649, + 0.7949878394863209, + 0.774452171577259, + 0.7026641770742491, + 0.8576808478958943, + 0.8946668863862429, + 0.7696504310633087, + 0.826007577172802, + 0.8721270488596928, + 0.703671336269732, + 0.7778189730407952, + 0.8917920250991436, + 0.7920523540654386, + 0.8901461396885045, + 0.9078644284589273, + 0.8130488114294339, + 0.8266781618772835, + 0.8656631027001157, + 0.8882307109420559, + 0.8270609932701091, + 0.9112750396040223, + 0.8787998152438218, + 0.7220579927983773, + 0.8820433682666912, + 0.8583326126981997, + 0.8622227011556681, + 0.864753413468472, + 0.7949445541541632, + 0.7990185586588945, + 0.7755679944739162, + 0.5333823416611162, + 0.8641593684873535, + 0.6649058395759745, + 0.8575371041202674, + 0.7894395541863541, + 0.7518188545483586, + 0.6295216349144958, + 0.7383493395738491, + 0.6307010896724835, + 0.9001118345934447, + 0.9183818176203892, + 0.8170490001437927, + 0.8246192552613636, + 0.9132310636185863, + 0.9208926745021397, + 0.8717691315288021, + 0.9161473051764615, + 0.8477402103966665, + 0.5787393373099146, + 0.8179019085077164, + 0.774323110056819, + 0.7427731410677488, + 0.6249078643163848, + 0.819738079371401, + 0.9324176002147867, + 0.9217138691449512, + 0.9101078737246, + 0.7556550610493127, + 0.8487879919999415, + 0.9266516444516998, + 0.8395117601644483, + 0.8998397516437143, + 0.8730183669197092, + 0.9132033519576848, + 0.8948955639261001, + 0.9103211586885052, + 0.8713493289442764, + 0.8341596531284888, + 0.8677316084758839, + 0.8629103261120068, + 0.8908696623120629, + 0.9073003077431687, + 0.9250588320489557, + 0.8798960862272666, + 0.8907511869025826, + 0.9016065384532318, + 0.7880233263103895, + 0.7524066371510004, + 0.9329537164119602, + 0.7476697653800938, + 0.9086046805540625, + 0.7875841950831621, + 0.7644775458297756, + 0.9089623213487099, + 0.7619823310896269, + 0.9135638542121151, + 0.8951374821199025, + 0.908509563853332, + 0.7981434987662699, + 0.899685768873109, + 0.9180489587645206, + 0.8682097124451782, + 0.8199423577779806, + 0.8496684161736084, + 0.8860744654770735, + 0.837985831489917, + 0.9187260817408298, + 0.9045469520550042, + 0.886414548148047, + 0.7465000099192867, + 0.8654093041286439, + 0.8831452598662342, + 0.8051716738243968, + 0.8219516337362522, + 0.914137326923911, + 0.6809593447889749, + 0.8782625537219747, + 0.8636128952886853, + 0.8624999935610586, + 0.9220612476646266, + 0.8393155247332745, + 0.8275222239278569, + 0.6799995797490693, + 0.8616362158915236, + 0.8363583676582934, + 0.8954742955953549, + 0.8806673617425959, + 0.907187073691098, + 0.8085338723924452, + 0.6237659310915892, + 0.726556177966091, + 0.8951503979562766, + 0.8607699036724107, + 0.8882023483230856, + 0.7507702376740901, + 0.7563205890950648, + 0.8720095552554771, + 1.0, + 0.8179506737078311, + 0.8350829955109607, + 0.8349909786015508, + 0.8743583271134748, + 0.6602605724634658, + 0.8778274285452329, + 0.914160184779333, + 0.8622385095817974, + 0.9077776111911217, + 0.8292628166649885, + 0.867388214186146, + 0.6518593291655924, + 0.5942343744310725, + 0.8320567249160926, + 0.9633662540853155, + 0.9137718704191111, + 0.7165720474111141, + 0.8484600154551575, + 0.780718760655297, + 0.707768958032514, + 0.8282984481499622, + 0.786284636488081, + 0.6786523102541738, + 0.7452480431567355, + 0.7967543245883496, + 0.7845522275362002, + 0.7579952333372466, + 0.6211636476795757, + 0.7120625994953501, + 0.6506123448821917, + 0.7208064393226083, + 0.8387829224557117, + 0.8743934276894112, + 0.7367377249603263, + 0.6289525535021014, + 0.8989909164300616, + 0.8399654655222493, + 0.7341463912468724 + ], + [ + 0.7334530120961907, + 0.5197313790620277, + 0.49541584808011574, + 0.7632152630015197, + 0.7682136856987476, + 0.638492776417452, + 0.4569204520777088, + 0.6703770322937218, + 0.6563697835996135, + 0.6233999106006707, + 0.4849604846054077, + 0.6604886060480002, + 0.7166537134672927, + 0.7742013343191564, + 0.7448063707454935, + 0.7814069216444025, + 0.6536769848736934, + 0.6736279040870272, + 0.8028288731159384, + 0.6445885340886647, + 0.7845744408474701, + 0.6981051550590441, + 0.605987497509103, + 0.6478291749919571, + 0.7256453989748993, + 0.7489051765164567, + 0.6373096294101814, + 0.6407609974350841, + 0.6837006349556548, + 0.7077838959539521, + 0.7827537322998254, + 0.6842923189449067, + 0.6502406828308914, + 0.5389699034587275, + 0.6869120401792738, + 0.8111760039056255, + 0.7637291809024132, + 0.5513894356377724, + 0.7044255538776392, + 0.8058986105226823, + 0.5321994980822028, + 0.5586614354958549, + 0.42283644050893154, + 0.6750539394882416, + 0.6366911329323913, + 0.7103136153838757, + 0.8379666027245878, + 0.6573856722404021, + 0.7268087932657097, + 0.868666364137958, + 0.7193231514769817, + 0.7742919827914935, + 0.7064098930860572, + 0.7133744272743544, + 0.6869496419326802, + 0.6855508787272524, + 0.7471953934751643, + 0.8357636792425248, + 0.65203921412315, + 0.8152928711954219, + 0.7050778117533619, + 0.8388334669509127, + 0.6513131181816143, + 0.7761303474704134, + 0.5101906541176013, + 0.5941320786119826, + 0.7853517610085421, + 0.790475974895061, + 0.6273222937093179, + 0.6900837665237491, + 0.7985675157040736, + 0.7048668951272835, + 0.7019266785492723, + 0.8350982846754184, + 0.7690351941619125, + 0.7360039938951787, + 0.720616893220001, + 0.727600927678922, + 0.5797996506511682, + 0.8129317536026953, + 0.6498518722322894, + 0.7062179414051424, + 0.7298486897704819, + 0.8458062056124687, + 0.8022149254208684, + 0.7893017432313228, + 0.8161538240435063, + 0.7182201774933135, + 0.708341120405303, + 0.706199620915326, + 0.7266165061590164, + 0.6848231282221928, + 0.732980846828582, + 0.8058663146792009, + 0.8032881304029268, + 0.8226339084656322, + 0.7465798882989718, + 0.855121787195463, + 0.6537370441208719, + 0.5862005930049268, + 0.7872534377416636, + 0.8303451119750213, + 0.8285974557562135, + 0.8564403643016644, + 0.7678698066543751, + 0.49160460108534726, + 0.7456486447885099, + 0.7959347357597165, + 0.9102443270572018, + 0.776481887416212, + 0.8729069125019763, + 0.7252566658665576, + 0.7511938848063032, + 0.7924211499395705, + 0.9053064782596514, + 0.8316191707253326, + 0.8381703400933956, + 0.780492531695703, + 0.7597824357040188, + 0.7616118161046332, + 0.8098216006464805, + 0.8643201310389591, + 0.8875659646540761, + 0.7191524043138277, + 0.7907210802561554, + 0.8428842159330934, + 0.647645974752378, + 0.7034276470130648, + 0.71859273386775, + 0.7137280436821073, + 0.7444446846350334, + 0.7626203288639025, + 0.6797961571344115, + 0.7782863652425689, + 0.3781686189658535, + 0.8450054615190679, + 0.9085534488596932, + 0.6909042295013369, + 0.7675670017296455, + 0.8469855525163301, + 0.8555802322442542, + 0.8285717811163446, + 0.8075533191689436, + 0.8357180235700888, + 0.6118080406978029, + 0.6537450544070713, + 0.7953981242746929, + 0.7539149604303429, + 0.7083704011413553, + 0.7656195599419828, + 0.8108789768805919, + 0.848253067356038, + 0.803501212854889, + 0.7630688577245709, + 0.8104690484431414, + 0.8682067697567927, + 0.8624741736979147, + 0.879320624638066, + 0.8417555502610983, + 0.8689887978367622, + 0.8956753811936967, + 0.8525129161142911, + 0.8245568829252703, + 0.7700871192238751, + 0.7714883495613121, + 0.8606689318586072, + 0.8425420947361167, + 0.9053004605097135, + 0.9107267173844487, + 0.9034959205132517, + 0.8597314245671182, + 0.8584507103533701, + 0.7717197018851959, + 0.6249213642648589, + 0.8609800827070146, + 0.6896512487667473, + 0.9192850133613926, + 0.7199374593114823, + 0.6998227194890192, + 0.9150173239706778, + 0.8537061889529824, + 0.9008843333852661, + 0.8784663257624721, + 0.8347527085741714, + 0.7915201242465667, + 0.7823238238024709, + 0.8333012117063354, + 0.7866329259961022, + 0.788857783048654, + 0.7572003324101193, + 0.8239122081907229, + 0.7411179593648523, + 0.8338941375780679, + 0.8384765913321854, + 0.8587196040874056, + 0.7357262552216091, + 0.7780630982048532, + 0.8872216084280279, + 0.7401053059122756, + 0.6936734893386028, + 0.8524033513916386, + 0.7938798512146868, + 0.8465869115461381, + 0.7809056374691858, + 0.821519769435196, + 0.7796688013089456, + 0.7555847404550855, + 0.8315440724999272, + 0.7433338279023121, + 0.8325355409304693, + 0.6621454035006957, + 0.7706511438350875, + 0.8047028140857889, + 0.8533373338273029, + 0.8219011032141408, + 0.646858373034419, + 0.8732624192188563, + 0.8677982593197212, + 0.798247181932339, + 0.8853463349478556, + 0.6817190536425101, + 0.6710962171341882, + 0.7718038397583729, + 0.8179506737078311, + 1.0, + 0.7391060109050288, + 0.7969459932832154, + 0.7212556081486404, + 0.6508636104677513, + 0.8209313299797305, + 0.9050160272949709, + 0.8160236924491914, + 0.8924654910740868, + 0.9103340560254612, + 0.8085875022480942, + 0.5033912719476842, + 0.5955625837652673, + 0.7752395100853692, + 0.8517386188742383, + 0.8198981042456377, + 0.5959066543876631, + 0.7797628838158273, + 0.5530843784441231, + 0.8709256524936406, + 0.7215182894876297, + 0.7628934191966306, + 0.4563465300962231, + 0.825902945373458, + 0.7439968402480819, + 0.6080868388766909, + 0.816630465995665, + 0.7037235281737005, + 0.720358325210215, + 0.5147609045887876, + 0.691430028987916, + 0.7105346949515017, + 0.8200055272234626, + 0.6729049082161768, + 0.41494364285112756, + 0.9048553312806017, + 0.7273846543414263, + 0.8028500688776764 + ], + [ + 0.6834453565084908, + 0.4245382630100821, + 0.6429917455939157, + 0.7816831405520065, + 0.6594811267980335, + 0.6561975602158535, + 0.4848652507435144, + 0.6885127725878534, + 0.6724274111655911, + 0.5600712617026108, + 0.43593413238789275, + 0.5307751267694633, + 0.7557878064039804, + 0.5679166653959882, + 0.8329719040499516, + 0.7052475963615619, + 0.6672549103961293, + 0.6788516346037344, + 0.7209335243028616, + 0.621210167090457, + 0.7707703305571314, + 0.6522634466030053, + 0.6318808026311121, + 0.5992760869171923, + 0.6779962518739804, + 0.7040626696921563, + 0.6661610441223293, + 0.689170990974387, + 0.6202720759759786, + 0.5652813459279388, + 0.7761299073279956, + 0.52241201578499, + 0.6324163475901408, + 0.6103729194470677, + 0.7836443404268107, + 0.7271027282743329, + 0.5973333117070107, + 0.492538728711518, + 0.7140544677910099, + 0.8213987204863373, + 0.6811804304096529, + 0.7672340425330081, + 0.5632518218625188, + 0.7583905325629401, + 0.8649836492510007, + 0.5154693890547043, + 0.7549420170174469, + 0.6508953862641266, + 0.7718951169399549, + 0.7319923882578131, + 0.7114732844631008, + 0.7535337230164716, + 0.6860084155879925, + 0.5795325995197741, + 0.51326922514057, + 0.5865164065196895, + 0.6764552659525512, + 0.8344592293992719, + 0.6940916452256646, + 0.5936611362509021, + 0.7138253633899865, + 0.8325347056223161, + 0.7233504995351174, + 0.7417566640414158, + 0.6659402349111534, + 0.710934831851934, + 0.7648873347892506, + 0.7956679955361655, + 0.4243829580559209, + 0.4642720655178164, + 0.5545832551223316, + 0.5935252290784285, + 0.7243644182981851, + 0.8087319385815984, + 0.7072340650429335, + 0.8766025409078444, + 0.8677160412186626, + 0.7440840499497785, + 0.696525359996299, + 0.8174430321265055, + 0.5279835346508158, + 0.6593586000649561, + 0.5628476725150007, + 0.8898028626217362, + 0.7128078816188422, + 0.6688372737977991, + 0.7625021929646708, + 0.705813967480708, + 0.674192638136762, + 0.6543645980001754, + 0.8090042530921018, + 0.7150864901545222, + 0.6378448651383666, + 0.7296816214664347, + 0.7377178632120386, + 0.8207942792184949, + 0.6120661461145257, + 0.6698269447189821, + 0.6226127069032432, + 0.4496482955394279, + 0.6839565923857992, + 0.7968604528789749, + 0.8540086943548619, + 0.7144682823359441, + 0.7496664813979808, + 0.6035197148819355, + 0.712762331429706, + 0.7578451957154292, + 0.718406345942452, + 0.8030637798170468, + 0.6862646492618676, + 0.8710766543938752, + 0.7853815303877016, + 0.8076411731173215, + 0.8213151931755193, + 0.796748614566443, + 0.7068069024611334, + 0.7792628760413416, + 0.792183811784956, + 0.8118668160200623, + 0.704493711540287, + 0.7960076864874114, + 0.717111445674017, + 0.7132955213787676, + 0.864917230076429, + 0.7639306031390545, + 0.5335195426802998, + 0.7294999092235652, + 0.7221909910462085, + 0.7922857527560838, + 0.8594119431367707, + 0.7025222193922741, + 0.7161452525242439, + 0.7870668376027056, + 0.5912630208716148, + 0.7607507447813752, + 0.7308991472554331, + 0.8069583387137372, + 0.5762442398925368, + 0.8230331903116538, + 0.8264606176005319, + 0.8104239344948159, + 0.8092933151457933, + 0.6720594776041939, + 0.6087189697809994, + 0.7651434464599494, + 0.6860696777242183, + 0.5341777945017864, + 0.4418259212685489, + 0.5681753018974949, + 0.7539357829449438, + 0.6662505573765577, + 0.7386317182083437, + 0.7520331677480186, + 0.8240767991987221, + 0.8233084979802454, + 0.634422310819278, + 0.7573696808925047, + 0.733543003593919, + 0.8093420204898533, + 0.7473781780112786, + 0.6828422426898167, + 0.8058553290167758, + 0.6667270058412865, + 0.7534228465232742, + 0.8035290623571356, + 0.6921896806936908, + 0.8503552057732425, + 0.8222691366450304, + 0.8612942052080391, + 0.8053348093283405, + 0.7551306614109197, + 0.8902653399880597, + 0.7705362000545798, + 0.8714099370798366, + 0.49244770126962406, + 0.7383507051271756, + 0.6303429179128608, + 0.5372202354640214, + 0.8312117384162783, + 0.7342545530634031, + 0.8055011742622589, + 0.6844546783164036, + 0.8272706427856992, + 0.6702939224289247, + 0.8728917634003337, + 0.8463529532549041, + 0.8216827418109661, + 0.9157393615303949, + 0.7802728125015642, + 0.8125066274650953, + 0.7875551088470047, + 0.8600968875684923, + 0.7974101497305657, + 0.7805520106336302, + 0.6966826091262217, + 0.7819107500141252, + 0.8122274404955391, + 0.7359465126257638, + 0.7708737145717827, + 0.7031987419217663, + 0.6981947489718724, + 0.7649012121652643, + 0.7406498160489174, + 0.7720904661472864, + 0.8406790865344169, + 0.8578427480548027, + 0.8550156666866798, + 0.6631941671816828, + 0.8007040563350951, + 0.6795643944384246, + 0.6815343394377632, + 0.6756729629467597, + 0.8319627257003137, + 0.7849391335859451, + 0.868861780604073, + 0.7784066570494544, + 0.8228949824570598, + 0.7073357524322332, + 0.8190860114665863, + 0.663226596670743, + 0.4783831571234581, + 0.7919674069137017, + 0.8350829955109607, + 0.7391060109050288, + 1.0, + 0.7410596439750864, + 0.7182387620433297, + 0.5229402604263256, + 0.7883100931075834, + 0.7974103993862444, + 0.8022983766659657, + 0.8235247029331975, + 0.8118951242181289, + 0.7877692690865213, + 0.4652734774328011, + 0.7160223676112323, + 0.6302158790705895, + 0.7965125943111668, + 0.7440576859889413, + 0.4570220096641523, + 0.7240135584361302, + 0.6998441949235121, + 0.716785625379905, + 0.6955167756082851, + 0.6959041155824811, + 0.5106599150614675, + 0.5916438239263857, + 0.5257305906165367, + 0.6548461546066611, + 0.5131790384382042, + 0.6427465362196337, + 0.7441758018634445, + 0.6843256055908873, + 0.6443844608218845, + 0.840716936534211, + 0.8420762840760105, + 0.5991925549885398, + 0.42897253152192216, + 0.7457090891002438, + 0.7521877890091407, + 0.6716956634249567 + ], + [ + 0.6719650804351036, + 0.5071957060936046, + 0.6979669164811466, + 0.7076036435072585, + 0.7117763986430535, + 0.6223877766980901, + 0.42721672764776936, + 0.7442718027242903, + 0.5112676652846531, + 0.6572483542778826, + 0.5042174705495843, + 0.6601713612054715, + 0.7692768939224379, + 0.5948306366872987, + 0.7837188757630155, + 0.5591759358646674, + 0.5672585389305534, + 0.6914314254688894, + 0.6830944115068748, + 0.7484558793301985, + 0.7781680027211672, + 0.5707874059239824, + 0.8087202557750895, + 0.5927210061186154, + 0.5727129255315605, + 0.6953623061202414, + 0.8848158794792924, + 0.7960483153185429, + 0.5046061896456825, + 0.5580609843392951, + 0.7128332251133158, + 0.5867378967118907, + 0.7147079854208189, + 0.5550732757683831, + 0.7749286241290033, + 0.732091777975814, + 0.7891669746533806, + 0.5166089991798715, + 0.6131155435583043, + 0.8083462561564936, + 0.7546510497088486, + 0.6512797059079877, + 0.44165976454298245, + 0.7292600034743507, + 0.8012059218629389, + 0.7413096738968595, + 0.844894111639338, + 0.706769376184406, + 0.8184784598467171, + 0.8824918931439126, + 0.6966276952263526, + 0.6799600261569162, + 0.47261911942054013, + 0.6207017005428125, + 0.47400412968145134, + 0.5326774229357133, + 0.6263466290214978, + 0.8570892301696277, + 0.6316826498848426, + 0.8270873567849789, + 0.4803065477340309, + 0.9038753889330637, + 0.5458328960376257, + 0.6174691484797465, + 0.7905300542851968, + 0.6638067033172086, + 0.7044522276719362, + 0.8386573232726222, + 0.6317049531971182, + 0.6461072752403344, + 0.7042699516229821, + 0.6034699642815579, + 0.7778276987032657, + 0.7915335242833328, + 0.8089290450701416, + 0.8808821017026242, + 0.8967644097291345, + 0.7468502579428398, + 0.6314129389103262, + 0.8884182961236918, + 0.6108208791894343, + 0.4528376061895657, + 0.7359512646043836, + 0.8887641432892253, + 0.8149429074003848, + 0.7490069437870068, + 0.7822934389605037, + 0.5962657332731351, + 0.5431858787956386, + 0.6512484985048232, + 0.816586900861166, + 0.7662251291267036, + 0.8433342182663672, + 0.8229048514571342, + 0.8535807920477247, + 0.7063470284988864, + 0.7324538603179935, + 0.7026446078686481, + 0.6923347945356592, + 0.6308662028914375, + 0.8762364855371789, + 0.6828556258252264, + 0.7646968193730038, + 0.7078339026251743, + 0.8636105729330119, + 0.5302485599647159, + 0.7320756343067317, + 0.7811071874251241, + 0.7610447919599806, + 0.921926630282092, + 0.8583256462205483, + 0.7246919269206342, + 0.7882034035416545, + 0.7590775513260748, + 0.8506696230299982, + 0.8249678719431702, + 0.8675472472647893, + 0.8368896235411177, + 0.7330206914536539, + 0.7930068025798201, + 0.8683073471547073, + 0.8562535379818587, + 0.8341727093910956, + 0.6006180165407747, + 0.7353030753235218, + 0.7203102855511525, + 0.5023956140154741, + 0.8248140484638471, + 0.7199298457336152, + 0.790430706082973, + 0.6974110093932465, + 0.6600235224521929, + 0.4826848396031923, + 0.6241590730294555, + 0.5082730538977183, + 0.8255269252071875, + 0.8053773997712946, + 0.7929866037696681, + 0.8669787054280828, + 0.9037458589402928, + 0.8115504835772204, + 0.9254499135255688, + 0.9073556828029021, + 0.8704058615625861, + 0.4936906834648253, + 0.7696949604801263, + 0.887898326092122, + 0.7976752000988513, + 0.703978049602227, + 0.8640417113263258, + 0.8222641892120257, + 0.7978474551633488, + 0.8449908306202116, + 0.6727993250393687, + 0.8024287579234605, + 0.8911635499101572, + 0.8398340540607087, + 0.7904549917569667, + 0.6881600913929136, + 0.8343311205894663, + 0.8764618725170964, + 0.8352709648082672, + 0.8046680930941901, + 0.8579014131898944, + 0.8987767982687855, + 0.9088698506822006, + 0.8810077001531899, + 0.8270772964819252, + 0.8581746835767617, + 0.8943147773017147, + 0.826238967453972, + 0.8213936804005781, + 0.685442452348473, + 0.7785272730876331, + 0.8693070677477065, + 0.5575440524229236, + 0.8250450854356158, + 0.9051395867071553, + 0.6901429381775339, + 0.7928834137014074, + 0.6544360357848785, + 0.8641680554699326, + 0.8545103635503355, + 0.9222755118209299, + 0.8556738371114326, + 0.8039189636861589, + 0.8105850331597075, + 0.8555653881111999, + 0.7586874847160002, + 0.8159234955492383, + 0.9382856434430399, + 0.9209001968657007, + 0.8801224098162604, + 0.928761217614367, + 0.9663093578796741, + 0.7189517574829052, + 0.7875212116581577, + 0.8295388035050197, + 0.9725083164661857, + 0.6209548605992236, + 0.8621626965538068, + 0.6941752002903182, + 0.7376662602143148, + 0.946090310282738, + 0.9069023740654295, + 0.8853494582881775, + 0.8571842566425228, + 0.8643534048176186, + 0.5674208200116097, + 0.8563518223353115, + 0.8044979520672719, + 0.8761872917381178, + 0.9086773791822345, + 0.798773774395229, + 0.9158826324745658, + 0.6367119872137684, + 0.8032435392729148, + 0.8946802897680658, + 0.8950042019786058, + 0.8857308301960715, + 0.8345562892233095, + 0.7298308691467194, + 0.9286073291799534, + 0.8349909786015508, + 0.7969459932832154, + 0.7410596439750864, + 1.0, + 0.8745404090425455, + 0.49047163983280323, + 0.8381851297158551, + 0.8608378667200753, + 0.9015810710336254, + 0.9092758358880411, + 0.8923851473352217, + 0.9194148287141715, + 0.5081894215825428, + 0.6279905710233948, + 0.902874510998958, + 0.8809671419864038, + 0.8861390240484415, + 0.4744402953995858, + 0.9437767668442227, + 0.8986787898874408, + 0.7375862486804634, + 0.7738011993329897, + 0.5722457142525854, + 0.4609777927554031, + 0.7199399624521046, + 0.6890543751034733, + 0.8350725640866901, + 0.839551232965299, + 0.576785435961217, + 0.7241189685744225, + 0.5682756506045177, + 0.587329596769452, + 0.7487858166947277, + 0.8806053147877374, + 0.5715589214186423, + 0.37208628936992766, + 0.8037279545344186, + 0.8092089433871177, + 0.6339887049766163 + ], + [ + 0.7820641363401932, + 0.4744577698922722, + 0.6561421387686228, + 0.5924822270160482, + 0.7498639479325064, + 0.6744724562141552, + 0.452906599728138, + 0.7976292628970262, + 0.5013646789356445, + 0.6103463231702765, + 0.5386967872653173, + 0.5865562704330213, + 0.7403081255101346, + 0.5887746563418902, + 0.704700088630427, + 0.5508650174836854, + 0.57930016257333, + 0.722213190755943, + 0.704977457294057, + 0.6956726584294987, + 0.7994745713906953, + 0.6031865006005037, + 0.7652460483610652, + 0.6116982493369421, + 0.4606142040866329, + 0.6731032913813503, + 0.8660982408591382, + 0.7255140004980791, + 0.5835311840795098, + 0.4643600519151317, + 0.71550807926733, + 0.5432381389573365, + 0.7325154835883045, + 0.7216781760724451, + 0.7708912332060389, + 0.7766309521632421, + 0.8230350152994292, + 0.4682268566664136, + 0.5887885303873032, + 0.7961221782561184, + 0.7598915270662946, + 0.6405327370161583, + 0.5333990834143961, + 0.7410360093666825, + 0.7981401815793572, + 0.6652444358147187, + 0.9152711553320526, + 0.703392517556368, + 0.7705873663001321, + 0.868797028930243, + 0.7143878230057092, + 0.5655639864007013, + 0.5857219947124445, + 0.6530945332999158, + 0.5566155777557299, + 0.6207949099698149, + 0.7090844149254955, + 0.8596727642997735, + 0.48918456703362323, + 0.815505149776418, + 0.5056904310348617, + 0.8380510112046956, + 0.5301023365687192, + 0.6442496766457776, + 0.7435541641719137, + 0.6438786045239425, + 0.6768591409974959, + 0.8766013526995742, + 0.7720854437314971, + 0.7510886548280455, + 0.7672830013388224, + 0.5069986619445627, + 0.6828455899991315, + 0.7886619617375266, + 0.7806372073153274, + 0.8699025994664176, + 0.8936988917765665, + 0.7055733258611141, + 0.7113102241981231, + 0.7823529786905501, + 0.7405345861730784, + 0.4581985628518925, + 0.6675744276360208, + 0.856591345160924, + 0.7485918509422416, + 0.7267582900734464, + 0.7016734130585136, + 0.5653245838295383, + 0.5590843496765896, + 0.639036493886051, + 0.7836359124506521, + 0.8892232645863871, + 0.823404200488803, + 0.8753288084024913, + 0.8077674013029593, + 0.6736833844798553, + 0.5730068561193636, + 0.6853660452137713, + 0.8313603620528845, + 0.7048215428258312, + 0.8695944436560613, + 0.7085630003948022, + 0.6396936342759704, + 0.7603726492928511, + 0.8989010644340998, + 0.6002396829514912, + 0.7458919282163934, + 0.8624088500707674, + 0.7197696495505862, + 0.9051029158274718, + 0.9206717460364295, + 0.6468149959891014, + 0.7721024552420728, + 0.7703958659691443, + 0.7953440020534914, + 0.7591760642752373, + 0.9142837172298749, + 0.8335254946060066, + 0.5956377056050128, + 0.867874591258031, + 0.8615912810542065, + 0.8032749451428004, + 0.8213432996315948, + 0.601027284064739, + 0.6622690398643679, + 0.630717547781084, + 0.389141450246846, + 0.8534541485727218, + 0.5527661463038797, + 0.8387813201616813, + 0.6028011408420068, + 0.5520156459226102, + 0.4111775790072497, + 0.5201508298182268, + 0.5763036559698624, + 0.85341182624912, + 0.8465454610072672, + 0.7474418626042729, + 0.793894813151091, + 0.8492855577450786, + 0.8275887008329764, + 0.8636286772441245, + 0.871923260243989, + 0.8040731307775619, + 0.45510457342062355, + 0.787151273843238, + 0.7915298278655818, + 0.7605931609727731, + 0.5972717034970721, + 0.9212910235703604, + 0.9055026889533766, + 0.8620207673912517, + 0.8835794315077824, + 0.716782320678398, + 0.8463312034246362, + 0.882640916337967, + 0.844689696869027, + 0.8068978162460183, + 0.7712004339478531, + 0.8278615623777944, + 0.8938292738785569, + 0.9150108688763633, + 0.8364818032744659, + 0.9406778144298426, + 0.8876038261070796, + 0.8775227542229739, + 0.9412068262480018, + 0.8209983794575266, + 0.8931616948236519, + 0.8499136252086994, + 0.8776480372756251, + 0.904296566184851, + 0.6419641789326965, + 0.735611529903051, + 0.8840031684288201, + 0.6822188045200888, + 0.8693429047395183, + 0.8079300519031696, + 0.7256813494267333, + 0.8447409064601418, + 0.5721846017667013, + 0.8983242893997692, + 0.9042179816609909, + 0.9264015096058413, + 0.8512535560546876, + 0.8318913612250077, + 0.813927091155633, + 0.8025691491827645, + 0.6965205883061755, + 0.8355778418303016, + 0.8387446174952056, + 0.8479098800305673, + 0.8180058856567934, + 0.9084366808357662, + 0.8567345407903888, + 0.8136482421499558, + 0.8586402581849781, + 0.8799009689052163, + 0.8488154145116592, + 0.6874762053245141, + 0.8944345581656887, + 0.5712651925284217, + 0.7337622497702274, + 0.8817024682064365, + 0.8838146718130245, + 0.9532706986763969, + 0.7992431680267719, + 0.7471826694612443, + 0.5710563958189963, + 0.8919534336142287, + 0.9287726813029735, + 0.8702476956111704, + 0.949749491939996, + 0.8146545099646753, + 0.7958865143143117, + 0.5356331978181244, + 0.6792933261018912, + 0.9039778958749399, + 0.9292664779556081, + 0.8791683542922172, + 0.7758289986778949, + 0.7716300368074471, + 0.9191058870182169, + 0.8743583271134748, + 0.7212556081486404, + 0.7182387620433297, + 0.8745404090425455, + 1.0, + 0.6317413307555965, + 0.8492040370477109, + 0.8834757068685581, + 0.8834922483224499, + 0.8871770114508905, + 0.785252833722069, + 0.9080398970219702, + 0.5864404022930861, + 0.5100015728922763, + 0.8377440957239791, + 0.8902812784114921, + 0.9137644187143733, + 0.6483334753005627, + 0.8926085551680089, + 0.8364760407544736, + 0.6422528383837219, + 0.8626593010381093, + 0.5810412572452988, + 0.6607223790030615, + 0.6048440209892129, + 0.7880734468964806, + 0.8843647906204655, + 0.7438768370079734, + 0.5288903521090196, + 0.6361429855803163, + 0.5612834529062078, + 0.6039889192020134, + 0.6886360530359867, + 0.8346513893943972, + 0.48151831714730914, + 0.5187270114005086, + 0.843696076573031, + 0.7888317080390397, + 0.6939426607056572 + ], + [ + 0.7936306566554635, + 0.6802729129338697, + 0.6685961724345448, + 0.5202123565746322, + 0.6930856894684521, + 0.6093472416584578, + 0.7871961325465734, + 0.8275019905227119, + 0.7636050654848731, + 0.7995942861658888, + 0.833764565370961, + 0.5488626349569005, + 0.6185778469939037, + 0.5889164963811105, + 0.7355804138906666, + 0.6097206736261124, + 0.7554753001587973, + 0.7872804855162806, + 0.6451446749643872, + 0.7256076176466668, + 0.786405932313439, + 0.5656090875710408, + 0.6875685281208553, + 0.805419391208847, + 0.5977482842690571, + 0.6399488437431585, + 0.600122480372533, + 0.6876809656630132, + 0.7244784681161774, + 0.575717003389553, + 0.7314062012200147, + 0.7903455210812003, + 0.6712001938467034, + 0.6521908900615597, + 0.6910358465921045, + 0.7360947641629034, + 0.8021666103956412, + 0.10876882926642874, + 0.6015924153186588, + 0.6697296213126998, + 0.594413699530678, + 0.4259740929368643, + 0.09819659193573325, + 0.5219892873529193, + 0.5981506212239095, + 0.7538146874664331, + 0.7981947376126791, + 0.7962856108942986, + 0.6137059008627666, + 0.6060820658054143, + 0.7500055151756828, + 0.4428766292545381, + 0.6127301941994501, + 0.7156649445911194, + 0.6417956906680664, + 0.6622443228156267, + 0.731191891356493, + 0.631358634946275, + 0.2717307019293722, + 0.7005950897899761, + 0.6912199173775776, + 0.6597612127527962, + 0.6859096027718141, + 0.7012814789513139, + 0.5888824228273176, + 0.6322770134554095, + 0.682445859054199, + 0.6616417690222837, + 0.7904083605647797, + 0.8107667907768359, + 0.7648856778389569, + 0.6044937305324211, + 0.7357420850018258, + 0.7444249239344994, + 0.6924446724877908, + 0.5597706685544162, + 0.5684402461004628, + 0.35231012664037425, + 0.7243941567182108, + 0.49961464887982904, + 0.7782857960316285, + 0.4025973506387166, + 0.628738027160201, + 0.4944648425972947, + 0.7600863136773102, + 0.8350054641052642, + 0.741605259165307, + 0.6238674500468571, + 0.42988352238037, + 0.4969710386705536, + 0.71181922063544, + 0.7419259240542047, + 0.5507186737895199, + 0.7238236088954733, + 0.6849420190292436, + 0.6314050201657934, + 0.6446983555217932, + 0.5899426973722451, + 0.8470939432198656, + 0.7946518904972154, + 0.6961956162271346, + 0.7005797597419717, + 0.6064470539337228, + 0.655921810237677, + 0.7498921864323753, + 0.8303348699255075, + 0.5880603908699746, + 0.8405906913678042, + 0.6453767499948923, + 0.6791581667381639, + 0.6932475081662657, + 0.6486581643289767, + 0.7647530107007993, + 0.7094447508572193, + 0.6267691226216445, + 0.6358877671304494, + 0.7027200652855753, + 0.755592415547074, + 0.6872199732373273, + 0.63585149713714, + 0.6312970525313064, + 0.5760113755190913, + 0.8092734840143958, + 0.7646409619250185, + 0.5930560314706372, + 0.7037891128533719, + 0.2898215849155078, + 0.6530073228279399, + 0.4560648133690893, + 0.488089820825435, + 0.6549169213490859, + 0.7068295066178685, + 0.6882096026334599, + 0.5786317350035917, + 0.6920039447521396, + 0.7827743250062114, + 0.7762671639904911, + 0.5547007895331197, + 0.5221051776379234, + 0.6769753002815193, + 0.6686530366086848, + 0.7168572006855578, + 0.6628237499624334, + 0.7681008848208237, + 0.3499767521328725, + 0.721538063441552, + 0.4992836397285965, + 0.5225132115033004, + 0.5055119755426709, + 0.6839074367492257, + 0.7143405953608382, + 0.7419005200972179, + 0.7304560843842385, + 0.8022475808852723, + 0.6641793493785325, + 0.6111499413769286, + 0.6000381894381502, + 0.7686149160469468, + 0.8700666500290095, + 0.7566774753735458, + 0.7904576236112568, + 0.7509966744012404, + 0.821288531891703, + 0.7183579976403051, + 0.7086995606133816, + 0.6529132153282426, + 0.7006167644838942, + 0.714416774977184, + 0.7236259291749625, + 0.7149779358749494, + 0.7448481973154464, + 0.7359613208143546, + 0.6825351569588173, + 0.3327443223814888, + 0.6351547243098695, + 0.5083470697781545, + 0.7203805432687089, + 0.3927768595119197, + 0.8699228332479474, + 0.751388460157659, + 0.5877408929511541, + 0.6918982397587501, + 0.6924210682475067, + 0.7245062021095212, + 0.7379931955921939, + 0.7481222884051325, + 0.7113960650163156, + 0.7502538902115721, + 0.6560386821008516, + 0.6841659962919214, + 0.6067184245216976, + 0.5722861723599161, + 0.5378858637122239, + 0.6259152616677971, + 0.46916166449035995, + 0.7355567746857934, + 0.8016764623193793, + 0.7508777672628203, + 0.4230350540228948, + 0.3607760096426499, + 0.7735228548400104, + 0.6914192859591337, + 0.657921886498717, + 0.4652839978794838, + 0.6478179133490386, + 0.6182101637120033, + 0.5155399703633059, + 0.5192657895562558, + 0.5094905813063888, + 0.5373199459743988, + 0.7224663117557952, + 0.6463286940907274, + 0.6852892607035862, + 0.7913022481073048, + 0.6000199162436725, + 0.26635610655915737, + 0.5319935499195496, + 0.7480555602221388, + 0.7220326676166942, + 0.5880881875580243, + 0.5395487115118455, + 0.4309333926019839, + 0.4931199161306426, + 0.6602605724634658, + 0.6508636104677513, + 0.5229402604263256, + 0.49047163983280323, + 0.6317413307555965, + 1.0, + 0.8184076862654307, + 0.6808938404786068, + 0.7042015091945683, + 0.6967576999492548, + 0.624650082388389, + 0.6668904445063407, + 0.17155126442858842, + 0.19230007136533483, + 0.5244851750700222, + 0.6220137252313049, + 0.5841047123015219, + 0.7737949393538842, + 0.387360404491812, + 0.41421932925172084, + 0.45397347858849213, + 0.6463496290350939, + 0.5638880956144234, + 0.8950823731306584, + 0.34221802383950145, + 0.5421398041477019, + 0.660013960099019, + 0.5100345977032299, + 0.3988177985424872, + 0.4464611682309792, + 0.603181301660863, + 0.48205242478379623, + 0.6701604561661896, + 0.5687782803470425, + 0.414968881147558, + 0.8617273351058627, + 0.7326473212974709, + 0.6891344614054139, + 0.6335594153903107 + ], + [ + 0.8984694077908097, + 0.7077715893473278, + 0.8304081519475868, + 0.6732238656598358, + 0.7500875424468556, + 0.7458205300150405, + 0.6957649501553238, + 0.8933936039629852, + 0.7789663718842987, + 0.803451505217968, + 0.7238310726930366, + 0.7280295214732974, + 0.8505323804062507, + 0.6835784419086062, + 0.877055396390118, + 0.6957450656056294, + 0.8064620546342538, + 0.8926973388506414, + 0.7753719513031171, + 0.846900007607994, + 0.9438424408195296, + 0.6448700972666228, + 0.8187387400259003, + 0.7944940561559374, + 0.7154405253761751, + 0.7600514117749875, + 0.8223993219443304, + 0.869152967507308, + 0.7191968192430789, + 0.6682965050006191, + 0.8459668225038823, + 0.7315406198558052, + 0.7909254406143267, + 0.7057923058907277, + 0.8511954998615453, + 0.8493641007218529, + 0.9154964583389719, + 0.30620068133168604, + 0.7732203715410367, + 0.8516940968700906, + 0.7966130131370676, + 0.6623782299281894, + 0.32440286804055135, + 0.7290617086498884, + 0.8142814996874916, + 0.8090933978057647, + 0.9189654064573116, + 0.8443229315559246, + 0.8219204346092993, + 0.8332599557301409, + 0.891439985564087, + 0.703695585122622, + 0.6382684272685824, + 0.7725771363153033, + 0.6456841789451363, + 0.7201300793200741, + 0.7981622256956649, + 0.8631461896805884, + 0.5013521106147533, + 0.8929589434081578, + 0.7306182260205323, + 0.9034740050094958, + 0.7514099304413379, + 0.7640798415584691, + 0.8029504584675776, + 0.6825326057858166, + 0.8285237983345535, + 0.8871272362131462, + 0.8061681676414484, + 0.8278945800617291, + 0.8223401029690086, + 0.7211222951046069, + 0.9085927940412712, + 0.9142307848151352, + 0.8944561128056192, + 0.8733801030049186, + 0.8698869894675704, + 0.6692654704574876, + 0.8517984038369164, + 0.849281934908996, + 0.810936359779282, + 0.48176934734739724, + 0.815849855799742, + 0.8352815857131006, + 0.9152705001756041, + 0.9083563678219561, + 0.9070838515184916, + 0.6846167666277949, + 0.5439388232603272, + 0.6666574972460368, + 0.9000996671500316, + 0.8853321621902579, + 0.7751265423604531, + 0.89960758730586, + 0.8975989313756996, + 0.7943040709847405, + 0.8247376676526813, + 0.7095322740694502, + 0.8772059535369903, + 0.8219432762793208, + 0.9058594224329695, + 0.8252485133702951, + 0.7963837800167209, + 0.7672052657036563, + 0.9504753113424327, + 0.7897380756213751, + 0.7711690172475787, + 0.9221402778682931, + 0.7672606461920121, + 0.9124353881733724, + 0.888927441253913, + 0.8006320975224808, + 0.9431437857238371, + 0.9089497056639554, + 0.8650382668393111, + 0.8626283823924129, + 0.8940947876226838, + 0.944660036666729, + 0.832033320046028, + 0.8713196190561872, + 0.8787836089479428, + 0.8724371598257992, + 0.9270374024694914, + 0.8262228273434746, + 0.8009184489673521, + 0.8214238073809069, + 0.4054412713684167, + 0.867909201577143, + 0.6841267043477942, + 0.775022600632613, + 0.8003501242566229, + 0.7342097447152731, + 0.6762291137709041, + 0.6765944381330806, + 0.744449843665542, + 0.9118910064228125, + 0.9153309551254712, + 0.830883023245344, + 0.7296738682682506, + 0.8898874194739002, + 0.860934020957214, + 0.9319498651650452, + 0.8768530361213087, + 0.9046833998615159, + 0.49631289616402463, + 0.8710538718377273, + 0.7663907050964301, + 0.6527062170662464, + 0.5357147393471087, + 0.8882339494285035, + 0.9090225917727247, + 0.8655077031209947, + 0.9037653729074463, + 0.8741623213535928, + 0.8553844479138569, + 0.8611554376965065, + 0.7770452499319718, + 0.8967489413314382, + 0.9195978797289525, + 0.9390496060454641, + 0.9541685331614602, + 0.8716563406962913, + 0.9545790222197451, + 0.9031472575912316, + 0.9480045240456101, + 0.9182083481193256, + 0.91337786846007, + 0.8913319214429808, + 0.896894533520142, + 0.9289486928388415, + 0.8910876203297001, + 0.8773942091345845, + 0.8211309526908357, + 0.7001097461174025, + 0.9050911455419755, + 0.49675622957730425, + 0.8825983383243486, + 0.7141656858297527, + 0.9002084234025327, + 0.8913757118114332, + 0.7711945870770357, + 0.9175148082386438, + 0.8734554085183471, + 0.9474232074249117, + 0.864966972613763, + 0.9369842833937096, + 0.9000817191100444, + 0.9734059379656633, + 0.8270851306533032, + 0.9516832474066952, + 0.9212949333415165, + 0.9000155993325754, + 0.8684650317552822, + 0.925069640825126, + 0.8066935977612366, + 0.8294215306190186, + 0.913791664575264, + 0.9310752571085128, + 0.7884956907906929, + 0.6346040143963748, + 0.9005797629065792, + 0.8037566115373951, + 0.8226308845559139, + 0.7781965052738864, + 0.9059808283104602, + 0.8948611187138213, + 0.8359356436783707, + 0.8411343467694284, + 0.5818524328382805, + 0.8098544298667961, + 0.8401338016794953, + 0.8124919124550232, + 0.8907679077613542, + 0.9053429430509343, + 0.8595176218801761, + 0.5736829351549929, + 0.7953577203967473, + 0.9522975584500578, + 0.8973745185878882, + 0.8590199594396242, + 0.8116289688766437, + 0.5699370605841387, + 0.8336819294007582, + 0.8778274285452329, + 0.8209313299797305, + 0.7883100931075834, + 0.8381851297158551, + 0.8492040370477109, + 0.8184076862654307, + 1.0, + 0.8940125409932005, + 0.941601597339003, + 0.9397726575551812, + 0.8725085480069802, + 0.9153477457772233, + 0.43243358440153556, + 0.500669193620483, + 0.7308385075955897, + 0.8626591962066362, + 0.8816216681968492, + 0.7350890367237884, + 0.7582055743522549, + 0.796187026661974, + 0.6721821954915405, + 0.8119840556490145, + 0.6847646653957475, + 0.7761419697544363, + 0.5541414164503586, + 0.6274694759811171, + 0.8448595597268498, + 0.7008045091300379, + 0.5307909981245702, + 0.6898638106806426, + 0.6690512614153018, + 0.5914857303981417, + 0.8521658567416873, + 0.8206630131423336, + 0.5718824340625368, + 0.6753021002607799, + 0.8857967392374853, + 0.8619262772173069, + 0.733579071310961 + ], + [ + 0.8429232901453366, + 0.536481328259964, + 0.6292043740017615, + 0.7560281237437158, + 0.8538187976016167, + 0.7811275719334257, + 0.5668820167000498, + 0.7758010763737567, + 0.6750441691738824, + 0.7200652639257422, + 0.6133153743944935, + 0.6748468731104547, + 0.7254846016266187, + 0.7998336704898248, + 0.8035029202290666, + 0.7835609843248209, + 0.7260288455914296, + 0.7661162616457756, + 0.8545187095303068, + 0.7430066716311522, + 0.8776362392454651, + 0.7851145451990731, + 0.7489851908997548, + 0.7316769416159014, + 0.6375082036250104, + 0.7938056932890037, + 0.7590843307327082, + 0.7550390108135011, + 0.7809541161259439, + 0.6513245255909753, + 0.8055351216485497, + 0.6433969249296541, + 0.7693681652134816, + 0.7218559443621619, + 0.8019088049338396, + 0.8954160949523625, + 0.8535333374125379, + 0.4739066050720094, + 0.6875763419502178, + 0.8636232822066453, + 0.6986827277654707, + 0.6239705654530661, + 0.46956875944573534, + 0.7763477170162694, + 0.779345381893897, + 0.7677036602650706, + 0.937351614048972, + 0.7871190344372693, + 0.7853468963413875, + 0.9104304397901444, + 0.8079027505505658, + 0.7685591717068014, + 0.764569958537277, + 0.7678363279296629, + 0.6858029174851059, + 0.7666641753806028, + 0.8307874326276101, + 0.8648919580898876, + 0.6607360970821671, + 0.8622172261060164, + 0.7205214403893486, + 0.9113379943015883, + 0.6896324241235674, + 0.8126219432318627, + 0.6890215730200544, + 0.6501424491441465, + 0.8545366210435239, + 0.9252540485808477, + 0.7209137317269331, + 0.7581132628483225, + 0.8546762004366589, + 0.7233700156870804, + 0.7671719717951717, + 0.8588691894612004, + 0.8384805602567204, + 0.8665278058455513, + 0.8626503948181271, + 0.7613049466926137, + 0.7439147615511819, + 0.8380612371304553, + 0.7550340771880649, + 0.6858029133479506, + 0.7439183026393968, + 0.9087465888342339, + 0.8324675276154304, + 0.7817068957224675, + 0.8349597446581568, + 0.7657811517705116, + 0.771299198798157, + 0.7612098010602766, + 0.8071605139286776, + 0.8660655174136532, + 0.7935705564981035, + 0.8609455998850549, + 0.8634442371218873, + 0.8317736926661773, + 0.6807436319132827, + 0.8725666486338308, + 0.804267983531559, + 0.689708925583726, + 0.864959149594909, + 0.8707197628195262, + 0.8037887353297386, + 0.922088665735836, + 0.8900521139302563, + 0.6448103633089792, + 0.880251435879935, + 0.8918570559517512, + 0.8649414584975723, + 0.8830537438557702, + 0.9580664960861869, + 0.8135394718588036, + 0.795174593878933, + 0.8292866729100272, + 0.9065847579670047, + 0.8700012913661473, + 0.9347142316748525, + 0.8633391379333826, + 0.7489701590466757, + 0.8925510147747147, + 0.8770079221410086, + 0.8890952028800877, + 0.8902827899136115, + 0.7219031335654358, + 0.7859007890835512, + 0.8024718240964115, + 0.6355960286916913, + 0.8120529465203873, + 0.6924196980869259, + 0.7711857379886415, + 0.7902831659376858, + 0.7345296741486607, + 0.656366710622413, + 0.7746958001646425, + 0.5681724082623417, + 0.8890315173955772, + 0.9634345717643998, + 0.7943323736134601, + 0.7987999325913754, + 0.9190829581653717, + 0.9310439598591425, + 0.8828151749609132, + 0.8857243817405055, + 0.9001947749261457, + 0.6288764710012558, + 0.8182877888993391, + 0.8398653086040498, + 0.7899017757370256, + 0.6899877397299142, + 0.8659117263677107, + 0.9495657628462789, + 0.9286328421360623, + 0.9089958249275437, + 0.7641218924862725, + 0.9068123111298146, + 0.9364829971536585, + 0.8828187961840808, + 0.9483170225838709, + 0.9024385422300856, + 0.9265785559906302, + 0.9527970879963873, + 0.9429710238022724, + 0.9135046638197455, + 0.8765785363433639, + 0.8730210183741945, + 0.8900720185758291, + 0.9206950535404599, + 0.9701802821000898, + 0.9728457332901611, + 0.9473178207459753, + 0.9404207298165709, + 0.9612567867416263, + 0.7762556019745767, + 0.6877640801859101, + 0.9267365770766132, + 0.6962229269731519, + 0.9615536167517702, + 0.8408258029826071, + 0.7629144544160611, + 0.9566967533145194, + 0.813802202235979, + 0.9581354996658449, + 0.9670934203604485, + 0.9172331669670063, + 0.8153620974585223, + 0.8874852344785109, + 0.8961281621408939, + 0.8456122510319637, + 0.8030353191547387, + 0.8406095275421976, + 0.8785393004451049, + 0.8133344611795842, + 0.8736583358178575, + 0.9168402165012546, + 0.8805665549815229, + 0.7961298202918753, + 0.9018655394061724, + 0.9495606346694816, + 0.8125725374394408, + 0.7843728038789578, + 0.9504710950508823, + 0.7135531004727491, + 0.8334005589743573, + 0.8461765036086045, + 0.9202494725724117, + 0.924675267804645, + 0.8340367257159099, + 0.8740904463875442, + 0.7723266323592477, + 0.9068183711693436, + 0.8455208914974435, + 0.8696502706260341, + 0.8953318811088815, + 0.9131316661553284, + 0.8712647960862702, + 0.626710297150523, + 0.8078602044048728, + 0.9282641834908882, + 0.8884620825118976, + 0.9233354250785523, + 0.725251217255798, + 0.7370125243779411, + 0.8963135355602332, + 0.914160184779333, + 0.9050160272949709, + 0.7974103993862444, + 0.8608378667200753, + 0.8834757068685581, + 0.6808938404786068, + 0.8940125409932005, + 1.0, + 0.8849285987121748, + 0.9447844515837903, + 0.8905753627310434, + 0.9262740896912693, + 0.5848287201102862, + 0.5346199975977254, + 0.817228470815933, + 0.9300213140452847, + 0.918225720105801, + 0.7047626973801498, + 0.8696879153000248, + 0.7422110762996948, + 0.7865873145801981, + 0.8464553391787762, + 0.7394980354863072, + 0.6223759629050066, + 0.7720970453340799, + 0.8408658038180072, + 0.7739419859851142, + 0.7864728148298223, + 0.6841615514612908, + 0.7606178583684724, + 0.6068441872311858, + 0.764507922746504, + 0.7381767478566111, + 0.8824369264698516, + 0.6591564556810942, + 0.5411100383100658, + 0.9740367562190902, + 0.8128006930625579, + 0.792144003534391 + ], + [ + 0.7580266359858557, + 0.6049996798223787, + 0.7934902459332756, + 0.7409887245881832, + 0.7217435569692231, + 0.7291698526416354, + 0.5984242633191252, + 0.8073388634014608, + 0.611259563751515, + 0.7729097917046364, + 0.6112726194044527, + 0.6592372362740071, + 0.8449095055049181, + 0.5791371891778507, + 0.8403381156320804, + 0.608597184581495, + 0.6327754230475517, + 0.8313359001987269, + 0.7354899442829044, + 0.8521233481402943, + 0.8726254102121895, + 0.5910222295369311, + 0.8316396643012386, + 0.7260773067538634, + 0.5683836548070866, + 0.697989752336409, + 0.8837133757453238, + 0.8402413600375541, + 0.6382655435350542, + 0.5041706021731648, + 0.747149761102225, + 0.6511206620595341, + 0.7221085769607004, + 0.6663187028966844, + 0.9079211527619281, + 0.7483850673719524, + 0.8491563006565267, + 0.3834591082592347, + 0.6170597722283715, + 0.8015353676581738, + 0.7416000213366623, + 0.6649931229172767, + 0.3733310164598661, + 0.8263230918049904, + 0.8749203531134916, + 0.8294033620053188, + 0.8955627991476252, + 0.7802987099903886, + 0.9120457454115339, + 0.8353595142237813, + 0.8142432517072261, + 0.7031166664032793, + 0.5755290890601075, + 0.6294166197796628, + 0.4646696753303334, + 0.5512445454520741, + 0.6687979672818473, + 0.83999560818259, + 0.6183956777913047, + 0.853278647577608, + 0.5600854487875789, + 0.9155714914506753, + 0.6073132004793174, + 0.6704171829133458, + 0.8341160997638518, + 0.7106648203621838, + 0.796946714964946, + 0.9376086641865382, + 0.7354278506048852, + 0.7019032240151198, + 0.805518470294746, + 0.6747076048584343, + 0.8477429451746141, + 0.8301204686331375, + 0.8754810783466738, + 0.9251861959857336, + 0.9284720034753133, + 0.7237418562586567, + 0.7043034030789868, + 0.8424072631371652, + 0.7102137134601137, + 0.5660941835624647, + 0.7760544181968541, + 0.8949542974629353, + 0.8168806492710619, + 0.8034575473541249, + 0.842781776597086, + 0.6954549869932233, + 0.6013776905199341, + 0.6684381075561325, + 0.8939391195613698, + 0.9083332947193141, + 0.8992965476407395, + 0.9181902594859616, + 0.9588774585104137, + 0.7089885007177137, + 0.7437426198466429, + 0.7068877166876429, + 0.8719081505392646, + 0.7366738933142732, + 0.9239752459225071, + 0.7490520283564486, + 0.7453769878163684, + 0.76048563031612, + 0.9333076986541872, + 0.7310952768656804, + 0.7477027693361422, + 0.8987365934846254, + 0.8325964292406216, + 0.973631664638589, + 0.8902009487608246, + 0.8098783963667264, + 0.8802338833431389, + 0.8535246218102329, + 0.8514759797751728, + 0.8837127481471685, + 0.8522409961102867, + 0.9040889034047779, + 0.8661666003110573, + 0.9322886955710445, + 0.9113571602379489, + 0.9016075166678401, + 0.8868800877145409, + 0.6911296955274824, + 0.7879123412435861, + 0.8115405247391643, + 0.49822571098826013, + 0.9134020355489251, + 0.7561097676905031, + 0.8618098492351097, + 0.7814264352853177, + 0.7303949394748204, + 0.6100978087702179, + 0.6913150794001183, + 0.7077745091154561, + 0.8521079571427191, + 0.8785326544197511, + 0.9161263897535892, + 0.7810021337539366, + 0.9138785432951416, + 0.8354686051408464, + 0.9667282713945982, + 0.8707128773907629, + 0.8638948468426568, + 0.5565274282959786, + 0.8759044913708326, + 0.8723277790617479, + 0.7808011897306226, + 0.5834047210448228, + 0.8697623479036338, + 0.8431686893153313, + 0.8144451872552018, + 0.8572683175501997, + 0.8115014555255529, + 0.9327326131959163, + 0.9315727447103009, + 0.8175919536701091, + 0.8807256557635588, + 0.8230917793448005, + 0.851422683195288, + 0.9445487752457746, + 0.8782896151246399, + 0.9514565358026089, + 0.9499054419960457, + 0.9520255395928489, + 0.9595895607818279, + 0.9405969257749565, + 0.8803526073433154, + 0.9106198367978556, + 0.9498439618972659, + 0.9481903653307948, + 0.9139021293281476, + 0.7930674326336485, + 0.749932962354514, + 0.9355358909104277, + 0.5026838931448814, + 0.8691117889731674, + 0.8408070625562224, + 0.7706945307703683, + 0.8826204593733943, + 0.6670729451648918, + 0.9308283599174616, + 0.8668384324549959, + 0.9734924887440695, + 0.8978346874360592, + 0.9340031837952183, + 0.9106979949435002, + 0.9088224984087696, + 0.8726964141570639, + 0.8819082823857582, + 0.9151977841408855, + 0.9509399972840955, + 0.9135772071581146, + 0.9219988888616295, + 0.8706871237845417, + 0.8921467047126534, + 0.9088241319232915, + 0.9443004536970117, + 0.8819603365252796, + 0.6501596078094742, + 0.9022919709323365, + 0.7320821905944909, + 0.7937586134147777, + 0.8834664020960016, + 0.944203089751887, + 0.9212465208288481, + 0.8328941305544612, + 0.8925458192907604, + 0.6762395175819195, + 0.9157168684514622, + 0.89363332637831, + 0.820948578195579, + 0.9079972083197693, + 0.9050772992603302, + 0.9545418672190543, + 0.6584017661767514, + 0.8506012203713919, + 0.9555455729500933, + 0.8927910695194563, + 0.9348736048785941, + 0.908537428239905, + 0.6249400725012003, + 0.9094007094009896, + 0.8622385095817974, + 0.8160236924491914, + 0.8022983766659657, + 0.9015810710336254, + 0.8834922483224499, + 0.7042015091945683, + 0.941601597339003, + 0.8849285987121748, + 1.0, + 0.9555524122646141, + 0.9388004480561496, + 0.9431600732282757, + 0.46760878309396214, + 0.5642265393427339, + 0.7508222426038217, + 0.8336336245073127, + 0.8898401267141456, + 0.5947987677132685, + 0.8403343482193555, + 0.8443144392252608, + 0.7748765826727445, + 0.891627538731058, + 0.5386031686927429, + 0.6295793612362424, + 0.594186109669973, + 0.655809667691076, + 0.8452362050008084, + 0.7438800520993688, + 0.6725010181843029, + 0.7237553712209033, + 0.6325481963563092, + 0.5985503516491453, + 0.7915014212073463, + 0.9248786573061476, + 0.5383024953102553, + 0.5451108213180392, + 0.8601901264074278, + 0.9449789357170252, + 0.7363412159992337 + ], + [ + 0.8374843682447105, + 0.6563557098598738, + 0.7558232163887548, + 0.7883357981267225, + 0.8476576350250526, + 0.8187536528161882, + 0.6241961470695069, + 0.8458314893736639, + 0.692298763837324, + 0.7492984154616174, + 0.6083159323107764, + 0.792376484235592, + 0.8908014803420484, + 0.765223217750846, + 0.88019442750746, + 0.7860582335937607, + 0.7269420573152032, + 0.863718892681764, + 0.8730839612155872, + 0.8327189964087889, + 0.9164081783848217, + 0.7464569333627693, + 0.8409718155486092, + 0.7773853245023596, + 0.7112931761107257, + 0.8544578887501383, + 0.8615343918675042, + 0.8551397076610586, + 0.7648611504997916, + 0.6960897178102553, + 0.8663716417050982, + 0.7365162783985412, + 0.8140514001392731, + 0.7163839042703452, + 0.876966374317346, + 0.8859040486593243, + 0.8920056301844482, + 0.4972810162970255, + 0.7596697322695279, + 0.8603369322367691, + 0.8096943525171105, + 0.7513093078382763, + 0.48551080095991045, + 0.8177480783634549, + 0.8500292507068777, + 0.815858411941912, + 0.9212992386847675, + 0.7990375858424358, + 0.8868668375740598, + 0.862213246826172, + 0.841015756250116, + 0.8353523127576491, + 0.7269340770870493, + 0.7941554302909856, + 0.6621245648551362, + 0.7306723266734978, + 0.8214952035455894, + 0.9243765822899722, + 0.6841554948621027, + 0.8947416673287487, + 0.6909251906384167, + 0.9618103727328783, + 0.7404983976684562, + 0.8098877347122263, + 0.7978544629804601, + 0.7147604054238859, + 0.8822956444311437, + 0.927458632136294, + 0.7808254773352155, + 0.7946074989289408, + 0.8716980401356572, + 0.784289545176921, + 0.8638545734860084, + 0.9019834183847328, + 0.919334287916671, + 0.9146798852610195, + 0.9138384442360545, + 0.8420851310296299, + 0.7718246402304898, + 0.9169638091598182, + 0.8008254814115774, + 0.6432683218912125, + 0.7996760400531471, + 0.9397583381943486, + 0.8988990907623013, + 0.8645913689105689, + 0.9156261221042328, + 0.772583380627667, + 0.6870597752597618, + 0.8219911543232306, + 0.9180887871685084, + 0.8878320955495704, + 0.8793617768476308, + 0.956877104240138, + 0.9440695604450892, + 0.8547555809862186, + 0.8223528564095083, + 0.8494280669731247, + 0.8374113798752999, + 0.7708066518046358, + 0.9555417913114473, + 0.8691007118537072, + 0.8313510461760346, + 0.8824738062334174, + 0.9595675283793864, + 0.6921188937131337, + 0.8515500138525057, + 0.9079237375382954, + 0.899168918466247, + 0.9488597153967321, + 0.9339950717245096, + 0.7973907810891647, + 0.9008723778763946, + 0.9315108865228091, + 0.9559965778569104, + 0.9505303979060066, + 0.9298372263478148, + 0.952331884239287, + 0.8102513747840193, + 0.921447669560369, + 0.9572419586436511, + 0.9422661571759597, + 0.9413185245054828, + 0.7732967496669338, + 0.8346625789701512, + 0.8269911938428642, + 0.5890913593658221, + 0.9260219772236071, + 0.7759821672347537, + 0.8819840584841976, + 0.8066220683248833, + 0.7870495667035021, + 0.6436951748678059, + 0.7457487226511867, + 0.6644345306167146, + 0.9266402194244648, + 0.9515208886791532, + 0.8617423724942275, + 0.7813425256912739, + 0.9548014425942472, + 0.9447943513558524, + 0.9634996510794341, + 0.9268649011724056, + 0.925072970864703, + 0.6392880328842089, + 0.8797455133684073, + 0.9177867660328627, + 0.7830459345230352, + 0.648684695127561, + 0.891327729286451, + 0.9202779749971425, + 0.9050365637704594, + 0.9208225940185616, + 0.8123079768754131, + 0.9236019239494635, + 0.9500236116114347, + 0.8201756067949596, + 0.937526870042941, + 0.8662040164736206, + 0.9371846852729829, + 0.9719546914433415, + 0.919052206509063, + 0.9405511974543638, + 0.9063208980324053, + 0.952891792230783, + 0.9724320104756705, + 0.9359691958548763, + 0.9531664529506808, + 0.9738509334416436, + 0.9826783613931748, + 0.936759530266666, + 0.9392597670149069, + 0.809304973313108, + 0.8184429593903909, + 0.9732806582843836, + 0.6006704848623002, + 0.9170413444722827, + 0.8441198846464325, + 0.8184198643444532, + 0.933102172747047, + 0.831797825671745, + 0.9819280377401253, + 0.9317603857073404, + 0.9767830066839557, + 0.9136810929361897, + 0.9324476646990735, + 0.945165279129368, + 0.9251913652359126, + 0.8315478044359004, + 0.9130414689060058, + 0.9511455937118923, + 0.9218970093454831, + 0.9486624821720461, + 0.969249149518738, + 0.8971461986444227, + 0.813726786591789, + 0.9254230396347418, + 0.9478547186323859, + 0.8879990274191946, + 0.7758448444373447, + 0.9342979199117475, + 0.7910861039886583, + 0.8831453110861714, + 0.8678708245651884, + 0.9335328568519546, + 0.9514625635114883, + 0.9167793039240216, + 0.9231591302030415, + 0.713533396733078, + 0.9308387618592132, + 0.8437683425070641, + 0.8467700689058919, + 0.9214224437566897, + 0.9258915738166723, + 0.9258668931776276, + 0.7137617585099553, + 0.8624458466445378, + 0.9501699040038559, + 0.9048033178057636, + 0.9700337975161093, + 0.8450564742726254, + 0.6576035127712322, + 0.9132274413652537, + 0.9077776111911217, + 0.8924654910740868, + 0.8235247029331975, + 0.9092758358880411, + 0.8871770114508905, + 0.6967576999492548, + 0.9397726575551812, + 0.9447844515837903, + 0.9555524122646141, + 1.0, + 0.9483365375763044, + 0.962961950460237, + 0.564173012415499, + 0.6654270452793233, + 0.8142734026872408, + 0.9241874652106832, + 0.9424398055553369, + 0.6870671347841524, + 0.8906613086598023, + 0.8217895251058471, + 0.8285639382557264, + 0.8341214510570394, + 0.709161586187811, + 0.6326179581142112, + 0.693736486026883, + 0.7044800612730451, + 0.8285073379961327, + 0.7542237436584777, + 0.7081710956771359, + 0.8468147333114996, + 0.7070615634045128, + 0.7614110367327064, + 0.850193648591808, + 0.9235397549925083, + 0.6878575112838877, + 0.5633191517886178, + 0.9466769746890427, + 0.8924087697999691, + 0.7668541270125979 + ], + [ + 0.701714363125391, + 0.5996800470465574, + 0.698666265340851, + 0.8734044813651305, + 0.788314606826714, + 0.7400553231649802, + 0.5821991352823983, + 0.716611441330292, + 0.6478016071083995, + 0.7527826096176689, + 0.5480217425153036, + 0.6983644720314337, + 0.8318043036756314, + 0.6694172045776019, + 0.8335633538553452, + 0.7156629994303342, + 0.5909220056367869, + 0.7901054045224268, + 0.8089325451764905, + 0.8201114924228601, + 0.8276827327511296, + 0.6780302515479081, + 0.7779251843971797, + 0.741157218020617, + 0.6355045043514291, + 0.7588272198462216, + 0.775074401534417, + 0.7779680702767607, + 0.6835845942045213, + 0.6233330081987363, + 0.7413089008851301, + 0.6727755080953803, + 0.708272230043354, + 0.5692320540192353, + 0.8837545066158342, + 0.7635723519596586, + 0.8021372026712007, + 0.5801790995719402, + 0.6521684217097611, + 0.790869587325586, + 0.6787175709236307, + 0.6812854554663436, + 0.4301424600519126, + 0.8124541077307005, + 0.8155841486355644, + 0.8287726952364305, + 0.8264926716056195, + 0.7701261315902792, + 0.9217751661972804, + 0.8288043716698225, + 0.7827050694314476, + 0.8348029032440542, + 0.6517404094775687, + 0.6504237090449642, + 0.5016159818695426, + 0.575860519130205, + 0.6885113236004217, + 0.8480523680194754, + 0.7461946892465674, + 0.8131023520580902, + 0.6196015097646662, + 0.9206412599093843, + 0.63688494900072, + 0.6966073394498115, + 0.7710284707852558, + 0.7559007464722926, + 0.8595214083196049, + 0.9172360627675316, + 0.6651452162096667, + 0.657892213839229, + 0.8294335599683467, + 0.7771936979600116, + 0.8077217014385496, + 0.807068018276324, + 0.8759789942491493, + 0.8617478792219337, + 0.8562438293073694, + 0.8159939829013761, + 0.6314425754514285, + 0.8719833920614704, + 0.6890654332819536, + 0.7180984918767325, + 0.7716101188416989, + 0.8962575632291555, + 0.7980026152746545, + 0.7863626755695814, + 0.875203520541259, + 0.8024029203475328, + 0.7405027105491628, + 0.7596359711549909, + 0.8594405699112596, + 0.8278383680234943, + 0.8995460100636705, + 0.8874846226233154, + 0.9262467568972605, + 0.7852773262778473, + 0.7660520348407572, + 0.8322680920611385, + 0.7783962090754876, + 0.6717206574220402, + 0.8923878594580495, + 0.7938629982678369, + 0.8403604728533064, + 0.8340487529836534, + 0.8510648621728643, + 0.6406494806712347, + 0.8049167308038112, + 0.861943831765124, + 0.907289240985106, + 0.8978518559716708, + 0.8539701817414918, + 0.8257989225339974, + 0.8047165425897591, + 0.8348128902873712, + 0.8940333611754614, + 0.9302484291523929, + 0.8130718631820758, + 0.865371442079433, + 0.8580673752479793, + 0.869593629731232, + 0.8722597966933311, + 0.9232060483176352, + 0.8818661605412956, + 0.6894495362124261, + 0.8480989387802904, + 0.8790557417616044, + 0.7054203386884824, + 0.85428945860921, + 0.8759476046596371, + 0.8163823378651813, + 0.8315500460543999, + 0.8132061578608544, + 0.7017213376934146, + 0.8166381400602124, + 0.5993041916009219, + 0.8109943065008468, + 0.8732306695400338, + 0.8918550125612829, + 0.734629824208948, + 0.8984808640280646, + 0.8487011508502733, + 0.9303700779928561, + 0.8419967563718369, + 0.8655063539952335, + 0.7277275770986591, + 0.8295742999066443, + 0.892872520392315, + 0.8097997411305146, + 0.6891751899163151, + 0.7754934135473582, + 0.7935198645456734, + 0.7897454084210604, + 0.799256391561801, + 0.8141089084763645, + 0.9226368817756252, + 0.9090239022375238, + 0.7892588684547901, + 0.8989210281083674, + 0.7957878645366914, + 0.8401912773884608, + 0.9236973027585035, + 0.848111407042304, + 0.9114257888504617, + 0.8391944946989442, + 0.8596016897540001, + 0.9405858842876557, + 0.8682197357556838, + 0.91732480050748, + 0.9228749918407483, + 0.964059772069014, + 0.9218970874941583, + 0.8942945357989674, + 0.8083771038150225, + 0.7368941671351076, + 0.9160256915305911, + 0.5368354741241965, + 0.8567236136299626, + 0.8494546365504582, + 0.7027194471540257, + 0.868669159647708, + 0.7770319546220151, + 0.9127936231397678, + 0.8634267746970401, + 0.9151369356144934, + 0.8926690726289781, + 0.8774327204716325, + 0.905914384695408, + 0.8562797250258859, + 0.8743601689041389, + 0.7944532105023987, + 0.8875322794474285, + 0.8838200602541048, + 0.9175795748383927, + 0.8744760198695358, + 0.8829137090418888, + 0.7873440541066531, + 0.8712903230335746, + 0.912534510491736, + 0.8673016974057146, + 0.6867101808135814, + 0.8772519417645289, + 0.7807050493370535, + 0.7859611294962032, + 0.851906677110385, + 0.8954561443744622, + 0.8680336595538205, + 0.8453804233053973, + 0.9446656768221747, + 0.7918009578504324, + 0.8940255158098148, + 0.7785417664978701, + 0.7599880447712826, + 0.8229011665844, + 0.893739094842428, + 0.966539783192327, + 0.7452330018651598, + 0.9506957118220611, + 0.8974375983895774, + 0.8018275809782479, + 0.9390619245962155, + 0.842508744271536, + 0.6091572021330312, + 0.8918314496815369, + 0.8292628166649885, + 0.9103340560254612, + 0.8118951242181289, + 0.8923851473352217, + 0.785252833722069, + 0.624650082388389, + 0.8725085480069802, + 0.8905753627310434, + 0.9388004480561496, + 0.9483365375763044, + 1.0, + 0.9261287709434423, + 0.532670266941785, + 0.6316194576905014, + 0.7616719479386943, + 0.8363479059764384, + 0.8530141874664479, + 0.5772003190189124, + 0.8506084691156799, + 0.7388250908742057, + 0.8901248969117241, + 0.8173844015406402, + 0.615586009989865, + 0.4765686836848572, + 0.7119119165496212, + 0.6430152030776424, + 0.7327746071384147, + 0.7850199011414458, + 0.779745973612783, + 0.8165500074739876, + 0.6693884520841931, + 0.6781476328402761, + 0.7633769579025621, + 0.9032500421415102, + 0.6210354231235782, + 0.4595675331058304, + 0.888045898598598, + 0.8902209815436424, + 0.7398473238548464 + ], + [ + 0.8117914647843132, + 0.6592728026771468, + 0.8009713217738662, + 0.7991237534941456, + 0.8582792042190815, + 0.8428957549385119, + 0.6775913388591118, + 0.8213658443356088, + 0.6351346356507003, + 0.7800638449968407, + 0.6435240005140954, + 0.7430198655709056, + 0.8506457983154606, + 0.7329793174152525, + 0.8616453093494203, + 0.6913992766627336, + 0.639166023273156, + 0.8548228458356782, + 0.8206575577502977, + 0.8548345364859098, + 0.8986069018236678, + 0.7259429348146086, + 0.8886399323244256, + 0.7926197568813074, + 0.5811213183577691, + 0.8086280958988463, + 0.8714821148600109, + 0.8501806208631099, + 0.7350221685458065, + 0.6368406385195369, + 0.7777194358176845, + 0.6835026867019109, + 0.8478360115750632, + 0.6978657622216242, + 0.9218568940976211, + 0.8322387080190647, + 0.8836654828664338, + 0.48264589277681796, + 0.6640027880191894, + 0.793596873845809, + 0.8293315919345844, + 0.719701339943617, + 0.4222134768491622, + 0.8441243966622104, + 0.8879215675447021, + 0.8241733444279824, + 0.8959353603557442, + 0.8446401160762399, + 0.908157981751303, + 0.8329804917947845, + 0.840079076664901, + 0.7912734174033395, + 0.6536025099611406, + 0.7333751139013615, + 0.5487270045986717, + 0.6608597674210801, + 0.7693373033548501, + 0.8673825714717469, + 0.6405635005850869, + 0.8778379206895779, + 0.6046800441939507, + 0.9338132640782664, + 0.6582444112952283, + 0.719511211000249, + 0.872443399630515, + 0.7487523399320585, + 0.8858651264401415, + 0.9580839086942826, + 0.801528182047293, + 0.772371324515128, + 0.8537324233551624, + 0.7721777673765448, + 0.8380652788386428, + 0.8112640375175127, + 0.931822403179925, + 0.9051723798105913, + 0.9251900008011892, + 0.7991650739680222, + 0.7547862942558177, + 0.8656802047303179, + 0.8105555167414243, + 0.5828087213446902, + 0.7565529147843955, + 0.8859235520608305, + 0.8362292935825469, + 0.8133996786794842, + 0.8705555197295235, + 0.75269638659716, + 0.6779616695128254, + 0.7828825910828602, + 0.9140501327079055, + 0.9230690899777412, + 0.902199698349302, + 0.9292341969747422, + 0.9027259701101061, + 0.7774937510973806, + 0.7322515775745425, + 0.8056315545838135, + 0.8872234123139887, + 0.8002242596637706, + 0.9408247890953128, + 0.7900500690164535, + 0.7799935411467516, + 0.8477787705141484, + 0.9524514019342073, + 0.717143073355437, + 0.8726763152420797, + 0.9001112850331049, + 0.8099409228358719, + 0.9343299179917863, + 0.8963193517823334, + 0.7940737460946855, + 0.8351232473515173, + 0.8584895472222139, + 0.8783239051521791, + 0.9130848440654703, + 0.8896815633123192, + 0.9387834501765427, + 0.7549245419876041, + 0.8956085321845156, + 0.8915127953273588, + 0.8926976196351581, + 0.8786180038120703, + 0.6834464141249128, + 0.7618450575338679, + 0.7612730722323088, + 0.5870974697028303, + 0.9173565072419433, + 0.7511022892179638, + 0.8278601372226636, + 0.7752306442667511, + 0.7250933980041786, + 0.594175333316756, + 0.7028782251482613, + 0.6844071608471214, + 0.8645150795882977, + 0.899871632641533, + 0.8890224709416518, + 0.7315257224805302, + 0.931183568529785, + 0.8927281967633873, + 0.9470095771507618, + 0.9068212213963359, + 0.9169317994636803, + 0.6347412209262684, + 0.9179208914290024, + 0.8956475945758833, + 0.7983498528595653, + 0.687029691470566, + 0.8784663880069117, + 0.9001925841742777, + 0.8583288922112251, + 0.8779361242806568, + 0.7786799567697453, + 0.930940744658048, + 0.893996277211784, + 0.7715352231945796, + 0.8978666838727024, + 0.8146898014676472, + 0.8869389172533535, + 0.946003571108843, + 0.9061346632763573, + 0.9233644791653917, + 0.9029578809943816, + 0.9356573197865091, + 0.9522892458033493, + 0.9090281917445832, + 0.9221920177107367, + 0.9435802812730372, + 0.9549930125762208, + 0.919046937729402, + 0.9231131939890183, + 0.7410044998287788, + 0.751474368865826, + 0.9258965453431978, + 0.5348930297686444, + 0.8572120847418284, + 0.8846817562154495, + 0.7929029791818815, + 0.8655330375946645, + 0.741653664150933, + 0.9314538130523119, + 0.919355165092548, + 0.9636994026876002, + 0.9275464983683817, + 0.9241649928809714, + 0.9255406006493184, + 0.8941160626934269, + 0.7843162408952811, + 0.8737878744194069, + 0.9175335898211955, + 0.9199592787383478, + 0.9066108132896326, + 0.9309554887780008, + 0.864506793768728, + 0.7947272158594799, + 0.9136289280427704, + 0.9077452482785335, + 0.903052382531759, + 0.7003538051867717, + 0.9249819735563567, + 0.6923404206238065, + 0.7433273896242818, + 0.8494852607014858, + 0.946720718968639, + 0.9608422733473949, + 0.8851626428076104, + 0.8859585076965713, + 0.6894513264236817, + 0.8870215526072492, + 0.9019938996735394, + 0.8354271404389128, + 0.8881377980581752, + 0.8697646475917764, + 0.9287124877856379, + 0.659476103938163, + 0.8340335521638268, + 0.9259134833391274, + 0.8860234272475813, + 0.9233555328838721, + 0.8087219665758887, + 0.6654126679640437, + 0.9376333554915434, + 0.867388214186146, + 0.8085875022480942, + 0.7877692690865213, + 0.9194148287141715, + 0.9080398970219702, + 0.6668904445063407, + 0.9153477457772233, + 0.9262740896912693, + 0.9431600732282757, + 0.962961950460237, + 0.9261287709434423, + 1.0, + 0.527412608993423, + 0.57638482091123, + 0.7988012541293102, + 0.8888427673672, + 0.9228107844256542, + 0.6977212252362504, + 0.8811465180738084, + 0.8497324526910924, + 0.7360144121901289, + 0.8766975691156393, + 0.6164804198236474, + 0.6223743396383474, + 0.6291929108766839, + 0.6866506941334302, + 0.8434079276125733, + 0.7356523997729305, + 0.6485700288038672, + 0.8149972257833158, + 0.7038872772062793, + 0.702312646935578, + 0.7729619852758846, + 0.8769138684073832, + 0.5749663657971289, + 0.5777320996852734, + 0.9143511259253628, + 0.8838479624910316, + 0.720086970385439 + ], + [ + 0.4892181402054188, + 0.24012109064411327, + 0.2188176487004814, + 0.4259855922336472, + 0.5666924135247219, + 0.44693220432170383, + 0.14254837517038133, + 0.41604694029218653, + 0.39548359914730286, + 0.3112714742648768, + 0.21208881670400495, + 0.5245205326013893, + 0.4539018347660003, + 0.41726663062256564, + 0.33954085907567005, + 0.5617160687466688, + 0.3014118613349161, + 0.464979111446267, + 0.6622660594999579, + 0.33136487745023213, + 0.479514749651144, + 0.6140531271221521, + 0.3623780359853879, + 0.39934661133566174, + 0.3652824383951881, + 0.5220221050014047, + 0.3514539468070956, + 0.4005263382203845, + 0.4968728559349151, + 0.3753062242650864, + 0.4062540490716238, + 0.22812683666724717, + 0.4466984919391182, + 0.5721966714394402, + 0.4273608386365812, + 0.5972644738359295, + 0.5502172002743791, + 0.7604936872923221, + 0.5522106762148864, + 0.6283997410356411, + 0.5097276822447054, + 0.5828307409923775, + 0.7681349824749939, + 0.45379107758840553, + 0.36078350433001866, + 0.3913935162138045, + 0.4885581825509023, + 0.3972860651558907, + 0.5484375783171391, + 0.613392743447976, + 0.48837961587089207, + 0.5636111155569772, + 0.64860600358904, + 0.4686315218494431, + 0.5246421373375684, + 0.6012580652777046, + 0.5842254994874017, + 0.6743276932285525, + 0.4806745681028192, + 0.47826976661957665, + 0.480711552462809, + 0.6024090761703779, + 0.43339306036432873, + 0.49414981919529566, + 0.42563218506938716, + 0.39222386247517976, + 0.4974320009503271, + 0.5943487280764463, + 0.420925194079052, + 0.4608046920270577, + 0.5952933662258956, + 0.37822316416414703, + 0.3151725864894412, + 0.5473160861447529, + 0.521809697454239, + 0.5791887054801831, + 0.5080222404196827, + 0.796816259815307, + 0.5233488195507904, + 0.6790250723713784, + 0.5265004862386016, + 0.5880192813274748, + 0.6016831399972539, + 0.6561415841937744, + 0.42576712220638696, + 0.40136275644865627, + 0.46878493813833033, + 0.5335602130224916, + 0.6407256462832044, + 0.6246435752574098, + 0.445455330234253, + 0.5658455282060528, + 0.5390638044358248, + 0.5674103372473739, + 0.509590279276287, + 0.6114230077157347, + 0.3750287430782447, + 0.689402009601586, + 0.4041109075085975, + 0.3978922620789854, + 0.5776712003654693, + 0.6691665190416082, + 0.4953564940288716, + 0.6496806768741051, + 0.45412688103064003, + 0.25930755567082203, + 0.5666405005503433, + 0.5901134665224316, + 0.5515180393063287, + 0.49484094878619295, + 0.6519653429672979, + 0.3791130026102135, + 0.41150426774561555, + 0.5429107571496748, + 0.6010716099464594, + 0.5899258273117883, + 0.6341581915732528, + 0.4633273955759913, + 0.21941556767609824, + 0.6127634038651529, + 0.6066766796490847, + 0.6832751154422269, + 0.5351156445297713, + 0.45393473646687016, + 0.6233572216955173, + 0.5559783601649197, + 0.5838385057517869, + 0.5791759073362138, + 0.5551091716430671, + 0.6549686275696258, + 0.44852354465793204, + 0.43402036281148565, + 0.3809410482997392, + 0.5137517767486631, + 0.4101740147983861, + 0.46920598222718735, + 0.5656991220696389, + 0.4912948752022083, + 0.45858284696702695, + 0.4638601102254193, + 0.5912770971469135, + 0.4167336116247771, + 0.4761081589244172, + 0.43097962328247935, + 0.727367526155751, + 0.42651398143174013, + 0.459721237525032, + 0.5328551463075729, + 0.3618263005188351, + 0.515663362154622, + 0.6272376321688311, + 0.606564670372778, + 0.5760115139040481, + 0.5228263645980256, + 0.5307127028879104, + 0.6010434850340001, + 0.49683235094375566, + 0.5959941076838134, + 0.4900058236134825, + 0.5135716572443562, + 0.5370189049572922, + 0.594895281196159, + 0.4824213318602927, + 0.47159432087317255, + 0.42384318199743004, + 0.4993431978949727, + 0.5776580133113368, + 0.5709109067270958, + 0.5898116747995421, + 0.5061579529432886, + 0.530649891985453, + 0.6194930318369131, + 0.38931946202752626, + 0.6671397870622725, + 0.6284468577822093, + 0.6102169926001896, + 0.5997947308091158, + 0.5730806087354257, + 0.36764299850799936, + 0.5092187708507185, + 0.5148034295176168, + 0.5887582063363017, + 0.6488248829608072, + 0.4747148519709599, + 0.487629167049778, + 0.4437806255156937, + 0.5243942526740093, + 0.41789594451583967, + 0.4076412632761586, + 0.45594870581093383, + 0.487196379633374, + 0.4570052869526062, + 0.6092015358692418, + 0.5375404234748854, + 0.5672992954709879, + 0.29710196226787317, + 0.5825654798142981, + 0.5620397909394598, + 0.5200120073263074, + 0.795343536259078, + 0.5729923138853659, + 0.3671394931355302, + 0.5872138633020767, + 0.5834487038377295, + 0.45968991150481026, + 0.614690263668563, + 0.588403402009235, + 0.617635814796122, + 0.6011135906996236, + 0.6308702972051672, + 0.4264012618386099, + 0.4517269259796695, + 0.5347566511702969, + 0.5503031107566818, + 0.45992311062985963, + 0.48226254965876375, + 0.5619803552563077, + 0.44962139304192167, + 0.41410844371699496, + 0.6233844162353932, + 0.5350322881248035, + 0.5318548803473404, + 0.6881281940620628, + 0.6518593291655924, + 0.5033912719476842, + 0.4652734774328011, + 0.5081894215825428, + 0.5864404022930861, + 0.17155126442858842, + 0.43243358440153556, + 0.5848287201102862, + 0.46760878309396214, + 0.564173012415499, + 0.532670266941785, + 0.527412608993423, + 1.0, + 0.48741930543381773, + 0.5720764795169516, + 0.6780355301768941, + 0.6704188786021665, + 0.5572866464089888, + 0.7192438816330848, + 0.49715129383351075, + 0.5837675209125761, + 0.45971185815171944, + 0.5700486164118336, + 0.2552474384879426, + 0.6030936633044331, + 0.585856986194272, + 0.5014134318105143, + 0.5612099447253799, + 0.5289398199293216, + 0.528663973897442, + 0.4998250861104224, + 0.532156477812789, + 0.4298551985371198, + 0.5098745230906592, + 0.639774617450023, + 0.20756470622037113, + 0.6270478467320642, + 0.45082428362666876, + 0.3174632190666571 + ], + [ + 0.4385180083245351, + 0.3336713637888294, + 0.3873531163082299, + 0.513742582577274, + 0.5161010276253937, + 0.4727082508327012, + 0.2194640390549252, + 0.5611982865249202, + 0.3303891299399923, + 0.22145797664104702, + 0.0807192539598082, + 0.662841524521053, + 0.689977489785866, + 0.5197832906289394, + 0.6238244322386454, + 0.5916309617545653, + 0.3673920376930237, + 0.4664606354842021, + 0.5634438136975279, + 0.30651272081837755, + 0.5371845169156378, + 0.5036247608951163, + 0.47625433198637795, + 0.3197771147070562, + 0.6156624922769739, + 0.6681796132383419, + 0.5458931229330729, + 0.5374117240954345, + 0.4055845636409447, + 0.5434813166080951, + 0.6372280768616534, + 0.5064567195669313, + 0.5456059601549047, + 0.46645016032885156, + 0.5021636440797221, + 0.5742779281311695, + 0.4168266657284995, + 0.5459670899149953, + 0.6700328485536788, + 0.5978446046061832, + 0.6036308730479126, + 0.8186697794721477, + 0.5096703818744053, + 0.5479171596277298, + 0.6166775180823971, + 0.30937376478559786, + 0.5374931387412322, + 0.28572979129442466, + 0.5860268995384184, + 0.5268065628942751, + 0.4524748838708442, + 0.6989108683095396, + 0.5046108928463717, + 0.4499446676296577, + 0.47645176695900404, + 0.4720887208324097, + 0.4936240189741188, + 0.7711315532469787, + 0.5609068457241566, + 0.5339232326068674, + 0.41080414953926336, + 0.667467303772932, + 0.570019099976773, + 0.6096936853865551, + 0.41934815730569364, + 0.3984473007359754, + 0.5924100382678689, + 0.5149345516193333, + 0.2900621256593156, + 0.3322822241569861, + 0.36005732966761855, + 0.4363152879834152, + 0.500429504199541, + 0.6263713456299874, + 0.60355496445483, + 0.6729685927309126, + 0.6971150114618919, + 0.7601700296673244, + 0.3864707388715568, + 0.7951751562924616, + 0.333310086560927, + 0.4412065831781096, + 0.5201199329143606, + 0.7782415400259305, + 0.5913776852691701, + 0.5487004202151303, + 0.5682159884674394, + 0.44547815324769163, + 0.3973975454812196, + 0.6806372359811541, + 0.6769502263322865, + 0.3736374972092074, + 0.5271247430189846, + 0.6515640727196486, + 0.5267870562001861, + 0.745265022211327, + 0.6262752848938001, + 0.5773172544495841, + 0.31795899947670037, + 0.29945797102893745, + 0.5569402293021406, + 0.6487131126117183, + 0.6850962303786231, + 0.5608997485059073, + 0.5798053760174191, + 0.1721955559727659, + 0.4234692381837809, + 0.4629941088645379, + 0.6295606470752133, + 0.6206288704311999, + 0.5131247980667645, + 0.4635665740180145, + 0.6555728391547359, + 0.6756174095422823, + 0.7690725537933206, + 0.6595727821144736, + 0.5848486607400626, + 0.6012043256478564, + 0.4610386325497602, + 0.5463973719346783, + 0.6145334653028932, + 0.7425357799066553, + 0.6089730989667431, + 0.5014570764888927, + 0.6526665630369562, + 0.5440575983002274, + 0.39740775623590574, + 0.625102128232785, + 0.5239343905087648, + 0.779369504806753, + 0.5299457445840333, + 0.5086503718904576, + 0.41220855465990813, + 0.518444949108813, + 0.31537841480591006, + 0.6294650518812487, + 0.5322400227125414, + 0.5134358119436496, + 0.49077224530021824, + 0.6928958745564012, + 0.7009617643842072, + 0.6142220002989857, + 0.7068581990972503, + 0.49864352279106744, + 0.44808819554019413, + 0.44075114105366325, + 0.6341425232054031, + 0.5137492300437176, + 0.45792173818567616, + 0.4541393922260069, + 0.5568182264240835, + 0.5374960990872082, + 0.6060411830683229, + 0.4431166424094476, + 0.5563045292455415, + 0.6319580695876442, + 0.4473454481779254, + 0.47540138070552646, + 0.37166984403259035, + 0.6108998965905098, + 0.5004173599853764, + 0.4978577713925046, + 0.45971745385196017, + 0.4549736307309293, + 0.6083998127372088, + 0.685790605486192, + 0.5057396739049101, + 0.6077796296083695, + 0.6218923967152579, + 0.654263369805447, + 0.5152288032295165, + 0.5005442982323538, + 0.6151317600767235, + 0.8431307252250445, + 0.7227758056994646, + 0.42004356393729403, + 0.5463847294533809, + 0.5343043311739438, + 0.3571089716712159, + 0.6135971172527178, + 0.6682440260490793, + 0.6472299480174803, + 0.5325098848869468, + 0.6359871397345976, + 0.6056535719860778, + 0.6108620495485461, + 0.6632296245323014, + 0.6017710818196094, + 0.5884564270710294, + 0.6308834322585127, + 0.6997097570869095, + 0.6906380535690028, + 0.7482593300173965, + 0.6813740583396111, + 0.6756256507335572, + 0.4446440148108489, + 0.49079407001491826, + 0.5576915542756616, + 0.7363950753381368, + 0.7657646728039639, + 0.4835766386325762, + 0.5741621000746544, + 0.7315759804945706, + 0.639006376368447, + 0.5887527206595861, + 0.6362836015263417, + 0.7712248362497646, + 0.6488936473285779, + 0.40844583126627176, + 0.6658756236697535, + 0.3818307653075293, + 0.5422833555442755, + 0.5177482661061157, + 0.5294268893934153, + 0.5675357752318294, + 0.893497707275793, + 0.6431751068520498, + 0.6119151346430638, + 0.5633285267148472, + 0.7267078896997072, + 0.5808817304877738, + 0.4602560790362622, + 0.6283924661762404, + 0.5942343744310725, + 0.5955625837652673, + 0.7160223676112323, + 0.6279905710233948, + 0.5100015728922763, + 0.19230007136533483, + 0.500669193620483, + 0.5346199975977254, + 0.5642265393427339, + 0.6654270452793233, + 0.6316194576905014, + 0.57638482091123, + 0.48741930543381773, + 1.0, + 0.6009849304291769, + 0.6439934120807341, + 0.6549933495938355, + 0.24606629680023748, + 0.6554089877169522, + 0.5432166906992189, + 0.6291134746597157, + 0.4453755446908347, + 0.5888589437659739, + 0.13223219296344116, + 0.6319534794469182, + 0.3788680044174505, + 0.42053853781534023, + 0.41357007582589017, + 0.5400170931865579, + 0.7068753003200382, + 0.5170832177332034, + 0.562009502263678, + 0.7331112512419234, + 0.7001916750253504, + 0.7182521333751222, + 0.07076696495634979, + 0.5324860501212569, + 0.48720143919441117, + 0.4425376402011865 + ], + [ + 0.6650976147455627, + 0.43908091039466646, + 0.5201427308982743, + 0.6034060688542137, + 0.7498150424174455, + 0.49349218066802286, + 0.3585492670473361, + 0.775036093323388, + 0.5111064902026596, + 0.6082360131221618, + 0.547852722264699, + 0.6417465042684882, + 0.6215105398262731, + 0.6194610543325744, + 0.7188459558538488, + 0.5910130967558994, + 0.5783042997961002, + 0.6026597678598297, + 0.6822664048988416, + 0.586778954548276, + 0.7150710960484865, + 0.6383400189196808, + 0.737347860699636, + 0.5487905138100883, + 0.6124298446581038, + 0.7119560103242166, + 0.7886321961268665, + 0.725663689336749, + 0.5105586642598974, + 0.5917721591577264, + 0.7219306398640007, + 0.6319584155919356, + 0.7183617402333933, + 0.6297148763121985, + 0.6159549148906109, + 0.7858591458536967, + 0.7768218443537555, + 0.5865191600972908, + 0.6395289451191039, + 0.8665421885793462, + 0.7106603967545904, + 0.5921198713712896, + 0.4950242795264791, + 0.604793435231831, + 0.6548529475039919, + 0.676850148193884, + 0.8633204481756537, + 0.6579563399332665, + 0.6840803742130717, + 0.9173709183120643, + 0.6340100564682066, + 0.5569179268274731, + 0.5432062101879008, + 0.6698576259340518, + 0.647452036089242, + 0.6449800340593749, + 0.6895928257245374, + 0.8728770052770525, + 0.5182930491946006, + 0.7901195725608099, + 0.530234930097221, + 0.8526501377497963, + 0.5780084738319818, + 0.6948954421466054, + 0.6352012362722463, + 0.599741484013336, + 0.6100504200528233, + 0.7060265299192824, + 0.6058107953144789, + 0.678843001756225, + 0.6759674788245906, + 0.47234385276794166, + 0.6617615809423215, + 0.8031141664686324, + 0.6937471793003752, + 0.7623184347156349, + 0.7699807169597995, + 0.6794297651091243, + 0.6121999173342627, + 0.8279141129329323, + 0.5868533654700517, + 0.415523293340176, + 0.7337670541489173, + 0.803489383473264, + 0.8072723544006213, + 0.7584747687920379, + 0.7010792203678439, + 0.5433813643327989, + 0.5151068685375982, + 0.6111804797743219, + 0.7212642990573266, + 0.6522408262964907, + 0.687235403229361, + 0.7317736891991149, + 0.7143729118913945, + 0.742896056972328, + 0.6845217923176323, + 0.7379656389933186, + 0.6038377381232493, + 0.5874039007974241, + 0.7819833809820708, + 0.7277237923184636, + 0.7547981455932874, + 0.7150085723339047, + 0.7596843910735385, + 0.45307528315522544, + 0.6431465793764586, + 0.7718076807786628, + 0.731348054563853, + 0.8278158472406741, + 0.8504055434005902, + 0.6412841176531258, + 0.7180755562746314, + 0.6776748877575447, + 0.8295504682852288, + 0.7221980626729826, + 0.8992753955968664, + 0.741328171751053, + 0.5823192885082215, + 0.6650371410900096, + 0.7806071743924071, + 0.7715027234171437, + 0.8436980230891578, + 0.6343671374624418, + 0.6993902556361902, + 0.7034639585800261, + 0.4882106954302273, + 0.7170787640500265, + 0.57376049076584, + 0.6947552284763989, + 0.6357376317709688, + 0.6811839876710706, + 0.5020586231483789, + 0.6153757605395684, + 0.406329191229546, + 0.8536351989161584, + 0.7861403605563255, + 0.5829260634196833, + 0.9208153261271461, + 0.8535506250928965, + 0.8067483151964762, + 0.82291098282451, + 0.8933107672882006, + 0.8461541066697741, + 0.43488958749513973, + 0.6324703349722578, + 0.7664765842558107, + 0.828489899449945, + 0.8325133285945618, + 0.829299942746764, + 0.829350010468511, + 0.8615427003120454, + 0.8752147253645318, + 0.6367426107034565, + 0.664172818925379, + 0.8308242123240327, + 0.8738726871147444, + 0.7544703017695193, + 0.6908920568465879, + 0.8258024988310252, + 0.8161307055463339, + 0.8550367051836663, + 0.6975604270412656, + 0.7599497008015692, + 0.7884663245424492, + 0.7832928801304301, + 0.8214626263034551, + 0.7866157137058043, + 0.8229945653943124, + 0.7982237849660815, + 0.7459955021389909, + 0.783767394216296, + 0.602179626220275, + 0.683483715975312, + 0.7797453255040239, + 0.7946334530318425, + 0.8406920513099807, + 0.8067050106690383, + 0.6958740820392345, + 0.7790715802956139, + 0.6258251340083434, + 0.7853913455359381, + 0.8552208216146934, + 0.8282957408852988, + 0.8094752336881562, + 0.6813807090096767, + 0.7228737888681543, + 0.7552601608037334, + 0.6648381513950011, + 0.6978202074573752, + 0.8397828174120576, + 0.7628262391534021, + 0.7575426683387875, + 0.8369681409939053, + 0.921091326736044, + 0.6127319987822053, + 0.7358873106989365, + 0.7531569254189808, + 0.8713912352402304, + 0.6177210949203609, + 0.8612905973509569, + 0.6769694095006461, + 0.7708319407987632, + 0.9039639572503987, + 0.8030793611648954, + 0.7868741985783746, + 0.7543750563998425, + 0.7163526854076249, + 0.5395382205628493, + 0.762454229579403, + 0.7403049409284909, + 0.9346878421352368, + 0.8900132152344213, + 0.7716106519391401, + 0.7626343220084549, + 0.5089252836276894, + 0.6672119460098384, + 0.8250375631492751, + 0.8838336404846544, + 0.7930828174385115, + 0.6870484450076545, + 0.8579925020252672, + 0.8286362692764694, + 0.8320567249160926, + 0.7752395100853692, + 0.6302158790705895, + 0.902874510998958, + 0.8377440957239791, + 0.5244851750700222, + 0.7308385075955897, + 0.817228470815933, + 0.7508222426038217, + 0.8142734026872408, + 0.7616719479386943, + 0.7988012541293102, + 0.5720764795169516, + 0.6009849304291769, + 1.0, + 0.909063775478644, + 0.8316038280911406, + 0.5410626920589655, + 0.8894387239016316, + 0.7438696726917251, + 0.6458979865992412, + 0.6740346367324282, + 0.6927400267253597, + 0.5044138099091756, + 0.8294019833483646, + 0.8197612085781092, + 0.788804026692064, + 0.8998460601181381, + 0.48553764540686706, + 0.607793281623925, + 0.5403366035887923, + 0.5969283468969309, + 0.7222805081401775, + 0.7908279072705489, + 0.688787228536718, + 0.43507066047274556, + 0.7810907148079166, + 0.6775099381917307, + 0.5523129801844013 + ], + [ + 0.8484997682070461, + 0.5764524239520662, + 0.6392426863490126, + 0.7163114663608101, + 0.8524144971538912, + 0.7189721983259014, + 0.5121313257550305, + 0.8342514342069696, + 0.6839618333009643, + 0.6714583705735447, + 0.6108219505039548, + 0.7519634515093339, + 0.7802189577612074, + 0.7750431037073165, + 0.8317350241193759, + 0.7866146213119777, + 0.7317993637427073, + 0.7781387101000662, + 0.8686448481940295, + 0.6829877556029127, + 0.8917321465997724, + 0.8203050460750855, + 0.7777261260403457, + 0.7121405108397787, + 0.74622437821148, + 0.84984642188956, + 0.7991107524211878, + 0.8040987904734246, + 0.7296729432639318, + 0.7227678900148592, + 0.8679289866421245, + 0.6779381692117129, + 0.8409488869520332, + 0.7909376253804788, + 0.752123723431307, + 0.9233724977064056, + 0.8782528085898339, + 0.5820895181266085, + 0.8093815891014229, + 0.9472278565828688, + 0.8109454050348136, + 0.7198217374459406, + 0.6265208567475792, + 0.761085849425778, + 0.7700076416756715, + 0.6926629395004411, + 0.9232528855161655, + 0.7566318061023091, + 0.7845595838689035, + 0.9392354770542221, + 0.825070415190514, + 0.7494927703542199, + 0.7587344536345746, + 0.824906860990694, + 0.7827577095893662, + 0.8253413960080772, + 0.8813993795677015, + 0.9590451041082599, + 0.5909540868583384, + 0.8633113670929268, + 0.7439203493855046, + 0.941280544263657, + 0.7534408951906351, + 0.8656755350154117, + 0.7048989458707831, + 0.6370296960464176, + 0.7917672976420367, + 0.8316030982496904, + 0.723833459580232, + 0.7866818093044099, + 0.7948671189080002, + 0.6491015490071954, + 0.766058336033884, + 0.9202071404854797, + 0.8246838736743961, + 0.8827891679860896, + 0.8527340786044186, + 0.8289067043559063, + 0.810244256561448, + 0.9191458982026465, + 0.76621362299965, + 0.5797174486375828, + 0.7842500057898635, + 0.9138858338177723, + 0.8816376622540847, + 0.8405111025419681, + 0.841326553542198, + 0.6841896361485391, + 0.6528341133869147, + 0.7514229343798414, + 0.8467696639636092, + 0.8050696183653578, + 0.725457993226386, + 0.846596133459851, + 0.806072333491648, + 0.8821962115095315, + 0.7633580707751734, + 0.8445001372383931, + 0.7305041692395314, + 0.7117857886452842, + 0.8733925750444667, + 0.9008956510083364, + 0.829048184557668, + 0.8530184550874276, + 0.8773478249564999, + 0.6127913038986569, + 0.8060105119593408, + 0.8815554739826408, + 0.7972878352997422, + 0.8709899640417742, + 0.9270135902812536, + 0.7572338009368785, + 0.8309875334475214, + 0.875193679168666, + 0.9386694823426415, + 0.8592341003451387, + 0.9586069302558177, + 0.8882171958757406, + 0.6602130671114007, + 0.8348391643880022, + 0.8736957044174932, + 0.8774998536640229, + 0.9000456126717986, + 0.7954680541052841, + 0.8163441176402841, + 0.770370000999384, + 0.5527378141708961, + 0.83908716421251, + 0.6536007412394667, + 0.8249516034766092, + 0.7657978365191406, + 0.7468102665240607, + 0.6094206248864061, + 0.716110381689032, + 0.5585955305252632, + 0.9376493905483316, + 0.9211210393529613, + 0.7426472807080573, + 0.8363597789783166, + 0.9124056598021458, + 0.9489972372616043, + 0.8785463002304489, + 0.9306298778315553, + 0.8852390005389937, + 0.5859827364024018, + 0.7821049993435637, + 0.8083898548791277, + 0.7600479765790532, + 0.6998566924616665, + 0.8672792402851096, + 0.9575038768355908, + 0.9495646694956895, + 0.9477146944139178, + 0.7625526332593321, + 0.8037908853638294, + 0.9114508852797102, + 0.8500802524081945, + 0.892869991407633, + 0.8569415227457935, + 0.9478430691477329, + 0.9108773940329522, + 0.9155808115566272, + 0.8363624232213274, + 0.813572913725089, + 0.8726085957294073, + 0.8783949389658108, + 0.891150941265877, + 0.9201959573151149, + 0.9380695471363903, + 0.8917946423043153, + 0.8489861470303328, + 0.8893823082436396, + 0.7244276568432749, + 0.782260992897808, + 0.9200705309107621, + 0.7666086614473198, + 0.916066999062374, + 0.8040833204284691, + 0.7919220117602147, + 0.9003424503325264, + 0.8077459291058955, + 0.9142761812950511, + 0.9270957587790678, + 0.9072274128399305, + 0.8319190455097825, + 0.8480124165942087, + 0.8814408638035625, + 0.8683290312739139, + 0.7557275717881734, + 0.8569274109040309, + 0.9104281616411354, + 0.830359270763665, + 0.901620584455848, + 0.9256656779122804, + 0.914572735012894, + 0.6793634563808015, + 0.8539062611890795, + 0.8662123953697832, + 0.845651866279531, + 0.8137528801659275, + 0.9124504202608101, + 0.7217513899857394, + 0.8794079960871135, + 0.8674477406549166, + 0.8709454755603724, + 0.9217937621137893, + 0.8793609228327754, + 0.8326182216473296, + 0.6406311425308039, + 0.8560613423989643, + 0.7949352098370916, + 0.9113140153345741, + 0.9099665944860831, + 0.8785346789801898, + 0.7984412633481425, + 0.6200700120018787, + 0.7481494620147744, + 0.8933438637567717, + 0.8890663490073778, + 0.8917155364991944, + 0.7117122100272608, + 0.7724651678649452, + 0.8874819416135722, + 0.9633662540853155, + 0.8517386188742383, + 0.7965125943111668, + 0.8809671419864038, + 0.8902812784114921, + 0.6220137252313049, + 0.8626591962066362, + 0.9300213140452847, + 0.8336336245073127, + 0.9241874652106832, + 0.8363479059764384, + 0.8888427673672, + 0.6780355301768941, + 0.6439934120807341, + 0.909063775478644, + 1.0, + 0.9444078251107227, + 0.7315040386589444, + 0.9080869749642265, + 0.7839817872180865, + 0.7111966091605643, + 0.7636670463796182, + 0.8501685381099962, + 0.63418452434207, + 0.7885744510158731, + 0.7985989223254509, + 0.8103379778274771, + 0.8121040207598296, + 0.5665567725654688, + 0.7524809164868616, + 0.6632295249459984, + 0.7504073889116134, + 0.8412348293659754, + 0.8434030400395267, + 0.77190159248211, + 0.5780645482662234, + 0.9198823779804493, + 0.7801349601048239, + 0.6882485656411436 + ], + [ + 0.8439891117320668, + 0.6038899312364366, + 0.6714376787010489, + 0.6438626321879913, + 0.7834062816982008, + 0.7499803864156989, + 0.5027443498077402, + 0.8084093285970597, + 0.5606480156394783, + 0.6420957192146811, + 0.538518927871867, + 0.7849792476889418, + 0.8178020978089459, + 0.7361765956353892, + 0.7769232107570739, + 0.6931474940815364, + 0.6148687248640617, + 0.805531729463747, + 0.8149059924618596, + 0.6872945940390748, + 0.8959809833342907, + 0.7374646571241448, + 0.774131545466024, + 0.6692606289447806, + 0.6284477033542961, + 0.7879436691880236, + 0.8269864638336833, + 0.8115604498848248, + 0.6854015830747174, + 0.6188820344254341, + 0.7867287398331568, + 0.6206201870402548, + 0.8352949862066484, + 0.7908324154214559, + 0.7891753762794684, + 0.8524888760494671, + 0.886316295261406, + 0.4874035117279976, + 0.7324094666262198, + 0.843426141601178, + 0.7872985379441964, + 0.7021889549671863, + 0.5099687503717495, + 0.8098022312500103, + 0.7757818683730122, + 0.7032895405510458, + 0.9111014226893567, + 0.6973676388329614, + 0.8195363905894778, + 0.8962192375228669, + 0.8461807920480248, + 0.7432091072654088, + 0.671836672272365, + 0.7360257485686252, + 0.6652421666408949, + 0.7408046766656833, + 0.798067487759439, + 0.9153860118628009, + 0.5119651648862961, + 0.9356362953650983, + 0.6088309262714087, + 0.9171253817501143, + 0.6467532825250178, + 0.7701226328919214, + 0.7255081967802292, + 0.5220947722257895, + 0.799377468520642, + 0.8883002749293183, + 0.7821315168801698, + 0.7775559000794949, + 0.805616672809579, + 0.632438756499871, + 0.7605752714951362, + 0.8576168702924932, + 0.8739172284445331, + 0.9035990844141017, + 0.8876507746074991, + 0.8239826992927076, + 0.7494732524891675, + 0.9164919650816612, + 0.7646602518398017, + 0.5151598145937454, + 0.830649312523505, + 0.9276541896410907, + 0.8293896678533859, + 0.8057097097694533, + 0.8088240087347945, + 0.6052573174098397, + 0.5845479636733723, + 0.7387917352405261, + 0.8638416403970357, + 0.8476119445592732, + 0.7988987609423476, + 0.9021743822577094, + 0.8446243951634672, + 0.7930671828998809, + 0.7494186539445913, + 0.7823737335600947, + 0.7911761225367676, + 0.7530792643582648, + 0.9065175705206551, + 0.8336260859197697, + 0.7297977722988743, + 0.8203272471924999, + 0.9205579140209242, + 0.5747114602080594, + 0.7594191574126199, + 0.8650905152382521, + 0.7737421464447818, + 0.8955889662558433, + 0.9478383858920523, + 0.6818465829677355, + 0.8437825347820678, + 0.8769925651821623, + 0.9175673533779211, + 0.8653610044925828, + 0.9401028899789938, + 0.8991006760774941, + 0.6372583115454581, + 0.89406772616924, + 0.9040835419008166, + 0.9329780103287286, + 0.8850353678418336, + 0.7073583662174756, + 0.7463201564355104, + 0.7200402784925952, + 0.4820096883807819, + 0.8926688813315274, + 0.6044767452347427, + 0.8853409984722393, + 0.6835947295000059, + 0.6380422634999426, + 0.5004290717112534, + 0.6131891527035581, + 0.5808238385632707, + 0.9004997029194861, + 0.9170913465493225, + 0.8076789021950219, + 0.8028481963330887, + 0.8999051611831412, + 0.9171866874509932, + 0.8851726598497958, + 0.8879405922845682, + 0.8490297963812866, + 0.5434944864328525, + 0.7780740443828107, + 0.8402841227566583, + 0.7893601924591793, + 0.6314304707896393, + 0.9280910268035614, + 0.9498502427867415, + 0.9258162742183343, + 0.93091300956756, + 0.7312152800106659, + 0.8513152950807997, + 0.911585834598029, + 0.8348169265746536, + 0.8626436079135817, + 0.8157717867239148, + 0.9021375077698268, + 0.9179764400074056, + 0.9156176308262968, + 0.8445465144791081, + 0.8921336029941067, + 0.927960743566242, + 0.9389498704405129, + 0.9466863006439447, + 0.8877239612906649, + 0.9257814455059121, + 0.8906811762675868, + 0.8655488392387604, + 0.8999887457116857, + 0.6466745059932834, + 0.7995279553327861, + 0.947334131135234, + 0.6361730721372468, + 0.9077623328429769, + 0.8529784270049562, + 0.7829102145746804, + 0.8874473452150959, + 0.7516800166870105, + 0.9417422175322288, + 0.9405006302440901, + 0.9302194638815474, + 0.8629914824670541, + 0.8767687786975277, + 0.8989051827062733, + 0.8607739568750498, + 0.7090698417163845, + 0.9109999904649637, + 0.9187373960545179, + 0.9091717385379109, + 0.9331358007308012, + 0.9457039528722232, + 0.8912841936751345, + 0.7544621672806985, + 0.8430325475097867, + 0.8965618304564807, + 0.8886355976766847, + 0.8130452502085489, + 0.8953377067963527, + 0.6479972885622856, + 0.8406726382832796, + 0.8711085222224865, + 0.9385793212102089, + 0.9525509100592855, + 0.8608158858414335, + 0.8275991901582616, + 0.5984673886634483, + 0.9071202817206576, + 0.8350645139684209, + 0.8713362648698516, + 0.9204983074334734, + 0.8236254851377764, + 0.8229463719995856, + 0.620011447035965, + 0.7773866884201021, + 0.9187353362418645, + 0.896605660113988, + 0.9364879587070613, + 0.7865204850195333, + 0.7475184167815957, + 0.9284774530511475, + 0.9137718704191111, + 0.8198981042456377, + 0.7440576859889413, + 0.8861390240484415, + 0.9137644187143733, + 0.5841047123015219, + 0.8816216681968492, + 0.918225720105801, + 0.8898401267141456, + 0.9424398055553369, + 0.8530141874664479, + 0.9228107844256542, + 0.6704188786021665, + 0.6549933495938355, + 0.8316038280911406, + 0.9444078251107227, + 1.0, + 0.72338627873094, + 0.9144961722438909, + 0.8168926237289452, + 0.6891474368672701, + 0.8509084154651086, + 0.7286779162826506, + 0.5665796336327554, + 0.7236677244211758, + 0.7581532107972392, + 0.7998979457948624, + 0.7848944664203005, + 0.5493438814482813, + 0.729189027219135, + 0.571117131805349, + 0.6731453715346987, + 0.7808526246405619, + 0.852484507811015, + 0.7027671518873571, + 0.4957516921520718, + 0.9074792323965962, + 0.8192637766422575, + 0.6894635622124639 + ], + [ + 0.850601093246933, + 0.7050038516452347, + 0.576695347033269, + 0.5137549922136807, + 0.807519977541165, + 0.7482904490750315, + 0.7468613088122915, + 0.7695420499036678, + 0.7231297241951076, + 0.7166758557248523, + 0.7497886678309015, + 0.719655797779134, + 0.6205021693116982, + 0.760278187467587, + 0.6681037631997617, + 0.7223692028728417, + 0.6579588291255907, + 0.8277365650172519, + 0.8083579926830329, + 0.6252950338819763, + 0.825107004226626, + 0.8083512212805001, + 0.6679700737750056, + 0.8292169606349781, + 0.5903502109632528, + 0.7489646482352458, + 0.4917083042790706, + 0.6890349123297305, + 0.8317445857931365, + 0.6772567613852982, + 0.688301064766144, + 0.6530763661694104, + 0.8430654354110559, + 0.7898792817312635, + 0.6594998666040447, + 0.8302972039542355, + 0.8726926394049651, + 0.3466334281822108, + 0.70166437922262, + 0.6783601238334255, + 0.6962975926865755, + 0.49194113020243924, + 0.3509926695799516, + 0.6028281439761282, + 0.5161398119106827, + 0.6636160416501615, + 0.7252271104455065, + 0.7611390057170162, + 0.639115264393395, + 0.6284491130499895, + 0.8674938082815948, + 0.6094079141969413, + 0.778624775489925, + 0.824720183422826, + 0.7720772747574902, + 0.8559685456559059, + 0.8800296244142864, + 0.6867217930590789, + 0.22553768949796324, + 0.768271450119786, + 0.7503750834596042, + 0.6969117132859033, + 0.7147027407967285, + 0.7549963151924445, + 0.6055296690914279, + 0.49802230682142234, + 0.7605038261606294, + 0.6822412807946209, + 0.8601874054787658, + 0.8631680030119785, + 0.8245674751391621, + 0.6707498662013133, + 0.6386294747541466, + 0.7106662833192087, + 0.7711577987950026, + 0.5668974631675919, + 0.5250224786849691, + 0.6015399366781934, + 0.8208805846115877, + 0.6139571490001362, + 0.9136146794750032, + 0.4535130853034648, + 0.7315643606033162, + 0.5383755025258262, + 0.7176812363385339, + 0.770985675957916, + 0.740348577352588, + 0.6259612929097077, + 0.5385508349377854, + 0.6413514529462431, + 0.7081988023175495, + 0.7657449228231284, + 0.5178935929149092, + 0.7234436898299196, + 0.6059298441123553, + 0.7062274871479374, + 0.6276135918144945, + 0.7257550423458088, + 0.803763566516773, + 0.8660702735250684, + 0.7204843611887594, + 0.7961685605177093, + 0.5689845403657633, + 0.7516458972925806, + 0.7245041413452745, + 0.7243645153077313, + 0.7050411110897733, + 0.8274016223035328, + 0.5584959686539789, + 0.5758510624311414, + 0.736852456385577, + 0.5428135260026669, + 0.6604012696900369, + 0.7481689198534357, + 0.6782433813171218, + 0.6921448726874725, + 0.754113699346051, + 0.7767840670595099, + 0.41460656869654094, + 0.6631759176433393, + 0.6283804883294268, + 0.6541811707986666, + 0.7481137842715192, + 0.7825311164228027, + 0.5790803252660088, + 0.6245476409627886, + 0.44362365250568125, + 0.7143427161449691, + 0.4306735575095496, + 0.5531176349883663, + 0.6013474764344747, + 0.6261303111937543, + 0.5840431301294675, + 0.548148310907616, + 0.6678835897053645, + 0.7379919473713286, + 0.794793548242463, + 0.5728311561085391, + 0.4367048338961223, + 0.6244754286720291, + 0.7462031568849801, + 0.6166983195771052, + 0.6122198028416903, + 0.7308869073623885, + 0.5542882207962792, + 0.7151985724302156, + 0.49746532667883353, + 0.5428634480198431, + 0.5130818732398592, + 0.7088126410360213, + 0.8103558039772809, + 0.8191198196280366, + 0.7449285820207316, + 0.7299980583373507, + 0.6366762735369887, + 0.5717996460432111, + 0.5145157951394043, + 0.7841717711543692, + 0.838827992332643, + 0.7679437910842085, + 0.7595232743961452, + 0.777948713148112, + 0.7327383211775711, + 0.6213116946012744, + 0.6507612903972804, + 0.6424017567385204, + 0.6864095977527175, + 0.7334929106185818, + 0.7315401190773976, + 0.6443973587156053, + 0.6530402039510682, + 0.7289585884731382, + 0.47172172185626776, + 0.4072522328923535, + 0.6666203219254473, + 0.562238529206649, + 0.7035188809843619, + 0.4732117920721929, + 0.8426197473608991, + 0.6806143441786245, + 0.6783654019213424, + 0.6862386873454924, + 0.7709418985156071, + 0.6491409957362856, + 0.7082609598768387, + 0.6863969920338875, + 0.7366885236277902, + 0.6856478499958966, + 0.4468583995726507, + 0.6831802069081956, + 0.6039404896856794, + 0.5441736306127755, + 0.6115637876562067, + 0.6206206543835537, + 0.4610303497957643, + 0.47838528258246316, + 0.7686413268899259, + 0.6833652805882456, + 0.43905990517552923, + 0.585478904517139, + 0.7534209383580125, + 0.5611635704571368, + 0.6150624142736346, + 0.4331832948307098, + 0.6279384321334431, + 0.6842092325472461, + 0.5628904744428859, + 0.5255452428784438, + 0.5212589156295545, + 0.5348302885714098, + 0.6717312742987321, + 0.6033466261246113, + 0.6334172548281561, + 0.6881732109169206, + 0.5002853383510748, + 0.24674628596086456, + 0.49736747572135553, + 0.6421600789090959, + 0.6031932821494967, + 0.5962553014588763, + 0.41859365192382514, + 0.5013801447686431, + 0.5929882379765071, + 0.7165720474111141, + 0.5959066543876631, + 0.4570220096641523, + 0.4744402953995858, + 0.6483334753005627, + 0.7737949393538842, + 0.7350890367237884, + 0.7047626973801498, + 0.5947987677132685, + 0.6870671347841524, + 0.5772003190189124, + 0.6977212252362504, + 0.5572866464089888, + 0.24606629680023748, + 0.5410626920589655, + 0.7315040386589444, + 0.72338627873094, + 1.0, + 0.5150431331795873, + 0.4271276729331219, + 0.3792984322479819, + 0.628986383706368, + 0.7333873372454064, + 0.7605222831608258, + 0.43154026873139006, + 0.5730265178470562, + 0.5899522768281352, + 0.5356141155397438, + 0.33260063146679036, + 0.5282631020144052, + 0.6228205665261841, + 0.5764986171954164, + 0.6101253215498343, + 0.45427696116267596, + 0.6009494711309803, + 0.8239680537659244, + 0.7942832982049877, + 0.6113696063327316, + 0.47194924129945115 + ], + [ + 0.6586749950608982, + 0.4058103911461033, + 0.555649921418682, + 0.6817399808018366, + 0.7325493801624705, + 0.6319913216651836, + 0.31199370841412516, + 0.6810821456586221, + 0.468939642844893, + 0.555179536170607, + 0.3921662248950899, + 0.6589783919303658, + 0.7268800892250991, + 0.6108101314863448, + 0.6875994978239153, + 0.6232809711635242, + 0.5195679933130523, + 0.6535124050359531, + 0.7555120490559739, + 0.657551076433549, + 0.723858457033415, + 0.6472863142267877, + 0.7154549873090857, + 0.5341962311940376, + 0.5371106289471167, + 0.7095361663730151, + 0.8032007763185058, + 0.7229565959834824, + 0.5411118604176859, + 0.522636164468725, + 0.6857671541899744, + 0.4729243096646173, + 0.6788408561270226, + 0.6036768763801876, + 0.7111587172008728, + 0.7612607447774836, + 0.7526928463639471, + 0.6617163012992822, + 0.6133680491115099, + 0.8107642428559971, + 0.7225641980054385, + 0.6621451737748182, + 0.6287722558832886, + 0.7258298111996399, + 0.7239587898478921, + 0.6576207734812202, + 0.81150340143164, + 0.6242021555052911, + 0.7865467369153493, + 0.8772343388862648, + 0.6597553916925828, + 0.7166235679073985, + 0.5967778734645098, + 0.6335669877492892, + 0.5394681655600155, + 0.6013802891279744, + 0.6695037998746775, + 0.8729378486303899, + 0.6593629663197687, + 0.7789340649238446, + 0.5055994375540876, + 0.8866411533305505, + 0.5389351887117878, + 0.6340262457564855, + 0.7185277522360035, + 0.608528224546095, + 0.6807291952235229, + 0.8359876375038473, + 0.6040280617482993, + 0.6241848261051757, + 0.728904150070462, + 0.568411537786674, + 0.6718529624321772, + 0.7757269239415019, + 0.7560224653638825, + 0.8593894577095565, + 0.8540112716389511, + 0.8557671811965418, + 0.6255597782989406, + 0.8925523026130844, + 0.6191859015157396, + 0.5611980315998539, + 0.7232618271770138, + 0.924565527072813, + 0.7448258486943227, + 0.6597711852162399, + 0.7326101245247985, + 0.6164563605698897, + 0.653789302286022, + 0.7207649357714067, + 0.7461189951435137, + 0.769556073700204, + 0.8243148084777813, + 0.8145254685839373, + 0.8262323889394703, + 0.7273284376174114, + 0.6475497281021995, + 0.7739864693356299, + 0.6375048594406548, + 0.5650333826887362, + 0.8528120226647763, + 0.7256732795826971, + 0.7276555056571978, + 0.7747525027512514, + 0.8116404128540773, + 0.4390446963241432, + 0.7653661071927942, + 0.7701892573237351, + 0.7805365719979617, + 0.8710533295368706, + 0.8890568961227008, + 0.6606988400664117, + 0.7107329780333232, + 0.7537593976532395, + 0.8650964749112969, + 0.8323077028534744, + 0.8850525439100257, + 0.7832211670128929, + 0.6118786300269062, + 0.8343164619220302, + 0.8833599784845134, + 0.8731988862820607, + 0.7938179064633957, + 0.5825619327497228, + 0.7493835857564615, + 0.692470251410577, + 0.5921448067414669, + 0.822000343853457, + 0.7046122234560365, + 0.8406131820043218, + 0.6582398372088364, + 0.6206453801261935, + 0.4386180651696811, + 0.6248638671837031, + 0.46647895908794107, + 0.7919383390632877, + 0.8057690374304037, + 0.75336855132558, + 0.8289214918520761, + 0.849159910071031, + 0.8393265364924543, + 0.8503469695617283, + 0.8462757898238955, + 0.7930337987418979, + 0.6065267754958394, + 0.7205744122817177, + 0.8789907065614568, + 0.8000765722140123, + 0.649947525049801, + 0.8464788216786074, + 0.842017037289407, + 0.8190103523739635, + 0.838934986814729, + 0.6413444873839125, + 0.801042054009985, + 0.9090721076415265, + 0.8321169375181644, + 0.801411315301572, + 0.6741735887616286, + 0.8044488332653412, + 0.8509546691864476, + 0.8470891981574828, + 0.7634564511898231, + 0.820971810280131, + 0.829093577501338, + 0.870599514742201, + 0.8775988973193566, + 0.8316513746560931, + 0.8692002203394601, + 0.854883780351807, + 0.8133563682135746, + 0.8469480011797482, + 0.6129534726432976, + 0.8270606684274114, + 0.8867310257626448, + 0.6591916288301702, + 0.8403353767528253, + 0.8995514529387001, + 0.6056433266203632, + 0.7939206347971817, + 0.6583112510814391, + 0.8722083701662525, + 0.8778736796746421, + 0.8678864700286837, + 0.7951837862834141, + 0.7422197641393782, + 0.7831496823704918, + 0.7644474002047602, + 0.6917899236582701, + 0.7626775040345443, + 0.8804580361536073, + 0.8458658502129385, + 0.8783838526365372, + 0.9014101380624231, + 0.9455693851981879, + 0.6410494146035296, + 0.7891009619619758, + 0.8248694337343625, + 0.9258235114981138, + 0.7611764263670886, + 0.8423550216676547, + 0.6323421973977674, + 0.7610875622887849, + 0.9382032828036192, + 0.8524395469366601, + 0.8997922117129218, + 0.8526392699150528, + 0.8645692089324484, + 0.6426478715141918, + 0.9097045448846242, + 0.7684224555059107, + 0.8301245990856728, + 0.8951243572495845, + 0.7850002807318044, + 0.8501926232860101, + 0.654582056386419, + 0.7695046598251956, + 0.8324684851292002, + 0.8313746082261374, + 0.9078074905149282, + 0.7844798644795655, + 0.7555688141251732, + 0.954824785293534, + 0.8484600154551575, + 0.7797628838158273, + 0.7240135584361302, + 0.9437767668442227, + 0.8926085551680089, + 0.387360404491812, + 0.7582055743522549, + 0.8696879153000248, + 0.8403343482193555, + 0.8906613086598023, + 0.8506084691156799, + 0.8811465180738084, + 0.7192438816330848, + 0.6554089877169522, + 0.8894387239016316, + 0.9080869749642265, + 0.9144961722438909, + 0.5150431331795873, + 1.0, + 0.854463130230664, + 0.7759331129903415, + 0.7441905323775204, + 0.6260671055768655, + 0.39810522328216436, + 0.7629514553190723, + 0.7457513002262287, + 0.7981369883440895, + 0.8258496206867175, + 0.6312437591341744, + 0.74653761955947, + 0.5614508801003031, + 0.6671203283303756, + 0.6899895368963914, + 0.8624053917919738, + 0.6449761817831622, + 0.3065993027510342, + 0.8280197608167896, + 0.7624743500128931, + 0.5827437815456843 + ], + [ + 0.6621925586196411, + 0.5320573973354883, + 0.8108721641497482, + 0.5724587132055212, + 0.6025958821052217, + 0.6325917464122939, + 0.45934021322005547, + 0.7267798069220669, + 0.4928792913444096, + 0.6303497301028147, + 0.5227822488732737, + 0.6294650457923139, + 0.7685763527034267, + 0.43421869909077726, + 0.7303910582297904, + 0.46502634484821953, + 0.5795742532583085, + 0.7132938511736724, + 0.6060756724087958, + 0.7742891242212244, + 0.7517409820053941, + 0.48272968706807284, + 0.8249182335022776, + 0.5825562446784206, + 0.4841708502070251, + 0.6347053130747333, + 0.9068804212542357, + 0.8126647776499667, + 0.4787489160802055, + 0.4512624016365104, + 0.6672281520772516, + 0.5079071620252599, + 0.6620800276715696, + 0.6078994707962835, + 0.765090735655079, + 0.6607316714164159, + 0.7423567930786721, + 0.34009646567834856, + 0.5858647685795878, + 0.7372767535193553, + 0.8473083737533714, + 0.717756328673062, + 0.44505562521577774, + 0.6646319536970628, + 0.8230648555661401, + 0.6754742249711828, + 0.7515072752847975, + 0.7066291093176755, + 0.7587502940691805, + 0.7198483639469597, + 0.6484701172999461, + 0.5845896600033036, + 0.38556177832099264, + 0.5718016265911052, + 0.37932995277470544, + 0.49179231450142413, + 0.5810420469242975, + 0.7727377483823747, + 0.5747606550370394, + 0.7100912269036534, + 0.4148560649302823, + 0.8305928245555311, + 0.5404687559022554, + 0.5411227410674028, + 0.8696068378066334, + 0.6233026257438572, + 0.6367189821102056, + 0.7925191483063847, + 0.6098018143533577, + 0.6129560413091487, + 0.6215147348986136, + 0.5456099033340084, + 0.7855006868749611, + 0.7300478968049133, + 0.7527820424897863, + 0.8908836074527217, + 0.8965750492455458, + 0.6904732046031751, + 0.7208248385108157, + 0.8219172335392755, + 0.6067468183523228, + 0.3130261017853445, + 0.6407243483479494, + 0.8091758345973087, + 0.7488574107298451, + 0.6714226975066627, + 0.7210586157135486, + 0.5349323541646851, + 0.4161979571023389, + 0.6141232045809513, + 0.8024523033904554, + 0.7908263773027693, + 0.7828685850102544, + 0.7680766649509703, + 0.8111488617652958, + 0.611158744673489, + 0.6613567578057608, + 0.5492833778102987, + 0.6839881696316796, + 0.6474747139508663, + 0.850627479135169, + 0.6072967322299949, + 0.6334654913316252, + 0.5811843902613115, + 0.8556843526699671, + 0.6134958940683826, + 0.6888639641579865, + 0.7191507385649487, + 0.5943284307083425, + 0.8912282840657731, + 0.7482727618184696, + 0.6678938655170639, + 0.7850908170985859, + 0.746309971211197, + 0.7214628565127413, + 0.7547794326243527, + 0.7802920941721891, + 0.8072971047628416, + 0.6560387052320399, + 0.7769601356197889, + 0.8453946829835074, + 0.7520107436821478, + 0.7154029211676912, + 0.5293305252332723, + 0.6644999797372085, + 0.5759737682776417, + 0.31482098187245344, + 0.8217851642710251, + 0.6499367736583356, + 0.7660407980639903, + 0.6287647789093843, + 0.5432741003084801, + 0.3739087173370415, + 0.48453651970438916, + 0.6718533013302251, + 0.7329595740119257, + 0.6925770503243656, + 0.7844655536651589, + 0.7191031011221144, + 0.8048467847362726, + 0.72080620329812, + 0.8395280494700732, + 0.8338947894662704, + 0.7685264101613328, + 0.4158297142969545, + 0.7997261172607794, + 0.7805331285699402, + 0.5936279198808294, + 0.42881069579554115, + 0.7933100093930221, + 0.7705630588026052, + 0.6851191997447891, + 0.7959841364415023, + 0.5997326018871855, + 0.7214709334837779, + 0.803055734310426, + 0.6452954548845448, + 0.6956096198080642, + 0.5931745315720987, + 0.7407154881415086, + 0.7646198307978463, + 0.6992298373414623, + 0.7525133406775057, + 0.8025854005201447, + 0.8774654495062045, + 0.7946161640620009, + 0.7876789462996647, + 0.7029282803017259, + 0.7333204934758104, + 0.7816780799876877, + 0.7307627651571796, + 0.730017368725583, + 0.6352620615005437, + 0.8347948837306322, + 0.7932433834523117, + 0.34323728136118226, + 0.6681306294025989, + 0.8294280246168854, + 0.6627444347120318, + 0.6555229433920805, + 0.5303960387264225, + 0.7705260491008317, + 0.720993252537954, + 0.8546958628741822, + 0.7363229231184195, + 0.7875313663911171, + 0.7259109278019616, + 0.8194649961668581, + 0.6822307190359133, + 0.816977637801224, + 0.8623822615465467, + 0.8855641810123205, + 0.8104534333028008, + 0.8730838518443771, + 0.8174124792595225, + 0.6592810145611818, + 0.7571275836422012, + 0.7222759471326882, + 0.8877966701797233, + 0.6024822081383238, + 0.7597824100331846, + 0.5421457681415498, + 0.6616291066840547, + 0.8293636678957621, + 0.8110099502103867, + 0.859671991860496, + 0.8622024780232241, + 0.809968191262977, + 0.4213119071456995, + 0.7678368321573616, + 0.7607577310170669, + 0.7603286712610152, + 0.8368641524899902, + 0.7278011211197016, + 0.8204291235130964, + 0.5681159716694942, + 0.6529686034914965, + 0.7849236806279546, + 0.8132347756745995, + 0.7754297897301988, + 0.8526550598975444, + 0.524011008406895, + 0.8542244752778251, + 0.780718760655297, + 0.5530843784441231, + 0.6998441949235121, + 0.8986787898874408, + 0.8364760407544736, + 0.41421932925172084, + 0.796187026661974, + 0.7422110762996948, + 0.8443144392252608, + 0.8217895251058471, + 0.7388250908742057, + 0.8497324526910924, + 0.49715129383351075, + 0.5432166906992189, + 0.7438696726917251, + 0.7839817872180865, + 0.8168926237289452, + 0.4271276729331219, + 0.854463130230664, + 1.0, + 0.5733884285685361, + 0.6851431365564049, + 0.426762984140239, + 0.5554020726346263, + 0.4518222493652209, + 0.516152438272718, + 0.89782389047592, + 0.5981596818707363, + 0.46707774371223887, + 0.6933250829431008, + 0.6362307033034176, + 0.5492585744307937, + 0.7452033373889864, + 0.8086765003062054, + 0.4696300512428653, + 0.41040871420678665, + 0.6915686126921747, + 0.7834606266842532, + 0.5326938575798421 + ], + [ + 0.5067574087665828, + 0.3594007346894688, + 0.42867639652277495, + 0.7942306610698493, + 0.6990330889084175, + 0.6252716914763029, + 0.34380390303725605, + 0.506774659587137, + 0.5399172972144621, + 0.5217547330563239, + 0.29240919828663464, + 0.5523587761325817, + 0.6914969193341899, + 0.5886817654138075, + 0.6343018573756022, + 0.7254179698125897, + 0.510193905538599, + 0.5703592910427793, + 0.7556793480319852, + 0.6569735579882496, + 0.6073497432415085, + 0.5895203528203379, + 0.5476326822423883, + 0.5701992923122444, + 0.5570534862898886, + 0.6679408858184688, + 0.5935580106125201, + 0.5262729940765581, + 0.6133624537162053, + 0.5365390139741212, + 0.6444288095468093, + 0.5475273528090916, + 0.4472549081228229, + 0.3931264164830892, + 0.6796997966499129, + 0.6673806534481784, + 0.5984086623811938, + 0.6552098555197077, + 0.5564569253940856, + 0.675279713258519, + 0.4834960987959726, + 0.6302847892273986, + 0.5705231277421619, + 0.6274631788295844, + 0.6320029472639315, + 0.674230757558068, + 0.6614641126945857, + 0.5622312469758437, + 0.7457482825260286, + 0.6927078630808905, + 0.5126242831374838, + 0.7944897576424184, + 0.6701150323221595, + 0.5647216235350223, + 0.4741382467889452, + 0.4982727959007685, + 0.5893365325814882, + 0.7420222009730746, + 0.8777811504587744, + 0.584816389582056, + 0.5520846482125988, + 0.7674017348086022, + 0.5389637524157663, + 0.6182613525835406, + 0.5309395855737545, + 0.7007369368913837, + 0.717651927540327, + 0.7647284371780038, + 0.4655061261365643, + 0.50658541801633, + 0.7497051973357729, + 0.7084152880169362, + 0.5931559253871945, + 0.6879046385481334, + 0.6909468857090765, + 0.711794220579804, + 0.7015937633037441, + 0.8084566026898805, + 0.4439346529642258, + 0.7417270799281278, + 0.5428685913404004, + 0.8474512482147302, + 0.5616747239042881, + 0.826422444117307, + 0.6410978558081764, + 0.5902431050303533, + 0.7240724430176154, + 0.8071478562173158, + 0.8068140241635042, + 0.7725435790489701, + 0.6376496165255542, + 0.6661411794675083, + 0.8271700000505329, + 0.7810082424579264, + 0.8266407726504053, + 0.7292368476982252, + 0.608537145810511, + 0.8357365953321466, + 0.5582345962108194, + 0.43216834691051764, + 0.7570272736650128, + 0.7229716804099166, + 0.7341338390218847, + 0.8233690762609444, + 0.66858202837125, + 0.43069886815933073, + 0.7516092147254582, + 0.6855912850620204, + 0.9488979870890273, + 0.7466524371657767, + 0.7542885642990406, + 0.6700588811518848, + 0.6227512620486357, + 0.7097682498824672, + 0.8055439659591406, + 0.8219505962191009, + 0.697099512539957, + 0.6636838412339171, + 0.737736436905598, + 0.761269996912701, + 0.8214260904489213, + 0.8099773418646832, + 0.7516473588005809, + 0.5472259567580094, + 0.772381393204158, + 0.7868382009999295, + 0.7607347009265218, + 0.7034730714402542, + 0.8745130443388633, + 0.7526369841627819, + 0.695226856124357, + 0.7333576535531148, + 0.6040220474860292, + 0.7771891389809068, + 0.410990565919817, + 0.6580663241605921, + 0.77153732981667, + 0.7033051073504808, + 0.6309934771771517, + 0.7543551009685641, + 0.7461501637771559, + 0.7479425772091036, + 0.7003426842511068, + 0.7006721855209734, + 0.7659021141749935, + 0.6457648408959553, + 0.8244224408211854, + 0.6939488598358767, + 0.5487551145193414, + 0.6009323332019417, + 0.6378211294165195, + 0.6642814472073068, + 0.6410240634698788, + 0.6571535158687405, + 0.8162064186929011, + 0.8431021180012964, + 0.7063069442973806, + 0.807495086543525, + 0.6496789469018595, + 0.6830821976687169, + 0.7792292683048111, + 0.723946635219123, + 0.7616793445950217, + 0.6919135613574593, + 0.6549241995517203, + 0.7703240855452255, + 0.7295406347204616, + 0.8096828450079196, + 0.8250490031862899, + 0.8453612809765139, + 0.8242944173288633, + 0.8068081916136496, + 0.7808294453649954, + 0.7238844418585202, + 0.8124059957348799, + 0.5746549493957192, + 0.774799867227089, + 0.7206716128181592, + 0.4791299711780477, + 0.7847413565706232, + 0.7459649260640232, + 0.8359925526297564, + 0.7505171272683301, + 0.7448738626897353, + 0.708066453523595, + 0.6905505791610423, + 0.744700533679976, + 0.6460761740295352, + 0.7720004425295292, + 0.59961683780601, + 0.7134202416382154, + 0.6677288351655446, + 0.7872316930983396, + 0.7538085933566988, + 0.7815838509611296, + 0.6680806266406227, + 0.749204767641754, + 0.8081817655948782, + 0.7056817261044327, + 0.7171261244397122, + 0.7517841411747472, + 0.7077319127492527, + 0.7733282232867955, + 0.7524426671032995, + 0.6740319270714281, + 0.7216177333628464, + 0.7570178138314868, + 0.8813352831050397, + 0.8446112115853853, + 0.8544104860827376, + 0.5730035344025114, + 0.5825191331754718, + 0.6954708983237449, + 0.8114299311452318, + 0.8358331344727309, + 0.7636703026155184, + 0.8661342665549931, + 0.7186490720670725, + 0.6377754344792902, + 0.87121343492406, + 0.7598143982251376, + 0.5140108440751598, + 0.7506965663047431, + 0.707768958032514, + 0.8709256524936406, + 0.716785625379905, + 0.7375862486804634, + 0.6422528383837219, + 0.45397347858849213, + 0.6721821954915405, + 0.7865873145801981, + 0.7748765826727445, + 0.8285639382557264, + 0.8901248969117241, + 0.7360144121901289, + 0.5837675209125761, + 0.6291134746597157, + 0.6458979865992412, + 0.7111966091605643, + 0.6891474368672701, + 0.3792984322479819, + 0.7759331129903415, + 0.5733884285685361, + 1.0, + 0.6223580529395292, + 0.5272130446075419, + 0.3036597016958552, + 0.7070223770228593, + 0.610143487199697, + 0.5676556136431353, + 0.6540970819066878, + 0.921174139289362, + 0.8128187701753766, + 0.5920674242875118, + 0.7391767160220833, + 0.6100453262860268, + 0.8459417903887846, + 0.5876663937194877, + 0.23774321781240562, + 0.8017706414336907, + 0.7171139191302504, + 0.7278454612370556 + ], + [ + 0.6622575483550658, + 0.45003519330858793, + 0.621424796524844, + 0.6480131507647731, + 0.7029675931652037, + 0.7126240135387575, + 0.5381333550616539, + 0.6858225113237392, + 0.38636148411822313, + 0.6668994072910991, + 0.5404896852567012, + 0.4877395726211913, + 0.6478578399142013, + 0.5716415590372659, + 0.7155204707700878, + 0.4734450913740467, + 0.4132917091692657, + 0.6830511762850229, + 0.6289052472933846, + 0.6593605022818931, + 0.8102793309212213, + 0.6073669303393892, + 0.7366469287498306, + 0.6529506627802282, + 0.31154019477801537, + 0.561263555829749, + 0.7616085940345995, + 0.6715129849641794, + 0.5986835430561985, + 0.31382357087407914, + 0.5555326942701907, + 0.5144447405079687, + 0.7248050023517714, + 0.7289215388895911, + 0.8581045363983334, + 0.642195477333296, + 0.7777326905703507, + 0.2935881766134217, + 0.4114064449940332, + 0.6828257753414416, + 0.5917574357992293, + 0.5186553217947946, + 0.33945430321010345, + 0.88856967345433, + 0.8340421398648936, + 0.7097557042752418, + 0.8581049759873521, + 0.6663922654907455, + 0.8484624721706665, + 0.8162699060471013, + 0.7811913029506056, + 0.5634190224420002, + 0.5469505622804247, + 0.4793094521551165, + 0.35161900431213583, + 0.4654878780167113, + 0.5863626324734447, + 0.7136101311558166, + 0.48238902259272537, + 0.8172351610822401, + 0.4038124583372326, + 0.7935988458074599, + 0.3979685450944605, + 0.6044399472637589, + 0.6885085141071629, + 0.5556415913491556, + 0.7365512494461074, + 0.9039735921754994, + 0.6984245422907364, + 0.5939018035858841, + 0.722151838677688, + 0.5246755513501452, + 0.6084720045102885, + 0.6403595147272454, + 0.8155283445878225, + 0.868019853181183, + 0.8730897399242572, + 0.6120753258487218, + 0.5513337803089841, + 0.676346497864931, + 0.6427890128141798, + 0.5588154796338919, + 0.6547443576791216, + 0.8070500063587357, + 0.6137166658752826, + 0.6342553420860942, + 0.6290090003158313, + 0.5795625744413638, + 0.5908812130430389, + 0.53456688334247, + 0.7869672491635159, + 0.8776366953537759, + 0.8205719814953472, + 0.8227233698486643, + 0.799074157021355, + 0.5683398806450028, + 0.4869951622553703, + 0.6452479304091487, + 0.8835341687795113, + 0.6774272528424174, + 0.7905426062074549, + 0.661267577782974, + 0.5420691167192857, + 0.7348935594989763, + 0.8322760787136838, + 0.6492578870773216, + 0.6633694117671228, + 0.8294696550607306, + 0.7190130169644626, + 0.8652225616493139, + 0.8516711315815579, + 0.7172073942304995, + 0.6861097439518287, + 0.6809267454771885, + 0.7140572185738451, + 0.7176814837599035, + 0.7687536047880584, + 0.7803794047591299, + 0.6781932507557962, + 0.8834195867263432, + 0.7447730802024849, + 0.8070111733372177, + 0.7462172589845588, + 0.5268678520729289, + 0.5743001152870952, + 0.654411412958129, + 0.48076865907679583, + 0.8379827929614659, + 0.5449170610463011, + 0.807727824417918, + 0.6306956573180917, + 0.5683685235184552, + 0.4741900057272232, + 0.5984021520420407, + 0.5789076978296032, + 0.7360116818573154, + 0.8287731667679219, + 0.8703892013321087, + 0.732012498358466, + 0.8451623904743791, + 0.7616422491104872, + 0.8281515549991905, + 0.7851911175385631, + 0.7440339049536254, + 0.48053172247073506, + 0.7826603434293775, + 0.7586475623353022, + 0.8458062173759574, + 0.6438582747690652, + 0.7985926643826712, + 0.8051190241317231, + 0.7914350856685847, + 0.7584384946922641, + 0.646490534168306, + 0.9242111693486892, + 0.8488683914897257, + 0.8076844631274365, + 0.7949839596682841, + 0.7514804256569773, + 0.7263517121851041, + 0.8445419355564462, + 0.8916685207899567, + 0.8471421597317317, + 0.9120849029112537, + 0.8364163958156622, + 0.8695405471066845, + 0.894989345646988, + 0.8093865356118262, + 0.8595186131087598, + 0.8288882220969661, + 0.9191006923448678, + 0.8938530196726171, + 0.6369368356129044, + 0.5490233523351614, + 0.8617139515871568, + 0.5843742048048902, + 0.8368726005256912, + 0.8278720193831393, + 0.6386178090305575, + 0.8404799350782315, + 0.5216107885810927, + 0.8575106332661877, + 0.8585208437257029, + 0.8802440045610562, + 0.8238711223012568, + 0.8812753159346844, + 0.8845214491294304, + 0.7351720627529666, + 0.745728442051706, + 0.7503894595483008, + 0.7657718058360902, + 0.8449047611111881, + 0.8287452180481998, + 0.7988749205813842, + 0.7782680016765907, + 0.885132574008295, + 0.8043486434015915, + 0.8790494983346279, + 0.7909980929059647, + 0.6433454920470615, + 0.8666940033234367, + 0.47869297744486744, + 0.6442174058810387, + 0.8235976449541242, + 0.9160277711257511, + 0.8808065402742091, + 0.6459823324524852, + 0.7076820189891229, + 0.6804741302967305, + 0.8638821416046352, + 0.9474248752016511, + 0.8116022106600171, + 0.8064205744999906, + 0.7789905908151267, + 0.8302451886795301, + 0.5406207065843962, + 0.710600203864939, + 0.8855181165283103, + 0.8183986672490744, + 0.8665860880822676, + 0.7478954417408343, + 0.7651483753786558, + 0.8667445260419293, + 0.8282984481499622, + 0.7215182894876297, + 0.6955167756082851, + 0.7738011993329897, + 0.8626593010381093, + 0.6463496290350939, + 0.8119840556490145, + 0.8464553391787762, + 0.891627538731058, + 0.8341214510570394, + 0.8173844015406402, + 0.8766975691156393, + 0.45971185815171944, + 0.4453755446908347, + 0.6740346367324282, + 0.7636670463796182, + 0.8509084154651086, + 0.628986383706368, + 0.7441905323775204, + 0.6851431365564049, + 0.6223580529395292, + 1.0, + 0.45203315685909423, + 0.5387433727027946, + 0.6237804946533317, + 0.7749600108568352, + 0.6770259237032863, + 0.7087950975093181, + 0.6160375899103225, + 0.5598166583710517, + 0.43295578190140865, + 0.5166971338991266, + 0.5868933447439557, + 0.839913801491391, + 0.4542529180818328, + 0.5169784343732587, + 0.8088398448667229, + 0.8619442880887469, + 0.7325399723630447 + ], + [ + 0.7975706585910677, + 0.5188484517524409, + 0.40911918542691733, + 0.5778867259550221, + 0.725529924564441, + 0.5631018035645087, + 0.4477934574866889, + 0.7172056301610861, + 0.7658899421271653, + 0.5004584661592549, + 0.5128874397248349, + 0.7083071467534406, + 0.6218090457719032, + 0.7998172542773003, + 0.7205135689062431, + 0.8572513540252248, + 0.7687024004715215, + 0.661381058213787, + 0.8215742252781997, + 0.4265773663246917, + 0.7583394271144448, + 0.8209586917690376, + 0.5014946208454837, + 0.6008910319042495, + 0.8874325415819644, + 0.8109545126086284, + 0.4460258563916788, + 0.6394585462678101, + 0.7095481541451658, + 0.8297149056902935, + 0.848082040219145, + 0.6133308566430764, + 0.7383847045193289, + 0.6700024341228787, + 0.4870073069107142, + 0.8811252002433169, + 0.6966574628141202, + 0.5398902824903954, + 0.8911129432963215, + 0.851812349862565, + 0.6326822389472916, + 0.5853996280076964, + 0.5469578230884506, + 0.5287804338035514, + 0.4889485625351403, + 0.44198248624602754, + 0.7214342712865776, + 0.5839908056786548, + 0.5241501494376998, + 0.7466339068639526, + 0.7546146599473236, + 0.7120427096382538, + 0.8195281147956467, + 0.8363984948392975, + 0.9217667558518685, + 0.9060803473474427, + 0.8890369617368903, + 0.8327495977788626, + 0.38745760742512886, + 0.6883102827054437, + 0.8985458888774874, + 0.7541431042131437, + 0.8495726591562889, + 0.8892607244914393, + 0.41266593768030574, + 0.44215697558838063, + 0.6891536385302108, + 0.5547588683731354, + 0.5407450444100126, + 0.6798083322263829, + 0.6138979563669602, + 0.5763705830014743, + 0.6361193277942166, + 0.863318939602972, + 0.6264432916833419, + 0.6049101199264169, + 0.5478689540029177, + 0.6956288998344426, + 0.7648192858824464, + 0.7841940867101894, + 0.6525258109154829, + 0.513653938249325, + 0.6940712528720336, + 0.7102654690462635, + 0.7988594340023509, + 0.7697484702802714, + 0.7643788785850423, + 0.5795216223972707, + 0.5587699077544607, + 0.648302133446647, + 0.6670178408380744, + 0.5165137758254209, + 0.3504660097899938, + 0.6130495496221201, + 0.5372898136659933, + 0.8994175823480789, + 0.7289700418331769, + 0.7577907807829133, + 0.46967537800558534, + 0.5392921921359695, + 0.6003813416688358, + 0.8901460890360424, + 0.8198253371250115, + 0.7348526282404646, + 0.6315884594230733, + 0.4571223830799136, + 0.6428834415064305, + 0.708219268363738, + 0.6249987721932365, + 0.5605756066488321, + 0.7027172369394599, + 0.6288213772715324, + 0.707707823781287, + 0.7884741017849092, + 0.8453152225427844, + 0.7089945043403232, + 0.7803549888209018, + 0.7209911182286439, + 0.4976918178366265, + 0.5908594019019134, + 0.6149733771810857, + 0.7073268288601046, + 0.7592337063977824, + 0.8727019060710264, + 0.7713396016675658, + 0.7044098712274277, + 0.482909841316118, + 0.5775668700343634, + 0.47408266546905137, + 0.5863440337962644, + 0.715146337490878, + 0.6907997018064618, + 0.676092519570927, + 0.6793810452697919, + 0.3929763161232011, + 0.8218414487710297, + 0.766986711355723, + 0.46850515627775935, + 0.5725659770905629, + 0.6905117614167453, + 0.8430689871293032, + 0.6357698236779572, + 0.7102965015276053, + 0.6910940030971132, + 0.5162743956645666, + 0.546801812588195, + 0.5235244615078971, + 0.47070054402254935, + 0.539602578830427, + 0.6088927565523384, + 0.805166354944071, + 0.8108986419557693, + 0.7838712847125733, + 0.6992036887187442, + 0.541403374067062, + 0.6585299724994095, + 0.6189924043377816, + 0.7381098314168274, + 0.8008122069828518, + 0.8675491187426188, + 0.7046003080931804, + 0.6925537271110572, + 0.6330548776337851, + 0.4785237504653242, + 0.6141162536441397, + 0.6518734048168423, + 0.617054624453711, + 0.7905909350222199, + 0.7501744516567797, + 0.6925610083981232, + 0.5869102209939062, + 0.641613161434732, + 0.6227700493366986, + 0.5799996277618188, + 0.72383628802647, + 0.6939664916305686, + 0.7544376867217378, + 0.4341141012313527, + 0.6902491604942986, + 0.7680259148738483, + 0.8551329090896247, + 0.701916425532091, + 0.7157743501113947, + 0.6457651807072686, + 0.5841399279871138, + 0.6431649061075121, + 0.7117619193805125, + 0.7278282477840636, + 0.5929336016057768, + 0.7047587674303915, + 0.7172412080716387, + 0.5500495963390228, + 0.7034224862244162, + 0.6914240949927297, + 0.662299150360701, + 0.37808193683919955, + 0.6545788975703559, + 0.6658755375543799, + 0.5260662779298764, + 0.7320541776163453, + 0.6657997606495523, + 0.7356573132937126, + 0.8030633728191695, + 0.5504273872254517, + 0.6085717053717798, + 0.6614395713799586, + 0.7019446011525633, + 0.6303921959062709, + 0.49417901724050656, + 0.5810209290856768, + 0.46334244604835656, + 0.676957480268795, + 0.6306751535062239, + 0.7109915191609091, + 0.49574337998354173, + 0.5276094084908132, + 0.5769489729980277, + 0.6762356376597857, + 0.6272864201248306, + 0.6480426186250337, + 0.3557546387668242, + 0.5437288886097649, + 0.5945118452957595, + 0.786284636488081, + 0.7628934191966306, + 0.6959041155824811, + 0.5722457142525854, + 0.5810412572452988, + 0.5638880956144234, + 0.6847646653957475, + 0.7394980354863072, + 0.5386031686927429, + 0.709161586187811, + 0.615586009989865, + 0.6164804198236474, + 0.5700486164118336, + 0.5888589437659739, + 0.6927400267253597, + 0.8501685381099962, + 0.7286779162826506, + 0.7333873372454064, + 0.6260671055768655, + 0.426762984140239, + 0.5272130446075419, + 0.45203315685909423, + 1.0, + 0.543427852352645, + 0.7020729745137266, + 0.5886661341076033, + 0.5078809950948082, + 0.6106953712987034, + 0.3560487929391792, + 0.6051052050557758, + 0.5760440991843939, + 0.65497911832126, + 0.7844939562046448, + 0.5550183261528067, + 0.8203041996570567, + 0.5489416887001183, + 0.764106941266852, + 0.49843714945431, + 0.4941905833486753 + ], + [ + 0.8242800899618076, + 0.6729514944308213, + 0.7397214047328218, + 0.4137272953081984, + 0.6495508793634018, + 0.5992237169444542, + 0.7587950329004663, + 0.8379235643276295, + 0.7800947524783652, + 0.7598944308352643, + 0.8663630578678716, + 0.5347416288378127, + 0.6026791611307996, + 0.49040293294904164, + 0.6960563679992158, + 0.570399718279022, + 0.8185591374863281, + 0.7892311681205051, + 0.62523316434128, + 0.7251188458041736, + 0.7708442483217661, + 0.5564033023611399, + 0.7143146106323313, + 0.7824581322755718, + 0.5774311149928595, + 0.636306932376169, + 0.645693665659092, + 0.7153649204988727, + 0.7057657885974408, + 0.5455914513097009, + 0.7447993449166619, + 0.7089038291966061, + 0.6639461099285859, + 0.7349701862222981, + 0.6423039407582802, + 0.7448686829073058, + 0.7856069593708215, + 0.06314330390219165, + 0.6386347981650529, + 0.6978411399190843, + 0.730233665740818, + 0.5038761996354909, + 0.2298893206840223, + 0.44872059834675476, + 0.608922107697083, + 0.6659093880065688, + 0.7558237394518722, + 0.8185867097282509, + 0.5342299264293503, + 0.5479122503418494, + 0.7047127330232857, + 0.3605131039392809, + 0.5809055746283631, + 0.7458543476313578, + 0.6603418651499614, + 0.7128888217739959, + 0.7647879440490136, + 0.6255522748634484, + 0.23744519182630183, + 0.6048380113780537, + 0.6940905120716132, + 0.6345804776532645, + 0.7251442462535166, + 0.6877103600805013, + 0.6628388095059078, + 0.6192542601798866, + 0.6018142004746374, + 0.6101259001768774, + 0.7692247984953061, + 0.819938641816089, + 0.6962789009468651, + 0.5272666327980536, + 0.7381801234584846, + 0.746800933307988, + 0.6190565850498764, + 0.5872534077255835, + 0.5781101900900951, + 0.3518664842169768, + 0.8651832468526076, + 0.49280700172009606, + 0.7939919153431468, + 0.2720404275533117, + 0.5522116297772113, + 0.4607148553471574, + 0.7454792205497012, + 0.7848906968274545, + 0.6987908862691955, + 0.5679994844810791, + 0.3482863940010451, + 0.48495583039833984, + 0.6889041197169774, + 0.7582537774578157, + 0.4684112690766629, + 0.6566853360200213, + 0.6231447222752315, + 0.6044181270410864, + 0.5868104687631335, + 0.5036338362436684, + 0.7985740869578246, + 0.7965564252557525, + 0.6837239435256175, + 0.6776018389293178, + 0.5437628485208856, + 0.5755971061777302, + 0.7457379172158907, + 0.8732880752214089, + 0.5994664358646626, + 0.803859105772745, + 0.49043057379801736, + 0.6590820797575502, + 0.6402946582786944, + 0.6099791891187334, + 0.755121841995164, + 0.7064778519847339, + 0.554384385424297, + 0.5788531514846291, + 0.6984272760404573, + 0.7382855502070427, + 0.5693097177384835, + 0.6101828166316509, + 0.6283483199898166, + 0.48051594951804816, + 0.7221028434546545, + 0.7363516380638807, + 0.5663379189203347, + 0.5714205397405182, + 0.1472655570115413, + 0.6391164532206544, + 0.3862802283587553, + 0.46504506954765007, + 0.6070699581557211, + 0.61645788321889, + 0.5827766740800654, + 0.4683920472781223, + 0.7881856098938955, + 0.7526282230158992, + 0.6981463529114357, + 0.5057539956331051, + 0.4697936922982365, + 0.6118227653849423, + 0.6385370198983966, + 0.6490191646139936, + 0.6527868572427519, + 0.7140500093802602, + 0.2904595741896903, + 0.7428005055417766, + 0.41615269360246276, + 0.35918023557269735, + 0.32521128674631467, + 0.6614432072977532, + 0.7335051420298528, + 0.7050740765883742, + 0.7486604935509538, + 0.7394002788520433, + 0.561740067170959, + 0.5647272343100078, + 0.48993338087576355, + 0.7060138252262197, + 0.8076569433416315, + 0.728886035725222, + 0.7101945608175674, + 0.6690691235970769, + 0.7571207734780563, + 0.659632838037926, + 0.6906926822147825, + 0.5441487361574592, + 0.6365948094240153, + 0.6347677843604872, + 0.6437072422598018, + 0.6193552923435821, + 0.6493225667044149, + 0.6720261676947935, + 0.6228194203431247, + 0.42258702742902776, + 0.5792034939196611, + 0.44203311217688285, + 0.6197608682674904, + 0.3615776386981142, + 0.8601633128418099, + 0.6462186087477901, + 0.5048440322799894, + 0.6194381180555153, + 0.6190431282111164, + 0.6763573514832095, + 0.627702950822903, + 0.7094627225946077, + 0.6231684769863085, + 0.7295983813279346, + 0.5749148477458328, + 0.6896865930015113, + 0.572861101129939, + 0.5282904109717171, + 0.4873280193874091, + 0.6134143699973718, + 0.4119053363518108, + 0.62283184731108, + 0.7824750164904617, + 0.6482563698624393, + 0.3856934981730191, + 0.39054365483396425, + 0.717019456395999, + 0.5664645526109305, + 0.6209873708281264, + 0.4196490691211513, + 0.5656648413073146, + 0.6322701825042765, + 0.5676312247963744, + 0.4841488842767125, + 0.3712486431196835, + 0.46969564859385304, + 0.6920615766604056, + 0.6236771663278575, + 0.6787715673290908, + 0.7469065461809389, + 0.5015389623670465, + 0.1875910718177515, + 0.37520511845247834, + 0.6582165549662834, + 0.6940109736501946, + 0.4941487725025816, + 0.5200096573664728, + 0.33984233427647575, + 0.4710722585052438, + 0.6786523102541738, + 0.4563465300962231, + 0.5106599150614675, + 0.4609777927554031, + 0.6607223790030615, + 0.8950823731306584, + 0.7761419697544363, + 0.6223759629050066, + 0.6295793612362424, + 0.6326179581142112, + 0.4765686836848572, + 0.6223743396383474, + 0.2552474384879426, + 0.13223219296344116, + 0.5044138099091756, + 0.63418452434207, + 0.5665796336327554, + 0.7605222831608258, + 0.39810522328216436, + 0.5554020726346263, + 0.3036597016958552, + 0.5387433727027946, + 0.543427852352645, + 1.0, + 0.18904213194947053, + 0.47266618175560915, + 0.7756374723131844, + 0.37491687109110255, + 0.2619848847346505, + 0.43535035386192233, + 0.6889196881706602, + 0.5032598378600982, + 0.6967720071182502, + 0.5088230693985216, + 0.38623033257485345, + 0.9054414153485869, + 0.6662479919277203, + 0.6342649677225117, + 0.525669368721247 + ], + [ + 0.47584971965266787, + 0.18281265429068405, + 0.18337381608583728, + 0.5728105774908322, + 0.6560582807535903, + 0.421743081770098, + 0.17380391634034384, + 0.5275839245662213, + 0.37241748606065833, + 0.41537049529886155, + 0.291187311355321, + 0.5014932474673454, + 0.3991776566290828, + 0.6684820097568425, + 0.58176384802955, + 0.6249400521336285, + 0.42410208906813857, + 0.3779936027491236, + 0.631000435854679, + 0.3202323014319943, + 0.580159628236459, + 0.6650018054479151, + 0.4556279462588303, + 0.3938887136900542, + 0.5319757051291834, + 0.5893943314822724, + 0.46645311649117877, + 0.4838583725402096, + 0.4871830282770418, + 0.4945750819564372, + 0.5482505573560468, + 0.452798665819722, + 0.5609982694853659, + 0.515960328233709, + 0.46056933382596243, + 0.6792602942768597, + 0.5836878529064501, + 0.5753449017071983, + 0.5229536196073502, + 0.7529077234804282, + 0.3991291361507935, + 0.4344648429428838, + 0.4767393431354547, + 0.5788529930299907, + 0.48101986135235575, + 0.5170531020198815, + 0.710733963557512, + 0.4158758527079102, + 0.5670877717882025, + 0.8538630022412913, + 0.5484394056940954, + 0.605184357437031, + 0.6155880864656582, + 0.5108965942053323, + 0.5827642879363533, + 0.5792820909966794, + 0.583171022723534, + 0.7279423263356931, + 0.571558291351487, + 0.6792290539142368, + 0.5121424391089344, + 0.7321775437847365, + 0.46284889233455595, + 0.6773592527350744, + 0.3236038890598399, + 0.38008492412572015, + 0.5841278025796286, + 0.6072015116042369, + 0.3368444151015652, + 0.4187688918271832, + 0.5458131592918172, + 0.4290331974251001, + 0.4222531886314116, + 0.648837330741575, + 0.5872741477715128, + 0.6464305426200013, + 0.6238170845838752, + 0.6535871046500483, + 0.3687948054972507, + 0.7293207830326287, + 0.36827589082329004, + 0.6169742158226895, + 0.6506945695392998, + 0.7762981490910433, + 0.6171772366935078, + 0.5403405146707286, + 0.5480830712460293, + 0.5318195562078645, + 0.6424466170764288, + 0.5510506888559858, + 0.5377822317835044, + 0.4570085448194313, + 0.5334050499883246, + 0.5733948283517066, + 0.582100061136134, + 0.7167056979504617, + 0.5284013873650768, + 0.7678613061511558, + 0.39757239025560925, + 0.3199836665986887, + 0.5640904935899697, + 0.7214444153990953, + 0.6832957951625227, + 0.7360156618163628, + 0.5413416233225327, + 0.22326461800993408, + 0.5541171503745695, + 0.6016466270708599, + 0.7508269151233207, + 0.6380800848759368, + 0.7626106949467627, + 0.5992808946908897, + 0.5131172679235227, + 0.52886858695872, + 0.7779602174376611, + 0.6221801902050201, + 0.7502057257895446, + 0.541858753623389, + 0.5204232981077409, + 0.5949207910209375, + 0.6174288674662568, + 0.7647805807842121, + 0.700109904484747, + 0.5480951440317899, + 0.6273596724584009, + 0.7007634338132794, + 0.6659662122676984, + 0.5488792859695723, + 0.5282159779655473, + 0.615750155504422, + 0.5998386676301412, + 0.6213900580210209, + 0.5332928599540845, + 0.7054748044835147, + 0.17391407100081563, + 0.6754055167385268, + 0.7328892896872545, + 0.5099640593968409, + 0.8212279962116315, + 0.7584211080341964, + 0.7452707794931536, + 0.6347445134093237, + 0.7252096353796768, + 0.6736825767236932, + 0.5113876176645211, + 0.42724416360264583, + 0.6649957806047926, + 0.8169803154496844, + 0.8104273718957021, + 0.6118278373506022, + 0.7038028332409755, + 0.7718102712658655, + 0.6948827821815183, + 0.46486405766479016, + 0.6285310889939222, + 0.7641452839251448, + 0.8342041278148374, + 0.6943014181888916, + 0.6149358574973771, + 0.7034200265692634, + 0.6746782120433825, + 0.7672836633318014, + 0.5683604558981826, + 0.5775525874209763, + 0.5760935779723977, + 0.6669184382774389, + 0.685649734201532, + 0.7564470051696943, + 0.7488354875064719, + 0.7074599626248115, + 0.6794523297879133, + 0.7016304837472007, + 0.5718103967756245, + 0.5236018191995087, + 0.7244508317730348, + 0.8179369678676108, + 0.8247815029149287, + 0.7210680108619707, + 0.4426256162430846, + 0.7675011797041593, + 0.6803136448763292, + 0.7174892844060027, + 0.7893512393452445, + 0.6456294739111585, + 0.6021969179275823, + 0.5689877287972237, + 0.6815988287098838, + 0.5672442034064646, + 0.6165177050272019, + 0.5225110543822314, + 0.7011631039398057, + 0.5962131326091745, + 0.7118297327819405, + 0.6846298324659543, + 0.8380742544031551, + 0.49912489366602764, + 0.5754020328353856, + 0.7015007904894222, + 0.7201686379540071, + 0.7114582598470894, + 0.740805133129771, + 0.6102309848784082, + 0.7356828451905911, + 0.8032630873830394, + 0.6957167590313801, + 0.6304344859801292, + 0.5814979261964042, + 0.6582801936222358, + 0.6776893800712177, + 0.7190769748004818, + 0.5465965616720581, + 0.7862417350320197, + 0.6657415418634137, + 0.6671237078405702, + 0.6592171716126497, + 0.5830098338025029, + 0.6559768319538475, + 0.701359413576412, + 0.6642472471881089, + 0.7518319144769016, + 0.5075095653563082, + 0.8605228043140868, + 0.7226594988757601, + 0.7452480431567355, + 0.825902945373458, + 0.5916438239263857, + 0.7199399624521046, + 0.6048440209892129, + 0.34221802383950145, + 0.5541414164503586, + 0.7720970453340799, + 0.594186109669973, + 0.693736486026883, + 0.7119119165496212, + 0.6291929108766839, + 0.6030936633044331, + 0.6319534794469182, + 0.8294019833483646, + 0.7885744510158731, + 0.7236677244211758, + 0.43154026873139006, + 0.7629514553190723, + 0.4518222493652209, + 0.7070223770228593, + 0.6237804946533317, + 0.7020729745137266, + 0.18904213194947053, + 1.0, + 0.8532028882512983, + 0.4165053151712953, + 0.8480042359377251, + 0.6118611553483885, + 0.5349227945839078, + 0.3094364259987791, + 0.5734074314004602, + 0.5443439241820734, + 0.7284059061709658, + 0.7762257083799076, + 0.18889293702526885, + 0.7306396642015242, + 0.5344410909407172, + 0.535422512509354 + ], + [ + 0.5945928458310511, + 0.2041201436968588, + 0.26719844026087386, + 0.4812919487318704, + 0.7076254628289279, + 0.49422156751857843, + 0.27676120841326207, + 0.6089525417514806, + 0.36096481413150655, + 0.5072439145891273, + 0.4643904594596717, + 0.4020216718178133, + 0.36020408248724084, + 0.6219452489059847, + 0.5355181572877223, + 0.5421996526419007, + 0.4681790588929858, + 0.4393687663154778, + 0.6157196559059346, + 0.4150158137813592, + 0.6336834111323185, + 0.6470210075542331, + 0.536325068903303, + 0.47811666068254616, + 0.3506390264465847, + 0.5388305185479211, + 0.5774006048549042, + 0.48666445893611593, + 0.5600782721799581, + 0.3545164304921871, + 0.5348054953590732, + 0.4564381680364188, + 0.583815680401202, + 0.6760251316008882, + 0.5284063865881148, + 0.7107582876677214, + 0.686750655168587, + 0.4055836438105266, + 0.4097685452748126, + 0.7449353914183429, + 0.44104634636345125, + 0.3682141627614078, + 0.4466622124453429, + 0.6029866191154375, + 0.5411854374560995, + 0.5920043419434584, + 0.8389281005522058, + 0.5334973388026539, + 0.554649440632405, + 0.8786104360582334, + 0.5666563149639909, + 0.42794776264406803, + 0.6221670547866822, + 0.5363829163042583, + 0.577812285766987, + 0.6071538740178636, + 0.6319379853265866, + 0.6896827361197566, + 0.4699692419739825, + 0.7116572764798187, + 0.46590359129944164, + 0.6995064740644595, + 0.3949981690120915, + 0.6581413847737729, + 0.3944420179316023, + 0.4227679933813941, + 0.5604941651215095, + 0.7073858334772049, + 0.5368049331059228, + 0.5729396707422454, + 0.6664504046973294, + 0.3675203585139231, + 0.4122831390101897, + 0.6363331322496011, + 0.5879495255363887, + 0.6785397653066949, + 0.6750202619861987, + 0.5329110578244791, + 0.4666773342071726, + 0.5976710918408307, + 0.5187259101951748, + 0.5662985313200483, + 0.5893381968250362, + 0.7263883854768369, + 0.5897002178312665, + 0.5444012977853799, + 0.49229991809144175, + 0.5257964599404796, + 0.6380160937602981, + 0.5052540873683941, + 0.5298310202977045, + 0.6605701325288447, + 0.6050668116343135, + 0.6388359404139428, + 0.6211571905576868, + 0.6109992225207203, + 0.3795423358530326, + 0.7308765162251334, + 0.6243738321146923, + 0.47183370187213286, + 0.6323500907625929, + 0.6913684729879049, + 0.5323418047537428, + 0.777155832445467, + 0.6448332378710034, + 0.40462594639626387, + 0.6166739568879301, + 0.7209633059663846, + 0.7220236219082996, + 0.7096134132500348, + 0.8693147069017848, + 0.5830809915423943, + 0.518280838527924, + 0.5108820268240031, + 0.6880274385550567, + 0.5638747749064996, + 0.8274562928910361, + 0.5707215414988249, + 0.47502094048562865, + 0.691251822059188, + 0.6675498538320151, + 0.6897182260179702, + 0.7171334210056354, + 0.49259173210839674, + 0.5173612000877473, + 0.6131127189723662, + 0.5312015612460078, + 0.6026902015474256, + 0.40072918813771624, + 0.6133611089824675, + 0.5188016560896223, + 0.5400849713581796, + 0.4447520225210577, + 0.5970214358408639, + 0.3097166819360718, + 0.7179425417884744, + 0.8050702398420542, + 0.5222214725725539, + 0.8504690262281956, + 0.7562172904061862, + 0.7387015519504723, + 0.6452116184842259, + 0.7398920399670689, + 0.7093629261243747, + 0.41749594889555297, + 0.529119260380739, + 0.6363936941345589, + 0.8430462468526102, + 0.7619446985359917, + 0.74819935944669, + 0.8059191641011063, + 0.8555889686942816, + 0.7706225860368325, + 0.5002431334429464, + 0.7071307207024754, + 0.8004148512402284, + 0.9082857149956197, + 0.7551981120249618, + 0.7182535951157255, + 0.7046651573605826, + 0.7523654999415903, + 0.889478458168663, + 0.6666389033234968, + 0.7569322137980757, + 0.6422896395246303, + 0.6515547985408067, + 0.8062822716829947, + 0.7611755501672337, + 0.7996403063963898, + 0.7027317692497642, + 0.792378154175809, + 0.8369592955709926, + 0.5379023129221064, + 0.4452200111397425, + 0.7244005341491475, + 0.8931433961321067, + 0.8884763181163504, + 0.7433805769642017, + 0.5515125440813141, + 0.8190449378720019, + 0.5350415882593682, + 0.7687224325342817, + 0.8771073281320445, + 0.7085541699880663, + 0.6408355319367551, + 0.6346513199427448, + 0.6816859746612841, + 0.5542500682637032, + 0.5885772809780843, + 0.5559170705125089, + 0.639418215873803, + 0.5755451197945385, + 0.6382008743950326, + 0.7057446317697544, + 0.7755458058857982, + 0.682985032304188, + 0.694869782327904, + 0.7784015287671854, + 0.6618143423037045, + 0.6689849495006146, + 0.857304381707348, + 0.46914716388700756, + 0.6969165346118699, + 0.8026114223039386, + 0.7430974337863332, + 0.7214689788249143, + 0.5272948035543341, + 0.5779636744137736, + 0.6864052290913366, + 0.7673483723570992, + 0.7686978102863505, + 0.8623657503797705, + 0.7905628254466582, + 0.7292609798892306, + 0.6432657569417585, + 0.37906156981081796, + 0.5383985553131395, + 0.7571209686482757, + 0.7851702962256434, + 0.7487336307630464, + 0.5467931266134486, + 0.9284331881436259, + 0.7459435525984773, + 0.7967543245883496, + 0.7439968402480819, + 0.5257305906165367, + 0.6890543751034733, + 0.7880734468964806, + 0.5421398041477019, + 0.6274694759811171, + 0.8408658038180072, + 0.655809667691076, + 0.7044800612730451, + 0.6430152030776424, + 0.6866506941334302, + 0.585856986194272, + 0.3788680044174505, + 0.8197612085781092, + 0.7985989223254509, + 0.7581532107972392, + 0.5730265178470562, + 0.7457513002262287, + 0.516152438272718, + 0.610143487199697, + 0.7749600108568352, + 0.5886661341076033, + 0.47266618175560915, + 0.8532028882512983, + 1.0, + 0.5906390398683508, + 0.8161500453365325, + 0.5714276987343282, + 0.4424356687176678, + 0.3109226770316556, + 0.5854138567226702, + 0.46525714076494, + 0.7395432655340587, + 0.5940546964300102, + 0.39767883719826597, + 0.7967214711619098, + 0.6004870126486653, + 0.644363256947844 + ], + [ + 0.8009134544847604, + 0.6572427300548727, + 0.8274471677404974, + 0.5792440672629103, + 0.6845151209263278, + 0.6017822803197137, + 0.5779920477188141, + 0.8337377794748146, + 0.6513969202484888, + 0.752181002755168, + 0.7182160188550066, + 0.66146666661866, + 0.7728147097727699, + 0.4443627782220823, + 0.7245712647869119, + 0.5328004450327695, + 0.6801475090898021, + 0.809749367931669, + 0.6760962444564411, + 0.8334690066804767, + 0.7802014305737267, + 0.5246540136409057, + 0.8415448729314434, + 0.6869042335689095, + 0.5550178067006145, + 0.6916154472046869, + 0.9065855761509072, + 0.8327179778459252, + 0.5846131540227512, + 0.5284409666799679, + 0.7536876244899868, + 0.6551506516848419, + 0.6764711197614662, + 0.6873586578063989, + 0.7672958709456882, + 0.7544595413917679, + 0.826956401019244, + 0.39735645501316663, + 0.6447310172712378, + 0.7978448177528127, + 0.8480450518642328, + 0.6893054936761365, + 0.3948479539663162, + 0.5883433618512579, + 0.7620643976318294, + 0.7684261639307757, + 0.8503486689338176, + 0.8309462925498076, + 0.7360923585043987, + 0.7510774978803948, + 0.6753736057588575, + 0.5092187473548955, + 0.47998381630020026, + 0.6738327514454947, + 0.5421799006533815, + 0.6147484328107261, + 0.6907513559193164, + 0.815446376044499, + 0.4812996495519291, + 0.736875281351163, + 0.540349934791871, + 0.8245731983974545, + 0.6372665710236128, + 0.6087359842195293, + 0.8568243951944089, + 0.7115168532012901, + 0.6497018724250545, + 0.8124979246972648, + 0.7638485063709929, + 0.7919616399516519, + 0.7649312892938164, + 0.544112409369189, + 0.8339812287969219, + 0.8196853738267855, + 0.7209480462725867, + 0.8076677474239253, + 0.8204911313924272, + 0.6214449695636511, + 0.8057766263056594, + 0.7694945408923196, + 0.7365563438993037, + 0.3294700568448548, + 0.701829205688793, + 0.7387412664693811, + 0.8058802391160784, + 0.804141404722585, + 0.777433174909463, + 0.604707846220934, + 0.45302753804453244, + 0.6356709179633054, + 0.7989410339886696, + 0.851975429134552, + 0.7748369895940896, + 0.807052649023856, + 0.8182478388707063, + 0.6559354346254218, + 0.6849220831197425, + 0.6169119595744799, + 0.7944099338805315, + 0.7610542387456962, + 0.8816917317217938, + 0.6808248340146431, + 0.695157570380777, + 0.6490392993082273, + 0.8714224217549611, + 0.7239209059167001, + 0.7012439983163083, + 0.860000358798069, + 0.6497591823801597, + 0.8897584616428634, + 0.8075815029366374, + 0.6765267737396831, + 0.8368393375878983, + 0.7764981370804716, + 0.7311896044676771, + 0.7680480878595853, + 0.8455420808518151, + 0.8225593115445432, + 0.6629361934785736, + 0.7659886813098483, + 0.8522619151361195, + 0.7185924075849504, + 0.8301045899167234, + 0.6191334999341921, + 0.7325265493158155, + 0.6703999525266194, + 0.3052468988777742, + 0.7906472511193916, + 0.6246318289702272, + 0.695560795644216, + 0.6614473407202036, + 0.6433908509931423, + 0.5118658268356506, + 0.5306514308268988, + 0.7374712628873712, + 0.8283494081937448, + 0.7553802141797022, + 0.6991070576200044, + 0.7240119764492082, + 0.7778711630954568, + 0.7389525678494888, + 0.8483803525960694, + 0.8255476249107248, + 0.8223988368600433, + 0.44238710520255875, + 0.8043207238390769, + 0.7120771485543566, + 0.6167491249906137, + 0.5018293960276229, + 0.8497322643607687, + 0.8231751598630104, + 0.7663180547550528, + 0.8789926712742906, + 0.7836951752702587, + 0.7147153858501865, + 0.7990650378354278, + 0.7015534701131744, + 0.7711916955478809, + 0.7351346341625742, + 0.7927407784914058, + 0.8426405287414228, + 0.771790060014493, + 0.8237576739514006, + 0.8469116317648732, + 0.8712927880880551, + 0.7716523459839252, + 0.8319922696507233, + 0.7421892540655931, + 0.7850915435877031, + 0.8017907813965628, + 0.785315026576677, + 0.8099360123469872, + 0.6513663135528199, + 0.7554830193515333, + 0.7622279532577613, + 0.4800073159503863, + 0.7354473818373326, + 0.7432371005889713, + 0.8095940137040787, + 0.7179897339476807, + 0.5263505480775538, + 0.7803863804125943, + 0.7739369327973445, + 0.8675198438149944, + 0.8135034675615294, + 0.7861325582078383, + 0.7025680205822559, + 0.8233369126680337, + 0.7126725640888836, + 0.8030231382517242, + 0.795181520678059, + 0.8019449719438442, + 0.7185419921028815, + 0.8330680985346987, + 0.7540036562776995, + 0.738557256369779, + 0.8587779762918687, + 0.7772630209076064, + 0.7841525645511519, + 0.5384312512508532, + 0.8328309185702262, + 0.6084436533776851, + 0.7088630002321717, + 0.7716531502397752, + 0.7959696243806369, + 0.8407323156075857, + 0.8219178847668893, + 0.7648360106445478, + 0.473297453581171, + 0.7486191574326385, + 0.802948417643067, + 0.7922283961124656, + 0.9007485986093048, + 0.8229538344033644, + 0.7870404987180799, + 0.44480076702261867, + 0.6672583698081982, + 0.8178468221860186, + 0.8783959421735889, + 0.7510087274447299, + 0.8316495230104245, + 0.5249511627015093, + 0.7976007628441271, + 0.7845522275362002, + 0.6080868388766909, + 0.6548461546066611, + 0.8350725640866901, + 0.8843647906204655, + 0.660013960099019, + 0.8448595597268498, + 0.7739419859851142, + 0.8452362050008084, + 0.8285073379961327, + 0.7327746071384147, + 0.8434079276125733, + 0.5014134318105143, + 0.42053853781534023, + 0.788804026692064, + 0.8103379778274771, + 0.7998979457948624, + 0.5899522768281352, + 0.7981369883440895, + 0.89782389047592, + 0.5676556136431353, + 0.6770259237032863, + 0.5078809950948082, + 0.7756374723131844, + 0.4165053151712953, + 0.5906390398683508, + 1.0, + 0.6526706192059711, + 0.43308603267663415, + 0.6391692322406327, + 0.7316897785865079, + 0.5772442624317405, + 0.7665335973358026, + 0.7690852425944095, + 0.4565622621716682, + 0.6161489685469108, + 0.7643439449161502, + 0.7920124435631087, + 0.5860127510635864 + ], + [ + 0.5762640798052169, + 0.3654430865482873, + 0.39465360894525153, + 0.5713998123732807, + 0.628519795210598, + 0.38487019894275226, + 0.27366454148764635, + 0.6309771812406696, + 0.4443735347331532, + 0.6181537247330535, + 0.5000235465616047, + 0.5251769918227405, + 0.4998742699985345, + 0.5342261432499666, + 0.5988272906009117, + 0.48474057950433347, + 0.4450478217092514, + 0.541247186390033, + 0.605786596689617, + 0.5442357841873756, + 0.6492329164136019, + 0.5499334676501462, + 0.6000595195653006, + 0.48753127667231994, + 0.4969891154532211, + 0.5351151750889497, + 0.6409140773980705, + 0.6330355205285367, + 0.4211320514291151, + 0.44613089056298055, + 0.5457699251071344, + 0.48843989460050286, + 0.5959979366933408, + 0.5126893559811169, + 0.5687578817628268, + 0.6582144510881751, + 0.7497375226858106, + 0.55057893571484, + 0.48978084953019163, + 0.7804498807044901, + 0.4801357421164934, + 0.33955771961666953, + 0.35705052498327433, + 0.5926622208100338, + 0.5040632208674676, + 0.7020355975359686, + 0.7912058572924363, + 0.5839906104448076, + 0.6767728591689053, + 0.9256544652652832, + 0.6507236420739939, + 0.4936819142168277, + 0.4704456182709774, + 0.528871211471067, + 0.5162211493053617, + 0.5187488266885714, + 0.5624316417335747, + 0.7409474566200871, + 0.418506629606878, + 0.7978076939362073, + 0.46758202241846086, + 0.7821244070539661, + 0.4149981797664853, + 0.5611396454041325, + 0.5351454243383101, + 0.4770612360039059, + 0.5382462762009577, + 0.6957035275261066, + 0.5574581013136137, + 0.592455840392934, + 0.6798251681618257, + 0.41701571546862726, + 0.5796566427507999, + 0.7098878435171583, + 0.6391054549707398, + 0.6688182515851355, + 0.6427325649835489, + 0.5847325917350514, + 0.48000635590260554, + 0.7408870426315117, + 0.5046681161550789, + 0.44636285912407253, + 0.7965527669712539, + 0.731660278076045, + 0.6951100320833478, + 0.671261882896842, + 0.637237320423328, + 0.4831020429336612, + 0.5243624340329285, + 0.44904838214209625, + 0.6031647580315633, + 0.6179077860421758, + 0.6628073565668947, + 0.6505985710176758, + 0.7152498830610581, + 0.5977351890088064, + 0.6211243486578725, + 0.6848442964241781, + 0.5810588131849633, + 0.5293218498391511, + 0.7132153133393904, + 0.6390215833905567, + 0.6628757939885553, + 0.6513914191318427, + 0.6499029092688781, + 0.39778559434733346, + 0.5512745357112618, + 0.7472951646176575, + 0.7111982247292253, + 0.7476691539007793, + 0.8467868383567402, + 0.6115124766168292, + 0.6087859459944149, + 0.5710328919859694, + 0.7467309096674019, + 0.6680811404901555, + 0.8124208167631909, + 0.6418062292010546, + 0.6066162732804524, + 0.6597983672957367, + 0.704533865525953, + 0.7690704287010188, + 0.7934561771798487, + 0.5870546804120775, + 0.6531341390137935, + 0.7511246194336406, + 0.5446383526799857, + 0.6399943363624213, + 0.5684906613705613, + 0.6056180134625624, + 0.6034221556044204, + 0.6413754781920434, + 0.5095339014899417, + 0.6160098519869333, + 0.31834024675456724, + 0.7372453076794293, + 0.7599333182362725, + 0.6053074098131607, + 0.9102497782702463, + 0.7507078603770678, + 0.6904087699990366, + 0.7647106294964461, + 0.7275297079194171, + 0.7713865717475481, + 0.4512035833932547, + 0.537023322675332, + 0.7054951551986806, + 0.8663336150029133, + 0.8105431044433801, + 0.8033436409519137, + 0.7397391882724176, + 0.8031638171609574, + 0.764063568101735, + 0.6431382240936906, + 0.6558058620904583, + 0.7939305004564546, + 0.919000842943772, + 0.7473635494366, + 0.70601429360994, + 0.7370591504915015, + 0.8120211054701301, + 0.8367439057564093, + 0.6925993401839137, + 0.7531315025103592, + 0.7045751702251692, + 0.7580455674837117, + 0.8343016006790867, + 0.7395442902764927, + 0.7647174987706156, + 0.7452347606173918, + 0.741422247177057, + 0.7634700490696845, + 0.5005621889168433, + 0.4848111644774753, + 0.7237790157050652, + 0.7503027472373842, + 0.8481359115542376, + 0.7841205274616613, + 0.6347123150006726, + 0.7419556060283407, + 0.5420179467257992, + 0.7338259575898065, + 0.8358005286552689, + 0.7478079424704858, + 0.7496190773126299, + 0.6017520653524386, + 0.6728666715871062, + 0.6791765639035099, + 0.6390644486648308, + 0.6065331004129996, + 0.7629762991271529, + 0.7095200729178646, + 0.7124052699766702, + 0.7342412414397305, + 0.880633980196858, + 0.6045515849176568, + 0.6790886331271252, + 0.7637503413174606, + 0.7814270448446506, + 0.49481681912943337, + 0.8239874600991047, + 0.6558035555819274, + 0.6730561794450731, + 0.8715972000140231, + 0.7890955673816105, + 0.6835873388038678, + 0.5681525467711372, + 0.6837932729812726, + 0.5914888969132831, + 0.7314163297750886, + 0.6995978144410299, + 0.8486668791019528, + 0.8291963447690748, + 0.727283809790688, + 0.7624859305806859, + 0.36931257185919475, + 0.7073502865257458, + 0.7892721290311764, + 0.7802407862013382, + 0.75379624221188, + 0.6572855351402273, + 0.847418762775166, + 0.7985070549728941, + 0.7579952333372466, + 0.816630465995665, + 0.5131790384382042, + 0.839551232965299, + 0.7438768370079734, + 0.5100345977032299, + 0.7008045091300379, + 0.7864728148298223, + 0.7438800520993688, + 0.7542237436584777, + 0.7850199011414458, + 0.7356523997729305, + 0.5612099447253799, + 0.41357007582589017, + 0.8998460601181381, + 0.8121040207598296, + 0.7848944664203005, + 0.5356141155397438, + 0.8258496206867175, + 0.5981596818707363, + 0.6540970819066878, + 0.7087950975093181, + 0.6106953712987034, + 0.37491687109110255, + 0.8480042359377251, + 0.8161500453365325, + 0.6526706192059711, + 1.0, + 0.4742527951722072, + 0.44276512054789724, + 0.3397718760874537, + 0.4199880818539788, + 0.5546799504084924, + 0.7132132451261608, + 0.6046073370623137, + 0.3621722017216549, + 0.7466550852391828, + 0.6833479932281188, + 0.5036210620188659 + ], + [ + 0.3509661126449716, + 0.25017905444146804, + 0.35930004538886495, + 0.77738017425939, + 0.6924045099597995, + 0.6713581400901406, + 0.3969112208644087, + 0.408347427591087, + 0.4237509161849825, + 0.5064014253123316, + 0.27385345364357794, + 0.4244838438912269, + 0.551396693820746, + 0.5284002210438451, + 0.5850075138939859, + 0.6687713983374637, + 0.39096047610982304, + 0.48488860304928866, + 0.6933416504675612, + 0.6041006993502566, + 0.5219562043881915, + 0.6019868224639278, + 0.5293874798485606, + 0.5855531740453334, + 0.3599382362244454, + 0.5950766661683475, + 0.4916457285531252, + 0.43467793412610084, + 0.6456067630907584, + 0.37338795850970014, + 0.49718233332595174, + 0.4778415090023868, + 0.40175343866573904, + 0.4116809941111991, + 0.6896023690316605, + 0.5641811456724835, + 0.49292819887168554, + 0.5384939108020598, + 0.37222325808379886, + 0.5426000158204155, + 0.41693231161514516, + 0.5883353674787777, + 0.5411238221228091, + 0.6534457553883147, + 0.6416279922449587, + 0.6451968257173919, + 0.5491961903628485, + 0.5213457065923416, + 0.7270911424243252, + 0.5334243200666445, + 0.4372441823098056, + 0.7402212773804183, + 0.6808707428516183, + 0.45053382491292354, + 0.32011357931226625, + 0.3947936927804595, + 0.5036028698375677, + 0.584357223233654, + 0.9214722953475939, + 0.4313965029025832, + 0.4432264844142715, + 0.6722171357800587, + 0.4469997574083328, + 0.563530877888615, + 0.5027679587100399, + 0.6996047503919625, + 0.7053692133472567, + 0.7199081629480127, + 0.3648710465007744, + 0.3601009993734768, + 0.6797328176665953, + 0.6928665705189796, + 0.4577692351058268, + 0.5047066307173698, + 0.6393927323614252, + 0.6576400528509755, + 0.6497750823998045, + 0.7402422567260427, + 0.34191473692710095, + 0.5737127012228056, + 0.4756503912087075, + 0.9227612098507403, + 0.40362200199109327, + 0.7197753689245023, + 0.4764526372532876, + 0.4191166135098535, + 0.5928529873589996, + 0.8499358502843044, + 0.8580683927766686, + 0.7474567263541844, + 0.5751296625464387, + 0.6485665313858295, + 0.7852672834999497, + 0.6950236729545276, + 0.7516235469160433, + 0.6253017208170077, + 0.4192569307113313, + 0.7961040660430211, + 0.5538253373413871, + 0.36639627255757257, + 0.652584907115369, + 0.6504207818874678, + 0.5812345636686381, + 0.8011627827291585, + 0.5705860580052188, + 0.4733541717015337, + 0.7247839376216512, + 0.6051845280423986, + 0.8928424852651858, + 0.6657470753300094, + 0.62736487714694, + 0.6575339494779039, + 0.47012136668233306, + 0.5798150031661566, + 0.6610259330909904, + 0.7320499700749422, + 0.5521941393975563, + 0.5592226223796113, + 0.6715777296918852, + 0.7216414447639389, + 0.7051434599047463, + 0.6949266864661041, + 0.6018242293689187, + 0.4245575509492814, + 0.6381405288005016, + 0.6872053159811752, + 0.8251166926379032, + 0.6686761913439603, + 0.8335184260734158, + 0.6906851437337768, + 0.6524879842275114, + 0.7027854647320245, + 0.576092758578284, + 0.7813261815172861, + 0.46201631315820174, + 0.5004982633443449, + 0.6748951407010885, + 0.6934295252135465, + 0.4880707711845962, + 0.6875508646768199, + 0.6614565496981077, + 0.6305452721351843, + 0.6008666510898782, + 0.5967597825349749, + 0.8025307990809862, + 0.6521568495566671, + 0.7553680429109072, + 0.6756094465276828, + 0.5083219891276775, + 0.4249967431103746, + 0.5202066249989266, + 0.5556374740122995, + 0.5019450795400333, + 0.5013338925554969, + 0.8106588490889343, + 0.7527375636653171, + 0.5514343280309167, + 0.7426718129362013, + 0.53940675342441, + 0.5277915253165676, + 0.6473936042705487, + 0.6500068398053855, + 0.6951194808026722, + 0.5865679519513448, + 0.5298477736514969, + 0.6360974250070335, + 0.5904647290071381, + 0.7337147948233907, + 0.737732858699083, + 0.7448528314402543, + 0.7833744054747447, + 0.7541524951316094, + 0.733047826655769, + 0.6069465161253695, + 0.719701642318466, + 0.5154455692415646, + 0.6500707850526748, + 0.6781366952294133, + 0.33780580579827063, + 0.6896482781328875, + 0.6297826381911654, + 0.7302681778057369, + 0.6492389713205332, + 0.6313058573201636, + 0.6076767451273112, + 0.6446156057989318, + 0.7083683820180701, + 0.4955371794050256, + 0.7076392171449383, + 0.4301872917668085, + 0.5594555502516897, + 0.5450174748628921, + 0.6874889780895171, + 0.6054305721960036, + 0.6182491694669541, + 0.6098458396983412, + 0.7014939016937884, + 0.7087005120736461, + 0.5857177343409011, + 0.7005604951941883, + 0.6851804257011918, + 0.5449698440178178, + 0.6488939489697486, + 0.6373029137935515, + 0.5645561374256275, + 0.6343011413985084, + 0.6331267100064395, + 0.7836175405144373, + 0.9143655736193994, + 0.7775942811436042, + 0.5603084041326376, + 0.4752907280984048, + 0.5316051667836666, + 0.7420216773365864, + 0.7656887939735812, + 0.735594504685885, + 0.726523324192572, + 0.5824570484678405, + 0.48502126329693973, + 0.7782852282586245, + 0.666688504363904, + 0.45511859654736586, + 0.6546426814449373, + 0.6211636476795757, + 0.7037235281737005, + 0.6427465362196337, + 0.576785435961217, + 0.5288903521090196, + 0.3988177985424872, + 0.5307909981245702, + 0.6841615514612908, + 0.6725010181843029, + 0.7081710956771359, + 0.779745973612783, + 0.6485700288038672, + 0.5289398199293216, + 0.5400170931865579, + 0.48553764540686706, + 0.5665567725654688, + 0.5493438814482813, + 0.33260063146679036, + 0.6312437591341744, + 0.46707774371223887, + 0.921174139289362, + 0.6160375899103225, + 0.3560487929391792, + 0.2619848847346505, + 0.6118611553483885, + 0.5714276987343282, + 0.43308603267663415, + 0.4742527951722072, + 1.0, + 0.7823307479904337, + 0.591976289772177, + 0.7537823235055797, + 0.48563639905291534, + 0.7978980310075676, + 0.5366180182080377, + 0.25923758863271357, + 0.7143563565717392, + 0.6894893270692094, + 0.6534833332865434 + ], + [ + 0.6499668209591389, + 0.6335171395008529, + 0.6767476690127024, + 0.8511258532699046, + 0.8503575503093632, + 0.8751419947611714, + 0.6311466666762826, + 0.6351374525157778, + 0.6365899805072405, + 0.6124990279910353, + 0.4558878421334277, + 0.7934213585859577, + 0.8470455709330812, + 0.7629592296910045, + 0.7923927921809331, + 0.8498673590260069, + 0.6217900512583511, + 0.7556468108881125, + 0.8799372494218946, + 0.7665801793931191, + 0.744718315381805, + 0.7783054008997461, + 0.7657279619110084, + 0.7589633460825688, + 0.6749371551820814, + 0.9042676065182228, + 0.7022403383780784, + 0.7133594122289327, + 0.8052010257866965, + 0.7625343773361789, + 0.8003382873334969, + 0.7074942430785324, + 0.7214874235303257, + 0.5650066378287154, + 0.7918703756504859, + 0.7934262269996816, + 0.6800101554085182, + 0.5749399163422889, + 0.7098976823430104, + 0.6630987640531198, + 0.7842222842404081, + 0.8447459753665874, + 0.558551877457853, + 0.7111783538014854, + 0.7758300422007928, + 0.684044195345576, + 0.6509736385895367, + 0.715903771132076, + 0.7835301230867762, + 0.5635989210077836, + 0.6345865359262117, + 0.9365479841674961, + 0.7396395996545612, + 0.7675062456205257, + 0.5851190996389115, + 0.6722270053679442, + 0.7679516627391956, + 0.7831377201997154, + 0.8558595081171435, + 0.6259027772660819, + 0.6338245622237081, + 0.8257136364079107, + 0.7462663571577345, + 0.7553154366875139, + 0.7266161139987596, + 0.7376795957773022, + 0.8861752003330938, + 0.7679420671987345, + 0.6105869441724131, + 0.6407275163988825, + 0.7702754455072027, + 0.8946765890068032, + 0.7421385686304677, + 0.7110560616082372, + 0.8141365337833985, + 0.7529894516752239, + 0.7550222229384813, + 0.899096906176024, + 0.6538591858470864, + 0.8020156684537186, + 0.7277766941152497, + 0.7300565877037076, + 0.5429736455121921, + 0.7980181415491212, + 0.7434236158695349, + 0.6878557254174499, + 0.8434279665710386, + 0.8631968626630695, + 0.7463007592517052, + 0.956676183942138, + 0.8145055323541444, + 0.7184291516247854, + 0.7917293286436948, + 0.8237077543823558, + 0.7866236423190296, + 0.833421565566747, + 0.7218937055613724, + 0.8647492283375684, + 0.6308531586532652, + 0.635067950061641, + 0.8279749068959849, + 0.7911902441027128, + 0.7725620450020759, + 0.8511829966571863, + 0.7873966244521542, + 0.5823936553625036, + 0.8814774190013067, + 0.689206720699156, + 0.8327894743421479, + 0.7425671524350241, + 0.6741665147728858, + 0.6888624911876133, + 0.7055559058631629, + 0.8400722132698368, + 0.8453574994887615, + 0.9083021017642574, + 0.705509136328694, + 0.821577405189321, + 0.6512982949898504, + 0.7345042218170036, + 0.8278096458325718, + 0.771402529345409, + 0.7366289256895959, + 0.6116453216703432, + 0.7480690276267848, + 0.6608252257515747, + 0.7043797371805106, + 0.7965560318121391, + 0.8313565919931803, + 0.7525472648940406, + 0.734363449302516, + 0.7598678571461164, + 0.581037117392222, + 0.7340366269617474, + 0.5877741864344039, + 0.7228571723471617, + 0.7664497283795687, + 0.7353817852220492, + 0.47499352344792806, + 0.8053606983562956, + 0.8478712668357021, + 0.7725011519248942, + 0.783180724087281, + 0.7809302983294071, + 0.7747447161064622, + 0.8136911030530168, + 0.8587353875905128, + 0.5814232163237906, + 0.5264674388505409, + 0.5896020452800551, + 0.7079707059233895, + 0.6870594512002802, + 0.7059245627676894, + 0.6107537878024565, + 0.7848176143901672, + 0.7634599342036946, + 0.4805307359294237, + 0.7976927903962713, + 0.620856129852468, + 0.7517827836561638, + 0.746519336222571, + 0.6716305255887505, + 0.7447216627918855, + 0.6034108627004351, + 0.7329210723405345, + 0.7720429832804803, + 0.6331380643405091, + 0.8306240970670656, + 0.8244620261383613, + 0.8399883476026331, + 0.7378067497277313, + 0.7538757410455107, + 0.7289601436115394, + 0.8257769357813185, + 0.8035252069224739, + 0.39903690073985065, + 0.64521530879503, + 0.7297515399084732, + 0.6065042267827345, + 0.7176057903723052, + 0.8434468318532601, + 0.8080461326344666, + 0.7156442272300668, + 0.7676750414762363, + 0.7488426292778294, + 0.772261988576899, + 0.8074509634287818, + 0.7192587997786948, + 0.6709591416042541, + 0.6951847230219852, + 0.7630171180974598, + 0.7083564831509903, + 0.81776816035969, + 0.7854291705992082, + 0.6873829161045206, + 0.5364392825945741, + 0.7674414844585614, + 0.6985903452963202, + 0.7319443708275528, + 0.7747201681127136, + 0.7233367269557952, + 0.6421307831229743, + 0.7390647369389965, + 0.6220145621404136, + 0.6831463468392617, + 0.7908152919998283, + 0.9108072364872503, + 0.8687599290950966, + 0.7067620105735876, + 0.7633164946269367, + 0.5755060480006496, + 0.577278940807876, + 0.6448498721717026, + 0.7617440470431607, + 0.7867508977387511, + 0.7855460612069489, + 0.7650424983154387, + 0.6686934683792641, + 0.6280298018105537, + 0.8193195149123134, + 0.6698552381543899, + 0.368967022397358, + 0.7203935156410501, + 0.7120625994953501, + 0.720358325210215, + 0.7441758018634445, + 0.7241189685744225, + 0.6361429855803163, + 0.4464611682309792, + 0.6898638106806426, + 0.7606178583684724, + 0.7237553712209033, + 0.8468147333114996, + 0.8165500074739876, + 0.8149972257833158, + 0.528663973897442, + 0.7068753003200382, + 0.607793281623925, + 0.7524809164868616, + 0.729189027219135, + 0.5282631020144052, + 0.74653761955947, + 0.6933250829431008, + 0.8128187701753766, + 0.5598166583710517, + 0.6051052050557758, + 0.43535035386192233, + 0.5349227945839078, + 0.4424356687176678, + 0.6391692322406327, + 0.44276512054789724, + 0.7823307479904337, + 1.0, + 0.8269520473993179, + 0.9079369182700145, + 0.7552982940990148, + 0.7874137190005812, + 0.6675817975535617, + 0.43643339588884916, + 0.8151798003972006, + 0.7180461205607973, + 0.6533030125612814 + ], + [ + 0.6849778135243032, + 0.7247700709187358, + 0.773799246716738, + 0.758661297603529, + 0.7929894983209154, + 0.7408766923190806, + 0.7828955633074586, + 0.7409030236028241, + 0.8165235161067879, + 0.7527006587457759, + 0.7017251798467811, + 0.736706638094014, + 0.7760506412905286, + 0.5518833623472377, + 0.7898323351971119, + 0.7712479260809431, + 0.6995934017962809, + 0.8282864205580769, + 0.8081687405221292, + 0.8034749576692758, + 0.7168127470656148, + 0.7170001975244927, + 0.7926759951259156, + 0.8440745719938391, + 0.6848889316054676, + 0.8447577026437016, + 0.6384321892342673, + 0.7652527332466635, + 0.7947411268963229, + 0.7229747674399515, + 0.7717265249110028, + 0.7499088168959984, + 0.6930439731334737, + 0.6289189385749356, + 0.7763822688161818, + 0.7648074190314192, + 0.6871822356318272, + 0.5330849544429392, + 0.744927745974692, + 0.6980732532550247, + 0.8577862381937699, + 0.844181778495872, + 0.48327912210652757, + 0.5546837763184235, + 0.7258198606224059, + 0.7095656818397903, + 0.6077037173853331, + 0.8477798280097265, + 0.7414777600216858, + 0.46366973363752045, + 0.6499672827110244, + 0.7408864553667255, + 0.7084071373997862, + 0.7469129262150014, + 0.5948912437134323, + 0.6918548521673632, + 0.768003429015091, + 0.7387149711790567, + 0.6689806809410381, + 0.4932844798503562, + 0.7203487110075083, + 0.7617958011274947, + 0.8435115874163884, + 0.7115622027885176, + 0.8155621041665576, + 0.8575904408678933, + 0.8019209200768288, + 0.6865636650016818, + 0.6181205096972003, + 0.675080073197841, + 0.7264560217060414, + 0.7841752329704309, + 0.7861154198460673, + 0.7247151276159588, + 0.7204370489068018, + 0.6589729648295217, + 0.6508246993151784, + 0.7362659933185972, + 0.8025774787686746, + 0.7023461435297907, + 0.7587608101020159, + 0.5814498744653513, + 0.5673878259734372, + 0.6086210138420248, + 0.7340542814923021, + 0.744786559821405, + 0.8314896372534726, + 0.8610446193730892, + 0.6381873140790206, + 0.8311313036195525, + 0.8002231565016127, + 0.7208719506914236, + 0.6470184568134388, + 0.721286653449904, + 0.695565599542339, + 0.7969860428923172, + 0.6915539788959751, + 0.7396466139844518, + 0.671538639388293, + 0.7015465211246398, + 0.7522834355448441, + 0.7762777955618754, + 0.7820044910517727, + 0.7104997578893607, + 0.70312803063971, + 0.7799339318620333, + 0.7690114181782147, + 0.7639202946016413, + 0.6607170333331016, + 0.678082017031761, + 0.5428993246907335, + 0.7181151684083071, + 0.7271833496246357, + 0.7856834074580452, + 0.6957538366193136, + 0.8137873016393036, + 0.6281443923416908, + 0.7683785276421039, + 0.6257135793819313, + 0.6262204165789238, + 0.6898485067233148, + 0.6290616754330224, + 0.7128858427908177, + 0.6997099281509714, + 0.7988814399402853, + 0.709138585569105, + 0.574330904479883, + 0.7224811798925003, + 0.7909522689890831, + 0.5962761739498382, + 0.7894560058084237, + 0.8179969180537107, + 0.7403425607409945, + 0.7341930476362284, + 0.8242676560119518, + 0.6761428599700662, + 0.6356691400242133, + 0.64721012015239, + 0.34574534680281965, + 0.6706893113507957, + 0.7197484890361323, + 0.6911636990105169, + 0.6925438330028852, + 0.7199128758243174, + 0.7503280111444828, + 0.8238700735271273, + 0.6042702390837363, + 0.43206388516895383, + 0.4373239325956908, + 0.4793494395239917, + 0.6415359565948152, + 0.5977648831216051, + 0.681987445929145, + 0.7568627409405716, + 0.6458490401330022, + 0.6079106177109471, + 0.319197128360606, + 0.7324867012080583, + 0.6410648845751978, + 0.6943992976579073, + 0.6628273267611798, + 0.5701885245758997, + 0.7314377121910854, + 0.49709628053520843, + 0.6376254821580828, + 0.6045971547687801, + 0.5064995259891731, + 0.7204998849104314, + 0.6898633611598889, + 0.7232841085872197, + 0.6400990600526569, + 0.6576569581878844, + 0.7306141952236082, + 0.7200942516861135, + 0.6528590185538127, + 0.34601939084478356, + 0.514749807398755, + 0.5264778139837846, + 0.687161235001947, + 0.5833035353304955, + 0.6864599717572997, + 0.6293741029342979, + 0.5771415790791888, + 0.6688262078630655, + 0.7074868441486256, + 0.7148092441855279, + 0.6948371810939195, + 0.7112780302534966, + 0.6787309366445999, + 0.6102001941098882, + 0.629375503312566, + 0.5875137072309454, + 0.6388818446160558, + 0.6196164530974831, + 0.49496503956558946, + 0.454941176057489, + 0.8037197043272067, + 0.6001884352930449, + 0.5563823330100526, + 0.6052134337212903, + 0.6616202163803948, + 0.6505692008478529, + 0.6486328815703833, + 0.46960608029889683, + 0.5383102995934388, + 0.6685819707580645, + 0.813111267180024, + 0.7524653174981395, + 0.612195804698106, + 0.5553918859195159, + 0.5393047663019217, + 0.499131237730435, + 0.5533194681644813, + 0.7691567992849209, + 0.663663598953089, + 0.6189342719315504, + 0.6454770925073866, + 0.5727229546997754, + 0.5446152703288183, + 0.6131851751298165, + 0.6170109658294722, + 0.2144170508852255, + 0.5874706129354768, + 0.6506123448821917, + 0.5147609045887876, + 0.6843256055908873, + 0.5682756506045177, + 0.5612834529062078, + 0.603181301660863, + 0.6690512614153018, + 0.6068441872311858, + 0.6325481963563092, + 0.7070615634045128, + 0.6693884520841931, + 0.7038872772062793, + 0.4998250861104224, + 0.5170832177332034, + 0.5403366035887923, + 0.6632295249459984, + 0.571117131805349, + 0.6228205665261841, + 0.5614508801003031, + 0.6362307033034176, + 0.5920674242875118, + 0.43295578190140865, + 0.5760440991843939, + 0.6889196881706602, + 0.3094364259987791, + 0.3109226770316556, + 0.7316897785865079, + 0.3397718760874537, + 0.591976289772177, + 0.8269520473993179, + 1.0, + 0.7483646725621509, + 0.7984946174330058, + 0.6257276826028597, + 0.6005198530405981, + 0.6908503407006984, + 0.6921436993066278, + 0.6809929798806442, + 0.45651382822127307 + ], + [ + 0.6513284240270237, + 0.546679361838954, + 0.5169628701903984, + 0.7765077390265557, + 0.8785931079943582, + 0.8399848260316947, + 0.58654780446165, + 0.587289937472605, + 0.604308926627598, + 0.5801245374067487, + 0.5057757921876485, + 0.7040243669218067, + 0.6785075406337276, + 0.8027115302427646, + 0.7095507226659981, + 0.8932903015822795, + 0.651359378217141, + 0.6698273383501041, + 0.8997258994793944, + 0.6554183506283343, + 0.7028932153610691, + 0.8693922413006171, + 0.6855643892210536, + 0.7418659233811008, + 0.6407064216820418, + 0.8952023100401503, + 0.6210364704946911, + 0.6180976313399533, + 0.8805812902578408, + 0.7203249630060886, + 0.8003458392954029, + 0.6984941835915196, + 0.6892426213036618, + 0.6738056318714484, + 0.6750952688080061, + 0.8306498116090699, + 0.6522598648183767, + 0.4946018614881171, + 0.6406009461929267, + 0.6746129475263187, + 0.6803566749194833, + 0.7131406683809951, + 0.5915005440604169, + 0.6638495583621381, + 0.6673115777722024, + 0.6301311193547601, + 0.672353435266935, + 0.6771515361788846, + 0.6404032620932749, + 0.5658268333870036, + 0.5747684378669088, + 0.8223244021920305, + 0.8350169488853942, + 0.8090213018936666, + 0.7021896254349999, + 0.7625776361017147, + 0.8343294668932584, + 0.715302872804923, + 0.8056864040289318, + 0.567950255650784, + 0.6711316065575823, + 0.7546509143697919, + 0.737049295431882, + 0.844846712118999, + 0.5589999268579496, + 0.6248365573380901, + 0.8145382619337217, + 0.6824851026889348, + 0.5888070853139129, + 0.6516714469257665, + 0.7740941180905401, + 0.8079004974399008, + 0.6212973716740036, + 0.681088293442879, + 0.6757542789089509, + 0.6616589294984953, + 0.6378959018398411, + 0.8012606766740572, + 0.6311001876299145, + 0.6646453398524559, + 0.7086514690171287, + 0.7743103501689053, + 0.44997865787456487, + 0.7213981677595049, + 0.6807809988862442, + 0.6220454648247563, + 0.7443439736492039, + 0.8470764846328671, + 0.7830485732653965, + 0.9136538879638405, + 0.6959634375676396, + 0.6731498792967565, + 0.6531245956516074, + 0.7203890217376165, + 0.6934162689605257, + 0.8027855134608372, + 0.5948597721938715, + 0.8951499679826579, + 0.5858095138730934, + 0.5824284798511381, + 0.7374551523388925, + 0.8166394672578234, + 0.6770700925588184, + 0.8923875592088518, + 0.7074661209366373, + 0.5701636949513088, + 0.8591147141369854, + 0.6670773671869494, + 0.8218430809062833, + 0.6555988216765672, + 0.6838989650774744, + 0.6487037595527051, + 0.5971155056528458, + 0.7597376648997478, + 0.7929532526602717, + 0.8100401507201291, + 0.7064846286433543, + 0.7253717595310428, + 0.5474693377133827, + 0.6866683052540014, + 0.7685532659638973, + 0.650899399884075, + 0.6917781315851069, + 0.5884062187170681, + 0.6571862117380772, + 0.5821603463569136, + 0.701653999261748, + 0.6897483317913822, + 0.6672208374466991, + 0.6499802481416914, + 0.6716876553894061, + 0.752283597501144, + 0.5562615310488545, + 0.7243765475571031, + 0.4951131360508297, + 0.7238899623750618, + 0.7867929699483341, + 0.5913733919366277, + 0.5018791030035931, + 0.7541804476706213, + 0.853026514198117, + 0.6647930788422474, + 0.7302603738715168, + 0.7415843661277602, + 0.7117294711584271, + 0.7284915644200991, + 0.7778729280175044, + 0.5789930881283166, + 0.5481467978888448, + 0.5478604992047166, + 0.7203909438262818, + 0.7467289199035075, + 0.7139333267232553, + 0.5134460031139199, + 0.7130707763717403, + 0.7490395781965845, + 0.5216650498080856, + 0.8081807456083391, + 0.6578732272296884, + 0.7212349488063965, + 0.7015552222947049, + 0.6940693317741273, + 0.6840067594814506, + 0.5421114680356958, + 0.6359964262938906, + 0.6363355368567549, + 0.5934260228838539, + 0.8152242409662596, + 0.8124136809985189, + 0.7503099651664518, + 0.7170464816368248, + 0.7687332189900044, + 0.6383114701292882, + 0.684740009447049, + 0.7255941073602128, + 0.5733478444474336, + 0.6677445904546802, + 0.666389600565251, + 0.5817221297096131, + 0.7402164737145441, + 0.799188180104926, + 0.7630902016882549, + 0.7167037218975165, + 0.6784598376233474, + 0.6288488981768979, + 0.6934202833269613, + 0.7367079490878893, + 0.5838445211647008, + 0.589655820350568, + 0.57534811644151, + 0.6320626799636172, + 0.52740851434846, + 0.7039127958824801, + 0.6927450468109407, + 0.6067463282648944, + 0.49871865878835847, + 0.7294228178778424, + 0.6478363416689182, + 0.5740185963394646, + 0.7920918702339602, + 0.7303642416490831, + 0.5263743216970892, + 0.7561806870157104, + 0.546274908454959, + 0.6009822090366574, + 0.7183714098507098, + 0.7865399516440601, + 0.7400235908411146, + 0.7403585646244991, + 0.720010621449949, + 0.5512822125146946, + 0.6118854333962382, + 0.6255365473526934, + 0.7570232451259074, + 0.6545447481334402, + 0.6123623784830379, + 0.5920068632840085, + 0.5927442468407305, + 0.6014481789665337, + 0.7447762046824139, + 0.5124378834915442, + 0.43289926513707505, + 0.6022177889226978, + 0.7208064393226083, + 0.691430028987916, + 0.6443844608218845, + 0.587329596769452, + 0.6039889192020134, + 0.48205242478379623, + 0.5914857303981417, + 0.764507922746504, + 0.5985503516491453, + 0.7614110367327064, + 0.6781476328402761, + 0.702312646935578, + 0.532156477812789, + 0.562009502263678, + 0.5969283468969309, + 0.7504073889116134, + 0.6731453715346987, + 0.5764986171954164, + 0.6671203283303756, + 0.5492585744307937, + 0.7391767160220833, + 0.5166971338991266, + 0.65497911832126, + 0.5032598378600982, + 0.5734074314004602, + 0.5854138567226702, + 0.5772442624317405, + 0.4199880818539788, + 0.7537823235055797, + 0.9079369182700145, + 0.7483646725621509, + 1.0, + 0.6700103081138198, + 0.7366115284969524, + 0.7119363658475749, + 0.5211536353332702, + 0.8303506474193643, + 0.6441644533968365, + 0.6698237041323749 + ], + [ + 0.8062044959029471, + 0.7067713545188556, + 0.7909450686229432, + 0.6798517871202818, + 0.7161520492292264, + 0.6671413193053598, + 0.6502838845418241, + 0.8933248831240437, + 0.7933762176921055, + 0.7085133672810311, + 0.6618973826771881, + 0.8040031164645342, + 0.8667107271467963, + 0.6404083570691927, + 0.9289696801944024, + 0.7764408358173681, + 0.822468409316478, + 0.849287202186742, + 0.7877624205414266, + 0.7237058017989465, + 0.8780981782432024, + 0.7034066934539316, + 0.7974428801473891, + 0.7379524567383039, + 0.8871908158625708, + 0.8599398545146151, + 0.7820045886372083, + 0.8941387108998413, + 0.7023719024477129, + 0.7584844536113166, + 0.9322327095142889, + 0.7933598247340254, + 0.7933487452824078, + 0.7418216491446107, + 0.7619184319391561, + 0.8475773632117145, + 0.7835336074819126, + 0.38720509373161494, + 0.8907614007270214, + 0.8923375599169989, + 0.8699817748410608, + 0.8256046344953978, + 0.4484599160624159, + 0.6757154512582018, + 0.8025962867537952, + 0.6664100050329075, + 0.8103635186689437, + 0.7513384922642946, + 0.7636475741621823, + 0.717124483591214, + 0.8104452005769647, + 0.7402278696220344, + 0.6757068057064586, + 0.7898748788204397, + 0.7244266852457241, + 0.7555130716480256, + 0.8129811559129133, + 0.903898964284149, + 0.5459978956094603, + 0.7430300764261757, + 0.780493301787485, + 0.8965971150824207, + 0.8993840891695973, + 0.8658793820777619, + 0.7491630946362128, + 0.661057220222307, + 0.7804393188748646, + 0.7051911315512047, + 0.6209575011081983, + 0.7027121752655215, + 0.6506261192904744, + 0.6670072516688667, + 0.8970110020446733, + 0.9359057145627633, + 0.7842897607364009, + 0.8351788746901856, + 0.8099294316529515, + 0.7294126808537065, + 0.8463839861167057, + 0.8904183963592477, + 0.6802519663351667, + 0.4534685152200916, + 0.7549129552113272, + 0.8165998773408814, + 0.9189732343117787, + 0.898125200661716, + 0.8972967520293731, + 0.6687778526958118, + 0.4655998022762276, + 0.7160674332833683, + 0.9205011003976507, + 0.6938888311206556, + 0.6016383628296733, + 0.7925782681225294, + 0.7822525423417563, + 0.8898926951393519, + 0.8926000290361322, + 0.6830500229413315, + 0.663577147246374, + 0.6893668493277328, + 0.8026211504573988, + 0.8691336922047075, + 0.875865036045228, + 0.6826410928510505, + 0.8425204412931729, + 0.7169859772777416, + 0.6519134595093077, + 0.8134283591147836, + 0.7126737701051543, + 0.835811552251795, + 0.7111229734785225, + 0.7924366926171609, + 0.948043307416719, + 0.9273678655862706, + 0.8889942827222551, + 0.8506964169356173, + 0.8007144366024264, + 0.8958703727455303, + 0.7813273502964849, + 0.7422429284814601, + 0.8006645498206717, + 0.8040658711809603, + 0.8653929782095292, + 0.8783793411010007, + 0.8703124019395525, + 0.7888914241621898, + 0.3889767885741457, + 0.807733758332431, + 0.6667671240401544, + 0.772082385534099, + 0.8431581161653329, + 0.8195965448003436, + 0.7269541441391288, + 0.7136842113246512, + 0.7251828117838126, + 0.9031409712727162, + 0.782153969279955, + 0.718963074594932, + 0.6536319354718015, + 0.8600892877315625, + 0.8715753042359103, + 0.8663944925024621, + 0.8775667026425488, + 0.8123805806443477, + 0.4931233055226806, + 0.7882757098629647, + 0.7053372790015809, + 0.536995783197235, + 0.5014760431427804, + 0.6890087518633377, + 0.8061975463964531, + 0.779766191807547, + 0.8719471605074444, + 0.7925840457726404, + 0.6949771637268005, + 0.7890260414503867, + 0.6021758622356539, + 0.7816012318569935, + 0.7815668981797537, + 0.8981175127703074, + 0.7902870032123294, + 0.705284673400486, + 0.8036083486831219, + 0.6678733845864925, + 0.8568050486124987, + 0.8110933844777121, + 0.711917395161595, + 0.8197337807732186, + 0.8003541721929169, + 0.8412569419580389, + 0.7287916668115452, + 0.714469879681234, + 0.8193368514196098, + 0.8152173876181263, + 0.8398643688130439, + 0.481810271382361, + 0.7292356064876121, + 0.5954796013776905, + 0.8038917011194647, + 0.7985325897518771, + 0.7957164970483963, + 0.7905474317998004, + 0.6970921438072514, + 0.8503994910169997, + 0.7709158150812447, + 0.8603966785971807, + 0.8430683515207471, + 0.9217859629502269, + 0.8189780360367314, + 0.8655000646020298, + 0.8824307244059033, + 0.8258158299168716, + 0.8470570456448464, + 0.8370382746547488, + 0.7487527556545007, + 0.6276872383860683, + 0.8047216111863252, + 0.7569306597026932, + 0.7476360805578267, + 0.6989369193754843, + 0.7498483376978555, + 0.8169009736030599, + 0.8862112725044075, + 0.697911778953738, + 0.7608142292593622, + 0.7887374945567694, + 0.8869347613220228, + 0.799865978437815, + 0.48740469972150313, + 0.7036531560656437, + 0.6364600729449573, + 0.7604573126538039, + 0.7573929125295221, + 0.8481927806447604, + 0.7441574850093997, + 0.7039480667384497, + 0.7001598675790934, + 0.820802322333137, + 0.7821950276854523, + 0.772847486020429, + 0.7149347882506164, + 0.4492319287655833, + 0.7024792854710972, + 0.8387829224557117, + 0.7105346949515017, + 0.840716936534211, + 0.7487858166947277, + 0.6886360530359867, + 0.6701604561661896, + 0.8521658567416873, + 0.7381767478566111, + 0.7915014212073463, + 0.850193648591808, + 0.7633769579025621, + 0.7729619852758846, + 0.4298551985371198, + 0.7331112512419234, + 0.7222805081401775, + 0.8412348293659754, + 0.7808526246405619, + 0.6101253215498343, + 0.6899895368963914, + 0.7452033373889864, + 0.6100453262860268, + 0.5868933447439557, + 0.7844939562046448, + 0.6967720071182502, + 0.5443439241820734, + 0.46525714076494, + 0.7665335973358026, + 0.5546799504084924, + 0.48563639905291534, + 0.7552982940990148, + 0.7984946174330058, + 0.6700103081138198, + 1.0, + 0.7892586317649471, + 0.7727115633762704, + 0.647771869570825, + 0.7549650641273319, + 0.7787959584327421, + 0.5695013244299938 + ], + [ + 0.6501047313701779, + 0.4580840695604981, + 0.6563293639207025, + 0.7698422099585732, + 0.7410959825380006, + 0.7034995651125653, + 0.4818802489393839, + 0.7341312945315439, + 0.518566751090413, + 0.6704469350370048, + 0.5010369858256355, + 0.6161962539989445, + 0.7613565102109566, + 0.5967143846561296, + 0.8224837564657099, + 0.6668449727972301, + 0.5948346749534918, + 0.7012682353523968, + 0.7448909834172815, + 0.7354765444292387, + 0.7973447633457148, + 0.653002383684628, + 0.7808396016296157, + 0.6444197728431318, + 0.564139253400931, + 0.7276183432544463, + 0.8552779055787646, + 0.7655725236299004, + 0.64687832264855, + 0.47791297892432466, + 0.7497324434162027, + 0.6368499955543467, + 0.6669423960609042, + 0.6877708865821973, + 0.8423902487321595, + 0.7490212103830503, + 0.7361504678911349, + 0.4380847102629972, + 0.5794775919672798, + 0.8215668589469886, + 0.6925169770892734, + 0.7182376604676648, + 0.4912758240032, + 0.8294013569725159, + 0.8792763662174777, + 0.7529511833483412, + 0.8736547300650115, + 0.6842994454596215, + 0.8572670216730937, + 0.8301320494149953, + 0.6912742238357245, + 0.7235918573099702, + 0.6336139791993696, + 0.5930879744945889, + 0.4785825875351046, + 0.5468966154378615, + 0.6537401011695946, + 0.8427306595889371, + 0.7764323035884401, + 0.7564051609362727, + 0.5308309573633833, + 0.9097517901634488, + 0.6030587706262674, + 0.738350229819665, + 0.7241210312800839, + 0.6793518927811532, + 0.7751579781381017, + 0.8819971430184194, + 0.5695198416462274, + 0.5719785167987804, + 0.7265611009932168, + 0.6308655217019177, + 0.7490771001087985, + 0.7962266989829162, + 0.7888889466803088, + 0.9338988334610867, + 0.934341790632893, + 0.7677246630888229, + 0.5998431972549481, + 0.8333091807744496, + 0.5749022732629712, + 0.684086204450718, + 0.670752436565344, + 0.943929131233943, + 0.7617191651873985, + 0.7059766153860011, + 0.7675547794976582, + 0.7330383234121849, + 0.6860342873774404, + 0.7256631294040762, + 0.8437760062093349, + 0.8119919006625993, + 0.8550606716070323, + 0.855191304498884, + 0.9098354929233601, + 0.7534735125030018, + 0.6692567066135557, + 0.7683242268750633, + 0.7380178551388438, + 0.5710239845718368, + 0.8526526984485031, + 0.7803123212880742, + 0.7565437119471452, + 0.8076673270625632, + 0.8606147487943508, + 0.6197957405581926, + 0.7361240297115424, + 0.8167318252201081, + 0.896474994216691, + 0.955651642665573, + 0.8573966102796395, + 0.8251782260865833, + 0.8060120993846424, + 0.7989298674643409, + 0.8734918042454796, + 0.8597708666975364, + 0.8302745803923963, + 0.8199729763337316, + 0.8385728240553336, + 0.9002869921295745, + 0.8948721969065401, + 0.8801603522808906, + 0.8381648357720585, + 0.6195930076019657, + 0.7854784191536559, + 0.7816712416749321, + 0.5971332050757553, + 0.8576067699188535, + 0.7520984802311793, + 0.8772723538860977, + 0.7827863192865827, + 0.7614362813207661, + 0.6065166706580085, + 0.7636926819268949, + 0.5991748091922022, + 0.8306500522912517, + 0.8549916726161689, + 0.8534439274795076, + 0.826281812572899, + 0.9441714648387523, + 0.871404965682702, + 0.9168721282743924, + 0.8994766188751298, + 0.8208407582815546, + 0.586810171796103, + 0.8051014186075225, + 0.9015318868359032, + 0.8230712279319788, + 0.6457012487371959, + 0.7646953961648926, + 0.8103361159219263, + 0.8074448837702501, + 0.8432881371443139, + 0.675273018070572, + 0.9125340413572915, + 0.9718185935846796, + 0.8304009425443043, + 0.8569226297322956, + 0.7398780071209538, + 0.8117175987489508, + 0.8665316099439512, + 0.8517066693065553, + 0.8702985937330586, + 0.8637738590616043, + 0.8842260821158271, + 0.8941915013626601, + 0.8685691112130324, + 0.8886826478425298, + 0.9131798571173826, + 0.9321517106298348, + 0.9357182121115717, + 0.9039087639665121, + 0.8182227068235237, + 0.8040310374744561, + 0.9299881554362406, + 0.6138488080184221, + 0.8632380968948615, + 0.8776024933666904, + 0.628060602653629, + 0.9021293710390406, + 0.6865816992316358, + 0.917403180879854, + 0.8410023024647184, + 0.9287993223042623, + 0.8161583180548989, + 0.8941265057471809, + 0.890389398941585, + 0.8100739465567616, + 0.8914130851679439, + 0.78144752977271, + 0.8765592683871989, + 0.8824554013280316, + 0.9107476945106576, + 0.8950673526810643, + 0.9019728995105958, + 0.8515707563781354, + 0.8528733042267233, + 0.8975022371772479, + 0.8908739278199118, + 0.7716133305918155, + 0.8803309069275272, + 0.6770944319755372, + 0.8567203606209113, + 0.9166700639119041, + 0.8973867167048054, + 0.8908834546496216, + 0.849106958404933, + 0.8966677505548563, + 0.7600491398310825, + 0.9501482891368553, + 0.8251508556868618, + 0.8508989784729922, + 0.8643665706878072, + 0.9016786527428217, + 0.9334811141814656, + 0.7714875076210711, + 0.8100481533397268, + 0.9033661139557664, + 0.863032856770847, + 0.9528587549349546, + 0.8668892333905406, + 0.687589418048248, + 0.8808187825637476, + 0.8743934276894112, + 0.8200055272234626, + 0.8420762840760105, + 0.8806053147877374, + 0.8346513893943972, + 0.5687782803470425, + 0.8206630131423336, + 0.8824369264698516, + 0.9248786573061476, + 0.9235397549925083, + 0.9032500421415102, + 0.8769138684073832, + 0.5098745230906592, + 0.7001916750253504, + 0.7908279072705489, + 0.8434030400395267, + 0.852484507811015, + 0.45427696116267596, + 0.8624053917919738, + 0.8086765003062054, + 0.8459417903887846, + 0.839913801491391, + 0.5550183261528067, + 0.5088230693985216, + 0.7284059061709658, + 0.7395432655340587, + 0.7690852425944095, + 0.7132132451261608, + 0.7978980310075676, + 0.7874137190005812, + 0.6257276826028597, + 0.7366115284969524, + 0.7892586317649471, + 1.0, + 0.6614148940030428, + 0.42653686546181896, + 0.8469173630510701, + 0.8977713879369216, + 0.7549147915597126 + ], + [ + 0.6034086346113962, + 0.4657581876760005, + 0.3764352551437156, + 0.5661878006735306, + 0.7057789920616891, + 0.5706733059189526, + 0.4334909676693844, + 0.6853217917629855, + 0.5941060663449861, + 0.545362780029405, + 0.4734852619366689, + 0.7778556221297118, + 0.5667862457440638, + 0.7181145189153388, + 0.7237737500396187, + 0.8270518440609274, + 0.6254785715681246, + 0.6285609714695077, + 0.7991364374416229, + 0.4320849489392977, + 0.696663394771219, + 0.8292961175784311, + 0.5811763610177907, + 0.5890892905405818, + 0.7781198046150298, + 0.8072520930143295, + 0.4793655392074837, + 0.7057161380770486, + 0.7079713392445599, + 0.6754728492556905, + 0.7356974602021825, + 0.6269594881001164, + 0.7136002889792316, + 0.7295691427887558, + 0.5209801573831213, + 0.8063722133997895, + 0.6631638610547803, + 0.4879804626158508, + 0.7549237084710371, + 0.8002390969369542, + 0.6395449118875549, + 0.6342441755375445, + 0.5010368402501802, + 0.5883629759015386, + 0.5029199086531823, + 0.5630334649457291, + 0.6558305522832707, + 0.5181113471150037, + 0.6073475432809541, + 0.666588742583078, + 0.6974183716502559, + 0.7420114591427935, + 0.7865732201543547, + 0.7216595999565599, + 0.7719425108532915, + 0.7956963588725857, + 0.7735952562256997, + 0.7699883810064932, + 0.529273139098633, + 0.6642868712316268, + 0.7180989868987839, + 0.793166015817056, + 0.7860202775425535, + 0.8646739105625287, + 0.46321984842148173, + 0.38091125799446895, + 0.695261908006852, + 0.5446156838453741, + 0.4259399803580829, + 0.5347384265951354, + 0.5910408520480727, + 0.5864002682614703, + 0.6136433462890759, + 0.7627466320710243, + 0.6416792448021446, + 0.6438136802818507, + 0.5745207671285343, + 0.7573769670637012, + 0.6254208597731057, + 0.7971302152093891, + 0.5222291760747149, + 0.5830048323481457, + 0.759408741403634, + 0.7342763933026121, + 0.7446469794597195, + 0.6740598762619961, + 0.7174510556767562, + 0.6328816519064537, + 0.5807837172621698, + 0.7203358296227402, + 0.6946598222693261, + 0.4803339197335688, + 0.4265180542915614, + 0.6073387890579195, + 0.6199783816912303, + 0.8507579848341448, + 0.7462419651068773, + 0.7888606210460296, + 0.42102764729925324, + 0.4890775532523837, + 0.6198896128234053, + 0.870596281140094, + 0.7408743222240741, + 0.7298806224590704, + 0.5959538839996139, + 0.44057368792552015, + 0.5644093014392781, + 0.6495281001361382, + 0.7055482650856436, + 0.6177115883460113, + 0.6642784154831671, + 0.6311829835315306, + 0.6716220048676911, + 0.7296934885344188, + 0.8363962208983665, + 0.748002866311613, + 0.7262586356774288, + 0.6664798229579678, + 0.5374748799682768, + 0.6170184013565394, + 0.6691116900991422, + 0.7658090877416405, + 0.7353141916715226, + 0.7759610025939506, + 0.74345470669023, + 0.7296978548844308, + 0.619400404739874, + 0.6551825457010844, + 0.551545162108255, + 0.6522807496722203, + 0.7225618031371649, + 0.7791370253449484, + 0.6668857374864896, + 0.743488830629621, + 0.4896095395811449, + 0.7365437843456011, + 0.7174972825939973, + 0.5245883756669444, + 0.6333847884100219, + 0.7355726696612556, + 0.8234571135121233, + 0.6322877651170627, + 0.6968677786260205, + 0.6792415288204419, + 0.5939687852083482, + 0.5456910495535153, + 0.629305669843006, + 0.6350762305106559, + 0.6135551874605646, + 0.5384579494824989, + 0.7121418892097475, + 0.7747656987066749, + 0.7542791879242804, + 0.5344165163484852, + 0.5510423484674516, + 0.7006786314609171, + 0.5687423170464638, + 0.7209893974822441, + 0.6548825481248303, + 0.75259211169297, + 0.6312226780657509, + 0.6637187383368272, + 0.5886212599803603, + 0.4420203490986466, + 0.6114725494467603, + 0.6218921624597233, + 0.5707588545907325, + 0.7484909147581238, + 0.7000341232183827, + 0.6696295840283774, + 0.5823450275093889, + 0.6270083403617231, + 0.5723191263799982, + 0.6551904605059286, + 0.7195223878734132, + 0.6456733690355854, + 0.6981123508044883, + 0.5798425986996902, + 0.5951901262103809, + 0.7078623672066484, + 0.7853526644709461, + 0.663816848986487, + 0.6776677251389855, + 0.6077395277670672, + 0.5789480689011276, + 0.6134743908878735, + 0.719280306254653, + 0.6447777920348662, + 0.5866300499583811, + 0.5923462051239348, + 0.7060309101038992, + 0.5837194658229309, + 0.7319965884139179, + 0.6458084682833418, + 0.6557534585815452, + 0.34346555917340627, + 0.6384656395246525, + 0.61521897210634, + 0.6098367735683867, + 0.7994334151322153, + 0.6666059340071034, + 0.690240130248273, + 0.8452081447182516, + 0.6150613340381429, + 0.6020019932654319, + 0.5936082506607651, + 0.6748440309067998, + 0.6709493028102368, + 0.596635862206666, + 0.623630247626652, + 0.4304218368051423, + 0.6791307488606372, + 0.5826789291726834, + 0.7008330991853139, + 0.572252216084761, + 0.5992066366644649, + 0.5562237186884316, + 0.604682893308576, + 0.5575872043801395, + 0.6839315170192211, + 0.48554873779145324, + 0.5682937881704261, + 0.5989018930009794, + 0.7367377249603263, + 0.6729049082161768, + 0.5991925549885398, + 0.5715589214186423, + 0.48151831714730914, + 0.414968881147558, + 0.5718824340625368, + 0.6591564556810942, + 0.5383024953102553, + 0.6878575112838877, + 0.6210354231235782, + 0.5749663657971289, + 0.639774617450023, + 0.7182521333751222, + 0.688787228536718, + 0.77190159248211, + 0.7027671518873571, + 0.6009494711309803, + 0.6449761817831622, + 0.4696300512428653, + 0.5876663937194877, + 0.4542529180818328, + 0.8203041996570567, + 0.38623033257485345, + 0.7762257083799076, + 0.5940546964300102, + 0.4565622621716682, + 0.6046073370623137, + 0.5366180182080377, + 0.6675817975535617, + 0.6005198530405981, + 0.7119363658475749, + 0.7727115633762704, + 0.6614148940030428, + 1.0, + 0.45510442746749724, + 0.707495366968206, + 0.5918940236370382, + 0.35274139595042797 + ], + [ + 0.7266223610495236, + 0.7289238713265862, + 0.7038216465337519, + 0.5237536776931778, + 0.7035778108295832, + 0.654329034927233, + 0.8596087463953768, + 0.7616731230258119, + 0.7438936253747245, + 0.8311610194741277, + 0.9217408716824114, + 0.5504331001275025, + 0.5562801753456534, + 0.5460843865813839, + 0.7313910858786238, + 0.595094185855275, + 0.7114758361685894, + 0.7990720079589789, + 0.6673942989173471, + 0.7142112610263696, + 0.7664940668730158, + 0.6841923477437557, + 0.7468440634835521, + 0.8738516298196863, + 0.5620829128547751, + 0.6665157434560883, + 0.5593652151665272, + 0.7242499286359574, + 0.767219966740778, + 0.5607701940618045, + 0.6839882744754807, + 0.7303106472090946, + 0.7520908204805236, + 0.7545099503482579, + 0.6791206135455982, + 0.7002336357143181, + 0.7753154131343198, + 0.08048951326826155, + 0.5632096580846315, + 0.6343755406697512, + 0.6840712437664194, + 0.4162214329241853, + 0.1963652485701595, + 0.5566969444985734, + 0.583288345698321, + 0.6937924344423017, + 0.6588568411552969, + 0.8280043208894778, + 0.5957052244466677, + 0.4771805313070807, + 0.7699990036819226, + 0.4170639104551993, + 0.6228574120223727, + 0.7444470952295066, + 0.6159626044807813, + 0.6836429792292854, + 0.766254504717469, + 0.5378370119402759, + 0.22290667766631894, + 0.5765483181512311, + 0.683349324891667, + 0.6232583280162449, + 0.7105170514865627, + 0.71426351708907, + 0.6602800863262632, + 0.5979977356355635, + 0.6411788311510497, + 0.5462007595792087, + 0.7493229108054695, + 0.7565026083941194, + 0.6896679540035424, + 0.5986337646138262, + 0.6918224036993302, + 0.645174508217502, + 0.6223135074040238, + 0.5110755198350527, + 0.46413227384450795, + 0.36227062282831707, + 0.7993738956843074, + 0.4262961695340829, + 0.7919899558752237, + 0.3384235196232964, + 0.5445401928764463, + 0.3686478224242441, + 0.6779710760884792, + 0.7423699047875388, + 0.6935883530918412, + 0.608199152576728, + 0.3822873180392399, + 0.46964369524147687, + 0.6984463161209206, + 0.7063336949064912, + 0.41080182872781384, + 0.5782654588479186, + 0.5730930297358743, + 0.5614607385297946, + 0.5824911429739017, + 0.5337470405952038, + 0.7783764923727842, + 0.8199858174643421, + 0.6326212967380963, + 0.6600550648353647, + 0.4997451563435503, + 0.5601903649963691, + 0.658557160804853, + 0.9155663478436612, + 0.5789153344773716, + 0.7685714006093376, + 0.45796642813837385, + 0.5638501424630481, + 0.5393160331834813, + 0.6296427098135365, + 0.6410140669134967, + 0.6586400197642744, + 0.515303359560643, + 0.5856104072401147, + 0.5836349054832568, + 0.7211550026115915, + 0.5428913738886066, + 0.5504131381692582, + 0.5211789448408073, + 0.4189372196130903, + 0.6499089263531601, + 0.746125468878472, + 0.5120461526109464, + 0.5525238587906781, + 0.2929201303352079, + 0.6293166969364167, + 0.39454660032874805, + 0.3967071818142519, + 0.6378640986076536, + 0.7071256848988196, + 0.6207177518263134, + 0.5301118618874853, + 0.7632835796578094, + 0.6796383711027677, + 0.651697074085738, + 0.535154306208468, + 0.38973377965608436, + 0.5769263770953833, + 0.6156914909242956, + 0.6098500975334905, + 0.5721006742057522, + 0.6918263027224172, + 0.3769449740674455, + 0.7542955605537772, + 0.4158490916844302, + 0.41019784478482896, + 0.42823264167476904, + 0.5370679801543583, + 0.6364195464221073, + 0.6640867964975715, + 0.6490864928339524, + 0.6663719493532642, + 0.5310669518812254, + 0.4875795399417738, + 0.3852924290222375, + 0.693334700072136, + 0.764146413109202, + 0.658192212945075, + 0.6489858994602605, + 0.6252972199914018, + 0.7034439670538436, + 0.5214459030970834, + 0.6008611662813921, + 0.49692281250233133, + 0.5271817543247704, + 0.6122229904330703, + 0.5992357796473167, + 0.5542857011496133, + 0.5869044726676252, + 0.6082835570428371, + 0.500225361656546, + 0.27221545504578964, + 0.5074015781486696, + 0.419848005574613, + 0.5203870454249996, + 0.3520589405027835, + 0.8204831424696701, + 0.5655524825603881, + 0.4854152549188973, + 0.5200357115711356, + 0.5488592642128115, + 0.5911701246955877, + 0.6146026276836981, + 0.6575162522847443, + 0.6405326751654985, + 0.6477088445451634, + 0.5097608395390469, + 0.5516887544257154, + 0.5004237708056428, + 0.4555157849200326, + 0.46888404979636805, + 0.48287124098001544, + 0.32936575168965787, + 0.47730225945932575, + 0.7149896362828665, + 0.5371821812982921, + 0.31204858107371986, + 0.3249175769298292, + 0.6630287021473571, + 0.5090120630810617, + 0.5225303135360851, + 0.3231371936412155, + 0.5080731867272927, + 0.5384908927694916, + 0.4600208521930085, + 0.42169789984627704, + 0.41661483030592145, + 0.37245914761750815, + 0.6424918755708191, + 0.5693199875211952, + 0.5440578302280018, + 0.6868913326755985, + 0.4690973914390097, + 0.11313988803594383, + 0.32280562523038964, + 0.54843687085774, + 0.5448806054360705, + 0.4219877027891509, + 0.37872312168385935, + 0.31002551928946476, + 0.3890100015785962, + 0.6289525535021014, + 0.41494364285112756, + 0.42897253152192216, + 0.37208628936992766, + 0.5187270114005086, + 0.8617273351058627, + 0.6753021002607799, + 0.5411100383100658, + 0.5451108213180392, + 0.5633191517886178, + 0.4595675331058304, + 0.5777320996852734, + 0.20756470622037113, + 0.07076696495634979, + 0.43507066047274556, + 0.5780645482662234, + 0.4957516921520718, + 0.8239680537659244, + 0.3065993027510342, + 0.41040871420678665, + 0.23774321781240562, + 0.5169784343732587, + 0.5489416887001183, + 0.9054414153485869, + 0.18889293702526885, + 0.39767883719826597, + 0.6161489685469108, + 0.3621722017216549, + 0.25923758863271357, + 0.43643339588884916, + 0.6908503407006984, + 0.5211536353332702, + 0.647771869570825, + 0.42653686546181896, + 0.45510442746749724, + 1.0, + 0.6239121809264625, + 0.6564845650968153, + 0.411647537477588 + ], + [ + 0.8747177152598445, + 0.648899493670782, + 0.6550090730984657, + 0.7814281722286324, + 0.916194326089721, + 0.8437551274918822, + 0.6585968183124792, + 0.7941838161154292, + 0.7314672415984442, + 0.7624326275490599, + 0.6677626934975439, + 0.7679070139110455, + 0.7782271000925283, + 0.8484355538338781, + 0.8120775602777119, + 0.8569802595933355, + 0.7411686322402367, + 0.8350492259553556, + 0.926182002874153, + 0.7833431418893848, + 0.9034400493940435, + 0.8497757328139097, + 0.779070436838086, + 0.8244874548284248, + 0.6856181706575535, + 0.8681244357266987, + 0.7426227667739052, + 0.7715435476100284, + 0.8746212846175476, + 0.7337226689638255, + 0.8419062015796696, + 0.7396176105348623, + 0.8123787156277824, + 0.763494063150718, + 0.8213061980725875, + 0.9338350235582856, + 0.9008846903755819, + 0.5105732946060219, + 0.743087058922623, + 0.8485177615240048, + 0.7370287237197538, + 0.674699253063112, + 0.48801508955271283, + 0.7700584183875336, + 0.7531333632429683, + 0.8163733446457883, + 0.9164609414261939, + 0.8286259740430919, + 0.8073426443980034, + 0.8584595487870513, + 0.8342126106182004, + 0.8196857418005401, + 0.8302151999799869, + 0.8431089957351201, + 0.7556405916325464, + 0.8332201570183568, + 0.8975302550860336, + 0.874519150549999, + 0.6689119816336465, + 0.8717374225890908, + 0.7632835938053538, + 0.9112204980704015, + 0.7503014906707114, + 0.8598360820621218, + 0.6993985938207938, + 0.6746824932291424, + 0.9069565755506427, + 0.914337691033916, + 0.804899270028127, + 0.840216534609362, + 0.9351096795461272, + 0.8093359294834758, + 0.7845976730058208, + 0.8671486645401593, + 0.8777476197458668, + 0.8285309317464276, + 0.81266947548956, + 0.8071669341457108, + 0.7778608861387287, + 0.8355981556870088, + 0.8512140048243235, + 0.7274301168358688, + 0.7696789692694341, + 0.869057983294795, + 0.8517416328029004, + 0.8337318673052702, + 0.8807387925714764, + 0.831180678055549, + 0.7902758233499786, + 0.8445944804261084, + 0.8337195460784934, + 0.8813629776715908, + 0.8122506856573204, + 0.9009907831017799, + 0.8714505670912978, + 0.8679756382783804, + 0.7368002594584041, + 0.9333575384675963, + 0.8378742826794285, + 0.7807331300399403, + 0.9047888758920258, + 0.9174652238948563, + 0.8024839806629119, + 0.9643980416834756, + 0.8967885581610852, + 0.6942198817127745, + 0.9050936585881807, + 0.9163238874604868, + 0.8993110293705883, + 0.8540439100332501, + 0.9474132054111678, + 0.7775470384207809, + 0.8063024781193631, + 0.876555406040474, + 0.9190318289457954, + 0.9087977268012079, + 0.9282899382575315, + 0.8906523757886943, + 0.7198306050218974, + 0.8781909109507168, + 0.898044054733851, + 0.8884648369705173, + 0.9211153533987383, + 0.7591239607603395, + 0.7953080038298976, + 0.8171341488969415, + 0.6724215400287455, + 0.8405277051375368, + 0.7254005920240907, + 0.7738511979401169, + 0.7864801811418619, + 0.7907923242073308, + 0.686787595155681, + 0.7880363054967638, + 0.6216800079155262, + 0.8979997294964684, + 0.9841151139316687, + 0.7805932076269697, + 0.734328260888228, + 0.898440085861462, + 0.943568977442422, + 0.8642210198654705, + 0.8656497412120958, + 0.9166756775553817, + 0.7039161635448897, + 0.8367747738395541, + 0.8367966950465433, + 0.7785194829266969, + 0.6892992920153371, + 0.8526772519830036, + 0.942036326249474, + 0.9444573305307029, + 0.9087790031888604, + 0.7974199175434358, + 0.8962120892213674, + 0.9068574239816846, + 0.8166837598061552, + 0.9744850371640132, + 0.9171472735451343, + 0.9234874277210252, + 0.9568836073370228, + 0.9400757139811345, + 0.917356543729685, + 0.8476230564590649, + 0.8577131979766704, + 0.8768557309389888, + 0.8991099831730893, + 0.9696558735791949, + 0.9769011943355687, + 0.9364218627029528, + 0.9281006777859582, + 0.9652829721592529, + 0.7618471215725674, + 0.6970058857119273, + 0.9133237026838804, + 0.6892483061036772, + 0.9385204599965178, + 0.8074894208087666, + 0.8212655333203149, + 0.9381815993037627, + 0.8615417849716668, + 0.9556515787488254, + 0.9648962819569686, + 0.895636172241141, + 0.8512088460801798, + 0.8819160482659453, + 0.9070452981615996, + 0.8322658851923859, + 0.7638474582937411, + 0.8286316411217985, + 0.8443206638931502, + 0.7779648092271799, + 0.8636548876336653, + 0.890215638504655, + 0.8152732046299406, + 0.7647048075334973, + 0.9202131896952357, + 0.9280276165902527, + 0.7607360660866823, + 0.8009413558221568, + 0.9529412850649772, + 0.7217964017308086, + 0.8564117940429926, + 0.7731520438598726, + 0.876219014966828, + 0.9021966326351089, + 0.8399994779632031, + 0.8653875273565638, + 0.7950989750206805, + 0.8778745444309509, + 0.8084162603857182, + 0.8202109839380483, + 0.8686729652198886, + 0.920192103534955, + 0.84426874344541, + 0.6042044763161066, + 0.8160992546638884, + 0.8859361428867966, + 0.8490320337092326, + 0.9138039503695384, + 0.7241197354235768, + 0.6752758323345103, + 0.8475416640189296, + 0.8989909164300616, + 0.9048553312806017, + 0.7457090891002438, + 0.8037279545344186, + 0.843696076573031, + 0.7326473212974709, + 0.8857967392374853, + 0.9740367562190902, + 0.8601901264074278, + 0.9466769746890427, + 0.888045898598598, + 0.9143511259253628, + 0.6270478467320642, + 0.5324860501212569, + 0.7810907148079166, + 0.9198823779804493, + 0.9074792323965962, + 0.7942832982049877, + 0.8280197608167896, + 0.6915686126921747, + 0.8017706414336907, + 0.8088398448667229, + 0.764106941266852, + 0.6662479919277203, + 0.7306396642015242, + 0.7967214711619098, + 0.7643439449161502, + 0.7466550852391828, + 0.7143563565717392, + 0.8151798003972006, + 0.6921436993066278, + 0.8303506474193643, + 0.7549650641273319, + 0.8469173630510701, + 0.707495366968206, + 0.6239121809264625, + 1.0, + 0.8172076302477979, + 0.7968645017184219 + ], + [ + 0.6890301856315435, + 0.6379226414025353, + 0.7990272485828862, + 0.7969931154013726, + 0.7338869242090338, + 0.7570136802796565, + 0.6757676196909661, + 0.7630063499654061, + 0.598229967905506, + 0.8541780918498874, + 0.6965665096919983, + 0.6450507832591875, + 0.798287446854086, + 0.5389276654762143, + 0.8591124009727128, + 0.6196705679790555, + 0.5911046311901594, + 0.8534626318404364, + 0.7638207574124133, + 0.874637242145405, + 0.8635654876242187, + 0.6723207157921812, + 0.8716475560926972, + 0.7991803896308312, + 0.5396213187642657, + 0.7082691061856637, + 0.8576385660375822, + 0.8710384419603929, + 0.7006191615263508, + 0.4492827523870588, + 0.7129250962281679, + 0.6602832282702779, + 0.7427191176681852, + 0.7451864111061943, + 0.9440745761701869, + 0.7130193431387696, + 0.8320698659797136, + 0.3408548910124161, + 0.5415781486305409, + 0.7799939704478066, + 0.7289938088965546, + 0.6225831383317969, + 0.373481633414387, + 0.8960346322365619, + 0.8767000649174171, + 0.86691950204307, + 0.8350971199609145, + 0.807650757246996, + 0.9486225629849241, + 0.7605499212129773, + 0.8371551331652201, + 0.6952925814469735, + 0.6127024298870553, + 0.6147081994892322, + 0.41996269027109795, + 0.5286538826997444, + 0.6682217615946555, + 0.7632319429677923, + 0.6353263806846344, + 0.7843487836753369, + 0.5525008086561745, + 0.9087041878189989, + 0.6163673273910375, + 0.7011242157024623, + 0.8598322720405848, + 0.7039802284670332, + 0.796872065103803, + 0.8959177850189952, + 0.7003898372947616, + 0.6437114814702015, + 0.7995680545893067, + 0.6901667593276142, + 0.8335480505504904, + 0.7699492183824804, + 0.8300016588664052, + 0.8962626513068344, + 0.8596681090794434, + 0.7114331648382232, + 0.6943645727046319, + 0.7709697843643629, + 0.6906049802750072, + 0.6222295354815938, + 0.7515502782900582, + 0.8287800485462792, + 0.7562592775073513, + 0.7540631769494023, + 0.827053665375462, + 0.7452817237158991, + 0.6284196994059547, + 0.6538032687635571, + 0.8985208447625338, + 0.9034671548156137, + 0.8505562829368173, + 0.8467152431216491, + 0.9510118211245825, + 0.6578444555425902, + 0.71409071938193, + 0.7056557414370721, + 0.8663240768996351, + 0.7417993411964409, + 0.8915773980722091, + 0.7431878589937069, + 0.6901467585923513, + 0.7354327317951446, + 0.8727549154951617, + 0.8259212750291532, + 0.7209990992444787, + 0.8908650402319752, + 0.8082591113309595, + 0.9342664361353002, + 0.8124042270956155, + 0.8550727125755686, + 0.8147065764421048, + 0.8225594912090665, + 0.7984447099967, + 0.8844857635122093, + 0.7635115802983973, + 0.8765507194632783, + 0.875416702653243, + 0.9226272835921415, + 0.8608471964991223, + 0.8314321706612604, + 0.8246138665482325, + 0.6901687750106881, + 0.7696944495948088, + 0.7960076400054876, + 0.5729429277481636, + 0.9116919723583887, + 0.7614692604851024, + 0.8190370522889187, + 0.8234163933378119, + 0.8163829553938272, + 0.6519806369387229, + 0.7444720756591987, + 0.7735924734241653, + 0.7971267901373267, + 0.8330765689160584, + 0.9448589561284786, + 0.7300964324364483, + 0.8790268310133009, + 0.8116517344909804, + 0.9327752081610042, + 0.8028427320587946, + 0.8277591260343472, + 0.6140158568714287, + 0.9054971938948471, + 0.8571826192451424, + 0.7895480384511303, + 0.5829928719095412, + 0.7634631908416806, + 0.7702749027204446, + 0.7758410878836819, + 0.8054508212919101, + 0.7595482109237892, + 0.9073665131017555, + 0.9027693901466023, + 0.7301067957446632, + 0.880834154970511, + 0.7958953160507969, + 0.7798557983469738, + 0.8870645812534257, + 0.8289730824654651, + 0.9298998885632993, + 0.8579199924338583, + 0.8925903819406906, + 0.884995958751334, + 0.8567011403005887, + 0.8507351953583417, + 0.8651120302453974, + 0.8882323176665566, + 0.9191746454263776, + 0.8835406007547925, + 0.7208798242905841, + 0.6744951135276583, + 0.8760212481660491, + 0.47653717416611463, + 0.7829897870377451, + 0.8331423370294136, + 0.738093922570729, + 0.8219890383958202, + 0.5997229753152622, + 0.8477237617239205, + 0.7877469258792755, + 0.9079060627453148, + 0.847792289484296, + 0.906730836535536, + 0.9014537122133935, + 0.8352191375980589, + 0.8602449237946608, + 0.7686531215437269, + 0.8354806574527748, + 0.8810889455879696, + 0.8821675772204688, + 0.8127608266946801, + 0.7828339508561244, + 0.8159154190441743, + 0.8908483160565853, + 0.8616928114371174, + 0.8001042602080857, + 0.6209528731341871, + 0.8648717643640433, + 0.6563128124659415, + 0.7523221471708482, + 0.8113988221156924, + 0.8837498083221569, + 0.8510725208910991, + 0.7599856625213047, + 0.8574671169626492, + 0.7240043661869303, + 0.8599690654029394, + 0.8669159511857101, + 0.7832477583777535, + 0.824742172886893, + 0.9002683382469797, + 0.929648223108027, + 0.5853704563238826, + 0.7703736729598707, + 0.8601453011101731, + 0.7864879913560631, + 0.8717281011871536, + 0.8500167087620615, + 0.5563447042434978, + 0.8314549464992556, + 0.8399654655222493, + 0.7273846543414263, + 0.7521877890091407, + 0.8092089433871177, + 0.7888317080390397, + 0.6891344614054139, + 0.8619262772173069, + 0.8128006930625579, + 0.9449789357170252, + 0.8924087697999691, + 0.8902209815436424, + 0.8838479624910316, + 0.45082428362666876, + 0.48720143919441117, + 0.6775099381917307, + 0.7801349601048239, + 0.8192637766422575, + 0.6113696063327316, + 0.7624743500128931, + 0.7834606266842532, + 0.7171139191302504, + 0.8619442880887469, + 0.49843714945431, + 0.6342649677225117, + 0.5344410909407172, + 0.6004870126486653, + 0.7920124435631087, + 0.6833479932281188, + 0.6894893270692094, + 0.7180461205607973, + 0.6809929798806442, + 0.6441644533968365, + 0.7787959584327421, + 0.8977713879369216, + 0.5918940236370382, + 0.6564845650968153, + 0.8172076302477979, + 1.0, + 0.6441684750763267 + ], + [ + 0.6748621821500345, + 0.5154685938140455, + 0.5597998438500295, + 0.6491422975248977, + 0.6720612337673384, + 0.6644740660579551, + 0.47871732817510415, + 0.5278176898574112, + 0.4853208523517661, + 0.4930540134807932, + 0.4393885096529593, + 0.4657260747201354, + 0.6789651696860397, + 0.6222983072885979, + 0.6121229546283153, + 0.5861357519677126, + 0.5231082712707423, + 0.5668907796967015, + 0.6215689756232697, + 0.5997459448834181, + 0.725017425369367, + 0.5382173567450952, + 0.5657689806808651, + 0.6209146350844413, + 0.47438057038919745, + 0.6069920058750139, + 0.667215115533945, + 0.4490143422657653, + 0.6320851443525894, + 0.544384269711573, + 0.6775575417004482, + 0.6675562560666374, + 0.5367656105744779, + 0.5407433435380093, + 0.6812176537981582, + 0.639583128439338, + 0.6471403287668769, + 0.28562433704805745, + 0.5363198125714528, + 0.6085715173517076, + 0.4801078309915451, + 0.5923763860616746, + 0.37692602732135627, + 0.635817281616973, + 0.7087702638161257, + 0.5749645264888321, + 0.7552923642802305, + 0.6102232482230677, + 0.6104948897427667, + 0.6857941797791205, + 0.5449045098629106, + 0.5689638837799068, + 0.5221651439578014, + 0.5617034974416075, + 0.4904804477074322, + 0.512852164743049, + 0.6245906046407957, + 0.6789811813268447, + 0.6170059265452302, + 0.6577033410641365, + 0.4817147336313128, + 0.6390756411841638, + 0.4571688887943458, + 0.6547977621340035, + 0.43366378898951174, + 0.5476735945930475, + 0.7013131677783906, + 0.7348713969053222, + 0.6448934814661668, + 0.6463864420009057, + 0.7014140087152471, + 0.6027978730558122, + 0.5515490296070372, + 0.6449870982591781, + 0.6847475083431623, + 0.7101885002153423, + 0.718087607540089, + 0.5424610877115532, + 0.4863213204340543, + 0.5833569032118558, + 0.6297093666414906, + 0.6000498017259728, + 0.39348741611359356, + 0.6960396521172816, + 0.6006344873441304, + 0.6582078414950235, + 0.6156839381526997, + 0.6145343409666969, + 0.5517012213542617, + 0.6055663372728483, + 0.6481190550416558, + 0.6931673430051211, + 0.7242554934821572, + 0.7560980209408014, + 0.6614510467809765, + 0.6267147344650923, + 0.5019580896049292, + 0.6655921232302758, + 0.6975229030085317, + 0.5889237535083592, + 0.7163125776913482, + 0.6611553134287224, + 0.5695281822759075, + 0.738768795204365, + 0.7398780661823652, + 0.5218565286136194, + 0.6727872367675284, + 0.670459047915745, + 0.7638692082902109, + 0.6975200703903315, + 0.7321824393535471, + 0.5844916878854863, + 0.643230982731774, + 0.6861023835580351, + 0.6805398165020863, + 0.6332762457515123, + 0.6716821979751005, + 0.6859244524029311, + 0.6169034643794776, + 0.6698210761547175, + 0.7082409924182019, + 0.6464455332131704, + 0.7128357848606067, + 0.441340502423674, + 0.5366045921711473, + 0.5546968399242057, + 0.37438429749256147, + 0.6154094163108578, + 0.5454553108973952, + 0.6560655051994505, + 0.5129137870506917, + 0.5278366877535368, + 0.4393441676889534, + 0.5456116511149014, + 0.35049057637082176, + 0.7150899457676283, + 0.804827423844256, + 0.6373385310804304, + 0.5857695513682649, + 0.7338809447769468, + 0.7012269998012249, + 0.6819762961041149, + 0.7445353274034424, + 0.6901407265508084, + 0.42079012068171584, + 0.616329525388176, + 0.6490469965777658, + 0.5611186464124751, + 0.48688188109012964, + 0.6484213249946248, + 0.7028594191673049, + 0.6977515728595213, + 0.6683148717175944, + 0.6054285836879272, + 0.7693380149680453, + 0.7440542973375753, + 0.6993201359165597, + 0.7269957465083153, + 0.6943747770650193, + 0.6896247071168885, + 0.7498242636616824, + 0.7232416676985739, + 0.7268933976221117, + 0.7583584408158484, + 0.7005665965555345, + 0.7209325837469506, + 0.7412632872567867, + 0.7403270307342239, + 0.8029644955202256, + 0.7646311635704649, + 0.8130326083527089, + 0.7926293024570676, + 0.7398858831120594, + 0.5639390793980797, + 0.7347160169198043, + 0.5148731308165618, + 0.7523584941085196, + 0.625347335764448, + 0.6036072299160127, + 0.7995409151150784, + 0.6725713598148485, + 0.8228407116520663, + 0.7377998772189079, + 0.7649430443688096, + 0.6908979764795726, + 0.790080638195978, + 0.7435306180913507, + 0.6359977567091092, + 0.6949910059207495, + 0.6992693395243268, + 0.6284203934639109, + 0.6383374026116972, + 0.7025373953962405, + 0.74472754504534, + 0.6688856645178777, + 0.8517522626619443, + 0.6592907945034738, + 0.7622090307847894, + 0.5934116064315879, + 0.613031182667023, + 0.7476734070096851, + 0.4446735197442745, + 0.6937430812916093, + 0.6062323532382846, + 0.7145413841816194, + 0.7486284450863533, + 0.6879545129281526, + 0.6593430835744728, + 0.600851496999425, + 0.7343155042292605, + 0.663083234779724, + 0.6449460031255024, + 0.6973411904269818, + 0.7240592235204588, + 0.6836636450138012, + 0.5507734529311076, + 0.7258778149557675, + 0.7601221088269374, + 0.7493526171089494, + 0.7724393554455498, + 0.6646161193951567, + 0.5150916284513972, + 0.6099820967075911, + 0.7341463912468724, + 0.8028500688776764, + 0.6716956634249567, + 0.6339887049766163, + 0.6939426607056572, + 0.6335594153903107, + 0.733579071310961, + 0.792144003534391, + 0.7363412159992337, + 0.7668541270125979, + 0.7398473238548464, + 0.720086970385439, + 0.3174632190666571, + 0.4425376402011865, + 0.5523129801844013, + 0.6882485656411436, + 0.6894635622124639, + 0.47194924129945115, + 0.5827437815456843, + 0.5326938575798421, + 0.7278454612370556, + 0.7325399723630447, + 0.4941905833486753, + 0.525669368721247, + 0.535422512509354, + 0.644363256947844, + 0.5860127510635864, + 0.5036210620188659, + 0.6534833332865434, + 0.6533030125612814, + 0.45651382822127307, + 0.6698237041323749, + 0.5695013244299938, + 0.7549147915597126, + 0.35274139595042797, + 0.411647537477588, + 0.7968645017184219, + 0.6441684750763267, + 1.0 + ] + ] + } +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/constructorParams.json b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/constructorParams.json new file mode 100644 index 0000000000..9d8153886f --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/data/case3/constructorParams.json @@ -0,0 +1,5 @@ +{ + "geneIds": "b0049,b0080,b0111,b0149,b0181,b0185,b0187,b0190,b0215,b0225,b0226,b0340,b0349,b0383,b0387,b0409,b0410,b0415,b0416,b0418,b0420,b0421,b0424,b0425,b0446,b0452,b0454,b0457,b0462,b0484,b0487,b0491,b0493,b0494,b0496,b0524,b0529,b0555,b0567,b0569,b0570,b0572,b0573,b0574,b0575,b0579,b0606,b0607,b0612,b0624,b0634,b0635,b0637,b0638,b0639,b0640,b0641,b0642,b0653,b0676,b0683,b0686,b0687,b0688,b0695,b0696,b0730,b0732,b0733,b0734,b0735,b0762,b0765,b0766,b0773,b0776,b0777,b0778,b0802,b0806,b0814,b0815,b0834,b0835,b0838,b0839,b0840,b0841,b0842,b0843,b0845,b0849,b0850,b0851,b0853,b0874,b0876,b0877,b0885,b0886,b0887,b0912,b0913,b0915,b0918,b0922,b0923,b0925,b0926,b0927,b0945,b0946,b0947,b0948,b0949,b0950,b0951,b0955,b0956,b0961,b0962,b0982,b0983,b0984,b0985,b0986,b0987,b0996,b0998,b0999,b1021,b1022,b1023,b1024,b1029,b1033,b1034,b1037,b1045,b1068,b1100,b1103,b1104,b1106,b1110,b1111,b1114,b1129,b1130,b1131,b1134,b1135,b1143,b1171,b1181,b1187,b1191,b1207,b1208,b1209,b1211,b1212,b1214,b1215,b1219,b1220,b1221,b1245,b1246,b1248,b1254,b1255,b1257,b1259,b1260,b1273,b1277,b1280,b1283,b1284,b1285,b1288,b1290,b1291,b1292,b1293,b1294,b1319,b1320,b1357,b1358,b1360,b1370,b1412,b1414,b1420,b1434,b1435,b1469,b1478,b1540,b1542,b1550,b1587,b1588,b1591,b1595,b1596,b1626,b1632,b1661,b1664,b1710,b1715,b1726,b1729,b1733,b1764,b1765,b1768,b1789,b1793,b1812,b1813,b1877,b1924,b1955,b1960,b1981,b2032,b2033,b2034,b2036,b2037,b2038,b2044,b2143,b2177,b2179,b2263,b2265,b2299,b2301,b2311,b2320,b2330,b2351,b2442,b2509,b2604,b2667,b3065,b3294,b3499,b3988,b4399,b4428,b4517,b4539,b4571,b4577,b4593", + "expressionMatrixID": "SomeFakeData", + "workspaceID": "eapearson:narrative_1626270955005" +} diff --git a/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/kbaseExpressionPairwiseCorrelation-spec.js b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/kbaseExpressionPairwiseCorrelation-spec.js new file mode 100644 index 0000000000..676417884e --- /dev/null +++ b/test/unit/spec/function_output/kbaseExpressionPairwiseCorrelation/kbaseExpressionPairwiseCorrelation-spec.js @@ -0,0 +1,192 @@ +define([ + 'jquery', + 'kbaseExpressionPairwiseCorrelation', + 'narrativeMocks', + 'narrativeConfig', + 'base/js/namespace', + 'kb_common/jsonRpc/dynamicServiceClient', + 'testUtil', + + 'json!./data/case1/constructorParams.json', + 'json!./data/case1/KBaseFeatureValues.get_submatrix_stat.request.json', + 'json!./data/case1/KBaseFeatureValues.get_submatrix_stat.response.json', + + 'json!./data/case2/constructorParams.json', + 'json!./data/case2/KBaseFeatureValues.get_submatrix_stat.response.json', + + 'json!./data/case3/constructorParams.json', + 'json!./data/case3/KBaseFeatureValues.get_submatrix_stat.response.json', +], ( + $, + Widget, + Mocks, + Config, + Jupyter, + DynamicServiceClient, + testUtil, + case1ConstructorParams, + case1Request1Data, + case1ResponseData, + case2ConstructorParams, + case2ResponseData, + case3ConstructorParams, + case3ResponseData +) => { + 'use strict'; + + const { tryFor } = testUtil; + + const KBASE_FEATURE_VALUES_URL = 'https://ci.kbase.us/dynserv/xyz.KBaseFeatureValues'; + const AUTH_TOKEN = 'fakeAuthToken'; + + function mockKBaseFeatureValuesDynamicService(bodyFilter, caseData) { + Mocks.mockJsonRpc1Call({ + url: KBASE_FEATURE_VALUES_URL, + // the "body", if present, is used to match against + // the entire request body. We are sending json, so we + // match a fragment of json. + body: new RegExp(bodyFilter), + response: caseData, + }); + } + + function waitForAlert($host, warnings, timeout) { + return tryFor(() => { + const $warning = $host.find('.alert.alert-warning'); + if ($warning.length === 0) { + return [false]; + } + const warningText = $warning.text(); + const warningsMatch = warnings.every((warning) => { + return warning.test(warningText); + }); + + return [warningsMatch]; + }, timeout); + } + + describe('The kbaseExpressionPairwiseCorrelation widget', () => { + beforeAll(() => { + // remove any jquery events that get bound to document, + // including login and logout listeners + $(document).off(); + }); + + beforeEach(() => { + jasmine.Ajax.install(); + + Mocks.setAuthToken(AUTH_TOKEN); + Jupyter.narrative = { + getAuthToken: () => AUTH_TOKEN, + getWorkspaceName: () => 'someWorkspace', + }; + + // mock service calls + // Note that the url doesn't really matter + Mocks.mockServiceWizardLookup({ + module: 'KBaseFeatureValues', + url: KBASE_FEATURE_VALUES_URL, + }); + // Note that the first parameter, "body", is chosen as a unique matching string. + // It must be unique within the "constructor params" utilized in the tests below. + // In this case, a "gene id" from the constructor params is chosen, and must be + // unique for that data file amongst all the cases. + mockKBaseFeatureValuesDynamicService('b2577', case1ResponseData); + mockKBaseFeatureValuesDynamicService('b0023', case2ResponseData); + mockKBaseFeatureValuesDynamicService('b0049', case3ResponseData); + }); + + afterEach(() => { + jasmine.Ajax.uninstall(); + }); + + it('should have a functioning FeatureValues client', async () => { + const featureValues = new DynamicServiceClient({ + module: 'KBaseFeatureValues', + url: Config.url('service_wizard'), + token: AUTH_TOKEN, + }); + const [result] = await featureValues.callFunc('get_submatrix_stat', [ + case1Request1Data, + ]); + expect(result).toBeDefined(); + expect(result.mtx_descriptor).toBeDefined(); + }); + + // Normal display with <= 50 genes + it('should show a heatmap with < 50 genes', async () => { + const widgetParams = case1ConstructorParams; + const $host = $('
'); + const widget = new Widget($host, widgetParams); + expect(widget).toBeDefined(); + widget.loggedInCallback(null, { token: 'token' }); + + // Ensure heatmap is displayed. + await tryFor(() => { + const $heatmap = $host.find('[data-testid="heatmap"]'); + return [$heatmap.length === 1, $heatmap]; + }, 5000); + + // An an svg is in place. + await tryFor(() => { + const $svg = $host.find('[data-testid="heatmap"] svg'); + return [$svg.length === 1, $svg]; + }, 5000); + }); + + // With > 50 genes, displays warning, allows download + it('should show a warning and a download button with > 50, < 200 genes', async () => { + const widgetParams = case2ConstructorParams; + const $host = $('
'); + const widget = new Widget($host, widgetParams); + expect(widget).toBeDefined(); + widget.loggedInCallback(null, { token: 'token' }); + + const warnings = [ + /The selected cluster has 55 genes[.]/, + /Heatmaps for clusters with more than 50 genes are not displayed inline, for performance reasons[.]/, + ]; + + // Ensure heatmap is displayed. + await waitForAlert($host, warnings, 5000); + + // A download button is in place. + const $downloadButton = await tryFor(() => { + const $button = $host.find('button[data-testid="download-button"]'); + return [$button.length === 1, $button]; + }, 5000); + + expect($downloadButton.text()).toContain( + 'Download the SVG image file for this pairwise correlation' + ); + + // An an svg is not displayed + const $svg = $host.find('[data-testid="heatmap"] svg'); + expect($svg.length).toEqual(0); + }); + + // With > 250 genes, displays warning, does not attempt to generate heatmap + it('should show a warning, have no svg, and no download button with > 200 genes', async () => { + const widgetParams = case3ConstructorParams; + const $host = $('
'); + const widget = new Widget($host, widgetParams); + expect(widget).toBeDefined(); + widget.loggedInCallback(null, { token: 'token' }); + + const warnings = [ + /The selected cluster has 262 genes[.]/, + /Heatmaps cannot be generated for clusters with more than 200 genes, for performance reasons[.]/, + ]; + + await waitForAlert($host, warnings, 5000); + + // The download button is not displayed + const $button = $host.find('button[data-testid="download-button"]'); + expect($button.length).toEqual(0); + + // An an svg is not displayed + const $svg = $host.find('[data-testid="heatmap"] svg'); + expect($svg.length).toEqual(0); + }); + }); +}); diff --git a/test/unit/spec/function_output/kbaseSampleSet/kbaseSampleSet-spec.js b/test/unit/spec/function_output/kbaseSampleSet/kbaseSampleSet-spec.js index 8e7a52ee63..b6ff2d261b 100644 --- a/test/unit/spec/function_output/kbaseSampleSet/kbaseSampleSet-spec.js +++ b/test/unit/spec/function_output/kbaseSampleSet/kbaseSampleSet-spec.js @@ -1,15 +1,17 @@ define([ 'jquery', 'kbaseSampleSetView', - '../../util/mswUtils', + 'unitTestUtils/mswUtils', + 'testUtil', 'require', 'jsonrpc/1.1/ServiceClient', 'narrativeConfig', 'json!./data/index.json', -], ($, KBaseSampleSetView, mswUtils, localRequire, ServiceClient, Config, testData) => { +], ($, KBaseSampleSetView, mswUtils, testUtil, localRequire, ServiceClient, Config, testData) => { 'use strict'; - const { tryFor, MockWorker, findTabContent, expectCell, findTab, getProp } = mswUtils; + const { MockWorker, findTabContent, expectCell, findTab, getProp } = mswUtils; + const { tryFor } = testUtil; const WORKSPACE_URL = Config.url('workspace'); // 'https://ci.kbase.us/services/ws'; const SAMPLE_SERVICE_URL = Config.url('sample_service'); // 'https://ci.kbase.us/services/sampleservice'; diff --git a/test/unit/spec/jsonrpc/1.1/DynamicServiceClient-spec.js b/test/unit/spec/jsonrpc/1.1/DynamicServiceClient-spec.js index a6704932d4..1eea66a463 100644 --- a/test/unit/spec/jsonrpc/1.1/DynamicServiceClient-spec.js +++ b/test/unit/spec/jsonrpc/1.1/DynamicServiceClient-spec.js @@ -1,5 +1,5 @@ define([ - '../../util/mswUtils', + 'unitTestUtils/mswUtils', 'jsonrpc/1.1/DynamicServiceClient', 'jsonrpc/1.1/errors', './helpers', diff --git a/test/unit/spec/jsonrpc/1.1/JSONRPCClient-spec.js b/test/unit/spec/jsonrpc/1.1/JSONRPCClient-spec.js index f547d7f8ba..7686545935 100644 --- a/test/unit/spec/jsonrpc/1.1/JSONRPCClient-spec.js +++ b/test/unit/spec/jsonrpc/1.1/JSONRPCClient-spec.js @@ -1,5 +1,5 @@ define([ - '../../util/mswUtils', + 'unitTestUtils/mswUtils', 'jsonrpc/1.1/JSONRPCClient', 'jsonrpc/1.1/errors', 'jsonrpc/1.1/jsonrpcErrors', diff --git a/test/unit/spec/jsonrpc/1.1/ServiceClient-spec.js b/test/unit/spec/jsonrpc/1.1/ServiceClient-spec.js index 48e8b238a1..f4c90fc5aa 100644 --- a/test/unit/spec/jsonrpc/1.1/ServiceClient-spec.js +++ b/test/unit/spec/jsonrpc/1.1/ServiceClient-spec.js @@ -1,12 +1,14 @@ -define(['../../util/mswUtils', 'jsonrpc/1.1/ServiceClient', './helpers'], ( +define(['unitTestUtils/mswUtils', 'jsonrpc/1.1/ServiceClient', './helpers', 'testUtil'], ( mswUtils, ServiceClient, - helpers + helpers, + testUtil ) => { 'use strict'; - const { MockWorker, waitFor } = mswUtils; + const { MockWorker } = mswUtils; const { makeErrorResponse, URL } = helpers; + const { wait } = testUtil; function makeSDKResponse(rpc, result) { const defaultResult = [ @@ -174,7 +176,7 @@ define(['../../util/mswUtils', 'jsonrpc/1.1/ServiceClient', './helpers'], ( it('a timeout should trigger an exception', async () => { const mock = await new MockWorker().start(); mock.useJSONResponder(URL, async (_req, _res, rpc) => { - await waitFor(2000); + await wait(2000); return makeSDKResponse(rpc); }); @@ -196,7 +198,7 @@ define(['../../util/mswUtils', 'jsonrpc/1.1/ServiceClient', './helpers'], ( it('aborting before timeout should trigger an exception', async () => { const mock = await new MockWorker().start(); mock.useJSONResponder(URL, async (_req, _res, rpc) => { - await waitFor(2000); + await wait(2000); return makeSDKResponse(rpc); }); diff --git a/test/unit/spec/jsonrpc/Cache-spec.js b/test/unit/spec/jsonrpc/Cache-spec.js index 411de0ecb1..ca1de18ef9 100644 --- a/test/unit/spec/jsonrpc/Cache-spec.js +++ b/test/unit/spec/jsonrpc/Cache-spec.js @@ -1,13 +1,7 @@ -define(['jsonrpc/Cache'], (Cache) => { +define(['jsonrpc/Cache', 'testUtil'], (Cache, testUtil) => { 'use strict'; - function waitFor(duration) { - return new Promise((resolve) => { - window.setTimeout(() => { - resolve(); - }, duration); - }); - } + const { wait } = testUtil; describe('The Cache class', () => { it('should be defined', () => { @@ -42,7 +36,7 @@ define(['jsonrpc/Cache'], (Cache) => { waiterFrequency: 100, }); cache.waitForItem('foo', async () => { - await waitFor(200); + await wait(200); return 'bar'; }); const shouldFetch = () => { @@ -65,7 +59,7 @@ define(['jsonrpc/Cache'], (Cache) => { await expectAsync(firstFetch()).toBeResolvedTo('bar'); - await waitFor(100); + await wait(100); const secondFetch = () => { return cache.waitForItem('foo', () => { @@ -96,7 +90,7 @@ define(['jsonrpc/Cache'], (Cache) => { await expectAsync(fetchItem2()).toBeResolvedTo(42); expect(cache.cache.size).toEqual(2); - await waitFor(100); + await wait(100); expect(cache.cache.size).toEqual(0); }); @@ -115,7 +109,7 @@ define(['jsonrpc/Cache'], (Cache) => { await expectAsync(fetchItem()).toBeResolvedTo('bar'); expect(cache.cache.size).toEqual(1); - await waitFor(50); + await wait(50); const fetchItem2 = () => { return cache.waitForItem('meaning', () => { @@ -125,11 +119,11 @@ define(['jsonrpc/Cache'], (Cache) => { await expectAsync(fetchItem2()).toBeResolvedTo(42); expect(cache.cache.size).toEqual(2); - await waitFor(75); + await wait(75); expect(cache.cache.size).toEqual(1); - await waitFor(75); + await wait(75); expect(cache.cache.size).toEqual(0); }); @@ -146,7 +140,7 @@ define(['jsonrpc/Cache'], (Cache) => { await expectAsync(firstFetch()).toBeResolvedTo('bar'); - await waitFor(50); + await wait(50); const secondFetch = () => { return cache.waitForItem('foo', () => { @@ -160,7 +154,7 @@ define(['jsonrpc/Cache'], (Cache) => { const cache = new Cache(); const firstFetch = () => { return cache.waitForItem('foo', async () => { - await waitFor(100); + await wait(100); return 'bar'; }); }; @@ -187,7 +181,7 @@ define(['jsonrpc/Cache'], (Cache) => { const cache = new Cache(); const firstFetch = () => { return cache.waitForItem('foo', async () => { - await waitFor(200); + await wait(200); return 'bar'; }); }; diff --git a/test/unit/test-main.js b/test/unit/test-main.js index 5c47073968..d1cc3b21da 100644 --- a/test/unit/test-main.js +++ b/test/unit/test-main.js @@ -3,9 +3,10 @@ const tests = [ ...['text', 'json'], // Keep only the test spec files under the test directory. // Karma prepends these with /base/, so make sure that's included. - ...Object.keys(window.__karma__.files).filter((file) => - /^\/base\/test\/.*[sS]pec\.js$/.test(file) - ), + ...Object.keys(window.__karma__.files).filter((file) => { + 'use strict'; + return /^\/base\/test\/.*[sS]pec\.js$/.test(file); + }), ]; // hack to make jed (the i18n library that Jupyter uses) happy. @@ -22,6 +23,7 @@ document.nbjs_translations = { // hack to spoof createReactClass, needed by a Jupyter component we aren't testing. window.createReactClass = () => { + 'use strict'; /* no op */ }; @@ -35,6 +37,7 @@ requirejs.config({ bootstrap: 'ext_components/bootstrap/dist/js/bootstrap.min', testUtil: '../../test/unit/testUtil', narrativeMocks: '../../test/unit/mocks', + unitTestUtils: '../../test/unit/utils', bluebird: 'ext_components/bluebird/js/browser/bluebird.min', jed: 'components/jed/jed', custom: 'kbase/custom', diff --git a/test/unit/testUtil.js b/test/unit/testUtil.js index 35f450b73f..ae6a5d9fdb 100644 --- a/test/unit/testUtil.js +++ b/test/unit/testUtil.js @@ -341,6 +341,39 @@ define('testUtil', [ bus.send(message, { channel: { [channelType]: channelId }, key: { type } }); } + /** + * Returns a promise which will resolve when the provided function returns true, + * and reject if it exceeds the provided timeout or default of 5s, or if the + * function throws an exception. + * + * @param {Function} fun - A function to "try"; returns [true, value] if the "try" succeeds, [false] otherwise + * @param {number} duration - The timeout, in milliseconds, after which trying without success will fail + * @param {number} loopInterval - The time, in milliseconds, between attempts to run "fun" (optional). + * @returns {Promise} - A promise resolved + */ + async function tryFor(fun, duration, loopInterval = 100) { + if (typeof fun !== 'function') { + throw new Error('The "fun" parameter (0) is required and must be a function'); + } + if (typeof duration !== 'number') { + throw new Error('The "duration" parameter (1) is required and must be a number'); + } + + const started = Date.now(); + + for (;;) { + const elapsed = Date.now() - started; + if (elapsed > duration) { + throw new Error(`tryFor expired without success after ${elapsed}ms`); + } + const [gotIt, result] = await fun(); + if (gotIt) { + return result; + } + await wait(loopInterval); + } + } + return { make, getAuthToken, @@ -359,5 +392,6 @@ define('testUtil', [ send_STATUS, sendBusMessage, clearRuntime, + tryFor, }; }); diff --git a/test/unit/spec/util/mswUtils.js b/test/unit/utils/mswUtils.js similarity index 70% rename from test/unit/spec/util/mswUtils.js rename to test/unit/utils/mswUtils.js index 50efe36380..e6197a1193 100644 --- a/test/unit/spec/util/mswUtils.js +++ b/test/unit/utils/mswUtils.js @@ -1,52 +1,11 @@ -define(['msw'], (msw) => { +define(['msw', 'testUtil'], (msw, testutil) => { 'use strict'; const { setupWorker, rest } = msw; - const MSW_FUDGE_FACTOR = 100; - const TRY_LOOP_INTERVAL = 100; - const DEFAULT_TRY_LOOP_TIMEOUT = 5000; - - /** - * Returns a promise which resolves when the given duration, in milliseconds, - * elapses. - * - * @param {int} duration - * @returns {Promise} - */ - function waitFor(duration) { - return new Promise((resolve) => { - window.setTimeout(() => { - resolve(); - }, duration); - }); - } + const { wait, tryFor } = testutil; - /** - * Returns a promise which will resolve when the provided function returns true, - * and reject if it exceeds the provided timeout or default of 5s, or if the - * function throws an exception. - * - * @param {Function} fun - A function to "try"; returns [true, value] if the "try" succeeds, [false] otherwise - * @param {number} duration - The timeout, in milliseconds, after which trying without success will fail - * @returns {Promise} - A promise resolved - */ - async function tryFor(fun, duration = DEFAULT_TRY_LOOP_TIMEOUT) { - const interval = TRY_LOOP_INTERVAL; - const started = Date.now(); - - for (;;) { - const elapsed = Date.now() - started; - if (elapsed > duration) { - throw new Error(`waitFor expired without success after ${elapsed}ms`); - } - const [gotIt, result] = await fun(); - if (gotIt) { - return result; - } - await waitFor(interval); - } - } + const MSW_FUDGE_FACTOR = 100; class MockWorker { constructor(options = {}) { @@ -54,7 +13,7 @@ define(['msw'], (msw) => { this.onUnhandledRequest = options.onUnhandledRequest || 'bypass'; } - // The "use" methods will be add responders at "runtime", and must be used after the + // The "use" methods will add responders at "runtime", and must be used after the // worker has started. They can be removed using resetHandlers. These are the preferred // way to use msw in tests. @@ -98,7 +57,7 @@ define(['msw'], (msw) => { }); // Workaround to ensure that the worker is fully started before we // proceed. - await waitFor(MSW_FUDGE_FACTOR); + await wait(MSW_FUDGE_FACTOR); return this; } @@ -168,8 +127,6 @@ define(['msw'], (msw) => { } return { - waitFor, - tryFor, MockWorker, findTab, expectCell,